queueing_evolution.svg 473 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186
  1. <?xml version="1.0" encoding="utf-8" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
  3. "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
  4. <svg
  5. width="600" height="480"
  6. viewBox="0 0 600 480"
  7. xmlns="http://www.w3.org/2000/svg"
  8. xmlns:xlink="http://www.w3.org/1999/xlink"
  9. >
  10. <title>Gnuplot</title>
  11. <desc>Produced by GNUPLOT 5.0 patchlevel 1 (Gentoo revision r1) </desc>
  12. <g id="gnuplot_canvas">
  13. <rect x="0" y="0" width="600" height="480" fill="none"/>
  14. <defs>
  15. <circle id='gpDot' r='0.5' stroke-width='0.5'/>
  16. <path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
  17. <path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
  18. <path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
  19. <rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
  20. <rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
  21. <circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
  22. <use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
  23. <path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
  24. <use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
  25. <use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
  26. <use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
  27. <use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
  28. <use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
  29. <path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
  30. <use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
  31. <filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
  32. <feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
  33. <feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
  34. </filter>
  35. <filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
  36. <feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
  37. <feComposite in='SourceGraphic' in2='grey' operator='atop'/>
  38. </filter>
  39. </defs>
  40. <g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  41. </g>
  42. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  43. <path stroke='black' d='M71.9,427.4 L80.9,427.4 M575.0,427.4 L566.0,427.4 '/> <g transform="translate(63.6,431.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
  44. <text><tspan font-family="Arial" > 0</tspan></text>
  45. </g>
  46. </g>
  47. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  48. <path stroke='black' d='M71.9,385.9 L80.9,385.9 M575.0,385.9 L566.0,385.9 '/> <g transform="translate(63.6,390.4)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
  49. <text><tspan font-family="Arial" > 50</tspan></text>
  50. </g>
  51. </g>
  52. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  53. <path stroke='black' d='M71.9,344.4 L80.9,344.4 M575.0,344.4 L566.0,344.4 '/> <g transform="translate(63.6,348.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
  54. <text><tspan font-family="Arial" > 100</tspan></text>
  55. </g>
  56. </g>
  57. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  58. <path stroke='black' d='M71.9,303.0 L80.9,303.0 M575.0,303.0 L566.0,303.0 '/> <g transform="translate(63.6,307.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
  59. <text><tspan font-family="Arial" > 150</tspan></text>
  60. </g>
  61. </g>
  62. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  63. <path stroke='black' d='M71.9,261.5 L80.9,261.5 M575.0,261.5 L566.0,261.5 '/> <g transform="translate(63.6,266.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
  64. <text><tspan font-family="Arial" > 200</tspan></text>
  65. </g>
  66. </g>
  67. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  68. <path stroke='black' d='M71.9,220.0 L80.9,220.0 M575.0,220.0 L566.0,220.0 '/> <g transform="translate(63.6,224.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
  69. <text><tspan font-family="Arial" > 250</tspan></text>
  70. </g>
  71. </g>
  72. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  73. <path stroke='black' d='M71.9,178.5 L80.9,178.5 M575.0,178.5 L566.0,178.5 '/> <g transform="translate(63.6,183.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
  74. <text><tspan font-family="Arial" > 300</tspan></text>
  75. </g>
  76. </g>
  77. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  78. <path stroke='black' d='M71.9,137.1 L80.9,137.1 M575.0,137.1 L566.0,137.1 '/> <g transform="translate(63.6,141.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
  79. <text><tspan font-family="Arial" > 350</tspan></text>
  80. </g>
  81. </g>
  82. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  83. <path stroke='black' d='M71.9,95.6 L80.9,95.6 M575.0,95.6 L566.0,95.6 '/> <g transform="translate(63.6,100.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
  84. <text><tspan font-family="Arial" > 400</tspan></text>
  85. </g>
  86. </g>
  87. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  88. <path stroke='black' d='M71.9,54.1 L80.9,54.1 M575.0,54.1 L566.0,54.1 '/> <g transform="translate(63.6,58.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
  89. <text><tspan font-family="Arial" > 450</tspan></text>
  90. </g>
  91. </g>
  92. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  93. </g>
  94. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  95. <path stroke='black' d='M71.9,54.1 L71.9,427.4 L575.0,427.4 L575.0,54.1 L71.9,54.1 Z '/></g>
  96. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  97. <g transform="translate(17.6,240.8) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
  98. <text><tspan font-family="Arial" >Seconds</tspan></text>
  99. </g>
  100. </g>
  101. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  102. <g transform="translate(323.4,31.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
  103. <text><tspan font-family="Arial" >Queueing times</tspan></text>
  104. </g>
  105. <g transform="translate(323.4,448.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
  106. <text><tspan font-family="Arial" >Processors</tspan></text>
  107. </g>
  108. </g>
  109. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  110. </g>
  111. <g id="gnuplot_plot_1" ><title>2</title>
  112. <g fill="none" color="white" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
  113. </g>
  114. <g fill="none" color="black" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
  115. <g transform="translate(197.5,466.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
  116. <text><tspan font-family="Arial" >2</tspan></text>
  117. </g>
  118. </g>
  119. <g fill="none" color="black" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
  120. <g stroke='none' shape-rendering='crispEdges'>
  121. <polygon fill = 'red' points = '205.8,466.5 248.0,466.5 248.0,457.5 205.8,457.5 '/>
  122. </g>
  123. <path stroke='red' d='M205.8,466.5 L248.0,466.5 L248.0,457.5 L205.8,457.5 L205.8,466.5 Z '/></g>
  124. <g fill="none" color="black" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
  125. <g stroke='none' shape-rendering='crispEdges'>
  126. <polygon fill = 'red' points = '71.9,427.4 72.5,427.4 72.5,426.5 71.9,426.5 '/>
  127. </g>
  128. <path stroke='red' d='M71.9,427.4 L71.9,426.6 L72.4,426.6 L72.4,427.4 L71.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  129. <polygon fill = 'red' points = '72.4,427.4 73.5,427.4 73.5,426.5 72.4,426.5 '/>
  130. </g>
  131. <path stroke='red' d='M72.4,427.4 L72.4,426.6 L73.4,426.6 L73.4,427.4 L72.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  132. <polygon fill = 'red' points = '73.4,427.4 74.5,427.4 74.5,409.2 73.4,409.2 '/>
  133. </g>
  134. <path stroke='red' d='M73.4,427.4 L73.4,409.3 L74.4,409.3 L74.4,427.4 L73.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  135. <polygon fill = 'red' points = '74.4,427.4 75.5,427.4 75.5,397.8 74.4,397.8 '/>
  136. </g>
  137. <path stroke='red' d='M74.4,427.4 L74.4,397.9 L75.4,397.9 L75.4,427.4 L74.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  138. <polygon fill = 'red' points = '75.4,427.4 76.5,427.4 76.5,426.5 75.4,426.5 '/>
  139. </g>
  140. <path stroke='red' d='M75.4,427.4 L75.4,426.6 L76.4,426.6 L76.4,427.4 L75.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  141. <polygon fill = 'red' points = '76.4,427.4 77.5,427.4 77.5,426.5 76.4,426.5 '/>
  142. </g>
  143. <path stroke='red' d='M76.4,427.4 L76.4,426.6 L77.4,426.6 L77.4,427.4 L76.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  144. <polygon fill = 'red' points = '77.4,427.4 78.5,427.4 78.5,426.5 77.4,426.5 '/>
  145. </g>
  146. <path stroke='red' d='M77.4,427.4 L77.4,426.6 L78.4,426.6 L78.4,427.4 L77.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  147. <polygon fill = 'red' points = '78.4,427.4 79.5,427.4 79.5,404.6 78.4,404.6 '/>
  148. </g>
  149. <path stroke='red' d='M78.4,427.4 L78.4,404.7 L79.4,404.7 L79.4,427.4 L78.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  150. <polygon fill = 'red' points = '79.4,427.4 80.6,427.4 80.6,422.4 79.4,422.4 '/>
  151. </g>
  152. <path stroke='red' d='M79.4,427.4 L79.4,422.5 L80.5,422.5 L80.5,427.4 L79.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  153. <polygon fill = 'red' points = '80.5,427.4 81.6,427.4 81.6,426.4 80.5,426.4 '/>
  154. </g>
  155. <path stroke='red' d='M80.5,427.4 L80.5,426.5 L81.5,426.5 L81.5,427.4 L80.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  156. <polygon fill = 'red' points = '81.5,427.4 82.6,427.4 82.6,426.5 81.5,426.5 '/>
  157. </g>
  158. <path stroke='red' d='M81.5,427.4 L81.5,426.6 L82.5,426.6 L82.5,427.4 L81.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  159. <polygon fill = 'red' points = '82.5,427.4 83.6,427.4 83.6,426.5 82.5,426.5 '/>
  160. </g>
  161. <path stroke='red' d='M82.5,427.4 L82.5,426.6 L83.5,426.6 L83.5,427.4 L82.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  162. <polygon fill = 'red' points = '83.5,427.4 84.6,427.4 84.6,426.5 83.5,426.5 '/>
  163. </g>
  164. <path stroke='red' d='M83.5,427.4 L83.5,426.6 L84.5,426.6 L84.5,427.4 L83.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  165. <polygon fill = 'red' points = '84.5,427.4 85.6,427.4 85.6,381.2 84.5,381.2 '/>
  166. </g>
  167. <path stroke='red' d='M84.5,427.4 L84.5,381.3 L85.5,381.3 L85.5,427.4 L84.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  168. <polygon fill = 'red' points = '85.5,427.4 86.6,427.4 86.6,388.5 85.5,388.5 '/>
  169. </g>
  170. <path stroke='red' d='M85.5,427.4 L85.5,388.6 L86.5,388.6 L86.5,427.4 L85.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  171. <polygon fill = 'red' points = '86.5,427.4 87.6,427.4 87.6,347.1 86.5,347.1 '/>
  172. </g>
  173. <path stroke='red' d='M86.5,427.4 L86.5,347.2 L87.5,347.2 L87.5,427.4 L86.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  174. <polygon fill = 'red' points = '87.5,427.4 88.6,427.4 88.6,349.0 87.5,349.0 '/>
  175. </g>
  176. <path stroke='red' d='M87.5,427.4 L87.5,349.1 L88.5,349.1 L88.5,427.4 L87.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  177. <polygon fill = 'red' points = '88.5,427.4 89.6,427.4 89.6,305.8 88.5,305.8 '/>
  178. </g>
  179. <path stroke='red' d='M88.5,427.4 L88.5,305.9 L89.5,305.9 L89.5,427.4 L88.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  180. <polygon fill = 'red' points = '89.5,427.4 90.6,427.4 90.6,308.3 89.5,308.3 '/>
  181. </g>
  182. <path stroke='red' d='M89.5,427.4 L89.5,308.4 L90.5,308.4 L90.5,427.4 L89.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  183. <polygon fill = 'red' points = '90.5,427.4 91.6,427.4 91.6,275.8 90.5,275.8 '/>
  184. </g>
  185. <path stroke='red' d='M90.5,427.4 L90.5,275.9 L91.5,275.9 L91.5,427.4 L90.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  186. <polygon fill = 'red' points = '91.5,427.4 92.6,427.4 92.6,280.1 91.5,280.1 '/>
  187. </g>
  188. <path stroke='red' d='M91.5,427.4 L91.5,280.2 L92.5,280.2 L92.5,427.4 L91.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  189. <polygon fill = 'red' points = '92.5,427.4 93.6,427.4 93.6,243.5 92.5,243.5 '/>
  190. </g>
  191. <path stroke='red' d='M92.5,427.4 L92.5,243.6 L93.5,243.6 L93.5,427.4 L92.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  192. <polygon fill = 'red' points = '93.5,427.4 94.6,427.4 94.6,227.8 93.5,227.8 '/>
  193. </g>
  194. <path stroke='red' d='M93.5,427.4 L93.5,227.9 L94.5,227.9 L94.5,427.4 L93.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  195. <polygon fill = 'red' points = '94.5,427.4 95.6,427.4 95.6,273.2 94.5,273.2 '/>
  196. </g>
  197. <path stroke='red' d='M94.5,427.4 L94.5,273.3 L95.5,273.3 L95.5,427.4 L94.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  198. <polygon fill = 'red' points = '95.5,427.4 96.7,427.4 96.7,258.5 95.5,258.5 '/>
  199. </g>
  200. <path stroke='red' d='M95.5,427.4 L95.5,258.6 L96.6,258.6 L96.6,427.4 L95.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  201. <polygon fill = 'red' points = '96.6,427.4 97.7,427.4 97.7,262.8 96.6,262.8 '/>
  202. </g>
  203. <path stroke='red' d='M96.6,427.4 L96.6,262.9 L97.6,262.9 L97.6,427.4 L96.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  204. <polygon fill = 'red' points = '97.6,427.4 98.7,427.4 98.7,255.8 97.6,255.8 '/>
  205. </g>
  206. <path stroke='red' d='M97.6,427.4 L97.6,255.9 L98.6,255.9 L98.6,427.4 L97.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  207. <polygon fill = 'red' points = '98.6,427.4 99.7,427.4 99.7,241.6 98.6,241.6 '/>
  208. </g>
  209. <path stroke='red' d='M98.6,427.4 L98.6,241.7 L99.6,241.7 L99.6,427.4 L98.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  210. <polygon fill = 'red' points = '99.6,427.4 100.7,427.4 100.7,238.9 99.6,238.9 '/>
  211. </g>
  212. <path stroke='red' d='M99.6,427.4 L99.6,239.0 L100.6,239.0 L100.6,427.4 L99.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  213. <polygon fill = 'red' points = '100.6,427.4 101.7,427.4 101.7,258.7 100.6,258.7 '/>
  214. </g>
  215. <path stroke='red' d='M100.6,427.4 L100.6,258.8 L101.6,258.8 L101.6,427.4 L100.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  216. <polygon fill = 'red' points = '101.6,427.4 102.7,427.4 102.7,236.4 101.6,236.4 '/>
  217. </g>
  218. <path stroke='red' d='M101.6,427.4 L101.6,236.5 L102.6,236.5 L102.6,427.4 L101.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  219. <polygon fill = 'red' points = '102.6,427.4 103.7,427.4 103.7,251.7 102.6,251.7 '/>
  220. </g>
  221. <path stroke='red' d='M102.6,427.4 L102.6,251.8 L103.6,251.8 L103.6,427.4 L102.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  222. <polygon fill = 'red' points = '103.6,427.4 104.7,427.4 104.7,240.6 103.6,240.6 '/>
  223. </g>
  224. <path stroke='red' d='M103.6,427.4 L103.6,240.7 L104.6,240.7 L104.6,427.4 L103.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  225. <polygon fill = 'red' points = '104.6,427.4 105.7,427.4 105.7,238.4 104.6,238.4 '/>
  226. </g>
  227. <path stroke='red' d='M104.6,427.4 L104.6,238.5 L105.6,238.5 L105.6,427.4 L104.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  228. <polygon fill = 'red' points = '105.6,427.4 106.7,427.4 106.7,251.8 105.6,251.8 '/>
  229. </g>
  230. <path stroke='red' d='M105.6,427.4 L105.6,251.9 L106.6,251.9 L106.6,427.4 L105.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  231. <polygon fill = 'red' points = '106.6,427.4 107.7,427.4 107.7,237.0 106.6,237.0 '/>
  232. </g>
  233. <path stroke='red' d='M106.6,427.4 L106.6,237.1 L107.6,237.1 L107.6,427.4 L106.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  234. <polygon fill = 'red' points = '107.6,427.4 108.7,427.4 108.7,227.0 107.6,227.0 '/>
  235. </g>
  236. <path stroke='red' d='M107.6,427.4 L107.6,227.1 L108.6,227.1 L108.6,427.4 L107.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  237. <polygon fill = 'red' points = '108.6,427.4 109.7,427.4 109.7,290.5 108.6,290.5 '/>
  238. </g>
  239. <path stroke='red' d='M108.6,427.4 L108.6,290.6 L109.6,290.6 L109.6,427.4 L108.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  240. <polygon fill = 'red' points = '109.6,427.4 110.7,427.4 110.7,288.8 109.6,288.8 '/>
  241. </g>
  242. <path stroke='red' d='M109.6,427.4 L109.6,288.9 L110.6,288.9 L110.6,427.4 L109.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  243. <polygon fill = 'red' points = '110.6,427.4 111.7,427.4 111.7,276.3 110.6,276.3 '/>
  244. </g>
  245. <path stroke='red' d='M110.6,427.4 L110.6,276.4 L111.6,276.4 L111.6,427.4 L110.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  246. <polygon fill = 'red' points = '111.6,427.4 112.8,427.4 112.8,360.7 111.6,360.7 '/>
  247. </g>
  248. <path stroke='red' d='M111.6,427.4 L111.6,360.8 L112.7,360.8 L112.7,427.4 L111.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  249. <polygon fill = 'red' points = '112.7,427.4 113.8,427.4 113.8,373.1 112.7,373.1 '/>
  250. </g>
  251. <path stroke='red' d='M112.7,427.4 L112.7,373.2 L113.7,373.2 L113.7,427.4 L112.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  252. <polygon fill = 'red' points = '113.7,427.4 114.8,427.4 114.8,365.6 113.7,365.6 '/>
  253. </g>
  254. <path stroke='red' d='M113.7,427.4 L113.7,365.7 L114.7,365.7 L114.7,427.4 L113.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  255. <polygon fill = 'red' points = '114.7,427.4 115.8,427.4 115.8,362.2 114.7,362.2 '/>
  256. </g>
  257. <path stroke='red' d='M114.7,427.4 L114.7,362.3 L115.7,362.3 L115.7,427.4 L114.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  258. <polygon fill = 'red' points = '115.7,427.4 116.8,427.4 116.8,373.3 115.7,373.3 '/>
  259. </g>
  260. <path stroke='red' d='M115.7,427.4 L115.7,373.4 L116.7,373.4 L116.7,427.4 L115.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  261. <polygon fill = 'red' points = '116.7,427.4 117.8,427.4 117.8,402.9 116.7,402.9 '/>
  262. </g>
  263. <path stroke='red' d='M116.7,427.4 L116.7,403.0 L117.7,403.0 L117.7,427.4 L116.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  264. <polygon fill = 'red' points = '117.7,427.4 118.8,427.4 118.8,408.6 117.7,408.6 '/>
  265. </g>
  266. <path stroke='red' d='M117.7,427.4 L117.7,408.7 L118.7,408.7 L118.7,427.4 L117.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  267. <polygon fill = 'red' points = '118.7,427.4 119.8,427.4 119.8,404.7 118.7,404.7 '/>
  268. </g>
  269. <path stroke='red' d='M118.7,427.4 L118.7,404.8 L119.7,404.8 L119.7,427.4 L118.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  270. <polygon fill = 'red' points = '119.7,427.4 120.8,427.4 120.8,426.5 119.7,426.5 '/>
  271. </g>
  272. <path stroke='red' d='M119.7,427.4 L119.7,426.6 L120.7,426.6 L120.7,427.4 L119.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  273. <polygon fill = 'red' points = '120.7,427.4 121.8,427.4 121.8,424.8 120.7,424.8 '/>
  274. </g>
  275. <path stroke='red' d='M120.7,427.4 L120.7,424.9 L121.7,424.9 L121.7,427.4 L120.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  276. <polygon fill = 'red' points = '121.7,427.4 122.8,427.4 122.8,419.0 121.7,419.0 '/>
  277. </g>
  278. <path stroke='red' d='M121.7,427.4 L121.7,419.1 L122.7,419.1 L122.7,427.4 L121.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  279. <polygon fill = 'red' points = '122.7,427.4 123.8,427.4 123.8,406.9 122.7,406.9 '/>
  280. </g>
  281. <path stroke='red' d='M122.7,427.4 L122.7,407.0 L123.7,407.0 L123.7,427.4 L122.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  282. <polygon fill = 'red' points = '123.7,427.4 124.8,427.4 124.8,368.9 123.7,368.9 '/>
  283. </g>
  284. <path stroke='red' d='M123.7,427.4 L123.7,369.0 L124.7,369.0 L124.7,427.4 L123.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  285. <polygon fill = 'red' points = '124.7,427.4 125.8,427.4 125.8,378.9 124.7,378.9 '/>
  286. </g>
  287. <path stroke='red' d='M124.7,427.4 L124.7,379.0 L125.7,379.0 L125.7,427.4 L124.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  288. <polygon fill = 'red' points = '125.7,427.4 126.8,427.4 126.8,349.8 125.7,349.8 '/>
  289. </g>
  290. <path stroke='red' d='M125.7,427.4 L125.7,349.9 L126.7,349.9 L126.7,427.4 L125.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  291. <polygon fill = 'red' points = '126.7,427.4 127.8,427.4 127.8,364.1 126.7,364.1 '/>
  292. </g>
  293. <path stroke='red' d='M126.7,427.4 L126.7,364.2 L127.7,364.2 L127.7,427.4 L126.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  294. <polygon fill = 'red' points = '127.7,427.4 128.9,427.4 128.9,349.7 127.7,349.7 '/>
  295. </g>
  296. <path stroke='red' d='M127.7,427.4 L127.7,349.8 L128.8,349.8 L128.8,427.4 L127.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  297. <polygon fill = 'red' points = '128.8,427.4 129.9,427.4 129.9,336.9 128.8,336.9 '/>
  298. </g>
  299. <path stroke='red' d='M128.8,427.4 L128.8,337.0 L129.8,337.0 L129.8,427.4 L128.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  300. <polygon fill = 'red' points = '129.8,427.4 130.9,427.4 130.9,347.9 129.8,347.9 '/>
  301. </g>
  302. <path stroke='red' d='M129.8,427.4 L129.8,348.0 L130.8,348.0 L130.8,427.4 L129.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  303. <polygon fill = 'red' points = '130.8,427.4 131.9,427.4 131.9,320.8 130.8,320.8 '/>
  304. </g>
  305. <path stroke='red' d='M130.8,427.4 L130.8,320.9 L131.8,320.9 L131.8,427.4 L130.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  306. <polygon fill = 'red' points = '131.8,427.4 132.9,427.4 132.9,351.1 131.8,351.1 '/>
  307. </g>
  308. <path stroke='red' d='M131.8,427.4 L131.8,351.2 L132.8,351.2 L132.8,427.4 L131.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  309. <polygon fill = 'red' points = '132.8,427.4 133.9,427.4 133.9,371.6 132.8,371.6 '/>
  310. </g>
  311. <path stroke='red' d='M132.8,427.4 L132.8,371.7 L133.8,371.7 L133.8,427.4 L132.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  312. <polygon fill = 'red' points = '133.8,427.4 134.9,427.4 134.9,332.1 133.8,332.1 '/>
  313. </g>
  314. <path stroke='red' d='M133.8,427.4 L133.8,332.2 L134.8,332.2 L134.8,427.4 L133.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  315. <polygon fill = 'red' points = '134.8,427.4 135.9,427.4 135.9,343.3 134.8,343.3 '/>
  316. </g>
  317. <path stroke='red' d='M134.8,427.4 L134.8,343.4 L135.8,343.4 L135.8,427.4 L134.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  318. <polygon fill = 'red' points = '135.8,427.4 136.9,427.4 136.9,323.7 135.8,323.7 '/>
  319. </g>
  320. <path stroke='red' d='M135.8,427.4 L135.8,323.8 L136.8,323.8 L136.8,427.4 L135.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  321. <polygon fill = 'red' points = '136.8,427.4 137.9,427.4 137.9,310.4 136.8,310.4 '/>
  322. </g>
  323. <path stroke='red' d='M136.8,427.4 L136.8,310.5 L137.8,310.5 L137.8,427.4 L136.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  324. <polygon fill = 'red' points = '137.8,427.4 138.9,427.4 138.9,277.1 137.8,277.1 '/>
  325. </g>
  326. <path stroke='red' d='M137.8,427.4 L137.8,277.2 L138.8,277.2 L138.8,427.4 L137.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  327. <polygon fill = 'red' points = '138.8,427.4 139.9,427.4 139.9,259.5 138.8,259.5 '/>
  328. </g>
  329. <path stroke='red' d='M138.8,427.4 L138.8,259.6 L139.8,259.6 L139.8,427.4 L138.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  330. <polygon fill = 'red' points = '139.8,427.4 140.9,427.4 140.9,234.0 139.8,234.0 '/>
  331. </g>
  332. <path stroke='red' d='M139.8,427.4 L139.8,234.1 L140.8,234.1 L140.8,427.4 L139.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  333. <polygon fill = 'red' points = '140.8,427.4 141.9,427.4 141.9,218.2 140.8,218.2 '/>
  334. </g>
  335. <path stroke='red' d='M140.8,427.4 L140.8,218.3 L141.8,218.3 L141.8,427.4 L140.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  336. <polygon fill = 'red' points = '141.8,427.4 142.9,427.4 142.9,212.4 141.8,212.4 '/>
  337. </g>
  338. <path stroke='red' d='M141.8,427.4 L141.8,212.5 L142.8,212.5 L142.8,427.4 L141.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  339. <polygon fill = 'red' points = '142.8,427.4 143.9,427.4 143.9,207.1 142.8,207.1 '/>
  340. </g>
  341. <path stroke='red' d='M142.8,427.4 L142.8,207.2 L143.8,207.2 L143.8,427.4 L142.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  342. <polygon fill = 'red' points = '143.8,427.4 144.9,427.4 144.9,173.9 143.8,173.9 '/>
  343. </g>
  344. <path stroke='red' d='M143.8,427.4 L143.8,174.0 L144.8,174.0 L144.8,427.4 L143.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  345. <polygon fill = 'red' points = '144.8,427.4 146.0,427.4 146.0,179.5 144.8,179.5 '/>
  346. </g>
  347. <path stroke='red' d='M144.8,427.4 L144.8,179.6 L145.9,179.6 L145.9,427.4 L144.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  348. <polygon fill = 'red' points = '145.9,427.4 147.0,427.4 147.0,133.7 145.9,133.7 '/>
  349. </g>
  350. <path stroke='red' d='M145.9,427.4 L145.9,133.8 L146.9,133.8 L146.9,427.4 L145.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  351. <polygon fill = 'red' points = '146.9,427.4 148.0,427.4 148.0,125.3 146.9,125.3 '/>
  352. </g>
  353. <path stroke='red' d='M146.9,427.4 L146.9,125.4 L147.9,125.4 L147.9,427.4 L146.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  354. <polygon fill = 'red' points = '147.9,427.4 149.0,427.4 149.0,97.3 147.9,97.3 '/>
  355. </g>
  356. <path stroke='red' d='M147.9,427.4 L147.9,97.4 L148.9,97.4 L148.9,427.4 L147.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  357. <polygon fill = 'red' points = '148.9,427.4 150.0,427.4 150.0,89.4 148.9,89.4 '/>
  358. </g>
  359. <path stroke='red' d='M148.9,427.4 L148.9,89.5 L149.9,89.5 L149.9,427.4 L148.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  360. <polygon fill = 'red' points = '149.9,427.4 151.0,427.4 151.0,74.8 149.9,74.8 '/>
  361. </g>
  362. <path stroke='red' d='M149.9,427.4 L149.9,74.9 L150.9,74.9 L150.9,427.4 L149.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  363. <polygon fill = 'red' points = '150.9,427.4 152.0,427.4 152.0,65.4 150.9,65.4 '/>
  364. </g>
  365. <path stroke='red' d='M150.9,427.4 L150.9,65.5 L151.9,65.5 L151.9,427.4 L150.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  366. <polygon fill = 'red' points = '151.9,427.4 153.0,427.4 153.0,123.5 151.9,123.5 '/>
  367. </g>
  368. <path stroke='red' d='M151.9,427.4 L151.9,123.6 L152.9,123.6 L152.9,427.4 L151.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  369. <polygon fill = 'red' points = '152.9,427.4 154.0,427.4 154.0,127.7 152.9,127.7 '/>
  370. </g>
  371. <path stroke='red' d='M152.9,427.4 L152.9,127.8 L153.9,127.8 L153.9,427.4 L152.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  372. <polygon fill = 'red' points = '153.9,427.4 155.0,427.4 155.0,108.8 153.9,108.8 '/>
  373. </g>
  374. <path stroke='red' d='M153.9,427.4 L153.9,108.9 L154.9,108.9 L154.9,427.4 L153.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  375. <polygon fill = 'red' points = '154.9,427.4 156.0,427.4 156.0,117.4 154.9,117.4 '/>
  376. </g>
  377. <path stroke='red' d='M154.9,427.4 L154.9,117.5 L155.9,117.5 L155.9,427.4 L154.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  378. <polygon fill = 'red' points = '155.9,427.4 157.0,427.4 157.0,102.6 155.9,102.6 '/>
  379. </g>
  380. <path stroke='red' d='M155.9,427.4 L155.9,102.7 L156.9,102.7 L156.9,427.4 L155.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  381. <polygon fill = 'red' points = '156.9,427.4 158.0,427.4 158.0,170.6 156.9,170.6 '/>
  382. </g>
  383. <path stroke='red' d='M156.9,427.4 L156.9,170.7 L157.9,170.7 L157.9,427.4 L156.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  384. <polygon fill = 'red' points = '157.9,427.4 159.0,427.4 159.0,184.5 157.9,184.5 '/>
  385. </g>
  386. <path stroke='red' d='M157.9,427.4 L157.9,184.6 L158.9,184.6 L158.9,427.4 L157.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  387. <polygon fill = 'red' points = '158.9,427.4 160.0,427.4 160.0,179.4 158.9,179.4 '/>
  388. </g>
  389. <path stroke='red' d='M158.9,427.4 L158.9,179.5 L159.9,179.5 L159.9,427.4 L158.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  390. <polygon fill = 'red' points = '159.9,427.4 161.0,427.4 161.0,219.5 159.9,219.5 '/>
  391. </g>
  392. <path stroke='red' d='M159.9,427.4 L159.9,219.6 L160.9,219.6 L160.9,427.4 L159.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  393. <polygon fill = 'red' points = '160.9,427.4 162.1,427.4 162.1,190.9 160.9,190.9 '/>
  394. </g>
  395. <path stroke='red' d='M160.9,427.4 L160.9,191.0 L162.0,191.0 L162.0,427.4 L160.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  396. <polygon fill = 'red' points = '162.0,427.4 163.1,427.4 163.1,178.0 162.0,178.0 '/>
  397. </g>
  398. <path stroke='red' d='M162.0,427.4 L162.0,178.1 L163.0,178.1 L163.0,427.4 L162.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  399. <polygon fill = 'red' points = '163.0,427.4 164.1,427.4 164.1,193.0 163.0,193.0 '/>
  400. </g>
  401. <path stroke='red' d='M163.0,427.4 L163.0,193.1 L164.0,193.1 L164.0,427.4 L163.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  402. <polygon fill = 'red' points = '164.0,427.4 165.1,427.4 165.1,249.9 164.0,249.9 '/>
  403. </g>
  404. <path stroke='red' d='M164.0,427.4 L164.0,250.0 L165.0,250.0 L165.0,427.4 L164.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  405. <polygon fill = 'red' points = '165.0,427.4 166.1,427.4 166.1,275.9 165.0,275.9 '/>
  406. </g>
  407. <path stroke='red' d='M165.0,427.4 L165.0,276.0 L166.0,276.0 L166.0,427.4 L165.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  408. <polygon fill = 'red' points = '166.0,427.4 167.1,427.4 167.1,345.2 166.0,345.2 '/>
  409. </g>
  410. <path stroke='red' d='M166.0,427.4 L166.0,345.3 L167.0,345.3 L167.0,427.4 L166.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  411. <polygon fill = 'red' points = '167.0,427.4 168.1,427.4 168.1,331.1 167.0,331.1 '/>
  412. </g>
  413. <path stroke='red' d='M167.0,427.4 L167.0,331.2 L168.0,331.2 L168.0,427.4 L167.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  414. <polygon fill = 'red' points = '168.0,427.4 169.1,427.4 169.1,320.3 168.0,320.3 '/>
  415. </g>
  416. <path stroke='red' d='M168.0,427.4 L168.0,320.4 L169.0,320.4 L169.0,427.4 L168.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  417. <polygon fill = 'red' points = '169.0,427.4 170.1,427.4 170.1,315.2 169.0,315.2 '/>
  418. </g>
  419. <path stroke='red' d='M169.0,427.4 L169.0,315.3 L170.0,315.3 L170.0,427.4 L169.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  420. <polygon fill = 'red' points = '170.0,427.4 171.1,427.4 171.1,285.9 170.0,285.9 '/>
  421. </g>
  422. <path stroke='red' d='M170.0,427.4 L170.0,286.0 L171.0,286.0 L171.0,427.4 L170.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  423. <polygon fill = 'red' points = '171.0,427.4 172.1,427.4 172.1,267.0 171.0,267.0 '/>
  424. </g>
  425. <path stroke='red' d='M171.0,427.4 L171.0,267.1 L172.0,267.1 L172.0,427.4 L171.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  426. <polygon fill = 'red' points = '172.0,427.4 173.1,427.4 173.1,253.0 172.0,253.0 '/>
  427. </g>
  428. <path stroke='red' d='M172.0,427.4 L172.0,253.1 L173.0,253.1 L173.0,427.4 L172.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  429. <polygon fill = 'red' points = '173.0,427.4 174.1,427.4 174.1,284.3 173.0,284.3 '/>
  430. </g>
  431. <path stroke='red' d='M173.0,427.4 L173.0,284.4 L174.0,284.4 L174.0,427.4 L173.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  432. <polygon fill = 'red' points = '174.0,427.4 175.1,427.4 175.1,268.4 174.0,268.4 '/>
  433. </g>
  434. <path stroke='red' d='M174.0,427.4 L174.0,268.5 L175.0,268.5 L175.0,427.4 L174.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  435. <polygon fill = 'red' points = '175.0,427.4 176.1,427.4 176.1,362.3 175.0,362.3 '/>
  436. </g>
  437. <path stroke='red' d='M175.0,427.4 L175.0,362.4 L176.0,362.4 L176.0,427.4 L175.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  438. <polygon fill = 'red' points = '176.0,427.4 177.1,427.4 177.1,327.4 176.0,327.4 '/>
  439. </g>
  440. <path stroke='red' d='M176.0,427.4 L176.0,327.5 L177.0,327.5 L177.0,427.4 L176.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  441. <polygon fill = 'red' points = '177.0,427.4 178.2,427.4 178.2,342.9 177.0,342.9 '/>
  442. </g>
  443. <path stroke='red' d='M177.0,427.4 L177.0,343.0 L178.1,343.0 L178.1,427.4 L177.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  444. <polygon fill = 'red' points = '178.1,427.4 179.2,427.4 179.2,381.3 178.1,381.3 '/>
  445. </g>
  446. <path stroke='red' d='M178.1,427.4 L178.1,381.4 L179.1,381.4 L179.1,427.4 L178.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  447. <polygon fill = 'red' points = '179.1,427.4 180.2,427.4 180.2,406.2 179.1,406.2 '/>
  448. </g>
  449. <path stroke='red' d='M179.1,427.4 L179.1,406.3 L180.1,406.3 L180.1,427.4 L179.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  450. <polygon fill = 'red' points = '180.1,427.4 181.2,427.4 181.2,387.5 180.1,387.5 '/>
  451. </g>
  452. <path stroke='red' d='M180.1,427.4 L180.1,387.6 L181.1,387.6 L181.1,427.4 L180.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  453. <polygon fill = 'red' points = '181.1,427.4 182.2,427.4 182.2,387.2 181.1,387.2 '/>
  454. </g>
  455. <path stroke='red' d='M181.1,427.4 L181.1,387.3 L182.1,387.3 L182.1,427.4 L181.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  456. <polygon fill = 'red' points = '182.1,427.4 183.2,427.4 183.2,408.0 182.1,408.0 '/>
  457. </g>
  458. <path stroke='red' d='M182.1,427.4 L182.1,408.1 L183.1,408.1 L183.1,427.4 L182.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  459. <polygon fill = 'red' points = '183.1,427.4 184.2,427.4 184.2,426.5 183.1,426.5 '/>
  460. </g>
  461. <path stroke='red' d='M183.1,427.4 L183.1,426.6 L184.1,426.6 L184.1,427.4 L183.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  462. <polygon fill = 'red' points = '184.1,427.4 185.2,427.4 185.2,420.2 184.1,420.2 '/>
  463. </g>
  464. <path stroke='red' d='M184.1,427.4 L184.1,420.3 L185.1,420.3 L185.1,427.4 L184.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  465. <polygon fill = 'red' points = '185.1,427.4 186.2,427.4 186.2,426.0 185.1,426.0 '/>
  466. </g>
  467. <path stroke='red' d='M185.1,427.4 L185.1,426.1 L186.1,426.1 L186.1,427.4 L185.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  468. <polygon fill = 'red' points = '186.1,427.4 187.2,427.4 187.2,426.5 186.1,426.5 '/>
  469. </g>
  470. <path stroke='red' d='M186.1,427.4 L186.1,426.6 L187.1,426.6 L187.1,427.4 L186.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  471. <polygon fill = 'red' points = '187.1,427.4 188.2,427.4 188.2,426.5 187.1,426.5 '/>
  472. </g>
  473. <path stroke='red' d='M187.1,427.4 L187.1,426.6 L188.1,426.6 L188.1,427.4 L187.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  474. <polygon fill = 'red' points = '188.1,427.4 189.2,427.4 189.2,426.5 188.1,426.5 '/>
  475. </g>
  476. <path stroke='red' d='M188.1,427.4 L188.1,426.6 L189.1,426.6 L189.1,427.4 L188.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  477. <polygon fill = 'red' points = '189.1,427.4 190.2,427.4 190.2,397.6 189.1,397.6 '/>
  478. </g>
  479. <path stroke='red' d='M189.1,427.4 L189.1,397.7 L190.1,397.7 L190.1,427.4 L189.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  480. <polygon fill = 'red' points = '190.1,427.4 191.2,427.4 191.2,382.8 190.1,382.8 '/>
  481. </g>
  482. <path stroke='red' d='M190.1,427.4 L190.1,382.9 L191.1,382.9 L191.1,427.4 L190.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  483. <polygon fill = 'red' points = '191.1,427.4 192.2,427.4 192.2,373.8 191.1,373.8 '/>
  484. </g>
  485. <path stroke='red' d='M191.1,427.4 L191.1,373.9 L192.1,373.9 L192.1,427.4 L191.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  486. <polygon fill = 'red' points = '192.1,427.4 193.2,427.4 193.2,383.6 192.1,383.6 '/>
  487. </g>
  488. <path stroke='red' d='M192.1,427.4 L192.1,383.7 L193.1,383.7 L193.1,427.4 L192.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  489. <polygon fill = 'red' points = '193.1,427.4 194.3,427.4 194.3,382.5 193.1,382.5 '/>
  490. </g>
  491. <path stroke='red' d='M193.1,427.4 L193.1,382.6 L194.2,382.6 L194.2,427.4 L193.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  492. <polygon fill = 'red' points = '194.2,427.4 195.3,427.4 195.3,373.3 194.2,373.3 '/>
  493. </g>
  494. <path stroke='red' d='M194.2,427.4 L194.2,373.4 L195.2,373.4 L195.2,427.4 L194.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  495. <polygon fill = 'red' points = '195.2,427.4 196.3,427.4 196.3,383.8 195.2,383.8 '/>
  496. </g>
  497. <path stroke='red' d='M195.2,427.4 L195.2,383.9 L196.2,383.9 L196.2,427.4 L195.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  498. <polygon fill = 'red' points = '196.2,427.4 197.3,427.4 197.3,402.9 196.2,402.9 '/>
  499. </g>
  500. <path stroke='red' d='M196.2,427.4 L196.2,403.0 L197.2,403.0 L197.2,427.4 L196.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  501. <polygon fill = 'red' points = '197.2,427.4 198.3,427.4 198.3,350.1 197.2,350.1 '/>
  502. </g>
  503. <path stroke='red' d='M197.2,427.4 L197.2,350.2 L198.2,350.2 L198.2,427.4 L197.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  504. <polygon fill = 'red' points = '198.2,427.4 199.3,427.4 199.3,378.4 198.2,378.4 '/>
  505. </g>
  506. <path stroke='red' d='M198.2,427.4 L198.2,378.5 L199.2,378.5 L199.2,427.4 L198.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  507. <polygon fill = 'red' points = '199.2,427.4 200.3,427.4 200.3,371.3 199.2,371.3 '/>
  508. </g>
  509. <path stroke='red' d='M199.2,427.4 L199.2,371.4 L200.2,371.4 L200.2,427.4 L199.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  510. <polygon fill = 'red' points = '200.2,427.4 201.3,427.4 201.3,371.2 200.2,371.2 '/>
  511. </g>
  512. <path stroke='red' d='M200.2,427.4 L200.2,371.3 L201.2,371.3 L201.2,427.4 L200.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  513. <polygon fill = 'red' points = '201.2,427.4 202.3,427.4 202.3,388.3 201.2,388.3 '/>
  514. </g>
  515. <path stroke='red' d='M201.2,427.4 L201.2,388.4 L202.2,388.4 L202.2,427.4 L201.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  516. <polygon fill = 'red' points = '202.2,427.4 203.3,427.4 203.3,350.7 202.2,350.7 '/>
  517. </g>
  518. <path stroke='red' d='M202.2,427.4 L202.2,350.8 L203.2,350.8 L203.2,427.4 L202.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  519. <polygon fill = 'red' points = '203.2,427.4 204.3,427.4 204.3,342.7 203.2,342.7 '/>
  520. </g>
  521. <path stroke='red' d='M203.2,427.4 L203.2,342.8 L204.2,342.8 L204.2,427.4 L203.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  522. <polygon fill = 'red' points = '204.2,427.4 205.3,427.4 205.3,292.0 204.2,292.0 '/>
  523. </g>
  524. <path stroke='red' d='M204.2,427.4 L204.2,292.1 L205.2,292.1 L205.2,427.4 L204.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  525. <polygon fill = 'red' points = '205.2,427.4 206.3,427.4 206.3,296.3 205.2,296.3 '/>
  526. </g>
  527. <path stroke='red' d='M205.2,427.4 L205.2,296.4 L206.2,296.4 L206.2,427.4 L205.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  528. <polygon fill = 'red' points = '206.2,427.4 207.3,427.4 207.3,247.7 206.2,247.7 '/>
  529. </g>
  530. <path stroke='red' d='M206.2,427.4 L206.2,247.8 L207.2,247.8 L207.2,427.4 L206.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  531. <polygon fill = 'red' points = '207.2,427.4 208.3,427.4 208.3,247.7 207.2,247.7 '/>
  532. </g>
  533. <path stroke='red' d='M207.2,427.4 L207.2,247.8 L208.2,247.8 L208.2,427.4 L207.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  534. <polygon fill = 'red' points = '208.2,427.4 209.3,427.4 209.3,259.9 208.2,259.9 '/>
  535. </g>
  536. <path stroke='red' d='M208.2,427.4 L208.2,260.0 L209.2,260.0 L209.2,427.4 L208.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  537. <polygon fill = 'red' points = '209.2,427.4 210.4,427.4 210.4,303.7 209.2,303.7 '/>
  538. </g>
  539. <path stroke='red' d='M209.2,427.4 L209.2,303.8 L210.3,303.8 L210.3,427.4 L209.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  540. <polygon fill = 'red' points = '210.3,427.4 211.4,427.4 211.4,294.3 210.3,294.3 '/>
  541. </g>
  542. <path stroke='red' d='M210.3,427.4 L210.3,294.4 L211.3,294.4 L211.3,427.4 L210.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  543. <polygon fill = 'red' points = '211.3,427.4 212.4,427.4 212.4,274.2 211.3,274.2 '/>
  544. </g>
  545. <path stroke='red' d='M211.3,427.4 L211.3,274.3 L212.3,274.3 L212.3,427.4 L211.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  546. <polygon fill = 'red' points = '212.3,427.4 213.4,427.4 213.4,249.4 212.3,249.4 '/>
  547. </g>
  548. <path stroke='red' d='M212.3,427.4 L212.3,249.5 L213.3,249.5 L213.3,427.4 L212.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  549. <polygon fill = 'red' points = '213.3,427.4 214.4,427.4 214.4,326.3 213.3,326.3 '/>
  550. </g>
  551. <path stroke='red' d='M213.3,427.4 L213.3,326.4 L214.3,326.4 L214.3,427.4 L213.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  552. <polygon fill = 'red' points = '214.3,427.4 215.4,427.4 215.4,324.4 214.3,324.4 '/>
  553. </g>
  554. <path stroke='red' d='M214.3,427.4 L214.3,324.5 L215.3,324.5 L215.3,427.4 L214.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  555. <polygon fill = 'red' points = '215.3,427.4 216.4,427.4 216.4,293.4 215.3,293.4 '/>
  556. </g>
  557. <path stroke='red' d='M215.3,427.4 L215.3,293.5 L216.3,293.5 L216.3,427.4 L215.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  558. <polygon fill = 'red' points = '216.3,427.4 217.4,427.4 217.4,293.5 216.3,293.5 '/>
  559. </g>
  560. <path stroke='red' d='M216.3,427.4 L216.3,293.6 L217.3,293.6 L217.3,427.4 L216.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  561. <polygon fill = 'red' points = '217.3,427.4 218.4,427.4 218.4,338.1 217.3,338.1 '/>
  562. </g>
  563. <path stroke='red' d='M217.3,427.4 L217.3,338.2 L218.3,338.2 L218.3,427.4 L217.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  564. <polygon fill = 'red' points = '218.3,427.4 219.4,427.4 219.4,314.7 218.3,314.7 '/>
  565. </g>
  566. <path stroke='red' d='M218.3,427.4 L218.3,314.8 L219.3,314.8 L219.3,427.4 L218.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  567. <polygon fill = 'red' points = '219.3,427.4 220.4,427.4 220.4,399.4 219.3,399.4 '/>
  568. </g>
  569. <path stroke='red' d='M219.3,427.4 L219.3,399.5 L220.3,399.5 L220.3,427.4 L219.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  570. <polygon fill = 'red' points = '220.3,427.4 221.4,427.4 221.4,379.2 220.3,379.2 '/>
  571. </g>
  572. <path stroke='red' d='M220.3,427.4 L220.3,379.3 L221.3,379.3 L221.3,427.4 L220.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  573. <polygon fill = 'red' points = '221.3,427.4 222.4,427.4 222.4,365.7 221.3,365.7 '/>
  574. </g>
  575. <path stroke='red' d='M221.3,427.4 L221.3,365.8 L222.3,365.8 L222.3,427.4 L221.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  576. <polygon fill = 'red' points = '222.3,427.4 223.4,427.4 223.4,360.4 222.3,360.4 '/>
  577. </g>
  578. <path stroke='red' d='M222.3,427.4 L222.3,360.5 L223.3,360.5 L223.3,427.4 L222.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  579. <polygon fill = 'red' points = '223.3,427.4 224.4,427.4 224.4,348.3 223.3,348.3 '/>
  580. </g>
  581. <path stroke='red' d='M223.3,427.4 L223.3,348.4 L224.3,348.4 L224.3,427.4 L223.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  582. <polygon fill = 'red' points = '224.3,427.4 225.4,427.4 225.4,323.5 224.3,323.5 '/>
  583. </g>
  584. <path stroke='red' d='M224.3,427.4 L224.3,323.6 L225.3,323.6 L225.3,427.4 L224.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  585. <polygon fill = 'red' points = '225.3,427.4 226.5,427.4 226.5,327.2 225.3,327.2 '/>
  586. </g>
  587. <path stroke='red' d='M225.3,427.4 L225.3,327.3 L226.4,327.3 L226.4,427.4 L225.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  588. <polygon fill = 'red' points = '226.4,427.4 227.5,427.4 227.5,316.5 226.4,316.5 '/>
  589. </g>
  590. <path stroke='red' d='M226.4,427.4 L226.4,316.6 L227.4,316.6 L227.4,427.4 L226.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  591. <polygon fill = 'red' points = '227.4,427.4 228.5,427.4 228.5,313.0 227.4,313.0 '/>
  592. </g>
  593. <path stroke='red' d='M227.4,427.4 L227.4,313.1 L228.4,313.1 L228.4,427.4 L227.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  594. <polygon fill = 'red' points = '228.4,427.4 229.5,427.4 229.5,278.3 228.4,278.3 '/>
  595. </g>
  596. <path stroke='red' d='M228.4,427.4 L228.4,278.4 L229.4,278.4 L229.4,427.4 L228.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  597. <polygon fill = 'red' points = '229.4,427.4 230.5,427.4 230.5,331.3 229.4,331.3 '/>
  598. </g>
  599. <path stroke='red' d='M229.4,427.4 L229.4,331.4 L230.4,331.4 L230.4,427.4 L229.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  600. <polygon fill = 'red' points = '230.4,427.4 231.5,427.4 231.5,299.0 230.4,299.0 '/>
  601. </g>
  602. <path stroke='red' d='M230.4,427.4 L230.4,299.1 L231.4,299.1 L231.4,427.4 L230.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  603. <polygon fill = 'red' points = '231.4,427.4 232.5,427.4 232.5,298.0 231.4,298.0 '/>
  604. </g>
  605. <path stroke='red' d='M231.4,427.4 L231.4,298.1 L232.4,298.1 L232.4,427.4 L231.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  606. <polygon fill = 'red' points = '232.4,427.4 233.5,427.4 233.5,299.1 232.4,299.1 '/>
  607. </g>
  608. <path stroke='red' d='M232.4,427.4 L232.4,299.2 L233.4,299.2 L233.4,427.4 L232.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  609. <polygon fill = 'red' points = '233.4,427.4 234.5,427.4 234.5,268.6 233.4,268.6 '/>
  610. </g>
  611. <path stroke='red' d='M233.4,427.4 L233.4,268.7 L234.4,268.7 L234.4,427.4 L233.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  612. <polygon fill = 'red' points = '234.4,427.4 235.5,427.4 235.5,257.3 234.4,257.3 '/>
  613. </g>
  614. <path stroke='red' d='M234.4,427.4 L234.4,257.4 L235.4,257.4 L235.4,427.4 L234.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  615. <polygon fill = 'red' points = '235.4,427.4 236.5,427.4 236.5,220.1 235.4,220.1 '/>
  616. </g>
  617. <path stroke='red' d='M235.4,427.4 L235.4,220.2 L236.4,220.2 L236.4,427.4 L235.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  618. <polygon fill = 'red' points = '236.4,427.4 237.5,427.4 237.5,237.1 236.4,237.1 '/>
  619. </g>
  620. <path stroke='red' d='M236.4,427.4 L236.4,237.2 L237.4,237.2 L237.4,427.4 L236.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  621. <polygon fill = 'red' points = '237.4,427.4 238.5,427.4 238.5,257.8 237.4,257.8 '/>
  622. </g>
  623. <path stroke='red' d='M237.4,427.4 L237.4,257.9 L238.4,257.9 L238.4,427.4 L237.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  624. <polygon fill = 'red' points = '238.4,427.4 239.5,427.4 239.5,213.2 238.4,213.2 '/>
  625. </g>
  626. <path stroke='red' d='M238.4,427.4 L238.4,213.3 L239.4,213.3 L239.4,427.4 L238.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  627. <polygon fill = 'red' points = '239.4,427.4 240.5,427.4 240.5,241.7 239.4,241.7 '/>
  628. </g>
  629. <path stroke='red' d='M239.4,427.4 L239.4,241.8 L240.4,241.8 L240.4,427.4 L239.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  630. <polygon fill = 'red' points = '240.4,427.4 241.5,427.4 241.5,240.2 240.4,240.2 '/>
  631. </g>
  632. <path stroke='red' d='M240.4,427.4 L240.4,240.3 L241.4,240.3 L241.4,427.4 L240.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  633. <polygon fill = 'red' points = '241.4,427.4 242.6,427.4 242.6,223.7 241.4,223.7 '/>
  634. </g>
  635. <path stroke='red' d='M241.4,427.4 L241.4,223.8 L242.5,223.8 L242.5,427.4 L241.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  636. <polygon fill = 'red' points = '242.5,427.4 243.6,427.4 243.6,327.2 242.5,327.2 '/>
  637. </g>
  638. <path stroke='red' d='M242.5,427.4 L242.5,327.3 L243.5,327.3 L243.5,427.4 L242.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  639. <polygon fill = 'red' points = '243.5,427.4 244.6,427.4 244.6,281.9 243.5,281.9 '/>
  640. </g>
  641. <path stroke='red' d='M243.5,427.4 L243.5,282.0 L244.5,282.0 L244.5,427.4 L243.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  642. <polygon fill = 'red' points = '244.5,427.4 245.6,427.4 245.6,295.7 244.5,295.7 '/>
  643. </g>
  644. <path stroke='red' d='M244.5,427.4 L244.5,295.8 L245.5,295.8 L245.5,427.4 L244.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  645. <polygon fill = 'red' points = '245.5,427.4 246.6,427.4 246.6,311.7 245.5,311.7 '/>
  646. </g>
  647. <path stroke='red' d='M245.5,427.4 L245.5,311.8 L246.5,311.8 L246.5,427.4 L245.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  648. <polygon fill = 'red' points = '246.5,427.4 247.6,427.4 247.6,299.7 246.5,299.7 '/>
  649. </g>
  650. <path stroke='red' d='M246.5,427.4 L246.5,299.8 L247.5,299.8 L247.5,427.4 L246.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  651. <polygon fill = 'red' points = '247.5,427.4 248.6,427.4 248.6,279.3 247.5,279.3 '/>
  652. </g>
  653. <path stroke='red' d='M247.5,427.4 L247.5,279.4 L248.5,279.4 L248.5,427.4 L247.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  654. <polygon fill = 'red' points = '248.5,427.4 249.6,427.4 249.6,315.0 248.5,315.0 '/>
  655. </g>
  656. <path stroke='red' d='M248.5,427.4 L248.5,315.1 L249.5,315.1 L249.5,427.4 L248.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  657. <polygon fill = 'red' points = '249.5,427.4 250.6,427.4 250.6,334.2 249.5,334.2 '/>
  658. </g>
  659. <path stroke='red' d='M249.5,427.4 L249.5,334.3 L250.5,334.3 L250.5,427.4 L249.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  660. <polygon fill = 'red' points = '250.5,427.4 251.6,427.4 251.6,339.3 250.5,339.3 '/>
  661. </g>
  662. <path stroke='red' d='M250.5,427.4 L250.5,339.4 L251.5,339.4 L251.5,427.4 L250.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  663. <polygon fill = 'red' points = '251.5,427.4 252.6,427.4 252.6,350.1 251.5,350.1 '/>
  664. </g>
  665. <path stroke='red' d='M251.5,427.4 L251.5,350.2 L252.5,350.2 L252.5,427.4 L251.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  666. <polygon fill = 'red' points = '252.5,427.4 253.6,427.4 253.6,316.0 252.5,316.0 '/>
  667. </g>
  668. <path stroke='red' d='M252.5,427.4 L252.5,316.1 L253.5,316.1 L253.5,427.4 L252.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  669. <polygon fill = 'red' points = '253.5,427.4 254.6,427.4 254.6,310.4 253.5,310.4 '/>
  670. </g>
  671. <path stroke='red' d='M253.5,427.4 L253.5,310.5 L254.5,310.5 L254.5,427.4 L253.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  672. <polygon fill = 'red' points = '254.5,427.4 255.6,427.4 255.6,291.8 254.5,291.8 '/>
  673. </g>
  674. <path stroke='red' d='M254.5,427.4 L254.5,291.9 L255.5,291.9 L255.5,427.4 L254.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  675. <polygon fill = 'red' points = '255.5,427.4 256.6,427.4 256.6,280.3 255.5,280.3 '/>
  676. </g>
  677. <path stroke='red' d='M255.5,427.4 L255.5,280.4 L256.5,280.4 L256.5,427.4 L255.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  678. <polygon fill = 'red' points = '256.5,427.4 257.6,427.4 257.6,268.2 256.5,268.2 '/>
  679. </g>
  680. <path stroke='red' d='M256.5,427.4 L256.5,268.3 L257.5,268.3 L257.5,427.4 L256.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  681. <polygon fill = 'red' points = '257.5,427.4 258.7,427.4 258.7,265.6 257.5,265.6 '/>
  682. </g>
  683. <path stroke='red' d='M257.5,427.4 L257.5,265.7 L258.6,265.7 L258.6,427.4 L257.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  684. <polygon fill = 'red' points = '258.6,427.4 259.7,427.4 259.7,236.2 258.6,236.2 '/>
  685. </g>
  686. <path stroke='red' d='M258.6,427.4 L258.6,236.3 L259.6,236.3 L259.6,427.4 L258.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  687. <polygon fill = 'red' points = '259.6,427.4 260.7,427.4 260.7,258.7 259.6,258.7 '/>
  688. </g>
  689. <path stroke='red' d='M259.6,427.4 L259.6,258.8 L260.6,258.8 L260.6,427.4 L259.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  690. <polygon fill = 'red' points = '260.6,427.4 261.7,427.4 261.7,226.5 260.6,226.5 '/>
  691. </g>
  692. <path stroke='red' d='M260.6,427.4 L260.6,226.6 L261.6,226.6 L261.6,427.4 L260.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  693. <polygon fill = 'red' points = '261.6,427.4 262.7,427.4 262.7,230.8 261.6,230.8 '/>
  694. </g>
  695. <path stroke='red' d='M261.6,427.4 L261.6,230.9 L262.6,230.9 L262.6,427.4 L261.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  696. <polygon fill = 'red' points = '262.6,427.4 263.7,427.4 263.7,193.8 262.6,193.8 '/>
  697. </g>
  698. <path stroke='red' d='M262.6,427.4 L262.6,193.9 L263.6,193.9 L263.6,427.4 L262.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  699. <polygon fill = 'red' points = '263.6,427.4 264.7,427.4 264.7,229.5 263.6,229.5 '/>
  700. </g>
  701. <path stroke='red' d='M263.6,427.4 L263.6,229.6 L264.6,229.6 L264.6,427.4 L263.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  702. <polygon fill = 'red' points = '264.6,427.4 265.7,427.4 265.7,196.5 264.6,196.5 '/>
  703. </g>
  704. <path stroke='red' d='M264.6,427.4 L264.6,196.6 L265.6,196.6 L265.6,427.4 L264.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  705. <polygon fill = 'red' points = '265.6,427.4 266.7,427.4 266.7,194.8 265.6,194.8 '/>
  706. </g>
  707. <path stroke='red' d='M265.6,427.4 L265.6,194.9 L266.6,194.9 L266.6,427.4 L265.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  708. <polygon fill = 'red' points = '266.6,427.4 267.7,427.4 267.7,162.6 266.6,162.6 '/>
  709. </g>
  710. <path stroke='red' d='M266.6,427.4 L266.6,162.7 L267.6,162.7 L267.6,427.4 L266.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  711. <polygon fill = 'red' points = '267.6,427.4 268.7,427.4 268.7,163.8 267.6,163.8 '/>
  712. </g>
  713. <path stroke='red' d='M267.6,427.4 L267.6,163.9 L268.6,163.9 L268.6,427.4 L267.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  714. <polygon fill = 'red' points = '268.6,427.4 269.7,427.4 269.7,162.4 268.6,162.4 '/>
  715. </g>
  716. <path stroke='red' d='M268.6,427.4 L268.6,162.5 L269.6,162.5 L269.6,427.4 L268.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  717. <polygon fill = 'red' points = '269.6,427.4 270.7,427.4 270.7,137.6 269.6,137.6 '/>
  718. </g>
  719. <path stroke='red' d='M269.6,427.4 L269.6,137.7 L270.6,137.7 L270.6,427.4 L269.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  720. <polygon fill = 'red' points = '270.6,427.4 271.7,427.4 271.7,142.2 270.6,142.2 '/>
  721. </g>
  722. <path stroke='red' d='M270.6,427.4 L270.6,142.3 L271.6,142.3 L271.6,427.4 L270.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  723. <polygon fill = 'red' points = '271.6,427.4 272.7,427.4 272.7,130.5 271.6,130.5 '/>
  724. </g>
  725. <path stroke='red' d='M271.6,427.4 L271.6,130.6 L272.6,130.6 L272.6,427.4 L271.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  726. <polygon fill = 'red' points = '272.6,427.4 273.7,427.4 273.7,131.9 272.6,131.9 '/>
  727. </g>
  728. <path stroke='red' d='M272.6,427.4 L272.6,132.0 L273.6,132.0 L273.6,427.4 L272.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  729. <polygon fill = 'red' points = '273.6,427.4 274.7,427.4 274.7,108.4 273.6,108.4 '/>
  730. </g>
  731. <path stroke='red' d='M273.6,427.4 L273.6,108.5 L274.6,108.5 L274.6,427.4 L273.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  732. <polygon fill = 'red' points = '274.6,427.4 275.8,427.4 275.8,100.3 274.6,100.3 '/>
  733. </g>
  734. <path stroke='red' d='M274.6,427.4 L274.6,100.4 L275.7,100.4 L275.7,427.4 L274.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  735. <polygon fill = 'red' points = '275.7,427.4 276.8,427.4 276.8,113.1 275.7,113.1 '/>
  736. </g>
  737. <path stroke='red' d='M275.7,427.4 L275.7,113.2 L276.7,113.2 L276.7,427.4 L275.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  738. <polygon fill = 'red' points = '276.7,427.4 277.8,427.4 277.8,118.1 276.7,118.1 '/>
  739. </g>
  740. <path stroke='red' d='M276.7,427.4 L276.7,118.2 L277.7,118.2 L277.7,427.4 L276.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  741. <polygon fill = 'red' points = '277.7,427.4 278.8,427.4 278.8,168.2 277.7,168.2 '/>
  742. </g>
  743. <path stroke='red' d='M277.7,427.4 L277.7,168.3 L278.7,168.3 L278.7,427.4 L277.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  744. <polygon fill = 'red' points = '278.7,427.4 279.8,427.4 279.8,126.8 278.7,126.8 '/>
  745. </g>
  746. <path stroke='red' d='M278.7,427.4 L278.7,126.9 L279.7,126.9 L279.7,427.4 L278.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  747. <polygon fill = 'red' points = '279.7,427.4 280.8,427.4 280.8,123.5 279.7,123.5 '/>
  748. </g>
  749. <path stroke='red' d='M279.7,427.4 L279.7,123.6 L280.7,123.6 L280.7,427.4 L279.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  750. <polygon fill = 'red' points = '280.7,427.4 281.8,427.4 281.8,169.5 280.7,169.5 '/>
  751. </g>
  752. <path stroke='red' d='M280.7,427.4 L280.7,169.6 L281.7,169.6 L281.7,427.4 L280.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  753. <polygon fill = 'red' points = '281.7,427.4 282.8,427.4 282.8,122.9 281.7,122.9 '/>
  754. </g>
  755. <path stroke='red' d='M281.7,427.4 L281.7,123.0 L282.7,123.0 L282.7,427.4 L281.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  756. <polygon fill = 'red' points = '282.7,427.4 283.8,427.4 283.8,183.5 282.7,183.5 '/>
  757. </g>
  758. <path stroke='red' d='M282.7,427.4 L282.7,183.6 L283.7,183.6 L283.7,427.4 L282.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  759. <polygon fill = 'red' points = '283.7,427.4 284.8,427.4 284.8,187.0 283.7,187.0 '/>
  760. </g>
  761. <path stroke='red' d='M283.7,427.4 L283.7,187.1 L284.7,187.1 L284.7,427.4 L283.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  762. <polygon fill = 'red' points = '284.7,427.4 285.8,427.4 285.8,143.4 284.7,143.4 '/>
  763. </g>
  764. <path stroke='red' d='M284.7,427.4 L284.7,143.5 L285.7,143.5 L285.7,427.4 L284.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  765. <polygon fill = 'red' points = '285.7,427.4 286.8,427.4 286.8,173.7 285.7,173.7 '/>
  766. </g>
  767. <path stroke='red' d='M285.7,427.4 L285.7,173.8 L286.7,173.8 L286.7,427.4 L285.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  768. <polygon fill = 'red' points = '286.7,427.4 287.8,427.4 287.8,127.7 286.7,127.7 '/>
  769. </g>
  770. <path stroke='red' d='M286.7,427.4 L286.7,127.8 L287.7,127.8 L287.7,427.4 L286.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  771. <polygon fill = 'red' points = '287.7,427.4 288.8,427.4 288.8,125.1 287.7,125.1 '/>
  772. </g>
  773. <path stroke='red' d='M287.7,427.4 L287.7,125.2 L288.7,125.2 L288.7,427.4 L287.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  774. <polygon fill = 'red' points = '288.7,427.4 289.8,427.4 289.8,112.4 288.7,112.4 '/>
  775. </g>
  776. <path stroke='red' d='M288.7,427.4 L288.7,112.5 L289.7,112.5 L289.7,427.4 L288.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  777. <polygon fill = 'red' points = '289.7,427.4 290.8,427.4 290.8,106.8 289.7,106.8 '/>
  778. </g>
  779. <path stroke='red' d='M289.7,427.4 L289.7,106.9 L290.7,106.9 L290.7,427.4 L289.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  780. <polygon fill = 'red' points = '290.7,427.4 291.9,427.4 291.9,152.9 290.7,152.9 '/>
  781. </g>
  782. <path stroke='red' d='M290.7,427.4 L290.7,153.0 L291.8,153.0 L291.8,427.4 L290.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  783. <polygon fill = 'red' points = '291.8,427.4 292.9,427.4 292.9,155.1 291.8,155.1 '/>
  784. </g>
  785. <path stroke='red' d='M291.8,427.4 L291.8,155.2 L292.8,155.2 L292.8,427.4 L291.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  786. <polygon fill = 'red' points = '292.8,427.4 293.9,427.4 293.9,206.9 292.8,206.9 '/>
  787. </g>
  788. <path stroke='red' d='M292.8,427.4 L292.8,207.0 L293.8,207.0 L293.8,427.4 L292.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  789. <polygon fill = 'red' points = '293.8,427.4 294.9,427.4 294.9,174.7 293.8,174.7 '/>
  790. </g>
  791. <path stroke='red' d='M293.8,427.4 L293.8,174.8 L294.8,174.8 L294.8,427.4 L293.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  792. <polygon fill = 'red' points = '294.8,427.4 295.9,427.4 295.9,217.7 294.8,217.7 '/>
  793. </g>
  794. <path stroke='red' d='M294.8,427.4 L294.8,217.8 L295.8,217.8 L295.8,427.4 L294.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  795. <polygon fill = 'red' points = '295.8,427.4 296.9,427.4 296.9,203.9 295.8,203.9 '/>
  796. </g>
  797. <path stroke='red' d='M295.8,427.4 L295.8,204.0 L296.8,204.0 L296.8,427.4 L295.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  798. <polygon fill = 'red' points = '296.8,427.4 297.9,427.4 297.9,280.9 296.8,280.9 '/>
  799. </g>
  800. <path stroke='red' d='M296.8,427.4 L296.8,281.0 L297.8,281.0 L297.8,427.4 L296.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  801. <polygon fill = 'red' points = '297.8,427.4 298.9,427.4 298.9,242.9 297.8,242.9 '/>
  802. </g>
  803. <path stroke='red' d='M297.8,427.4 L297.8,243.0 L298.8,243.0 L298.8,427.4 L297.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  804. <polygon fill = 'red' points = '298.8,427.4 299.9,427.4 299.9,246.0 298.8,246.0 '/>
  805. </g>
  806. <path stroke='red' d='M298.8,427.4 L298.8,246.1 L299.8,246.1 L299.8,427.4 L298.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  807. <polygon fill = 'red' points = '299.8,427.4 300.9,427.4 300.9,243.6 299.8,243.6 '/>
  808. </g>
  809. <path stroke='red' d='M299.8,427.4 L299.8,243.7 L300.8,243.7 L300.8,427.4 L299.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  810. <polygon fill = 'red' points = '300.8,427.4 301.9,427.4 301.9,255.1 300.8,255.1 '/>
  811. </g>
  812. <path stroke='red' d='M300.8,427.4 L300.8,255.2 L301.8,255.2 L301.8,427.4 L300.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  813. <polygon fill = 'red' points = '301.8,427.4 302.9,427.4 302.9,270.5 301.8,270.5 '/>
  814. </g>
  815. <path stroke='red' d='M301.8,427.4 L301.8,270.6 L302.8,270.6 L302.8,427.4 L301.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  816. <polygon fill = 'red' points = '302.8,427.4 303.9,427.4 303.9,237.1 302.8,237.1 '/>
  817. </g>
  818. <path stroke='red' d='M302.8,427.4 L302.8,237.2 L303.8,237.2 L303.8,427.4 L302.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  819. <polygon fill = 'red' points = '303.8,427.4 304.9,427.4 304.9,241.7 303.8,241.7 '/>
  820. </g>
  821. <path stroke='red' d='M303.8,427.4 L303.8,241.8 L304.8,241.8 L304.8,427.4 L303.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  822. <polygon fill = 'red' points = '304.8,427.4 305.9,427.4 305.9,236.6 304.8,236.6 '/>
  823. </g>
  824. <path stroke='red' d='M304.8,427.4 L304.8,236.7 L305.8,236.7 L305.8,427.4 L304.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  825. <polygon fill = 'red' points = '305.8,427.4 306.9,427.4 306.9,223.0 305.8,223.0 '/>
  826. </g>
  827. <path stroke='red' d='M305.8,427.4 L305.8,223.1 L306.8,223.1 L306.8,427.4 L305.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  828. <polygon fill = 'red' points = '306.8,427.4 308.0,427.4 308.0,186.5 306.8,186.5 '/>
  829. </g>
  830. <path stroke='red' d='M306.8,427.4 L306.8,186.6 L307.9,186.6 L307.9,427.4 L306.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  831. <polygon fill = 'red' points = '307.9,427.4 309.0,427.4 309.0,227.3 307.9,227.3 '/>
  832. </g>
  833. <path stroke='red' d='M307.9,427.4 L307.9,227.4 L308.9,227.4 L308.9,427.4 L307.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  834. <polygon fill = 'red' points = '308.9,427.4 310.0,427.4 310.0,194.9 308.9,194.9 '/>
  835. </g>
  836. <path stroke='red' d='M308.9,427.4 L308.9,195.0 L309.9,195.0 L309.9,427.4 L308.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  837. <polygon fill = 'red' points = '309.9,427.4 311.0,427.4 311.0,198.7 309.9,198.7 '/>
  838. </g>
  839. <path stroke='red' d='M309.9,427.4 L309.9,198.8 L310.9,198.8 L310.9,427.4 L309.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  840. <polygon fill = 'red' points = '310.9,427.4 312.0,427.4 312.0,177.4 310.9,177.4 '/>
  841. </g>
  842. <path stroke='red' d='M310.9,427.4 L310.9,177.5 L311.9,177.5 L311.9,427.4 L310.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  843. <polygon fill = 'red' points = '311.9,427.4 313.0,427.4 313.0,199.0 311.9,199.0 '/>
  844. </g>
  845. <path stroke='red' d='M311.9,427.4 L311.9,199.1 L312.9,199.1 L312.9,427.4 L311.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  846. <polygon fill = 'red' points = '312.9,427.4 314.0,427.4 314.0,208.6 312.9,208.6 '/>
  847. </g>
  848. <path stroke='red' d='M312.9,427.4 L312.9,208.7 L313.9,208.7 L313.9,427.4 L312.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  849. <polygon fill = 'red' points = '313.9,427.4 315.0,427.4 315.0,194.7 313.9,194.7 '/>
  850. </g>
  851. <path stroke='red' d='M313.9,427.4 L313.9,194.8 L314.9,194.8 L314.9,427.4 L313.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  852. <polygon fill = 'red' points = '314.9,427.4 316.0,427.4 316.0,213.0 314.9,213.0 '/>
  853. </g>
  854. <path stroke='red' d='M314.9,427.4 L314.9,213.1 L315.9,213.1 L315.9,427.4 L314.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  855. <polygon fill = 'red' points = '315.9,427.4 317.0,427.4 317.0,207.7 315.9,207.7 '/>
  856. </g>
  857. <path stroke='red' d='M315.9,427.4 L315.9,207.8 L316.9,207.8 L316.9,427.4 L315.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  858. <polygon fill = 'red' points = '316.9,427.4 318.0,427.4 318.0,182.8 316.9,182.8 '/>
  859. </g>
  860. <path stroke='red' d='M316.9,427.4 L316.9,182.9 L317.9,182.9 L317.9,427.4 L316.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  861. <polygon fill = 'red' points = '317.9,427.4 319.0,427.4 319.0,180.1 317.9,180.1 '/>
  862. </g>
  863. <path stroke='red' d='M317.9,427.4 L317.9,180.2 L318.9,180.2 L318.9,427.4 L317.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  864. <polygon fill = 'red' points = '318.9,427.4 320.0,427.4 320.0,157.9 318.9,157.9 '/>
  865. </g>
  866. <path stroke='red' d='M318.9,427.4 L318.9,158.0 L319.9,158.0 L319.9,427.4 L318.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  867. <polygon fill = 'red' points = '319.9,427.4 321.0,427.4 321.0,191.1 319.9,191.1 '/>
  868. </g>
  869. <path stroke='red' d='M319.9,427.4 L319.9,191.2 L320.9,191.2 L320.9,427.4 L319.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  870. <polygon fill = 'red' points = '320.9,427.4 322.0,427.4 322.0,254.9 320.9,254.9 '/>
  871. </g>
  872. <path stroke='red' d='M320.9,427.4 L320.9,255.0 L321.9,255.0 L321.9,427.4 L320.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  873. <polygon fill = 'red' points = '321.9,427.4 323.0,427.4 323.0,258.6 321.9,258.6 '/>
  874. </g>
  875. <path stroke='red' d='M321.9,427.4 L321.9,258.7 L322.9,258.7 L322.9,427.4 L321.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  876. <polygon fill = 'red' points = '322.9,427.4 324.1,427.4 324.1,229.7 322.9,229.7 '/>
  877. </g>
  878. <path stroke='red' d='M322.9,427.4 L322.9,229.8 L324.0,229.8 L324.0,427.4 L322.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  879. <polygon fill = 'red' points = '324.0,427.4 325.1,427.4 325.1,229.4 324.0,229.4 '/>
  880. </g>
  881. <path stroke='red' d='M324.0,427.4 L324.0,229.5 L325.0,229.5 L325.0,427.4 L324.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  882. <polygon fill = 'red' points = '325.0,427.4 326.1,427.4 326.1,206.2 325.0,206.2 '/>
  883. </g>
  884. <path stroke='red' d='M325.0,427.4 L325.0,206.3 L326.0,206.3 L326.0,427.4 L325.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  885. <polygon fill = 'red' points = '326.0,427.4 327.1,427.4 327.1,189.5 326.0,189.5 '/>
  886. </g>
  887. <path stroke='red' d='M326.0,427.4 L326.0,189.6 L327.0,189.6 L327.0,427.4 L326.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  888. <polygon fill = 'red' points = '327.0,427.4 328.1,427.4 328.1,187.2 327.0,187.2 '/>
  889. </g>
  890. <path stroke='red' d='M327.0,427.4 L327.0,187.3 L328.0,187.3 L328.0,427.4 L327.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  891. <polygon fill = 'red' points = '328.0,427.4 329.1,427.4 329.1,166.8 328.0,166.8 '/>
  892. </g>
  893. <path stroke='red' d='M328.0,427.4 L328.0,166.9 L329.0,166.9 L329.0,427.4 L328.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  894. <polygon fill = 'red' points = '329.0,427.4 330.1,427.4 330.1,177.8 329.0,177.8 '/>
  895. </g>
  896. <path stroke='red' d='M329.0,427.4 L329.0,177.9 L330.0,177.9 L330.0,427.4 L329.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  897. <polygon fill = 'red' points = '330.0,427.4 331.1,427.4 331.1,155.5 330.0,155.5 '/>
  898. </g>
  899. <path stroke='red' d='M330.0,427.4 L330.0,155.6 L331.0,155.6 L331.0,427.4 L330.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  900. <polygon fill = 'red' points = '331.0,427.4 332.1,427.4 332.1,140.4 331.0,140.4 '/>
  901. </g>
  902. <path stroke='red' d='M331.0,427.4 L331.0,140.5 L332.0,140.5 L332.0,427.4 L331.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  903. <polygon fill = 'red' points = '332.0,427.4 333.1,427.4 333.1,153.7 332.0,153.7 '/>
  904. </g>
  905. <path stroke='red' d='M332.0,427.4 L332.0,153.8 L333.0,153.8 L333.0,427.4 L332.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  906. <polygon fill = 'red' points = '333.0,427.4 334.1,427.4 334.1,166.5 333.0,166.5 '/>
  907. </g>
  908. <path stroke='red' d='M333.0,427.4 L333.0,166.6 L334.0,166.6 L334.0,427.4 L333.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  909. <polygon fill = 'red' points = '334.0,427.4 335.1,427.4 335.1,175.6 334.0,175.6 '/>
  910. </g>
  911. <path stroke='red' d='M334.0,427.4 L334.0,175.7 L335.0,175.7 L335.0,427.4 L334.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  912. <polygon fill = 'red' points = '335.0,427.4 336.1,427.4 336.1,165.5 335.0,165.5 '/>
  913. </g>
  914. <path stroke='red' d='M335.0,427.4 L335.0,165.6 L336.0,165.6 L336.0,427.4 L335.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  915. <polygon fill = 'red' points = '336.0,427.4 337.1,427.4 337.1,148.8 336.0,148.8 '/>
  916. </g>
  917. <path stroke='red' d='M336.0,427.4 L336.0,148.9 L337.0,148.9 L337.0,427.4 L336.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  918. <polygon fill = 'red' points = '337.0,427.4 338.1,427.4 338.1,130.3 337.0,130.3 '/>
  919. </g>
  920. <path stroke='red' d='M337.0,427.4 L337.0,130.4 L338.0,130.4 L338.0,427.4 L337.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  921. <polygon fill = 'red' points = '338.0,427.4 339.1,427.4 339.1,138.9 338.0,138.9 '/>
  922. </g>
  923. <path stroke='red' d='M338.0,427.4 L338.0,139.0 L339.0,139.0 L339.0,427.4 L338.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  924. <polygon fill = 'red' points = '339.0,427.4 340.2,427.4 340.2,99.1 339.0,99.1 '/>
  925. </g>
  926. <path stroke='red' d='M339.0,427.4 L339.0,99.2 L340.1,99.2 L340.1,427.4 L339.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  927. <polygon fill = 'red' points = '340.1,427.4 341.2,427.4 341.2,109.6 340.1,109.6 '/>
  928. </g>
  929. <path stroke='red' d='M340.1,427.4 L340.1,109.7 L341.1,109.7 L341.1,427.4 L340.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  930. <polygon fill = 'red' points = '341.1,427.4 342.2,427.4 342.2,118.9 341.1,118.9 '/>
  931. </g>
  932. <path stroke='red' d='M341.1,427.4 L341.1,119.0 L342.1,119.0 L342.1,427.4 L341.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  933. <polygon fill = 'red' points = '342.1,427.4 343.2,427.4 343.2,159.9 342.1,159.9 '/>
  934. </g>
  935. <path stroke='red' d='M342.1,427.4 L342.1,160.0 L343.1,160.0 L343.1,427.4 L342.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  936. <polygon fill = 'red' points = '343.1,427.4 344.2,427.4 344.2,172.7 343.1,172.7 '/>
  937. </g>
  938. <path stroke='red' d='M343.1,427.4 L343.1,172.8 L344.1,172.8 L344.1,427.4 L343.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  939. <polygon fill = 'red' points = '344.1,427.4 345.2,427.4 345.2,177.5 344.1,177.5 '/>
  940. </g>
  941. <path stroke='red' d='M344.1,427.4 L344.1,177.6 L345.1,177.6 L345.1,427.4 L344.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  942. <polygon fill = 'red' points = '345.1,427.4 346.2,427.4 346.2,188.6 345.1,188.6 '/>
  943. </g>
  944. <path stroke='red' d='M345.1,427.4 L345.1,188.7 L346.1,188.7 L346.1,427.4 L345.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  945. <polygon fill = 'red' points = '346.1,427.4 347.2,427.4 347.2,177.6 346.1,177.6 '/>
  946. </g>
  947. <path stroke='red' d='M346.1,427.4 L346.1,177.7 L347.1,177.7 L347.1,427.4 L346.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  948. <polygon fill = 'red' points = '347.1,427.4 348.2,427.4 348.2,194.3 347.1,194.3 '/>
  949. </g>
  950. <path stroke='red' d='M347.1,427.4 L347.1,194.4 L348.1,194.4 L348.1,427.4 L347.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  951. <polygon fill = 'red' points = '348.1,427.4 349.2,427.4 349.2,205.2 348.1,205.2 '/>
  952. </g>
  953. <path stroke='red' d='M348.1,427.4 L348.1,205.3 L349.1,205.3 L349.1,427.4 L348.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  954. <polygon fill = 'red' points = '349.1,427.4 350.2,427.4 350.2,213.3 349.1,213.3 '/>
  955. </g>
  956. <path stroke='red' d='M349.1,427.4 L349.1,213.4 L350.1,213.4 L350.1,427.4 L349.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  957. <polygon fill = 'red' points = '350.1,427.4 351.2,427.4 351.2,208.3 350.1,208.3 '/>
  958. </g>
  959. <path stroke='red' d='M350.1,427.4 L350.1,208.4 L351.1,208.4 L351.1,427.4 L350.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  960. <polygon fill = 'red' points = '351.1,427.4 352.2,427.4 352.2,196.5 351.1,196.5 '/>
  961. </g>
  962. <path stroke='red' d='M351.1,427.4 L351.1,196.6 L352.1,196.6 L352.1,427.4 L351.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  963. <polygon fill = 'red' points = '352.1,427.4 353.2,427.4 353.2,177.7 352.1,177.7 '/>
  964. </g>
  965. <path stroke='red' d='M352.1,427.4 L352.1,177.8 L353.1,177.8 L353.1,427.4 L352.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  966. <polygon fill = 'red' points = '353.1,427.4 354.2,427.4 354.2,171.4 353.1,171.4 '/>
  967. </g>
  968. <path stroke='red' d='M353.1,427.4 L353.1,171.5 L354.1,171.5 L354.1,427.4 L353.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  969. <polygon fill = 'red' points = '354.1,427.4 355.2,427.4 355.2,166.6 354.1,166.6 '/>
  970. </g>
  971. <path stroke='red' d='M354.1,427.4 L354.1,166.7 L355.1,166.7 L355.1,427.4 L354.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  972. <polygon fill = 'red' points = '355.1,427.4 356.3,427.4 356.3,130.3 355.1,130.3 '/>
  973. </g>
  974. <path stroke='red' d='M355.1,427.4 L355.1,130.4 L356.2,130.4 L356.2,427.4 L355.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  975. <polygon fill = 'red' points = '356.2,427.4 357.3,427.4 357.3,143.1 356.2,143.1 '/>
  976. </g>
  977. <path stroke='red' d='M356.2,427.4 L356.2,143.2 L357.2,143.2 L357.2,427.4 L356.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  978. <polygon fill = 'red' points = '357.2,427.4 358.3,427.4 358.3,119.2 357.2,119.2 '/>
  979. </g>
  980. <path stroke='red' d='M357.2,427.4 L357.2,119.3 L358.2,119.3 L358.2,427.4 L357.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  981. <polygon fill = 'red' points = '358.2,427.4 359.3,427.4 359.3,122.7 358.2,122.7 '/>
  982. </g>
  983. <path stroke='red' d='M358.2,427.4 L358.2,122.8 L359.2,122.8 L359.2,427.4 L358.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  984. <polygon fill = 'red' points = '359.2,427.4 360.3,427.4 360.3,160.6 359.2,160.6 '/>
  985. </g>
  986. <path stroke='red' d='M359.2,427.4 L359.2,160.7 L360.2,160.7 L360.2,427.4 L359.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  987. <polygon fill = 'red' points = '360.2,427.4 361.3,427.4 361.3,175.5 360.2,175.5 '/>
  988. </g>
  989. <path stroke='red' d='M360.2,427.4 L360.2,175.6 L361.2,175.6 L361.2,427.4 L360.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  990. <polygon fill = 'red' points = '361.2,427.4 362.3,427.4 362.3,165.5 361.2,165.5 '/>
  991. </g>
  992. <path stroke='red' d='M361.2,427.4 L361.2,165.6 L362.2,165.6 L362.2,427.4 L361.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  993. <polygon fill = 'red' points = '362.2,427.4 363.3,427.4 363.3,210.4 362.2,210.4 '/>
  994. </g>
  995. <path stroke='red' d='M362.2,427.4 L362.2,210.5 L363.2,210.5 L363.2,427.4 L362.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  996. <polygon fill = 'red' points = '363.2,427.4 364.3,427.4 364.3,176.7 363.2,176.7 '/>
  997. </g>
  998. <path stroke='red' d='M363.2,427.4 L363.2,176.8 L364.2,176.8 L364.2,427.4 L363.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  999. <polygon fill = 'red' points = '364.2,427.4 365.3,427.4 365.3,181.0 364.2,181.0 '/>
  1000. </g>
  1001. <path stroke='red' d='M364.2,427.4 L364.2,181.1 L365.2,181.1 L365.2,427.4 L364.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1002. <polygon fill = 'red' points = '365.2,427.4 366.3,427.4 366.3,142.7 365.2,142.7 '/>
  1003. </g>
  1004. <path stroke='red' d='M365.2,427.4 L365.2,142.8 L366.2,142.8 L366.2,427.4 L365.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1005. <polygon fill = 'red' points = '366.2,427.4 367.3,427.4 367.3,139.8 366.2,139.8 '/>
  1006. </g>
  1007. <path stroke='red' d='M366.2,427.4 L366.2,139.9 L367.2,139.9 L367.2,427.4 L366.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1008. <polygon fill = 'red' points = '367.2,427.4 368.3,427.4 368.3,138.0 367.2,138.0 '/>
  1009. </g>
  1010. <path stroke='red' d='M367.2,427.4 L367.2,138.1 L368.2,138.1 L368.2,427.4 L367.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1011. <polygon fill = 'red' points = '368.2,427.4 369.3,427.4 369.3,125.0 368.2,125.0 '/>
  1012. </g>
  1013. <path stroke='red' d='M368.2,427.4 L368.2,125.1 L369.2,125.1 L369.2,427.4 L368.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1014. <polygon fill = 'red' points = '369.2,427.4 370.3,427.4 370.3,123.6 369.2,123.6 '/>
  1015. </g>
  1016. <path stroke='red' d='M369.2,427.4 L369.2,123.7 L370.2,123.7 L370.2,427.4 L369.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1017. <polygon fill = 'red' points = '370.2,427.4 371.3,427.4 371.3,117.5 370.2,117.5 '/>
  1018. </g>
  1019. <path stroke='red' d='M370.2,427.4 L370.2,117.6 L371.2,117.6 L371.2,427.4 L370.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1020. <polygon fill = 'red' points = '371.2,427.4 372.4,427.4 372.4,116.5 371.2,116.5 '/>
  1021. </g>
  1022. <path stroke='red' d='M371.2,427.4 L371.2,116.6 L372.3,116.6 L372.3,427.4 L371.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1023. <polygon fill = 'red' points = '372.3,427.4 373.4,427.4 373.4,102.0 372.3,102.0 '/>
  1024. </g>
  1025. <path stroke='red' d='M372.3,427.4 L372.3,102.1 L373.3,102.1 L373.3,427.4 L372.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1026. <polygon fill = 'red' points = '373.3,427.4 374.4,427.4 374.4,141.4 373.3,141.4 '/>
  1027. </g>
  1028. <path stroke='red' d='M373.3,427.4 L373.3,141.5 L374.3,141.5 L374.3,427.4 L373.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1029. <polygon fill = 'red' points = '374.3,427.4 375.4,427.4 375.4,151.4 374.3,151.4 '/>
  1030. </g>
  1031. <path stroke='red' d='M374.3,427.4 L374.3,151.5 L375.3,151.5 L375.3,427.4 L374.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1032. <polygon fill = 'red' points = '375.3,427.4 376.4,427.4 376.4,164.5 375.3,164.5 '/>
  1033. </g>
  1034. <path stroke='red' d='M375.3,427.4 L375.3,164.6 L376.3,164.6 L376.3,427.4 L375.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1035. <polygon fill = 'red' points = '376.3,427.4 377.4,427.4 377.4,177.8 376.3,177.8 '/>
  1036. </g>
  1037. <path stroke='red' d='M376.3,427.4 L376.3,177.9 L377.3,177.9 L377.3,427.4 L376.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1038. <polygon fill = 'red' points = '377.3,427.4 378.4,427.4 378.4,194.0 377.3,194.0 '/>
  1039. </g>
  1040. <path stroke='red' d='M377.3,427.4 L377.3,194.1 L378.3,194.1 L378.3,427.4 L377.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1041. <polygon fill = 'red' points = '378.3,427.4 379.4,427.4 379.4,170.3 378.3,170.3 '/>
  1042. </g>
  1043. <path stroke='red' d='M378.3,427.4 L378.3,170.4 L379.3,170.4 L379.3,427.4 L378.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1044. <polygon fill = 'red' points = '379.3,427.4 380.4,427.4 380.4,209.5 379.3,209.5 '/>
  1045. </g>
  1046. <path stroke='red' d='M379.3,427.4 L379.3,209.6 L380.3,209.6 L380.3,427.4 L379.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1047. <polygon fill = 'red' points = '380.3,427.4 381.4,427.4 381.4,154.5 380.3,154.5 '/>
  1048. </g>
  1049. <path stroke='red' d='M380.3,427.4 L380.3,154.6 L381.3,154.6 L381.3,427.4 L380.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1050. <polygon fill = 'red' points = '381.3,427.4 382.4,427.4 382.4,193.0 381.3,193.0 '/>
  1051. </g>
  1052. <path stroke='red' d='M381.3,427.4 L381.3,193.1 L382.3,193.1 L382.3,427.4 L381.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1053. <polygon fill = 'red' points = '382.3,427.4 383.4,427.4 383.4,207.4 382.3,207.4 '/>
  1054. </g>
  1055. <path stroke='red' d='M382.3,427.4 L382.3,207.5 L383.3,207.5 L383.3,427.4 L382.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1056. <polygon fill = 'red' points = '383.3,427.4 384.4,427.4 384.4,171.3 383.3,171.3 '/>
  1057. </g>
  1058. <path stroke='red' d='M383.3,427.4 L383.3,171.4 L384.3,171.4 L384.3,427.4 L383.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1059. <polygon fill = 'red' points = '384.3,427.4 385.4,427.4 385.4,176.7 384.3,176.7 '/>
  1060. </g>
  1061. <path stroke='red' d='M384.3,427.4 L384.3,176.8 L385.3,176.8 L385.3,427.4 L384.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1062. <polygon fill = 'red' points = '385.3,427.4 386.4,427.4 386.4,158.2 385.3,158.2 '/>
  1063. </g>
  1064. <path stroke='red' d='M385.3,427.4 L385.3,158.3 L386.3,158.3 L386.3,427.4 L385.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1065. <polygon fill = 'red' points = '386.3,427.4 387.4,427.4 387.4,182.3 386.3,182.3 '/>
  1066. </g>
  1067. <path stroke='red' d='M386.3,427.4 L386.3,182.4 L387.3,182.4 L387.3,427.4 L386.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1068. <polygon fill = 'red' points = '387.3,427.4 388.4,427.4 388.4,148.2 387.3,148.2 '/>
  1069. </g>
  1070. <path stroke='red' d='M387.3,427.4 L387.3,148.3 L388.3,148.3 L388.3,427.4 L387.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1071. <polygon fill = 'red' points = '388.3,427.4 389.5,427.4 389.5,146.0 388.3,146.0 '/>
  1072. </g>
  1073. <path stroke='red' d='M388.3,427.4 L388.3,146.1 L389.4,146.1 L389.4,427.4 L388.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1074. <polygon fill = 'red' points = '389.4,427.4 390.5,427.4 390.5,112.2 389.4,112.2 '/>
  1075. </g>
  1076. <path stroke='red' d='M389.4,427.4 L389.4,112.3 L390.4,112.3 L390.4,427.4 L389.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1077. <polygon fill = 'red' points = '390.4,427.4 391.5,427.4 391.5,115.7 390.4,115.7 '/>
  1078. </g>
  1079. <path stroke='red' d='M390.4,427.4 L390.4,115.8 L391.4,115.8 L391.4,427.4 L390.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1080. <polygon fill = 'red' points = '391.4,427.4 392.5,427.4 392.5,138.9 391.4,138.9 '/>
  1081. </g>
  1082. <path stroke='red' d='M391.4,427.4 L391.4,139.0 L392.4,139.0 L392.4,427.4 L391.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1083. <polygon fill = 'red' points = '392.4,427.4 393.5,427.4 393.5,148.4 392.4,148.4 '/>
  1084. </g>
  1085. <path stroke='red' d='M392.4,427.4 L392.4,148.5 L393.4,148.5 L393.4,427.4 L392.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1086. <polygon fill = 'red' points = '393.4,427.4 394.5,427.4 394.5,160.5 393.4,160.5 '/>
  1087. </g>
  1088. <path stroke='red' d='M393.4,427.4 L393.4,160.6 L394.4,160.6 L394.4,427.4 L393.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1089. <polygon fill = 'red' points = '394.4,427.4 395.5,427.4 395.5,148.6 394.4,148.6 '/>
  1090. </g>
  1091. <path stroke='red' d='M394.4,427.4 L394.4,148.7 L395.4,148.7 L395.4,427.4 L394.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1092. <polygon fill = 'red' points = '395.4,427.4 396.5,427.4 396.5,155.7 395.4,155.7 '/>
  1093. </g>
  1094. <path stroke='red' d='M395.4,427.4 L395.4,155.8 L396.4,155.8 L396.4,427.4 L395.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1095. <polygon fill = 'red' points = '396.4,427.4 397.5,427.4 397.5,149.1 396.4,149.1 '/>
  1096. </g>
  1097. <path stroke='red' d='M396.4,427.4 L396.4,149.2 L397.4,149.2 L397.4,427.4 L396.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1098. <polygon fill = 'red' points = '397.4,427.4 398.5,427.4 398.5,112.0 397.4,112.0 '/>
  1099. </g>
  1100. <path stroke='red' d='M397.4,427.4 L397.4,112.1 L398.4,112.1 L398.4,427.4 L397.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1101. <polygon fill = 'red' points = '398.4,427.4 399.5,427.4 399.5,107.5 398.4,107.5 '/>
  1102. </g>
  1103. <path stroke='red' d='M398.4,427.4 L398.4,107.6 L399.4,107.6 L399.4,427.4 L398.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1104. <polygon fill = 'red' points = '399.4,427.4 400.5,427.4 400.5,80.8 399.4,80.8 '/>
  1105. </g>
  1106. <path stroke='red' d='M399.4,427.4 L399.4,80.9 L400.4,80.9 L400.4,427.4 L399.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1107. <polygon fill = 'red' points = '400.4,427.4 401.5,427.4 401.5,85.0 400.4,85.0 '/>
  1108. </g>
  1109. <path stroke='red' d='M400.4,427.4 L400.4,85.1 L401.4,85.1 L401.4,427.4 L400.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1110. <polygon fill = 'red' points = '401.4,427.4 402.5,427.4 402.5,72.7 401.4,72.7 '/>
  1111. </g>
  1112. <path stroke='red' d='M401.4,427.4 L401.4,72.8 L402.4,72.8 L402.4,427.4 L401.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1113. <polygon fill = 'red' points = '402.4,427.4 403.5,427.4 403.5,54.4 402.4,54.4 '/>
  1114. </g>
  1115. <path stroke='red' d='M402.4,427.4 L402.4,54.5 L403.4,54.5 L403.4,427.4 L402.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1116. <polygon fill = 'red' points = '403.4,427.4 404.5,427.4 404.5,127.4 403.4,127.4 '/>
  1117. </g>
  1118. <path stroke='red' d='M403.4,427.4 L403.4,127.5 L404.4,127.5 L404.4,427.4 L403.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1119. <polygon fill = 'red' points = '404.4,427.4 405.6,427.4 405.6,90.2 404.4,90.2 '/>
  1120. </g>
  1121. <path stroke='red' d='M404.4,427.4 L404.4,90.3 L405.5,90.3 L405.5,427.4 L404.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1122. <polygon fill = 'red' points = '405.5,427.4 406.6,427.4 406.6,127.0 405.5,127.0 '/>
  1123. </g>
  1124. <path stroke='red' d='M405.5,427.4 L405.5,127.1 L406.5,127.1 L406.5,427.4 L405.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1125. <polygon fill = 'red' points = '406.5,427.4 407.6,427.4 407.6,147.8 406.5,147.8 '/>
  1126. </g>
  1127. <path stroke='red' d='M406.5,427.4 L406.5,147.9 L407.5,147.9 L407.5,427.4 L406.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1128. <polygon fill = 'red' points = '407.5,427.4 408.6,427.4 408.6,165.5 407.5,165.5 '/>
  1129. </g>
  1130. <path stroke='red' d='M407.5,427.4 L407.5,165.6 L408.5,165.6 L408.5,427.4 L407.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1131. <polygon fill = 'red' points = '408.5,427.4 409.6,427.4 409.6,188.4 408.5,188.4 '/>
  1132. </g>
  1133. <path stroke='red' d='M408.5,427.4 L408.5,188.5 L409.5,188.5 L409.5,427.4 L408.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1134. <polygon fill = 'red' points = '409.5,427.4 410.6,427.4 410.6,169.3 409.5,169.3 '/>
  1135. </g>
  1136. <path stroke='red' d='M409.5,427.4 L409.5,169.4 L410.5,169.4 L410.5,427.4 L409.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1137. <polygon fill = 'red' points = '410.5,427.4 411.6,427.4 411.6,135.8 410.5,135.8 '/>
  1138. </g>
  1139. <path stroke='red' d='M410.5,427.4 L410.5,135.9 L411.5,135.9 L411.5,427.4 L410.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1140. <polygon fill = 'red' points = '411.5,427.4 412.6,427.4 412.6,149.8 411.5,149.8 '/>
  1141. </g>
  1142. <path stroke='red' d='M411.5,427.4 L411.5,149.9 L412.5,149.9 L412.5,427.4 L411.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1143. <polygon fill = 'red' points = '412.5,427.4 413.6,427.4 413.6,117.6 412.5,117.6 '/>
  1144. </g>
  1145. <path stroke='red' d='M412.5,427.4 L412.5,117.7 L413.5,117.7 L413.5,427.4 L412.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1146. <polygon fill = 'red' points = '413.5,427.4 414.6,427.4 414.6,111.5 413.5,111.5 '/>
  1147. </g>
  1148. <path stroke='red' d='M413.5,427.4 L413.5,111.6 L414.5,111.6 L414.5,427.4 L413.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1149. <polygon fill = 'red' points = '414.5,427.4 415.6,427.4 415.6,81.7 414.5,81.7 '/>
  1150. </g>
  1151. <path stroke='red' d='M414.5,427.4 L414.5,81.8 L415.5,81.8 L415.5,427.4 L414.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1152. <polygon fill = 'red' points = '415.5,427.4 416.6,427.4 416.6,55.0 415.5,55.0 '/>
  1153. </g>
  1154. <path stroke='red' d='M415.5,427.4 L415.5,55.1 L416.5,55.1 L416.5,427.4 L415.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1155. <polygon fill = 'red' points = '416.5,427.4 417.6,427.4 417.6,57.2 416.5,57.2 '/>
  1156. </g>
  1157. <path stroke='red' d='M416.5,427.4 L416.5,57.3 L417.5,57.3 L417.5,427.4 L416.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1158. <polygon fill = 'red' points = '417.5,427.4 418.6,427.4 418.6,54.0 417.5,54.0 '/>
  1159. </g>
  1160. <path stroke='red' d='M417.5,427.4 L417.5,54.1 L418.5,54.1 L418.5,427.4 L417.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1161. <polygon fill = 'red' points = '418.5,427.4 419.6,427.4 419.6,54.0 418.5,54.0 '/>
  1162. </g>
  1163. <path stroke='red' d='M418.5,427.4 L418.5,54.1 L419.5,54.1 L419.5,427.4 L418.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1164. <polygon fill = 'red' points = '419.5,427.4 420.6,427.4 420.6,54.0 419.5,54.0 '/>
  1165. </g>
  1166. <path stroke='red' d='M419.5,427.4 L419.5,54.1 L420.5,54.1 L420.5,427.4 L419.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1167. <polygon fill = 'red' points = '420.5,427.4 421.7,427.4 421.7,54.0 420.5,54.0 '/>
  1168. </g>
  1169. <path stroke='red' d='M420.5,427.4 L420.5,54.1 L421.6,54.1 L421.6,427.4 L420.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1170. <polygon fill = 'red' points = '421.6,427.4 422.7,427.4 422.7,54.0 421.6,54.0 '/>
  1171. </g>
  1172. <path stroke='red' d='M421.6,427.4 L421.6,54.1 L422.6,54.1 L422.6,427.4 L421.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1173. <polygon fill = 'red' points = '422.6,427.4 423.7,427.4 423.7,54.0 422.6,54.0 '/>
  1174. </g>
  1175. <path stroke='red' d='M422.6,427.4 L422.6,54.1 L423.6,54.1 L423.6,427.4 L422.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1176. <polygon fill = 'red' points = '423.6,427.4 424.7,427.4 424.7,54.0 423.6,54.0 '/>
  1177. </g>
  1178. <path stroke='red' d='M423.6,427.4 L423.6,54.1 L424.6,54.1 L424.6,427.4 L423.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1179. <polygon fill = 'red' points = '424.6,427.4 425.7,427.4 425.7,54.0 424.6,54.0 '/>
  1180. </g>
  1181. <path stroke='red' d='M424.6,427.4 L424.6,54.1 L425.6,54.1 L425.6,427.4 L424.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1182. <polygon fill = 'red' points = '425.6,427.4 426.7,427.4 426.7,54.0 425.6,54.0 '/>
  1183. </g>
  1184. <path stroke='red' d='M425.6,427.4 L425.6,54.1 L426.6,54.1 L426.6,427.4 L425.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1185. <polygon fill = 'red' points = '426.6,427.4 427.7,427.4 427.7,54.0 426.6,54.0 '/>
  1186. </g>
  1187. <path stroke='red' d='M426.6,427.4 L426.6,54.1 L427.6,54.1 L427.6,427.4 L426.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1188. <polygon fill = 'red' points = '427.6,427.4 428.7,427.4 428.7,54.0 427.6,54.0 '/>
  1189. </g>
  1190. <path stroke='red' d='M427.6,427.4 L427.6,54.1 L428.6,54.1 L428.6,427.4 L427.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1191. <polygon fill = 'red' points = '428.6,427.4 429.7,427.4 429.7,54.0 428.6,54.0 '/>
  1192. </g>
  1193. <path stroke='red' d='M428.6,427.4 L428.6,54.1 L429.6,54.1 L429.6,427.4 L428.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1194. <polygon fill = 'red' points = '429.6,427.4 430.7,427.4 430.7,54.0 429.6,54.0 '/>
  1195. </g>
  1196. <path stroke='red' d='M429.6,427.4 L429.6,54.1 L430.6,54.1 L430.6,427.4 L429.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1197. <polygon fill = 'red' points = '430.6,427.4 431.7,427.4 431.7,54.0 430.6,54.0 '/>
  1198. </g>
  1199. <path stroke='red' d='M430.6,427.4 L430.6,54.1 L431.6,54.1 L431.6,427.4 L430.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1200. <polygon fill = 'red' points = '431.6,427.4 432.7,427.4 432.7,54.0 431.6,54.0 '/>
  1201. </g>
  1202. <path stroke='red' d='M431.6,427.4 L431.6,54.1 L432.6,54.1 L432.6,427.4 L431.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1203. <polygon fill = 'red' points = '432.6,427.4 433.7,427.4 433.7,54.0 432.6,54.0 '/>
  1204. </g>
  1205. <path stroke='red' d='M432.6,427.4 L432.6,54.1 L433.6,54.1 L433.6,427.4 L432.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1206. <polygon fill = 'red' points = '433.6,427.4 434.7,427.4 434.7,66.4 433.6,66.4 '/>
  1207. </g>
  1208. <path stroke='red' d='M433.6,427.4 L433.6,66.5 L434.6,66.5 L434.6,427.4 L433.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1209. <polygon fill = 'red' points = '434.6,427.4 435.7,427.4 435.7,87.0 434.6,87.0 '/>
  1210. </g>
  1211. <path stroke='red' d='M434.6,427.4 L434.6,87.1 L435.6,87.1 L435.6,427.4 L434.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1212. <polygon fill = 'red' points = '435.6,427.4 436.7,427.4 436.7,101.4 435.6,101.4 '/>
  1213. </g>
  1214. <path stroke='red' d='M435.6,427.4 L435.6,101.5 L436.6,101.5 L436.6,427.4 L435.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1215. <polygon fill = 'red' points = '436.6,427.4 437.8,427.4 437.8,110.8 436.6,110.8 '/>
  1216. </g>
  1217. <path stroke='red' d='M436.6,427.4 L436.6,110.9 L437.7,110.9 L437.7,427.4 L436.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1218. <polygon fill = 'red' points = '437.7,427.4 438.8,427.4 438.8,105.0 437.7,105.0 '/>
  1219. </g>
  1220. <path stroke='red' d='M437.7,427.4 L437.7,105.1 L438.7,105.1 L438.7,427.4 L437.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1221. <polygon fill = 'red' points = '438.7,427.4 439.8,427.4 439.8,90.9 438.7,90.9 '/>
  1222. </g>
  1223. <path stroke='red' d='M438.7,427.4 L438.7,91.0 L439.7,91.0 L439.7,427.4 L438.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1224. <polygon fill = 'red' points = '439.7,427.4 440.8,427.4 440.8,77.0 439.7,77.0 '/>
  1225. </g>
  1226. <path stroke='red' d='M439.7,427.4 L439.7,77.1 L440.7,77.1 L440.7,427.4 L439.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1227. <polygon fill = 'red' points = '440.7,427.4 441.8,427.4 441.8,57.8 440.7,57.8 '/>
  1228. </g>
  1229. <path stroke='red' d='M440.7,427.4 L440.7,57.9 L441.7,57.9 L441.7,427.4 L440.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1230. <polygon fill = 'red' points = '441.7,427.4 442.8,427.4 442.8,71.8 441.7,71.8 '/>
  1231. </g>
  1232. <path stroke='red' d='M441.7,427.4 L441.7,71.9 L442.7,71.9 L442.7,427.4 L441.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1233. <polygon fill = 'red' points = '442.7,427.4 443.8,427.4 443.8,56.3 442.7,56.3 '/>
  1234. </g>
  1235. <path stroke='red' d='M442.7,427.4 L442.7,56.4 L443.7,56.4 L443.7,427.4 L442.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1236. <polygon fill = 'red' points = '443.7,427.4 444.8,427.4 444.8,54.0 443.7,54.0 '/>
  1237. </g>
  1238. <path stroke='red' d='M443.7,427.4 L443.7,54.1 L444.7,54.1 L444.7,427.4 L443.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1239. <polygon fill = 'red' points = '444.7,427.4 445.8,427.4 445.8,54.0 444.7,54.0 '/>
  1240. </g>
  1241. <path stroke='red' d='M444.7,427.4 L444.7,54.1 L445.7,54.1 L445.7,427.4 L444.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1242. <polygon fill = 'red' points = '445.7,427.4 446.8,427.4 446.8,54.0 445.7,54.0 '/>
  1243. </g>
  1244. <path stroke='red' d='M445.7,427.4 L445.7,54.1 L446.7,54.1 L446.7,427.4 L445.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1245. <polygon fill = 'red' points = '446.7,427.4 447.8,427.4 447.8,54.0 446.7,54.0 '/>
  1246. </g>
  1247. <path stroke='red' d='M446.7,427.4 L446.7,54.1 L447.7,54.1 L447.7,427.4 L446.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1248. <polygon fill = 'red' points = '447.7,427.4 448.8,427.4 448.8,54.0 447.7,54.0 '/>
  1249. </g>
  1250. <path stroke='red' d='M447.7,427.4 L447.7,54.1 L448.7,54.1 L448.7,427.4 L447.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1251. <polygon fill = 'red' points = '448.7,427.4 449.8,427.4 449.8,54.0 448.7,54.0 '/>
  1252. </g>
  1253. <path stroke='red' d='M448.7,427.4 L448.7,54.1 L449.7,54.1 L449.7,427.4 L448.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1254. <polygon fill = 'red' points = '449.7,427.4 450.8,427.4 450.8,54.0 449.7,54.0 '/>
  1255. </g>
  1256. <path stroke='red' d='M449.7,427.4 L449.7,54.1 L450.7,54.1 L450.7,427.4 L449.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1257. <polygon fill = 'red' points = '450.7,427.4 451.8,427.4 451.8,54.0 450.7,54.0 '/>
  1258. </g>
  1259. <path stroke='red' d='M450.7,427.4 L450.7,54.1 L451.7,54.1 L451.7,427.4 L450.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1260. <polygon fill = 'red' points = '451.7,427.4 452.8,427.4 452.8,54.0 451.7,54.0 '/>
  1261. </g>
  1262. <path stroke='red' d='M451.7,427.4 L451.7,54.1 L452.7,54.1 L452.7,427.4 L451.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1263. <polygon fill = 'red' points = '452.7,427.4 453.9,427.4 453.9,54.0 452.7,54.0 '/>
  1264. </g>
  1265. <path stroke='red' d='M452.7,427.4 L452.7,54.1 L453.8,54.1 L453.8,427.4 L452.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1266. <polygon fill = 'red' points = '453.8,427.4 454.9,427.4 454.9,54.0 453.8,54.0 '/>
  1267. </g>
  1268. <path stroke='red' d='M453.8,427.4 L453.8,54.1 L454.8,54.1 L454.8,427.4 L453.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1269. <polygon fill = 'red' points = '454.8,427.4 455.9,427.4 455.9,54.0 454.8,54.0 '/>
  1270. </g>
  1271. <path stroke='red' d='M454.8,427.4 L454.8,54.1 L455.8,54.1 L455.8,427.4 L454.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1272. <polygon fill = 'red' points = '455.8,427.4 456.9,427.4 456.9,54.0 455.8,54.0 '/>
  1273. </g>
  1274. <path stroke='red' d='M455.8,427.4 L455.8,54.1 L456.8,54.1 L456.8,427.4 L455.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1275. <polygon fill = 'red' points = '456.8,427.4 457.9,427.4 457.9,54.0 456.8,54.0 '/>
  1276. </g>
  1277. <path stroke='red' d='M456.8,427.4 L456.8,54.1 L457.8,54.1 L457.8,427.4 L456.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1278. <polygon fill = 'red' points = '457.8,427.4 458.9,427.4 458.9,54.0 457.8,54.0 '/>
  1279. </g>
  1280. <path stroke='red' d='M457.8,427.4 L457.8,54.1 L458.8,54.1 L458.8,427.4 L457.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1281. <polygon fill = 'red' points = '458.8,427.4 459.9,427.4 459.9,54.0 458.8,54.0 '/>
  1282. </g>
  1283. <path stroke='red' d='M458.8,427.4 L458.8,54.1 L459.8,54.1 L459.8,427.4 L458.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1284. <polygon fill = 'red' points = '459.8,427.4 460.9,427.4 460.9,54.0 459.8,54.0 '/>
  1285. </g>
  1286. <path stroke='red' d='M459.8,427.4 L459.8,54.1 L460.8,54.1 L460.8,427.4 L459.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1287. <polygon fill = 'red' points = '460.8,427.4 461.9,427.4 461.9,54.0 460.8,54.0 '/>
  1288. </g>
  1289. <path stroke='red' d='M460.8,427.4 L460.8,54.1 L461.8,54.1 L461.8,427.4 L460.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1290. <polygon fill = 'red' points = '461.8,427.4 462.9,427.4 462.9,54.0 461.8,54.0 '/>
  1291. </g>
  1292. <path stroke='red' d='M461.8,427.4 L461.8,54.1 L462.8,54.1 L462.8,427.4 L461.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1293. <polygon fill = 'red' points = '462.8,427.4 463.9,427.4 463.9,54.0 462.8,54.0 '/>
  1294. </g>
  1295. <path stroke='red' d='M462.8,427.4 L462.8,54.1 L463.8,54.1 L463.8,427.4 L462.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1296. <polygon fill = 'red' points = '463.8,427.4 464.9,427.4 464.9,54.0 463.8,54.0 '/>
  1297. </g>
  1298. <path stroke='red' d='M463.8,427.4 L463.8,54.1 L464.8,54.1 L464.8,427.4 L463.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1299. <polygon fill = 'red' points = '464.8,427.4 465.9,427.4 465.9,54.0 464.8,54.0 '/>
  1300. </g>
  1301. <path stroke='red' d='M464.8,427.4 L464.8,54.1 L465.8,54.1 L465.8,427.4 L464.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1302. <polygon fill = 'red' points = '465.8,427.4 466.9,427.4 466.9,54.0 465.8,54.0 '/>
  1303. </g>
  1304. <path stroke='red' d='M465.8,427.4 L465.8,54.1 L466.8,54.1 L466.8,427.4 L465.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1305. <polygon fill = 'red' points = '466.8,427.4 467.9,427.4 467.9,54.0 466.8,54.0 '/>
  1306. </g>
  1307. <path stroke='red' d='M466.8,427.4 L466.8,54.1 L467.8,54.1 L467.8,427.4 L466.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1308. <polygon fill = 'red' points = '467.8,427.4 468.9,427.4 468.9,54.0 467.8,54.0 '/>
  1309. </g>
  1310. <path stroke='red' d='M467.8,427.4 L467.8,54.1 L468.8,54.1 L468.8,427.4 L467.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1311. <polygon fill = 'red' points = '468.8,427.4 470.0,427.4 470.0,54.0 468.8,54.0 '/>
  1312. </g>
  1313. <path stroke='red' d='M468.8,427.4 L468.8,54.1 L469.9,54.1 L469.9,427.4 L468.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1314. <polygon fill = 'red' points = '469.9,427.4 471.0,427.4 471.0,54.0 469.9,54.0 '/>
  1315. </g>
  1316. <path stroke='red' d='M469.9,427.4 L469.9,54.1 L470.9,54.1 L470.9,427.4 L469.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1317. <polygon fill = 'red' points = '470.9,427.4 472.0,427.4 472.0,79.6 470.9,79.6 '/>
  1318. </g>
  1319. <path stroke='red' d='M470.9,427.4 L470.9,79.7 L471.9,79.7 L471.9,427.4 L470.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1320. <polygon fill = 'red' points = '471.9,427.4 473.0,427.4 473.0,165.0 471.9,165.0 '/>
  1321. </g>
  1322. <path stroke='red' d='M471.9,427.4 L471.9,165.1 L472.9,165.1 L472.9,427.4 L471.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1323. <polygon fill = 'red' points = '472.9,427.4 474.0,427.4 474.0,178.0 472.9,178.0 '/>
  1324. </g>
  1325. <path stroke='red' d='M472.9,427.4 L472.9,178.1 L473.9,178.1 L473.9,427.4 L472.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1326. <polygon fill = 'red' points = '473.9,427.4 475.0,427.4 475.0,211.5 473.9,211.5 '/>
  1327. </g>
  1328. <path stroke='red' d='M473.9,427.4 L473.9,211.6 L474.9,211.6 L474.9,427.4 L473.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1329. <polygon fill = 'red' points = '474.9,427.4 476.0,427.4 476.0,207.2 474.9,207.2 '/>
  1330. </g>
  1331. <path stroke='red' d='M474.9,427.4 L474.9,207.3 L475.9,207.3 L475.9,427.4 L474.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1332. <polygon fill = 'red' points = '475.9,427.4 477.0,427.4 477.0,297.4 475.9,297.4 '/>
  1333. </g>
  1334. <path stroke='red' d='M475.9,427.4 L475.9,297.5 L476.9,297.5 L476.9,427.4 L475.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1335. <polygon fill = 'red' points = '476.9,427.4 478.0,427.4 478.0,305.8 476.9,305.8 '/>
  1336. </g>
  1337. <path stroke='red' d='M476.9,427.4 L476.9,305.9 L477.9,305.9 L477.9,427.4 L476.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1338. <polygon fill = 'red' points = '477.9,427.4 479.0,427.4 479.0,292.5 477.9,292.5 '/>
  1339. </g>
  1340. <path stroke='red' d='M477.9,427.4 L477.9,292.6 L478.9,292.6 L478.9,427.4 L477.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1341. <polygon fill = 'red' points = '478.9,427.4 480.0,427.4 480.0,290.5 478.9,290.5 '/>
  1342. </g>
  1343. <path stroke='red' d='M478.9,427.4 L478.9,290.6 L479.9,290.6 L479.9,427.4 L478.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1344. <polygon fill = 'red' points = '479.9,427.4 481.0,427.4 481.0,262.8 479.9,262.8 '/>
  1345. </g>
  1346. <path stroke='red' d='M479.9,427.4 L479.9,262.9 L480.9,262.9 L480.9,427.4 L479.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1347. <polygon fill = 'red' points = '480.9,427.4 482.0,427.4 482.0,262.4 480.9,262.4 '/>
  1348. </g>
  1349. <path stroke='red' d='M480.9,427.4 L480.9,262.5 L481.9,262.5 L481.9,427.4 L480.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1350. <polygon fill = 'red' points = '481.9,427.4 483.0,427.4 483.0,217.9 481.9,217.9 '/>
  1351. </g>
  1352. <path stroke='red' d='M481.9,427.4 L481.9,218.0 L482.9,218.0 L482.9,427.4 L481.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1353. <polygon fill = 'red' points = '482.9,427.4 484.0,427.4 484.0,269.5 482.9,269.5 '/>
  1354. </g>
  1355. <path stroke='red' d='M482.9,427.4 L482.9,269.6 L483.9,269.6 L483.9,427.4 L482.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1356. <polygon fill = 'red' points = '483.9,427.4 485.0,427.4 485.0,236.4 483.9,236.4 '/>
  1357. </g>
  1358. <path stroke='red' d='M483.9,427.4 L483.9,236.5 L484.9,236.5 L484.9,427.4 L483.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1359. <polygon fill = 'red' points = '484.9,427.4 486.1,427.4 486.1,235.2 484.9,235.2 '/>
  1360. </g>
  1361. <path stroke='red' d='M484.9,427.4 L484.9,235.3 L486.0,235.3 L486.0,427.4 L484.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1362. <polygon fill = 'red' points = '486.0,427.4 487.1,427.4 487.1,201.3 486.0,201.3 '/>
  1363. </g>
  1364. <path stroke='red' d='M486.0,427.4 L486.0,201.4 L487.0,201.4 L487.0,427.4 L486.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1365. <polygon fill = 'red' points = '487.0,427.4 488.1,427.4 488.1,183.4 487.0,183.4 '/>
  1366. </g>
  1367. <path stroke='red' d='M487.0,427.4 L487.0,183.5 L488.0,183.5 L488.0,427.4 L487.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1368. <polygon fill = 'red' points = '488.0,427.4 489.1,427.4 489.1,167.7 488.0,167.7 '/>
  1369. </g>
  1370. <path stroke='red' d='M488.0,427.4 L488.0,167.8 L489.0,167.8 L489.0,427.4 L488.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1371. <polygon fill = 'red' points = '489.0,427.4 490.1,427.4 490.1,145.7 489.0,145.7 '/>
  1372. </g>
  1373. <path stroke='red' d='M489.0,427.4 L489.0,145.8 L490.0,145.8 L490.0,427.4 L489.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1374. <polygon fill = 'red' points = '490.0,427.4 491.1,427.4 491.1,129.3 490.0,129.3 '/>
  1375. </g>
  1376. <path stroke='red' d='M490.0,427.4 L490.0,129.4 L491.0,129.4 L491.0,427.4 L490.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1377. <polygon fill = 'red' points = '491.0,427.4 492.1,427.4 492.1,110.0 491.0,110.0 '/>
  1378. </g>
  1379. <path stroke='red' d='M491.0,427.4 L491.0,110.1 L492.0,110.1 L492.0,427.4 L491.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1380. <polygon fill = 'red' points = '492.0,427.4 493.1,427.4 493.1,126.1 492.0,126.1 '/>
  1381. </g>
  1382. <path stroke='red' d='M492.0,427.4 L492.0,126.2 L493.0,126.2 L493.0,427.4 L492.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1383. <polygon fill = 'red' points = '493.0,427.4 494.1,427.4 494.1,165.4 493.0,165.4 '/>
  1384. </g>
  1385. <path stroke='red' d='M493.0,427.4 L493.0,165.5 L494.0,165.5 L494.0,427.4 L493.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1386. <polygon fill = 'red' points = '494.0,427.4 495.1,427.4 495.1,146.5 494.0,146.5 '/>
  1387. </g>
  1388. <path stroke='red' d='M494.0,427.4 L494.0,146.6 L495.0,146.6 L495.0,427.4 L494.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1389. <polygon fill = 'red' points = '495.0,427.4 496.1,427.4 496.1,168.3 495.0,168.3 '/>
  1390. </g>
  1391. <path stroke='red' d='M495.0,427.4 L495.0,168.4 L496.0,168.4 L496.0,427.4 L495.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1392. <polygon fill = 'red' points = '496.0,427.4 497.1,427.4 497.1,173.5 496.0,173.5 '/>
  1393. </g>
  1394. <path stroke='red' d='M496.0,427.4 L496.0,173.6 L497.0,173.6 L497.0,427.4 L496.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1395. <polygon fill = 'red' points = '497.0,427.4 498.1,427.4 498.1,179.1 497.0,179.1 '/>
  1396. </g>
  1397. <path stroke='red' d='M497.0,427.4 L497.0,179.2 L498.0,179.2 L498.0,427.4 L497.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1398. <polygon fill = 'red' points = '498.0,427.4 499.1,427.4 499.1,186.9 498.0,186.9 '/>
  1399. </g>
  1400. <path stroke='red' d='M498.0,427.4 L498.0,187.0 L499.0,187.0 L499.0,427.4 L498.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1401. <polygon fill = 'red' points = '499.0,427.4 500.1,427.4 500.1,163.8 499.0,163.8 '/>
  1402. </g>
  1403. <path stroke='red' d='M499.0,427.4 L499.0,163.9 L500.0,163.9 L500.0,427.4 L499.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1404. <polygon fill = 'red' points = '500.0,427.4 501.1,427.4 501.1,184.8 500.0,184.8 '/>
  1405. </g>
  1406. <path stroke='red' d='M500.0,427.4 L500.0,184.9 L501.0,184.9 L501.0,427.4 L500.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1407. <polygon fill = 'red' points = '501.0,427.4 502.2,427.4 502.2,179.6 501.0,179.6 '/>
  1408. </g>
  1409. <path stroke='red' d='M501.0,427.4 L501.0,179.7 L502.1,179.7 L502.1,427.4 L501.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1410. <polygon fill = 'red' points = '502.1,427.4 503.2,427.4 503.2,181.5 502.1,181.5 '/>
  1411. </g>
  1412. <path stroke='red' d='M502.1,427.4 L502.1,181.6 L503.1,181.6 L503.1,427.4 L502.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1413. <polygon fill = 'red' points = '503.1,427.4 504.2,427.4 504.2,169.0 503.1,169.0 '/>
  1414. </g>
  1415. <path stroke='red' d='M503.1,427.4 L503.1,169.1 L504.1,169.1 L504.1,427.4 L503.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1416. <polygon fill = 'red' points = '504.1,427.4 505.2,427.4 505.2,169.7 504.1,169.7 '/>
  1417. </g>
  1418. <path stroke='red' d='M504.1,427.4 L504.1,169.8 L505.1,169.8 L505.1,427.4 L504.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1419. <polygon fill = 'red' points = '505.1,427.4 506.2,427.4 506.2,153.7 505.1,153.7 '/>
  1420. </g>
  1421. <path stroke='red' d='M505.1,427.4 L505.1,153.8 L506.1,153.8 L506.1,427.4 L505.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1422. <polygon fill = 'red' points = '506.1,427.4 507.2,427.4 507.2,130.1 506.1,130.1 '/>
  1423. </g>
  1424. <path stroke='red' d='M506.1,427.4 L506.1,130.2 L507.1,130.2 L507.1,427.4 L506.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1425. <polygon fill = 'red' points = '507.1,427.4 508.2,427.4 508.2,121.2 507.1,121.2 '/>
  1426. </g>
  1427. <path stroke='red' d='M507.1,427.4 L507.1,121.3 L508.1,121.3 L508.1,427.4 L507.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1428. <polygon fill = 'red' points = '508.1,427.4 509.2,427.4 509.2,88.6 508.1,88.6 '/>
  1429. </g>
  1430. <path stroke='red' d='M508.1,427.4 L508.1,88.7 L509.1,88.7 L509.1,427.4 L508.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1431. <polygon fill = 'red' points = '509.1,427.4 510.2,427.4 510.2,91.0 509.1,91.0 '/>
  1432. </g>
  1433. <path stroke='red' d='M509.1,427.4 L509.1,91.1 L510.1,91.1 L510.1,427.4 L509.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1434. <polygon fill = 'red' points = '510.1,427.4 511.2,427.4 511.2,138.9 510.1,138.9 '/>
  1435. </g>
  1436. <path stroke='red' d='M510.1,427.4 L510.1,139.0 L511.1,139.0 L511.1,427.4 L510.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1437. <polygon fill = 'red' points = '511.1,427.4 512.2,427.4 512.2,54.0 511.1,54.0 '/>
  1438. </g>
  1439. <path stroke='red' d='M511.1,427.4 L511.1,54.1 L512.1,54.1 L512.1,427.4 L511.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1440. <polygon fill = 'red' points = '512.1,427.4 513.2,427.4 513.2,117.8 512.1,117.8 '/>
  1441. </g>
  1442. <path stroke='red' d='M512.1,427.4 L512.1,117.9 L513.1,117.9 L513.1,427.4 L512.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1443. <polygon fill = 'red' points = '513.1,427.4 514.2,427.4 514.2,117.2 513.1,117.2 '/>
  1444. </g>
  1445. <path stroke='red' d='M513.1,427.4 L513.1,117.3 L514.1,117.3 L514.1,427.4 L513.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1446. <polygon fill = 'red' points = '514.1,427.4 515.2,427.4 515.2,104.1 514.1,104.1 '/>
  1447. </g>
  1448. <path stroke='red' d='M514.1,427.4 L514.1,104.2 L515.1,104.2 L515.1,427.4 L514.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1449. <polygon fill = 'red' points = '515.1,427.4 516.2,427.4 516.2,115.1 515.1,115.1 '/>
  1450. </g>
  1451. <path stroke='red' d='M515.1,427.4 L515.1,115.2 L516.1,115.2 L516.1,427.4 L515.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1452. <polygon fill = 'red' points = '516.1,427.4 517.2,427.4 517.2,98.2 516.1,98.2 '/>
  1453. </g>
  1454. <path stroke='red' d='M516.1,427.4 L516.1,98.3 L517.1,98.3 L517.1,427.4 L516.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1455. <polygon fill = 'red' points = '517.1,427.4 518.2,427.4 518.2,111.6 517.1,111.6 '/>
  1456. </g>
  1457. <path stroke='red' d='M517.1,427.4 L517.1,111.7 L518.1,111.7 L518.1,427.4 L517.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1458. <polygon fill = 'red' points = '518.1,427.4 519.3,427.4 519.3,90.4 518.1,90.4 '/>
  1459. </g>
  1460. <path stroke='red' d='M518.1,427.4 L518.1,90.5 L519.2,90.5 L519.2,427.4 L518.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1461. <polygon fill = 'red' points = '519.2,427.4 520.3,427.4 520.3,82.4 519.2,82.4 '/>
  1462. </g>
  1463. <path stroke='red' d='M519.2,427.4 L519.2,82.5 L520.2,82.5 L520.2,427.4 L519.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1464. <polygon fill = 'red' points = '520.2,427.4 521.3,427.4 521.3,92.7 520.2,92.7 '/>
  1465. </g>
  1466. <path stroke='red' d='M520.2,427.4 L520.2,92.8 L521.2,92.8 L521.2,427.4 L520.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1467. <polygon fill = 'red' points = '521.2,427.4 522.3,427.4 522.3,86.0 521.2,86.0 '/>
  1468. </g>
  1469. <path stroke='red' d='M521.2,427.4 L521.2,86.1 L522.2,86.1 L522.2,427.4 L521.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1470. <polygon fill = 'red' points = '522.2,427.4 523.3,427.4 523.3,61.0 522.2,61.0 '/>
  1471. </g>
  1472. <path stroke='red' d='M522.2,427.4 L522.2,61.1 L523.2,61.1 L523.2,427.4 L522.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1473. <polygon fill = 'red' points = '523.2,427.4 524.3,427.4 524.3,104.7 523.2,104.7 '/>
  1474. </g>
  1475. <path stroke='red' d='M523.2,427.4 L523.2,104.8 L524.2,104.8 L524.2,427.4 L523.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1476. <polygon fill = 'red' points = '524.2,427.4 525.3,427.4 525.3,110.7 524.2,110.7 '/>
  1477. </g>
  1478. <path stroke='red' d='M524.2,427.4 L524.2,110.8 L525.2,110.8 L525.2,427.4 L524.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1479. <polygon fill = 'red' points = '525.2,427.4 526.3,427.4 526.3,118.3 525.2,118.3 '/>
  1480. </g>
  1481. <path stroke='red' d='M525.2,427.4 L525.2,118.4 L526.2,118.4 L526.2,427.4 L525.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1482. <polygon fill = 'red' points = '526.2,427.4 527.3,427.4 527.3,103.8 526.2,103.8 '/>
  1483. </g>
  1484. <path stroke='red' d='M526.2,427.4 L526.2,103.9 L527.2,103.9 L527.2,427.4 L526.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1485. <polygon fill = 'red' points = '527.2,427.4 528.3,427.4 528.3,103.0 527.2,103.0 '/>
  1486. </g>
  1487. <path stroke='red' d='M527.2,427.4 L527.2,103.1 L528.2,103.1 L528.2,427.4 L527.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1488. <polygon fill = 'red' points = '528.2,427.4 529.3,427.4 529.3,114.2 528.2,114.2 '/>
  1489. </g>
  1490. <path stroke='red' d='M528.2,427.4 L528.2,114.3 L529.2,114.3 L529.2,427.4 L528.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1491. <polygon fill = 'red' points = '529.2,427.4 530.3,427.4 530.3,100.3 529.2,100.3 '/>
  1492. </g>
  1493. <path stroke='red' d='M529.2,427.4 L529.2,100.4 L530.2,100.4 L530.2,427.4 L529.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1494. <polygon fill = 'red' points = '530.2,427.4 531.3,427.4 531.3,90.1 530.2,90.1 '/>
  1495. </g>
  1496. <path stroke='red' d='M530.2,427.4 L530.2,90.2 L531.2,90.2 L531.2,427.4 L530.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1497. <polygon fill = 'red' points = '531.2,427.4 532.3,427.4 532.3,54.0 531.2,54.0 '/>
  1498. </g>
  1499. <path stroke='red' d='M531.2,427.4 L531.2,54.1 L532.2,54.1 L532.2,427.4 L531.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1500. <polygon fill = 'red' points = '532.2,427.4 533.3,427.4 533.3,54.0 532.2,54.0 '/>
  1501. </g>
  1502. <path stroke='red' d='M532.2,427.4 L532.2,54.1 L533.2,54.1 L533.2,427.4 L532.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1503. <polygon fill = 'red' points = '533.2,427.4 534.3,427.4 534.3,54.0 533.2,54.0 '/>
  1504. </g>
  1505. <path stroke='red' d='M533.2,427.4 L533.2,54.1 L534.2,54.1 L534.2,427.4 L533.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1506. <polygon fill = 'red' points = '534.2,427.4 535.4,427.4 535.4,54.0 534.2,54.0 '/>
  1507. </g>
  1508. <path stroke='red' d='M534.2,427.4 L534.2,54.1 L535.3,54.1 L535.3,427.4 L534.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1509. <polygon fill = 'red' points = '535.3,427.4 536.4,427.4 536.4,54.0 535.3,54.0 '/>
  1510. </g>
  1511. <path stroke='red' d='M535.3,427.4 L535.3,54.1 L536.3,54.1 L536.3,427.4 L535.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1512. <polygon fill = 'red' points = '536.3,427.4 537.4,427.4 537.4,54.0 536.3,54.0 '/>
  1513. </g>
  1514. <path stroke='red' d='M536.3,427.4 L536.3,54.1 L537.3,54.1 L537.3,427.4 L536.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1515. <polygon fill = 'red' points = '537.3,427.4 538.4,427.4 538.4,54.0 537.3,54.0 '/>
  1516. </g>
  1517. <path stroke='red' d='M537.3,427.4 L537.3,54.1 L538.3,54.1 L538.3,427.4 L537.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1518. <polygon fill = 'red' points = '538.3,427.4 539.4,427.4 539.4,54.0 538.3,54.0 '/>
  1519. </g>
  1520. <path stroke='red' d='M538.3,427.4 L538.3,54.1 L539.3,54.1 L539.3,427.4 L538.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1521. <polygon fill = 'red' points = '539.3,427.4 540.4,427.4 540.4,78.3 539.3,78.3 '/>
  1522. </g>
  1523. <path stroke='red' d='M539.3,427.4 L539.3,78.4 L540.3,78.4 L540.3,427.4 L539.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1524. <polygon fill = 'red' points = '540.3,427.4 541.4,427.4 541.4,98.0 540.3,98.0 '/>
  1525. </g>
  1526. <path stroke='red' d='M540.3,427.4 L540.3,98.1 L541.3,98.1 L541.3,427.4 L540.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1527. <polygon fill = 'red' points = '541.3,427.4 542.4,427.4 542.4,153.5 541.3,153.5 '/>
  1528. </g>
  1529. <path stroke='red' d='M541.3,427.4 L541.3,153.6 L542.3,153.6 L542.3,427.4 L541.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1530. <polygon fill = 'red' points = '542.3,427.4 543.4,427.4 543.4,135.1 542.3,135.1 '/>
  1531. </g>
  1532. <path stroke='red' d='M542.3,427.4 L542.3,135.2 L543.3,135.2 L543.3,427.4 L542.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1533. <polygon fill = 'red' points = '543.3,427.4 544.4,427.4 544.4,124.0 543.3,124.0 '/>
  1534. </g>
  1535. <path stroke='red' d='M543.3,427.4 L543.3,124.1 L544.3,124.1 L544.3,427.4 L543.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1536. <polygon fill = 'red' points = '544.3,427.4 545.4,427.4 545.4,171.5 544.3,171.5 '/>
  1537. </g>
  1538. <path stroke='red' d='M544.3,427.4 L544.3,171.6 L545.3,171.6 L545.3,427.4 L544.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1539. <polygon fill = 'red' points = '545.3,427.4 546.4,427.4 546.4,179.6 545.3,179.6 '/>
  1540. </g>
  1541. <path stroke='red' d='M545.3,427.4 L545.3,179.7 L546.3,179.7 L546.3,427.4 L545.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1542. <polygon fill = 'red' points = '546.3,427.4 547.4,427.4 547.4,193.8 546.3,193.8 '/>
  1543. </g>
  1544. <path stroke='red' d='M546.3,427.4 L546.3,193.9 L547.3,193.9 L547.3,427.4 L546.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1545. <polygon fill = 'red' points = '547.3,427.4 548.4,427.4 548.4,170.4 547.3,170.4 '/>
  1546. </g>
  1547. <path stroke='red' d='M547.3,427.4 L547.3,170.5 L548.3,170.5 L548.3,427.4 L547.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1548. <polygon fill = 'red' points = '548.3,427.4 549.4,427.4 549.4,177.8 548.3,177.8 '/>
  1549. </g>
  1550. <path stroke='red' d='M548.3,427.4 L548.3,177.9 L549.3,177.9 L549.3,427.4 L548.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1551. <polygon fill = 'red' points = '549.3,427.4 550.4,427.4 550.4,228.4 549.3,228.4 '/>
  1552. </g>
  1553. <path stroke='red' d='M549.3,427.4 L549.3,228.5 L550.3,228.5 L550.3,427.4 L549.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1554. <polygon fill = 'red' points = '550.3,427.4 551.5,427.4 551.5,244.0 550.3,244.0 '/>
  1555. </g>
  1556. <path stroke='red' d='M550.3,427.4 L550.3,244.1 L551.4,244.1 L551.4,427.4 L550.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1557. <polygon fill = 'red' points = '551.4,427.4 552.5,427.4 552.5,213.9 551.4,213.9 '/>
  1558. </g>
  1559. <path stroke='red' d='M551.4,427.4 L551.4,214.0 L552.4,214.0 L552.4,427.4 L551.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1560. <polygon fill = 'red' points = '552.4,427.4 553.5,427.4 553.5,212.0 552.4,212.0 '/>
  1561. </g>
  1562. <path stroke='red' d='M552.4,427.4 L552.4,212.1 L553.4,212.1 L553.4,427.4 L552.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1563. <polygon fill = 'red' points = '553.4,427.4 554.5,427.4 554.5,186.0 553.4,186.0 '/>
  1564. </g>
  1565. <path stroke='red' d='M553.4,427.4 L553.4,186.1 L554.4,186.1 L554.4,427.4 L553.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1566. <polygon fill = 'red' points = '554.4,427.4 555.5,427.4 555.5,218.6 554.4,218.6 '/>
  1567. </g>
  1568. <path stroke='red' d='M554.4,427.4 L554.4,218.7 L555.4,218.7 L555.4,427.4 L554.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1569. <polygon fill = 'red' points = '555.4,427.4 556.5,427.4 556.5,196.1 555.4,196.1 '/>
  1570. </g>
  1571. <path stroke='red' d='M555.4,427.4 L555.4,196.2 L556.4,196.2 L556.4,427.4 L555.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1572. <polygon fill = 'red' points = '556.4,427.4 557.5,427.4 557.5,190.0 556.4,190.0 '/>
  1573. </g>
  1574. <path stroke='red' d='M556.4,427.4 L556.4,190.1 L557.4,190.1 L557.4,427.4 L556.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1575. <polygon fill = 'red' points = '557.4,427.4 558.5,427.4 558.5,168.0 557.4,168.0 '/>
  1576. </g>
  1577. <path stroke='red' d='M557.4,427.4 L557.4,168.1 L558.4,168.1 L558.4,427.4 L557.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1578. <polygon fill = 'red' points = '558.4,427.4 559.5,427.4 559.5,175.7 558.4,175.7 '/>
  1579. </g>
  1580. <path stroke='red' d='M558.4,427.4 L558.4,175.8 L559.4,175.8 L559.4,427.4 L558.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1581. <polygon fill = 'red' points = '559.4,427.4 560.5,427.4 560.5,172.4 559.4,172.4 '/>
  1582. </g>
  1583. <path stroke='red' d='M559.4,427.4 L559.4,172.5 L560.4,172.5 L560.4,427.4 L559.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1584. <polygon fill = 'red' points = '560.4,427.4 561.5,427.4 561.5,176.3 560.4,176.3 '/>
  1585. </g>
  1586. <path stroke='red' d='M560.4,427.4 L560.4,176.4 L561.4,176.4 L561.4,427.4 L560.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1587. <polygon fill = 'red' points = '561.4,427.4 562.5,427.4 562.5,155.7 561.4,155.7 '/>
  1588. </g>
  1589. <path stroke='red' d='M561.4,427.4 L561.4,155.8 L562.4,155.8 L562.4,427.4 L561.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1590. <polygon fill = 'red' points = '562.4,427.4 563.5,427.4 563.5,142.4 562.4,142.4 '/>
  1591. </g>
  1592. <path stroke='red' d='M562.4,427.4 L562.4,142.5 L563.4,142.5 L563.4,427.4 L562.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1593. <polygon fill = 'red' points = '563.4,427.4 564.5,427.4 564.5,227.3 563.4,227.3 '/>
  1594. </g>
  1595. <path stroke='red' d='M563.4,427.4 L563.4,227.4 L564.4,227.4 L564.4,427.4 L563.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1596. <polygon fill = 'red' points = '564.4,427.4 565.5,427.4 565.5,242.0 564.4,242.0 '/>
  1597. </g>
  1598. <path stroke='red' d='M564.4,427.4 L564.4,242.1 L565.4,242.1 L565.4,427.4 L564.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1599. <polygon fill = 'red' points = '565.4,427.4 566.5,427.4 566.5,214.5 565.4,214.5 '/>
  1600. </g>
  1601. <path stroke='red' d='M565.4,427.4 L565.4,214.6 L566.4,214.6 L566.4,427.4 L565.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1602. <polygon fill = 'red' points = '566.4,427.4 567.6,427.4 567.6,217.2 566.4,217.2 '/>
  1603. </g>
  1604. <path stroke='red' d='M566.4,427.4 L566.4,217.3 L567.5,217.3 L567.5,427.4 L566.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1605. <polygon fill = 'red' points = '567.5,427.4 568.6,427.4 568.6,186.5 567.5,186.5 '/>
  1606. </g>
  1607. <path stroke='red' d='M567.5,427.4 L567.5,186.6 L568.5,186.6 L568.5,427.4 L567.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1608. <polygon fill = 'red' points = '568.5,427.4 569.6,427.4 569.6,183.4 568.5,183.4 '/>
  1609. </g>
  1610. <path stroke='red' d='M568.5,427.4 L568.5,183.5 L569.5,183.5 L569.5,427.4 L568.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1611. <polygon fill = 'red' points = '569.5,427.4 570.6,427.4 570.6,209.1 569.5,209.1 '/>
  1612. </g>
  1613. <path stroke='red' d='M569.5,427.4 L569.5,209.2 L570.5,209.2 L570.5,427.4 L569.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1614. <polygon fill = 'red' points = '570.5,427.4 571.6,427.4 571.6,272.1 570.5,272.1 '/>
  1615. </g>
  1616. <path stroke='red' d='M570.5,427.4 L570.5,272.2 L571.5,272.2 L571.5,427.4 L570.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1617. <polygon fill = 'red' points = '571.5,427.4 572.6,427.4 572.6,260.8 571.5,260.8 '/>
  1618. </g>
  1619. <path stroke='red' d='M571.5,427.4 L571.5,260.9 L572.5,260.9 L572.5,427.4 L571.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1620. <polygon fill = 'red' points = '572.5,427.4 573.6,427.4 573.6,273.1 572.5,273.1 '/>
  1621. </g>
  1622. <path stroke='red' d='M572.5,427.4 L572.5,273.2 L573.5,273.2 L573.5,427.4 L572.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1623. <polygon fill = 'red' points = '573.5,427.4 574.6,427.4 574.6,243.8 573.5,243.8 '/>
  1624. </g>
  1625. <path stroke='red' d='M573.5,427.4 L573.5,243.9 L574.5,243.9 L574.5,427.4 L573.5,427.4 Z '/></g>
  1626. </g>
  1627. <g id="gnuplot_plot_2" ><title>3</title>
  1628. <g fill="none" color="black" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
  1629. <g transform="translate(264.6,466.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
  1630. <text><tspan font-family="Arial" >3</tspan></text>
  1631. </g>
  1632. </g>
  1633. <g fill="none" color="black" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
  1634. <g stroke='none' shape-rendering='crispEdges'>
  1635. <polygon fill = 'green' points = '272.9,466.5 315.1,466.5 315.1,457.5 272.9,457.5 '/>
  1636. </g>
  1637. <path stroke='green' d='M272.9,466.5 L315.1,466.5 L315.1,457.5 L272.9,457.5 L272.9,466.5 Z '/></g>
  1638. <g fill="none" color="black" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
  1639. <g stroke='none' shape-rendering='crispEdges'>
  1640. <polygon fill = 'green' points = '71.9,427.4 72.5,427.4 72.5,426.5 71.9,426.5 '/>
  1641. </g>
  1642. <path stroke='green' d='M71.9,427.4 L71.9,426.6 L72.4,426.6 L72.4,427.4 L71.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1643. <polygon fill = 'green' points = '72.4,427.4 73.5,427.4 73.5,426.5 72.4,426.5 '/>
  1644. </g>
  1645. <path stroke='green' d='M72.4,427.4 L72.4,426.6 L73.4,426.6 L73.4,427.4 L72.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1646. <polygon fill = 'green' points = '73.4,427.4 74.5,427.4 74.5,426.5 73.4,426.5 '/>
  1647. </g>
  1648. <path stroke='green' d='M73.4,427.4 L73.4,426.6 L74.4,426.6 L74.4,427.4 L73.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1649. <polygon fill = 'green' points = '74.4,427.4 75.5,427.4 75.5,426.5 74.4,426.5 '/>
  1650. </g>
  1651. <path stroke='green' d='M74.4,427.4 L74.4,426.6 L75.4,426.6 L75.4,427.4 L74.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1652. <polygon fill = 'green' points = '75.4,427.4 76.5,427.4 76.5,426.5 75.4,426.5 '/>
  1653. </g>
  1654. <path stroke='green' d='M75.4,427.4 L75.4,426.6 L76.4,426.6 L76.4,427.4 L75.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1655. <polygon fill = 'green' points = '76.4,427.4 77.5,427.4 77.5,426.5 76.4,426.5 '/>
  1656. </g>
  1657. <path stroke='green' d='M76.4,427.4 L76.4,426.6 L77.4,426.6 L77.4,427.4 L76.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1658. <polygon fill = 'green' points = '77.4,427.4 78.5,427.4 78.5,426.5 77.4,426.5 '/>
  1659. </g>
  1660. <path stroke='green' d='M77.4,427.4 L77.4,426.6 L78.4,426.6 L78.4,427.4 L77.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1661. <polygon fill = 'green' points = '78.4,427.4 79.5,427.4 79.5,426.5 78.4,426.5 '/>
  1662. </g>
  1663. <path stroke='green' d='M78.4,427.4 L78.4,426.6 L79.4,426.6 L79.4,427.4 L78.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1664. <polygon fill = 'green' points = '79.4,427.4 80.6,427.4 80.6,426.5 79.4,426.5 '/>
  1665. </g>
  1666. <path stroke='green' d='M79.4,427.4 L79.4,426.6 L80.5,426.6 L80.5,427.4 L79.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1667. <polygon fill = 'green' points = '80.5,427.4 81.6,427.4 81.6,426.4 80.5,426.4 '/>
  1668. </g>
  1669. <path stroke='green' d='M80.5,427.4 L80.5,426.5 L81.5,426.5 L81.5,427.4 L80.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1670. <polygon fill = 'green' points = '81.5,427.4 82.6,427.4 82.6,426.5 81.5,426.5 '/>
  1671. </g>
  1672. <path stroke='green' d='M81.5,427.4 L81.5,426.6 L82.5,426.6 L82.5,427.4 L81.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1673. <polygon fill = 'green' points = '82.5,427.4 83.6,427.4 83.6,426.5 82.5,426.5 '/>
  1674. </g>
  1675. <path stroke='green' d='M82.5,427.4 L82.5,426.6 L83.5,426.6 L83.5,427.4 L82.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1676. <polygon fill = 'green' points = '83.5,427.4 84.6,427.4 84.6,426.5 83.5,426.5 '/>
  1677. </g>
  1678. <path stroke='green' d='M83.5,427.4 L83.5,426.6 L84.5,426.6 L84.5,427.4 L83.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1679. <polygon fill = 'green' points = '84.5,427.4 85.6,427.4 85.6,426.4 84.5,426.4 '/>
  1680. </g>
  1681. <path stroke='green' d='M84.5,427.4 L84.5,426.5 L85.5,426.5 L85.5,427.4 L84.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1682. <polygon fill = 'green' points = '85.5,427.4 86.6,427.4 86.6,394.8 85.5,394.8 '/>
  1683. </g>
  1684. <path stroke='green' d='M85.5,427.4 L85.5,394.9 L86.5,394.9 L86.5,427.4 L85.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1685. <polygon fill = 'green' points = '86.5,427.4 87.6,427.4 87.6,387.8 86.5,387.8 '/>
  1686. </g>
  1687. <path stroke='green' d='M86.5,427.4 L86.5,387.9 L87.5,387.9 L87.5,427.4 L86.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1688. <polygon fill = 'green' points = '87.5,427.4 88.6,427.4 88.6,386.9 87.5,386.9 '/>
  1689. </g>
  1690. <path stroke='green' d='M87.5,427.4 L87.5,387.0 L88.5,387.0 L88.5,427.4 L87.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1691. <polygon fill = 'green' points = '88.5,427.4 89.6,427.4 89.6,375.8 88.5,375.8 '/>
  1692. </g>
  1693. <path stroke='green' d='M88.5,427.4 L88.5,375.9 L89.5,375.9 L89.5,427.4 L88.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1694. <polygon fill = 'green' points = '89.5,427.4 90.6,427.4 90.6,369.2 89.5,369.2 '/>
  1695. </g>
  1696. <path stroke='green' d='M89.5,427.4 L89.5,369.3 L90.5,369.3 L90.5,427.4 L89.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1697. <polygon fill = 'green' points = '90.5,427.4 91.6,427.4 91.6,349.5 90.5,349.5 '/>
  1698. </g>
  1699. <path stroke='green' d='M90.5,427.4 L90.5,349.6 L91.5,349.6 L91.5,427.4 L90.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1700. <polygon fill = 'green' points = '91.5,427.4 92.6,427.4 92.6,336.9 91.5,336.9 '/>
  1701. </g>
  1702. <path stroke='green' d='M91.5,427.4 L91.5,337.0 L92.5,337.0 L92.5,427.4 L91.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1703. <polygon fill = 'green' points = '92.5,427.4 93.6,427.4 93.6,348.1 92.5,348.1 '/>
  1704. </g>
  1705. <path stroke='green' d='M92.5,427.4 L92.5,348.2 L93.5,348.2 L93.5,427.4 L92.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1706. <polygon fill = 'green' points = '93.5,427.4 94.6,427.4 94.6,337.8 93.5,337.8 '/>
  1707. </g>
  1708. <path stroke='green' d='M93.5,427.4 L93.5,337.9 L94.5,337.9 L94.5,427.4 L93.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1709. <polygon fill = 'green' points = '94.5,427.4 95.6,427.4 95.6,366.6 94.5,366.6 '/>
  1710. </g>
  1711. <path stroke='green' d='M94.5,427.4 L94.5,366.7 L95.5,366.7 L95.5,427.4 L94.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1712. <polygon fill = 'green' points = '95.5,427.4 96.7,427.4 96.7,381.8 95.5,381.8 '/>
  1713. </g>
  1714. <path stroke='green' d='M95.5,427.4 L95.5,381.9 L96.6,381.9 L96.6,427.4 L95.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1715. <polygon fill = 'green' points = '96.6,427.4 97.7,427.4 97.7,378.1 96.6,378.1 '/>
  1716. </g>
  1717. <path stroke='green' d='M96.6,427.4 L96.6,378.2 L97.6,378.2 L97.6,427.4 L96.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1718. <polygon fill = 'green' points = '97.6,427.4 98.7,427.4 98.7,382.4 97.6,382.4 '/>
  1719. </g>
  1720. <path stroke='green' d='M97.6,427.4 L97.6,382.5 L98.6,382.5 L98.6,427.4 L97.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1721. <polygon fill = 'green' points = '98.6,427.4 99.7,427.4 99.7,374.0 98.6,374.0 '/>
  1722. </g>
  1723. <path stroke='green' d='M98.6,427.4 L98.6,374.1 L99.6,374.1 L99.6,427.4 L98.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1724. <polygon fill = 'green' points = '99.6,427.4 100.7,427.4 100.7,393.2 99.6,393.2 '/>
  1725. </g>
  1726. <path stroke='green' d='M99.6,427.4 L99.6,393.3 L100.6,393.3 L100.6,427.4 L99.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1727. <polygon fill = 'green' points = '100.6,427.4 101.7,427.4 101.7,405.2 100.6,405.2 '/>
  1728. </g>
  1729. <path stroke='green' d='M100.6,427.4 L100.6,405.3 L101.6,405.3 L101.6,427.4 L100.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1730. <polygon fill = 'green' points = '101.6,427.4 102.7,427.4 102.7,404.4 101.6,404.4 '/>
  1731. </g>
  1732. <path stroke='green' d='M101.6,427.4 L101.6,404.5 L102.6,404.5 L102.6,427.4 L101.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1733. <polygon fill = 'green' points = '102.6,427.4 103.7,427.4 103.7,420.9 102.6,420.9 '/>
  1734. </g>
  1735. <path stroke='green' d='M102.6,427.4 L102.6,421.0 L103.6,421.0 L103.6,427.4 L102.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1736. <polygon fill = 'green' points = '103.6,427.4 104.7,427.4 104.7,426.1 103.6,426.1 '/>
  1737. </g>
  1738. <path stroke='green' d='M103.6,427.4 L103.6,426.2 L104.6,426.2 L104.6,427.4 L103.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1739. <polygon fill = 'green' points = '104.6,427.4 105.7,427.4 105.7,426.3 104.6,426.3 '/>
  1740. </g>
  1741. <path stroke='green' d='M104.6,427.4 L104.6,426.4 L105.6,426.4 L105.6,427.4 L104.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1742. <polygon fill = 'green' points = '105.6,427.4 106.7,427.4 106.7,426.5 105.6,426.5 '/>
  1743. </g>
  1744. <path stroke='green' d='M105.6,427.4 L105.6,426.6 L106.6,426.6 L106.6,427.4 L105.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1745. <polygon fill = 'green' points = '106.6,427.4 107.7,427.4 107.7,426.5 106.6,426.5 '/>
  1746. </g>
  1747. <path stroke='green' d='M106.6,427.4 L106.6,426.6 L107.6,426.6 L107.6,427.4 L106.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1748. <polygon fill = 'green' points = '107.6,427.4 108.7,427.4 108.7,425.8 107.6,425.8 '/>
  1749. </g>
  1750. <path stroke='green' d='M107.6,427.4 L107.6,425.9 L108.6,425.9 L108.6,427.4 L107.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1751. <polygon fill = 'green' points = '108.6,427.4 109.7,427.4 109.7,426.5 108.6,426.5 '/>
  1752. </g>
  1753. <path stroke='green' d='M108.6,427.4 L108.6,426.6 L109.6,426.6 L109.6,427.4 L108.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1754. <polygon fill = 'green' points = '109.6,427.4 110.7,427.4 110.7,426.5 109.6,426.5 '/>
  1755. </g>
  1756. <path stroke='green' d='M109.6,427.4 L109.6,426.6 L110.6,426.6 L110.6,427.4 L109.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1757. <polygon fill = 'green' points = '110.6,427.4 111.7,427.4 111.7,426.5 110.6,426.5 '/>
  1758. </g>
  1759. <path stroke='green' d='M110.6,427.4 L110.6,426.6 L111.6,426.6 L111.6,427.4 L110.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1760. <polygon fill = 'green' points = '111.6,427.4 112.8,427.4 112.8,426.5 111.6,426.5 '/>
  1761. </g>
  1762. <path stroke='green' d='M111.6,427.4 L111.6,426.6 L112.7,426.6 L112.7,427.4 L111.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1763. <polygon fill = 'green' points = '112.7,427.4 113.8,427.4 113.8,426.5 112.7,426.5 '/>
  1764. </g>
  1765. <path stroke='green' d='M112.7,427.4 L112.7,426.6 L113.7,426.6 L113.7,427.4 L112.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1766. <polygon fill = 'green' points = '113.7,427.4 114.8,427.4 114.8,426.5 113.7,426.5 '/>
  1767. </g>
  1768. <path stroke='green' d='M113.7,427.4 L113.7,426.6 L114.7,426.6 L114.7,427.4 L113.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1769. <polygon fill = 'green' points = '114.7,427.4 115.8,427.4 115.8,426.5 114.7,426.5 '/>
  1770. </g>
  1771. <path stroke='green' d='M114.7,427.4 L114.7,426.6 L115.7,426.6 L115.7,427.4 L114.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1772. <polygon fill = 'green' points = '115.7,427.4 116.8,427.4 116.8,426.5 115.7,426.5 '/>
  1773. </g>
  1774. <path stroke='green' d='M115.7,427.4 L115.7,426.6 L116.7,426.6 L116.7,427.4 L115.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1775. <polygon fill = 'green' points = '116.7,427.4 117.8,427.4 117.8,425.8 116.7,425.8 '/>
  1776. </g>
  1777. <path stroke='green' d='M116.7,427.4 L116.7,425.9 L117.7,425.9 L117.7,427.4 L116.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1778. <polygon fill = 'green' points = '117.7,427.4 118.8,427.4 118.8,426.5 117.7,426.5 '/>
  1779. </g>
  1780. <path stroke='green' d='M117.7,427.4 L117.7,426.6 L118.7,426.6 L118.7,427.4 L117.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1781. <polygon fill = 'green' points = '118.7,427.4 119.8,427.4 119.8,426.5 118.7,426.5 '/>
  1782. </g>
  1783. <path stroke='green' d='M118.7,427.4 L118.7,426.6 L119.7,426.6 L119.7,427.4 L118.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1784. <polygon fill = 'green' points = '119.7,427.4 120.8,427.4 120.8,426.5 119.7,426.5 '/>
  1785. </g>
  1786. <path stroke='green' d='M119.7,427.4 L119.7,426.6 L120.7,426.6 L120.7,427.4 L119.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1787. <polygon fill = 'green' points = '120.7,427.4 121.8,427.4 121.8,426.5 120.7,426.5 '/>
  1788. </g>
  1789. <path stroke='green' d='M120.7,427.4 L120.7,426.6 L121.7,426.6 L121.7,427.4 L120.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1790. <polygon fill = 'green' points = '121.7,427.4 122.8,427.4 122.8,426.5 121.7,426.5 '/>
  1791. </g>
  1792. <path stroke='green' d='M121.7,427.4 L121.7,426.6 L122.7,426.6 L122.7,427.4 L121.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1793. <polygon fill = 'green' points = '122.7,427.4 123.8,427.4 123.8,426.2 122.7,426.2 '/>
  1794. </g>
  1795. <path stroke='green' d='M122.7,427.4 L122.7,426.3 L123.7,426.3 L123.7,427.4 L122.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1796. <polygon fill = 'green' points = '123.7,427.4 124.8,427.4 124.8,426.5 123.7,426.5 '/>
  1797. </g>
  1798. <path stroke='green' d='M123.7,427.4 L123.7,426.6 L124.7,426.6 L124.7,427.4 L123.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1799. <polygon fill = 'green' points = '124.7,427.4 125.8,427.4 125.8,407.1 124.7,407.1 '/>
  1800. </g>
  1801. <path stroke='green' d='M124.7,427.4 L124.7,407.2 L125.7,407.2 L125.7,427.4 L124.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1802. <polygon fill = 'green' points = '125.7,427.4 126.8,427.4 126.8,398.5 125.7,398.5 '/>
  1803. </g>
  1804. <path stroke='green' d='M125.7,427.4 L125.7,398.6 L126.7,398.6 L126.7,427.4 L125.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1805. <polygon fill = 'green' points = '126.7,427.4 127.8,427.4 127.8,421.6 126.7,421.6 '/>
  1806. </g>
  1807. <path stroke='green' d='M126.7,427.4 L126.7,421.7 L127.7,421.7 L127.7,427.4 L126.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1808. <polygon fill = 'green' points = '127.7,427.4 128.9,427.4 128.9,406.9 127.7,406.9 '/>
  1809. </g>
  1810. <path stroke='green' d='M127.7,427.4 L127.7,407.0 L128.8,407.0 L128.8,427.4 L127.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1811. <polygon fill = 'green' points = '128.8,427.4 129.9,427.4 129.9,403.8 128.8,403.8 '/>
  1812. </g>
  1813. <path stroke='green' d='M128.8,427.4 L128.8,403.9 L129.8,403.9 L129.8,427.4 L128.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1814. <polygon fill = 'green' points = '129.8,427.4 130.9,427.4 130.9,416.3 129.8,416.3 '/>
  1815. </g>
  1816. <path stroke='green' d='M129.8,427.4 L129.8,416.4 L130.8,416.4 L130.8,427.4 L129.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1817. <polygon fill = 'green' points = '130.8,427.4 131.9,427.4 131.9,417.8 130.8,417.8 '/>
  1818. </g>
  1819. <path stroke='green' d='M130.8,427.4 L130.8,417.9 L131.8,417.9 L131.8,427.4 L130.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1820. <polygon fill = 'green' points = '131.8,427.4 132.9,427.4 132.9,426.5 131.8,426.5 '/>
  1821. </g>
  1822. <path stroke='green' d='M131.8,427.4 L131.8,426.6 L132.8,426.6 L132.8,427.4 L131.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1823. <polygon fill = 'green' points = '132.8,427.4 133.9,427.4 133.9,426.5 132.8,426.5 '/>
  1824. </g>
  1825. <path stroke='green' d='M132.8,427.4 L132.8,426.6 L133.8,426.6 L133.8,427.4 L132.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1826. <polygon fill = 'green' points = '133.8,427.4 134.9,427.4 134.9,426.5 133.8,426.5 '/>
  1827. </g>
  1828. <path stroke='green' d='M133.8,427.4 L133.8,426.6 L134.8,426.6 L134.8,427.4 L133.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1829. <polygon fill = 'green' points = '134.8,427.4 135.9,427.4 135.9,426.5 134.8,426.5 '/>
  1830. </g>
  1831. <path stroke='green' d='M134.8,427.4 L134.8,426.6 L135.8,426.6 L135.8,427.4 L134.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1832. <polygon fill = 'green' points = '135.8,427.4 136.9,427.4 136.9,418.1 135.8,418.1 '/>
  1833. </g>
  1834. <path stroke='green' d='M135.8,427.4 L135.8,418.2 L136.8,418.2 L136.8,427.4 L135.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1835. <polygon fill = 'green' points = '136.8,427.4 137.9,427.4 137.9,415.8 136.8,415.8 '/>
  1836. </g>
  1837. <path stroke='green' d='M136.8,427.4 L136.8,415.9 L137.8,415.9 L137.8,427.4 L136.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1838. <polygon fill = 'green' points = '137.8,427.4 138.9,427.4 138.9,395.3 137.8,395.3 '/>
  1839. </g>
  1840. <path stroke='green' d='M137.8,427.4 L137.8,395.4 L138.8,395.4 L138.8,427.4 L137.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1841. <polygon fill = 'green' points = '138.8,427.4 139.9,427.4 139.9,372.9 138.8,372.9 '/>
  1842. </g>
  1843. <path stroke='green' d='M138.8,427.4 L138.8,373.0 L139.8,373.0 L139.8,427.4 L138.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1844. <polygon fill = 'green' points = '139.8,427.4 140.9,427.4 140.9,376.1 139.8,376.1 '/>
  1845. </g>
  1846. <path stroke='green' d='M139.8,427.4 L139.8,376.2 L140.8,376.2 L140.8,427.4 L139.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1847. <polygon fill = 'green' points = '140.8,427.4 141.9,427.4 141.9,361.9 140.8,361.9 '/>
  1848. </g>
  1849. <path stroke='green' d='M140.8,427.4 L140.8,362.0 L141.8,362.0 L141.8,427.4 L140.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1850. <polygon fill = 'green' points = '141.8,427.4 142.9,427.4 142.9,364.0 141.8,364.0 '/>
  1851. </g>
  1852. <path stroke='green' d='M141.8,427.4 L141.8,364.1 L142.8,364.1 L142.8,427.4 L141.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1853. <polygon fill = 'green' points = '142.8,427.4 143.9,427.4 143.9,351.2 142.8,351.2 '/>
  1854. </g>
  1855. <path stroke='green' d='M142.8,427.4 L142.8,351.3 L143.8,351.3 L143.8,427.4 L142.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1856. <polygon fill = 'green' points = '143.8,427.4 144.9,427.4 144.9,356.0 143.8,356.0 '/>
  1857. </g>
  1858. <path stroke='green' d='M143.8,427.4 L143.8,356.1 L144.8,356.1 L144.8,427.4 L143.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1859. <polygon fill = 'green' points = '144.8,427.4 146.0,427.4 146.0,336.4 144.8,336.4 '/>
  1860. </g>
  1861. <path stroke='green' d='M144.8,427.4 L144.8,336.5 L145.9,336.5 L145.9,427.4 L144.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1862. <polygon fill = 'green' points = '145.9,427.4 147.0,427.4 147.0,336.4 145.9,336.4 '/>
  1863. </g>
  1864. <path stroke='green' d='M145.9,427.4 L145.9,336.5 L146.9,336.5 L146.9,427.4 L145.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1865. <polygon fill = 'green' points = '146.9,427.4 148.0,427.4 148.0,316.3 146.9,316.3 '/>
  1866. </g>
  1867. <path stroke='green' d='M146.9,427.4 L146.9,316.4 L147.9,316.4 L147.9,427.4 L146.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1868. <polygon fill = 'green' points = '147.9,427.4 149.0,427.4 149.0,300.0 147.9,300.0 '/>
  1869. </g>
  1870. <path stroke='green' d='M147.9,427.4 L147.9,300.1 L148.9,300.1 L148.9,427.4 L147.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1871. <polygon fill = 'green' points = '148.9,427.4 150.0,427.4 150.0,310.8 148.9,310.8 '/>
  1872. </g>
  1873. <path stroke='green' d='M148.9,427.4 L148.9,310.9 L149.9,310.9 L149.9,427.4 L148.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1874. <polygon fill = 'green' points = '149.9,427.4 151.0,427.4 151.0,286.9 149.9,286.9 '/>
  1875. </g>
  1876. <path stroke='green' d='M149.9,427.4 L149.9,287.0 L150.9,287.0 L150.9,427.4 L149.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1877. <polygon fill = 'green' points = '150.9,427.4 152.0,427.4 152.0,283.7 150.9,283.7 '/>
  1878. </g>
  1879. <path stroke='green' d='M150.9,427.4 L150.9,283.8 L151.9,283.8 L151.9,427.4 L150.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1880. <polygon fill = 'green' points = '151.9,427.4 153.0,427.4 153.0,361.6 151.9,361.6 '/>
  1881. </g>
  1882. <path stroke='green' d='M151.9,427.4 L151.9,361.7 L152.9,361.7 L152.9,427.4 L151.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1883. <polygon fill = 'green' points = '152.9,427.4 154.0,427.4 154.0,363.7 152.9,363.7 '/>
  1884. </g>
  1885. <path stroke='green' d='M152.9,427.4 L152.9,363.8 L153.9,363.8 L153.9,427.4 L152.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1886. <polygon fill = 'green' points = '153.9,427.4 155.0,427.4 155.0,367.7 153.9,367.7 '/>
  1887. </g>
  1888. <path stroke='green' d='M153.9,427.4 L153.9,367.8 L154.9,367.8 L154.9,427.4 L153.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1889. <polygon fill = 'green' points = '154.9,427.4 156.0,427.4 156.0,356.6 154.9,356.6 '/>
  1890. </g>
  1891. <path stroke='green' d='M154.9,427.4 L154.9,356.7 L155.9,356.7 L155.9,427.4 L154.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1892. <polygon fill = 'green' points = '155.9,427.4 157.0,427.4 157.0,378.2 155.9,378.2 '/>
  1893. </g>
  1894. <path stroke='green' d='M155.9,427.4 L155.9,378.3 L156.9,378.3 L156.9,427.4 L155.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1895. <polygon fill = 'green' points = '156.9,427.4 158.0,427.4 158.0,426.5 156.9,426.5 '/>
  1896. </g>
  1897. <path stroke='green' d='M156.9,427.4 L156.9,426.6 L157.9,426.6 L157.9,427.4 L156.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1898. <polygon fill = 'green' points = '157.9,427.4 159.0,427.4 159.0,426.5 157.9,426.5 '/>
  1899. </g>
  1900. <path stroke='green' d='M157.9,427.4 L157.9,426.6 L158.9,426.6 L158.9,427.4 L157.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1901. <polygon fill = 'green' points = '158.9,427.4 160.0,427.4 160.0,426.5 158.9,426.5 '/>
  1902. </g>
  1903. <path stroke='green' d='M158.9,427.4 L158.9,426.6 L159.9,426.6 L159.9,427.4 L158.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1904. <polygon fill = 'green' points = '159.9,427.4 161.0,427.4 161.0,426.5 159.9,426.5 '/>
  1905. </g>
  1906. <path stroke='green' d='M159.9,427.4 L159.9,426.6 L160.9,426.6 L160.9,427.4 L159.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1907. <polygon fill = 'green' points = '160.9,427.4 162.1,427.4 162.1,426.5 160.9,426.5 '/>
  1908. </g>
  1909. <path stroke='green' d='M160.9,427.4 L160.9,426.6 L162.0,426.6 L162.0,427.4 L160.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1910. <polygon fill = 'green' points = '162.0,427.4 163.1,427.4 163.1,425.9 162.0,425.9 '/>
  1911. </g>
  1912. <path stroke='green' d='M162.0,427.4 L162.0,426.0 L163.0,426.0 L163.0,427.4 L162.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1913. <polygon fill = 'green' points = '163.0,427.4 164.1,427.4 164.1,426.5 163.0,426.5 '/>
  1914. </g>
  1915. <path stroke='green' d='M163.0,427.4 L163.0,426.6 L164.0,426.6 L164.0,427.4 L163.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1916. <polygon fill = 'green' points = '164.0,427.4 165.1,427.4 165.1,426.5 164.0,426.5 '/>
  1917. </g>
  1918. <path stroke='green' d='M164.0,427.4 L164.0,426.6 L165.0,426.6 L165.0,427.4 L164.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1919. <polygon fill = 'green' points = '165.0,427.4 166.1,427.4 166.1,426.5 165.0,426.5 '/>
  1920. </g>
  1921. <path stroke='green' d='M165.0,427.4 L165.0,426.6 L166.0,426.6 L166.0,427.4 L165.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1922. <polygon fill = 'green' points = '166.0,427.4 167.1,427.4 167.1,426.5 166.0,426.5 '/>
  1923. </g>
  1924. <path stroke='green' d='M166.0,427.4 L166.0,426.6 L167.0,426.6 L167.0,427.4 L166.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1925. <polygon fill = 'green' points = '167.0,427.4 168.1,427.4 168.1,426.5 167.0,426.5 '/>
  1926. </g>
  1927. <path stroke='green' d='M167.0,427.4 L167.0,426.6 L168.0,426.6 L168.0,427.4 L167.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1928. <polygon fill = 'green' points = '168.0,427.4 169.1,427.4 169.1,426.5 168.0,426.5 '/>
  1929. </g>
  1930. <path stroke='green' d='M168.0,427.4 L168.0,426.6 L169.0,426.6 L169.0,427.4 L168.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1931. <polygon fill = 'green' points = '169.0,427.4 170.1,427.4 170.1,415.7 169.0,415.7 '/>
  1932. </g>
  1933. <path stroke='green' d='M169.0,427.4 L169.0,415.8 L170.0,415.8 L170.0,427.4 L169.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1934. <polygon fill = 'green' points = '170.0,427.4 171.1,427.4 171.1,415.9 170.0,415.9 '/>
  1935. </g>
  1936. <path stroke='green' d='M170.0,427.4 L170.0,416.0 L171.0,416.0 L171.0,427.4 L170.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1937. <polygon fill = 'green' points = '171.0,427.4 172.1,427.4 172.1,400.8 171.0,400.8 '/>
  1938. </g>
  1939. <path stroke='green' d='M171.0,427.4 L171.0,400.9 L172.0,400.9 L172.0,427.4 L171.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1940. <polygon fill = 'green' points = '172.0,427.4 173.1,427.4 173.1,384.9 172.0,384.9 '/>
  1941. </g>
  1942. <path stroke='green' d='M172.0,427.4 L172.0,385.0 L173.0,385.0 L173.0,427.4 L172.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1943. <polygon fill = 'green' points = '173.0,427.4 174.1,427.4 174.1,418.5 173.0,418.5 '/>
  1944. </g>
  1945. <path stroke='green' d='M173.0,427.4 L173.0,418.6 L174.0,418.6 L174.0,427.4 L173.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1946. <polygon fill = 'green' points = '174.0,427.4 175.1,427.4 175.1,426.5 174.0,426.5 '/>
  1947. </g>
  1948. <path stroke='green' d='M174.0,427.4 L174.0,426.6 L175.0,426.6 L175.0,427.4 L174.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1949. <polygon fill = 'green' points = '175.0,427.4 176.1,427.4 176.1,426.5 175.0,426.5 '/>
  1950. </g>
  1951. <path stroke='green' d='M175.0,427.4 L175.0,426.6 L176.0,426.6 L176.0,427.4 L175.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1952. <polygon fill = 'green' points = '176.0,427.4 177.1,427.4 177.1,426.5 176.0,426.5 '/>
  1953. </g>
  1954. <path stroke='green' d='M176.0,427.4 L176.0,426.6 L177.0,426.6 L177.0,427.4 L176.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1955. <polygon fill = 'green' points = '177.0,427.4 178.2,427.4 178.2,426.5 177.0,426.5 '/>
  1956. </g>
  1957. <path stroke='green' d='M177.0,427.4 L177.0,426.6 L178.1,426.6 L178.1,427.4 L177.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1958. <polygon fill = 'green' points = '178.1,427.4 179.2,427.4 179.2,426.5 178.1,426.5 '/>
  1959. </g>
  1960. <path stroke='green' d='M178.1,427.4 L178.1,426.6 L179.1,426.6 L179.1,427.4 L178.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1961. <polygon fill = 'green' points = '179.1,427.4 180.2,427.4 180.2,426.5 179.1,426.5 '/>
  1962. </g>
  1963. <path stroke='green' d='M179.1,427.4 L179.1,426.6 L180.1,426.6 L180.1,427.4 L179.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1964. <polygon fill = 'green' points = '180.1,427.4 181.2,427.4 181.2,426.5 180.1,426.5 '/>
  1965. </g>
  1966. <path stroke='green' d='M180.1,427.4 L180.1,426.6 L181.1,426.6 L181.1,427.4 L180.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1967. <polygon fill = 'green' points = '181.1,427.4 182.2,427.4 182.2,426.5 181.1,426.5 '/>
  1968. </g>
  1969. <path stroke='green' d='M181.1,427.4 L181.1,426.6 L182.1,426.6 L182.1,427.4 L181.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1970. <polygon fill = 'green' points = '182.1,427.4 183.2,427.4 183.2,426.5 182.1,426.5 '/>
  1971. </g>
  1972. <path stroke='green' d='M182.1,427.4 L182.1,426.6 L183.1,426.6 L183.1,427.4 L182.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1973. <polygon fill = 'green' points = '183.1,427.4 184.2,427.4 184.2,426.5 183.1,426.5 '/>
  1974. </g>
  1975. <path stroke='green' d='M183.1,427.4 L183.1,426.6 L184.1,426.6 L184.1,427.4 L183.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1976. <polygon fill = 'green' points = '184.1,427.4 185.2,427.4 185.2,426.5 184.1,426.5 '/>
  1977. </g>
  1978. <path stroke='green' d='M184.1,427.4 L184.1,426.6 L185.1,426.6 L185.1,427.4 L184.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1979. <polygon fill = 'green' points = '185.1,427.4 186.2,427.4 186.2,426.5 185.1,426.5 '/>
  1980. </g>
  1981. <path stroke='green' d='M185.1,427.4 L185.1,426.6 L186.1,426.6 L186.1,427.4 L185.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1982. <polygon fill = 'green' points = '186.1,427.4 187.2,427.4 187.2,426.5 186.1,426.5 '/>
  1983. </g>
  1984. <path stroke='green' d='M186.1,427.4 L186.1,426.6 L187.1,426.6 L187.1,427.4 L186.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1985. <polygon fill = 'green' points = '187.1,427.4 188.2,427.4 188.2,426.5 187.1,426.5 '/>
  1986. </g>
  1987. <path stroke='green' d='M187.1,427.4 L187.1,426.6 L188.1,426.6 L188.1,427.4 L187.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1988. <polygon fill = 'green' points = '188.1,427.4 189.2,427.4 189.2,426.5 188.1,426.5 '/>
  1989. </g>
  1990. <path stroke='green' d='M188.1,427.4 L188.1,426.6 L189.1,426.6 L189.1,427.4 L188.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1991. <polygon fill = 'green' points = '189.1,427.4 190.2,427.4 190.2,426.5 189.1,426.5 '/>
  1992. </g>
  1993. <path stroke='green' d='M189.1,427.4 L189.1,426.6 L190.1,426.6 L190.1,427.4 L189.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1994. <polygon fill = 'green' points = '190.1,427.4 191.2,427.4 191.2,417.5 190.1,417.5 '/>
  1995. </g>
  1996. <path stroke='green' d='M190.1,427.4 L190.1,417.6 L191.1,417.6 L191.1,427.4 L190.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  1997. <polygon fill = 'green' points = '191.1,427.4 192.2,427.4 192.2,402.7 191.1,402.7 '/>
  1998. </g>
  1999. <path stroke='green' d='M191.1,427.4 L191.1,402.8 L192.1,402.8 L192.1,427.4 L191.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2000. <polygon fill = 'green' points = '192.1,427.4 193.2,427.4 193.2,426.5 192.1,426.5 '/>
  2001. </g>
  2002. <path stroke='green' d='M192.1,427.4 L192.1,426.6 L193.1,426.6 L193.1,427.4 L192.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2003. <polygon fill = 'green' points = '193.1,427.4 194.3,427.4 194.3,426.5 193.1,426.5 '/>
  2004. </g>
  2005. <path stroke='green' d='M193.1,427.4 L193.1,426.6 L194.2,426.6 L194.2,427.4 L193.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2006. <polygon fill = 'green' points = '194.2,427.4 195.3,427.4 195.3,426.5 194.2,426.5 '/>
  2007. </g>
  2008. <path stroke='green' d='M194.2,427.4 L194.2,426.6 L195.2,426.6 L195.2,427.4 L194.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2009. <polygon fill = 'green' points = '195.2,427.4 196.3,427.4 196.3,426.5 195.2,426.5 '/>
  2010. </g>
  2011. <path stroke='green' d='M195.2,427.4 L195.2,426.6 L196.2,426.6 L196.2,427.4 L195.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2012. <polygon fill = 'green' points = '196.2,427.4 197.3,427.4 197.3,426.5 196.2,426.5 '/>
  2013. </g>
  2014. <path stroke='green' d='M196.2,427.4 L196.2,426.6 L197.2,426.6 L197.2,427.4 L196.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2015. <polygon fill = 'green' points = '197.2,427.4 198.3,427.4 198.3,426.5 197.2,426.5 '/>
  2016. </g>
  2017. <path stroke='green' d='M197.2,427.4 L197.2,426.6 L198.2,426.6 L198.2,427.4 L197.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2018. <polygon fill = 'green' points = '198.2,427.4 199.3,427.4 199.3,426.5 198.2,426.5 '/>
  2019. </g>
  2020. <path stroke='green' d='M198.2,427.4 L198.2,426.6 L199.2,426.6 L199.2,427.4 L198.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2021. <polygon fill = 'green' points = '199.2,427.4 200.3,427.4 200.3,426.5 199.2,426.5 '/>
  2022. </g>
  2023. <path stroke='green' d='M199.2,427.4 L199.2,426.6 L200.2,426.6 L200.2,427.4 L199.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2024. <polygon fill = 'green' points = '200.2,427.4 201.3,427.4 201.3,426.5 200.2,426.5 '/>
  2025. </g>
  2026. <path stroke='green' d='M200.2,427.4 L200.2,426.6 L201.2,426.6 L201.2,427.4 L200.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2027. <polygon fill = 'green' points = '201.2,427.4 202.3,427.4 202.3,426.5 201.2,426.5 '/>
  2028. </g>
  2029. <path stroke='green' d='M201.2,427.4 L201.2,426.6 L202.2,426.6 L202.2,427.4 L201.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2030. <polygon fill = 'green' points = '202.2,427.4 203.3,427.4 203.3,426.5 202.2,426.5 '/>
  2031. </g>
  2032. <path stroke='green' d='M202.2,427.4 L202.2,426.6 L203.2,426.6 L203.2,427.4 L202.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2033. <polygon fill = 'green' points = '203.2,427.4 204.3,427.4 204.3,406.9 203.2,406.9 '/>
  2034. </g>
  2035. <path stroke='green' d='M203.2,427.4 L203.2,407.0 L204.2,407.0 L204.2,427.4 L203.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2036. <polygon fill = 'green' points = '204.2,427.4 205.3,427.4 205.3,387.8 204.2,387.8 '/>
  2037. </g>
  2038. <path stroke='green' d='M204.2,427.4 L204.2,387.9 L205.2,387.9 L205.2,427.4 L204.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2039. <polygon fill = 'green' points = '205.2,427.4 206.3,427.4 206.3,375.1 205.2,375.1 '/>
  2040. </g>
  2041. <path stroke='green' d='M205.2,427.4 L205.2,375.2 L206.2,375.2 L206.2,427.4 L205.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2042. <polygon fill = 'green' points = '206.2,427.4 207.3,427.4 207.3,360.8 206.2,360.8 '/>
  2043. </g>
  2044. <path stroke='green' d='M206.2,427.4 L206.2,360.9 L207.2,360.9 L207.2,427.4 L206.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2045. <polygon fill = 'green' points = '207.2,427.4 208.3,427.4 208.3,393.6 207.2,393.6 '/>
  2046. </g>
  2047. <path stroke='green' d='M207.2,427.4 L207.2,393.7 L208.2,393.7 L208.2,427.4 L207.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2048. <polygon fill = 'green' points = '208.2,427.4 209.3,427.4 209.3,339.2 208.2,339.2 '/>
  2049. </g>
  2050. <path stroke='green' d='M208.2,427.4 L208.2,339.3 L209.2,339.3 L209.2,427.4 L208.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2051. <polygon fill = 'green' points = '209.2,427.4 210.4,427.4 210.4,426.5 209.2,426.5 '/>
  2052. </g>
  2053. <path stroke='green' d='M209.2,427.4 L209.2,426.6 L210.3,426.6 L210.3,427.4 L209.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2054. <polygon fill = 'green' points = '210.3,427.4 211.4,427.4 211.4,426.5 210.3,426.5 '/>
  2055. </g>
  2056. <path stroke='green' d='M210.3,427.4 L210.3,426.6 L211.3,426.6 L211.3,427.4 L210.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2057. <polygon fill = 'green' points = '211.3,427.4 212.4,427.4 212.4,406.4 211.3,406.4 '/>
  2058. </g>
  2059. <path stroke='green' d='M211.3,427.4 L211.3,406.5 L212.3,406.5 L212.3,427.4 L211.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2060. <polygon fill = 'green' points = '212.3,427.4 213.4,427.4 213.4,406.4 212.3,406.4 '/>
  2061. </g>
  2062. <path stroke='green' d='M212.3,427.4 L212.3,406.5 L213.3,406.5 L213.3,427.4 L212.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2063. <polygon fill = 'green' points = '213.3,427.4 214.4,427.4 214.4,426.5 213.3,426.5 '/>
  2064. </g>
  2065. <path stroke='green' d='M213.3,427.4 L213.3,426.6 L214.3,426.6 L214.3,427.4 L213.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2066. <polygon fill = 'green' points = '214.3,427.4 215.4,427.4 215.4,426.5 214.3,426.5 '/>
  2067. </g>
  2068. <path stroke='green' d='M214.3,427.4 L214.3,426.6 L215.3,426.6 L215.3,427.4 L214.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2069. <polygon fill = 'green' points = '215.3,427.4 216.4,427.4 216.4,426.5 215.3,426.5 '/>
  2070. </g>
  2071. <path stroke='green' d='M215.3,427.4 L215.3,426.6 L216.3,426.6 L216.3,427.4 L215.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2072. <polygon fill = 'green' points = '216.3,427.4 217.4,427.4 217.4,395.6 216.3,395.6 '/>
  2073. </g>
  2074. <path stroke='green' d='M216.3,427.4 L216.3,395.7 L217.3,395.7 L217.3,427.4 L216.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2075. <polygon fill = 'green' points = '217.3,427.4 218.4,427.4 218.4,426.5 217.3,426.5 '/>
  2076. </g>
  2077. <path stroke='green' d='M217.3,427.4 L217.3,426.6 L218.3,426.6 L218.3,427.4 L217.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2078. <polygon fill = 'green' points = '218.3,427.4 219.4,427.4 219.4,426.5 218.3,426.5 '/>
  2079. </g>
  2080. <path stroke='green' d='M218.3,427.4 L218.3,426.6 L219.3,426.6 L219.3,427.4 L218.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2081. <polygon fill = 'green' points = '219.3,427.4 220.4,427.4 220.4,426.5 219.3,426.5 '/>
  2082. </g>
  2083. <path stroke='green' d='M219.3,427.4 L219.3,426.6 L220.3,426.6 L220.3,427.4 L219.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2084. <polygon fill = 'green' points = '220.3,427.4 221.4,427.4 221.4,426.5 220.3,426.5 '/>
  2085. </g>
  2086. <path stroke='green' d='M220.3,427.4 L220.3,426.6 L221.3,426.6 L221.3,427.4 L220.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2087. <polygon fill = 'green' points = '221.3,427.4 222.4,427.4 222.4,426.5 221.3,426.5 '/>
  2088. </g>
  2089. <path stroke='green' d='M221.3,427.4 L221.3,426.6 L222.3,426.6 L222.3,427.4 L221.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2090. <polygon fill = 'green' points = '222.3,427.4 223.4,427.4 223.4,412.3 222.3,412.3 '/>
  2091. </g>
  2092. <path stroke='green' d='M222.3,427.4 L222.3,412.4 L223.3,412.4 L223.3,427.4 L222.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2093. <polygon fill = 'green' points = '223.3,427.4 224.4,427.4 224.4,409.8 223.3,409.8 '/>
  2094. </g>
  2095. <path stroke='green' d='M223.3,427.4 L223.3,409.9 L224.3,409.9 L224.3,427.4 L223.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2096. <polygon fill = 'green' points = '224.3,427.4 225.4,427.4 225.4,417.2 224.3,417.2 '/>
  2097. </g>
  2098. <path stroke='green' d='M224.3,427.4 L224.3,417.3 L225.3,417.3 L225.3,427.4 L224.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2099. <polygon fill = 'green' points = '225.3,427.4 226.5,427.4 226.5,401.6 225.3,401.6 '/>
  2100. </g>
  2101. <path stroke='green' d='M225.3,427.4 L225.3,401.7 L226.4,401.7 L226.4,427.4 L225.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2102. <polygon fill = 'green' points = '226.4,427.4 227.5,427.4 227.5,419.4 226.4,419.4 '/>
  2103. </g>
  2104. <path stroke='green' d='M226.4,427.4 L226.4,419.5 L227.4,419.5 L227.4,427.4 L226.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2105. <polygon fill = 'green' points = '227.4,427.4 228.5,427.4 228.5,414.4 227.4,414.4 '/>
  2106. </g>
  2107. <path stroke='green' d='M227.4,427.4 L227.4,414.5 L228.4,414.5 L228.4,427.4 L227.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2108. <polygon fill = 'green' points = '228.4,427.4 229.5,427.4 229.5,397.3 228.4,397.3 '/>
  2109. </g>
  2110. <path stroke='green' d='M228.4,427.4 L228.4,397.4 L229.4,397.4 L229.4,427.4 L228.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2111. <polygon fill = 'green' points = '229.4,427.4 230.5,427.4 230.5,426.5 229.4,426.5 '/>
  2112. </g>
  2113. <path stroke='green' d='M229.4,427.4 L229.4,426.6 L230.4,426.6 L230.4,427.4 L229.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2114. <polygon fill = 'green' points = '230.4,427.4 231.5,427.4 231.5,426.5 230.4,426.5 '/>
  2115. </g>
  2116. <path stroke='green' d='M230.4,427.4 L230.4,426.6 L231.4,426.6 L231.4,427.4 L230.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2117. <polygon fill = 'green' points = '231.4,427.4 232.5,427.4 232.5,426.5 231.4,426.5 '/>
  2118. </g>
  2119. <path stroke='green' d='M231.4,427.4 L231.4,426.6 L232.4,426.6 L232.4,427.4 L231.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2120. <polygon fill = 'green' points = '232.4,427.4 233.5,427.4 233.5,426.5 232.4,426.5 '/>
  2121. </g>
  2122. <path stroke='green' d='M232.4,427.4 L232.4,426.6 L233.4,426.6 L233.4,427.4 L232.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2123. <polygon fill = 'green' points = '233.4,427.4 234.5,427.4 234.5,422.6 233.4,422.6 '/>
  2124. </g>
  2125. <path stroke='green' d='M233.4,427.4 L233.4,422.7 L234.4,422.7 L234.4,427.4 L233.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2126. <polygon fill = 'green' points = '234.4,427.4 235.5,427.4 235.5,398.9 234.4,398.9 '/>
  2127. </g>
  2128. <path stroke='green' d='M234.4,427.4 L234.4,399.0 L235.4,399.0 L235.4,427.4 L234.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2129. <polygon fill = 'green' points = '235.4,427.4 236.5,427.4 236.5,386.6 235.4,386.6 '/>
  2130. </g>
  2131. <path stroke='green' d='M235.4,427.4 L235.4,386.7 L236.4,386.7 L236.4,427.4 L235.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2132. <polygon fill = 'green' points = '236.4,427.4 237.5,427.4 237.5,399.3 236.4,399.3 '/>
  2133. </g>
  2134. <path stroke='green' d='M236.4,427.4 L236.4,399.4 L237.4,399.4 L237.4,427.4 L236.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2135. <polygon fill = 'green' points = '237.4,427.4 238.5,427.4 238.5,395.6 237.4,395.6 '/>
  2136. </g>
  2137. <path stroke='green' d='M237.4,427.4 L237.4,395.7 L238.4,395.7 L238.4,427.4 L237.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2138. <polygon fill = 'green' points = '238.4,427.4 239.5,427.4 239.5,426.5 238.4,426.5 '/>
  2139. </g>
  2140. <path stroke='green' d='M238.4,427.4 L238.4,426.6 L239.4,426.6 L239.4,427.4 L238.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2141. <polygon fill = 'green' points = '239.4,427.4 240.5,427.4 240.5,426.5 239.4,426.5 '/>
  2142. </g>
  2143. <path stroke='green' d='M239.4,427.4 L239.4,426.6 L240.4,426.6 L240.4,427.4 L239.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2144. <polygon fill = 'green' points = '240.4,427.4 241.5,427.4 241.5,422.6 240.4,422.6 '/>
  2145. </g>
  2146. <path stroke='green' d='M240.4,427.4 L240.4,422.7 L241.4,422.7 L241.4,427.4 L240.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2147. <polygon fill = 'green' points = '241.4,427.4 242.6,427.4 242.6,426.5 241.4,426.5 '/>
  2148. </g>
  2149. <path stroke='green' d='M241.4,427.4 L241.4,426.6 L242.5,426.6 L242.5,427.4 L241.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2150. <polygon fill = 'green' points = '242.5,427.4 243.6,427.4 243.6,426.5 242.5,426.5 '/>
  2151. </g>
  2152. <path stroke='green' d='M242.5,427.4 L242.5,426.6 L243.5,426.6 L243.5,427.4 L242.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2153. <polygon fill = 'green' points = '243.5,427.4 244.6,427.4 244.6,426.5 243.5,426.5 '/>
  2154. </g>
  2155. <path stroke='green' d='M243.5,427.4 L243.5,426.6 L244.5,426.6 L244.5,427.4 L243.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2156. <polygon fill = 'green' points = '244.5,427.4 245.6,427.4 245.6,426.5 244.5,426.5 '/>
  2157. </g>
  2158. <path stroke='green' d='M244.5,427.4 L244.5,426.6 L245.5,426.6 L245.5,427.4 L244.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2159. <polygon fill = 'green' points = '245.5,427.4 246.6,427.4 246.6,426.5 245.5,426.5 '/>
  2160. </g>
  2161. <path stroke='green' d='M245.5,427.4 L245.5,426.6 L246.5,426.6 L246.5,427.4 L245.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2162. <polygon fill = 'green' points = '246.5,427.4 247.6,427.4 247.6,426.5 246.5,426.5 '/>
  2163. </g>
  2164. <path stroke='green' d='M246.5,427.4 L246.5,426.6 L247.5,426.6 L247.5,427.4 L246.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2165. <polygon fill = 'green' points = '247.5,427.4 248.6,427.4 248.6,426.5 247.5,426.5 '/>
  2166. </g>
  2167. <path stroke='green' d='M247.5,427.4 L247.5,426.6 L248.5,426.6 L248.5,427.4 L247.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2168. <polygon fill = 'green' points = '248.5,427.4 249.6,427.4 249.6,426.5 248.5,426.5 '/>
  2169. </g>
  2170. <path stroke='green' d='M248.5,427.4 L248.5,426.6 L249.5,426.6 L249.5,427.4 L248.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2171. <polygon fill = 'green' points = '249.5,427.4 250.6,427.4 250.6,426.5 249.5,426.5 '/>
  2172. </g>
  2173. <path stroke='green' d='M249.5,427.4 L249.5,426.6 L250.5,426.6 L250.5,427.4 L249.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2174. <polygon fill = 'green' points = '250.5,427.4 251.6,427.4 251.6,426.5 250.5,426.5 '/>
  2175. </g>
  2176. <path stroke='green' d='M250.5,427.4 L250.5,426.6 L251.5,426.6 L251.5,427.4 L250.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2177. <polygon fill = 'green' points = '251.5,427.4 252.6,427.4 252.6,426.5 251.5,426.5 '/>
  2178. </g>
  2179. <path stroke='green' d='M251.5,427.4 L251.5,426.6 L252.5,426.6 L252.5,427.4 L251.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2180. <polygon fill = 'green' points = '252.5,427.4 253.6,427.4 253.6,426.5 252.5,426.5 '/>
  2181. </g>
  2182. <path stroke='green' d='M252.5,427.4 L252.5,426.6 L253.5,426.6 L253.5,427.4 L252.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2183. <polygon fill = 'green' points = '253.5,427.4 254.6,427.4 254.6,404.8 253.5,404.8 '/>
  2184. </g>
  2185. <path stroke='green' d='M253.5,427.4 L253.5,404.9 L254.5,404.9 L254.5,427.4 L253.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2186. <polygon fill = 'green' points = '254.5,427.4 255.6,427.4 255.6,407.9 254.5,407.9 '/>
  2187. </g>
  2188. <path stroke='green' d='M254.5,427.4 L254.5,408.0 L255.5,408.0 L255.5,427.4 L254.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2189. <polygon fill = 'green' points = '255.5,427.4 256.6,427.4 256.6,394.0 255.5,394.0 '/>
  2190. </g>
  2191. <path stroke='green' d='M255.5,427.4 L255.5,394.1 L256.5,394.1 L256.5,427.4 L255.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2192. <polygon fill = 'green' points = '256.5,427.4 257.6,427.4 257.6,408.4 256.5,408.4 '/>
  2193. </g>
  2194. <path stroke='green' d='M256.5,427.4 L256.5,408.5 L257.5,408.5 L257.5,427.4 L256.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2195. <polygon fill = 'green' points = '257.5,427.4 258.7,427.4 258.7,394.2 257.5,394.2 '/>
  2196. </g>
  2197. <path stroke='green' d='M257.5,427.4 L257.5,394.3 L258.6,394.3 L258.6,427.4 L257.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2198. <polygon fill = 'green' points = '258.6,427.4 259.7,427.4 259.7,392.2 258.6,392.2 '/>
  2199. </g>
  2200. <path stroke='green' d='M258.6,427.4 L258.6,392.3 L259.6,392.3 L259.6,427.4 L258.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2201. <polygon fill = 'green' points = '259.6,427.4 260.7,427.4 260.7,401.5 259.6,401.5 '/>
  2202. </g>
  2203. <path stroke='green' d='M259.6,427.4 L259.6,401.6 L260.6,401.6 L260.6,427.4 L259.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2204. <polygon fill = 'green' points = '260.6,427.4 261.7,427.4 261.7,401.5 260.6,401.5 '/>
  2205. </g>
  2206. <path stroke='green' d='M260.6,427.4 L260.6,401.6 L261.6,401.6 L261.6,427.4 L260.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2207. <polygon fill = 'green' points = '261.6,427.4 262.7,427.4 262.7,393.5 261.6,393.5 '/>
  2208. </g>
  2209. <path stroke='green' d='M261.6,427.4 L261.6,393.6 L262.6,393.6 L262.6,427.4 L261.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2210. <polygon fill = 'green' points = '262.6,427.4 263.7,427.4 263.7,377.3 262.6,377.3 '/>
  2211. </g>
  2212. <path stroke='green' d='M262.6,427.4 L262.6,377.4 L263.6,377.4 L263.6,427.4 L262.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2213. <polygon fill = 'green' points = '263.6,427.4 264.7,427.4 264.7,412.8 263.6,412.8 '/>
  2214. </g>
  2215. <path stroke='green' d='M263.6,427.4 L263.6,412.9 L264.6,412.9 L264.6,427.4 L263.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2216. <polygon fill = 'green' points = '264.6,427.4 265.7,427.4 265.7,404.8 264.6,404.8 '/>
  2217. </g>
  2218. <path stroke='green' d='M264.6,427.4 L264.6,404.9 L265.6,404.9 L265.6,427.4 L264.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2219. <polygon fill = 'green' points = '265.6,427.4 266.7,427.4 266.7,378.3 265.6,378.3 '/>
  2220. </g>
  2221. <path stroke='green' d='M265.6,427.4 L265.6,378.4 L266.6,378.4 L266.6,427.4 L265.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2222. <polygon fill = 'green' points = '266.6,427.4 267.7,427.4 267.7,386.5 266.6,386.5 '/>
  2223. </g>
  2224. <path stroke='green' d='M266.6,427.4 L266.6,386.6 L267.6,386.6 L267.6,427.4 L266.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2225. <polygon fill = 'green' points = '267.6,427.4 268.7,427.4 268.7,397.0 267.6,397.0 '/>
  2226. </g>
  2227. <path stroke='green' d='M267.6,427.4 L267.6,397.1 L268.6,397.1 L268.6,427.4 L267.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2228. <polygon fill = 'green' points = '268.6,427.4 269.7,427.4 269.7,378.0 268.6,378.0 '/>
  2229. </g>
  2230. <path stroke='green' d='M268.6,427.4 L268.6,378.1 L269.6,378.1 L269.6,427.4 L268.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2231. <polygon fill = 'green' points = '269.6,427.4 270.7,427.4 270.7,376.6 269.6,376.6 '/>
  2232. </g>
  2233. <path stroke='green' d='M269.6,427.4 L269.6,376.7 L270.6,376.7 L270.6,427.4 L269.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2234. <polygon fill = 'green' points = '270.6,427.4 271.7,427.4 271.7,387.8 270.6,387.8 '/>
  2235. </g>
  2236. <path stroke='green' d='M270.6,427.4 L270.6,387.9 L271.6,387.9 L271.6,427.4 L270.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2237. <polygon fill = 'green' points = '271.6,427.4 272.7,427.4 272.7,371.1 271.6,371.1 '/>
  2238. </g>
  2239. <path stroke='green' d='M271.6,427.4 L271.6,371.2 L272.6,371.2 L272.6,427.4 L271.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2240. <polygon fill = 'green' points = '272.6,427.4 273.7,427.4 273.7,385.6 272.6,385.6 '/>
  2241. </g>
  2242. <path stroke='green' d='M272.6,427.4 L272.6,385.7 L273.6,385.7 L273.6,427.4 L272.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2243. <polygon fill = 'green' points = '273.6,427.4 274.7,427.4 274.7,390.0 273.6,390.0 '/>
  2244. </g>
  2245. <path stroke='green' d='M273.6,427.4 L273.6,390.1 L274.6,390.1 L274.6,427.4 L273.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2246. <polygon fill = 'green' points = '274.6,427.4 275.8,427.4 275.8,374.8 274.6,374.8 '/>
  2247. </g>
  2248. <path stroke='green' d='M274.6,427.4 L274.6,374.9 L275.7,374.9 L275.7,427.4 L274.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2249. <polygon fill = 'green' points = '275.7,427.4 276.8,427.4 276.8,390.3 275.7,390.3 '/>
  2250. </g>
  2251. <path stroke='green' d='M275.7,427.4 L275.7,390.4 L276.7,390.4 L276.7,427.4 L275.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2252. <polygon fill = 'green' points = '276.7,427.4 277.8,427.4 277.8,426.5 276.7,426.5 '/>
  2253. </g>
  2254. <path stroke='green' d='M276.7,427.4 L276.7,426.6 L277.7,426.6 L277.7,427.4 L276.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2255. <polygon fill = 'green' points = '277.7,427.4 278.8,427.4 278.8,426.5 277.7,426.5 '/>
  2256. </g>
  2257. <path stroke='green' d='M277.7,427.4 L277.7,426.6 L278.7,426.6 L278.7,427.4 L277.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2258. <polygon fill = 'green' points = '278.7,427.4 279.8,427.4 279.8,426.5 278.7,426.5 '/>
  2259. </g>
  2260. <path stroke='green' d='M278.7,427.4 L278.7,426.6 L279.7,426.6 L279.7,427.4 L278.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2261. <polygon fill = 'green' points = '279.7,427.4 280.8,427.4 280.8,426.5 279.7,426.5 '/>
  2262. </g>
  2263. <path stroke='green' d='M279.7,427.4 L279.7,426.6 L280.7,426.6 L280.7,427.4 L279.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2264. <polygon fill = 'green' points = '280.7,427.4 281.8,427.4 281.8,424.1 280.7,424.1 '/>
  2265. </g>
  2266. <path stroke='green' d='M280.7,427.4 L280.7,424.2 L281.7,424.2 L281.7,427.4 L280.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2267. <polygon fill = 'green' points = '281.7,427.4 282.8,427.4 282.8,426.5 281.7,426.5 '/>
  2268. </g>
  2269. <path stroke='green' d='M281.7,427.4 L281.7,426.6 L282.7,426.6 L282.7,427.4 L281.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2270. <polygon fill = 'green' points = '282.7,427.4 283.8,427.4 283.8,426.5 282.7,426.5 '/>
  2271. </g>
  2272. <path stroke='green' d='M282.7,427.4 L282.7,426.6 L283.7,426.6 L283.7,427.4 L282.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2273. <polygon fill = 'green' points = '283.7,427.4 284.8,427.4 284.8,426.5 283.7,426.5 '/>
  2274. </g>
  2275. <path stroke='green' d='M283.7,427.4 L283.7,426.6 L284.7,426.6 L284.7,427.4 L283.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2276. <polygon fill = 'green' points = '284.7,427.4 285.8,427.4 285.8,426.5 284.7,426.5 '/>
  2277. </g>
  2278. <path stroke='green' d='M284.7,427.4 L284.7,426.6 L285.7,426.6 L285.7,427.4 L284.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2279. <polygon fill = 'green' points = '285.7,427.4 286.8,427.4 286.8,421.5 285.7,421.5 '/>
  2280. </g>
  2281. <path stroke='green' d='M285.7,427.4 L285.7,421.6 L286.7,421.6 L286.7,427.4 L285.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2282. <polygon fill = 'green' points = '286.7,427.4 287.8,427.4 287.8,414.5 286.7,414.5 '/>
  2283. </g>
  2284. <path stroke='green' d='M286.7,427.4 L286.7,414.6 L287.7,414.6 L287.7,427.4 L286.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2285. <polygon fill = 'green' points = '287.7,427.4 288.8,427.4 288.8,421.6 287.7,421.6 '/>
  2286. </g>
  2287. <path stroke='green' d='M287.7,427.4 L287.7,421.7 L288.7,421.7 L288.7,427.4 L287.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2288. <polygon fill = 'green' points = '288.7,427.4 289.8,427.4 289.8,402.1 288.7,402.1 '/>
  2289. </g>
  2290. <path stroke='green' d='M288.7,427.4 L288.7,402.2 L289.7,402.2 L289.7,427.4 L288.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2291. <polygon fill = 'green' points = '289.7,427.4 290.8,427.4 290.8,400.3 289.7,400.3 '/>
  2292. </g>
  2293. <path stroke='green' d='M289.7,427.4 L289.7,400.4 L290.7,400.4 L290.7,427.4 L289.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2294. <polygon fill = 'green' points = '290.7,427.4 291.9,427.4 291.9,426.5 290.7,426.5 '/>
  2295. </g>
  2296. <path stroke='green' d='M290.7,427.4 L290.7,426.6 L291.8,426.6 L291.8,427.4 L290.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2297. <polygon fill = 'green' points = '291.8,427.4 292.9,427.4 292.9,426.5 291.8,426.5 '/>
  2298. </g>
  2299. <path stroke='green' d='M291.8,427.4 L291.8,426.6 L292.8,426.6 L292.8,427.4 L291.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2300. <polygon fill = 'green' points = '292.8,427.4 293.9,427.4 293.9,426.5 292.8,426.5 '/>
  2301. </g>
  2302. <path stroke='green' d='M292.8,427.4 L292.8,426.6 L293.8,426.6 L293.8,427.4 L292.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2303. <polygon fill = 'green' points = '293.8,427.4 294.9,427.4 294.9,426.5 293.8,426.5 '/>
  2304. </g>
  2305. <path stroke='green' d='M293.8,427.4 L293.8,426.6 L294.8,426.6 L294.8,427.4 L293.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2306. <polygon fill = 'green' points = '294.8,427.4 295.9,427.4 295.9,426.5 294.8,426.5 '/>
  2307. </g>
  2308. <path stroke='green' d='M294.8,427.4 L294.8,426.6 L295.8,426.6 L295.8,427.4 L294.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2309. <polygon fill = 'green' points = '295.8,427.4 296.9,427.4 296.9,426.5 295.8,426.5 '/>
  2310. </g>
  2311. <path stroke='green' d='M295.8,427.4 L295.8,426.6 L296.8,426.6 L296.8,427.4 L295.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2312. <polygon fill = 'green' points = '296.8,427.4 297.9,427.4 297.9,426.5 296.8,426.5 '/>
  2313. </g>
  2314. <path stroke='green' d='M296.8,427.4 L296.8,426.6 L297.8,426.6 L297.8,427.4 L296.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2315. <polygon fill = 'green' points = '297.8,427.4 298.9,427.4 298.9,426.5 297.8,426.5 '/>
  2316. </g>
  2317. <path stroke='green' d='M297.8,427.4 L297.8,426.6 L298.8,426.6 L298.8,427.4 L297.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2318. <polygon fill = 'green' points = '298.8,427.4 299.9,427.4 299.9,426.5 298.8,426.5 '/>
  2319. </g>
  2320. <path stroke='green' d='M298.8,427.4 L298.8,426.6 L299.8,426.6 L299.8,427.4 L298.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2321. <polygon fill = 'green' points = '299.8,427.4 300.9,427.4 300.9,426.5 299.8,426.5 '/>
  2322. </g>
  2323. <path stroke='green' d='M299.8,427.4 L299.8,426.6 L300.8,426.6 L300.8,427.4 L299.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2324. <polygon fill = 'green' points = '300.8,427.4 301.9,427.4 301.9,426.5 300.8,426.5 '/>
  2325. </g>
  2326. <path stroke='green' d='M300.8,427.4 L300.8,426.6 L301.8,426.6 L301.8,427.4 L300.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2327. <polygon fill = 'green' points = '301.8,427.4 302.9,427.4 302.9,426.5 301.8,426.5 '/>
  2328. </g>
  2329. <path stroke='green' d='M301.8,427.4 L301.8,426.6 L302.8,426.6 L302.8,427.4 L301.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2330. <polygon fill = 'green' points = '302.8,427.4 303.9,427.4 303.9,426.5 302.8,426.5 '/>
  2331. </g>
  2332. <path stroke='green' d='M302.8,427.4 L302.8,426.6 L303.8,426.6 L303.8,427.4 L302.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2333. <polygon fill = 'green' points = '303.8,427.4 304.9,427.4 304.9,415.6 303.8,415.6 '/>
  2334. </g>
  2335. <path stroke='green' d='M303.8,427.4 L303.8,415.7 L304.8,415.7 L304.8,427.4 L303.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2336. <polygon fill = 'green' points = '304.8,427.4 305.9,427.4 305.9,426.5 304.8,426.5 '/>
  2337. </g>
  2338. <path stroke='green' d='M304.8,427.4 L304.8,426.6 L305.8,426.6 L305.8,427.4 L304.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2339. <polygon fill = 'green' points = '305.8,427.4 306.9,427.4 306.9,426.5 305.8,426.5 '/>
  2340. </g>
  2341. <path stroke='green' d='M305.8,427.4 L305.8,426.6 L306.8,426.6 L306.8,427.4 L305.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2342. <polygon fill = 'green' points = '306.8,427.4 308.0,427.4 308.0,411.0 306.8,411.0 '/>
  2343. </g>
  2344. <path stroke='green' d='M306.8,427.4 L306.8,411.1 L307.9,411.1 L307.9,427.4 L306.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2345. <polygon fill = 'green' points = '307.9,427.4 309.0,427.4 309.0,426.5 307.9,426.5 '/>
  2346. </g>
  2347. <path stroke='green' d='M307.9,427.4 L307.9,426.6 L308.9,426.6 L308.9,427.4 L307.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2348. <polygon fill = 'green' points = '308.9,427.4 310.0,427.4 310.0,426.5 308.9,426.5 '/>
  2349. </g>
  2350. <path stroke='green' d='M308.9,427.4 L308.9,426.6 L309.9,426.6 L309.9,427.4 L308.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2351. <polygon fill = 'green' points = '309.9,427.4 311.0,427.4 311.0,426.5 309.9,426.5 '/>
  2352. </g>
  2353. <path stroke='green' d='M309.9,427.4 L309.9,426.6 L310.9,426.6 L310.9,427.4 L309.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2354. <polygon fill = 'green' points = '310.9,427.4 312.0,427.4 312.0,419.8 310.9,419.8 '/>
  2355. </g>
  2356. <path stroke='green' d='M310.9,427.4 L310.9,419.9 L311.9,419.9 L311.9,427.4 L310.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2357. <polygon fill = 'green' points = '311.9,427.4 313.0,427.4 313.0,426.5 311.9,426.5 '/>
  2358. </g>
  2359. <path stroke='green' d='M311.9,427.4 L311.9,426.6 L312.9,426.6 L312.9,427.4 L311.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2360. <polygon fill = 'green' points = '312.9,427.4 314.0,427.4 314.0,426.5 312.9,426.5 '/>
  2361. </g>
  2362. <path stroke='green' d='M312.9,427.4 L312.9,426.6 L313.9,426.6 L313.9,427.4 L312.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2363. <polygon fill = 'green' points = '313.9,427.4 315.0,427.4 315.0,426.5 313.9,426.5 '/>
  2364. </g>
  2365. <path stroke='green' d='M313.9,427.4 L313.9,426.6 L314.9,426.6 L314.9,427.4 L313.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2366. <polygon fill = 'green' points = '314.9,427.4 316.0,427.4 316.0,426.5 314.9,426.5 '/>
  2367. </g>
  2368. <path stroke='green' d='M314.9,427.4 L314.9,426.6 L315.9,426.6 L315.9,427.4 L314.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2369. <polygon fill = 'green' points = '315.9,427.4 317.0,427.4 317.0,426.5 315.9,426.5 '/>
  2370. </g>
  2371. <path stroke='green' d='M315.9,427.4 L315.9,426.6 L316.9,426.6 L316.9,427.4 L315.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2372. <polygon fill = 'green' points = '316.9,427.4 318.0,427.4 318.0,426.5 316.9,426.5 '/>
  2373. </g>
  2374. <path stroke='green' d='M316.9,427.4 L316.9,426.6 L317.9,426.6 L317.9,427.4 L316.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2375. <polygon fill = 'green' points = '317.9,427.4 319.0,427.4 319.0,426.5 317.9,426.5 '/>
  2376. </g>
  2377. <path stroke='green' d='M317.9,427.4 L317.9,426.6 L318.9,426.6 L318.9,427.4 L317.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2378. <polygon fill = 'green' points = '318.9,427.4 320.0,427.4 320.0,399.3 318.9,399.3 '/>
  2379. </g>
  2380. <path stroke='green' d='M318.9,427.4 L318.9,399.4 L319.9,399.4 L319.9,427.4 L318.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2381. <polygon fill = 'green' points = '319.9,427.4 321.0,427.4 321.0,426.5 319.9,426.5 '/>
  2382. </g>
  2383. <path stroke='green' d='M319.9,427.4 L319.9,426.6 L320.9,426.6 L320.9,427.4 L319.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2384. <polygon fill = 'green' points = '320.9,427.4 322.0,427.4 322.0,426.5 320.9,426.5 '/>
  2385. </g>
  2386. <path stroke='green' d='M320.9,427.4 L320.9,426.6 L321.9,426.6 L321.9,427.4 L320.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2387. <polygon fill = 'green' points = '321.9,427.4 323.0,427.4 323.0,426.5 321.9,426.5 '/>
  2388. </g>
  2389. <path stroke='green' d='M321.9,427.4 L321.9,426.6 L322.9,426.6 L322.9,427.4 L321.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2390. <polygon fill = 'green' points = '322.9,427.4 324.1,427.4 324.1,426.5 322.9,426.5 '/>
  2391. </g>
  2392. <path stroke='green' d='M322.9,427.4 L322.9,426.6 L324.0,426.6 L324.0,427.4 L322.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2393. <polygon fill = 'green' points = '324.0,427.4 325.1,427.4 325.1,420.0 324.0,420.0 '/>
  2394. </g>
  2395. <path stroke='green' d='M324.0,427.4 L324.0,420.1 L325.0,420.1 L325.0,427.4 L324.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2396. <polygon fill = 'green' points = '325.0,427.4 326.1,427.4 326.1,402.9 325.0,402.9 '/>
  2397. </g>
  2398. <path stroke='green' d='M325.0,427.4 L325.0,403.0 L326.0,403.0 L326.0,427.4 L325.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2399. <polygon fill = 'green' points = '326.0,427.4 327.1,427.4 327.1,406.3 326.0,406.3 '/>
  2400. </g>
  2401. <path stroke='green' d='M326.0,427.4 L326.0,406.4 L327.0,406.4 L327.0,427.4 L326.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2402. <polygon fill = 'green' points = '327.0,427.4 328.1,427.4 328.1,400.8 327.0,400.8 '/>
  2403. </g>
  2404. <path stroke='green' d='M327.0,427.4 L327.0,400.9 L328.0,400.9 L328.0,427.4 L327.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2405. <polygon fill = 'green' points = '328.0,427.4 329.1,427.4 329.1,392.8 328.0,392.8 '/>
  2406. </g>
  2407. <path stroke='green' d='M328.0,427.4 L328.0,392.9 L329.0,392.9 L329.0,427.4 L328.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2408. <polygon fill = 'green' points = '329.0,427.4 330.1,427.4 330.1,409.5 329.0,409.5 '/>
  2409. </g>
  2410. <path stroke='green' d='M329.0,427.4 L329.0,409.6 L330.0,409.6 L330.0,427.4 L329.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2411. <polygon fill = 'green' points = '330.0,427.4 331.1,427.4 331.1,391.6 330.0,391.6 '/>
  2412. </g>
  2413. <path stroke='green' d='M330.0,427.4 L330.0,391.7 L331.0,391.7 L331.0,427.4 L330.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2414. <polygon fill = 'green' points = '331.0,427.4 332.1,427.4 332.1,389.6 331.0,389.6 '/>
  2415. </g>
  2416. <path stroke='green' d='M331.0,427.4 L331.0,389.7 L332.0,389.7 L332.0,427.4 L331.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2417. <polygon fill = 'green' points = '332.0,427.4 333.1,427.4 333.1,416.1 332.0,416.1 '/>
  2418. </g>
  2419. <path stroke='green' d='M332.0,427.4 L332.0,416.2 L333.0,416.2 L333.0,427.4 L332.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2420. <polygon fill = 'green' points = '333.0,427.4 334.1,427.4 334.1,417.7 333.0,417.7 '/>
  2421. </g>
  2422. <path stroke='green' d='M333.0,427.4 L333.0,417.8 L334.0,417.8 L334.0,427.4 L333.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2423. <polygon fill = 'green' points = '334.0,427.4 335.1,427.4 335.1,425.8 334.0,425.8 '/>
  2424. </g>
  2425. <path stroke='green' d='M334.0,427.4 L334.0,425.9 L335.0,425.9 L335.0,427.4 L334.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2426. <polygon fill = 'green' points = '335.0,427.4 336.1,427.4 336.1,426.5 335.0,426.5 '/>
  2427. </g>
  2428. <path stroke='green' d='M335.0,427.4 L335.0,426.6 L336.0,426.6 L336.0,427.4 L335.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2429. <polygon fill = 'green' points = '336.0,427.4 337.1,427.4 337.1,426.5 336.0,426.5 '/>
  2430. </g>
  2431. <path stroke='green' d='M336.0,427.4 L336.0,426.6 L337.0,426.6 L337.0,427.4 L336.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2432. <polygon fill = 'green' points = '337.0,427.4 338.1,427.4 338.1,404.7 337.0,404.7 '/>
  2433. </g>
  2434. <path stroke='green' d='M337.0,427.4 L337.0,404.8 L338.0,404.8 L338.0,427.4 L337.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2435. <polygon fill = 'green' points = '338.0,427.4 339.1,427.4 339.1,415.0 338.0,415.0 '/>
  2436. </g>
  2437. <path stroke='green' d='M338.0,427.4 L338.0,415.1 L339.0,415.1 L339.0,427.4 L338.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2438. <polygon fill = 'green' points = '339.0,427.4 340.2,427.4 340.2,402.4 339.0,402.4 '/>
  2439. </g>
  2440. <path stroke='green' d='M339.0,427.4 L339.0,402.5 L340.1,402.5 L340.1,427.4 L339.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2441. <polygon fill = 'green' points = '340.1,427.4 341.2,427.4 341.2,426.5 340.1,426.5 '/>
  2442. </g>
  2443. <path stroke='green' d='M340.1,427.4 L340.1,426.6 L341.1,426.6 L341.1,427.4 L340.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2444. <polygon fill = 'green' points = '341.1,427.4 342.2,427.4 342.2,386.5 341.1,386.5 '/>
  2445. </g>
  2446. <path stroke='green' d='M341.1,427.4 L341.1,386.6 L342.1,386.6 L342.1,427.4 L341.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2447. <polygon fill = 'green' points = '342.1,427.4 343.2,427.4 343.2,426.5 342.1,426.5 '/>
  2448. </g>
  2449. <path stroke='green' d='M342.1,427.4 L342.1,426.6 L343.1,426.6 L343.1,427.4 L342.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2450. <polygon fill = 'green' points = '343.1,427.4 344.2,427.4 344.2,426.5 343.1,426.5 '/>
  2451. </g>
  2452. <path stroke='green' d='M343.1,427.4 L343.1,426.6 L344.1,426.6 L344.1,427.4 L343.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2453. <polygon fill = 'green' points = '344.1,427.4 345.2,427.4 345.2,426.5 344.1,426.5 '/>
  2454. </g>
  2455. <path stroke='green' d='M344.1,427.4 L344.1,426.6 L345.1,426.6 L345.1,427.4 L344.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2456. <polygon fill = 'green' points = '345.1,427.4 346.2,427.4 346.2,426.5 345.1,426.5 '/>
  2457. </g>
  2458. <path stroke='green' d='M345.1,427.4 L345.1,426.6 L346.1,426.6 L346.1,427.4 L345.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2459. <polygon fill = 'green' points = '346.1,427.4 347.2,427.4 347.2,426.5 346.1,426.5 '/>
  2460. </g>
  2461. <path stroke='green' d='M346.1,427.4 L346.1,426.6 L347.1,426.6 L347.1,427.4 L346.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2462. <polygon fill = 'green' points = '347.1,427.4 348.2,427.4 348.2,426.5 347.1,426.5 '/>
  2463. </g>
  2464. <path stroke='green' d='M347.1,427.4 L347.1,426.6 L348.1,426.6 L348.1,427.4 L347.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2465. <polygon fill = 'green' points = '348.1,427.4 349.2,427.4 349.2,426.5 348.1,426.5 '/>
  2466. </g>
  2467. <path stroke='green' d='M348.1,427.4 L348.1,426.6 L349.1,426.6 L349.1,427.4 L348.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2468. <polygon fill = 'green' points = '349.1,427.4 350.2,427.4 350.2,426.5 349.1,426.5 '/>
  2469. </g>
  2470. <path stroke='green' d='M349.1,427.4 L349.1,426.6 L350.1,426.6 L350.1,427.4 L349.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2471. <polygon fill = 'green' points = '350.1,427.4 351.2,427.4 351.2,426.5 350.1,426.5 '/>
  2472. </g>
  2473. <path stroke='green' d='M350.1,427.4 L350.1,426.6 L351.1,426.6 L351.1,427.4 L350.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2474. <polygon fill = 'green' points = '351.1,427.4 352.2,427.4 352.2,426.5 351.1,426.5 '/>
  2475. </g>
  2476. <path stroke='green' d='M351.1,427.4 L351.1,426.6 L352.1,426.6 L352.1,427.4 L351.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2477. <polygon fill = 'green' points = '352.1,427.4 353.2,427.4 353.2,414.7 352.1,414.7 '/>
  2478. </g>
  2479. <path stroke='green' d='M352.1,427.4 L352.1,414.8 L353.1,414.8 L353.1,427.4 L352.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2480. <polygon fill = 'green' points = '353.1,427.4 354.2,427.4 354.2,420.2 353.1,420.2 '/>
  2481. </g>
  2482. <path stroke='green' d='M353.1,427.4 L353.1,420.3 L354.1,420.3 L354.1,427.4 L353.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2483. <polygon fill = 'green' points = '354.1,427.4 355.2,427.4 355.2,414.6 354.1,414.6 '/>
  2484. </g>
  2485. <path stroke='green' d='M354.1,427.4 L354.1,414.7 L355.1,414.7 L355.1,427.4 L354.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2486. <polygon fill = 'green' points = '355.1,427.4 356.3,427.4 356.3,401.6 355.1,401.6 '/>
  2487. </g>
  2488. <path stroke='green' d='M355.1,427.4 L355.1,401.7 L356.2,401.7 L356.2,427.4 L355.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2489. <polygon fill = 'green' points = '356.2,427.4 357.3,427.4 357.3,392.7 356.2,392.7 '/>
  2490. </g>
  2491. <path stroke='green' d='M356.2,427.4 L356.2,392.8 L357.2,392.8 L357.2,427.4 L356.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2492. <polygon fill = 'green' points = '357.2,427.4 358.3,427.4 358.3,402.0 357.2,402.0 '/>
  2493. </g>
  2494. <path stroke='green' d='M357.2,427.4 L357.2,402.1 L358.2,402.1 L358.2,427.4 L357.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2495. <polygon fill = 'green' points = '358.2,427.4 359.3,427.4 359.3,408.1 358.2,408.1 '/>
  2496. </g>
  2497. <path stroke='green' d='M358.2,427.4 L358.2,408.2 L359.2,408.2 L359.2,427.4 L358.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2498. <polygon fill = 'green' points = '359.2,427.4 360.3,427.4 360.3,426.5 359.2,426.5 '/>
  2499. </g>
  2500. <path stroke='green' d='M359.2,427.4 L359.2,426.6 L360.2,426.6 L360.2,427.4 L359.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2501. <polygon fill = 'green' points = '360.2,427.4 361.3,427.4 361.3,426.5 360.2,426.5 '/>
  2502. </g>
  2503. <path stroke='green' d='M360.2,427.4 L360.2,426.6 L361.2,426.6 L361.2,427.4 L360.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2504. <polygon fill = 'green' points = '361.2,427.4 362.3,427.4 362.3,426.5 361.2,426.5 '/>
  2505. </g>
  2506. <path stroke='green' d='M361.2,427.4 L361.2,426.6 L362.2,426.6 L362.2,427.4 L361.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2507. <polygon fill = 'green' points = '362.2,427.4 363.3,427.4 363.3,426.5 362.2,426.5 '/>
  2508. </g>
  2509. <path stroke='green' d='M362.2,427.4 L362.2,426.6 L363.2,426.6 L363.2,427.4 L362.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2510. <polygon fill = 'green' points = '363.2,427.4 364.3,427.4 364.3,426.5 363.2,426.5 '/>
  2511. </g>
  2512. <path stroke='green' d='M363.2,427.4 L363.2,426.6 L364.2,426.6 L364.2,427.4 L363.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2513. <polygon fill = 'green' points = '364.2,427.4 365.3,427.4 365.3,426.5 364.2,426.5 '/>
  2514. </g>
  2515. <path stroke='green' d='M364.2,427.4 L364.2,426.6 L365.2,426.6 L365.2,427.4 L364.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2516. <polygon fill = 'green' points = '365.2,427.4 366.3,427.4 366.3,408.6 365.2,408.6 '/>
  2517. </g>
  2518. <path stroke='green' d='M365.2,427.4 L365.2,408.7 L366.2,408.7 L366.2,427.4 L365.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2519. <polygon fill = 'green' points = '366.2,427.4 367.3,427.4 367.3,397.0 366.2,397.0 '/>
  2520. </g>
  2521. <path stroke='green' d='M366.2,427.4 L366.2,397.1 L367.2,397.1 L367.2,427.4 L366.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2522. <polygon fill = 'green' points = '367.2,427.4 368.3,427.4 368.3,411.6 367.2,411.6 '/>
  2523. </g>
  2524. <path stroke='green' d='M367.2,427.4 L367.2,411.7 L368.2,411.7 L368.2,427.4 L367.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2525. <polygon fill = 'green' points = '368.2,427.4 369.3,427.4 369.3,411.6 368.2,411.6 '/>
  2526. </g>
  2527. <path stroke='green' d='M368.2,427.4 L368.2,411.7 L369.2,411.7 L369.2,427.4 L368.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2528. <polygon fill = 'green' points = '369.2,427.4 370.3,427.4 370.3,405.7 369.2,405.7 '/>
  2529. </g>
  2530. <path stroke='green' d='M369.2,427.4 L369.2,405.8 L370.2,405.8 L370.2,427.4 L369.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2531. <polygon fill = 'green' points = '370.2,427.4 371.3,427.4 371.3,404.1 370.2,404.1 '/>
  2532. </g>
  2533. <path stroke='green' d='M370.2,427.4 L370.2,404.2 L371.2,404.2 L371.2,427.4 L370.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2534. <polygon fill = 'green' points = '371.2,427.4 372.4,427.4 372.4,426.5 371.2,426.5 '/>
  2535. </g>
  2536. <path stroke='green' d='M371.2,427.4 L371.2,426.6 L372.3,426.6 L372.3,427.4 L371.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2537. <polygon fill = 'green' points = '372.3,427.4 373.4,427.4 373.4,404.9 372.3,404.9 '/>
  2538. </g>
  2539. <path stroke='green' d='M372.3,427.4 L372.3,405.0 L373.3,405.0 L373.3,427.4 L372.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2540. <polygon fill = 'green' points = '373.3,427.4 374.4,427.4 374.4,426.4 373.3,426.4 '/>
  2541. </g>
  2542. <path stroke='green' d='M373.3,427.4 L373.3,426.5 L374.3,426.5 L374.3,427.4 L373.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2543. <polygon fill = 'green' points = '374.3,427.4 375.4,427.4 375.4,426.5 374.3,426.5 '/>
  2544. </g>
  2545. <path stroke='green' d='M374.3,427.4 L374.3,426.6 L375.3,426.6 L375.3,427.4 L374.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2546. <polygon fill = 'green' points = '375.3,427.4 376.4,427.4 376.4,426.5 375.3,426.5 '/>
  2547. </g>
  2548. <path stroke='green' d='M375.3,427.4 L375.3,426.6 L376.3,426.6 L376.3,427.4 L375.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2549. <polygon fill = 'green' points = '376.3,427.4 377.4,427.4 377.4,426.5 376.3,426.5 '/>
  2550. </g>
  2551. <path stroke='green' d='M376.3,427.4 L376.3,426.6 L377.3,426.6 L377.3,427.4 L376.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2552. <polygon fill = 'green' points = '377.3,427.4 378.4,427.4 378.4,426.5 377.3,426.5 '/>
  2553. </g>
  2554. <path stroke='green' d='M377.3,427.4 L377.3,426.6 L378.3,426.6 L378.3,427.4 L377.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2555. <polygon fill = 'green' points = '378.3,427.4 379.4,427.4 379.4,426.5 378.3,426.5 '/>
  2556. </g>
  2557. <path stroke='green' d='M378.3,427.4 L378.3,426.6 L379.3,426.6 L379.3,427.4 L378.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2558. <polygon fill = 'green' points = '379.3,427.4 380.4,427.4 380.4,426.5 379.3,426.5 '/>
  2559. </g>
  2560. <path stroke='green' d='M379.3,427.4 L379.3,426.6 L380.3,426.6 L380.3,427.4 L379.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2561. <polygon fill = 'green' points = '380.3,427.4 381.4,427.4 381.4,426.5 380.3,426.5 '/>
  2562. </g>
  2563. <path stroke='green' d='M380.3,427.4 L380.3,426.6 L381.3,426.6 L381.3,427.4 L380.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2564. <polygon fill = 'green' points = '381.3,427.4 382.4,427.4 382.4,426.5 381.3,426.5 '/>
  2565. </g>
  2566. <path stroke='green' d='M381.3,427.4 L381.3,426.6 L382.3,426.6 L382.3,427.4 L381.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2567. <polygon fill = 'green' points = '382.3,427.4 383.4,427.4 383.4,426.5 382.3,426.5 '/>
  2568. </g>
  2569. <path stroke='green' d='M382.3,427.4 L382.3,426.6 L383.3,426.6 L383.3,427.4 L382.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2570. <polygon fill = 'green' points = '383.3,427.4 384.4,427.4 384.4,426.5 383.3,426.5 '/>
  2571. </g>
  2572. <path stroke='green' d='M383.3,427.4 L383.3,426.6 L384.3,426.6 L384.3,427.4 L383.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2573. <polygon fill = 'green' points = '384.3,427.4 385.4,427.4 385.4,416.0 384.3,416.0 '/>
  2574. </g>
  2575. <path stroke='green' d='M384.3,427.4 L384.3,416.1 L385.3,416.1 L385.3,427.4 L384.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2576. <polygon fill = 'green' points = '385.3,427.4 386.4,427.4 386.4,426.5 385.3,426.5 '/>
  2577. </g>
  2578. <path stroke='green' d='M385.3,427.4 L385.3,426.6 L386.3,426.6 L386.3,427.4 L385.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2579. <polygon fill = 'green' points = '386.3,427.4 387.4,427.4 387.4,426.5 386.3,426.5 '/>
  2580. </g>
  2581. <path stroke='green' d='M386.3,427.4 L386.3,426.6 L387.3,426.6 L387.3,427.4 L386.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2582. <polygon fill = 'green' points = '387.3,427.4 388.4,427.4 388.4,426.5 387.3,426.5 '/>
  2583. </g>
  2584. <path stroke='green' d='M387.3,427.4 L387.3,426.6 L388.3,426.6 L388.3,427.4 L387.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2585. <polygon fill = 'green' points = '388.3,427.4 389.5,427.4 389.5,426.5 388.3,426.5 '/>
  2586. </g>
  2587. <path stroke='green' d='M388.3,427.4 L388.3,426.6 L389.4,426.6 L389.4,427.4 L388.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2588. <polygon fill = 'green' points = '389.4,427.4 390.5,427.4 390.5,392.8 389.4,392.8 '/>
  2589. </g>
  2590. <path stroke='green' d='M389.4,427.4 L389.4,392.9 L390.4,392.9 L390.4,427.4 L389.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2591. <polygon fill = 'green' points = '390.4,427.4 391.5,427.4 391.5,413.0 390.4,413.0 '/>
  2592. </g>
  2593. <path stroke='green' d='M390.4,427.4 L390.4,413.1 L391.4,413.1 L391.4,427.4 L390.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2594. <polygon fill = 'green' points = '391.4,427.4 392.5,427.4 392.5,426.5 391.4,426.5 '/>
  2595. </g>
  2596. <path stroke='green' d='M391.4,427.4 L391.4,426.6 L392.4,426.6 L392.4,427.4 L391.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2597. <polygon fill = 'green' points = '392.4,427.4 393.5,427.4 393.5,426.5 392.4,426.5 '/>
  2598. </g>
  2599. <path stroke='green' d='M392.4,427.4 L392.4,426.6 L393.4,426.6 L393.4,427.4 L392.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2600. <polygon fill = 'green' points = '393.4,427.4 394.5,427.4 394.5,426.5 393.4,426.5 '/>
  2601. </g>
  2602. <path stroke='green' d='M393.4,427.4 L393.4,426.6 L394.4,426.6 L394.4,427.4 L393.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2603. <polygon fill = 'green' points = '394.4,427.4 395.5,427.4 395.5,426.5 394.4,426.5 '/>
  2604. </g>
  2605. <path stroke='green' d='M394.4,427.4 L394.4,426.6 L395.4,426.6 L395.4,427.4 L394.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2606. <polygon fill = 'green' points = '395.4,427.4 396.5,427.4 396.5,426.5 395.4,426.5 '/>
  2607. </g>
  2608. <path stroke='green' d='M395.4,427.4 L395.4,426.6 L396.4,426.6 L396.4,427.4 L395.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2609. <polygon fill = 'green' points = '396.4,427.4 397.5,427.4 397.5,426.5 396.4,426.5 '/>
  2610. </g>
  2611. <path stroke='green' d='M396.4,427.4 L396.4,426.6 L397.4,426.6 L397.4,427.4 L396.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2612. <polygon fill = 'green' points = '397.4,427.4 398.5,427.4 398.5,426.5 397.4,426.5 '/>
  2613. </g>
  2614. <path stroke='green' d='M397.4,427.4 L397.4,426.6 L398.4,426.6 L398.4,427.4 L397.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2615. <polygon fill = 'green' points = '398.4,427.4 399.5,427.4 399.5,413.0 398.4,413.0 '/>
  2616. </g>
  2617. <path stroke='green' d='M398.4,427.4 L398.4,413.1 L399.4,413.1 L399.4,427.4 L398.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2618. <polygon fill = 'green' points = '399.4,427.4 400.5,427.4 400.5,388.8 399.4,388.8 '/>
  2619. </g>
  2620. <path stroke='green' d='M399.4,427.4 L399.4,388.9 L400.4,388.9 L400.4,427.4 L399.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2621. <polygon fill = 'green' points = '400.4,427.4 401.5,427.4 401.5,393.9 400.4,393.9 '/>
  2622. </g>
  2623. <path stroke='green' d='M400.4,427.4 L400.4,394.0 L401.4,394.0 L401.4,427.4 L400.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2624. <polygon fill = 'green' points = '401.4,427.4 402.5,427.4 402.5,394.6 401.4,394.6 '/>
  2625. </g>
  2626. <path stroke='green' d='M401.4,427.4 L401.4,394.7 L402.4,394.7 L402.4,427.4 L401.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2627. <polygon fill = 'green' points = '402.4,427.4 403.5,427.4 403.5,378.3 402.4,378.3 '/>
  2628. </g>
  2629. <path stroke='green' d='M402.4,427.4 L402.4,378.4 L403.4,378.4 L403.4,427.4 L402.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2630. <polygon fill = 'green' points = '403.4,427.4 404.5,427.4 404.5,426.5 403.4,426.5 '/>
  2631. </g>
  2632. <path stroke='green' d='M403.4,427.4 L403.4,426.6 L404.4,426.6 L404.4,427.4 L403.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2633. <polygon fill = 'green' points = '404.4,427.4 405.6,427.4 405.6,426.5 404.4,426.5 '/>
  2634. </g>
  2635. <path stroke='green' d='M404.4,427.4 L404.4,426.6 L405.5,426.6 L405.5,427.4 L404.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2636. <polygon fill = 'green' points = '405.5,427.4 406.6,427.4 406.6,426.5 405.5,426.5 '/>
  2637. </g>
  2638. <path stroke='green' d='M405.5,427.4 L405.5,426.6 L406.5,426.6 L406.5,427.4 L405.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2639. <polygon fill = 'green' points = '406.5,427.4 407.6,427.4 407.6,426.5 406.5,426.5 '/>
  2640. </g>
  2641. <path stroke='green' d='M406.5,427.4 L406.5,426.6 L407.5,426.6 L407.5,427.4 L406.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2642. <polygon fill = 'green' points = '407.5,427.4 408.6,427.4 408.6,426.5 407.5,426.5 '/>
  2643. </g>
  2644. <path stroke='green' d='M407.5,427.4 L407.5,426.6 L408.5,426.6 L408.5,427.4 L407.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2645. <polygon fill = 'green' points = '408.5,427.4 409.6,427.4 409.6,426.5 408.5,426.5 '/>
  2646. </g>
  2647. <path stroke='green' d='M408.5,427.4 L408.5,426.6 L409.5,426.6 L409.5,427.4 L408.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2648. <polygon fill = 'green' points = '409.5,427.4 410.6,427.4 410.6,426.5 409.5,426.5 '/>
  2649. </g>
  2650. <path stroke='green' d='M409.5,427.4 L409.5,426.6 L410.5,426.6 L410.5,427.4 L409.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2651. <polygon fill = 'green' points = '410.5,427.4 411.6,427.4 411.6,426.5 410.5,426.5 '/>
  2652. </g>
  2653. <path stroke='green' d='M410.5,427.4 L410.5,426.6 L411.5,426.6 L411.5,427.4 L410.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2654. <polygon fill = 'green' points = '411.5,427.4 412.6,427.4 412.6,408.2 411.5,408.2 '/>
  2655. </g>
  2656. <path stroke='green' d='M411.5,427.4 L411.5,408.3 L412.5,408.3 L412.5,427.4 L411.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2657. <polygon fill = 'green' points = '412.5,427.4 413.6,427.4 413.6,407.0 412.5,407.0 '/>
  2658. </g>
  2659. <path stroke='green' d='M412.5,427.4 L412.5,407.1 L413.5,407.1 L413.5,427.4 L412.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2660. <polygon fill = 'green' points = '413.5,427.4 414.6,427.4 414.6,420.1 413.5,420.1 '/>
  2661. </g>
  2662. <path stroke='green' d='M413.5,427.4 L413.5,420.2 L414.5,420.2 L414.5,427.4 L413.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2663. <polygon fill = 'green' points = '414.5,427.4 415.6,427.4 415.6,372.3 414.5,372.3 '/>
  2664. </g>
  2665. <path stroke='green' d='M414.5,427.4 L414.5,372.4 L415.5,372.4 L415.5,427.4 L414.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2666. <polygon fill = 'green' points = '415.5,427.4 416.6,427.4 416.6,371.1 415.5,371.1 '/>
  2667. </g>
  2668. <path stroke='green' d='M415.5,427.4 L415.5,371.2 L416.5,371.2 L416.5,427.4 L415.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2669. <polygon fill = 'green' points = '416.5,427.4 417.6,427.4 417.6,371.6 416.5,371.6 '/>
  2670. </g>
  2671. <path stroke='green' d='M416.5,427.4 L416.5,371.7 L417.5,371.7 L417.5,427.4 L416.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2672. <polygon fill = 'green' points = '417.5,427.4 418.6,427.4 418.6,350.9 417.5,350.9 '/>
  2673. </g>
  2674. <path stroke='green' d='M417.5,427.4 L417.5,351.0 L418.5,351.0 L418.5,427.4 L417.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2675. <polygon fill = 'green' points = '418.5,427.4 419.6,427.4 419.6,386.6 418.5,386.6 '/>
  2676. </g>
  2677. <path stroke='green' d='M418.5,427.4 L418.5,386.7 L419.5,386.7 L419.5,427.4 L418.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2678. <polygon fill = 'green' points = '419.5,427.4 420.6,427.4 420.6,356.8 419.5,356.8 '/>
  2679. </g>
  2680. <path stroke='green' d='M419.5,427.4 L419.5,356.9 L420.5,356.9 L420.5,427.4 L419.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2681. <polygon fill = 'green' points = '420.5,427.4 421.7,427.4 421.7,386.6 420.5,386.6 '/>
  2682. </g>
  2683. <path stroke='green' d='M420.5,427.4 L420.5,386.7 L421.6,386.7 L421.6,427.4 L420.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2684. <polygon fill = 'green' points = '421.6,427.4 422.7,427.4 422.7,382.0 421.6,382.0 '/>
  2685. </g>
  2686. <path stroke='green' d='M421.6,427.4 L421.6,382.1 L422.6,382.1 L422.6,427.4 L421.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2687. <polygon fill = 'green' points = '422.6,427.4 423.7,427.4 423.7,405.1 422.6,405.1 '/>
  2688. </g>
  2689. <path stroke='green' d='M422.6,427.4 L422.6,405.2 L423.6,405.2 L423.6,427.4 L422.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2690. <polygon fill = 'green' points = '423.6,427.4 424.7,427.4 424.7,410.9 423.6,410.9 '/>
  2691. </g>
  2692. <path stroke='green' d='M423.6,427.4 L423.6,411.0 L424.6,411.0 L424.6,427.4 L423.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2693. <polygon fill = 'green' points = '424.6,427.4 425.7,427.4 425.7,395.7 424.6,395.7 '/>
  2694. </g>
  2695. <path stroke='green' d='M424.6,427.4 L424.6,395.8 L425.6,395.8 L425.6,427.4 L424.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2696. <polygon fill = 'green' points = '425.6,427.4 426.7,427.4 426.7,401.0 425.6,401.0 '/>
  2697. </g>
  2698. <path stroke='green' d='M425.6,427.4 L425.6,401.1 L426.6,401.1 L426.6,427.4 L425.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2699. <polygon fill = 'green' points = '426.6,427.4 427.7,427.4 427.7,388.6 426.6,388.6 '/>
  2700. </g>
  2701. <path stroke='green' d='M426.6,427.4 L426.6,388.7 L427.6,388.7 L427.6,427.4 L426.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2702. <polygon fill = 'green' points = '427.6,427.4 428.7,427.4 428.7,381.4 427.6,381.4 '/>
  2703. </g>
  2704. <path stroke='green' d='M427.6,427.4 L427.6,381.5 L428.6,381.5 L428.6,427.4 L427.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2705. <polygon fill = 'green' points = '428.6,427.4 429.7,427.4 429.7,380.0 428.6,380.0 '/>
  2706. </g>
  2707. <path stroke='green' d='M428.6,427.4 L428.6,380.1 L429.6,380.1 L429.6,427.4 L428.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2708. <polygon fill = 'green' points = '429.6,427.4 430.7,427.4 430.7,404.6 429.6,404.6 '/>
  2709. </g>
  2710. <path stroke='green' d='M429.6,427.4 L429.6,404.7 L430.6,404.7 L430.6,427.4 L429.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2711. <polygon fill = 'green' points = '430.6,427.4 431.7,427.4 431.7,426.5 430.6,426.5 '/>
  2712. </g>
  2713. <path stroke='green' d='M430.6,427.4 L430.6,426.6 L431.6,426.6 L431.6,427.4 L430.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2714. <polygon fill = 'green' points = '431.6,427.4 432.7,427.4 432.7,426.5 431.6,426.5 '/>
  2715. </g>
  2716. <path stroke='green' d='M431.6,427.4 L431.6,426.6 L432.6,426.6 L432.6,427.4 L431.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2717. <polygon fill = 'green' points = '432.6,427.4 433.7,427.4 433.7,426.5 432.6,426.5 '/>
  2718. </g>
  2719. <path stroke='green' d='M432.6,427.4 L432.6,426.6 L433.6,426.6 L433.6,427.4 L432.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2720. <polygon fill = 'green' points = '433.6,427.4 434.7,427.4 434.7,426.5 433.6,426.5 '/>
  2721. </g>
  2722. <path stroke='green' d='M433.6,427.4 L433.6,426.6 L434.6,426.6 L434.6,427.4 L433.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2723. <polygon fill = 'green' points = '434.6,427.4 435.7,427.4 435.7,426.5 434.6,426.5 '/>
  2724. </g>
  2725. <path stroke='green' d='M434.6,427.4 L434.6,426.6 L435.6,426.6 L435.6,427.4 L434.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2726. <polygon fill = 'green' points = '435.6,427.4 436.7,427.4 436.7,426.5 435.6,426.5 '/>
  2727. </g>
  2728. <path stroke='green' d='M435.6,427.4 L435.6,426.6 L436.6,426.6 L436.6,427.4 L435.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2729. <polygon fill = 'green' points = '436.6,427.4 437.8,427.4 437.8,426.5 436.6,426.5 '/>
  2730. </g>
  2731. <path stroke='green' d='M436.6,427.4 L436.6,426.6 L437.7,426.6 L437.7,427.4 L436.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2732. <polygon fill = 'green' points = '437.7,427.4 438.8,427.4 438.8,426.5 437.7,426.5 '/>
  2733. </g>
  2734. <path stroke='green' d='M437.7,427.4 L437.7,426.6 L438.7,426.6 L438.7,427.4 L437.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2735. <polygon fill = 'green' points = '438.7,427.4 439.8,427.4 439.8,426.5 438.7,426.5 '/>
  2736. </g>
  2737. <path stroke='green' d='M438.7,427.4 L438.7,426.6 L439.7,426.6 L439.7,427.4 L438.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2738. <polygon fill = 'green' points = '439.7,427.4 440.8,427.4 440.8,412.3 439.7,412.3 '/>
  2739. </g>
  2740. <path stroke='green' d='M439.7,427.4 L439.7,412.4 L440.7,412.4 L440.7,427.4 L439.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2741. <polygon fill = 'green' points = '440.7,427.4 441.8,427.4 441.8,424.0 440.7,424.0 '/>
  2742. </g>
  2743. <path stroke='green' d='M440.7,427.4 L440.7,424.1 L441.7,424.1 L441.7,427.4 L440.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2744. <polygon fill = 'green' points = '441.7,427.4 442.8,427.4 442.8,421.3 441.7,421.3 '/>
  2745. </g>
  2746. <path stroke='green' d='M441.7,427.4 L441.7,421.4 L442.7,421.4 L442.7,427.4 L441.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2747. <polygon fill = 'green' points = '442.7,427.4 443.8,427.4 443.8,426.5 442.7,426.5 '/>
  2748. </g>
  2749. <path stroke='green' d='M442.7,427.4 L442.7,426.6 L443.7,426.6 L443.7,427.4 L442.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2750. <polygon fill = 'green' points = '443.7,427.4 444.8,427.4 444.8,424.9 443.7,424.9 '/>
  2751. </g>
  2752. <path stroke='green' d='M443.7,427.4 L443.7,425.0 L444.7,425.0 L444.7,427.4 L443.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2753. <polygon fill = 'green' points = '444.7,427.4 445.8,427.4 445.8,392.4 444.7,392.4 '/>
  2754. </g>
  2755. <path stroke='green' d='M444.7,427.4 L444.7,392.5 L445.7,392.5 L445.7,427.4 L444.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2756. <polygon fill = 'green' points = '445.7,427.4 446.8,427.4 446.8,390.7 445.7,390.7 '/>
  2757. </g>
  2758. <path stroke='green' d='M445.7,427.4 L445.7,390.8 L446.7,390.8 L446.7,427.4 L445.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2759. <polygon fill = 'green' points = '446.7,427.4 447.8,427.4 447.8,392.8 446.7,392.8 '/>
  2760. </g>
  2761. <path stroke='green' d='M446.7,427.4 L446.7,392.9 L447.7,392.9 L447.7,427.4 L446.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2762. <polygon fill = 'green' points = '447.7,427.4 448.8,427.4 448.8,396.8 447.7,396.8 '/>
  2763. </g>
  2764. <path stroke='green' d='M447.7,427.4 L447.7,396.9 L448.7,396.9 L448.7,427.4 L447.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2765. <polygon fill = 'green' points = '448.7,427.4 449.8,427.4 449.8,401.7 448.7,401.7 '/>
  2766. </g>
  2767. <path stroke='green' d='M448.7,427.4 L448.7,401.8 L449.7,401.8 L449.7,427.4 L448.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2768. <polygon fill = 'green' points = '449.7,427.4 450.8,427.4 450.8,409.5 449.7,409.5 '/>
  2769. </g>
  2770. <path stroke='green' d='M449.7,427.4 L449.7,409.6 L450.7,409.6 L450.7,427.4 L449.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2771. <polygon fill = 'green' points = '450.7,427.4 451.8,427.4 451.8,401.0 450.7,401.0 '/>
  2772. </g>
  2773. <path stroke='green' d='M450.7,427.4 L450.7,401.1 L451.7,401.1 L451.7,427.4 L450.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2774. <polygon fill = 'green' points = '451.7,427.4 452.8,427.4 452.8,386.5 451.7,386.5 '/>
  2775. </g>
  2776. <path stroke='green' d='M451.7,427.4 L451.7,386.6 L452.7,386.6 L452.7,427.4 L451.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2777. <polygon fill = 'green' points = '452.7,427.4 453.9,427.4 453.9,389.1 452.7,389.1 '/>
  2778. </g>
  2779. <path stroke='green' d='M452.7,427.4 L452.7,389.2 L453.8,389.2 L453.8,427.4 L452.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2780. <polygon fill = 'green' points = '453.8,427.4 454.9,427.4 454.9,374.7 453.8,374.7 '/>
  2781. </g>
  2782. <path stroke='green' d='M453.8,427.4 L453.8,374.8 L454.8,374.8 L454.8,427.4 L453.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2783. <polygon fill = 'green' points = '454.8,427.4 455.9,427.4 455.9,426.5 454.8,426.5 '/>
  2784. </g>
  2785. <path stroke='green' d='M454.8,427.4 L454.8,426.6 L455.8,426.6 L455.8,427.4 L454.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2786. <polygon fill = 'green' points = '455.8,427.4 456.9,427.4 456.9,426.5 455.8,426.5 '/>
  2787. </g>
  2788. <path stroke='green' d='M455.8,427.4 L455.8,426.6 L456.8,426.6 L456.8,427.4 L455.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2789. <polygon fill = 'green' points = '456.8,427.4 457.9,427.4 457.9,426.5 456.8,426.5 '/>
  2790. </g>
  2791. <path stroke='green' d='M456.8,427.4 L456.8,426.6 L457.8,426.6 L457.8,427.4 L456.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2792. <polygon fill = 'green' points = '457.8,427.4 458.9,427.4 458.9,426.5 457.8,426.5 '/>
  2793. </g>
  2794. <path stroke='green' d='M457.8,427.4 L457.8,426.6 L458.8,426.6 L458.8,427.4 L457.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2795. <polygon fill = 'green' points = '458.8,427.4 459.9,427.4 459.9,426.5 458.8,426.5 '/>
  2796. </g>
  2797. <path stroke='green' d='M458.8,427.4 L458.8,426.6 L459.8,426.6 L459.8,427.4 L458.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2798. <polygon fill = 'green' points = '459.8,427.4 460.9,427.4 460.9,426.5 459.8,426.5 '/>
  2799. </g>
  2800. <path stroke='green' d='M459.8,427.4 L459.8,426.6 L460.8,426.6 L460.8,427.4 L459.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2801. <polygon fill = 'green' points = '460.8,427.4 461.9,427.4 461.9,404.6 460.8,404.6 '/>
  2802. </g>
  2803. <path stroke='green' d='M460.8,427.4 L460.8,404.7 L461.8,404.7 L461.8,427.4 L460.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2804. <polygon fill = 'green' points = '461.8,427.4 462.9,427.4 462.9,420.1 461.8,420.1 '/>
  2805. </g>
  2806. <path stroke='green' d='M461.8,427.4 L461.8,420.2 L462.8,420.2 L462.8,427.4 L461.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2807. <polygon fill = 'green' points = '462.8,427.4 463.9,427.4 463.9,426.5 462.8,426.5 '/>
  2808. </g>
  2809. <path stroke='green' d='M462.8,427.4 L462.8,426.6 L463.8,426.6 L463.8,427.4 L462.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2810. <polygon fill = 'green' points = '463.8,427.4 464.9,427.4 464.9,412.5 463.8,412.5 '/>
  2811. </g>
  2812. <path stroke='green' d='M463.8,427.4 L463.8,412.6 L464.8,412.6 L464.8,427.4 L463.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2813. <polygon fill = 'green' points = '464.8,427.4 465.9,427.4 465.9,426.1 464.8,426.1 '/>
  2814. </g>
  2815. <path stroke='green' d='M464.8,427.4 L464.8,426.2 L465.8,426.2 L465.8,427.4 L464.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2816. <polygon fill = 'green' points = '465.8,427.4 466.9,427.4 466.9,401.6 465.8,401.6 '/>
  2817. </g>
  2818. <path stroke='green' d='M465.8,427.4 L465.8,401.7 L466.8,401.7 L466.8,427.4 L465.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2819. <polygon fill = 'green' points = '466.8,427.4 467.9,427.4 467.9,413.3 466.8,413.3 '/>
  2820. </g>
  2821. <path stroke='green' d='M466.8,427.4 L466.8,413.4 L467.8,413.4 L467.8,427.4 L466.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2822. <polygon fill = 'green' points = '467.8,427.4 468.9,427.4 468.9,426.5 467.8,426.5 '/>
  2823. </g>
  2824. <path stroke='green' d='M467.8,427.4 L467.8,426.6 L468.8,426.6 L468.8,427.4 L467.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2825. <polygon fill = 'green' points = '468.8,427.4 470.0,427.4 470.0,426.5 468.8,426.5 '/>
  2826. </g>
  2827. <path stroke='green' d='M468.8,427.4 L468.8,426.6 L469.9,426.6 L469.9,427.4 L468.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2828. <polygon fill = 'green' points = '469.9,427.4 471.0,427.4 471.0,426.5 469.9,426.5 '/>
  2829. </g>
  2830. <path stroke='green' d='M469.9,427.4 L469.9,426.6 L470.9,426.6 L470.9,427.4 L469.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2831. <polygon fill = 'green' points = '470.9,427.4 472.0,427.4 472.0,426.5 470.9,426.5 '/>
  2832. </g>
  2833. <path stroke='green' d='M470.9,427.4 L470.9,426.6 L471.9,426.6 L471.9,427.4 L470.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2834. <polygon fill = 'green' points = '471.9,427.4 473.0,427.4 473.0,426.5 471.9,426.5 '/>
  2835. </g>
  2836. <path stroke='green' d='M471.9,427.4 L471.9,426.6 L472.9,426.6 L472.9,427.4 L471.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2837. <polygon fill = 'green' points = '472.9,427.4 474.0,427.4 474.0,426.5 472.9,426.5 '/>
  2838. </g>
  2839. <path stroke='green' d='M472.9,427.4 L472.9,426.6 L473.9,426.6 L473.9,427.4 L472.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2840. <polygon fill = 'green' points = '473.9,427.4 475.0,427.4 475.0,426.5 473.9,426.5 '/>
  2841. </g>
  2842. <path stroke='green' d='M473.9,427.4 L473.9,426.6 L474.9,426.6 L474.9,427.4 L473.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2843. <polygon fill = 'green' points = '474.9,427.4 476.0,427.4 476.0,426.5 474.9,426.5 '/>
  2844. </g>
  2845. <path stroke='green' d='M474.9,427.4 L474.9,426.6 L475.9,426.6 L475.9,427.4 L474.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2846. <polygon fill = 'green' points = '475.9,427.4 477.0,427.4 477.0,426.5 475.9,426.5 '/>
  2847. </g>
  2848. <path stroke='green' d='M475.9,427.4 L475.9,426.6 L476.9,426.6 L476.9,427.4 L475.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2849. <polygon fill = 'green' points = '476.9,427.4 478.0,427.4 478.0,426.5 476.9,426.5 '/>
  2850. </g>
  2851. <path stroke='green' d='M476.9,427.4 L476.9,426.6 L477.9,426.6 L477.9,427.4 L476.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2852. <polygon fill = 'green' points = '477.9,427.4 479.0,427.4 479.0,426.5 477.9,426.5 '/>
  2853. </g>
  2854. <path stroke='green' d='M477.9,427.4 L477.9,426.6 L478.9,426.6 L478.9,427.4 L477.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2855. <polygon fill = 'green' points = '478.9,427.4 480.0,427.4 480.0,426.5 478.9,426.5 '/>
  2856. </g>
  2857. <path stroke='green' d='M478.9,427.4 L478.9,426.6 L479.9,426.6 L479.9,427.4 L478.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2858. <polygon fill = 'green' points = '479.9,427.4 481.0,427.4 481.0,426.5 479.9,426.5 '/>
  2859. </g>
  2860. <path stroke='green' d='M479.9,427.4 L479.9,426.6 L480.9,426.6 L480.9,427.4 L479.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2861. <polygon fill = 'green' points = '480.9,427.4 482.0,427.4 482.0,402.8 480.9,402.8 '/>
  2862. </g>
  2863. <path stroke='green' d='M480.9,427.4 L480.9,402.9 L481.9,402.9 L481.9,427.4 L480.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2864. <polygon fill = 'green' points = '481.9,427.4 483.0,427.4 483.0,401.0 481.9,401.0 '/>
  2865. </g>
  2866. <path stroke='green' d='M481.9,427.4 L481.9,401.1 L482.9,401.1 L482.9,427.4 L481.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2867. <polygon fill = 'green' points = '482.9,427.4 484.0,427.4 484.0,426.5 482.9,426.5 '/>
  2868. </g>
  2869. <path stroke='green' d='M482.9,427.4 L482.9,426.6 L483.9,426.6 L483.9,427.4 L482.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2870. <polygon fill = 'green' points = '483.9,427.4 485.0,427.4 485.0,421.4 483.9,421.4 '/>
  2871. </g>
  2872. <path stroke='green' d='M483.9,427.4 L483.9,421.5 L484.9,421.5 L484.9,427.4 L483.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2873. <polygon fill = 'green' points = '484.9,427.4 486.1,427.4 486.1,421.4 484.9,421.4 '/>
  2874. </g>
  2875. <path stroke='green' d='M484.9,427.4 L484.9,421.5 L486.0,421.5 L486.0,427.4 L484.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2876. <polygon fill = 'green' points = '486.0,427.4 487.1,427.4 487.1,394.8 486.0,394.8 '/>
  2877. </g>
  2878. <path stroke='green' d='M486.0,427.4 L486.0,394.9 L487.0,394.9 L487.0,427.4 L486.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2879. <polygon fill = 'green' points = '487.0,427.4 488.1,427.4 488.1,389.1 487.0,389.1 '/>
  2880. </g>
  2881. <path stroke='green' d='M487.0,427.4 L487.0,389.2 L488.0,389.2 L488.0,427.4 L487.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2882. <polygon fill = 'green' points = '488.0,427.4 489.1,427.4 489.1,377.2 488.0,377.2 '/>
  2883. </g>
  2884. <path stroke='green' d='M488.0,427.4 L488.0,377.3 L489.0,377.3 L489.0,427.4 L488.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2885. <polygon fill = 'green' points = '489.0,427.4 490.1,427.4 490.1,363.2 489.0,363.2 '/>
  2886. </g>
  2887. <path stroke='green' d='M489.0,427.4 L489.0,363.3 L490.0,363.3 L490.0,427.4 L489.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2888. <polygon fill = 'green' points = '490.0,427.4 491.1,427.4 491.1,343.5 490.0,343.5 '/>
  2889. </g>
  2890. <path stroke='green' d='M490.0,427.4 L490.0,343.6 L491.0,343.6 L491.0,427.4 L490.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2891. <polygon fill = 'green' points = '491.0,427.4 492.1,427.4 492.1,353.2 491.0,353.2 '/>
  2892. </g>
  2893. <path stroke='green' d='M491.0,427.4 L491.0,353.3 L492.0,353.3 L492.0,427.4 L491.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2894. <polygon fill = 'green' points = '492.0,427.4 493.1,427.4 493.1,376.8 492.0,376.8 '/>
  2895. </g>
  2896. <path stroke='green' d='M492.0,427.4 L492.0,376.9 L493.0,376.9 L493.0,427.4 L492.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2897. <polygon fill = 'green' points = '493.0,427.4 494.1,427.4 494.1,426.5 493.0,426.5 '/>
  2898. </g>
  2899. <path stroke='green' d='M493.0,427.4 L493.0,426.6 L494.0,426.6 L494.0,427.4 L493.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2900. <polygon fill = 'green' points = '494.0,427.4 495.1,427.4 495.1,398.9 494.0,398.9 '/>
  2901. </g>
  2902. <path stroke='green' d='M494.0,427.4 L494.0,399.0 L495.0,399.0 L495.0,427.4 L494.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2903. <polygon fill = 'green' points = '495.0,427.4 496.1,427.4 496.1,419.9 495.0,419.9 '/>
  2904. </g>
  2905. <path stroke='green' d='M495.0,427.4 L495.0,420.0 L496.0,420.0 L496.0,427.4 L495.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2906. <polygon fill = 'green' points = '496.0,427.4 497.1,427.4 497.1,426.5 496.0,426.5 '/>
  2907. </g>
  2908. <path stroke='green' d='M496.0,427.4 L496.0,426.6 L497.0,426.6 L497.0,427.4 L496.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2909. <polygon fill = 'green' points = '497.0,427.4 498.1,427.4 498.1,426.5 497.0,426.5 '/>
  2910. </g>
  2911. <path stroke='green' d='M497.0,427.4 L497.0,426.6 L498.0,426.6 L498.0,427.4 L497.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2912. <polygon fill = 'green' points = '498.0,427.4 499.1,427.4 499.1,426.5 498.0,426.5 '/>
  2913. </g>
  2914. <path stroke='green' d='M498.0,427.4 L498.0,426.6 L499.0,426.6 L499.0,427.4 L498.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2915. <polygon fill = 'green' points = '499.0,427.4 500.1,427.4 500.1,426.5 499.0,426.5 '/>
  2916. </g>
  2917. <path stroke='green' d='M499.0,427.4 L499.0,426.6 L500.0,426.6 L500.0,427.4 L499.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2918. <polygon fill = 'green' points = '500.0,427.4 501.1,427.4 501.1,426.5 500.0,426.5 '/>
  2919. </g>
  2920. <path stroke='green' d='M500.0,427.4 L500.0,426.6 L501.0,426.6 L501.0,427.4 L500.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2921. <polygon fill = 'green' points = '501.0,427.4 502.2,427.4 502.2,426.5 501.0,426.5 '/>
  2922. </g>
  2923. <path stroke='green' d='M501.0,427.4 L501.0,426.6 L502.1,426.6 L502.1,427.4 L501.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2924. <polygon fill = 'green' points = '502.1,427.4 503.2,427.4 503.2,426.5 502.1,426.5 '/>
  2925. </g>
  2926. <path stroke='green' d='M502.1,427.4 L502.1,426.6 L503.1,426.6 L503.1,427.4 L502.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2927. <polygon fill = 'green' points = '503.1,427.4 504.2,427.4 504.2,426.5 503.1,426.5 '/>
  2928. </g>
  2929. <path stroke='green' d='M503.1,427.4 L503.1,426.6 L504.1,426.6 L504.1,427.4 L503.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2930. <polygon fill = 'green' points = '504.1,427.4 505.2,427.4 505.2,426.5 504.1,426.5 '/>
  2931. </g>
  2932. <path stroke='green' d='M504.1,427.4 L504.1,426.6 L505.1,426.6 L505.1,427.4 L504.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2933. <polygon fill = 'green' points = '505.1,427.4 506.2,427.4 506.2,426.5 505.1,426.5 '/>
  2934. </g>
  2935. <path stroke='green' d='M505.1,427.4 L505.1,426.6 L506.1,426.6 L506.1,427.4 L505.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2936. <polygon fill = 'green' points = '506.1,427.4 507.2,427.4 507.2,421.6 506.1,421.6 '/>
  2937. </g>
  2938. <path stroke='green' d='M506.1,427.4 L506.1,421.7 L507.1,421.7 L507.1,427.4 L506.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2939. <polygon fill = 'green' points = '507.1,427.4 508.2,427.4 508.2,394.0 507.1,394.0 '/>
  2940. </g>
  2941. <path stroke='green' d='M507.1,427.4 L507.1,394.1 L508.1,394.1 L508.1,427.4 L507.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2942. <polygon fill = 'green' points = '508.1,427.4 509.2,427.4 509.2,400.9 508.1,400.9 '/>
  2943. </g>
  2944. <path stroke='green' d='M508.1,427.4 L508.1,401.0 L509.1,401.0 L509.1,427.4 L508.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2945. <polygon fill = 'green' points = '509.1,427.4 510.2,427.4 510.2,383.3 509.1,383.3 '/>
  2946. </g>
  2947. <path stroke='green' d='M509.1,427.4 L509.1,383.4 L510.1,383.4 L510.1,427.4 L509.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2948. <polygon fill = 'green' points = '510.1,427.4 511.2,427.4 511.2,372.7 510.1,372.7 '/>
  2949. </g>
  2950. <path stroke='green' d='M510.1,427.4 L510.1,372.8 L511.1,372.8 L511.1,427.4 L510.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2951. <polygon fill = 'green' points = '511.1,427.4 512.2,427.4 512.2,426.5 511.1,426.5 '/>
  2952. </g>
  2953. <path stroke='green' d='M511.1,427.4 L511.1,426.6 L512.1,426.6 L512.1,427.4 L511.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2954. <polygon fill = 'green' points = '512.1,427.4 513.2,427.4 513.2,426.5 512.1,426.5 '/>
  2955. </g>
  2956. <path stroke='green' d='M512.1,427.4 L512.1,426.6 L513.1,426.6 L513.1,427.4 L512.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2957. <polygon fill = 'green' points = '513.1,427.4 514.2,427.4 514.2,426.5 513.1,426.5 '/>
  2958. </g>
  2959. <path stroke='green' d='M513.1,427.4 L513.1,426.6 L514.1,426.6 L514.1,427.4 L513.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2960. <polygon fill = 'green' points = '514.1,427.4 515.2,427.4 515.2,426.5 514.1,426.5 '/>
  2961. </g>
  2962. <path stroke='green' d='M514.1,427.4 L514.1,426.6 L515.1,426.6 L515.1,427.4 L514.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2963. <polygon fill = 'green' points = '515.1,427.4 516.2,427.4 516.2,426.5 515.1,426.5 '/>
  2964. </g>
  2965. <path stroke='green' d='M515.1,427.4 L515.1,426.6 L516.1,426.6 L516.1,427.4 L515.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2966. <polygon fill = 'green' points = '516.1,427.4 517.2,427.4 517.2,426.5 516.1,426.5 '/>
  2967. </g>
  2968. <path stroke='green' d='M516.1,427.4 L516.1,426.6 L517.1,426.6 L517.1,427.4 L516.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2969. <polygon fill = 'green' points = '517.1,427.4 518.2,427.4 518.2,426.5 517.1,426.5 '/>
  2970. </g>
  2971. <path stroke='green' d='M517.1,427.4 L517.1,426.6 L518.1,426.6 L518.1,427.4 L517.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2972. <polygon fill = 'green' points = '518.1,427.4 519.3,427.4 519.3,426.5 518.1,426.5 '/>
  2973. </g>
  2974. <path stroke='green' d='M518.1,427.4 L518.1,426.6 L519.2,426.6 L519.2,427.4 L518.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2975. <polygon fill = 'green' points = '519.2,427.4 520.3,427.4 520.3,423.1 519.2,423.1 '/>
  2976. </g>
  2977. <path stroke='green' d='M519.2,427.4 L519.2,423.2 L520.2,423.2 L520.2,427.4 L519.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2978. <polygon fill = 'green' points = '520.2,427.4 521.3,427.4 521.3,426.5 520.2,426.5 '/>
  2979. </g>
  2980. <path stroke='green' d='M520.2,427.4 L520.2,426.6 L521.2,426.6 L521.2,427.4 L520.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2981. <polygon fill = 'green' points = '521.2,427.4 522.3,427.4 522.3,426.5 521.2,426.5 '/>
  2982. </g>
  2983. <path stroke='green' d='M521.2,427.4 L521.2,426.6 L522.2,426.6 L522.2,427.4 L521.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2984. <polygon fill = 'green' points = '522.2,427.4 523.3,427.4 523.3,426.5 522.2,426.5 '/>
  2985. </g>
  2986. <path stroke='green' d='M522.2,427.4 L522.2,426.6 L523.2,426.6 L523.2,427.4 L522.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2987. <polygon fill = 'green' points = '523.2,427.4 524.3,427.4 524.3,426.5 523.2,426.5 '/>
  2988. </g>
  2989. <path stroke='green' d='M523.2,427.4 L523.2,426.6 L524.2,426.6 L524.2,427.4 L523.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2990. <polygon fill = 'green' points = '524.2,427.4 525.3,427.4 525.3,426.5 524.2,426.5 '/>
  2991. </g>
  2992. <path stroke='green' d='M524.2,427.4 L524.2,426.6 L525.2,426.6 L525.2,427.4 L524.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2993. <polygon fill = 'green' points = '525.2,427.4 526.3,427.4 526.3,426.5 525.2,426.5 '/>
  2994. </g>
  2995. <path stroke='green' d='M525.2,427.4 L525.2,426.6 L526.2,426.6 L526.2,427.4 L525.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2996. <polygon fill = 'green' points = '526.2,427.4 527.3,427.4 527.3,426.5 526.2,426.5 '/>
  2997. </g>
  2998. <path stroke='green' d='M526.2,427.4 L526.2,426.6 L527.2,426.6 L527.2,427.4 L526.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  2999. <polygon fill = 'green' points = '527.2,427.4 528.3,427.4 528.3,426.5 527.2,426.5 '/>
  3000. </g>
  3001. <path stroke='green' d='M527.2,427.4 L527.2,426.6 L528.2,426.6 L528.2,427.4 L527.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3002. <polygon fill = 'green' points = '528.2,427.4 529.3,427.4 529.3,426.5 528.2,426.5 '/>
  3003. </g>
  3004. <path stroke='green' d='M528.2,427.4 L528.2,426.6 L529.2,426.6 L529.2,427.4 L528.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3005. <polygon fill = 'green' points = '529.2,427.4 530.3,427.4 530.3,426.5 529.2,426.5 '/>
  3006. </g>
  3007. <path stroke='green' d='M529.2,427.4 L529.2,426.6 L530.2,426.6 L530.2,427.4 L529.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3008. <polygon fill = 'green' points = '530.2,427.4 531.3,427.4 531.3,426.5 530.2,426.5 '/>
  3009. </g>
  3010. <path stroke='green' d='M530.2,427.4 L530.2,426.6 L531.2,426.6 L531.2,427.4 L530.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3011. <polygon fill = 'green' points = '531.2,427.4 532.3,427.4 532.3,402.9 531.2,402.9 '/>
  3012. </g>
  3013. <path stroke='green' d='M531.2,427.4 L531.2,403.0 L532.2,403.0 L532.2,427.4 L531.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3014. <polygon fill = 'green' points = '532.2,427.4 533.3,427.4 533.3,387.7 532.2,387.7 '/>
  3015. </g>
  3016. <path stroke='green' d='M532.2,427.4 L532.2,387.8 L533.2,387.8 L533.2,427.4 L532.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3017. <polygon fill = 'green' points = '533.2,427.4 534.3,427.4 534.3,406.3 533.2,406.3 '/>
  3018. </g>
  3019. <path stroke='green' d='M533.2,427.4 L533.2,406.4 L534.2,406.4 L534.2,427.4 L533.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3020. <polygon fill = 'green' points = '534.2,427.4 535.4,427.4 535.4,380.9 534.2,380.9 '/>
  3021. </g>
  3022. <path stroke='green' d='M534.2,427.4 L534.2,381.0 L535.3,381.0 L535.3,427.4 L534.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3023. <polygon fill = 'green' points = '535.3,427.4 536.4,427.4 536.4,387.2 535.3,387.2 '/>
  3024. </g>
  3025. <path stroke='green' d='M535.3,427.4 L535.3,387.3 L536.3,387.3 L536.3,427.4 L535.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3026. <polygon fill = 'green' points = '536.3,427.4 537.4,427.4 537.4,400.6 536.3,400.6 '/>
  3027. </g>
  3028. <path stroke='green' d='M536.3,427.4 L536.3,400.7 L537.3,400.7 L537.3,427.4 L536.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3029. <polygon fill = 'green' points = '537.3,427.4 538.4,427.4 538.4,414.1 537.3,414.1 '/>
  3030. </g>
  3031. <path stroke='green' d='M537.3,427.4 L537.3,414.2 L538.3,414.2 L538.3,427.4 L537.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3032. <polygon fill = 'green' points = '538.3,427.4 539.4,427.4 539.4,425.7 538.3,425.7 '/>
  3033. </g>
  3034. <path stroke='green' d='M538.3,427.4 L538.3,425.8 L539.3,425.8 L539.3,427.4 L538.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3035. <polygon fill = 'green' points = '539.3,427.4 540.4,427.4 540.4,426.5 539.3,426.5 '/>
  3036. </g>
  3037. <path stroke='green' d='M539.3,427.4 L539.3,426.6 L540.3,426.6 L540.3,427.4 L539.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3038. <polygon fill = 'green' points = '540.3,427.4 541.4,427.4 541.4,426.5 540.3,426.5 '/>
  3039. </g>
  3040. <path stroke='green' d='M540.3,427.4 L540.3,426.6 L541.3,426.6 L541.3,427.4 L540.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3041. <polygon fill = 'green' points = '541.3,427.4 542.4,427.4 542.4,426.5 541.3,426.5 '/>
  3042. </g>
  3043. <path stroke='green' d='M541.3,427.4 L541.3,426.6 L542.3,426.6 L542.3,427.4 L541.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3044. <polygon fill = 'green' points = '542.3,427.4 543.4,427.4 543.4,426.5 542.3,426.5 '/>
  3045. </g>
  3046. <path stroke='green' d='M542.3,427.4 L542.3,426.6 L543.3,426.6 L543.3,427.4 L542.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3047. <polygon fill = 'green' points = '543.3,427.4 544.4,427.4 544.4,426.5 543.3,426.5 '/>
  3048. </g>
  3049. <path stroke='green' d='M543.3,427.4 L543.3,426.6 L544.3,426.6 L544.3,427.4 L543.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3050. <polygon fill = 'green' points = '544.3,427.4 545.4,427.4 545.4,426.5 544.3,426.5 '/>
  3051. </g>
  3052. <path stroke='green' d='M544.3,427.4 L544.3,426.6 L545.3,426.6 L545.3,427.4 L544.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3053. <polygon fill = 'green' points = '545.3,427.4 546.4,427.4 546.4,426.5 545.3,426.5 '/>
  3054. </g>
  3055. <path stroke='green' d='M545.3,427.4 L545.3,426.6 L546.3,426.6 L546.3,427.4 L545.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3056. <polygon fill = 'green' points = '546.3,427.4 547.4,427.4 547.4,426.5 546.3,426.5 '/>
  3057. </g>
  3058. <path stroke='green' d='M546.3,427.4 L546.3,426.6 L547.3,426.6 L547.3,427.4 L546.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3059. <polygon fill = 'green' points = '547.3,427.4 548.4,427.4 548.4,426.5 547.3,426.5 '/>
  3060. </g>
  3061. <path stroke='green' d='M547.3,427.4 L547.3,426.6 L548.3,426.6 L548.3,427.4 L547.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3062. <polygon fill = 'green' points = '548.3,427.4 549.4,427.4 549.4,426.5 548.3,426.5 '/>
  3063. </g>
  3064. <path stroke='green' d='M548.3,427.4 L548.3,426.6 L549.3,426.6 L549.3,427.4 L548.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3065. <polygon fill = 'green' points = '549.3,427.4 550.4,427.4 550.4,426.5 549.3,426.5 '/>
  3066. </g>
  3067. <path stroke='green' d='M549.3,427.4 L549.3,426.6 L550.3,426.6 L550.3,427.4 L549.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3068. <polygon fill = 'green' points = '550.3,427.4 551.5,427.4 551.5,426.5 550.3,426.5 '/>
  3069. </g>
  3070. <path stroke='green' d='M550.3,427.4 L550.3,426.6 L551.4,426.6 L551.4,427.4 L550.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3071. <polygon fill = 'green' points = '551.4,427.4 552.5,427.4 552.5,426.5 551.4,426.5 '/>
  3072. </g>
  3073. <path stroke='green' d='M551.4,427.4 L551.4,426.6 L552.4,426.6 L552.4,427.4 L551.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3074. <polygon fill = 'green' points = '552.4,427.4 553.5,427.4 553.5,415.0 552.4,415.0 '/>
  3075. </g>
  3076. <path stroke='green' d='M552.4,427.4 L552.4,415.1 L553.4,415.1 L553.4,427.4 L552.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3077. <polygon fill = 'green' points = '553.4,427.4 554.5,427.4 554.5,410.8 553.4,410.8 '/>
  3078. </g>
  3079. <path stroke='green' d='M553.4,427.4 L553.4,410.9 L554.4,410.9 L554.4,427.4 L553.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3080. <polygon fill = 'green' points = '554.4,427.4 555.5,427.4 555.5,426.5 554.4,426.5 '/>
  3081. </g>
  3082. <path stroke='green' d='M554.4,427.4 L554.4,426.6 L555.4,426.6 L555.4,427.4 L554.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3083. <polygon fill = 'green' points = '555.4,427.4 556.5,427.4 556.5,426.5 555.4,426.5 '/>
  3084. </g>
  3085. <path stroke='green' d='M555.4,427.4 L555.4,426.6 L556.4,426.6 L556.4,427.4 L555.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3086. <polygon fill = 'green' points = '556.4,427.4 557.5,427.4 557.5,423.1 556.4,423.1 '/>
  3087. </g>
  3088. <path stroke='green' d='M556.4,427.4 L556.4,423.2 L557.4,423.2 L557.4,427.4 L556.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3089. <polygon fill = 'green' points = '557.4,427.4 558.5,427.4 558.5,406.6 557.4,406.6 '/>
  3090. </g>
  3091. <path stroke='green' d='M557.4,427.4 L557.4,406.7 L558.4,406.7 L558.4,427.4 L557.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3092. <polygon fill = 'green' points = '558.4,427.4 559.5,427.4 559.5,416.1 558.4,416.1 '/>
  3093. </g>
  3094. <path stroke='green' d='M558.4,427.4 L558.4,416.2 L559.4,416.2 L559.4,427.4 L558.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3095. <polygon fill = 'green' points = '559.4,427.4 560.5,427.4 560.5,417.7 559.4,417.7 '/>
  3096. </g>
  3097. <path stroke='green' d='M559.4,427.4 L559.4,417.8 L560.4,417.8 L560.4,427.4 L559.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3098. <polygon fill = 'green' points = '560.4,427.4 561.5,427.4 561.5,426.5 560.4,426.5 '/>
  3099. </g>
  3100. <path stroke='green' d='M560.4,427.4 L560.4,426.6 L561.4,426.6 L561.4,427.4 L560.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3101. <polygon fill = 'green' points = '561.4,427.4 562.5,427.4 562.5,418.4 561.4,418.4 '/>
  3102. </g>
  3103. <path stroke='green' d='M561.4,427.4 L561.4,418.5 L562.4,418.5 L562.4,427.4 L561.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3104. <polygon fill = 'green' points = '562.4,427.4 563.5,427.4 563.5,405.9 562.4,405.9 '/>
  3105. </g>
  3106. <path stroke='green' d='M562.4,427.4 L562.4,406.0 L563.4,406.0 L563.4,427.4 L562.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3107. <polygon fill = 'green' points = '563.4,427.4 564.5,427.4 564.5,426.5 563.4,426.5 '/>
  3108. </g>
  3109. <path stroke='green' d='M563.4,427.4 L563.4,426.6 L564.4,426.6 L564.4,427.4 L563.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3110. <polygon fill = 'green' points = '564.4,427.4 565.5,427.4 565.5,426.5 564.4,426.5 '/>
  3111. </g>
  3112. <path stroke='green' d='M564.4,427.4 L564.4,426.6 L565.4,426.6 L565.4,427.4 L564.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3113. <polygon fill = 'green' points = '565.4,427.4 566.5,427.4 566.5,426.5 565.4,426.5 '/>
  3114. </g>
  3115. <path stroke='green' d='M565.4,427.4 L565.4,426.6 L566.4,426.6 L566.4,427.4 L565.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3116. <polygon fill = 'green' points = '566.4,427.4 567.6,427.4 567.6,419.7 566.4,419.7 '/>
  3117. </g>
  3118. <path stroke='green' d='M566.4,427.4 L566.4,419.8 L567.5,419.8 L567.5,427.4 L566.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3119. <polygon fill = 'green' points = '567.5,427.4 568.6,427.4 568.6,418.2 567.5,418.2 '/>
  3120. </g>
  3121. <path stroke='green' d='M567.5,427.4 L567.5,418.3 L568.5,418.3 L568.5,427.4 L567.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3122. <polygon fill = 'green' points = '568.5,427.4 569.6,427.4 569.6,398.7 568.5,398.7 '/>
  3123. </g>
  3124. <path stroke='green' d='M568.5,427.4 L568.5,398.8 L569.5,398.8 L569.5,427.4 L568.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3125. <polygon fill = 'green' points = '569.5,427.4 570.6,427.4 570.6,426.5 569.5,426.5 '/>
  3126. </g>
  3127. <path stroke='green' d='M569.5,427.4 L569.5,426.6 L570.5,426.6 L570.5,427.4 L569.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3128. <polygon fill = 'green' points = '570.5,427.4 571.6,427.4 571.6,426.5 570.5,426.5 '/>
  3129. </g>
  3130. <path stroke='green' d='M570.5,427.4 L570.5,426.6 L571.5,426.6 L571.5,427.4 L570.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3131. <polygon fill = 'green' points = '571.5,427.4 572.6,427.4 572.6,426.5 571.5,426.5 '/>
  3132. </g>
  3133. <path stroke='green' d='M571.5,427.4 L571.5,426.6 L572.5,426.6 L572.5,427.4 L571.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3134. <polygon fill = 'green' points = '572.5,427.4 573.6,427.4 573.6,426.5 572.5,426.5 '/>
  3135. </g>
  3136. <path stroke='green' d='M572.5,427.4 L572.5,426.6 L573.5,426.6 L573.5,427.4 L572.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3137. <polygon fill = 'green' points = '573.5,427.4 574.6,427.4 574.6,426.5 573.5,426.5 '/>
  3138. </g>
  3139. <path stroke='green' d='M573.5,427.4 L573.5,426.6 L574.5,426.6 L574.5,427.4 L573.5,427.4 Z '/></g>
  3140. </g>
  3141. <g id="gnuplot_plot_3" ><title>4</title>
  3142. <g fill="none" color="black" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
  3143. <g transform="translate(331.7,466.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
  3144. <text><tspan font-family="Arial" >4</tspan></text>
  3145. </g>
  3146. </g>
  3147. <g fill="none" color="black" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
  3148. <g stroke='none' shape-rendering='crispEdges'>
  3149. <polygon fill = 'blue' points = '340.0,466.5 382.2,466.5 382.2,457.5 340.0,457.5 '/>
  3150. </g>
  3151. <path stroke='blue' d='M340.0,466.5 L382.2,466.5 L382.2,457.5 L340.0,457.5 L340.0,466.5 Z '/></g>
  3152. <g fill="none" color="black" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
  3153. <g stroke='none' shape-rendering='crispEdges'>
  3154. <polygon fill = 'blue' points = '71.9,427.4 72.5,427.4 72.5,426.5 71.9,426.5 '/>
  3155. </g>
  3156. <path stroke='blue' d='M71.9,427.4 L71.9,426.6 L72.4,426.6 L72.4,427.4 L71.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3157. <polygon fill = 'blue' points = '72.4,427.4 73.5,427.4 73.5,426.5 72.4,426.5 '/>
  3158. </g>
  3159. <path stroke='blue' d='M72.4,427.4 L72.4,426.6 L73.4,426.6 L73.4,427.4 L72.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3160. <polygon fill = 'blue' points = '73.4,427.4 74.5,427.4 74.5,426.5 73.4,426.5 '/>
  3161. </g>
  3162. <path stroke='blue' d='M73.4,427.4 L73.4,426.6 L74.4,426.6 L74.4,427.4 L73.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3163. <polygon fill = 'blue' points = '74.4,427.4 75.5,427.4 75.5,426.5 74.4,426.5 '/>
  3164. </g>
  3165. <path stroke='blue' d='M74.4,427.4 L74.4,426.6 L75.4,426.6 L75.4,427.4 L74.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3166. <polygon fill = 'blue' points = '75.4,427.4 76.5,427.4 76.5,426.5 75.4,426.5 '/>
  3167. </g>
  3168. <path stroke='blue' d='M75.4,427.4 L75.4,426.6 L76.4,426.6 L76.4,427.4 L75.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3169. <polygon fill = 'blue' points = '76.4,427.4 77.5,427.4 77.5,426.5 76.4,426.5 '/>
  3170. </g>
  3171. <path stroke='blue' d='M76.4,427.4 L76.4,426.6 L77.4,426.6 L77.4,427.4 L76.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3172. <polygon fill = 'blue' points = '77.4,427.4 78.5,427.4 78.5,426.5 77.4,426.5 '/>
  3173. </g>
  3174. <path stroke='blue' d='M77.4,427.4 L77.4,426.6 L78.4,426.6 L78.4,427.4 L77.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3175. <polygon fill = 'blue' points = '78.4,427.4 79.5,427.4 79.5,426.5 78.4,426.5 '/>
  3176. </g>
  3177. <path stroke='blue' d='M78.4,427.4 L78.4,426.6 L79.4,426.6 L79.4,427.4 L78.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3178. <polygon fill = 'blue' points = '79.4,427.4 80.6,427.4 80.6,426.5 79.4,426.5 '/>
  3179. </g>
  3180. <path stroke='blue' d='M79.4,427.4 L79.4,426.6 L80.5,426.6 L80.5,427.4 L79.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3181. <polygon fill = 'blue' points = '80.5,427.4 81.6,427.4 81.6,426.4 80.5,426.4 '/>
  3182. </g>
  3183. <path stroke='blue' d='M80.5,427.4 L80.5,426.5 L81.5,426.5 L81.5,427.4 L80.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3184. <polygon fill = 'blue' points = '81.5,427.4 82.6,427.4 82.6,426.5 81.5,426.5 '/>
  3185. </g>
  3186. <path stroke='blue' d='M81.5,427.4 L81.5,426.6 L82.5,426.6 L82.5,427.4 L81.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3187. <polygon fill = 'blue' points = '82.5,427.4 83.6,427.4 83.6,426.5 82.5,426.5 '/>
  3188. </g>
  3189. <path stroke='blue' d='M82.5,427.4 L82.5,426.6 L83.5,426.6 L83.5,427.4 L82.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3190. <polygon fill = 'blue' points = '83.5,427.4 84.6,427.4 84.6,426.5 83.5,426.5 '/>
  3191. </g>
  3192. <path stroke='blue' d='M83.5,427.4 L83.5,426.6 L84.5,426.6 L84.5,427.4 L83.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3193. <polygon fill = 'blue' points = '84.5,427.4 85.6,427.4 85.6,426.5 84.5,426.5 '/>
  3194. </g>
  3195. <path stroke='blue' d='M84.5,427.4 L84.5,426.6 L85.5,426.6 L85.5,427.4 L84.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3196. <polygon fill = 'blue' points = '85.5,427.4 86.6,427.4 86.6,426.4 85.5,426.4 '/>
  3197. </g>
  3198. <path stroke='blue' d='M85.5,427.4 L85.5,426.5 L86.5,426.5 L86.5,427.4 L85.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3199. <polygon fill = 'blue' points = '86.5,427.4 87.6,427.4 87.6,401.4 86.5,401.4 '/>
  3200. </g>
  3201. <path stroke='blue' d='M86.5,427.4 L86.5,401.5 L87.5,401.5 L87.5,427.4 L86.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3202. <polygon fill = 'blue' points = '87.5,427.4 88.6,427.4 88.6,399.0 87.5,399.0 '/>
  3203. </g>
  3204. <path stroke='blue' d='M87.5,427.4 L87.5,399.1 L88.5,399.1 L88.5,427.4 L87.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3205. <polygon fill = 'blue' points = '88.5,427.4 89.6,427.4 89.6,402.8 88.5,402.8 '/>
  3206. </g>
  3207. <path stroke='blue' d='M88.5,427.4 L88.5,402.9 L89.5,402.9 L89.5,427.4 L88.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3208. <polygon fill = 'blue' points = '89.5,427.4 90.6,427.4 90.6,395.9 89.5,395.9 '/>
  3209. </g>
  3210. <path stroke='blue' d='M89.5,427.4 L89.5,396.0 L90.5,396.0 L90.5,427.4 L89.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3211. <polygon fill = 'blue' points = '90.5,427.4 91.6,427.4 91.6,388.6 90.5,388.6 '/>
  3212. </g>
  3213. <path stroke='blue' d='M90.5,427.4 L90.5,388.7 L91.5,388.7 L91.5,427.4 L90.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3214. <polygon fill = 'blue' points = '91.5,427.4 92.6,427.4 92.6,378.4 91.5,378.4 '/>
  3215. </g>
  3216. <path stroke='blue' d='M91.5,427.4 L91.5,378.5 L92.5,378.5 L92.5,427.4 L91.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3217. <polygon fill = 'blue' points = '92.5,427.4 93.6,427.4 93.6,384.3 92.5,384.3 '/>
  3218. </g>
  3219. <path stroke='blue' d='M92.5,427.4 L92.5,384.4 L93.5,384.4 L93.5,427.4 L92.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3220. <polygon fill = 'blue' points = '93.5,427.4 94.6,427.4 94.6,386.5 93.5,386.5 '/>
  3221. </g>
  3222. <path stroke='blue' d='M93.5,427.4 L93.5,386.6 L94.5,386.6 L94.5,427.4 L93.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3223. <polygon fill = 'blue' points = '94.5,427.4 95.6,427.4 95.6,426.5 94.5,426.5 '/>
  3224. </g>
  3225. <path stroke='blue' d='M94.5,427.4 L94.5,426.6 L95.5,426.6 L95.5,427.4 L94.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3226. <polygon fill = 'blue' points = '95.5,427.4 96.7,427.4 96.7,426.5 95.5,426.5 '/>
  3227. </g>
  3228. <path stroke='blue' d='M95.5,427.4 L95.5,426.6 L96.6,426.6 L96.6,427.4 L95.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3229. <polygon fill = 'blue' points = '96.6,427.4 97.7,427.4 97.7,421.7 96.6,421.7 '/>
  3230. </g>
  3231. <path stroke='blue' d='M96.6,427.4 L96.6,421.8 L97.6,421.8 L97.6,427.4 L96.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3232. <polygon fill = 'blue' points = '97.6,427.4 98.7,427.4 98.7,426.5 97.6,426.5 '/>
  3233. </g>
  3234. <path stroke='blue' d='M97.6,427.4 L97.6,426.6 L98.6,426.6 L98.6,427.4 L97.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3235. <polygon fill = 'blue' points = '98.6,427.4 99.7,427.4 99.7,426.5 98.6,426.5 '/>
  3236. </g>
  3237. <path stroke='blue' d='M98.6,427.4 L98.6,426.6 L99.6,426.6 L99.6,427.4 L98.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3238. <polygon fill = 'blue' points = '99.6,427.4 100.7,427.4 100.7,426.5 99.6,426.5 '/>
  3239. </g>
  3240. <path stroke='blue' d='M99.6,427.4 L99.6,426.6 L100.6,426.6 L100.6,427.4 L99.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3241. <polygon fill = 'blue' points = '100.6,427.4 101.7,427.4 101.7,426.5 100.6,426.5 '/>
  3242. </g>
  3243. <path stroke='blue' d='M100.6,427.4 L100.6,426.6 L101.6,426.6 L101.6,427.4 L100.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3244. <polygon fill = 'blue' points = '101.6,427.4 102.7,427.4 102.7,426.5 101.6,426.5 '/>
  3245. </g>
  3246. <path stroke='blue' d='M101.6,427.4 L101.6,426.6 L102.6,426.6 L102.6,427.4 L101.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3247. <polygon fill = 'blue' points = '102.6,427.4 103.7,427.4 103.7,426.5 102.6,426.5 '/>
  3248. </g>
  3249. <path stroke='blue' d='M102.6,427.4 L102.6,426.6 L103.6,426.6 L103.6,427.4 L102.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3250. <polygon fill = 'blue' points = '103.6,427.4 104.7,427.4 104.7,426.5 103.6,426.5 '/>
  3251. </g>
  3252. <path stroke='blue' d='M103.6,427.4 L103.6,426.6 L104.6,426.6 L104.6,427.4 L103.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3253. <polygon fill = 'blue' points = '104.6,427.4 105.7,427.4 105.7,426.5 104.6,426.5 '/>
  3254. </g>
  3255. <path stroke='blue' d='M104.6,427.4 L104.6,426.6 L105.6,426.6 L105.6,427.4 L104.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3256. <polygon fill = 'blue' points = '105.6,427.4 106.7,427.4 106.7,426.5 105.6,426.5 '/>
  3257. </g>
  3258. <path stroke='blue' d='M105.6,427.4 L105.6,426.6 L106.6,426.6 L106.6,427.4 L105.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3259. <polygon fill = 'blue' points = '106.6,427.4 107.7,427.4 107.7,426.5 106.6,426.5 '/>
  3260. </g>
  3261. <path stroke='blue' d='M106.6,427.4 L106.6,426.6 L107.6,426.6 L107.6,427.4 L106.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3262. <polygon fill = 'blue' points = '107.6,427.4 108.7,427.4 108.7,426.4 107.6,426.4 '/>
  3263. </g>
  3264. <path stroke='blue' d='M107.6,427.4 L107.6,426.5 L108.6,426.5 L108.6,427.4 L107.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3265. <polygon fill = 'blue' points = '108.6,427.4 109.7,427.4 109.7,426.5 108.6,426.5 '/>
  3266. </g>
  3267. <path stroke='blue' d='M108.6,427.4 L108.6,426.6 L109.6,426.6 L109.6,427.4 L108.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3268. <polygon fill = 'blue' points = '109.6,427.4 110.7,427.4 110.7,426.5 109.6,426.5 '/>
  3269. </g>
  3270. <path stroke='blue' d='M109.6,427.4 L109.6,426.6 L110.6,426.6 L110.6,427.4 L109.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3271. <polygon fill = 'blue' points = '110.6,427.4 111.7,427.4 111.7,426.5 110.6,426.5 '/>
  3272. </g>
  3273. <path stroke='blue' d='M110.6,427.4 L110.6,426.6 L111.6,426.6 L111.6,427.4 L110.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3274. <polygon fill = 'blue' points = '111.6,427.4 112.8,427.4 112.8,426.5 111.6,426.5 '/>
  3275. </g>
  3276. <path stroke='blue' d='M111.6,427.4 L111.6,426.6 L112.7,426.6 L112.7,427.4 L111.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3277. <polygon fill = 'blue' points = '112.7,427.4 113.8,427.4 113.8,426.5 112.7,426.5 '/>
  3278. </g>
  3279. <path stroke='blue' d='M112.7,427.4 L112.7,426.6 L113.7,426.6 L113.7,427.4 L112.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3280. <polygon fill = 'blue' points = '113.7,427.4 114.8,427.4 114.8,426.5 113.7,426.5 '/>
  3281. </g>
  3282. <path stroke='blue' d='M113.7,427.4 L113.7,426.6 L114.7,426.6 L114.7,427.4 L113.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3283. <polygon fill = 'blue' points = '114.7,427.4 115.8,427.4 115.8,426.5 114.7,426.5 '/>
  3284. </g>
  3285. <path stroke='blue' d='M114.7,427.4 L114.7,426.6 L115.7,426.6 L115.7,427.4 L114.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3286. <polygon fill = 'blue' points = '115.7,427.4 116.8,427.4 116.8,426.5 115.7,426.5 '/>
  3287. </g>
  3288. <path stroke='blue' d='M115.7,427.4 L115.7,426.6 L116.7,426.6 L116.7,427.4 L115.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3289. <polygon fill = 'blue' points = '116.7,427.4 117.8,427.4 117.8,425.8 116.7,425.8 '/>
  3290. </g>
  3291. <path stroke='blue' d='M116.7,427.4 L116.7,425.9 L117.7,425.9 L117.7,427.4 L116.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3292. <polygon fill = 'blue' points = '117.7,427.4 118.8,427.4 118.8,426.5 117.7,426.5 '/>
  3293. </g>
  3294. <path stroke='blue' d='M117.7,427.4 L117.7,426.6 L118.7,426.6 L118.7,427.4 L117.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3295. <polygon fill = 'blue' points = '118.7,427.4 119.8,427.4 119.8,426.5 118.7,426.5 '/>
  3296. </g>
  3297. <path stroke='blue' d='M118.7,427.4 L118.7,426.6 L119.7,426.6 L119.7,427.4 L118.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3298. <polygon fill = 'blue' points = '119.7,427.4 120.8,427.4 120.8,426.5 119.7,426.5 '/>
  3299. </g>
  3300. <path stroke='blue' d='M119.7,427.4 L119.7,426.6 L120.7,426.6 L120.7,427.4 L119.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3301. <polygon fill = 'blue' points = '120.7,427.4 121.8,427.4 121.8,426.5 120.7,426.5 '/>
  3302. </g>
  3303. <path stroke='blue' d='M120.7,427.4 L120.7,426.6 L121.7,426.6 L121.7,427.4 L120.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3304. <polygon fill = 'blue' points = '121.7,427.4 122.8,427.4 122.8,426.5 121.7,426.5 '/>
  3305. </g>
  3306. <path stroke='blue' d='M121.7,427.4 L121.7,426.6 L122.7,426.6 L122.7,427.4 L121.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3307. <polygon fill = 'blue' points = '122.7,427.4 123.8,427.4 123.8,426.5 122.7,426.5 '/>
  3308. </g>
  3309. <path stroke='blue' d='M122.7,427.4 L122.7,426.6 L123.7,426.6 L123.7,427.4 L122.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3310. <polygon fill = 'blue' points = '123.7,427.4 124.8,427.4 124.8,426.5 123.7,426.5 '/>
  3311. </g>
  3312. <path stroke='blue' d='M123.7,427.4 L123.7,426.6 L124.7,426.6 L124.7,427.4 L123.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3313. <polygon fill = 'blue' points = '124.7,427.4 125.8,427.4 125.8,426.5 124.7,426.5 '/>
  3314. </g>
  3315. <path stroke='blue' d='M124.7,427.4 L124.7,426.6 L125.7,426.6 L125.7,427.4 L124.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3316. <polygon fill = 'blue' points = '125.7,427.4 126.8,427.4 126.8,409.0 125.7,409.0 '/>
  3317. </g>
  3318. <path stroke='blue' d='M125.7,427.4 L125.7,409.1 L126.7,409.1 L126.7,427.4 L125.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3319. <polygon fill = 'blue' points = '126.7,427.4 127.8,427.4 127.8,426.5 126.7,426.5 '/>
  3320. </g>
  3321. <path stroke='blue' d='M126.7,427.4 L126.7,426.6 L127.7,426.6 L127.7,427.4 L126.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3322. <polygon fill = 'blue' points = '127.7,427.4 128.9,427.4 128.9,426.5 127.7,426.5 '/>
  3323. </g>
  3324. <path stroke='blue' d='M127.7,427.4 L127.7,426.6 L128.8,426.6 L128.8,427.4 L127.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3325. <polygon fill = 'blue' points = '128.8,427.4 129.9,427.4 129.9,426.5 128.8,426.5 '/>
  3326. </g>
  3327. <path stroke='blue' d='M128.8,427.4 L128.8,426.6 L129.8,426.6 L129.8,427.4 L128.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3328. <polygon fill = 'blue' points = '129.8,427.4 130.9,427.4 130.9,426.5 129.8,426.5 '/>
  3329. </g>
  3330. <path stroke='blue' d='M129.8,427.4 L129.8,426.6 L130.8,426.6 L130.8,427.4 L129.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3331. <polygon fill = 'blue' points = '130.8,427.4 131.9,427.4 131.9,426.5 130.8,426.5 '/>
  3332. </g>
  3333. <path stroke='blue' d='M130.8,427.4 L130.8,426.6 L131.8,426.6 L131.8,427.4 L130.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3334. <polygon fill = 'blue' points = '131.8,427.4 132.9,427.4 132.9,426.5 131.8,426.5 '/>
  3335. </g>
  3336. <path stroke='blue' d='M131.8,427.4 L131.8,426.6 L132.8,426.6 L132.8,427.4 L131.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3337. <polygon fill = 'blue' points = '132.8,427.4 133.9,427.4 133.9,426.5 132.8,426.5 '/>
  3338. </g>
  3339. <path stroke='blue' d='M132.8,427.4 L132.8,426.6 L133.8,426.6 L133.8,427.4 L132.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3340. <polygon fill = 'blue' points = '133.8,427.4 134.9,427.4 134.9,426.5 133.8,426.5 '/>
  3341. </g>
  3342. <path stroke='blue' d='M133.8,427.4 L133.8,426.6 L134.8,426.6 L134.8,427.4 L133.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3343. <polygon fill = 'blue' points = '134.8,427.4 135.9,427.4 135.9,426.5 134.8,426.5 '/>
  3344. </g>
  3345. <path stroke='blue' d='M134.8,427.4 L134.8,426.6 L135.8,426.6 L135.8,427.4 L134.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3346. <polygon fill = 'blue' points = '135.8,427.4 136.9,427.4 136.9,426.5 135.8,426.5 '/>
  3347. </g>
  3348. <path stroke='blue' d='M135.8,427.4 L135.8,426.6 L136.8,426.6 L136.8,427.4 L135.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3349. <polygon fill = 'blue' points = '136.8,427.4 137.9,427.4 137.9,426.5 136.8,426.5 '/>
  3350. </g>
  3351. <path stroke='blue' d='M136.8,427.4 L136.8,426.6 L137.8,426.6 L137.8,427.4 L136.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3352. <polygon fill = 'blue' points = '137.8,427.4 138.9,427.4 138.9,417.6 137.8,417.6 '/>
  3353. </g>
  3354. <path stroke='blue' d='M137.8,427.4 L137.8,417.7 L138.8,417.7 L138.8,427.4 L137.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3355. <polygon fill = 'blue' points = '138.8,427.4 139.9,427.4 139.9,399.9 138.8,399.9 '/>
  3356. </g>
  3357. <path stroke='blue' d='M138.8,427.4 L138.8,400.0 L139.8,400.0 L139.8,427.4 L138.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3358. <polygon fill = 'blue' points = '139.8,427.4 140.9,427.4 140.9,392.4 139.8,392.4 '/>
  3359. </g>
  3360. <path stroke='blue' d='M139.8,427.4 L139.8,392.5 L140.8,392.5 L140.8,427.4 L139.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3361. <polygon fill = 'blue' points = '140.8,427.4 141.9,427.4 141.9,393.2 140.8,393.2 '/>
  3362. </g>
  3363. <path stroke='blue' d='M140.8,427.4 L140.8,393.3 L141.8,393.3 L141.8,427.4 L140.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3364. <polygon fill = 'blue' points = '141.8,427.4 142.9,427.4 142.9,400.2 141.8,400.2 '/>
  3365. </g>
  3366. <path stroke='blue' d='M141.8,427.4 L141.8,400.3 L142.8,400.3 L142.8,427.4 L141.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3367. <polygon fill = 'blue' points = '142.8,427.4 143.9,427.4 143.9,388.2 142.8,388.2 '/>
  3368. </g>
  3369. <path stroke='blue' d='M142.8,427.4 L142.8,388.3 L143.8,388.3 L143.8,427.4 L142.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3370. <polygon fill = 'blue' points = '143.8,427.4 144.9,427.4 144.9,405.1 143.8,405.1 '/>
  3371. </g>
  3372. <path stroke='blue' d='M143.8,427.4 L143.8,405.2 L144.8,405.2 L144.8,427.4 L143.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3373. <polygon fill = 'blue' points = '144.8,427.4 146.0,427.4 146.0,389.5 144.8,389.5 '/>
  3374. </g>
  3375. <path stroke='blue' d='M144.8,427.4 L144.8,389.6 L145.9,389.6 L145.9,427.4 L144.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3376. <polygon fill = 'blue' points = '145.9,427.4 147.0,427.4 147.0,385.3 145.9,385.3 '/>
  3377. </g>
  3378. <path stroke='blue' d='M145.9,427.4 L145.9,385.4 L146.9,385.4 L146.9,427.4 L145.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3379. <polygon fill = 'blue' points = '146.9,427.4 148.0,427.4 148.0,366.9 146.9,366.9 '/>
  3380. </g>
  3381. <path stroke='blue' d='M146.9,427.4 L146.9,367.0 L147.9,367.0 L147.9,427.4 L146.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3382. <polygon fill = 'blue' points = '147.9,427.4 149.0,427.4 149.0,383.7 147.9,383.7 '/>
  3383. </g>
  3384. <path stroke='blue' d='M147.9,427.4 L147.9,383.8 L148.9,383.8 L148.9,427.4 L147.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3385. <polygon fill = 'blue' points = '148.9,427.4 150.0,427.4 150.0,351.3 148.9,351.3 '/>
  3386. </g>
  3387. <path stroke='blue' d='M148.9,427.4 L148.9,351.4 L149.9,351.4 L149.9,427.4 L148.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3388. <polygon fill = 'blue' points = '149.9,427.4 151.0,427.4 151.0,354.6 149.9,354.6 '/>
  3389. </g>
  3390. <path stroke='blue' d='M149.9,427.4 L149.9,354.7 L150.9,354.7 L150.9,427.4 L149.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3391. <polygon fill = 'blue' points = '150.9,427.4 152.0,427.4 152.0,367.6 150.9,367.6 '/>
  3392. </g>
  3393. <path stroke='blue' d='M150.9,427.4 L150.9,367.7 L151.9,367.7 L151.9,427.4 L150.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3394. <polygon fill = 'blue' points = '151.9,427.4 153.0,427.4 153.0,426.5 151.9,426.5 '/>
  3395. </g>
  3396. <path stroke='blue' d='M151.9,427.4 L151.9,426.6 L152.9,426.6 L152.9,427.4 L151.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3397. <polygon fill = 'blue' points = '152.9,427.4 154.0,427.4 154.0,426.5 152.9,426.5 '/>
  3398. </g>
  3399. <path stroke='blue' d='M152.9,427.4 L152.9,426.6 L153.9,426.6 L153.9,427.4 L152.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3400. <polygon fill = 'blue' points = '153.9,427.4 155.0,427.4 155.0,426.5 153.9,426.5 '/>
  3401. </g>
  3402. <path stroke='blue' d='M153.9,427.4 L153.9,426.6 L154.9,426.6 L154.9,427.4 L153.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3403. <polygon fill = 'blue' points = '154.9,427.4 156.0,427.4 156.0,426.5 154.9,426.5 '/>
  3404. </g>
  3405. <path stroke='blue' d='M154.9,427.4 L154.9,426.6 L155.9,426.6 L155.9,427.4 L154.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3406. <polygon fill = 'blue' points = '155.9,427.4 157.0,427.4 157.0,426.5 155.9,426.5 '/>
  3407. </g>
  3408. <path stroke='blue' d='M155.9,427.4 L155.9,426.6 L156.9,426.6 L156.9,427.4 L155.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3409. <polygon fill = 'blue' points = '156.9,427.4 158.0,427.4 158.0,426.5 156.9,426.5 '/>
  3410. </g>
  3411. <path stroke='blue' d='M156.9,427.4 L156.9,426.6 L157.9,426.6 L157.9,427.4 L156.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3412. <polygon fill = 'blue' points = '157.9,427.4 159.0,427.4 159.0,426.5 157.9,426.5 '/>
  3413. </g>
  3414. <path stroke='blue' d='M157.9,427.4 L157.9,426.6 L158.9,426.6 L158.9,427.4 L157.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3415. <polygon fill = 'blue' points = '158.9,427.4 160.0,427.4 160.0,426.5 158.9,426.5 '/>
  3416. </g>
  3417. <path stroke='blue' d='M158.9,427.4 L158.9,426.6 L159.9,426.6 L159.9,427.4 L158.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3418. <polygon fill = 'blue' points = '159.9,427.4 161.0,427.4 161.0,426.5 159.9,426.5 '/>
  3419. </g>
  3420. <path stroke='blue' d='M159.9,427.4 L159.9,426.6 L160.9,426.6 L160.9,427.4 L159.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3421. <polygon fill = 'blue' points = '160.9,427.4 162.1,427.4 162.1,426.5 160.9,426.5 '/>
  3422. </g>
  3423. <path stroke='blue' d='M160.9,427.4 L160.9,426.6 L162.0,426.6 L162.0,427.4 L160.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3424. <polygon fill = 'blue' points = '162.0,427.4 163.1,427.4 163.1,425.9 162.0,425.9 '/>
  3425. </g>
  3426. <path stroke='blue' d='M162.0,427.4 L162.0,426.0 L163.0,426.0 L163.0,427.4 L162.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3427. <polygon fill = 'blue' points = '163.0,427.4 164.1,427.4 164.1,426.5 163.0,426.5 '/>
  3428. </g>
  3429. <path stroke='blue' d='M163.0,427.4 L163.0,426.6 L164.0,426.6 L164.0,427.4 L163.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3430. <polygon fill = 'blue' points = '164.0,427.4 165.1,427.4 165.1,426.5 164.0,426.5 '/>
  3431. </g>
  3432. <path stroke='blue' d='M164.0,427.4 L164.0,426.6 L165.0,426.6 L165.0,427.4 L164.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3433. <polygon fill = 'blue' points = '165.0,427.4 166.1,427.4 166.1,426.5 165.0,426.5 '/>
  3434. </g>
  3435. <path stroke='blue' d='M165.0,427.4 L165.0,426.6 L166.0,426.6 L166.0,427.4 L165.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3436. <polygon fill = 'blue' points = '166.0,427.4 167.1,427.4 167.1,426.5 166.0,426.5 '/>
  3437. </g>
  3438. <path stroke='blue' d='M166.0,427.4 L166.0,426.6 L167.0,426.6 L167.0,427.4 L166.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3439. <polygon fill = 'blue' points = '167.0,427.4 168.1,427.4 168.1,426.5 167.0,426.5 '/>
  3440. </g>
  3441. <path stroke='blue' d='M167.0,427.4 L167.0,426.6 L168.0,426.6 L168.0,427.4 L167.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3442. <polygon fill = 'blue' points = '168.0,427.4 169.1,427.4 169.1,426.5 168.0,426.5 '/>
  3443. </g>
  3444. <path stroke='blue' d='M168.0,427.4 L168.0,426.6 L169.0,426.6 L169.0,427.4 L168.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3445. <polygon fill = 'blue' points = '169.0,427.4 170.1,427.4 170.1,426.5 169.0,426.5 '/>
  3446. </g>
  3447. <path stroke='blue' d='M169.0,427.4 L169.0,426.6 L170.0,426.6 L170.0,427.4 L169.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3448. <polygon fill = 'blue' points = '170.0,427.4 171.1,427.4 171.1,421.1 170.0,421.1 '/>
  3449. </g>
  3450. <path stroke='blue' d='M170.0,427.4 L170.0,421.2 L171.0,421.2 L171.0,427.4 L170.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3451. <polygon fill = 'blue' points = '171.0,427.4 172.1,427.4 172.1,424.7 171.0,424.7 '/>
  3452. </g>
  3453. <path stroke='blue' d='M171.0,427.4 L171.0,424.8 L172.0,424.8 L172.0,427.4 L171.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3454. <polygon fill = 'blue' points = '172.0,427.4 173.1,427.4 173.1,418.0 172.0,418.0 '/>
  3455. </g>
  3456. <path stroke='blue' d='M172.0,427.4 L172.0,418.1 L173.0,418.1 L173.0,427.4 L172.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3457. <polygon fill = 'blue' points = '173.0,427.4 174.1,427.4 174.1,426.1 173.0,426.1 '/>
  3458. </g>
  3459. <path stroke='blue' d='M173.0,427.4 L173.0,426.2 L174.0,426.2 L174.0,427.4 L173.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3460. <polygon fill = 'blue' points = '174.0,427.4 175.1,427.4 175.1,426.5 174.0,426.5 '/>
  3461. </g>
  3462. <path stroke='blue' d='M174.0,427.4 L174.0,426.6 L175.0,426.6 L175.0,427.4 L174.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3463. <polygon fill = 'blue' points = '175.0,427.4 176.1,427.4 176.1,426.5 175.0,426.5 '/>
  3464. </g>
  3465. <path stroke='blue' d='M175.0,427.4 L175.0,426.6 L176.0,426.6 L176.0,427.4 L175.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3466. <polygon fill = 'blue' points = '176.0,427.4 177.1,427.4 177.1,426.5 176.0,426.5 '/>
  3467. </g>
  3468. <path stroke='blue' d='M176.0,427.4 L176.0,426.6 L177.0,426.6 L177.0,427.4 L176.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3469. <polygon fill = 'blue' points = '177.0,427.4 178.2,427.4 178.2,426.5 177.0,426.5 '/>
  3470. </g>
  3471. <path stroke='blue' d='M177.0,427.4 L177.0,426.6 L178.1,426.6 L178.1,427.4 L177.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3472. <polygon fill = 'blue' points = '178.1,427.4 179.2,427.4 179.2,426.5 178.1,426.5 '/>
  3473. </g>
  3474. <path stroke='blue' d='M178.1,427.4 L178.1,426.6 L179.1,426.6 L179.1,427.4 L178.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3475. <polygon fill = 'blue' points = '179.1,427.4 180.2,427.4 180.2,426.5 179.1,426.5 '/>
  3476. </g>
  3477. <path stroke='blue' d='M179.1,427.4 L179.1,426.6 L180.1,426.6 L180.1,427.4 L179.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3478. <polygon fill = 'blue' points = '180.1,427.4 181.2,427.4 181.2,426.5 180.1,426.5 '/>
  3479. </g>
  3480. <path stroke='blue' d='M180.1,427.4 L180.1,426.6 L181.1,426.6 L181.1,427.4 L180.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3481. <polygon fill = 'blue' points = '181.1,427.4 182.2,427.4 182.2,426.5 181.1,426.5 '/>
  3482. </g>
  3483. <path stroke='blue' d='M181.1,427.4 L181.1,426.6 L182.1,426.6 L182.1,427.4 L181.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3484. <polygon fill = 'blue' points = '182.1,427.4 183.2,427.4 183.2,426.5 182.1,426.5 '/>
  3485. </g>
  3486. <path stroke='blue' d='M182.1,427.4 L182.1,426.6 L183.1,426.6 L183.1,427.4 L182.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3487. <polygon fill = 'blue' points = '183.1,427.4 184.2,427.4 184.2,426.5 183.1,426.5 '/>
  3488. </g>
  3489. <path stroke='blue' d='M183.1,427.4 L183.1,426.6 L184.1,426.6 L184.1,427.4 L183.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3490. <polygon fill = 'blue' points = '184.1,427.4 185.2,427.4 185.2,426.5 184.1,426.5 '/>
  3491. </g>
  3492. <path stroke='blue' d='M184.1,427.4 L184.1,426.6 L185.1,426.6 L185.1,427.4 L184.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3493. <polygon fill = 'blue' points = '185.1,427.4 186.2,427.4 186.2,426.5 185.1,426.5 '/>
  3494. </g>
  3495. <path stroke='blue' d='M185.1,427.4 L185.1,426.6 L186.1,426.6 L186.1,427.4 L185.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3496. <polygon fill = 'blue' points = '186.1,427.4 187.2,427.4 187.2,426.5 186.1,426.5 '/>
  3497. </g>
  3498. <path stroke='blue' d='M186.1,427.4 L186.1,426.6 L187.1,426.6 L187.1,427.4 L186.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3499. <polygon fill = 'blue' points = '187.1,427.4 188.2,427.4 188.2,426.5 187.1,426.5 '/>
  3500. </g>
  3501. <path stroke='blue' d='M187.1,427.4 L187.1,426.6 L188.1,426.6 L188.1,427.4 L187.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3502. <polygon fill = 'blue' points = '188.1,427.4 189.2,427.4 189.2,426.5 188.1,426.5 '/>
  3503. </g>
  3504. <path stroke='blue' d='M188.1,427.4 L188.1,426.6 L189.1,426.6 L189.1,427.4 L188.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3505. <polygon fill = 'blue' points = '189.1,427.4 190.2,427.4 190.2,426.5 189.1,426.5 '/>
  3506. </g>
  3507. <path stroke='blue' d='M189.1,427.4 L189.1,426.6 L190.1,426.6 L190.1,427.4 L189.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3508. <polygon fill = 'blue' points = '190.1,427.4 191.2,427.4 191.2,426.5 190.1,426.5 '/>
  3509. </g>
  3510. <path stroke='blue' d='M190.1,427.4 L190.1,426.6 L191.1,426.6 L191.1,427.4 L190.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3511. <polygon fill = 'blue' points = '191.1,427.4 192.2,427.4 192.2,419.4 191.1,419.4 '/>
  3512. </g>
  3513. <path stroke='blue' d='M191.1,427.4 L191.1,419.5 L192.1,419.5 L192.1,427.4 L191.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3514. <polygon fill = 'blue' points = '192.1,427.4 193.2,427.4 193.2,426.5 192.1,426.5 '/>
  3515. </g>
  3516. <path stroke='blue' d='M192.1,427.4 L192.1,426.6 L193.1,426.6 L193.1,427.4 L192.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3517. <polygon fill = 'blue' points = '193.1,427.4 194.3,427.4 194.3,426.5 193.1,426.5 '/>
  3518. </g>
  3519. <path stroke='blue' d='M193.1,427.4 L193.1,426.6 L194.2,426.6 L194.2,427.4 L193.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3520. <polygon fill = 'blue' points = '194.2,427.4 195.3,427.4 195.3,426.5 194.2,426.5 '/>
  3521. </g>
  3522. <path stroke='blue' d='M194.2,427.4 L194.2,426.6 L195.2,426.6 L195.2,427.4 L194.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3523. <polygon fill = 'blue' points = '195.2,427.4 196.3,427.4 196.3,426.5 195.2,426.5 '/>
  3524. </g>
  3525. <path stroke='blue' d='M195.2,427.4 L195.2,426.6 L196.2,426.6 L196.2,427.4 L195.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3526. <polygon fill = 'blue' points = '196.2,427.4 197.3,427.4 197.3,426.5 196.2,426.5 '/>
  3527. </g>
  3528. <path stroke='blue' d='M196.2,427.4 L196.2,426.6 L197.2,426.6 L197.2,427.4 L196.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3529. <polygon fill = 'blue' points = '197.2,427.4 198.3,427.4 198.3,426.5 197.2,426.5 '/>
  3530. </g>
  3531. <path stroke='blue' d='M197.2,427.4 L197.2,426.6 L198.2,426.6 L198.2,427.4 L197.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3532. <polygon fill = 'blue' points = '198.2,427.4 199.3,427.4 199.3,426.5 198.2,426.5 '/>
  3533. </g>
  3534. <path stroke='blue' d='M198.2,427.4 L198.2,426.6 L199.2,426.6 L199.2,427.4 L198.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3535. <polygon fill = 'blue' points = '199.2,427.4 200.3,427.4 200.3,426.5 199.2,426.5 '/>
  3536. </g>
  3537. <path stroke='blue' d='M199.2,427.4 L199.2,426.6 L200.2,426.6 L200.2,427.4 L199.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3538. <polygon fill = 'blue' points = '200.2,427.4 201.3,427.4 201.3,426.5 200.2,426.5 '/>
  3539. </g>
  3540. <path stroke='blue' d='M200.2,427.4 L200.2,426.6 L201.2,426.6 L201.2,427.4 L200.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3541. <polygon fill = 'blue' points = '201.2,427.4 202.3,427.4 202.3,426.5 201.2,426.5 '/>
  3542. </g>
  3543. <path stroke='blue' d='M201.2,427.4 L201.2,426.6 L202.2,426.6 L202.2,427.4 L201.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3544. <polygon fill = 'blue' points = '202.2,427.4 203.3,427.4 203.3,426.5 202.2,426.5 '/>
  3545. </g>
  3546. <path stroke='blue' d='M202.2,427.4 L202.2,426.6 L203.2,426.6 L203.2,427.4 L202.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3547. <polygon fill = 'blue' points = '203.2,427.4 204.3,427.4 204.3,426.5 203.2,426.5 '/>
  3548. </g>
  3549. <path stroke='blue' d='M203.2,427.4 L203.2,426.6 L204.2,426.6 L204.2,427.4 L203.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3550. <polygon fill = 'blue' points = '204.2,427.4 205.3,427.4 205.3,413.7 204.2,413.7 '/>
  3551. </g>
  3552. <path stroke='blue' d='M204.2,427.4 L204.2,413.8 L205.2,413.8 L205.2,427.4 L204.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3553. <polygon fill = 'blue' points = '205.2,427.4 206.3,427.4 206.3,390.8 205.2,390.8 '/>
  3554. </g>
  3555. <path stroke='blue' d='M205.2,427.4 L205.2,390.9 L206.2,390.9 L206.2,427.4 L205.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3556. <polygon fill = 'blue' points = '206.2,427.4 207.3,427.4 207.3,380.3 206.2,380.3 '/>
  3557. </g>
  3558. <path stroke='blue' d='M206.2,427.4 L206.2,380.4 L207.2,380.4 L207.2,427.4 L206.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3559. <polygon fill = 'blue' points = '207.2,427.4 208.3,427.4 208.3,425.3 207.2,425.3 '/>
  3560. </g>
  3561. <path stroke='blue' d='M207.2,427.4 L207.2,425.4 L208.2,425.4 L208.2,427.4 L207.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3562. <polygon fill = 'blue' points = '208.2,427.4 209.3,427.4 209.3,382.2 208.2,382.2 '/>
  3563. </g>
  3564. <path stroke='blue' d='M208.2,427.4 L208.2,382.3 L209.2,382.3 L209.2,427.4 L208.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3565. <polygon fill = 'blue' points = '209.2,427.4 210.4,427.4 210.4,426.5 209.2,426.5 '/>
  3566. </g>
  3567. <path stroke='blue' d='M209.2,427.4 L209.2,426.6 L210.3,426.6 L210.3,427.4 L209.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3568. <polygon fill = 'blue' points = '210.3,427.4 211.4,427.4 211.4,426.5 210.3,426.5 '/>
  3569. </g>
  3570. <path stroke='blue' d='M210.3,427.4 L210.3,426.6 L211.3,426.6 L211.3,427.4 L210.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3571. <polygon fill = 'blue' points = '211.3,427.4 212.4,427.4 212.4,426.5 211.3,426.5 '/>
  3572. </g>
  3573. <path stroke='blue' d='M211.3,427.4 L211.3,426.6 L212.3,426.6 L212.3,427.4 L211.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3574. <polygon fill = 'blue' points = '212.3,427.4 213.4,427.4 213.4,426.5 212.3,426.5 '/>
  3575. </g>
  3576. <path stroke='blue' d='M212.3,427.4 L212.3,426.6 L213.3,426.6 L213.3,427.4 L212.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3577. <polygon fill = 'blue' points = '213.3,427.4 214.4,427.4 214.4,426.5 213.3,426.5 '/>
  3578. </g>
  3579. <path stroke='blue' d='M213.3,427.4 L213.3,426.6 L214.3,426.6 L214.3,427.4 L213.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3580. <polygon fill = 'blue' points = '214.3,427.4 215.4,427.4 215.4,426.5 214.3,426.5 '/>
  3581. </g>
  3582. <path stroke='blue' d='M214.3,427.4 L214.3,426.6 L215.3,426.6 L215.3,427.4 L214.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3583. <polygon fill = 'blue' points = '215.3,427.4 216.4,427.4 216.4,426.5 215.3,426.5 '/>
  3584. </g>
  3585. <path stroke='blue' d='M215.3,427.4 L215.3,426.6 L216.3,426.6 L216.3,427.4 L215.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3586. <polygon fill = 'blue' points = '216.3,427.4 217.4,427.4 217.4,426.5 216.3,426.5 '/>
  3587. </g>
  3588. <path stroke='blue' d='M216.3,427.4 L216.3,426.6 L217.3,426.6 L217.3,427.4 L216.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3589. <polygon fill = 'blue' points = '217.3,427.4 218.4,427.4 218.4,426.5 217.3,426.5 '/>
  3590. </g>
  3591. <path stroke='blue' d='M217.3,427.4 L217.3,426.6 L218.3,426.6 L218.3,427.4 L217.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3592. <polygon fill = 'blue' points = '218.3,427.4 219.4,427.4 219.4,426.5 218.3,426.5 '/>
  3593. </g>
  3594. <path stroke='blue' d='M218.3,427.4 L218.3,426.6 L219.3,426.6 L219.3,427.4 L218.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3595. <polygon fill = 'blue' points = '219.3,427.4 220.4,427.4 220.4,426.5 219.3,426.5 '/>
  3596. </g>
  3597. <path stroke='blue' d='M219.3,427.4 L219.3,426.6 L220.3,426.6 L220.3,427.4 L219.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3598. <polygon fill = 'blue' points = '220.3,427.4 221.4,427.4 221.4,426.5 220.3,426.5 '/>
  3599. </g>
  3600. <path stroke='blue' d='M220.3,427.4 L220.3,426.6 L221.3,426.6 L221.3,427.4 L220.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3601. <polygon fill = 'blue' points = '221.3,427.4 222.4,427.4 222.4,426.5 221.3,426.5 '/>
  3602. </g>
  3603. <path stroke='blue' d='M221.3,427.4 L221.3,426.6 L222.3,426.6 L222.3,427.4 L221.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3604. <polygon fill = 'blue' points = '222.3,427.4 223.4,427.4 223.4,426.5 222.3,426.5 '/>
  3605. </g>
  3606. <path stroke='blue' d='M222.3,427.4 L222.3,426.6 L223.3,426.6 L223.3,427.4 L222.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3607. <polygon fill = 'blue' points = '223.3,427.4 224.4,427.4 224.4,414.4 223.3,414.4 '/>
  3608. </g>
  3609. <path stroke='blue' d='M223.3,427.4 L223.3,414.5 L224.3,414.5 L224.3,427.4 L223.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3610. <polygon fill = 'blue' points = '224.3,427.4 225.4,427.4 225.4,418.0 224.3,418.0 '/>
  3611. </g>
  3612. <path stroke='blue' d='M224.3,427.4 L224.3,418.1 L225.3,418.1 L225.3,427.4 L224.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3613. <polygon fill = 'blue' points = '225.3,427.4 226.5,427.4 226.5,426.5 225.3,426.5 '/>
  3614. </g>
  3615. <path stroke='blue' d='M225.3,427.4 L225.3,426.6 L226.4,426.6 L226.4,427.4 L225.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3616. <polygon fill = 'blue' points = '226.4,427.4 227.5,427.4 227.5,426.5 226.4,426.5 '/>
  3617. </g>
  3618. <path stroke='blue' d='M226.4,427.4 L226.4,426.6 L227.4,426.6 L227.4,427.4 L226.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3619. <polygon fill = 'blue' points = '227.4,427.4 228.5,427.4 228.5,426.5 227.4,426.5 '/>
  3620. </g>
  3621. <path stroke='blue' d='M227.4,427.4 L227.4,426.6 L228.4,426.6 L228.4,427.4 L227.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3622. <polygon fill = 'blue' points = '228.4,427.4 229.5,427.4 229.5,426.5 228.4,426.5 '/>
  3623. </g>
  3624. <path stroke='blue' d='M228.4,427.4 L228.4,426.6 L229.4,426.6 L229.4,427.4 L228.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3625. <polygon fill = 'blue' points = '229.4,427.4 230.5,427.4 230.5,426.5 229.4,426.5 '/>
  3626. </g>
  3627. <path stroke='blue' d='M229.4,427.4 L229.4,426.6 L230.4,426.6 L230.4,427.4 L229.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3628. <polygon fill = 'blue' points = '230.4,427.4 231.5,427.4 231.5,426.5 230.4,426.5 '/>
  3629. </g>
  3630. <path stroke='blue' d='M230.4,427.4 L230.4,426.6 L231.4,426.6 L231.4,427.4 L230.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3631. <polygon fill = 'blue' points = '231.4,427.4 232.5,427.4 232.5,426.5 231.4,426.5 '/>
  3632. </g>
  3633. <path stroke='blue' d='M231.4,427.4 L231.4,426.6 L232.4,426.6 L232.4,427.4 L231.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3634. <polygon fill = 'blue' points = '232.4,427.4 233.5,427.4 233.5,426.5 232.4,426.5 '/>
  3635. </g>
  3636. <path stroke='blue' d='M232.4,427.4 L232.4,426.6 L233.4,426.6 L233.4,427.4 L232.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3637. <polygon fill = 'blue' points = '233.4,427.4 234.5,427.4 234.5,424.5 233.4,424.5 '/>
  3638. </g>
  3639. <path stroke='blue' d='M233.4,427.4 L233.4,424.6 L234.4,424.6 L234.4,427.4 L233.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3640. <polygon fill = 'blue' points = '234.4,427.4 235.5,427.4 235.5,426.5 234.4,426.5 '/>
  3641. </g>
  3642. <path stroke='blue' d='M234.4,427.4 L234.4,426.6 L235.4,426.6 L235.4,427.4 L234.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3643. <polygon fill = 'blue' points = '235.4,427.4 236.5,427.4 236.5,400.9 235.4,400.9 '/>
  3644. </g>
  3645. <path stroke='blue' d='M235.4,427.4 L235.4,401.0 L236.4,401.0 L236.4,427.4 L235.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3646. <polygon fill = 'blue' points = '236.4,427.4 237.5,427.4 237.5,411.7 236.4,411.7 '/>
  3647. </g>
  3648. <path stroke='blue' d='M236.4,427.4 L236.4,411.8 L237.4,411.8 L237.4,427.4 L236.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3649. <polygon fill = 'blue' points = '237.4,427.4 238.5,427.4 238.5,421.2 237.4,421.2 '/>
  3650. </g>
  3651. <path stroke='blue' d='M237.4,427.4 L237.4,421.3 L238.4,421.3 L238.4,427.4 L237.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3652. <polygon fill = 'blue' points = '238.4,427.4 239.5,427.4 239.5,426.5 238.4,426.5 '/>
  3653. </g>
  3654. <path stroke='blue' d='M238.4,427.4 L238.4,426.6 L239.4,426.6 L239.4,427.4 L238.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3655. <polygon fill = 'blue' points = '239.4,427.4 240.5,427.4 240.5,426.5 239.4,426.5 '/>
  3656. </g>
  3657. <path stroke='blue' d='M239.4,427.4 L239.4,426.6 L240.4,426.6 L240.4,427.4 L239.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3658. <polygon fill = 'blue' points = '240.4,427.4 241.5,427.4 241.5,426.5 240.4,426.5 '/>
  3659. </g>
  3660. <path stroke='blue' d='M240.4,427.4 L240.4,426.6 L241.4,426.6 L241.4,427.4 L240.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3661. <polygon fill = 'blue' points = '241.4,427.4 242.6,427.4 242.6,426.5 241.4,426.5 '/>
  3662. </g>
  3663. <path stroke='blue' d='M241.4,427.4 L241.4,426.6 L242.5,426.6 L242.5,427.4 L241.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3664. <polygon fill = 'blue' points = '242.5,427.4 243.6,427.4 243.6,426.5 242.5,426.5 '/>
  3665. </g>
  3666. <path stroke='blue' d='M242.5,427.4 L242.5,426.6 L243.5,426.6 L243.5,427.4 L242.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3667. <polygon fill = 'blue' points = '243.5,427.4 244.6,427.4 244.6,426.5 243.5,426.5 '/>
  3668. </g>
  3669. <path stroke='blue' d='M243.5,427.4 L243.5,426.6 L244.5,426.6 L244.5,427.4 L243.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3670. <polygon fill = 'blue' points = '244.5,427.4 245.6,427.4 245.6,426.5 244.5,426.5 '/>
  3671. </g>
  3672. <path stroke='blue' d='M244.5,427.4 L244.5,426.6 L245.5,426.6 L245.5,427.4 L244.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3673. <polygon fill = 'blue' points = '245.5,427.4 246.6,427.4 246.6,426.5 245.5,426.5 '/>
  3674. </g>
  3675. <path stroke='blue' d='M245.5,427.4 L245.5,426.6 L246.5,426.6 L246.5,427.4 L245.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3676. <polygon fill = 'blue' points = '246.5,427.4 247.6,427.4 247.6,426.5 246.5,426.5 '/>
  3677. </g>
  3678. <path stroke='blue' d='M246.5,427.4 L246.5,426.6 L247.5,426.6 L247.5,427.4 L246.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3679. <polygon fill = 'blue' points = '247.5,427.4 248.6,427.4 248.6,426.5 247.5,426.5 '/>
  3680. </g>
  3681. <path stroke='blue' d='M247.5,427.4 L247.5,426.6 L248.5,426.6 L248.5,427.4 L247.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3682. <polygon fill = 'blue' points = '248.5,427.4 249.6,427.4 249.6,426.5 248.5,426.5 '/>
  3683. </g>
  3684. <path stroke='blue' d='M248.5,427.4 L248.5,426.6 L249.5,426.6 L249.5,427.4 L248.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3685. <polygon fill = 'blue' points = '249.5,427.4 250.6,427.4 250.6,426.5 249.5,426.5 '/>
  3686. </g>
  3687. <path stroke='blue' d='M249.5,427.4 L249.5,426.6 L250.5,426.6 L250.5,427.4 L249.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3688. <polygon fill = 'blue' points = '250.5,427.4 251.6,427.4 251.6,426.5 250.5,426.5 '/>
  3689. </g>
  3690. <path stroke='blue' d='M250.5,427.4 L250.5,426.6 L251.5,426.6 L251.5,427.4 L250.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3691. <polygon fill = 'blue' points = '251.5,427.4 252.6,427.4 252.6,426.5 251.5,426.5 '/>
  3692. </g>
  3693. <path stroke='blue' d='M251.5,427.4 L251.5,426.6 L252.5,426.6 L252.5,427.4 L251.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3694. <polygon fill = 'blue' points = '252.5,427.4 253.6,427.4 253.6,426.5 252.5,426.5 '/>
  3695. </g>
  3696. <path stroke='blue' d='M252.5,427.4 L252.5,426.6 L253.5,426.6 L253.5,427.4 L252.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3697. <polygon fill = 'blue' points = '253.5,427.4 254.6,427.4 254.6,426.5 253.5,426.5 '/>
  3698. </g>
  3699. <path stroke='blue' d='M253.5,427.4 L253.5,426.6 L254.5,426.6 L254.5,427.4 L253.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3700. <polygon fill = 'blue' points = '254.5,427.4 255.6,427.4 255.6,413.9 254.5,413.9 '/>
  3701. </g>
  3702. <path stroke='blue' d='M254.5,427.4 L254.5,414.0 L255.5,414.0 L255.5,427.4 L254.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3703. <polygon fill = 'blue' points = '255.5,427.4 256.6,427.4 256.6,406.5 255.5,406.5 '/>
  3704. </g>
  3705. <path stroke='blue' d='M255.5,427.4 L255.5,406.6 L256.5,406.6 L256.5,427.4 L255.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3706. <polygon fill = 'blue' points = '256.5,427.4 257.6,427.4 257.6,426.5 256.5,426.5 '/>
  3707. </g>
  3708. <path stroke='blue' d='M256.5,427.4 L256.5,426.6 L257.5,426.6 L257.5,427.4 L256.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3709. <polygon fill = 'blue' points = '257.5,427.4 258.7,427.4 258.7,426.5 257.5,426.5 '/>
  3710. </g>
  3711. <path stroke='blue' d='M257.5,427.4 L257.5,426.6 L258.6,426.6 L258.6,427.4 L257.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3712. <polygon fill = 'blue' points = '258.6,427.4 259.7,427.4 259.7,410.5 258.6,410.5 '/>
  3713. </g>
  3714. <path stroke='blue' d='M258.6,427.4 L258.6,410.6 L259.6,410.6 L259.6,427.4 L258.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3715. <polygon fill = 'blue' points = '259.6,427.4 260.7,427.4 260.7,426.5 259.6,426.5 '/>
  3716. </g>
  3717. <path stroke='blue' d='M259.6,427.4 L259.6,426.6 L260.6,426.6 L260.6,427.4 L259.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3718. <polygon fill = 'blue' points = '260.6,427.4 261.7,427.4 261.7,426.5 260.6,426.5 '/>
  3719. </g>
  3720. <path stroke='blue' d='M260.6,427.4 L260.6,426.6 L261.6,426.6 L261.6,427.4 L260.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3721. <polygon fill = 'blue' points = '261.6,427.4 262.7,427.4 262.7,426.5 261.6,426.5 '/>
  3722. </g>
  3723. <path stroke='blue' d='M261.6,427.4 L261.6,426.6 L262.6,426.6 L262.6,427.4 L261.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3724. <polygon fill = 'blue' points = '262.6,427.4 263.7,427.4 263.7,415.4 262.6,415.4 '/>
  3725. </g>
  3726. <path stroke='blue' d='M262.6,427.4 L262.6,415.5 L263.6,415.5 L263.6,427.4 L262.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3727. <polygon fill = 'blue' points = '263.6,427.4 264.7,427.4 264.7,426.5 263.6,426.5 '/>
  3728. </g>
  3729. <path stroke='blue' d='M263.6,427.4 L263.6,426.6 L264.6,426.6 L264.6,427.4 L263.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3730. <polygon fill = 'blue' points = '264.6,427.4 265.7,427.4 265.7,426.5 264.6,426.5 '/>
  3731. </g>
  3732. <path stroke='blue' d='M264.6,427.4 L264.6,426.6 L265.6,426.6 L265.6,427.4 L264.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3733. <polygon fill = 'blue' points = '265.6,427.4 266.7,427.4 266.7,424.9 265.6,424.9 '/>
  3734. </g>
  3735. <path stroke='blue' d='M265.6,427.4 L265.6,425.0 L266.6,425.0 L266.6,427.4 L265.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3736. <polygon fill = 'blue' points = '266.6,427.4 267.7,427.4 267.7,426.5 266.6,426.5 '/>
  3737. </g>
  3738. <path stroke='blue' d='M266.6,427.4 L266.6,426.6 L267.6,426.6 L267.6,427.4 L266.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3739. <polygon fill = 'blue' points = '267.6,427.4 268.7,427.4 268.7,418.7 267.6,418.7 '/>
  3740. </g>
  3741. <path stroke='blue' d='M267.6,427.4 L267.6,418.8 L268.6,418.8 L268.6,427.4 L267.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3742. <polygon fill = 'blue' points = '268.6,427.4 269.7,427.4 269.7,426.5 268.6,426.5 '/>
  3743. </g>
  3744. <path stroke='blue' d='M268.6,427.4 L268.6,426.6 L269.6,426.6 L269.6,427.4 L268.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3745. <polygon fill = 'blue' points = '269.6,427.4 270.7,427.4 270.7,426.5 269.6,426.5 '/>
  3746. </g>
  3747. <path stroke='blue' d='M269.6,427.4 L269.6,426.6 L270.6,426.6 L270.6,427.4 L269.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3748. <polygon fill = 'blue' points = '270.6,427.4 271.7,427.4 271.7,426.5 270.6,426.5 '/>
  3749. </g>
  3750. <path stroke='blue' d='M270.6,427.4 L270.6,426.6 L271.6,426.6 L271.6,427.4 L270.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3751. <polygon fill = 'blue' points = '271.6,427.4 272.7,427.4 272.7,422.8 271.6,422.8 '/>
  3752. </g>
  3753. <path stroke='blue' d='M271.6,427.4 L271.6,422.9 L272.6,422.9 L272.6,427.4 L271.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3754. <polygon fill = 'blue' points = '272.6,427.4 273.7,427.4 273.7,426.5 272.6,426.5 '/>
  3755. </g>
  3756. <path stroke='blue' d='M272.6,427.4 L272.6,426.6 L273.6,426.6 L273.6,427.4 L272.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3757. <polygon fill = 'blue' points = '273.6,427.4 274.7,427.4 274.7,426.5 273.6,426.5 '/>
  3758. </g>
  3759. <path stroke='blue' d='M273.6,427.4 L273.6,426.6 L274.6,426.6 L274.6,427.4 L273.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3760. <polygon fill = 'blue' points = '274.6,427.4 275.8,427.4 275.8,426.5 274.6,426.5 '/>
  3761. </g>
  3762. <path stroke='blue' d='M274.6,427.4 L274.6,426.6 L275.7,426.6 L275.7,427.4 L274.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3763. <polygon fill = 'blue' points = '275.7,427.4 276.8,427.4 276.8,426.5 275.7,426.5 '/>
  3764. </g>
  3765. <path stroke='blue' d='M275.7,427.4 L275.7,426.6 L276.7,426.6 L276.7,427.4 L275.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3766. <polygon fill = 'blue' points = '276.7,427.4 277.8,427.4 277.8,426.5 276.7,426.5 '/>
  3767. </g>
  3768. <path stroke='blue' d='M276.7,427.4 L276.7,426.6 L277.7,426.6 L277.7,427.4 L276.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3769. <polygon fill = 'blue' points = '277.7,427.4 278.8,427.4 278.8,426.5 277.7,426.5 '/>
  3770. </g>
  3771. <path stroke='blue' d='M277.7,427.4 L277.7,426.6 L278.7,426.6 L278.7,427.4 L277.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3772. <polygon fill = 'blue' points = '278.7,427.4 279.8,427.4 279.8,426.5 278.7,426.5 '/>
  3773. </g>
  3774. <path stroke='blue' d='M278.7,427.4 L278.7,426.6 L279.7,426.6 L279.7,427.4 L278.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3775. <polygon fill = 'blue' points = '279.7,427.4 280.8,427.4 280.8,426.5 279.7,426.5 '/>
  3776. </g>
  3777. <path stroke='blue' d='M279.7,427.4 L279.7,426.6 L280.7,426.6 L280.7,427.4 L279.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3778. <polygon fill = 'blue' points = '280.7,427.4 281.8,427.4 281.8,426.5 280.7,426.5 '/>
  3779. </g>
  3780. <path stroke='blue' d='M280.7,427.4 L280.7,426.6 L281.7,426.6 L281.7,427.4 L280.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3781. <polygon fill = 'blue' points = '281.7,427.4 282.8,427.4 282.8,426.5 281.7,426.5 '/>
  3782. </g>
  3783. <path stroke='blue' d='M281.7,427.4 L281.7,426.6 L282.7,426.6 L282.7,427.4 L281.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3784. <polygon fill = 'blue' points = '282.7,427.4 283.8,427.4 283.8,426.5 282.7,426.5 '/>
  3785. </g>
  3786. <path stroke='blue' d='M282.7,427.4 L282.7,426.6 L283.7,426.6 L283.7,427.4 L282.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3787. <polygon fill = 'blue' points = '283.7,427.4 284.8,427.4 284.8,426.5 283.7,426.5 '/>
  3788. </g>
  3789. <path stroke='blue' d='M283.7,427.4 L283.7,426.6 L284.7,426.6 L284.7,427.4 L283.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3790. <polygon fill = 'blue' points = '284.7,427.4 285.8,427.4 285.8,426.5 284.7,426.5 '/>
  3791. </g>
  3792. <path stroke='blue' d='M284.7,427.4 L284.7,426.6 L285.7,426.6 L285.7,427.4 L284.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3793. <polygon fill = 'blue' points = '285.7,427.4 286.8,427.4 286.8,423.0 285.7,423.0 '/>
  3794. </g>
  3795. <path stroke='blue' d='M285.7,427.4 L285.7,423.1 L286.7,423.1 L286.7,427.4 L285.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3796. <polygon fill = 'blue' points = '286.7,427.4 287.8,427.4 287.8,425.2 286.7,425.2 '/>
  3797. </g>
  3798. <path stroke='blue' d='M286.7,427.4 L286.7,425.3 L287.7,425.3 L287.7,427.4 L286.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3799. <polygon fill = 'blue' points = '287.7,427.4 288.8,427.4 288.8,426.5 287.7,426.5 '/>
  3800. </g>
  3801. <path stroke='blue' d='M287.7,427.4 L287.7,426.6 L288.7,426.6 L288.7,427.4 L287.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3802. <polygon fill = 'blue' points = '288.7,427.4 289.8,427.4 289.8,426.5 288.7,426.5 '/>
  3803. </g>
  3804. <path stroke='blue' d='M288.7,427.4 L288.7,426.6 L289.7,426.6 L289.7,427.4 L288.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3805. <polygon fill = 'blue' points = '289.7,427.4 290.8,427.4 290.8,408.7 289.7,408.7 '/>
  3806. </g>
  3807. <path stroke='blue' d='M289.7,427.4 L289.7,408.8 L290.7,408.8 L290.7,427.4 L289.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3808. <polygon fill = 'blue' points = '290.7,427.4 291.9,427.4 291.9,426.5 290.7,426.5 '/>
  3809. </g>
  3810. <path stroke='blue' d='M290.7,427.4 L290.7,426.6 L291.8,426.6 L291.8,427.4 L290.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3811. <polygon fill = 'blue' points = '291.8,427.4 292.9,427.4 292.9,426.5 291.8,426.5 '/>
  3812. </g>
  3813. <path stroke='blue' d='M291.8,427.4 L291.8,426.6 L292.8,426.6 L292.8,427.4 L291.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3814. <polygon fill = 'blue' points = '292.8,427.4 293.9,427.4 293.9,426.5 292.8,426.5 '/>
  3815. </g>
  3816. <path stroke='blue' d='M292.8,427.4 L292.8,426.6 L293.8,426.6 L293.8,427.4 L292.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3817. <polygon fill = 'blue' points = '293.8,427.4 294.9,427.4 294.9,426.5 293.8,426.5 '/>
  3818. </g>
  3819. <path stroke='blue' d='M293.8,427.4 L293.8,426.6 L294.8,426.6 L294.8,427.4 L293.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3820. <polygon fill = 'blue' points = '294.8,427.4 295.9,427.4 295.9,426.5 294.8,426.5 '/>
  3821. </g>
  3822. <path stroke='blue' d='M294.8,427.4 L294.8,426.6 L295.8,426.6 L295.8,427.4 L294.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3823. <polygon fill = 'blue' points = '295.8,427.4 296.9,427.4 296.9,426.5 295.8,426.5 '/>
  3824. </g>
  3825. <path stroke='blue' d='M295.8,427.4 L295.8,426.6 L296.8,426.6 L296.8,427.4 L295.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3826. <polygon fill = 'blue' points = '296.8,427.4 297.9,427.4 297.9,426.5 296.8,426.5 '/>
  3827. </g>
  3828. <path stroke='blue' d='M296.8,427.4 L296.8,426.6 L297.8,426.6 L297.8,427.4 L296.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3829. <polygon fill = 'blue' points = '297.8,427.4 298.9,427.4 298.9,426.5 297.8,426.5 '/>
  3830. </g>
  3831. <path stroke='blue' d='M297.8,427.4 L297.8,426.6 L298.8,426.6 L298.8,427.4 L297.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3832. <polygon fill = 'blue' points = '298.8,427.4 299.9,427.4 299.9,426.5 298.8,426.5 '/>
  3833. </g>
  3834. <path stroke='blue' d='M298.8,427.4 L298.8,426.6 L299.8,426.6 L299.8,427.4 L298.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3835. <polygon fill = 'blue' points = '299.8,427.4 300.9,427.4 300.9,426.5 299.8,426.5 '/>
  3836. </g>
  3837. <path stroke='blue' d='M299.8,427.4 L299.8,426.6 L300.8,426.6 L300.8,427.4 L299.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3838. <polygon fill = 'blue' points = '300.8,427.4 301.9,427.4 301.9,426.5 300.8,426.5 '/>
  3839. </g>
  3840. <path stroke='blue' d='M300.8,427.4 L300.8,426.6 L301.8,426.6 L301.8,427.4 L300.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3841. <polygon fill = 'blue' points = '301.8,427.4 302.9,427.4 302.9,426.5 301.8,426.5 '/>
  3842. </g>
  3843. <path stroke='blue' d='M301.8,427.4 L301.8,426.6 L302.8,426.6 L302.8,427.4 L301.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3844. <polygon fill = 'blue' points = '302.8,427.4 303.9,427.4 303.9,426.5 302.8,426.5 '/>
  3845. </g>
  3846. <path stroke='blue' d='M302.8,427.4 L302.8,426.6 L303.8,426.6 L303.8,427.4 L302.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3847. <polygon fill = 'blue' points = '303.8,427.4 304.9,427.4 304.9,426.5 303.8,426.5 '/>
  3848. </g>
  3849. <path stroke='blue' d='M303.8,427.4 L303.8,426.6 L304.8,426.6 L304.8,427.4 L303.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3850. <polygon fill = 'blue' points = '304.8,427.4 305.9,427.4 305.9,426.5 304.8,426.5 '/>
  3851. </g>
  3852. <path stroke='blue' d='M304.8,427.4 L304.8,426.6 L305.8,426.6 L305.8,427.4 L304.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3853. <polygon fill = 'blue' points = '305.8,427.4 306.9,427.4 306.9,426.2 305.8,426.2 '/>
  3854. </g>
  3855. <path stroke='blue' d='M305.8,427.4 L305.8,426.3 L306.8,426.3 L306.8,427.4 L305.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3856. <polygon fill = 'blue' points = '306.8,427.4 308.0,427.4 308.0,426.5 306.8,426.5 '/>
  3857. </g>
  3858. <path stroke='blue' d='M306.8,427.4 L306.8,426.6 L307.9,426.6 L307.9,427.4 L306.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3859. <polygon fill = 'blue' points = '307.9,427.4 309.0,427.4 309.0,426.5 307.9,426.5 '/>
  3860. </g>
  3861. <path stroke='blue' d='M307.9,427.4 L307.9,426.6 L308.9,426.6 L308.9,427.4 L307.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3862. <polygon fill = 'blue' points = '308.9,427.4 310.0,427.4 310.0,426.5 308.9,426.5 '/>
  3863. </g>
  3864. <path stroke='blue' d='M308.9,427.4 L308.9,426.6 L309.9,426.6 L309.9,427.4 L308.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3865. <polygon fill = 'blue' points = '309.9,427.4 311.0,427.4 311.0,426.5 309.9,426.5 '/>
  3866. </g>
  3867. <path stroke='blue' d='M309.9,427.4 L309.9,426.6 L310.9,426.6 L310.9,427.4 L309.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3868. <polygon fill = 'blue' points = '310.9,427.4 312.0,427.4 312.0,426.5 310.9,426.5 '/>
  3869. </g>
  3870. <path stroke='blue' d='M310.9,427.4 L310.9,426.6 L311.9,426.6 L311.9,427.4 L310.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3871. <polygon fill = 'blue' points = '311.9,427.4 313.0,427.4 313.0,426.5 311.9,426.5 '/>
  3872. </g>
  3873. <path stroke='blue' d='M311.9,427.4 L311.9,426.6 L312.9,426.6 L312.9,427.4 L311.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3874. <polygon fill = 'blue' points = '312.9,427.4 314.0,427.4 314.0,426.5 312.9,426.5 '/>
  3875. </g>
  3876. <path stroke='blue' d='M312.9,427.4 L312.9,426.6 L313.9,426.6 L313.9,427.4 L312.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3877. <polygon fill = 'blue' points = '313.9,427.4 315.0,427.4 315.0,426.5 313.9,426.5 '/>
  3878. </g>
  3879. <path stroke='blue' d='M313.9,427.4 L313.9,426.6 L314.9,426.6 L314.9,427.4 L313.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3880. <polygon fill = 'blue' points = '314.9,427.4 316.0,427.4 316.0,426.5 314.9,426.5 '/>
  3881. </g>
  3882. <path stroke='blue' d='M314.9,427.4 L314.9,426.6 L315.9,426.6 L315.9,427.4 L314.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3883. <polygon fill = 'blue' points = '315.9,427.4 317.0,427.4 317.0,426.5 315.9,426.5 '/>
  3884. </g>
  3885. <path stroke='blue' d='M315.9,427.4 L315.9,426.6 L316.9,426.6 L316.9,427.4 L315.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3886. <polygon fill = 'blue' points = '316.9,427.4 318.0,427.4 318.0,426.5 316.9,426.5 '/>
  3887. </g>
  3888. <path stroke='blue' d='M316.9,427.4 L316.9,426.6 L317.9,426.6 L317.9,427.4 L316.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3889. <polygon fill = 'blue' points = '317.9,427.4 319.0,427.4 319.0,426.5 317.9,426.5 '/>
  3890. </g>
  3891. <path stroke='blue' d='M317.9,427.4 L317.9,426.6 L318.9,426.6 L318.9,427.4 L317.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3892. <polygon fill = 'blue' points = '318.9,427.4 320.0,427.4 320.0,426.5 318.9,426.5 '/>
  3893. </g>
  3894. <path stroke='blue' d='M318.9,427.4 L318.9,426.6 L319.9,426.6 L319.9,427.4 L318.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3895. <polygon fill = 'blue' points = '319.9,427.4 321.0,427.4 321.0,426.5 319.9,426.5 '/>
  3896. </g>
  3897. <path stroke='blue' d='M319.9,427.4 L319.9,426.6 L320.9,426.6 L320.9,427.4 L319.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3898. <polygon fill = 'blue' points = '320.9,427.4 322.0,427.4 322.0,426.5 320.9,426.5 '/>
  3899. </g>
  3900. <path stroke='blue' d='M320.9,427.4 L320.9,426.6 L321.9,426.6 L321.9,427.4 L320.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3901. <polygon fill = 'blue' points = '321.9,427.4 323.0,427.4 323.0,426.5 321.9,426.5 '/>
  3902. </g>
  3903. <path stroke='blue' d='M321.9,427.4 L321.9,426.6 L322.9,426.6 L322.9,427.4 L321.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3904. <polygon fill = 'blue' points = '322.9,427.4 324.1,427.4 324.1,426.5 322.9,426.5 '/>
  3905. </g>
  3906. <path stroke='blue' d='M322.9,427.4 L322.9,426.6 L324.0,426.6 L324.0,427.4 L322.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3907. <polygon fill = 'blue' points = '324.0,427.4 325.1,427.4 325.1,420.0 324.0,420.0 '/>
  3908. </g>
  3909. <path stroke='blue' d='M324.0,427.4 L324.0,420.1 L325.0,420.1 L325.0,427.4 L324.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3910. <polygon fill = 'blue' points = '325.0,427.4 326.1,427.4 326.1,426.5 325.0,426.5 '/>
  3911. </g>
  3912. <path stroke='blue' d='M325.0,427.4 L325.0,426.6 L326.0,426.6 L326.0,427.4 L325.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3913. <polygon fill = 'blue' points = '326.0,427.4 327.1,427.4 327.1,411.9 326.0,411.9 '/>
  3914. </g>
  3915. <path stroke='blue' d='M326.0,427.4 L326.0,412.0 L327.0,412.0 L327.0,427.4 L326.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3916. <polygon fill = 'blue' points = '327.0,427.4 328.1,427.4 328.1,419.0 327.0,419.0 '/>
  3917. </g>
  3918. <path stroke='blue' d='M327.0,427.4 L327.0,419.1 L328.0,419.1 L328.0,427.4 L327.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3919. <polygon fill = 'blue' points = '328.0,427.4 329.1,427.4 329.1,418.0 328.0,418.0 '/>
  3920. </g>
  3921. <path stroke='blue' d='M328.0,427.4 L328.0,418.1 L329.0,418.1 L329.0,427.4 L328.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3922. <polygon fill = 'blue' points = '329.0,427.4 330.1,427.4 330.1,426.5 329.0,426.5 '/>
  3923. </g>
  3924. <path stroke='blue' d='M329.0,427.4 L329.0,426.6 L330.0,426.6 L330.0,427.4 L329.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3925. <polygon fill = 'blue' points = '330.0,427.4 331.1,427.4 331.1,417.7 330.0,417.7 '/>
  3926. </g>
  3927. <path stroke='blue' d='M330.0,427.4 L330.0,417.8 L331.0,417.8 L331.0,427.4 L330.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3928. <polygon fill = 'blue' points = '331.0,427.4 332.1,427.4 332.1,415.3 331.0,415.3 '/>
  3929. </g>
  3930. <path stroke='blue' d='M331.0,427.4 L331.0,415.4 L332.0,415.4 L332.0,427.4 L331.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3931. <polygon fill = 'blue' points = '332.0,427.4 333.1,427.4 333.1,426.5 332.0,426.5 '/>
  3932. </g>
  3933. <path stroke='blue' d='M332.0,427.4 L332.0,426.6 L333.0,426.6 L333.0,427.4 L332.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3934. <polygon fill = 'blue' points = '333.0,427.4 334.1,427.4 334.1,426.5 333.0,426.5 '/>
  3935. </g>
  3936. <path stroke='blue' d='M333.0,427.4 L333.0,426.6 L334.0,426.6 L334.0,427.4 L333.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3937. <polygon fill = 'blue' points = '334.0,427.4 335.1,427.4 335.1,426.5 334.0,426.5 '/>
  3938. </g>
  3939. <path stroke='blue' d='M334.0,427.4 L334.0,426.6 L335.0,426.6 L335.0,427.4 L334.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3940. <polygon fill = 'blue' points = '335.0,427.4 336.1,427.4 336.1,426.5 335.0,426.5 '/>
  3941. </g>
  3942. <path stroke='blue' d='M335.0,427.4 L335.0,426.6 L336.0,426.6 L336.0,427.4 L335.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3943. <polygon fill = 'blue' points = '336.0,427.4 337.1,427.4 337.1,426.5 336.0,426.5 '/>
  3944. </g>
  3945. <path stroke='blue' d='M336.0,427.4 L336.0,426.6 L337.0,426.6 L337.0,427.4 L336.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3946. <polygon fill = 'blue' points = '337.0,427.4 338.1,427.4 338.1,426.5 337.0,426.5 '/>
  3947. </g>
  3948. <path stroke='blue' d='M337.0,427.4 L337.0,426.6 L338.0,426.6 L338.0,427.4 L337.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3949. <polygon fill = 'blue' points = '338.0,427.4 339.1,427.4 339.1,416.5 338.0,416.5 '/>
  3950. </g>
  3951. <path stroke='blue' d='M338.0,427.4 L338.0,416.6 L339.0,416.6 L339.0,427.4 L338.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3952. <polygon fill = 'blue' points = '339.0,427.4 340.2,427.4 340.2,415.5 339.0,415.5 '/>
  3953. </g>
  3954. <path stroke='blue' d='M339.0,427.4 L339.0,415.6 L340.1,415.6 L340.1,427.4 L339.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3955. <polygon fill = 'blue' points = '340.1,427.4 341.2,427.4 341.2,415.3 340.1,415.3 '/>
  3956. </g>
  3957. <path stroke='blue' d='M340.1,427.4 L340.1,415.4 L341.1,415.4 L341.1,427.4 L340.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3958. <polygon fill = 'blue' points = '341.1,427.4 342.2,427.4 342.2,426.5 341.1,426.5 '/>
  3959. </g>
  3960. <path stroke='blue' d='M341.1,427.4 L341.1,426.6 L342.1,426.6 L342.1,427.4 L341.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3961. <polygon fill = 'blue' points = '342.1,427.4 343.2,427.4 343.2,426.5 342.1,426.5 '/>
  3962. </g>
  3963. <path stroke='blue' d='M342.1,427.4 L342.1,426.6 L343.1,426.6 L343.1,427.4 L342.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3964. <polygon fill = 'blue' points = '343.1,427.4 344.2,427.4 344.2,426.5 343.1,426.5 '/>
  3965. </g>
  3966. <path stroke='blue' d='M343.1,427.4 L343.1,426.6 L344.1,426.6 L344.1,427.4 L343.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3967. <polygon fill = 'blue' points = '344.1,427.4 345.2,427.4 345.2,426.5 344.1,426.5 '/>
  3968. </g>
  3969. <path stroke='blue' d='M344.1,427.4 L344.1,426.6 L345.1,426.6 L345.1,427.4 L344.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3970. <polygon fill = 'blue' points = '345.1,427.4 346.2,427.4 346.2,426.5 345.1,426.5 '/>
  3971. </g>
  3972. <path stroke='blue' d='M345.1,427.4 L345.1,426.6 L346.1,426.6 L346.1,427.4 L345.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3973. <polygon fill = 'blue' points = '346.1,427.4 347.2,427.4 347.2,426.5 346.1,426.5 '/>
  3974. </g>
  3975. <path stroke='blue' d='M346.1,427.4 L346.1,426.6 L347.1,426.6 L347.1,427.4 L346.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3976. <polygon fill = 'blue' points = '347.1,427.4 348.2,427.4 348.2,426.5 347.1,426.5 '/>
  3977. </g>
  3978. <path stroke='blue' d='M347.1,427.4 L347.1,426.6 L348.1,426.6 L348.1,427.4 L347.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3979. <polygon fill = 'blue' points = '348.1,427.4 349.2,427.4 349.2,426.5 348.1,426.5 '/>
  3980. </g>
  3981. <path stroke='blue' d='M348.1,427.4 L348.1,426.6 L349.1,426.6 L349.1,427.4 L348.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3982. <polygon fill = 'blue' points = '349.1,427.4 350.2,427.4 350.2,426.5 349.1,426.5 '/>
  3983. </g>
  3984. <path stroke='blue' d='M349.1,427.4 L349.1,426.6 L350.1,426.6 L350.1,427.4 L349.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3985. <polygon fill = 'blue' points = '350.1,427.4 351.2,427.4 351.2,426.5 350.1,426.5 '/>
  3986. </g>
  3987. <path stroke='blue' d='M350.1,427.4 L350.1,426.6 L351.1,426.6 L351.1,427.4 L350.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3988. <polygon fill = 'blue' points = '351.1,427.4 352.2,427.4 352.2,426.5 351.1,426.5 '/>
  3989. </g>
  3990. <path stroke='blue' d='M351.1,427.4 L351.1,426.6 L352.1,426.6 L352.1,427.4 L351.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3991. <polygon fill = 'blue' points = '352.1,427.4 353.2,427.4 353.2,426.5 352.1,426.5 '/>
  3992. </g>
  3993. <path stroke='blue' d='M352.1,427.4 L352.1,426.6 L353.1,426.6 L353.1,427.4 L352.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3994. <polygon fill = 'blue' points = '353.1,427.4 354.2,427.4 354.2,421.3 353.1,421.3 '/>
  3995. </g>
  3996. <path stroke='blue' d='M353.1,427.4 L353.1,421.4 L354.1,421.4 L354.1,427.4 L353.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  3997. <polygon fill = 'blue' points = '354.1,427.4 355.2,427.4 355.2,426.5 354.1,426.5 '/>
  3998. </g>
  3999. <path stroke='blue' d='M354.1,427.4 L354.1,426.6 L355.1,426.6 L355.1,427.4 L354.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4000. <polygon fill = 'blue' points = '355.1,427.4 356.3,427.4 356.3,418.8 355.1,418.8 '/>
  4001. </g>
  4002. <path stroke='blue' d='M355.1,427.4 L355.1,418.9 L356.2,418.9 L356.2,427.4 L355.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4003. <polygon fill = 'blue' points = '356.2,427.4 357.3,427.4 357.3,426.5 356.2,426.5 '/>
  4004. </g>
  4005. <path stroke='blue' d='M356.2,427.4 L356.2,426.6 L357.2,426.6 L357.2,427.4 L356.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4006. <polygon fill = 'blue' points = '357.2,427.4 358.3,427.4 358.3,410.2 357.2,410.2 '/>
  4007. </g>
  4008. <path stroke='blue' d='M357.2,427.4 L357.2,410.3 L358.2,410.3 L358.2,427.4 L357.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4009. <polygon fill = 'blue' points = '358.2,427.4 359.3,427.4 359.3,426.5 358.2,426.5 '/>
  4010. </g>
  4011. <path stroke='blue' d='M358.2,427.4 L358.2,426.6 L359.2,426.6 L359.2,427.4 L358.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4012. <polygon fill = 'blue' points = '359.2,427.4 360.3,427.4 360.3,426.5 359.2,426.5 '/>
  4013. </g>
  4014. <path stroke='blue' d='M359.2,427.4 L359.2,426.6 L360.2,426.6 L360.2,427.4 L359.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4015. <polygon fill = 'blue' points = '360.2,427.4 361.3,427.4 361.3,426.5 360.2,426.5 '/>
  4016. </g>
  4017. <path stroke='blue' d='M360.2,427.4 L360.2,426.6 L361.2,426.6 L361.2,427.4 L360.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4018. <polygon fill = 'blue' points = '361.2,427.4 362.3,427.4 362.3,426.5 361.2,426.5 '/>
  4019. </g>
  4020. <path stroke='blue' d='M361.2,427.4 L361.2,426.6 L362.2,426.6 L362.2,427.4 L361.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4021. <polygon fill = 'blue' points = '362.2,427.4 363.3,427.4 363.3,426.5 362.2,426.5 '/>
  4022. </g>
  4023. <path stroke='blue' d='M362.2,427.4 L362.2,426.6 L363.2,426.6 L363.2,427.4 L362.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4024. <polygon fill = 'blue' points = '363.2,427.4 364.3,427.4 364.3,426.5 363.2,426.5 '/>
  4025. </g>
  4026. <path stroke='blue' d='M363.2,427.4 L363.2,426.6 L364.2,426.6 L364.2,427.4 L363.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4027. <polygon fill = 'blue' points = '364.2,427.4 365.3,427.4 365.3,426.5 364.2,426.5 '/>
  4028. </g>
  4029. <path stroke='blue' d='M364.2,427.4 L364.2,426.6 L365.2,426.6 L365.2,427.4 L364.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4030. <polygon fill = 'blue' points = '365.2,427.4 366.3,427.4 366.3,426.5 365.2,426.5 '/>
  4031. </g>
  4032. <path stroke='blue' d='M365.2,427.4 L365.2,426.6 L366.2,426.6 L366.2,427.4 L365.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4033. <polygon fill = 'blue' points = '366.2,427.4 367.3,427.4 367.3,413.1 366.2,413.1 '/>
  4034. </g>
  4035. <path stroke='blue' d='M366.2,427.4 L366.2,413.2 L367.2,413.2 L367.2,427.4 L366.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4036. <polygon fill = 'blue' points = '367.2,427.4 368.3,427.4 368.3,426.5 367.2,426.5 '/>
  4037. </g>
  4038. <path stroke='blue' d='M367.2,427.4 L367.2,426.6 L368.2,426.6 L368.2,427.4 L367.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4039. <polygon fill = 'blue' points = '368.2,427.4 369.3,427.4 369.3,423.4 368.2,423.4 '/>
  4040. </g>
  4041. <path stroke='blue' d='M368.2,427.4 L368.2,423.5 L369.2,423.5 L369.2,427.4 L368.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4042. <polygon fill = 'blue' points = '369.2,427.4 370.3,427.4 370.3,426.5 369.2,426.5 '/>
  4043. </g>
  4044. <path stroke='blue' d='M369.2,427.4 L369.2,426.6 L370.2,426.6 L370.2,427.4 L369.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4045. <polygon fill = 'blue' points = '370.2,427.4 371.3,427.4 371.3,426.5 370.2,426.5 '/>
  4046. </g>
  4047. <path stroke='blue' d='M370.2,427.4 L370.2,426.6 L371.2,426.6 L371.2,427.4 L370.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4048. <polygon fill = 'blue' points = '371.2,427.4 372.4,427.4 372.4,426.5 371.2,426.5 '/>
  4049. </g>
  4050. <path stroke='blue' d='M371.2,427.4 L371.2,426.6 L372.3,426.6 L372.3,427.4 L371.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4051. <polygon fill = 'blue' points = '372.3,427.4 373.4,427.4 373.4,426.5 372.3,426.5 '/>
  4052. </g>
  4053. <path stroke='blue' d='M372.3,427.4 L372.3,426.6 L373.3,426.6 L373.3,427.4 L372.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4054. <polygon fill = 'blue' points = '373.3,427.4 374.4,427.4 374.4,426.4 373.3,426.4 '/>
  4055. </g>
  4056. <path stroke='blue' d='M373.3,427.4 L373.3,426.5 L374.3,426.5 L374.3,427.4 L373.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4057. <polygon fill = 'blue' points = '374.3,427.4 375.4,427.4 375.4,426.5 374.3,426.5 '/>
  4058. </g>
  4059. <path stroke='blue' d='M374.3,427.4 L374.3,426.6 L375.3,426.6 L375.3,427.4 L374.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4060. <polygon fill = 'blue' points = '375.3,427.4 376.4,427.4 376.4,426.5 375.3,426.5 '/>
  4061. </g>
  4062. <path stroke='blue' d='M375.3,427.4 L375.3,426.6 L376.3,426.6 L376.3,427.4 L375.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4063. <polygon fill = 'blue' points = '376.3,427.4 377.4,427.4 377.4,426.5 376.3,426.5 '/>
  4064. </g>
  4065. <path stroke='blue' d='M376.3,427.4 L376.3,426.6 L377.3,426.6 L377.3,427.4 L376.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4066. <polygon fill = 'blue' points = '377.3,427.4 378.4,427.4 378.4,426.5 377.3,426.5 '/>
  4067. </g>
  4068. <path stroke='blue' d='M377.3,427.4 L377.3,426.6 L378.3,426.6 L378.3,427.4 L377.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4069. <polygon fill = 'blue' points = '378.3,427.4 379.4,427.4 379.4,426.5 378.3,426.5 '/>
  4070. </g>
  4071. <path stroke='blue' d='M378.3,427.4 L378.3,426.6 L379.3,426.6 L379.3,427.4 L378.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4072. <polygon fill = 'blue' points = '379.3,427.4 380.4,427.4 380.4,426.5 379.3,426.5 '/>
  4073. </g>
  4074. <path stroke='blue' d='M379.3,427.4 L379.3,426.6 L380.3,426.6 L380.3,427.4 L379.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4075. <polygon fill = 'blue' points = '380.3,427.4 381.4,427.4 381.4,426.5 380.3,426.5 '/>
  4076. </g>
  4077. <path stroke='blue' d='M380.3,427.4 L380.3,426.6 L381.3,426.6 L381.3,427.4 L380.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4078. <polygon fill = 'blue' points = '381.3,427.4 382.4,427.4 382.4,426.5 381.3,426.5 '/>
  4079. </g>
  4080. <path stroke='blue' d='M381.3,427.4 L381.3,426.6 L382.3,426.6 L382.3,427.4 L381.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4081. <polygon fill = 'blue' points = '382.3,427.4 383.4,427.4 383.4,426.5 382.3,426.5 '/>
  4082. </g>
  4083. <path stroke='blue' d='M382.3,427.4 L382.3,426.6 L383.3,426.6 L383.3,427.4 L382.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4084. <polygon fill = 'blue' points = '383.3,427.4 384.4,427.4 384.4,426.5 383.3,426.5 '/>
  4085. </g>
  4086. <path stroke='blue' d='M383.3,427.4 L383.3,426.6 L384.3,426.6 L384.3,427.4 L383.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4087. <polygon fill = 'blue' points = '384.3,427.4 385.4,427.4 385.4,426.5 384.3,426.5 '/>
  4088. </g>
  4089. <path stroke='blue' d='M384.3,427.4 L384.3,426.6 L385.3,426.6 L385.3,427.4 L384.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4090. <polygon fill = 'blue' points = '385.3,427.4 386.4,427.4 386.4,426.5 385.3,426.5 '/>
  4091. </g>
  4092. <path stroke='blue' d='M385.3,427.4 L385.3,426.6 L386.3,426.6 L386.3,427.4 L385.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4093. <polygon fill = 'blue' points = '386.3,427.4 387.4,427.4 387.4,426.5 386.3,426.5 '/>
  4094. </g>
  4095. <path stroke='blue' d='M386.3,427.4 L386.3,426.6 L387.3,426.6 L387.3,427.4 L386.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4096. <polygon fill = 'blue' points = '387.3,427.4 388.4,427.4 388.4,426.5 387.3,426.5 '/>
  4097. </g>
  4098. <path stroke='blue' d='M387.3,427.4 L387.3,426.6 L388.3,426.6 L388.3,427.4 L387.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4099. <polygon fill = 'blue' points = '388.3,427.4 389.5,427.4 389.5,426.5 388.3,426.5 '/>
  4100. </g>
  4101. <path stroke='blue' d='M388.3,427.4 L388.3,426.6 L389.4,426.6 L389.4,427.4 L388.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4102. <polygon fill = 'blue' points = '389.4,427.4 390.5,427.4 390.5,426.5 389.4,426.5 '/>
  4103. </g>
  4104. <path stroke='blue' d='M389.4,427.4 L389.4,426.6 L390.4,426.6 L390.4,427.4 L389.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4105. <polygon fill = 'blue' points = '390.4,427.4 391.5,427.4 391.5,415.5 390.4,415.5 '/>
  4106. </g>
  4107. <path stroke='blue' d='M390.4,427.4 L390.4,415.6 L391.4,415.6 L391.4,427.4 L390.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4108. <polygon fill = 'blue' points = '391.4,427.4 392.5,427.4 392.5,426.5 391.4,426.5 '/>
  4109. </g>
  4110. <path stroke='blue' d='M391.4,427.4 L391.4,426.6 L392.4,426.6 L392.4,427.4 L391.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4111. <polygon fill = 'blue' points = '392.4,427.4 393.5,427.4 393.5,426.5 392.4,426.5 '/>
  4112. </g>
  4113. <path stroke='blue' d='M392.4,427.4 L392.4,426.6 L393.4,426.6 L393.4,427.4 L392.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4114. <polygon fill = 'blue' points = '393.4,427.4 394.5,427.4 394.5,426.5 393.4,426.5 '/>
  4115. </g>
  4116. <path stroke='blue' d='M393.4,427.4 L393.4,426.6 L394.4,426.6 L394.4,427.4 L393.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4117. <polygon fill = 'blue' points = '394.4,427.4 395.5,427.4 395.5,426.5 394.4,426.5 '/>
  4118. </g>
  4119. <path stroke='blue' d='M394.4,427.4 L394.4,426.6 L395.4,426.6 L395.4,427.4 L394.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4120. <polygon fill = 'blue' points = '395.4,427.4 396.5,427.4 396.5,426.5 395.4,426.5 '/>
  4121. </g>
  4122. <path stroke='blue' d='M395.4,427.4 L395.4,426.6 L396.4,426.6 L396.4,427.4 L395.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4123. <polygon fill = 'blue' points = '396.4,427.4 397.5,427.4 397.5,426.5 396.4,426.5 '/>
  4124. </g>
  4125. <path stroke='blue' d='M396.4,427.4 L396.4,426.6 L397.4,426.6 L397.4,427.4 L396.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4126. <polygon fill = 'blue' points = '397.4,427.4 398.5,427.4 398.5,426.5 397.4,426.5 '/>
  4127. </g>
  4128. <path stroke='blue' d='M397.4,427.4 L397.4,426.6 L398.4,426.6 L398.4,427.4 L397.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4129. <polygon fill = 'blue' points = '398.4,427.4 399.5,427.4 399.5,426.5 398.4,426.5 '/>
  4130. </g>
  4131. <path stroke='blue' d='M398.4,427.4 L398.4,426.6 L399.4,426.6 L399.4,427.4 L398.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4132. <polygon fill = 'blue' points = '399.4,427.4 400.5,427.4 400.5,415.5 399.4,415.5 '/>
  4133. </g>
  4134. <path stroke='blue' d='M399.4,427.4 L399.4,415.6 L400.4,415.6 L400.4,427.4 L399.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4135. <polygon fill = 'blue' points = '400.4,427.4 401.5,427.4 401.5,418.9 400.4,418.9 '/>
  4136. </g>
  4137. <path stroke='blue' d='M400.4,427.4 L400.4,419.0 L401.4,419.0 L401.4,427.4 L400.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4138. <polygon fill = 'blue' points = '401.4,427.4 402.5,427.4 402.5,395.3 401.4,395.3 '/>
  4139. </g>
  4140. <path stroke='blue' d='M401.4,427.4 L401.4,395.4 L402.4,395.4 L402.4,427.4 L401.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4141. <polygon fill = 'blue' points = '402.4,427.4 403.5,427.4 403.5,426.5 402.4,426.5 '/>
  4142. </g>
  4143. <path stroke='blue' d='M402.4,427.4 L402.4,426.6 L403.4,426.6 L403.4,427.4 L402.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4144. <polygon fill = 'blue' points = '403.4,427.4 404.5,427.4 404.5,426.5 403.4,426.5 '/>
  4145. </g>
  4146. <path stroke='blue' d='M403.4,427.4 L403.4,426.6 L404.4,426.6 L404.4,427.4 L403.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4147. <polygon fill = 'blue' points = '404.4,427.4 405.6,427.4 405.6,426.5 404.4,426.5 '/>
  4148. </g>
  4149. <path stroke='blue' d='M404.4,427.4 L404.4,426.6 L405.5,426.6 L405.5,427.4 L404.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4150. <polygon fill = 'blue' points = '405.5,427.4 406.6,427.4 406.6,426.5 405.5,426.5 '/>
  4151. </g>
  4152. <path stroke='blue' d='M405.5,427.4 L405.5,426.6 L406.5,426.6 L406.5,427.4 L405.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4153. <polygon fill = 'blue' points = '406.5,427.4 407.6,427.4 407.6,426.5 406.5,426.5 '/>
  4154. </g>
  4155. <path stroke='blue' d='M406.5,427.4 L406.5,426.6 L407.5,426.6 L407.5,427.4 L406.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4156. <polygon fill = 'blue' points = '407.5,427.4 408.6,427.4 408.6,426.5 407.5,426.5 '/>
  4157. </g>
  4158. <path stroke='blue' d='M407.5,427.4 L407.5,426.6 L408.5,426.6 L408.5,427.4 L407.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4159. <polygon fill = 'blue' points = '408.5,427.4 409.6,427.4 409.6,426.5 408.5,426.5 '/>
  4160. </g>
  4161. <path stroke='blue' d='M408.5,427.4 L408.5,426.6 L409.5,426.6 L409.5,427.4 L408.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4162. <polygon fill = 'blue' points = '409.5,427.4 410.6,427.4 410.6,426.5 409.5,426.5 '/>
  4163. </g>
  4164. <path stroke='blue' d='M409.5,427.4 L409.5,426.6 L410.5,426.6 L410.5,427.4 L409.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4165. <polygon fill = 'blue' points = '410.5,427.4 411.6,427.4 411.6,426.5 410.5,426.5 '/>
  4166. </g>
  4167. <path stroke='blue' d='M410.5,427.4 L410.5,426.6 L411.5,426.6 L411.5,427.4 L410.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4168. <polygon fill = 'blue' points = '411.5,427.4 412.6,427.4 412.6,426.5 411.5,426.5 '/>
  4169. </g>
  4170. <path stroke='blue' d='M411.5,427.4 L411.5,426.6 L412.5,426.6 L412.5,427.4 L411.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4171. <polygon fill = 'blue' points = '412.5,427.4 413.6,427.4 413.6,421.0 412.5,421.0 '/>
  4172. </g>
  4173. <path stroke='blue' d='M412.5,427.4 L412.5,421.1 L413.5,421.1 L413.5,427.4 L412.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4174. <polygon fill = 'blue' points = '413.5,427.4 414.6,427.4 414.6,410.4 413.5,410.4 '/>
  4175. </g>
  4176. <path stroke='blue' d='M413.5,427.4 L413.5,410.5 L414.5,410.5 L414.5,427.4 L413.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4177. <polygon fill = 'blue' points = '414.5,427.4 415.6,427.4 415.6,423.7 414.5,423.7 '/>
  4178. </g>
  4179. <path stroke='blue' d='M414.5,427.4 L414.5,423.8 L415.5,423.8 L415.5,427.4 L414.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4180. <polygon fill = 'blue' points = '415.5,427.4 416.6,427.4 416.6,396.5 415.5,396.5 '/>
  4181. </g>
  4182. <path stroke='blue' d='M415.5,427.4 L415.5,396.6 L416.5,396.6 L416.5,427.4 L415.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4183. <polygon fill = 'blue' points = '416.5,427.4 417.6,427.4 417.6,390.6 416.5,390.6 '/>
  4184. </g>
  4185. <path stroke='blue' d='M416.5,427.4 L416.5,390.7 L417.5,390.7 L417.5,427.4 L416.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4186. <polygon fill = 'blue' points = '417.5,427.4 418.6,427.4 418.6,387.2 417.5,387.2 '/>
  4187. </g>
  4188. <path stroke='blue' d='M417.5,427.4 L417.5,387.3 L418.5,387.3 L418.5,427.4 L417.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4189. <polygon fill = 'blue' points = '418.5,427.4 419.6,427.4 419.6,403.5 418.5,403.5 '/>
  4190. </g>
  4191. <path stroke='blue' d='M418.5,427.4 L418.5,403.6 L419.5,403.6 L419.5,427.4 L418.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4192. <polygon fill = 'blue' points = '419.5,427.4 420.6,427.4 420.6,411.5 419.5,411.5 '/>
  4193. </g>
  4194. <path stroke='blue' d='M419.5,427.4 L419.5,411.6 L420.5,411.6 L420.5,427.4 L419.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4195. <polygon fill = 'blue' points = '420.5,427.4 421.7,427.4 421.7,426.5 420.5,426.5 '/>
  4196. </g>
  4197. <path stroke='blue' d='M420.5,427.4 L420.5,426.6 L421.6,426.6 L421.6,427.4 L420.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4198. <polygon fill = 'blue' points = '421.6,427.4 422.7,427.4 422.7,426.5 421.6,426.5 '/>
  4199. </g>
  4200. <path stroke='blue' d='M421.6,427.4 L421.6,426.6 L422.6,426.6 L422.6,427.4 L421.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4201. <polygon fill = 'blue' points = '422.6,427.4 423.7,427.4 423.7,426.5 422.6,426.5 '/>
  4202. </g>
  4203. <path stroke='blue' d='M422.6,427.4 L422.6,426.6 L423.6,426.6 L423.6,427.4 L422.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4204. <polygon fill = 'blue' points = '423.6,427.4 424.7,427.4 424.7,426.5 423.6,426.5 '/>
  4205. </g>
  4206. <path stroke='blue' d='M423.6,427.4 L423.6,426.6 L424.6,426.6 L424.6,427.4 L423.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4207. <polygon fill = 'blue' points = '424.6,427.4 425.7,427.4 425.7,426.5 424.6,426.5 '/>
  4208. </g>
  4209. <path stroke='blue' d='M424.6,427.4 L424.6,426.6 L425.6,426.6 L425.6,427.4 L424.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4210. <polygon fill = 'blue' points = '425.6,427.4 426.7,427.4 426.7,426.5 425.6,426.5 '/>
  4211. </g>
  4212. <path stroke='blue' d='M425.6,427.4 L425.6,426.6 L426.6,426.6 L426.6,427.4 L425.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4213. <polygon fill = 'blue' points = '426.6,427.4 427.7,427.4 427.7,426.5 426.6,426.5 '/>
  4214. </g>
  4215. <path stroke='blue' d='M426.6,427.4 L426.6,426.6 L427.6,426.6 L427.6,427.4 L426.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4216. <polygon fill = 'blue' points = '427.6,427.4 428.7,427.4 428.7,412.1 427.6,412.1 '/>
  4217. </g>
  4218. <path stroke='blue' d='M427.6,427.4 L427.6,412.2 L428.6,412.2 L428.6,427.4 L427.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4219. <polygon fill = 'blue' points = '428.6,427.4 429.7,427.4 429.7,411.3 428.6,411.3 '/>
  4220. </g>
  4221. <path stroke='blue' d='M428.6,427.4 L428.6,411.4 L429.6,411.4 L429.6,427.4 L428.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4222. <polygon fill = 'blue' points = '429.6,427.4 430.7,427.4 430.7,426.5 429.6,426.5 '/>
  4223. </g>
  4224. <path stroke='blue' d='M429.6,427.4 L429.6,426.6 L430.6,426.6 L430.6,427.4 L429.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4225. <polygon fill = 'blue' points = '430.6,427.4 431.7,427.4 431.7,426.5 430.6,426.5 '/>
  4226. </g>
  4227. <path stroke='blue' d='M430.6,427.4 L430.6,426.6 L431.6,426.6 L431.6,427.4 L430.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4228. <polygon fill = 'blue' points = '431.6,427.4 432.7,427.4 432.7,426.5 431.6,426.5 '/>
  4229. </g>
  4230. <path stroke='blue' d='M431.6,427.4 L431.6,426.6 L432.6,426.6 L432.6,427.4 L431.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4231. <polygon fill = 'blue' points = '432.6,427.4 433.7,427.4 433.7,426.5 432.6,426.5 '/>
  4232. </g>
  4233. <path stroke='blue' d='M432.6,427.4 L432.6,426.6 L433.6,426.6 L433.6,427.4 L432.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4234. <polygon fill = 'blue' points = '433.6,427.4 434.7,427.4 434.7,426.5 433.6,426.5 '/>
  4235. </g>
  4236. <path stroke='blue' d='M433.6,427.4 L433.6,426.6 L434.6,426.6 L434.6,427.4 L433.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4237. <polygon fill = 'blue' points = '434.6,427.4 435.7,427.4 435.7,426.5 434.6,426.5 '/>
  4238. </g>
  4239. <path stroke='blue' d='M434.6,427.4 L434.6,426.6 L435.6,426.6 L435.6,427.4 L434.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4240. <polygon fill = 'blue' points = '435.6,427.4 436.7,427.4 436.7,426.5 435.6,426.5 '/>
  4241. </g>
  4242. <path stroke='blue' d='M435.6,427.4 L435.6,426.6 L436.6,426.6 L436.6,427.4 L435.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4243. <polygon fill = 'blue' points = '436.6,427.4 437.8,427.4 437.8,426.5 436.6,426.5 '/>
  4244. </g>
  4245. <path stroke='blue' d='M436.6,427.4 L436.6,426.6 L437.7,426.6 L437.7,427.4 L436.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4246. <polygon fill = 'blue' points = '437.7,427.4 438.8,427.4 438.8,426.5 437.7,426.5 '/>
  4247. </g>
  4248. <path stroke='blue' d='M437.7,427.4 L437.7,426.6 L438.7,426.6 L438.7,427.4 L437.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4249. <polygon fill = 'blue' points = '438.7,427.4 439.8,427.4 439.8,426.5 438.7,426.5 '/>
  4250. </g>
  4251. <path stroke='blue' d='M438.7,427.4 L438.7,426.6 L439.7,426.6 L439.7,427.4 L438.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4252. <polygon fill = 'blue' points = '439.7,427.4 440.8,427.4 440.8,426.5 439.7,426.5 '/>
  4253. </g>
  4254. <path stroke='blue' d='M439.7,427.4 L439.7,426.6 L440.7,426.6 L440.7,427.4 L439.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4255. <polygon fill = 'blue' points = '440.7,427.4 441.8,427.4 441.8,424.9 440.7,424.9 '/>
  4256. </g>
  4257. <path stroke='blue' d='M440.7,427.4 L440.7,425.0 L441.7,425.0 L441.7,427.4 L440.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4258. <polygon fill = 'blue' points = '441.7,427.4 442.8,427.4 442.8,426.5 441.7,426.5 '/>
  4259. </g>
  4260. <path stroke='blue' d='M441.7,427.4 L441.7,426.6 L442.7,426.6 L442.7,427.4 L441.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4261. <polygon fill = 'blue' points = '442.7,427.4 443.8,427.4 443.8,426.5 442.7,426.5 '/>
  4262. </g>
  4263. <path stroke='blue' d='M442.7,427.4 L442.7,426.6 L443.7,426.6 L443.7,427.4 L442.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4264. <polygon fill = 'blue' points = '443.7,427.4 444.8,427.4 444.8,426.5 443.7,426.5 '/>
  4265. </g>
  4266. <path stroke='blue' d='M443.7,427.4 L443.7,426.6 L444.7,426.6 L444.7,427.4 L443.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4267. <polygon fill = 'blue' points = '444.7,427.4 445.8,427.4 445.8,426.5 444.7,426.5 '/>
  4268. </g>
  4269. <path stroke='blue' d='M444.7,427.4 L444.7,426.6 L445.7,426.6 L445.7,427.4 L444.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4270. <polygon fill = 'blue' points = '445.7,427.4 446.8,427.4 446.8,409.7 445.7,409.7 '/>
  4271. </g>
  4272. <path stroke='blue' d='M445.7,427.4 L445.7,409.8 L446.7,409.8 L446.7,427.4 L445.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4273. <polygon fill = 'blue' points = '446.7,427.4 447.8,427.4 447.8,396.4 446.7,396.4 '/>
  4274. </g>
  4275. <path stroke='blue' d='M446.7,427.4 L446.7,396.5 L447.7,396.5 L447.7,427.4 L446.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4276. <polygon fill = 'blue' points = '447.7,427.4 448.8,427.4 448.8,426.5 447.7,426.5 '/>
  4277. </g>
  4278. <path stroke='blue' d='M447.7,427.4 L447.7,426.6 L448.7,426.6 L448.7,427.4 L447.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4279. <polygon fill = 'blue' points = '448.7,427.4 449.8,427.4 449.8,426.5 448.7,426.5 '/>
  4280. </g>
  4281. <path stroke='blue' d='M448.7,427.4 L448.7,426.6 L449.7,426.6 L449.7,427.4 L448.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4282. <polygon fill = 'blue' points = '449.7,427.4 450.8,427.4 450.8,426.3 449.7,426.3 '/>
  4283. </g>
  4284. <path stroke='blue' d='M449.7,427.4 L449.7,426.4 L450.7,426.4 L450.7,427.4 L449.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4285. <polygon fill = 'blue' points = '450.7,427.4 451.8,427.4 451.8,426.2 450.7,426.2 '/>
  4286. </g>
  4287. <path stroke='blue' d='M450.7,427.4 L450.7,426.3 L451.7,426.3 L451.7,427.4 L450.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4288. <polygon fill = 'blue' points = '451.7,427.4 452.8,427.4 452.8,426.5 451.7,426.5 '/>
  4289. </g>
  4290. <path stroke='blue' d='M451.7,427.4 L451.7,426.6 L452.7,426.6 L452.7,427.4 L451.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4291. <polygon fill = 'blue' points = '452.7,427.4 453.9,427.4 453.9,426.5 452.7,426.5 '/>
  4292. </g>
  4293. <path stroke='blue' d='M452.7,427.4 L452.7,426.6 L453.8,426.6 L453.8,427.4 L452.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4294. <polygon fill = 'blue' points = '453.8,427.4 454.9,427.4 454.9,420.6 453.8,420.6 '/>
  4295. </g>
  4296. <path stroke='blue' d='M453.8,427.4 L453.8,420.7 L454.8,420.7 L454.8,427.4 L453.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4297. <polygon fill = 'blue' points = '454.8,427.4 455.9,427.4 455.9,426.5 454.8,426.5 '/>
  4298. </g>
  4299. <path stroke='blue' d='M454.8,427.4 L454.8,426.6 L455.8,426.6 L455.8,427.4 L454.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4300. <polygon fill = 'blue' points = '455.8,427.4 456.9,427.4 456.9,426.5 455.8,426.5 '/>
  4301. </g>
  4302. <path stroke='blue' d='M455.8,427.4 L455.8,426.6 L456.8,426.6 L456.8,427.4 L455.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4303. <polygon fill = 'blue' points = '456.8,427.4 457.9,427.4 457.9,426.5 456.8,426.5 '/>
  4304. </g>
  4305. <path stroke='blue' d='M456.8,427.4 L456.8,426.6 L457.8,426.6 L457.8,427.4 L456.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4306. <polygon fill = 'blue' points = '457.8,427.4 458.9,427.4 458.9,426.5 457.8,426.5 '/>
  4307. </g>
  4308. <path stroke='blue' d='M457.8,427.4 L457.8,426.6 L458.8,426.6 L458.8,427.4 L457.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4309. <polygon fill = 'blue' points = '458.8,427.4 459.9,427.4 459.9,426.5 458.8,426.5 '/>
  4310. </g>
  4311. <path stroke='blue' d='M458.8,427.4 L458.8,426.6 L459.8,426.6 L459.8,427.4 L458.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4312. <polygon fill = 'blue' points = '459.8,427.4 460.9,427.4 460.9,426.5 459.8,426.5 '/>
  4313. </g>
  4314. <path stroke='blue' d='M459.8,427.4 L459.8,426.6 L460.8,426.6 L460.8,427.4 L459.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4315. <polygon fill = 'blue' points = '460.8,427.4 461.9,427.4 461.9,426.5 460.8,426.5 '/>
  4316. </g>
  4317. <path stroke='blue' d='M460.8,427.4 L460.8,426.6 L461.8,426.6 L461.8,427.4 L460.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4318. <polygon fill = 'blue' points = '461.8,427.4 462.9,427.4 462.9,425.9 461.8,425.9 '/>
  4319. </g>
  4320. <path stroke='blue' d='M461.8,427.4 L461.8,426.0 L462.8,426.0 L462.8,427.4 L461.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4321. <polygon fill = 'blue' points = '462.8,427.4 463.9,427.4 463.9,426.5 462.8,426.5 '/>
  4322. </g>
  4323. <path stroke='blue' d='M462.8,427.4 L462.8,426.6 L463.8,426.6 L463.8,427.4 L462.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4324. <polygon fill = 'blue' points = '463.8,427.4 464.9,427.4 464.9,426.5 463.8,426.5 '/>
  4325. </g>
  4326. <path stroke='blue' d='M463.8,427.4 L463.8,426.6 L464.8,426.6 L464.8,427.4 L463.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4327. <polygon fill = 'blue' points = '464.8,427.4 465.9,427.4 465.9,426.5 464.8,426.5 '/>
  4328. </g>
  4329. <path stroke='blue' d='M464.8,427.4 L464.8,426.6 L465.8,426.6 L465.8,427.4 L464.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4330. <polygon fill = 'blue' points = '465.8,427.4 466.9,427.4 466.9,426.5 465.8,426.5 '/>
  4331. </g>
  4332. <path stroke='blue' d='M465.8,427.4 L465.8,426.6 L466.8,426.6 L466.8,427.4 L465.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4333. <polygon fill = 'blue' points = '466.8,427.4 467.9,427.4 467.9,426.5 466.8,426.5 '/>
  4334. </g>
  4335. <path stroke='blue' d='M466.8,427.4 L466.8,426.6 L467.8,426.6 L467.8,427.4 L466.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4336. <polygon fill = 'blue' points = '467.8,427.4 468.9,427.4 468.9,426.5 467.8,426.5 '/>
  4337. </g>
  4338. <path stroke='blue' d='M467.8,427.4 L467.8,426.6 L468.8,426.6 L468.8,427.4 L467.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4339. <polygon fill = 'blue' points = '468.8,427.4 470.0,427.4 470.0,426.5 468.8,426.5 '/>
  4340. </g>
  4341. <path stroke='blue' d='M468.8,427.4 L468.8,426.6 L469.9,426.6 L469.9,427.4 L468.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4342. <polygon fill = 'blue' points = '469.9,427.4 471.0,427.4 471.0,426.5 469.9,426.5 '/>
  4343. </g>
  4344. <path stroke='blue' d='M469.9,427.4 L469.9,426.6 L470.9,426.6 L470.9,427.4 L469.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4345. <polygon fill = 'blue' points = '470.9,427.4 472.0,427.4 472.0,426.5 470.9,426.5 '/>
  4346. </g>
  4347. <path stroke='blue' d='M470.9,427.4 L470.9,426.6 L471.9,426.6 L471.9,427.4 L470.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4348. <polygon fill = 'blue' points = '471.9,427.4 473.0,427.4 473.0,426.5 471.9,426.5 '/>
  4349. </g>
  4350. <path stroke='blue' d='M471.9,427.4 L471.9,426.6 L472.9,426.6 L472.9,427.4 L471.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4351. <polygon fill = 'blue' points = '472.9,427.4 474.0,427.4 474.0,426.5 472.9,426.5 '/>
  4352. </g>
  4353. <path stroke='blue' d='M472.9,427.4 L472.9,426.6 L473.9,426.6 L473.9,427.4 L472.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4354. <polygon fill = 'blue' points = '473.9,427.4 475.0,427.4 475.0,426.5 473.9,426.5 '/>
  4355. </g>
  4356. <path stroke='blue' d='M473.9,427.4 L473.9,426.6 L474.9,426.6 L474.9,427.4 L473.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4357. <polygon fill = 'blue' points = '474.9,427.4 476.0,427.4 476.0,426.5 474.9,426.5 '/>
  4358. </g>
  4359. <path stroke='blue' d='M474.9,427.4 L474.9,426.6 L475.9,426.6 L475.9,427.4 L474.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4360. <polygon fill = 'blue' points = '475.9,427.4 477.0,427.4 477.0,426.5 475.9,426.5 '/>
  4361. </g>
  4362. <path stroke='blue' d='M475.9,427.4 L475.9,426.6 L476.9,426.6 L476.9,427.4 L475.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4363. <polygon fill = 'blue' points = '476.9,427.4 478.0,427.4 478.0,426.5 476.9,426.5 '/>
  4364. </g>
  4365. <path stroke='blue' d='M476.9,427.4 L476.9,426.6 L477.9,426.6 L477.9,427.4 L476.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4366. <polygon fill = 'blue' points = '477.9,427.4 479.0,427.4 479.0,426.5 477.9,426.5 '/>
  4367. </g>
  4368. <path stroke='blue' d='M477.9,427.4 L477.9,426.6 L478.9,426.6 L478.9,427.4 L477.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4369. <polygon fill = 'blue' points = '478.9,427.4 480.0,427.4 480.0,426.5 478.9,426.5 '/>
  4370. </g>
  4371. <path stroke='blue' d='M478.9,427.4 L478.9,426.6 L479.9,426.6 L479.9,427.4 L478.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4372. <polygon fill = 'blue' points = '479.9,427.4 481.0,427.4 481.0,426.5 479.9,426.5 '/>
  4373. </g>
  4374. <path stroke='blue' d='M479.9,427.4 L479.9,426.6 L480.9,426.6 L480.9,427.4 L479.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4375. <polygon fill = 'blue' points = '480.9,427.4 482.0,427.4 482.0,426.5 480.9,426.5 '/>
  4376. </g>
  4377. <path stroke='blue' d='M480.9,427.4 L480.9,426.6 L481.9,426.6 L481.9,427.4 L480.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4378. <polygon fill = 'blue' points = '481.9,427.4 483.0,427.4 483.0,405.0 481.9,405.0 '/>
  4379. </g>
  4380. <path stroke='blue' d='M481.9,427.4 L481.9,405.1 L482.9,405.1 L482.9,427.4 L481.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4381. <polygon fill = 'blue' points = '482.9,427.4 484.0,427.4 484.0,426.5 482.9,426.5 '/>
  4382. </g>
  4383. <path stroke='blue' d='M482.9,427.4 L482.9,426.6 L483.9,426.6 L483.9,427.4 L482.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4384. <polygon fill = 'blue' points = '483.9,427.4 485.0,427.4 485.0,426.5 483.9,426.5 '/>
  4385. </g>
  4386. <path stroke='blue' d='M483.9,427.4 L483.9,426.6 L484.9,426.6 L484.9,427.4 L483.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4387. <polygon fill = 'blue' points = '484.9,427.4 486.1,427.4 486.1,426.5 484.9,426.5 '/>
  4388. </g>
  4389. <path stroke='blue' d='M484.9,427.4 L484.9,426.6 L486.0,426.6 L486.0,427.4 L484.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4390. <polygon fill = 'blue' points = '486.0,427.4 487.1,427.4 487.1,426.5 486.0,426.5 '/>
  4391. </g>
  4392. <path stroke='blue' d='M486.0,427.4 L486.0,426.6 L487.0,426.6 L487.0,427.4 L486.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4393. <polygon fill = 'blue' points = '487.0,427.4 488.1,427.4 488.1,401.7 487.0,401.7 '/>
  4394. </g>
  4395. <path stroke='blue' d='M487.0,427.4 L487.0,401.8 L488.0,401.8 L488.0,427.4 L487.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4396. <polygon fill = 'blue' points = '488.0,427.4 489.1,427.4 489.1,397.6 488.0,397.6 '/>
  4397. </g>
  4398. <path stroke='blue' d='M488.0,427.4 L488.0,397.7 L489.0,397.7 L489.0,427.4 L488.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4399. <polygon fill = 'blue' points = '489.0,427.4 490.1,427.4 490.1,394.9 489.0,394.9 '/>
  4400. </g>
  4401. <path stroke='blue' d='M489.0,427.4 L489.0,395.0 L490.0,395.0 L490.0,427.4 L489.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4402. <polygon fill = 'blue' points = '490.0,427.4 491.1,427.4 491.1,386.1 490.0,386.1 '/>
  4403. </g>
  4404. <path stroke='blue' d='M490.0,427.4 L490.0,386.2 L491.0,386.2 L491.0,427.4 L490.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4405. <polygon fill = 'blue' points = '491.0,427.4 492.1,427.4 492.1,368.1 491.0,368.1 '/>
  4406. </g>
  4407. <path stroke='blue' d='M491.0,427.4 L491.0,368.2 L492.0,368.2 L492.0,427.4 L491.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4408. <polygon fill = 'blue' points = '492.0,427.4 493.1,427.4 493.1,415.8 492.0,415.8 '/>
  4409. </g>
  4410. <path stroke='blue' d='M492.0,427.4 L492.0,415.9 L493.0,415.9 L493.0,427.4 L492.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4411. <polygon fill = 'blue' points = '493.0,427.4 494.1,427.4 494.1,426.5 493.0,426.5 '/>
  4412. </g>
  4413. <path stroke='blue' d='M493.0,427.4 L493.0,426.6 L494.0,426.6 L494.0,427.4 L493.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4414. <polygon fill = 'blue' points = '494.0,427.4 495.1,427.4 495.1,426.5 494.0,426.5 '/>
  4415. </g>
  4416. <path stroke='blue' d='M494.0,427.4 L494.0,426.6 L495.0,426.6 L495.0,427.4 L494.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4417. <polygon fill = 'blue' points = '495.0,427.4 496.1,427.4 496.1,426.5 495.0,426.5 '/>
  4418. </g>
  4419. <path stroke='blue' d='M495.0,427.4 L495.0,426.6 L496.0,426.6 L496.0,427.4 L495.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4420. <polygon fill = 'blue' points = '496.0,427.4 497.1,427.4 497.1,426.5 496.0,426.5 '/>
  4421. </g>
  4422. <path stroke='blue' d='M496.0,427.4 L496.0,426.6 L497.0,426.6 L497.0,427.4 L496.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4423. <polygon fill = 'blue' points = '497.0,427.4 498.1,427.4 498.1,426.5 497.0,426.5 '/>
  4424. </g>
  4425. <path stroke='blue' d='M497.0,427.4 L497.0,426.6 L498.0,426.6 L498.0,427.4 L497.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4426. <polygon fill = 'blue' points = '498.0,427.4 499.1,427.4 499.1,426.5 498.0,426.5 '/>
  4427. </g>
  4428. <path stroke='blue' d='M498.0,427.4 L498.0,426.6 L499.0,426.6 L499.0,427.4 L498.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4429. <polygon fill = 'blue' points = '499.0,427.4 500.1,427.4 500.1,426.5 499.0,426.5 '/>
  4430. </g>
  4431. <path stroke='blue' d='M499.0,427.4 L499.0,426.6 L500.0,426.6 L500.0,427.4 L499.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4432. <polygon fill = 'blue' points = '500.0,427.4 501.1,427.4 501.1,426.5 500.0,426.5 '/>
  4433. </g>
  4434. <path stroke='blue' d='M500.0,427.4 L500.0,426.6 L501.0,426.6 L501.0,427.4 L500.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4435. <polygon fill = 'blue' points = '501.0,427.4 502.2,427.4 502.2,426.5 501.0,426.5 '/>
  4436. </g>
  4437. <path stroke='blue' d='M501.0,427.4 L501.0,426.6 L502.1,426.6 L502.1,427.4 L501.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4438. <polygon fill = 'blue' points = '502.1,427.4 503.2,427.4 503.2,426.5 502.1,426.5 '/>
  4439. </g>
  4440. <path stroke='blue' d='M502.1,427.4 L502.1,426.6 L503.1,426.6 L503.1,427.4 L502.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4441. <polygon fill = 'blue' points = '503.1,427.4 504.2,427.4 504.2,426.5 503.1,426.5 '/>
  4442. </g>
  4443. <path stroke='blue' d='M503.1,427.4 L503.1,426.6 L504.1,426.6 L504.1,427.4 L503.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4444. <polygon fill = 'blue' points = '504.1,427.4 505.2,427.4 505.2,426.5 504.1,426.5 '/>
  4445. </g>
  4446. <path stroke='blue' d='M504.1,427.4 L504.1,426.6 L505.1,426.6 L505.1,427.4 L504.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4447. <polygon fill = 'blue' points = '505.1,427.4 506.2,427.4 506.2,426.5 505.1,426.5 '/>
  4448. </g>
  4449. <path stroke='blue' d='M505.1,427.4 L505.1,426.6 L506.1,426.6 L506.1,427.4 L505.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4450. <polygon fill = 'blue' points = '506.1,427.4 507.2,427.4 507.2,426.5 506.1,426.5 '/>
  4451. </g>
  4452. <path stroke='blue' d='M506.1,427.4 L506.1,426.6 L507.1,426.6 L507.1,427.4 L506.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4453. <polygon fill = 'blue' points = '507.1,427.4 508.2,427.4 508.2,426.5 507.1,426.5 '/>
  4454. </g>
  4455. <path stroke='blue' d='M507.1,427.4 L507.1,426.6 L508.1,426.6 L508.1,427.4 L507.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4456. <polygon fill = 'blue' points = '508.1,427.4 509.2,427.4 509.2,402.9 508.1,402.9 '/>
  4457. </g>
  4458. <path stroke='blue' d='M508.1,427.4 L508.1,403.0 L509.1,403.0 L509.1,427.4 L508.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4459. <polygon fill = 'blue' points = '509.1,427.4 510.2,427.4 510.2,404.1 509.1,404.1 '/>
  4460. </g>
  4461. <path stroke='blue' d='M509.1,427.4 L509.1,404.2 L510.1,404.2 L510.1,427.4 L509.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4462. <polygon fill = 'blue' points = '510.1,427.4 511.2,427.4 511.2,405.2 510.1,405.2 '/>
  4463. </g>
  4464. <path stroke='blue' d='M510.1,427.4 L510.1,405.3 L511.1,405.3 L511.1,427.4 L510.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4465. <polygon fill = 'blue' points = '511.1,427.4 512.2,427.4 512.2,426.5 511.1,426.5 '/>
  4466. </g>
  4467. <path stroke='blue' d='M511.1,427.4 L511.1,426.6 L512.1,426.6 L512.1,427.4 L511.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4468. <polygon fill = 'blue' points = '512.1,427.4 513.2,427.4 513.2,426.5 512.1,426.5 '/>
  4469. </g>
  4470. <path stroke='blue' d='M512.1,427.4 L512.1,426.6 L513.1,426.6 L513.1,427.4 L512.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4471. <polygon fill = 'blue' points = '513.1,427.4 514.2,427.4 514.2,426.5 513.1,426.5 '/>
  4472. </g>
  4473. <path stroke='blue' d='M513.1,427.4 L513.1,426.6 L514.1,426.6 L514.1,427.4 L513.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4474. <polygon fill = 'blue' points = '514.1,427.4 515.2,427.4 515.2,426.5 514.1,426.5 '/>
  4475. </g>
  4476. <path stroke='blue' d='M514.1,427.4 L514.1,426.6 L515.1,426.6 L515.1,427.4 L514.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4477. <polygon fill = 'blue' points = '515.1,427.4 516.2,427.4 516.2,426.5 515.1,426.5 '/>
  4478. </g>
  4479. <path stroke='blue' d='M515.1,427.4 L515.1,426.6 L516.1,426.6 L516.1,427.4 L515.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4480. <polygon fill = 'blue' points = '516.1,427.4 517.2,427.4 517.2,426.5 516.1,426.5 '/>
  4481. </g>
  4482. <path stroke='blue' d='M516.1,427.4 L516.1,426.6 L517.1,426.6 L517.1,427.4 L516.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4483. <polygon fill = 'blue' points = '517.1,427.4 518.2,427.4 518.2,426.5 517.1,426.5 '/>
  4484. </g>
  4485. <path stroke='blue' d='M517.1,427.4 L517.1,426.6 L518.1,426.6 L518.1,427.4 L517.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4486. <polygon fill = 'blue' points = '518.1,427.4 519.3,427.4 519.3,426.5 518.1,426.5 '/>
  4487. </g>
  4488. <path stroke='blue' d='M518.1,427.4 L518.1,426.6 L519.2,426.6 L519.2,427.4 L518.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4489. <polygon fill = 'blue' points = '519.2,427.4 520.3,427.4 520.3,426.5 519.2,426.5 '/>
  4490. </g>
  4491. <path stroke='blue' d='M519.2,427.4 L519.2,426.6 L520.2,426.6 L520.2,427.4 L519.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4492. <polygon fill = 'blue' points = '520.2,427.4 521.3,427.4 521.3,426.5 520.2,426.5 '/>
  4493. </g>
  4494. <path stroke='blue' d='M520.2,427.4 L520.2,426.6 L521.2,426.6 L521.2,427.4 L520.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4495. <polygon fill = 'blue' points = '521.2,427.4 522.3,427.4 522.3,426.5 521.2,426.5 '/>
  4496. </g>
  4497. <path stroke='blue' d='M521.2,427.4 L521.2,426.6 L522.2,426.6 L522.2,427.4 L521.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4498. <polygon fill = 'blue' points = '522.2,427.4 523.3,427.4 523.3,426.5 522.2,426.5 '/>
  4499. </g>
  4500. <path stroke='blue' d='M522.2,427.4 L522.2,426.6 L523.2,426.6 L523.2,427.4 L522.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4501. <polygon fill = 'blue' points = '523.2,427.4 524.3,427.4 524.3,426.5 523.2,426.5 '/>
  4502. </g>
  4503. <path stroke='blue' d='M523.2,427.4 L523.2,426.6 L524.2,426.6 L524.2,427.4 L523.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4504. <polygon fill = 'blue' points = '524.2,427.4 525.3,427.4 525.3,426.5 524.2,426.5 '/>
  4505. </g>
  4506. <path stroke='blue' d='M524.2,427.4 L524.2,426.6 L525.2,426.6 L525.2,427.4 L524.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4507. <polygon fill = 'blue' points = '525.2,427.4 526.3,427.4 526.3,426.5 525.2,426.5 '/>
  4508. </g>
  4509. <path stroke='blue' d='M525.2,427.4 L525.2,426.6 L526.2,426.6 L526.2,427.4 L525.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4510. <polygon fill = 'blue' points = '526.2,427.4 527.3,427.4 527.3,426.5 526.2,426.5 '/>
  4511. </g>
  4512. <path stroke='blue' d='M526.2,427.4 L526.2,426.6 L527.2,426.6 L527.2,427.4 L526.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4513. <polygon fill = 'blue' points = '527.2,427.4 528.3,427.4 528.3,426.5 527.2,426.5 '/>
  4514. </g>
  4515. <path stroke='blue' d='M527.2,427.4 L527.2,426.6 L528.2,426.6 L528.2,427.4 L527.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4516. <polygon fill = 'blue' points = '528.2,427.4 529.3,427.4 529.3,426.5 528.2,426.5 '/>
  4517. </g>
  4518. <path stroke='blue' d='M528.2,427.4 L528.2,426.6 L529.2,426.6 L529.2,427.4 L528.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4519. <polygon fill = 'blue' points = '529.2,427.4 530.3,427.4 530.3,426.5 529.2,426.5 '/>
  4520. </g>
  4521. <path stroke='blue' d='M529.2,427.4 L529.2,426.6 L530.2,426.6 L530.2,427.4 L529.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4522. <polygon fill = 'blue' points = '530.2,427.4 531.3,427.4 531.3,426.5 530.2,426.5 '/>
  4523. </g>
  4524. <path stroke='blue' d='M530.2,427.4 L530.2,426.6 L531.2,426.6 L531.2,427.4 L530.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4525. <polygon fill = 'blue' points = '531.2,427.4 532.3,427.4 532.3,426.1 531.2,426.1 '/>
  4526. </g>
  4527. <path stroke='blue' d='M531.2,427.4 L531.2,426.2 L532.2,426.2 L532.2,427.4 L531.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4528. <polygon fill = 'blue' points = '532.2,427.4 533.3,427.4 533.3,407.6 532.2,407.6 '/>
  4529. </g>
  4530. <path stroke='blue' d='M532.2,427.4 L532.2,407.7 L533.2,407.7 L533.2,427.4 L532.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4531. <polygon fill = 'blue' points = '533.2,427.4 534.3,427.4 534.3,414.7 533.2,414.7 '/>
  4532. </g>
  4533. <path stroke='blue' d='M533.2,427.4 L533.2,414.8 L534.2,414.8 L534.2,427.4 L533.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4534. <polygon fill = 'blue' points = '534.2,427.4 535.4,427.4 535.4,422.1 534.2,422.1 '/>
  4535. </g>
  4536. <path stroke='blue' d='M534.2,427.4 L534.2,422.2 L535.3,422.2 L535.3,427.4 L534.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4537. <polygon fill = 'blue' points = '535.3,427.4 536.4,427.4 536.4,409.8 535.3,409.8 '/>
  4538. </g>
  4539. <path stroke='blue' d='M535.3,427.4 L535.3,409.9 L536.3,409.9 L536.3,427.4 L535.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4540. <polygon fill = 'blue' points = '536.3,427.4 537.4,427.4 537.4,426.5 536.3,426.5 '/>
  4541. </g>
  4542. <path stroke='blue' d='M536.3,427.4 L536.3,426.6 L537.3,426.6 L537.3,427.4 L536.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4543. <polygon fill = 'blue' points = '537.3,427.4 538.4,427.4 538.4,426.5 537.3,426.5 '/>
  4544. </g>
  4545. <path stroke='blue' d='M537.3,427.4 L537.3,426.6 L538.3,426.6 L538.3,427.4 L537.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4546. <polygon fill = 'blue' points = '538.3,427.4 539.4,427.4 539.4,426.5 538.3,426.5 '/>
  4547. </g>
  4548. <path stroke='blue' d='M538.3,427.4 L538.3,426.6 L539.3,426.6 L539.3,427.4 L538.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4549. <polygon fill = 'blue' points = '539.3,427.4 540.4,427.4 540.4,426.5 539.3,426.5 '/>
  4550. </g>
  4551. <path stroke='blue' d='M539.3,427.4 L539.3,426.6 L540.3,426.6 L540.3,427.4 L539.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4552. <polygon fill = 'blue' points = '540.3,427.4 541.4,427.4 541.4,426.5 540.3,426.5 '/>
  4553. </g>
  4554. <path stroke='blue' d='M540.3,427.4 L540.3,426.6 L541.3,426.6 L541.3,427.4 L540.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4555. <polygon fill = 'blue' points = '541.3,427.4 542.4,427.4 542.4,426.5 541.3,426.5 '/>
  4556. </g>
  4557. <path stroke='blue' d='M541.3,427.4 L541.3,426.6 L542.3,426.6 L542.3,427.4 L541.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4558. <polygon fill = 'blue' points = '542.3,427.4 543.4,427.4 543.4,426.5 542.3,426.5 '/>
  4559. </g>
  4560. <path stroke='blue' d='M542.3,427.4 L542.3,426.6 L543.3,426.6 L543.3,427.4 L542.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4561. <polygon fill = 'blue' points = '543.3,427.4 544.4,427.4 544.4,426.5 543.3,426.5 '/>
  4562. </g>
  4563. <path stroke='blue' d='M543.3,427.4 L543.3,426.6 L544.3,426.6 L544.3,427.4 L543.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4564. <polygon fill = 'blue' points = '544.3,427.4 545.4,427.4 545.4,426.5 544.3,426.5 '/>
  4565. </g>
  4566. <path stroke='blue' d='M544.3,427.4 L544.3,426.6 L545.3,426.6 L545.3,427.4 L544.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4567. <polygon fill = 'blue' points = '545.3,427.4 546.4,427.4 546.4,426.5 545.3,426.5 '/>
  4568. </g>
  4569. <path stroke='blue' d='M545.3,427.4 L545.3,426.6 L546.3,426.6 L546.3,427.4 L545.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4570. <polygon fill = 'blue' points = '546.3,427.4 547.4,427.4 547.4,426.5 546.3,426.5 '/>
  4571. </g>
  4572. <path stroke='blue' d='M546.3,427.4 L546.3,426.6 L547.3,426.6 L547.3,427.4 L546.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4573. <polygon fill = 'blue' points = '547.3,427.4 548.4,427.4 548.4,426.5 547.3,426.5 '/>
  4574. </g>
  4575. <path stroke='blue' d='M547.3,427.4 L547.3,426.6 L548.3,426.6 L548.3,427.4 L547.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4576. <polygon fill = 'blue' points = '548.3,427.4 549.4,427.4 549.4,426.5 548.3,426.5 '/>
  4577. </g>
  4578. <path stroke='blue' d='M548.3,427.4 L548.3,426.6 L549.3,426.6 L549.3,427.4 L548.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4579. <polygon fill = 'blue' points = '549.3,427.4 550.4,427.4 550.4,426.5 549.3,426.5 '/>
  4580. </g>
  4581. <path stroke='blue' d='M549.3,427.4 L549.3,426.6 L550.3,426.6 L550.3,427.4 L549.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4582. <polygon fill = 'blue' points = '550.3,427.4 551.5,427.4 551.5,426.5 550.3,426.5 '/>
  4583. </g>
  4584. <path stroke='blue' d='M550.3,427.4 L550.3,426.6 L551.4,426.6 L551.4,427.4 L550.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4585. <polygon fill = 'blue' points = '551.4,427.4 552.5,427.4 552.5,426.5 551.4,426.5 '/>
  4586. </g>
  4587. <path stroke='blue' d='M551.4,427.4 L551.4,426.6 L552.4,426.6 L552.4,427.4 L551.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4588. <polygon fill = 'blue' points = '552.4,427.4 553.5,427.4 553.5,426.5 552.4,426.5 '/>
  4589. </g>
  4590. <path stroke='blue' d='M552.4,427.4 L552.4,426.6 L553.4,426.6 L553.4,427.4 L552.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4591. <polygon fill = 'blue' points = '553.4,427.4 554.5,427.4 554.5,426.5 553.4,426.5 '/>
  4592. </g>
  4593. <path stroke='blue' d='M553.4,427.4 L553.4,426.6 L554.4,426.6 L554.4,427.4 L553.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4594. <polygon fill = 'blue' points = '554.4,427.4 555.5,427.4 555.5,426.5 554.4,426.5 '/>
  4595. </g>
  4596. <path stroke='blue' d='M554.4,427.4 L554.4,426.6 L555.4,426.6 L555.4,427.4 L554.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4597. <polygon fill = 'blue' points = '555.4,427.4 556.5,427.4 556.5,426.5 555.4,426.5 '/>
  4598. </g>
  4599. <path stroke='blue' d='M555.4,427.4 L555.4,426.6 L556.4,426.6 L556.4,427.4 L555.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4600. <polygon fill = 'blue' points = '556.4,427.4 557.5,427.4 557.5,426.5 556.4,426.5 '/>
  4601. </g>
  4602. <path stroke='blue' d='M556.4,427.4 L556.4,426.6 L557.4,426.6 L557.4,427.4 L556.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4603. <polygon fill = 'blue' points = '557.4,427.4 558.5,427.4 558.5,426.5 557.4,426.5 '/>
  4604. </g>
  4605. <path stroke='blue' d='M557.4,427.4 L557.4,426.6 L558.4,426.6 L558.4,427.4 L557.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4606. <polygon fill = 'blue' points = '558.4,427.4 559.5,427.4 559.5,424.3 558.4,424.3 '/>
  4607. </g>
  4608. <path stroke='blue' d='M558.4,427.4 L558.4,424.4 L559.4,424.4 L559.4,427.4 L558.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4609. <polygon fill = 'blue' points = '559.4,427.4 560.5,427.4 560.5,426.5 559.4,426.5 '/>
  4610. </g>
  4611. <path stroke='blue' d='M559.4,427.4 L559.4,426.6 L560.4,426.6 L560.4,427.4 L559.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4612. <polygon fill = 'blue' points = '560.4,427.4 561.5,427.4 561.5,426.5 560.4,426.5 '/>
  4613. </g>
  4614. <path stroke='blue' d='M560.4,427.4 L560.4,426.6 L561.4,426.6 L561.4,427.4 L560.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4615. <polygon fill = 'blue' points = '561.4,427.4 562.5,427.4 562.5,426.5 561.4,426.5 '/>
  4616. </g>
  4617. <path stroke='blue' d='M561.4,427.4 L561.4,426.6 L562.4,426.6 L562.4,427.4 L561.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4618. <polygon fill = 'blue' points = '562.4,427.4 563.5,427.4 563.5,426.5 562.4,426.5 '/>
  4619. </g>
  4620. <path stroke='blue' d='M562.4,427.4 L562.4,426.6 L563.4,426.6 L563.4,427.4 L562.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4621. <polygon fill = 'blue' points = '563.4,427.4 564.5,427.4 564.5,426.5 563.4,426.5 '/>
  4622. </g>
  4623. <path stroke='blue' d='M563.4,427.4 L563.4,426.6 L564.4,426.6 L564.4,427.4 L563.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4624. <polygon fill = 'blue' points = '564.4,427.4 565.5,427.4 565.5,426.5 564.4,426.5 '/>
  4625. </g>
  4626. <path stroke='blue' d='M564.4,427.4 L564.4,426.6 L565.4,426.6 L565.4,427.4 L564.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4627. <polygon fill = 'blue' points = '565.4,427.4 566.5,427.4 566.5,426.5 565.4,426.5 '/>
  4628. </g>
  4629. <path stroke='blue' d='M565.4,427.4 L565.4,426.6 L566.4,426.6 L566.4,427.4 L565.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4630. <polygon fill = 'blue' points = '566.4,427.4 567.6,427.4 567.6,426.5 566.4,426.5 '/>
  4631. </g>
  4632. <path stroke='blue' d='M566.4,427.4 L566.4,426.6 L567.5,426.6 L567.5,427.4 L566.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4633. <polygon fill = 'blue' points = '567.5,427.4 568.6,427.4 568.6,426.5 567.5,426.5 '/>
  4634. </g>
  4635. <path stroke='blue' d='M567.5,427.4 L567.5,426.6 L568.5,426.6 L568.5,427.4 L567.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4636. <polygon fill = 'blue' points = '568.5,427.4 569.6,427.4 569.6,418.4 568.5,418.4 '/>
  4637. </g>
  4638. <path stroke='blue' d='M568.5,427.4 L568.5,418.5 L569.5,418.5 L569.5,427.4 L568.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4639. <polygon fill = 'blue' points = '569.5,427.4 570.6,427.4 570.6,426.5 569.5,426.5 '/>
  4640. </g>
  4641. <path stroke='blue' d='M569.5,427.4 L569.5,426.6 L570.5,426.6 L570.5,427.4 L569.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4642. <polygon fill = 'blue' points = '570.5,427.4 571.6,427.4 571.6,426.5 570.5,426.5 '/>
  4643. </g>
  4644. <path stroke='blue' d='M570.5,427.4 L570.5,426.6 L571.5,426.6 L571.5,427.4 L570.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4645. <polygon fill = 'blue' points = '571.5,427.4 572.6,427.4 572.6,426.5 571.5,426.5 '/>
  4646. </g>
  4647. <path stroke='blue' d='M571.5,427.4 L571.5,426.6 L572.5,426.6 L572.5,427.4 L571.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4648. <polygon fill = 'blue' points = '572.5,427.4 573.6,427.4 573.6,426.5 572.5,426.5 '/>
  4649. </g>
  4650. <path stroke='blue' d='M572.5,427.4 L572.5,426.6 L573.5,426.6 L573.5,427.4 L572.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4651. <polygon fill = 'blue' points = '573.5,427.4 574.6,427.4 574.6,426.5 573.5,426.5 '/>
  4652. </g>
  4653. <path stroke='blue' d='M573.5,427.4 L573.5,426.6 L574.5,426.6 L574.5,427.4 L573.5,427.4 Z '/></g>
  4654. </g>
  4655. <g id="gnuplot_plot_4" ><title>5</title>
  4656. <g fill="none" color="black" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
  4657. <g transform="translate(398.8,466.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
  4658. <text><tspan font-family="Arial" >5</tspan></text>
  4659. </g>
  4660. </g>
  4661. <g fill="none" color="black" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
  4662. <g stroke='none' shape-rendering='crispEdges'>
  4663. <polygon fill = 'cyan' points = '407.1,466.5 449.3,466.5 449.3,457.5 407.1,457.5 '/>
  4664. </g>
  4665. <path stroke='cyan' d='M407.1,466.5 L449.3,466.5 L449.3,457.5 L407.1,457.5 L407.1,466.5 Z '/></g>
  4666. <g fill="none" color="black" stroke="currentColor" stroke-width="4.00" stroke-linecap="butt" stroke-linejoin="miter">
  4667. <g stroke='none' shape-rendering='crispEdges'>
  4668. <polygon fill = 'cyan' points = '71.9,427.4 72.5,427.4 72.5,426.5 71.9,426.5 '/>
  4669. </g>
  4670. <path stroke='cyan' d='M71.9,427.4 L71.9,426.6 L72.4,426.6 L72.4,427.4 L71.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4671. <polygon fill = 'cyan' points = '72.4,427.4 73.5,427.4 73.5,426.5 72.4,426.5 '/>
  4672. </g>
  4673. <path stroke='cyan' d='M72.4,427.4 L72.4,426.6 L73.4,426.6 L73.4,427.4 L72.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4674. <polygon fill = 'cyan' points = '73.4,427.4 74.5,427.4 74.5,426.5 73.4,426.5 '/>
  4675. </g>
  4676. <path stroke='cyan' d='M73.4,427.4 L73.4,426.6 L74.4,426.6 L74.4,427.4 L73.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4677. <polygon fill = 'cyan' points = '74.4,427.4 75.5,427.4 75.5,426.5 74.4,426.5 '/>
  4678. </g>
  4679. <path stroke='cyan' d='M74.4,427.4 L74.4,426.6 L75.4,426.6 L75.4,427.4 L74.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4680. <polygon fill = 'cyan' points = '75.4,427.4 76.5,427.4 76.5,426.5 75.4,426.5 '/>
  4681. </g>
  4682. <path stroke='cyan' d='M75.4,427.4 L75.4,426.6 L76.4,426.6 L76.4,427.4 L75.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4683. <polygon fill = 'cyan' points = '76.4,427.4 77.5,427.4 77.5,426.5 76.4,426.5 '/>
  4684. </g>
  4685. <path stroke='cyan' d='M76.4,427.4 L76.4,426.6 L77.4,426.6 L77.4,427.4 L76.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4686. <polygon fill = 'cyan' points = '77.4,427.4 78.5,427.4 78.5,426.5 77.4,426.5 '/>
  4687. </g>
  4688. <path stroke='cyan' d='M77.4,427.4 L77.4,426.6 L78.4,426.6 L78.4,427.4 L77.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4689. <polygon fill = 'cyan' points = '78.4,427.4 79.5,427.4 79.5,426.5 78.4,426.5 '/>
  4690. </g>
  4691. <path stroke='cyan' d='M78.4,427.4 L78.4,426.6 L79.4,426.6 L79.4,427.4 L78.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4692. <polygon fill = 'cyan' points = '79.4,427.4 80.6,427.4 80.6,426.5 79.4,426.5 '/>
  4693. </g>
  4694. <path stroke='cyan' d='M79.4,427.4 L79.4,426.6 L80.5,426.6 L80.5,427.4 L79.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4695. <polygon fill = 'cyan' points = '80.5,427.4 81.6,427.4 81.6,426.4 80.5,426.4 '/>
  4696. </g>
  4697. <path stroke='cyan' d='M80.5,427.4 L80.5,426.5 L81.5,426.5 L81.5,427.4 L80.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4698. <polygon fill = 'cyan' points = '81.5,427.4 82.6,427.4 82.6,426.5 81.5,426.5 '/>
  4699. </g>
  4700. <path stroke='cyan' d='M81.5,427.4 L81.5,426.6 L82.5,426.6 L82.5,427.4 L81.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4701. <polygon fill = 'cyan' points = '82.5,427.4 83.6,427.4 83.6,426.5 82.5,426.5 '/>
  4702. </g>
  4703. <path stroke='cyan' d='M82.5,427.4 L82.5,426.6 L83.5,426.6 L83.5,427.4 L82.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4704. <polygon fill = 'cyan' points = '83.5,427.4 84.6,427.4 84.6,426.5 83.5,426.5 '/>
  4705. </g>
  4706. <path stroke='cyan' d='M83.5,427.4 L83.5,426.6 L84.5,426.6 L84.5,427.4 L83.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4707. <polygon fill = 'cyan' points = '84.5,427.4 85.6,427.4 85.6,426.5 84.5,426.5 '/>
  4708. </g>
  4709. <path stroke='cyan' d='M84.5,427.4 L84.5,426.6 L85.5,426.6 L85.5,427.4 L84.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4710. <polygon fill = 'cyan' points = '85.5,427.4 86.6,427.4 86.6,426.4 85.5,426.4 '/>
  4711. </g>
  4712. <path stroke='cyan' d='M85.5,427.4 L85.5,426.5 L86.5,426.5 L86.5,427.4 L85.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4713. <polygon fill = 'cyan' points = '86.5,427.4 87.6,427.4 87.6,426.5 86.5,426.5 '/>
  4714. </g>
  4715. <path stroke='cyan' d='M86.5,427.4 L86.5,426.6 L87.5,426.6 L87.5,427.4 L86.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4716. <polygon fill = 'cyan' points = '87.5,427.4 88.6,427.4 88.6,407.9 87.5,407.9 '/>
  4717. </g>
  4718. <path stroke='cyan' d='M87.5,427.4 L87.5,408.0 L88.5,408.0 L88.5,427.4 L87.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4719. <polygon fill = 'cyan' points = '88.5,427.4 89.6,427.4 89.6,421.5 88.5,421.5 '/>
  4720. </g>
  4721. <path stroke='cyan' d='M88.5,427.4 L88.5,421.6 L89.5,421.6 L89.5,427.4 L88.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4722. <polygon fill = 'cyan' points = '89.5,427.4 90.6,427.4 90.6,407.5 89.5,407.5 '/>
  4723. </g>
  4724. <path stroke='cyan' d='M89.5,427.4 L89.5,407.6 L90.5,407.6 L90.5,427.4 L89.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4725. <polygon fill = 'cyan' points = '90.5,427.4 91.6,427.4 91.6,403.4 90.5,403.4 '/>
  4726. </g>
  4727. <path stroke='cyan' d='M90.5,427.4 L90.5,403.5 L91.5,403.5 L91.5,427.4 L90.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4728. <polygon fill = 'cyan' points = '91.5,427.4 92.6,427.4 92.6,418.8 91.5,418.8 '/>
  4729. </g>
  4730. <path stroke='cyan' d='M91.5,427.4 L91.5,418.9 L92.5,418.9 L92.5,427.4 L91.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4731. <polygon fill = 'cyan' points = '92.5,427.4 93.6,427.4 93.6,398.6 92.5,398.6 '/>
  4732. </g>
  4733. <path stroke='cyan' d='M92.5,427.4 L92.5,398.7 L93.5,398.7 L93.5,427.4 L92.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4734. <polygon fill = 'cyan' points = '93.5,427.4 94.6,427.4 94.6,399.2 93.5,399.2 '/>
  4735. </g>
  4736. <path stroke='cyan' d='M93.5,427.4 L93.5,399.3 L94.5,399.3 L94.5,427.4 L93.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4737. <polygon fill = 'cyan' points = '94.5,427.4 95.6,427.4 95.6,426.5 94.5,426.5 '/>
  4738. </g>
  4739. <path stroke='cyan' d='M94.5,427.4 L94.5,426.6 L95.5,426.6 L95.5,427.4 L94.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4740. <polygon fill = 'cyan' points = '95.5,427.4 96.7,427.4 96.7,426.5 95.5,426.5 '/>
  4741. </g>
  4742. <path stroke='cyan' d='M95.5,427.4 L95.5,426.6 L96.6,426.6 L96.6,427.4 L95.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4743. <polygon fill = 'cyan' points = '96.6,427.4 97.7,427.4 97.7,426.5 96.6,426.5 '/>
  4744. </g>
  4745. <path stroke='cyan' d='M96.6,427.4 L96.6,426.6 L97.6,426.6 L97.6,427.4 L96.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4746. <polygon fill = 'cyan' points = '97.6,427.4 98.7,427.4 98.7,426.5 97.6,426.5 '/>
  4747. </g>
  4748. <path stroke='cyan' d='M97.6,427.4 L97.6,426.6 L98.6,426.6 L98.6,427.4 L97.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4749. <polygon fill = 'cyan' points = '98.6,427.4 99.7,427.4 99.7,426.5 98.6,426.5 '/>
  4750. </g>
  4751. <path stroke='cyan' d='M98.6,427.4 L98.6,426.6 L99.6,426.6 L99.6,427.4 L98.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4752. <polygon fill = 'cyan' points = '99.6,427.4 100.7,427.4 100.7,426.5 99.6,426.5 '/>
  4753. </g>
  4754. <path stroke='cyan' d='M99.6,427.4 L99.6,426.6 L100.6,426.6 L100.6,427.4 L99.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4755. <polygon fill = 'cyan' points = '100.6,427.4 101.7,427.4 101.7,426.5 100.6,426.5 '/>
  4756. </g>
  4757. <path stroke='cyan' d='M100.6,427.4 L100.6,426.6 L101.6,426.6 L101.6,427.4 L100.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4758. <polygon fill = 'cyan' points = '101.6,427.4 102.7,427.4 102.7,426.5 101.6,426.5 '/>
  4759. </g>
  4760. <path stroke='cyan' d='M101.6,427.4 L101.6,426.6 L102.6,426.6 L102.6,427.4 L101.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4761. <polygon fill = 'cyan' points = '102.6,427.4 103.7,427.4 103.7,426.5 102.6,426.5 '/>
  4762. </g>
  4763. <path stroke='cyan' d='M102.6,427.4 L102.6,426.6 L103.6,426.6 L103.6,427.4 L102.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4764. <polygon fill = 'cyan' points = '103.6,427.4 104.7,427.4 104.7,426.5 103.6,426.5 '/>
  4765. </g>
  4766. <path stroke='cyan' d='M103.6,427.4 L103.6,426.6 L104.6,426.6 L104.6,427.4 L103.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4767. <polygon fill = 'cyan' points = '104.6,427.4 105.7,427.4 105.7,426.5 104.6,426.5 '/>
  4768. </g>
  4769. <path stroke='cyan' d='M104.6,427.4 L104.6,426.6 L105.6,426.6 L105.6,427.4 L104.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4770. <polygon fill = 'cyan' points = '105.6,427.4 106.7,427.4 106.7,426.5 105.6,426.5 '/>
  4771. </g>
  4772. <path stroke='cyan' d='M105.6,427.4 L105.6,426.6 L106.6,426.6 L106.6,427.4 L105.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4773. <polygon fill = 'cyan' points = '106.6,427.4 107.7,427.4 107.7,426.5 106.6,426.5 '/>
  4774. </g>
  4775. <path stroke='cyan' d='M106.6,427.4 L106.6,426.6 L107.6,426.6 L107.6,427.4 L106.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4776. <polygon fill = 'cyan' points = '107.6,427.4 108.7,427.4 108.7,426.4 107.6,426.4 '/>
  4777. </g>
  4778. <path stroke='cyan' d='M107.6,427.4 L107.6,426.5 L108.6,426.5 L108.6,427.4 L107.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4779. <polygon fill = 'cyan' points = '108.6,427.4 109.7,427.4 109.7,426.5 108.6,426.5 '/>
  4780. </g>
  4781. <path stroke='cyan' d='M108.6,427.4 L108.6,426.6 L109.6,426.6 L109.6,427.4 L108.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4782. <polygon fill = 'cyan' points = '109.6,427.4 110.7,427.4 110.7,426.5 109.6,426.5 '/>
  4783. </g>
  4784. <path stroke='cyan' d='M109.6,427.4 L109.6,426.6 L110.6,426.6 L110.6,427.4 L109.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4785. <polygon fill = 'cyan' points = '110.6,427.4 111.7,427.4 111.7,426.5 110.6,426.5 '/>
  4786. </g>
  4787. <path stroke='cyan' d='M110.6,427.4 L110.6,426.6 L111.6,426.6 L111.6,427.4 L110.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4788. <polygon fill = 'cyan' points = '111.6,427.4 112.8,427.4 112.8,426.5 111.6,426.5 '/>
  4789. </g>
  4790. <path stroke='cyan' d='M111.6,427.4 L111.6,426.6 L112.7,426.6 L112.7,427.4 L111.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4791. <polygon fill = 'cyan' points = '112.7,427.4 113.8,427.4 113.8,426.5 112.7,426.5 '/>
  4792. </g>
  4793. <path stroke='cyan' d='M112.7,427.4 L112.7,426.6 L113.7,426.6 L113.7,427.4 L112.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4794. <polygon fill = 'cyan' points = '113.7,427.4 114.8,427.4 114.8,426.5 113.7,426.5 '/>
  4795. </g>
  4796. <path stroke='cyan' d='M113.7,427.4 L113.7,426.6 L114.7,426.6 L114.7,427.4 L113.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4797. <polygon fill = 'cyan' points = '114.7,427.4 115.8,427.4 115.8,426.5 114.7,426.5 '/>
  4798. </g>
  4799. <path stroke='cyan' d='M114.7,427.4 L114.7,426.6 L115.7,426.6 L115.7,427.4 L114.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4800. <polygon fill = 'cyan' points = '115.7,427.4 116.8,427.4 116.8,426.5 115.7,426.5 '/>
  4801. </g>
  4802. <path stroke='cyan' d='M115.7,427.4 L115.7,426.6 L116.7,426.6 L116.7,427.4 L115.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4803. <polygon fill = 'cyan' points = '116.7,427.4 117.8,427.4 117.8,425.8 116.7,425.8 '/>
  4804. </g>
  4805. <path stroke='cyan' d='M116.7,427.4 L116.7,425.9 L117.7,425.9 L117.7,427.4 L116.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4806. <polygon fill = 'cyan' points = '117.7,427.4 118.8,427.4 118.8,426.5 117.7,426.5 '/>
  4807. </g>
  4808. <path stroke='cyan' d='M117.7,427.4 L117.7,426.6 L118.7,426.6 L118.7,427.4 L117.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4809. <polygon fill = 'cyan' points = '118.7,427.4 119.8,427.4 119.8,426.5 118.7,426.5 '/>
  4810. </g>
  4811. <path stroke='cyan' d='M118.7,427.4 L118.7,426.6 L119.7,426.6 L119.7,427.4 L118.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4812. <polygon fill = 'cyan' points = '119.7,427.4 120.8,427.4 120.8,426.5 119.7,426.5 '/>
  4813. </g>
  4814. <path stroke='cyan' d='M119.7,427.4 L119.7,426.6 L120.7,426.6 L120.7,427.4 L119.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4815. <polygon fill = 'cyan' points = '120.7,427.4 121.8,427.4 121.8,426.5 120.7,426.5 '/>
  4816. </g>
  4817. <path stroke='cyan' d='M120.7,427.4 L120.7,426.6 L121.7,426.6 L121.7,427.4 L120.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4818. <polygon fill = 'cyan' points = '121.7,427.4 122.8,427.4 122.8,426.5 121.7,426.5 '/>
  4819. </g>
  4820. <path stroke='cyan' d='M121.7,427.4 L121.7,426.6 L122.7,426.6 L122.7,427.4 L121.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4821. <polygon fill = 'cyan' points = '122.7,427.4 123.8,427.4 123.8,426.5 122.7,426.5 '/>
  4822. </g>
  4823. <path stroke='cyan' d='M122.7,427.4 L122.7,426.6 L123.7,426.6 L123.7,427.4 L122.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4824. <polygon fill = 'cyan' points = '123.7,427.4 124.8,427.4 124.8,426.5 123.7,426.5 '/>
  4825. </g>
  4826. <path stroke='cyan' d='M123.7,427.4 L123.7,426.6 L124.7,426.6 L124.7,427.4 L123.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4827. <polygon fill = 'cyan' points = '124.7,427.4 125.8,427.4 125.8,426.5 124.7,426.5 '/>
  4828. </g>
  4829. <path stroke='cyan' d='M124.7,427.4 L124.7,426.6 L125.7,426.6 L125.7,427.4 L124.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4830. <polygon fill = 'cyan' points = '125.7,427.4 126.8,427.4 126.8,426.5 125.7,426.5 '/>
  4831. </g>
  4832. <path stroke='cyan' d='M125.7,427.4 L125.7,426.6 L126.7,426.6 L126.7,427.4 L125.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4833. <polygon fill = 'cyan' points = '126.7,427.4 127.8,427.4 127.8,426.5 126.7,426.5 '/>
  4834. </g>
  4835. <path stroke='cyan' d='M126.7,427.4 L126.7,426.6 L127.7,426.6 L127.7,427.4 L126.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4836. <polygon fill = 'cyan' points = '127.7,427.4 128.9,427.4 128.9,426.5 127.7,426.5 '/>
  4837. </g>
  4838. <path stroke='cyan' d='M127.7,427.4 L127.7,426.6 L128.8,426.6 L128.8,427.4 L127.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4839. <polygon fill = 'cyan' points = '128.8,427.4 129.9,427.4 129.9,426.5 128.8,426.5 '/>
  4840. </g>
  4841. <path stroke='cyan' d='M128.8,427.4 L128.8,426.6 L129.8,426.6 L129.8,427.4 L128.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4842. <polygon fill = 'cyan' points = '129.8,427.4 130.9,427.4 130.9,426.5 129.8,426.5 '/>
  4843. </g>
  4844. <path stroke='cyan' d='M129.8,427.4 L129.8,426.6 L130.8,426.6 L130.8,427.4 L129.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4845. <polygon fill = 'cyan' points = '130.8,427.4 131.9,427.4 131.9,426.5 130.8,426.5 '/>
  4846. </g>
  4847. <path stroke='cyan' d='M130.8,427.4 L130.8,426.6 L131.8,426.6 L131.8,427.4 L130.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4848. <polygon fill = 'cyan' points = '131.8,427.4 132.9,427.4 132.9,426.5 131.8,426.5 '/>
  4849. </g>
  4850. <path stroke='cyan' d='M131.8,427.4 L131.8,426.6 L132.8,426.6 L132.8,427.4 L131.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4851. <polygon fill = 'cyan' points = '132.8,427.4 133.9,427.4 133.9,426.5 132.8,426.5 '/>
  4852. </g>
  4853. <path stroke='cyan' d='M132.8,427.4 L132.8,426.6 L133.8,426.6 L133.8,427.4 L132.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4854. <polygon fill = 'cyan' points = '133.8,427.4 134.9,427.4 134.9,426.5 133.8,426.5 '/>
  4855. </g>
  4856. <path stroke='cyan' d='M133.8,427.4 L133.8,426.6 L134.8,426.6 L134.8,427.4 L133.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4857. <polygon fill = 'cyan' points = '134.8,427.4 135.9,427.4 135.9,426.5 134.8,426.5 '/>
  4858. </g>
  4859. <path stroke='cyan' d='M134.8,427.4 L134.8,426.6 L135.8,426.6 L135.8,427.4 L134.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4860. <polygon fill = 'cyan' points = '135.8,427.4 136.9,427.4 136.9,426.5 135.8,426.5 '/>
  4861. </g>
  4862. <path stroke='cyan' d='M135.8,427.4 L135.8,426.6 L136.8,426.6 L136.8,427.4 L135.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4863. <polygon fill = 'cyan' points = '136.8,427.4 137.9,427.4 137.9,426.5 136.8,426.5 '/>
  4864. </g>
  4865. <path stroke='cyan' d='M136.8,427.4 L136.8,426.6 L137.8,426.6 L137.8,427.4 L136.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4866. <polygon fill = 'cyan' points = '137.8,427.4 138.9,427.4 138.9,426.5 137.8,426.5 '/>
  4867. </g>
  4868. <path stroke='cyan' d='M137.8,427.4 L137.8,426.6 L138.8,426.6 L138.8,427.4 L137.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4869. <polygon fill = 'cyan' points = '138.8,427.4 139.9,427.4 139.9,422.2 138.8,422.2 '/>
  4870. </g>
  4871. <path stroke='cyan' d='M138.8,427.4 L138.8,422.3 L139.8,422.3 L139.8,427.4 L138.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4872. <polygon fill = 'cyan' points = '139.8,427.4 140.9,427.4 140.9,407.8 139.8,407.8 '/>
  4873. </g>
  4874. <path stroke='cyan' d='M139.8,427.4 L139.8,407.9 L140.8,407.9 L140.8,427.4 L139.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4875. <polygon fill = 'cyan' points = '140.8,427.4 141.9,427.4 141.9,402.1 140.8,402.1 '/>
  4876. </g>
  4877. <path stroke='cyan' d='M140.8,427.4 L140.8,402.2 L141.8,402.2 L141.8,427.4 L140.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4878. <polygon fill = 'cyan' points = '141.8,427.4 142.9,427.4 142.9,422.0 141.8,422.0 '/>
  4879. </g>
  4880. <path stroke='cyan' d='M141.8,427.4 L141.8,422.1 L142.8,422.1 L142.8,427.4 L141.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4881. <polygon fill = 'cyan' points = '142.8,427.4 143.9,427.4 143.9,409.2 142.8,409.2 '/>
  4882. </g>
  4883. <path stroke='cyan' d='M142.8,427.4 L142.8,409.3 L143.8,409.3 L143.8,427.4 L142.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4884. <polygon fill = 'cyan' points = '143.8,427.4 144.9,427.4 144.9,419.8 143.8,419.8 '/>
  4885. </g>
  4886. <path stroke='cyan' d='M143.8,427.4 L143.8,419.9 L144.8,419.9 L144.8,427.4 L143.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4887. <polygon fill = 'cyan' points = '144.8,427.4 146.0,427.4 146.0,415.7 144.8,415.7 '/>
  4888. </g>
  4889. <path stroke='cyan' d='M144.8,427.4 L144.8,415.8 L145.9,415.8 L145.9,427.4 L144.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4890. <polygon fill = 'cyan' points = '145.9,427.4 147.0,427.4 147.0,422.7 145.9,422.7 '/>
  4891. </g>
  4892. <path stroke='cyan' d='M145.9,427.4 L145.9,422.8 L146.9,422.8 L146.9,427.4 L145.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4893. <polygon fill = 'cyan' points = '146.9,427.4 148.0,427.4 148.0,400.7 146.9,400.7 '/>
  4894. </g>
  4895. <path stroke='cyan' d='M146.9,427.4 L146.9,400.8 L147.9,400.8 L147.9,427.4 L146.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4896. <polygon fill = 'cyan' points = '147.9,427.4 149.0,427.4 149.0,395.3 147.9,395.3 '/>
  4897. </g>
  4898. <path stroke='cyan' d='M147.9,427.4 L147.9,395.4 L148.9,395.4 L148.9,427.4 L147.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4899. <polygon fill = 'cyan' points = '148.9,427.4 150.0,427.4 150.0,411.0 148.9,411.0 '/>
  4900. </g>
  4901. <path stroke='cyan' d='M148.9,427.4 L148.9,411.1 L149.9,411.1 L149.9,427.4 L148.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4902. <polygon fill = 'cyan' points = '149.9,427.4 151.0,427.4 151.0,409.9 149.9,409.9 '/>
  4903. </g>
  4904. <path stroke='cyan' d='M149.9,427.4 L149.9,410.0 L150.9,410.0 L150.9,427.4 L149.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4905. <polygon fill = 'cyan' points = '150.9,427.4 152.0,427.4 152.0,387.8 150.9,387.8 '/>
  4906. </g>
  4907. <path stroke='cyan' d='M150.9,427.4 L150.9,387.9 L151.9,387.9 L151.9,427.4 L150.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4908. <polygon fill = 'cyan' points = '151.9,427.4 153.0,427.4 153.0,426.5 151.9,426.5 '/>
  4909. </g>
  4910. <path stroke='cyan' d='M151.9,427.4 L151.9,426.6 L152.9,426.6 L152.9,427.4 L151.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4911. <polygon fill = 'cyan' points = '152.9,427.4 154.0,427.4 154.0,426.5 152.9,426.5 '/>
  4912. </g>
  4913. <path stroke='cyan' d='M152.9,427.4 L152.9,426.6 L153.9,426.6 L153.9,427.4 L152.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4914. <polygon fill = 'cyan' points = '153.9,427.4 155.0,427.4 155.0,426.5 153.9,426.5 '/>
  4915. </g>
  4916. <path stroke='cyan' d='M153.9,427.4 L153.9,426.6 L154.9,426.6 L154.9,427.4 L153.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4917. <polygon fill = 'cyan' points = '154.9,427.4 156.0,427.4 156.0,426.5 154.9,426.5 '/>
  4918. </g>
  4919. <path stroke='cyan' d='M154.9,427.4 L154.9,426.6 L155.9,426.6 L155.9,427.4 L154.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4920. <polygon fill = 'cyan' points = '155.9,427.4 157.0,427.4 157.0,426.5 155.9,426.5 '/>
  4921. </g>
  4922. <path stroke='cyan' d='M155.9,427.4 L155.9,426.6 L156.9,426.6 L156.9,427.4 L155.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4923. <polygon fill = 'cyan' points = '156.9,427.4 158.0,427.4 158.0,426.5 156.9,426.5 '/>
  4924. </g>
  4925. <path stroke='cyan' d='M156.9,427.4 L156.9,426.6 L157.9,426.6 L157.9,427.4 L156.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4926. <polygon fill = 'cyan' points = '157.9,427.4 159.0,427.4 159.0,426.5 157.9,426.5 '/>
  4927. </g>
  4928. <path stroke='cyan' d='M157.9,427.4 L157.9,426.6 L158.9,426.6 L158.9,427.4 L157.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4929. <polygon fill = 'cyan' points = '158.9,427.4 160.0,427.4 160.0,426.5 158.9,426.5 '/>
  4930. </g>
  4931. <path stroke='cyan' d='M158.9,427.4 L158.9,426.6 L159.9,426.6 L159.9,427.4 L158.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4932. <polygon fill = 'cyan' points = '159.9,427.4 161.0,427.4 161.0,426.5 159.9,426.5 '/>
  4933. </g>
  4934. <path stroke='cyan' d='M159.9,427.4 L159.9,426.6 L160.9,426.6 L160.9,427.4 L159.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4935. <polygon fill = 'cyan' points = '160.9,427.4 162.1,427.4 162.1,426.5 160.9,426.5 '/>
  4936. </g>
  4937. <path stroke='cyan' d='M160.9,427.4 L160.9,426.6 L162.0,426.6 L162.0,427.4 L160.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4938. <polygon fill = 'cyan' points = '162.0,427.4 163.1,427.4 163.1,425.9 162.0,425.9 '/>
  4939. </g>
  4940. <path stroke='cyan' d='M162.0,427.4 L162.0,426.0 L163.0,426.0 L163.0,427.4 L162.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4941. <polygon fill = 'cyan' points = '163.0,427.4 164.1,427.4 164.1,426.5 163.0,426.5 '/>
  4942. </g>
  4943. <path stroke='cyan' d='M163.0,427.4 L163.0,426.6 L164.0,426.6 L164.0,427.4 L163.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4944. <polygon fill = 'cyan' points = '164.0,427.4 165.1,427.4 165.1,426.5 164.0,426.5 '/>
  4945. </g>
  4946. <path stroke='cyan' d='M164.0,427.4 L164.0,426.6 L165.0,426.6 L165.0,427.4 L164.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4947. <polygon fill = 'cyan' points = '165.0,427.4 166.1,427.4 166.1,426.5 165.0,426.5 '/>
  4948. </g>
  4949. <path stroke='cyan' d='M165.0,427.4 L165.0,426.6 L166.0,426.6 L166.0,427.4 L165.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4950. <polygon fill = 'cyan' points = '166.0,427.4 167.1,427.4 167.1,426.5 166.0,426.5 '/>
  4951. </g>
  4952. <path stroke='cyan' d='M166.0,427.4 L166.0,426.6 L167.0,426.6 L167.0,427.4 L166.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4953. <polygon fill = 'cyan' points = '167.0,427.4 168.1,427.4 168.1,426.5 167.0,426.5 '/>
  4954. </g>
  4955. <path stroke='cyan' d='M167.0,427.4 L167.0,426.6 L168.0,426.6 L168.0,427.4 L167.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4956. <polygon fill = 'cyan' points = '168.0,427.4 169.1,427.4 169.1,426.5 168.0,426.5 '/>
  4957. </g>
  4958. <path stroke='cyan' d='M168.0,427.4 L168.0,426.6 L169.0,426.6 L169.0,427.4 L168.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4959. <polygon fill = 'cyan' points = '169.0,427.4 170.1,427.4 170.1,426.5 169.0,426.5 '/>
  4960. </g>
  4961. <path stroke='cyan' d='M169.0,427.4 L169.0,426.6 L170.0,426.6 L170.0,427.4 L169.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4962. <polygon fill = 'cyan' points = '170.0,427.4 171.1,427.4 171.1,426.5 170.0,426.5 '/>
  4963. </g>
  4964. <path stroke='cyan' d='M170.0,427.4 L170.0,426.6 L171.0,426.6 L171.0,427.4 L170.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4965. <polygon fill = 'cyan' points = '171.0,427.4 172.1,427.4 172.1,426.5 171.0,426.5 '/>
  4966. </g>
  4967. <path stroke='cyan' d='M171.0,427.4 L171.0,426.6 L172.0,426.6 L172.0,427.4 L171.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4968. <polygon fill = 'cyan' points = '172.0,427.4 173.1,427.4 173.1,426.5 172.0,426.5 '/>
  4969. </g>
  4970. <path stroke='cyan' d='M172.0,427.4 L172.0,426.6 L173.0,426.6 L173.0,427.4 L172.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4971. <polygon fill = 'cyan' points = '173.0,427.4 174.1,427.4 174.1,426.1 173.0,426.1 '/>
  4972. </g>
  4973. <path stroke='cyan' d='M173.0,427.4 L173.0,426.2 L174.0,426.2 L174.0,427.4 L173.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4974. <polygon fill = 'cyan' points = '174.0,427.4 175.1,427.4 175.1,426.5 174.0,426.5 '/>
  4975. </g>
  4976. <path stroke='cyan' d='M174.0,427.4 L174.0,426.6 L175.0,426.6 L175.0,427.4 L174.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4977. <polygon fill = 'cyan' points = '175.0,427.4 176.1,427.4 176.1,426.5 175.0,426.5 '/>
  4978. </g>
  4979. <path stroke='cyan' d='M175.0,427.4 L175.0,426.6 L176.0,426.6 L176.0,427.4 L175.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4980. <polygon fill = 'cyan' points = '176.0,427.4 177.1,427.4 177.1,426.5 176.0,426.5 '/>
  4981. </g>
  4982. <path stroke='cyan' d='M176.0,427.4 L176.0,426.6 L177.0,426.6 L177.0,427.4 L176.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4983. <polygon fill = 'cyan' points = '177.0,427.4 178.2,427.4 178.2,426.5 177.0,426.5 '/>
  4984. </g>
  4985. <path stroke='cyan' d='M177.0,427.4 L177.0,426.6 L178.1,426.6 L178.1,427.4 L177.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4986. <polygon fill = 'cyan' points = '178.1,427.4 179.2,427.4 179.2,426.5 178.1,426.5 '/>
  4987. </g>
  4988. <path stroke='cyan' d='M178.1,427.4 L178.1,426.6 L179.1,426.6 L179.1,427.4 L178.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4989. <polygon fill = 'cyan' points = '179.1,427.4 180.2,427.4 180.2,426.5 179.1,426.5 '/>
  4990. </g>
  4991. <path stroke='cyan' d='M179.1,427.4 L179.1,426.6 L180.1,426.6 L180.1,427.4 L179.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4992. <polygon fill = 'cyan' points = '180.1,427.4 181.2,427.4 181.2,426.5 180.1,426.5 '/>
  4993. </g>
  4994. <path stroke='cyan' d='M180.1,427.4 L180.1,426.6 L181.1,426.6 L181.1,427.4 L180.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4995. <polygon fill = 'cyan' points = '181.1,427.4 182.2,427.4 182.2,426.5 181.1,426.5 '/>
  4996. </g>
  4997. <path stroke='cyan' d='M181.1,427.4 L181.1,426.6 L182.1,426.6 L182.1,427.4 L181.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  4998. <polygon fill = 'cyan' points = '182.1,427.4 183.2,427.4 183.2,426.5 182.1,426.5 '/>
  4999. </g>
  5000. <path stroke='cyan' d='M182.1,427.4 L182.1,426.6 L183.1,426.6 L183.1,427.4 L182.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5001. <polygon fill = 'cyan' points = '183.1,427.4 184.2,427.4 184.2,426.5 183.1,426.5 '/>
  5002. </g>
  5003. <path stroke='cyan' d='M183.1,427.4 L183.1,426.6 L184.1,426.6 L184.1,427.4 L183.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5004. <polygon fill = 'cyan' points = '184.1,427.4 185.2,427.4 185.2,426.5 184.1,426.5 '/>
  5005. </g>
  5006. <path stroke='cyan' d='M184.1,427.4 L184.1,426.6 L185.1,426.6 L185.1,427.4 L184.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5007. <polygon fill = 'cyan' points = '185.1,427.4 186.2,427.4 186.2,426.5 185.1,426.5 '/>
  5008. </g>
  5009. <path stroke='cyan' d='M185.1,427.4 L185.1,426.6 L186.1,426.6 L186.1,427.4 L185.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5010. <polygon fill = 'cyan' points = '186.1,427.4 187.2,427.4 187.2,426.5 186.1,426.5 '/>
  5011. </g>
  5012. <path stroke='cyan' d='M186.1,427.4 L186.1,426.6 L187.1,426.6 L187.1,427.4 L186.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5013. <polygon fill = 'cyan' points = '187.1,427.4 188.2,427.4 188.2,426.5 187.1,426.5 '/>
  5014. </g>
  5015. <path stroke='cyan' d='M187.1,427.4 L187.1,426.6 L188.1,426.6 L188.1,427.4 L187.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5016. <polygon fill = 'cyan' points = '188.1,427.4 189.2,427.4 189.2,426.5 188.1,426.5 '/>
  5017. </g>
  5018. <path stroke='cyan' d='M188.1,427.4 L188.1,426.6 L189.1,426.6 L189.1,427.4 L188.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5019. <polygon fill = 'cyan' points = '189.1,427.4 190.2,427.4 190.2,426.5 189.1,426.5 '/>
  5020. </g>
  5021. <path stroke='cyan' d='M189.1,427.4 L189.1,426.6 L190.1,426.6 L190.1,427.4 L189.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5022. <polygon fill = 'cyan' points = '190.1,427.4 191.2,427.4 191.2,426.5 190.1,426.5 '/>
  5023. </g>
  5024. <path stroke='cyan' d='M190.1,427.4 L190.1,426.6 L191.1,426.6 L191.1,427.4 L190.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5025. <polygon fill = 'cyan' points = '191.1,427.4 192.2,427.4 192.2,426.5 191.1,426.5 '/>
  5026. </g>
  5027. <path stroke='cyan' d='M191.1,427.4 L191.1,426.6 L192.1,426.6 L192.1,427.4 L191.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5028. <polygon fill = 'cyan' points = '192.1,427.4 193.2,427.4 193.2,426.5 192.1,426.5 '/>
  5029. </g>
  5030. <path stroke='cyan' d='M192.1,427.4 L192.1,426.6 L193.1,426.6 L193.1,427.4 L192.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5031. <polygon fill = 'cyan' points = '193.1,427.4 194.3,427.4 194.3,426.5 193.1,426.5 '/>
  5032. </g>
  5033. <path stroke='cyan' d='M193.1,427.4 L193.1,426.6 L194.2,426.6 L194.2,427.4 L193.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5034. <polygon fill = 'cyan' points = '194.2,427.4 195.3,427.4 195.3,426.5 194.2,426.5 '/>
  5035. </g>
  5036. <path stroke='cyan' d='M194.2,427.4 L194.2,426.6 L195.2,426.6 L195.2,427.4 L194.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5037. <polygon fill = 'cyan' points = '195.2,427.4 196.3,427.4 196.3,426.5 195.2,426.5 '/>
  5038. </g>
  5039. <path stroke='cyan' d='M195.2,427.4 L195.2,426.6 L196.2,426.6 L196.2,427.4 L195.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5040. <polygon fill = 'cyan' points = '196.2,427.4 197.3,427.4 197.3,426.5 196.2,426.5 '/>
  5041. </g>
  5042. <path stroke='cyan' d='M196.2,427.4 L196.2,426.6 L197.2,426.6 L197.2,427.4 L196.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5043. <polygon fill = 'cyan' points = '197.2,427.4 198.3,427.4 198.3,426.5 197.2,426.5 '/>
  5044. </g>
  5045. <path stroke='cyan' d='M197.2,427.4 L197.2,426.6 L198.2,426.6 L198.2,427.4 L197.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5046. <polygon fill = 'cyan' points = '198.2,427.4 199.3,427.4 199.3,426.5 198.2,426.5 '/>
  5047. </g>
  5048. <path stroke='cyan' d='M198.2,427.4 L198.2,426.6 L199.2,426.6 L199.2,427.4 L198.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5049. <polygon fill = 'cyan' points = '199.2,427.4 200.3,427.4 200.3,426.5 199.2,426.5 '/>
  5050. </g>
  5051. <path stroke='cyan' d='M199.2,427.4 L199.2,426.6 L200.2,426.6 L200.2,427.4 L199.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5052. <polygon fill = 'cyan' points = '200.2,427.4 201.3,427.4 201.3,426.5 200.2,426.5 '/>
  5053. </g>
  5054. <path stroke='cyan' d='M200.2,427.4 L200.2,426.6 L201.2,426.6 L201.2,427.4 L200.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5055. <polygon fill = 'cyan' points = '201.2,427.4 202.3,427.4 202.3,426.5 201.2,426.5 '/>
  5056. </g>
  5057. <path stroke='cyan' d='M201.2,427.4 L201.2,426.6 L202.2,426.6 L202.2,427.4 L201.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5058. <polygon fill = 'cyan' points = '202.2,427.4 203.3,427.4 203.3,426.5 202.2,426.5 '/>
  5059. </g>
  5060. <path stroke='cyan' d='M202.2,427.4 L202.2,426.6 L203.2,426.6 L203.2,427.4 L202.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5061. <polygon fill = 'cyan' points = '203.2,427.4 204.3,427.4 204.3,426.5 203.2,426.5 '/>
  5062. </g>
  5063. <path stroke='cyan' d='M203.2,427.4 L203.2,426.6 L204.2,426.6 L204.2,427.4 L203.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5064. <polygon fill = 'cyan' points = '204.2,427.4 205.3,427.4 205.3,426.5 204.2,426.5 '/>
  5065. </g>
  5066. <path stroke='cyan' d='M204.2,427.4 L204.2,426.6 L205.2,426.6 L205.2,427.4 L204.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5067. <polygon fill = 'cyan' points = '205.2,427.4 206.3,427.4 206.3,416.8 205.2,416.8 '/>
  5068. </g>
  5069. <path stroke='cyan' d='M205.2,427.4 L205.2,416.9 L206.2,416.9 L206.2,427.4 L205.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5070. <polygon fill = 'cyan' points = '206.2,427.4 207.3,427.4 207.3,395.4 206.2,395.4 '/>
  5071. </g>
  5072. <path stroke='cyan' d='M206.2,427.4 L206.2,395.5 L207.2,395.5 L207.2,427.4 L206.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5073. <polygon fill = 'cyan' points = '207.2,427.4 208.3,427.4 208.3,426.5 207.2,426.5 '/>
  5074. </g>
  5075. <path stroke='cyan' d='M207.2,427.4 L207.2,426.6 L208.2,426.6 L208.2,427.4 L207.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5076. <polygon fill = 'cyan' points = '208.2,427.4 209.3,427.4 209.3,383.0 208.2,383.0 '/>
  5077. </g>
  5078. <path stroke='cyan' d='M208.2,427.4 L208.2,383.1 L209.2,383.1 L209.2,427.4 L208.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5079. <polygon fill = 'cyan' points = '209.2,427.4 210.4,427.4 210.4,426.5 209.2,426.5 '/>
  5080. </g>
  5081. <path stroke='cyan' d='M209.2,427.4 L209.2,426.6 L210.3,426.6 L210.3,427.4 L209.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5082. <polygon fill = 'cyan' points = '210.3,427.4 211.4,427.4 211.4,426.5 210.3,426.5 '/>
  5083. </g>
  5084. <path stroke='cyan' d='M210.3,427.4 L210.3,426.6 L211.3,426.6 L211.3,427.4 L210.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5085. <polygon fill = 'cyan' points = '211.3,427.4 212.4,427.4 212.4,426.5 211.3,426.5 '/>
  5086. </g>
  5087. <path stroke='cyan' d='M211.3,427.4 L211.3,426.6 L212.3,426.6 L212.3,427.4 L211.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5088. <polygon fill = 'cyan' points = '212.3,427.4 213.4,427.4 213.4,426.5 212.3,426.5 '/>
  5089. </g>
  5090. <path stroke='cyan' d='M212.3,427.4 L212.3,426.6 L213.3,426.6 L213.3,427.4 L212.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5091. <polygon fill = 'cyan' points = '213.3,427.4 214.4,427.4 214.4,426.5 213.3,426.5 '/>
  5092. </g>
  5093. <path stroke='cyan' d='M213.3,427.4 L213.3,426.6 L214.3,426.6 L214.3,427.4 L213.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5094. <polygon fill = 'cyan' points = '214.3,427.4 215.4,427.4 215.4,426.5 214.3,426.5 '/>
  5095. </g>
  5096. <path stroke='cyan' d='M214.3,427.4 L214.3,426.6 L215.3,426.6 L215.3,427.4 L214.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5097. <polygon fill = 'cyan' points = '215.3,427.4 216.4,427.4 216.4,426.5 215.3,426.5 '/>
  5098. </g>
  5099. <path stroke='cyan' d='M215.3,427.4 L215.3,426.6 L216.3,426.6 L216.3,427.4 L215.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5100. <polygon fill = 'cyan' points = '216.3,427.4 217.4,427.4 217.4,426.5 216.3,426.5 '/>
  5101. </g>
  5102. <path stroke='cyan' d='M216.3,427.4 L216.3,426.6 L217.3,426.6 L217.3,427.4 L216.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5103. <polygon fill = 'cyan' points = '217.3,427.4 218.4,427.4 218.4,426.5 217.3,426.5 '/>
  5104. </g>
  5105. <path stroke='cyan' d='M217.3,427.4 L217.3,426.6 L218.3,426.6 L218.3,427.4 L217.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5106. <polygon fill = 'cyan' points = '218.3,427.4 219.4,427.4 219.4,426.5 218.3,426.5 '/>
  5107. </g>
  5108. <path stroke='cyan' d='M218.3,427.4 L218.3,426.6 L219.3,426.6 L219.3,427.4 L218.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5109. <polygon fill = 'cyan' points = '219.3,427.4 220.4,427.4 220.4,426.5 219.3,426.5 '/>
  5110. </g>
  5111. <path stroke='cyan' d='M219.3,427.4 L219.3,426.6 L220.3,426.6 L220.3,427.4 L219.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5112. <polygon fill = 'cyan' points = '220.3,427.4 221.4,427.4 221.4,426.5 220.3,426.5 '/>
  5113. </g>
  5114. <path stroke='cyan' d='M220.3,427.4 L220.3,426.6 L221.3,426.6 L221.3,427.4 L220.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5115. <polygon fill = 'cyan' points = '221.3,427.4 222.4,427.4 222.4,426.5 221.3,426.5 '/>
  5116. </g>
  5117. <path stroke='cyan' d='M221.3,427.4 L221.3,426.6 L222.3,426.6 L222.3,427.4 L221.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5118. <polygon fill = 'cyan' points = '222.3,427.4 223.4,427.4 223.4,426.5 222.3,426.5 '/>
  5119. </g>
  5120. <path stroke='cyan' d='M222.3,427.4 L222.3,426.6 L223.3,426.6 L223.3,427.4 L222.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5121. <polygon fill = 'cyan' points = '223.3,427.4 224.4,427.4 224.4,426.5 223.3,426.5 '/>
  5122. </g>
  5123. <path stroke='cyan' d='M223.3,427.4 L223.3,426.6 L224.3,426.6 L224.3,427.4 L223.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5124. <polygon fill = 'cyan' points = '224.3,427.4 225.4,427.4 225.4,422.6 224.3,422.6 '/>
  5125. </g>
  5126. <path stroke='cyan' d='M224.3,427.4 L224.3,422.7 L225.3,422.7 L225.3,427.4 L224.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5127. <polygon fill = 'cyan' points = '225.3,427.4 226.5,427.4 226.5,426.5 225.3,426.5 '/>
  5128. </g>
  5129. <path stroke='cyan' d='M225.3,427.4 L225.3,426.6 L226.4,426.6 L226.4,427.4 L225.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5130. <polygon fill = 'cyan' points = '226.4,427.4 227.5,427.4 227.5,426.5 226.4,426.5 '/>
  5131. </g>
  5132. <path stroke='cyan' d='M226.4,427.4 L226.4,426.6 L227.4,426.6 L227.4,427.4 L226.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5133. <polygon fill = 'cyan' points = '227.4,427.4 228.5,427.4 228.5,426.5 227.4,426.5 '/>
  5134. </g>
  5135. <path stroke='cyan' d='M227.4,427.4 L227.4,426.6 L228.4,426.6 L228.4,427.4 L227.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5136. <polygon fill = 'cyan' points = '228.4,427.4 229.5,427.4 229.5,426.5 228.4,426.5 '/>
  5137. </g>
  5138. <path stroke='cyan' d='M228.4,427.4 L228.4,426.6 L229.4,426.6 L229.4,427.4 L228.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5139. <polygon fill = 'cyan' points = '229.4,427.4 230.5,427.4 230.5,426.5 229.4,426.5 '/>
  5140. </g>
  5141. <path stroke='cyan' d='M229.4,427.4 L229.4,426.6 L230.4,426.6 L230.4,427.4 L229.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5142. <polygon fill = 'cyan' points = '230.4,427.4 231.5,427.4 231.5,426.5 230.4,426.5 '/>
  5143. </g>
  5144. <path stroke='cyan' d='M230.4,427.4 L230.4,426.6 L231.4,426.6 L231.4,427.4 L230.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5145. <polygon fill = 'cyan' points = '231.4,427.4 232.5,427.4 232.5,426.5 231.4,426.5 '/>
  5146. </g>
  5147. <path stroke='cyan' d='M231.4,427.4 L231.4,426.6 L232.4,426.6 L232.4,427.4 L231.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5148. <polygon fill = 'cyan' points = '232.4,427.4 233.5,427.4 233.5,426.5 232.4,426.5 '/>
  5149. </g>
  5150. <path stroke='cyan' d='M232.4,427.4 L232.4,426.6 L233.4,426.6 L233.4,427.4 L232.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5151. <polygon fill = 'cyan' points = '233.4,427.4 234.5,427.4 234.5,426.5 233.4,426.5 '/>
  5152. </g>
  5153. <path stroke='cyan' d='M233.4,427.4 L233.4,426.6 L234.4,426.6 L234.4,427.4 L233.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5154. <polygon fill = 'cyan' points = '234.4,427.4 235.5,427.4 235.5,426.5 234.4,426.5 '/>
  5155. </g>
  5156. <path stroke='cyan' d='M234.4,427.4 L234.4,426.6 L235.4,426.6 L235.4,427.4 L234.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5157. <polygon fill = 'cyan' points = '235.4,427.4 236.5,427.4 236.5,426.4 235.4,426.4 '/>
  5158. </g>
  5159. <path stroke='cyan' d='M235.4,427.4 L235.4,426.5 L236.4,426.5 L236.4,427.4 L235.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5160. <polygon fill = 'cyan' points = '236.4,427.4 237.5,427.4 237.5,426.0 236.4,426.0 '/>
  5161. </g>
  5162. <path stroke='cyan' d='M236.4,427.4 L236.4,426.1 L237.4,426.1 L237.4,427.4 L236.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5163. <polygon fill = 'cyan' points = '237.4,427.4 238.5,427.4 238.5,426.5 237.4,426.5 '/>
  5164. </g>
  5165. <path stroke='cyan' d='M237.4,427.4 L237.4,426.6 L238.4,426.6 L238.4,427.4 L237.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5166. <polygon fill = 'cyan' points = '238.4,427.4 239.5,427.4 239.5,426.5 238.4,426.5 '/>
  5167. </g>
  5168. <path stroke='cyan' d='M238.4,427.4 L238.4,426.6 L239.4,426.6 L239.4,427.4 L238.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5169. <polygon fill = 'cyan' points = '239.4,427.4 240.5,427.4 240.5,426.5 239.4,426.5 '/>
  5170. </g>
  5171. <path stroke='cyan' d='M239.4,427.4 L239.4,426.6 L240.4,426.6 L240.4,427.4 L239.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5172. <polygon fill = 'cyan' points = '240.4,427.4 241.5,427.4 241.5,426.5 240.4,426.5 '/>
  5173. </g>
  5174. <path stroke='cyan' d='M240.4,427.4 L240.4,426.6 L241.4,426.6 L241.4,427.4 L240.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5175. <polygon fill = 'cyan' points = '241.4,427.4 242.6,427.4 242.6,426.5 241.4,426.5 '/>
  5176. </g>
  5177. <path stroke='cyan' d='M241.4,427.4 L241.4,426.6 L242.5,426.6 L242.5,427.4 L241.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5178. <polygon fill = 'cyan' points = '242.5,427.4 243.6,427.4 243.6,426.5 242.5,426.5 '/>
  5179. </g>
  5180. <path stroke='cyan' d='M242.5,427.4 L242.5,426.6 L243.5,426.6 L243.5,427.4 L242.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5181. <polygon fill = 'cyan' points = '243.5,427.4 244.6,427.4 244.6,426.5 243.5,426.5 '/>
  5182. </g>
  5183. <path stroke='cyan' d='M243.5,427.4 L243.5,426.6 L244.5,426.6 L244.5,427.4 L243.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5184. <polygon fill = 'cyan' points = '244.5,427.4 245.6,427.4 245.6,426.5 244.5,426.5 '/>
  5185. </g>
  5186. <path stroke='cyan' d='M244.5,427.4 L244.5,426.6 L245.5,426.6 L245.5,427.4 L244.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5187. <polygon fill = 'cyan' points = '245.5,427.4 246.6,427.4 246.6,426.5 245.5,426.5 '/>
  5188. </g>
  5189. <path stroke='cyan' d='M245.5,427.4 L245.5,426.6 L246.5,426.6 L246.5,427.4 L245.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5190. <polygon fill = 'cyan' points = '246.5,427.4 247.6,427.4 247.6,426.5 246.5,426.5 '/>
  5191. </g>
  5192. <path stroke='cyan' d='M246.5,427.4 L246.5,426.6 L247.5,426.6 L247.5,427.4 L246.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5193. <polygon fill = 'cyan' points = '247.5,427.4 248.6,427.4 248.6,426.5 247.5,426.5 '/>
  5194. </g>
  5195. <path stroke='cyan' d='M247.5,427.4 L247.5,426.6 L248.5,426.6 L248.5,427.4 L247.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5196. <polygon fill = 'cyan' points = '248.5,427.4 249.6,427.4 249.6,426.5 248.5,426.5 '/>
  5197. </g>
  5198. <path stroke='cyan' d='M248.5,427.4 L248.5,426.6 L249.5,426.6 L249.5,427.4 L248.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5199. <polygon fill = 'cyan' points = '249.5,427.4 250.6,427.4 250.6,426.5 249.5,426.5 '/>
  5200. </g>
  5201. <path stroke='cyan' d='M249.5,427.4 L249.5,426.6 L250.5,426.6 L250.5,427.4 L249.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5202. <polygon fill = 'cyan' points = '250.5,427.4 251.6,427.4 251.6,426.5 250.5,426.5 '/>
  5203. </g>
  5204. <path stroke='cyan' d='M250.5,427.4 L250.5,426.6 L251.5,426.6 L251.5,427.4 L250.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5205. <polygon fill = 'cyan' points = '251.5,427.4 252.6,427.4 252.6,426.5 251.5,426.5 '/>
  5206. </g>
  5207. <path stroke='cyan' d='M251.5,427.4 L251.5,426.6 L252.5,426.6 L252.5,427.4 L251.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5208. <polygon fill = 'cyan' points = '252.5,427.4 253.6,427.4 253.6,426.5 252.5,426.5 '/>
  5209. </g>
  5210. <path stroke='cyan' d='M252.5,427.4 L252.5,426.6 L253.5,426.6 L253.5,427.4 L252.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5211. <polygon fill = 'cyan' points = '253.5,427.4 254.6,427.4 254.6,426.5 253.5,426.5 '/>
  5212. </g>
  5213. <path stroke='cyan' d='M253.5,427.4 L253.5,426.6 L254.5,426.6 L254.5,427.4 L253.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5214. <polygon fill = 'cyan' points = '254.5,427.4 255.6,427.4 255.6,426.5 254.5,426.5 '/>
  5215. </g>
  5216. <path stroke='cyan' d='M254.5,427.4 L254.5,426.6 L255.5,426.6 L255.5,427.4 L254.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5217. <polygon fill = 'cyan' points = '255.5,427.4 256.6,427.4 256.6,426.3 255.5,426.3 '/>
  5218. </g>
  5219. <path stroke='cyan' d='M255.5,427.4 L255.5,426.4 L256.5,426.4 L256.5,427.4 L255.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5220. <polygon fill = 'cyan' points = '256.5,427.4 257.6,427.4 257.6,426.5 256.5,426.5 '/>
  5221. </g>
  5222. <path stroke='cyan' d='M256.5,427.4 L256.5,426.6 L257.5,426.6 L257.5,427.4 L256.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5223. <polygon fill = 'cyan' points = '257.5,427.4 258.7,427.4 258.7,426.5 257.5,426.5 '/>
  5224. </g>
  5225. <path stroke='cyan' d='M257.5,427.4 L257.5,426.6 L258.6,426.6 L258.6,427.4 L257.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5226. <polygon fill = 'cyan' points = '258.6,427.4 259.7,427.4 259.7,426.5 258.6,426.5 '/>
  5227. </g>
  5228. <path stroke='cyan' d='M258.6,427.4 L258.6,426.6 L259.6,426.6 L259.6,427.4 L258.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5229. <polygon fill = 'cyan' points = '259.6,427.4 260.7,427.4 260.7,426.5 259.6,426.5 '/>
  5230. </g>
  5231. <path stroke='cyan' d='M259.6,427.4 L259.6,426.6 L260.6,426.6 L260.6,427.4 L259.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5232. <polygon fill = 'cyan' points = '260.6,427.4 261.7,427.4 261.7,426.5 260.6,426.5 '/>
  5233. </g>
  5234. <path stroke='cyan' d='M260.6,427.4 L260.6,426.6 L261.6,426.6 L261.6,427.4 L260.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5235. <polygon fill = 'cyan' points = '261.6,427.4 262.7,427.4 262.7,426.5 261.6,426.5 '/>
  5236. </g>
  5237. <path stroke='cyan' d='M261.6,427.4 L261.6,426.6 L262.6,426.6 L262.6,427.4 L261.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5238. <polygon fill = 'cyan' points = '262.6,427.4 263.7,427.4 263.7,426.5 262.6,426.5 '/>
  5239. </g>
  5240. <path stroke='cyan' d='M262.6,427.4 L262.6,426.6 L263.6,426.6 L263.6,427.4 L262.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5241. <polygon fill = 'cyan' points = '263.6,427.4 264.7,427.4 264.7,426.5 263.6,426.5 '/>
  5242. </g>
  5243. <path stroke='cyan' d='M263.6,427.4 L263.6,426.6 L264.6,426.6 L264.6,427.4 L263.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5244. <polygon fill = 'cyan' points = '264.6,427.4 265.7,427.4 265.7,426.5 264.6,426.5 '/>
  5245. </g>
  5246. <path stroke='cyan' d='M264.6,427.4 L264.6,426.6 L265.6,426.6 L265.6,427.4 L264.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5247. <polygon fill = 'cyan' points = '265.6,427.4 266.7,427.4 266.7,425.8 265.6,425.8 '/>
  5248. </g>
  5249. <path stroke='cyan' d='M265.6,427.4 L265.6,425.9 L266.6,425.9 L266.6,427.4 L265.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5250. <polygon fill = 'cyan' points = '266.6,427.4 267.7,427.4 267.7,426.5 266.6,426.5 '/>
  5251. </g>
  5252. <path stroke='cyan' d='M266.6,427.4 L266.6,426.6 L267.6,426.6 L267.6,427.4 L266.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5253. <polygon fill = 'cyan' points = '267.6,427.4 268.7,427.4 268.7,426.5 267.6,426.5 '/>
  5254. </g>
  5255. <path stroke='cyan' d='M267.6,427.4 L267.6,426.6 L268.6,426.6 L268.6,427.4 L267.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5256. <polygon fill = 'cyan' points = '268.6,427.4 269.7,427.4 269.7,426.5 268.6,426.5 '/>
  5257. </g>
  5258. <path stroke='cyan' d='M268.6,427.4 L268.6,426.6 L269.6,426.6 L269.6,427.4 L268.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5259. <polygon fill = 'cyan' points = '269.6,427.4 270.7,427.4 270.7,426.5 269.6,426.5 '/>
  5260. </g>
  5261. <path stroke='cyan' d='M269.6,427.4 L269.6,426.6 L270.6,426.6 L270.6,427.4 L269.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5262. <polygon fill = 'cyan' points = '270.6,427.4 271.7,427.4 271.7,426.5 270.6,426.5 '/>
  5263. </g>
  5264. <path stroke='cyan' d='M270.6,427.4 L270.6,426.6 L271.6,426.6 L271.6,427.4 L270.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5265. <polygon fill = 'cyan' points = '271.6,427.4 272.7,427.4 272.7,426.5 271.6,426.5 '/>
  5266. </g>
  5267. <path stroke='cyan' d='M271.6,427.4 L271.6,426.6 L272.6,426.6 L272.6,427.4 L271.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5268. <polygon fill = 'cyan' points = '272.6,427.4 273.7,427.4 273.7,426.5 272.6,426.5 '/>
  5269. </g>
  5270. <path stroke='cyan' d='M272.6,427.4 L272.6,426.6 L273.6,426.6 L273.6,427.4 L272.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5271. <polygon fill = 'cyan' points = '273.6,427.4 274.7,427.4 274.7,426.5 273.6,426.5 '/>
  5272. </g>
  5273. <path stroke='cyan' d='M273.6,427.4 L273.6,426.6 L274.6,426.6 L274.6,427.4 L273.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5274. <polygon fill = 'cyan' points = '274.6,427.4 275.8,427.4 275.8,426.5 274.6,426.5 '/>
  5275. </g>
  5276. <path stroke='cyan' d='M274.6,427.4 L274.6,426.6 L275.7,426.6 L275.7,427.4 L274.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5277. <polygon fill = 'cyan' points = '275.7,427.4 276.8,427.4 276.8,426.5 275.7,426.5 '/>
  5278. </g>
  5279. <path stroke='cyan' d='M275.7,427.4 L275.7,426.6 L276.7,426.6 L276.7,427.4 L275.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5280. <polygon fill = 'cyan' points = '276.7,427.4 277.8,427.4 277.8,426.5 276.7,426.5 '/>
  5281. </g>
  5282. <path stroke='cyan' d='M276.7,427.4 L276.7,426.6 L277.7,426.6 L277.7,427.4 L276.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5283. <polygon fill = 'cyan' points = '277.7,427.4 278.8,427.4 278.8,426.5 277.7,426.5 '/>
  5284. </g>
  5285. <path stroke='cyan' d='M277.7,427.4 L277.7,426.6 L278.7,426.6 L278.7,427.4 L277.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5286. <polygon fill = 'cyan' points = '278.7,427.4 279.8,427.4 279.8,426.5 278.7,426.5 '/>
  5287. </g>
  5288. <path stroke='cyan' d='M278.7,427.4 L278.7,426.6 L279.7,426.6 L279.7,427.4 L278.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5289. <polygon fill = 'cyan' points = '279.7,427.4 280.8,427.4 280.8,426.5 279.7,426.5 '/>
  5290. </g>
  5291. <path stroke='cyan' d='M279.7,427.4 L279.7,426.6 L280.7,426.6 L280.7,427.4 L279.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5292. <polygon fill = 'cyan' points = '280.7,427.4 281.8,427.4 281.8,426.5 280.7,426.5 '/>
  5293. </g>
  5294. <path stroke='cyan' d='M280.7,427.4 L280.7,426.6 L281.7,426.6 L281.7,427.4 L280.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5295. <polygon fill = 'cyan' points = '281.7,427.4 282.8,427.4 282.8,426.5 281.7,426.5 '/>
  5296. </g>
  5297. <path stroke='cyan' d='M281.7,427.4 L281.7,426.6 L282.7,426.6 L282.7,427.4 L281.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5298. <polygon fill = 'cyan' points = '282.7,427.4 283.8,427.4 283.8,426.5 282.7,426.5 '/>
  5299. </g>
  5300. <path stroke='cyan' d='M282.7,427.4 L282.7,426.6 L283.7,426.6 L283.7,427.4 L282.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5301. <polygon fill = 'cyan' points = '283.7,427.4 284.8,427.4 284.8,426.5 283.7,426.5 '/>
  5302. </g>
  5303. <path stroke='cyan' d='M283.7,427.4 L283.7,426.6 L284.7,426.6 L284.7,427.4 L283.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5304. <polygon fill = 'cyan' points = '284.7,427.4 285.8,427.4 285.8,426.5 284.7,426.5 '/>
  5305. </g>
  5306. <path stroke='cyan' d='M284.7,427.4 L284.7,426.6 L285.7,426.6 L285.7,427.4 L284.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5307. <polygon fill = 'cyan' points = '285.7,427.4 286.8,427.4 286.8,426.5 285.7,426.5 '/>
  5308. </g>
  5309. <path stroke='cyan' d='M285.7,427.4 L285.7,426.6 L286.7,426.6 L286.7,427.4 L285.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5310. <polygon fill = 'cyan' points = '286.7,427.4 287.8,427.4 287.8,426.5 286.7,426.5 '/>
  5311. </g>
  5312. <path stroke='cyan' d='M286.7,427.4 L286.7,426.6 L287.7,426.6 L287.7,427.4 L286.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5313. <polygon fill = 'cyan' points = '287.7,427.4 288.8,427.4 288.8,426.5 287.7,426.5 '/>
  5314. </g>
  5315. <path stroke='cyan' d='M287.7,427.4 L287.7,426.6 L288.7,426.6 L288.7,427.4 L287.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5316. <polygon fill = 'cyan' points = '288.7,427.4 289.8,427.4 289.8,426.5 288.7,426.5 '/>
  5317. </g>
  5318. <path stroke='cyan' d='M288.7,427.4 L288.7,426.6 L289.7,426.6 L289.7,427.4 L288.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5319. <polygon fill = 'cyan' points = '289.7,427.4 290.8,427.4 290.8,426.5 289.7,426.5 '/>
  5320. </g>
  5321. <path stroke='cyan' d='M289.7,427.4 L289.7,426.6 L290.7,426.6 L290.7,427.4 L289.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5322. <polygon fill = 'cyan' points = '290.7,427.4 291.9,427.4 291.9,426.5 290.7,426.5 '/>
  5323. </g>
  5324. <path stroke='cyan' d='M290.7,427.4 L290.7,426.6 L291.8,426.6 L291.8,427.4 L290.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5325. <polygon fill = 'cyan' points = '291.8,427.4 292.9,427.4 292.9,426.5 291.8,426.5 '/>
  5326. </g>
  5327. <path stroke='cyan' d='M291.8,427.4 L291.8,426.6 L292.8,426.6 L292.8,427.4 L291.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5328. <polygon fill = 'cyan' points = '292.8,427.4 293.9,427.4 293.9,426.5 292.8,426.5 '/>
  5329. </g>
  5330. <path stroke='cyan' d='M292.8,427.4 L292.8,426.6 L293.8,426.6 L293.8,427.4 L292.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5331. <polygon fill = 'cyan' points = '293.8,427.4 294.9,427.4 294.9,426.5 293.8,426.5 '/>
  5332. </g>
  5333. <path stroke='cyan' d='M293.8,427.4 L293.8,426.6 L294.8,426.6 L294.8,427.4 L293.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5334. <polygon fill = 'cyan' points = '294.8,427.4 295.9,427.4 295.9,426.5 294.8,426.5 '/>
  5335. </g>
  5336. <path stroke='cyan' d='M294.8,427.4 L294.8,426.6 L295.8,426.6 L295.8,427.4 L294.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5337. <polygon fill = 'cyan' points = '295.8,427.4 296.9,427.4 296.9,426.5 295.8,426.5 '/>
  5338. </g>
  5339. <path stroke='cyan' d='M295.8,427.4 L295.8,426.6 L296.8,426.6 L296.8,427.4 L295.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5340. <polygon fill = 'cyan' points = '296.8,427.4 297.9,427.4 297.9,426.5 296.8,426.5 '/>
  5341. </g>
  5342. <path stroke='cyan' d='M296.8,427.4 L296.8,426.6 L297.8,426.6 L297.8,427.4 L296.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5343. <polygon fill = 'cyan' points = '297.8,427.4 298.9,427.4 298.9,426.5 297.8,426.5 '/>
  5344. </g>
  5345. <path stroke='cyan' d='M297.8,427.4 L297.8,426.6 L298.8,426.6 L298.8,427.4 L297.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5346. <polygon fill = 'cyan' points = '298.8,427.4 299.9,427.4 299.9,426.5 298.8,426.5 '/>
  5347. </g>
  5348. <path stroke='cyan' d='M298.8,427.4 L298.8,426.6 L299.8,426.6 L299.8,427.4 L298.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5349. <polygon fill = 'cyan' points = '299.8,427.4 300.9,427.4 300.9,426.5 299.8,426.5 '/>
  5350. </g>
  5351. <path stroke='cyan' d='M299.8,427.4 L299.8,426.6 L300.8,426.6 L300.8,427.4 L299.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5352. <polygon fill = 'cyan' points = '300.8,427.4 301.9,427.4 301.9,426.5 300.8,426.5 '/>
  5353. </g>
  5354. <path stroke='cyan' d='M300.8,427.4 L300.8,426.6 L301.8,426.6 L301.8,427.4 L300.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5355. <polygon fill = 'cyan' points = '301.8,427.4 302.9,427.4 302.9,426.5 301.8,426.5 '/>
  5356. </g>
  5357. <path stroke='cyan' d='M301.8,427.4 L301.8,426.6 L302.8,426.6 L302.8,427.4 L301.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5358. <polygon fill = 'cyan' points = '302.8,427.4 303.9,427.4 303.9,426.5 302.8,426.5 '/>
  5359. </g>
  5360. <path stroke='cyan' d='M302.8,427.4 L302.8,426.6 L303.8,426.6 L303.8,427.4 L302.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5361. <polygon fill = 'cyan' points = '303.8,427.4 304.9,427.4 304.9,426.5 303.8,426.5 '/>
  5362. </g>
  5363. <path stroke='cyan' d='M303.8,427.4 L303.8,426.6 L304.8,426.6 L304.8,427.4 L303.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5364. <polygon fill = 'cyan' points = '304.8,427.4 305.9,427.4 305.9,426.5 304.8,426.5 '/>
  5365. </g>
  5366. <path stroke='cyan' d='M304.8,427.4 L304.8,426.6 L305.8,426.6 L305.8,427.4 L304.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5367. <polygon fill = 'cyan' points = '305.8,427.4 306.9,427.4 306.9,426.2 305.8,426.2 '/>
  5368. </g>
  5369. <path stroke='cyan' d='M305.8,427.4 L305.8,426.3 L306.8,426.3 L306.8,427.4 L305.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5370. <polygon fill = 'cyan' points = '306.8,427.4 308.0,427.4 308.0,426.5 306.8,426.5 '/>
  5371. </g>
  5372. <path stroke='cyan' d='M306.8,427.4 L306.8,426.6 L307.9,426.6 L307.9,427.4 L306.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5373. <polygon fill = 'cyan' points = '307.9,427.4 309.0,427.4 309.0,426.5 307.9,426.5 '/>
  5374. </g>
  5375. <path stroke='cyan' d='M307.9,427.4 L307.9,426.6 L308.9,426.6 L308.9,427.4 L307.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5376. <polygon fill = 'cyan' points = '308.9,427.4 310.0,427.4 310.0,426.5 308.9,426.5 '/>
  5377. </g>
  5378. <path stroke='cyan' d='M308.9,427.4 L308.9,426.6 L309.9,426.6 L309.9,427.4 L308.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5379. <polygon fill = 'cyan' points = '309.9,427.4 311.0,427.4 311.0,426.5 309.9,426.5 '/>
  5380. </g>
  5381. <path stroke='cyan' d='M309.9,427.4 L309.9,426.6 L310.9,426.6 L310.9,427.4 L309.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5382. <polygon fill = 'cyan' points = '310.9,427.4 312.0,427.4 312.0,426.5 310.9,426.5 '/>
  5383. </g>
  5384. <path stroke='cyan' d='M310.9,427.4 L310.9,426.6 L311.9,426.6 L311.9,427.4 L310.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5385. <polygon fill = 'cyan' points = '311.9,427.4 313.0,427.4 313.0,426.5 311.9,426.5 '/>
  5386. </g>
  5387. <path stroke='cyan' d='M311.9,427.4 L311.9,426.6 L312.9,426.6 L312.9,427.4 L311.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5388. <polygon fill = 'cyan' points = '312.9,427.4 314.0,427.4 314.0,426.5 312.9,426.5 '/>
  5389. </g>
  5390. <path stroke='cyan' d='M312.9,427.4 L312.9,426.6 L313.9,426.6 L313.9,427.4 L312.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5391. <polygon fill = 'cyan' points = '313.9,427.4 315.0,427.4 315.0,426.5 313.9,426.5 '/>
  5392. </g>
  5393. <path stroke='cyan' d='M313.9,427.4 L313.9,426.6 L314.9,426.6 L314.9,427.4 L313.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5394. <polygon fill = 'cyan' points = '314.9,427.4 316.0,427.4 316.0,426.5 314.9,426.5 '/>
  5395. </g>
  5396. <path stroke='cyan' d='M314.9,427.4 L314.9,426.6 L315.9,426.6 L315.9,427.4 L314.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5397. <polygon fill = 'cyan' points = '315.9,427.4 317.0,427.4 317.0,426.5 315.9,426.5 '/>
  5398. </g>
  5399. <path stroke='cyan' d='M315.9,427.4 L315.9,426.6 L316.9,426.6 L316.9,427.4 L315.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5400. <polygon fill = 'cyan' points = '316.9,427.4 318.0,427.4 318.0,426.5 316.9,426.5 '/>
  5401. </g>
  5402. <path stroke='cyan' d='M316.9,427.4 L316.9,426.6 L317.9,426.6 L317.9,427.4 L316.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5403. <polygon fill = 'cyan' points = '317.9,427.4 319.0,427.4 319.0,426.5 317.9,426.5 '/>
  5404. </g>
  5405. <path stroke='cyan' d='M317.9,427.4 L317.9,426.6 L318.9,426.6 L318.9,427.4 L317.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5406. <polygon fill = 'cyan' points = '318.9,427.4 320.0,427.4 320.0,426.5 318.9,426.5 '/>
  5407. </g>
  5408. <path stroke='cyan' d='M318.9,427.4 L318.9,426.6 L319.9,426.6 L319.9,427.4 L318.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5409. <polygon fill = 'cyan' points = '319.9,427.4 321.0,427.4 321.0,426.5 319.9,426.5 '/>
  5410. </g>
  5411. <path stroke='cyan' d='M319.9,427.4 L319.9,426.6 L320.9,426.6 L320.9,427.4 L319.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5412. <polygon fill = 'cyan' points = '320.9,427.4 322.0,427.4 322.0,426.5 320.9,426.5 '/>
  5413. </g>
  5414. <path stroke='cyan' d='M320.9,427.4 L320.9,426.6 L321.9,426.6 L321.9,427.4 L320.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5415. <polygon fill = 'cyan' points = '321.9,427.4 323.0,427.4 323.0,426.5 321.9,426.5 '/>
  5416. </g>
  5417. <path stroke='cyan' d='M321.9,427.4 L321.9,426.6 L322.9,426.6 L322.9,427.4 L321.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5418. <polygon fill = 'cyan' points = '322.9,427.4 324.1,427.4 324.1,426.5 322.9,426.5 '/>
  5419. </g>
  5420. <path stroke='cyan' d='M322.9,427.4 L322.9,426.6 L324.0,426.6 L324.0,427.4 L322.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5421. <polygon fill = 'cyan' points = '324.0,427.4 325.1,427.4 325.1,425.7 324.0,425.7 '/>
  5422. </g>
  5423. <path stroke='cyan' d='M324.0,427.4 L324.0,425.8 L325.0,425.8 L325.0,427.4 L324.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5424. <polygon fill = 'cyan' points = '325.0,427.4 326.1,427.4 326.1,426.5 325.0,426.5 '/>
  5425. </g>
  5426. <path stroke='cyan' d='M325.0,427.4 L325.0,426.6 L326.0,426.6 L326.0,427.4 L325.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5427. <polygon fill = 'cyan' points = '326.0,427.4 327.1,427.4 327.1,426.5 326.0,426.5 '/>
  5428. </g>
  5429. <path stroke='cyan' d='M326.0,427.4 L326.0,426.6 L327.0,426.6 L327.0,427.4 L326.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5430. <polygon fill = 'cyan' points = '327.0,427.4 328.1,427.4 328.1,424.6 327.0,424.6 '/>
  5431. </g>
  5432. <path stroke='cyan' d='M327.0,427.4 L327.0,424.7 L328.0,424.7 L328.0,427.4 L327.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5433. <polygon fill = 'cyan' points = '328.0,427.4 329.1,427.4 329.1,426.5 328.0,426.5 '/>
  5434. </g>
  5435. <path stroke='cyan' d='M328.0,427.4 L328.0,426.6 L329.0,426.6 L329.0,427.4 L328.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5436. <polygon fill = 'cyan' points = '329.0,427.4 330.1,427.4 330.1,426.5 329.0,426.5 '/>
  5437. </g>
  5438. <path stroke='cyan' d='M329.0,427.4 L329.0,426.6 L330.0,426.6 L330.0,427.4 L329.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5439. <polygon fill = 'cyan' points = '330.0,427.4 331.1,427.4 331.1,426.5 330.0,426.5 '/>
  5440. </g>
  5441. <path stroke='cyan' d='M330.0,427.4 L330.0,426.6 L331.0,426.6 L331.0,427.4 L330.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5442. <polygon fill = 'cyan' points = '331.0,427.4 332.1,427.4 332.1,425.7 331.0,425.7 '/>
  5443. </g>
  5444. <path stroke='cyan' d='M331.0,427.4 L331.0,425.8 L332.0,425.8 L332.0,427.4 L331.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5445. <polygon fill = 'cyan' points = '332.0,427.4 333.1,427.4 333.1,426.5 332.0,426.5 '/>
  5446. </g>
  5447. <path stroke='cyan' d='M332.0,427.4 L332.0,426.6 L333.0,426.6 L333.0,427.4 L332.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5448. <polygon fill = 'cyan' points = '333.0,427.4 334.1,427.4 334.1,426.5 333.0,426.5 '/>
  5449. </g>
  5450. <path stroke='cyan' d='M333.0,427.4 L333.0,426.6 L334.0,426.6 L334.0,427.4 L333.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5451. <polygon fill = 'cyan' points = '334.0,427.4 335.1,427.4 335.1,426.5 334.0,426.5 '/>
  5452. </g>
  5453. <path stroke='cyan' d='M334.0,427.4 L334.0,426.6 L335.0,426.6 L335.0,427.4 L334.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5454. <polygon fill = 'cyan' points = '335.0,427.4 336.1,427.4 336.1,426.5 335.0,426.5 '/>
  5455. </g>
  5456. <path stroke='cyan' d='M335.0,427.4 L335.0,426.6 L336.0,426.6 L336.0,427.4 L335.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5457. <polygon fill = 'cyan' points = '336.0,427.4 337.1,427.4 337.1,426.5 336.0,426.5 '/>
  5458. </g>
  5459. <path stroke='cyan' d='M336.0,427.4 L336.0,426.6 L337.0,426.6 L337.0,427.4 L336.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5460. <polygon fill = 'cyan' points = '337.0,427.4 338.1,427.4 338.1,426.5 337.0,426.5 '/>
  5461. </g>
  5462. <path stroke='cyan' d='M337.0,427.4 L337.0,426.6 L338.0,426.6 L338.0,427.4 L337.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5463. <polygon fill = 'cyan' points = '338.0,427.4 339.1,427.4 339.1,426.5 338.0,426.5 '/>
  5464. </g>
  5465. <path stroke='cyan' d='M338.0,427.4 L338.0,426.6 L339.0,426.6 L339.0,427.4 L338.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5466. <polygon fill = 'cyan' points = '339.0,427.4 340.2,427.4 340.2,416.6 339.0,416.6 '/>
  5467. </g>
  5468. <path stroke='cyan' d='M339.0,427.4 L339.0,416.7 L340.1,416.7 L340.1,427.4 L339.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5469. <polygon fill = 'cyan' points = '340.1,427.4 341.2,427.4 341.2,426.5 340.1,426.5 '/>
  5470. </g>
  5471. <path stroke='cyan' d='M340.1,427.4 L340.1,426.6 L341.1,426.6 L341.1,427.4 L340.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5472. <polygon fill = 'cyan' points = '341.1,427.4 342.2,427.4 342.2,426.5 341.1,426.5 '/>
  5473. </g>
  5474. <path stroke='cyan' d='M341.1,427.4 L341.1,426.6 L342.1,426.6 L342.1,427.4 L341.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5475. <polygon fill = 'cyan' points = '342.1,427.4 343.2,427.4 343.2,426.5 342.1,426.5 '/>
  5476. </g>
  5477. <path stroke='cyan' d='M342.1,427.4 L342.1,426.6 L343.1,426.6 L343.1,427.4 L342.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5478. <polygon fill = 'cyan' points = '343.1,427.4 344.2,427.4 344.2,426.5 343.1,426.5 '/>
  5479. </g>
  5480. <path stroke='cyan' d='M343.1,427.4 L343.1,426.6 L344.1,426.6 L344.1,427.4 L343.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5481. <polygon fill = 'cyan' points = '344.1,427.4 345.2,427.4 345.2,426.5 344.1,426.5 '/>
  5482. </g>
  5483. <path stroke='cyan' d='M344.1,427.4 L344.1,426.6 L345.1,426.6 L345.1,427.4 L344.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5484. <polygon fill = 'cyan' points = '345.1,427.4 346.2,427.4 346.2,426.5 345.1,426.5 '/>
  5485. </g>
  5486. <path stroke='cyan' d='M345.1,427.4 L345.1,426.6 L346.1,426.6 L346.1,427.4 L345.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5487. <polygon fill = 'cyan' points = '346.1,427.4 347.2,427.4 347.2,426.5 346.1,426.5 '/>
  5488. </g>
  5489. <path stroke='cyan' d='M346.1,427.4 L346.1,426.6 L347.1,426.6 L347.1,427.4 L346.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5490. <polygon fill = 'cyan' points = '347.1,427.4 348.2,427.4 348.2,426.5 347.1,426.5 '/>
  5491. </g>
  5492. <path stroke='cyan' d='M347.1,427.4 L347.1,426.6 L348.1,426.6 L348.1,427.4 L347.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5493. <polygon fill = 'cyan' points = '348.1,427.4 349.2,427.4 349.2,426.5 348.1,426.5 '/>
  5494. </g>
  5495. <path stroke='cyan' d='M348.1,427.4 L348.1,426.6 L349.1,426.6 L349.1,427.4 L348.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5496. <polygon fill = 'cyan' points = '349.1,427.4 350.2,427.4 350.2,426.5 349.1,426.5 '/>
  5497. </g>
  5498. <path stroke='cyan' d='M349.1,427.4 L349.1,426.6 L350.1,426.6 L350.1,427.4 L349.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5499. <polygon fill = 'cyan' points = '350.1,427.4 351.2,427.4 351.2,426.5 350.1,426.5 '/>
  5500. </g>
  5501. <path stroke='cyan' d='M350.1,427.4 L350.1,426.6 L351.1,426.6 L351.1,427.4 L350.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5502. <polygon fill = 'cyan' points = '351.1,427.4 352.2,427.4 352.2,426.5 351.1,426.5 '/>
  5503. </g>
  5504. <path stroke='cyan' d='M351.1,427.4 L351.1,426.6 L352.1,426.6 L352.1,427.4 L351.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5505. <polygon fill = 'cyan' points = '352.1,427.4 353.2,427.4 353.2,426.5 352.1,426.5 '/>
  5506. </g>
  5507. <path stroke='cyan' d='M352.1,427.4 L352.1,426.6 L353.1,426.6 L353.1,427.4 L352.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5508. <polygon fill = 'cyan' points = '353.1,427.4 354.2,427.4 354.2,426.5 353.1,426.5 '/>
  5509. </g>
  5510. <path stroke='cyan' d='M353.1,427.4 L353.1,426.6 L354.1,426.6 L354.1,427.4 L353.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5511. <polygon fill = 'cyan' points = '354.1,427.4 355.2,427.4 355.2,426.5 354.1,426.5 '/>
  5512. </g>
  5513. <path stroke='cyan' d='M354.1,427.4 L354.1,426.6 L355.1,426.6 L355.1,427.4 L354.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5514. <polygon fill = 'cyan' points = '355.1,427.4 356.3,427.4 356.3,426.5 355.1,426.5 '/>
  5515. </g>
  5516. <path stroke='cyan' d='M355.1,427.4 L355.1,426.6 L356.2,426.6 L356.2,427.4 L355.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5517. <polygon fill = 'cyan' points = '356.2,427.4 357.3,427.4 357.3,426.5 356.2,426.5 '/>
  5518. </g>
  5519. <path stroke='cyan' d='M356.2,427.4 L356.2,426.6 L357.2,426.6 L357.2,427.4 L356.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5520. <polygon fill = 'cyan' points = '357.2,427.4 358.3,427.4 358.3,426.5 357.2,426.5 '/>
  5521. </g>
  5522. <path stroke='cyan' d='M357.2,427.4 L357.2,426.6 L358.2,426.6 L358.2,427.4 L357.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5523. <polygon fill = 'cyan' points = '358.2,427.4 359.3,427.4 359.3,426.5 358.2,426.5 '/>
  5524. </g>
  5525. <path stroke='cyan' d='M358.2,427.4 L358.2,426.6 L359.2,426.6 L359.2,427.4 L358.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5526. <polygon fill = 'cyan' points = '359.2,427.4 360.3,427.4 360.3,426.5 359.2,426.5 '/>
  5527. </g>
  5528. <path stroke='cyan' d='M359.2,427.4 L359.2,426.6 L360.2,426.6 L360.2,427.4 L359.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5529. <polygon fill = 'cyan' points = '360.2,427.4 361.3,427.4 361.3,426.5 360.2,426.5 '/>
  5530. </g>
  5531. <path stroke='cyan' d='M360.2,427.4 L360.2,426.6 L361.2,426.6 L361.2,427.4 L360.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5532. <polygon fill = 'cyan' points = '361.2,427.4 362.3,427.4 362.3,426.5 361.2,426.5 '/>
  5533. </g>
  5534. <path stroke='cyan' d='M361.2,427.4 L361.2,426.6 L362.2,426.6 L362.2,427.4 L361.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5535. <polygon fill = 'cyan' points = '362.2,427.4 363.3,427.4 363.3,426.5 362.2,426.5 '/>
  5536. </g>
  5537. <path stroke='cyan' d='M362.2,427.4 L362.2,426.6 L363.2,426.6 L363.2,427.4 L362.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5538. <polygon fill = 'cyan' points = '363.2,427.4 364.3,427.4 364.3,426.5 363.2,426.5 '/>
  5539. </g>
  5540. <path stroke='cyan' d='M363.2,427.4 L363.2,426.6 L364.2,426.6 L364.2,427.4 L363.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5541. <polygon fill = 'cyan' points = '364.2,427.4 365.3,427.4 365.3,426.5 364.2,426.5 '/>
  5542. </g>
  5543. <path stroke='cyan' d='M364.2,427.4 L364.2,426.6 L365.2,426.6 L365.2,427.4 L364.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5544. <polygon fill = 'cyan' points = '365.2,427.4 366.3,427.4 366.3,426.5 365.2,426.5 '/>
  5545. </g>
  5546. <path stroke='cyan' d='M365.2,427.4 L365.2,426.6 L366.2,426.6 L366.2,427.4 L365.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5547. <polygon fill = 'cyan' points = '366.2,427.4 367.3,427.4 367.3,426.5 366.2,426.5 '/>
  5548. </g>
  5549. <path stroke='cyan' d='M366.2,427.4 L366.2,426.6 L367.2,426.6 L367.2,427.4 L366.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5550. <polygon fill = 'cyan' points = '367.2,427.4 368.3,427.4 368.3,426.5 367.2,426.5 '/>
  5551. </g>
  5552. <path stroke='cyan' d='M367.2,427.4 L367.2,426.6 L368.2,426.6 L368.2,427.4 L367.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5553. <polygon fill = 'cyan' points = '368.2,427.4 369.3,427.4 369.3,426.5 368.2,426.5 '/>
  5554. </g>
  5555. <path stroke='cyan' d='M368.2,427.4 L368.2,426.6 L369.2,426.6 L369.2,427.4 L368.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5556. <polygon fill = 'cyan' points = '369.2,427.4 370.3,427.4 370.3,426.5 369.2,426.5 '/>
  5557. </g>
  5558. <path stroke='cyan' d='M369.2,427.4 L369.2,426.6 L370.2,426.6 L370.2,427.4 L369.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5559. <polygon fill = 'cyan' points = '370.2,427.4 371.3,427.4 371.3,426.5 370.2,426.5 '/>
  5560. </g>
  5561. <path stroke='cyan' d='M370.2,427.4 L370.2,426.6 L371.2,426.6 L371.2,427.4 L370.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5562. <polygon fill = 'cyan' points = '371.2,427.4 372.4,427.4 372.4,426.5 371.2,426.5 '/>
  5563. </g>
  5564. <path stroke='cyan' d='M371.2,427.4 L371.2,426.6 L372.3,426.6 L372.3,427.4 L371.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5565. <polygon fill = 'cyan' points = '372.3,427.4 373.4,427.4 373.4,426.5 372.3,426.5 '/>
  5566. </g>
  5567. <path stroke='cyan' d='M372.3,427.4 L372.3,426.6 L373.3,426.6 L373.3,427.4 L372.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5568. <polygon fill = 'cyan' points = '373.3,427.4 374.4,427.4 374.4,426.4 373.3,426.4 '/>
  5569. </g>
  5570. <path stroke='cyan' d='M373.3,427.4 L373.3,426.5 L374.3,426.5 L374.3,427.4 L373.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5571. <polygon fill = 'cyan' points = '374.3,427.4 375.4,427.4 375.4,426.5 374.3,426.5 '/>
  5572. </g>
  5573. <path stroke='cyan' d='M374.3,427.4 L374.3,426.6 L375.3,426.6 L375.3,427.4 L374.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5574. <polygon fill = 'cyan' points = '375.3,427.4 376.4,427.4 376.4,426.5 375.3,426.5 '/>
  5575. </g>
  5576. <path stroke='cyan' d='M375.3,427.4 L375.3,426.6 L376.3,426.6 L376.3,427.4 L375.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5577. <polygon fill = 'cyan' points = '376.3,427.4 377.4,427.4 377.4,426.5 376.3,426.5 '/>
  5578. </g>
  5579. <path stroke='cyan' d='M376.3,427.4 L376.3,426.6 L377.3,426.6 L377.3,427.4 L376.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5580. <polygon fill = 'cyan' points = '377.3,427.4 378.4,427.4 378.4,426.5 377.3,426.5 '/>
  5581. </g>
  5582. <path stroke='cyan' d='M377.3,427.4 L377.3,426.6 L378.3,426.6 L378.3,427.4 L377.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5583. <polygon fill = 'cyan' points = '378.3,427.4 379.4,427.4 379.4,426.5 378.3,426.5 '/>
  5584. </g>
  5585. <path stroke='cyan' d='M378.3,427.4 L378.3,426.6 L379.3,426.6 L379.3,427.4 L378.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5586. <polygon fill = 'cyan' points = '379.3,427.4 380.4,427.4 380.4,426.5 379.3,426.5 '/>
  5587. </g>
  5588. <path stroke='cyan' d='M379.3,427.4 L379.3,426.6 L380.3,426.6 L380.3,427.4 L379.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5589. <polygon fill = 'cyan' points = '380.3,427.4 381.4,427.4 381.4,426.5 380.3,426.5 '/>
  5590. </g>
  5591. <path stroke='cyan' d='M380.3,427.4 L380.3,426.6 L381.3,426.6 L381.3,427.4 L380.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5592. <polygon fill = 'cyan' points = '381.3,427.4 382.4,427.4 382.4,426.5 381.3,426.5 '/>
  5593. </g>
  5594. <path stroke='cyan' d='M381.3,427.4 L381.3,426.6 L382.3,426.6 L382.3,427.4 L381.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5595. <polygon fill = 'cyan' points = '382.3,427.4 383.4,427.4 383.4,426.5 382.3,426.5 '/>
  5596. </g>
  5597. <path stroke='cyan' d='M382.3,427.4 L382.3,426.6 L383.3,426.6 L383.3,427.4 L382.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5598. <polygon fill = 'cyan' points = '383.3,427.4 384.4,427.4 384.4,426.5 383.3,426.5 '/>
  5599. </g>
  5600. <path stroke='cyan' d='M383.3,427.4 L383.3,426.6 L384.3,426.6 L384.3,427.4 L383.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5601. <polygon fill = 'cyan' points = '384.3,427.4 385.4,427.4 385.4,426.5 384.3,426.5 '/>
  5602. </g>
  5603. <path stroke='cyan' d='M384.3,427.4 L384.3,426.6 L385.3,426.6 L385.3,427.4 L384.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5604. <polygon fill = 'cyan' points = '385.3,427.4 386.4,427.4 386.4,426.5 385.3,426.5 '/>
  5605. </g>
  5606. <path stroke='cyan' d='M385.3,427.4 L385.3,426.6 L386.3,426.6 L386.3,427.4 L385.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5607. <polygon fill = 'cyan' points = '386.3,427.4 387.4,427.4 387.4,426.5 386.3,426.5 '/>
  5608. </g>
  5609. <path stroke='cyan' d='M386.3,427.4 L386.3,426.6 L387.3,426.6 L387.3,427.4 L386.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5610. <polygon fill = 'cyan' points = '387.3,427.4 388.4,427.4 388.4,426.5 387.3,426.5 '/>
  5611. </g>
  5612. <path stroke='cyan' d='M387.3,427.4 L387.3,426.6 L388.3,426.6 L388.3,427.4 L387.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5613. <polygon fill = 'cyan' points = '388.3,427.4 389.5,427.4 389.5,426.5 388.3,426.5 '/>
  5614. </g>
  5615. <path stroke='cyan' d='M388.3,427.4 L388.3,426.6 L389.4,426.6 L389.4,427.4 L388.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5616. <polygon fill = 'cyan' points = '389.4,427.4 390.5,427.4 390.5,426.5 389.4,426.5 '/>
  5617. </g>
  5618. <path stroke='cyan' d='M389.4,427.4 L389.4,426.6 L390.4,426.6 L390.4,427.4 L389.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5619. <polygon fill = 'cyan' points = '390.4,427.4 391.5,427.4 391.5,426.5 390.4,426.5 '/>
  5620. </g>
  5621. <path stroke='cyan' d='M390.4,427.4 L390.4,426.6 L391.4,426.6 L391.4,427.4 L390.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5622. <polygon fill = 'cyan' points = '391.4,427.4 392.5,427.4 392.5,426.5 391.4,426.5 '/>
  5623. </g>
  5624. <path stroke='cyan' d='M391.4,427.4 L391.4,426.6 L392.4,426.6 L392.4,427.4 L391.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5625. <polygon fill = 'cyan' points = '392.4,427.4 393.5,427.4 393.5,426.5 392.4,426.5 '/>
  5626. </g>
  5627. <path stroke='cyan' d='M392.4,427.4 L392.4,426.6 L393.4,426.6 L393.4,427.4 L392.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5628. <polygon fill = 'cyan' points = '393.4,427.4 394.5,427.4 394.5,426.5 393.4,426.5 '/>
  5629. </g>
  5630. <path stroke='cyan' d='M393.4,427.4 L393.4,426.6 L394.4,426.6 L394.4,427.4 L393.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5631. <polygon fill = 'cyan' points = '394.4,427.4 395.5,427.4 395.5,426.5 394.4,426.5 '/>
  5632. </g>
  5633. <path stroke='cyan' d='M394.4,427.4 L394.4,426.6 L395.4,426.6 L395.4,427.4 L394.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5634. <polygon fill = 'cyan' points = '395.4,427.4 396.5,427.4 396.5,426.5 395.4,426.5 '/>
  5635. </g>
  5636. <path stroke='cyan' d='M395.4,427.4 L395.4,426.6 L396.4,426.6 L396.4,427.4 L395.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5637. <polygon fill = 'cyan' points = '396.4,427.4 397.5,427.4 397.5,426.5 396.4,426.5 '/>
  5638. </g>
  5639. <path stroke='cyan' d='M396.4,427.4 L396.4,426.6 L397.4,426.6 L397.4,427.4 L396.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5640. <polygon fill = 'cyan' points = '397.4,427.4 398.5,427.4 398.5,426.5 397.4,426.5 '/>
  5641. </g>
  5642. <path stroke='cyan' d='M397.4,427.4 L397.4,426.6 L398.4,426.6 L398.4,427.4 L397.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5643. <polygon fill = 'cyan' points = '398.4,427.4 399.5,427.4 399.5,426.5 398.4,426.5 '/>
  5644. </g>
  5645. <path stroke='cyan' d='M398.4,427.4 L398.4,426.6 L399.4,426.6 L399.4,427.4 L398.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5646. <polygon fill = 'cyan' points = '399.4,427.4 400.5,427.4 400.5,426.5 399.4,426.5 '/>
  5647. </g>
  5648. <path stroke='cyan' d='M399.4,427.4 L399.4,426.6 L400.4,426.6 L400.4,427.4 L399.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5649. <polygon fill = 'cyan' points = '400.4,427.4 401.5,427.4 401.5,416.9 400.4,416.9 '/>
  5650. </g>
  5651. <path stroke='cyan' d='M400.4,427.4 L400.4,417.0 L401.4,417.0 L401.4,427.4 L400.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5652. <polygon fill = 'cyan' points = '401.4,427.4 402.5,427.4 402.5,421.4 401.4,421.4 '/>
  5653. </g>
  5654. <path stroke='cyan' d='M401.4,427.4 L401.4,421.5 L402.4,421.5 L402.4,427.4 L401.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5655. <polygon fill = 'cyan' points = '402.4,427.4 403.5,427.4 403.5,426.5 402.4,426.5 '/>
  5656. </g>
  5657. <path stroke='cyan' d='M402.4,427.4 L402.4,426.6 L403.4,426.6 L403.4,427.4 L402.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5658. <polygon fill = 'cyan' points = '403.4,427.4 404.5,427.4 404.5,426.5 403.4,426.5 '/>
  5659. </g>
  5660. <path stroke='cyan' d='M403.4,427.4 L403.4,426.6 L404.4,426.6 L404.4,427.4 L403.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5661. <polygon fill = 'cyan' points = '404.4,427.4 405.6,427.4 405.6,426.5 404.4,426.5 '/>
  5662. </g>
  5663. <path stroke='cyan' d='M404.4,427.4 L404.4,426.6 L405.5,426.6 L405.5,427.4 L404.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5664. <polygon fill = 'cyan' points = '405.5,427.4 406.6,427.4 406.6,426.5 405.5,426.5 '/>
  5665. </g>
  5666. <path stroke='cyan' d='M405.5,427.4 L405.5,426.6 L406.5,426.6 L406.5,427.4 L405.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5667. <polygon fill = 'cyan' points = '406.5,427.4 407.6,427.4 407.6,426.5 406.5,426.5 '/>
  5668. </g>
  5669. <path stroke='cyan' d='M406.5,427.4 L406.5,426.6 L407.5,426.6 L407.5,427.4 L406.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5670. <polygon fill = 'cyan' points = '407.5,427.4 408.6,427.4 408.6,426.5 407.5,426.5 '/>
  5671. </g>
  5672. <path stroke='cyan' d='M407.5,427.4 L407.5,426.6 L408.5,426.6 L408.5,427.4 L407.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5673. <polygon fill = 'cyan' points = '408.5,427.4 409.6,427.4 409.6,426.5 408.5,426.5 '/>
  5674. </g>
  5675. <path stroke='cyan' d='M408.5,427.4 L408.5,426.6 L409.5,426.6 L409.5,427.4 L408.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5676. <polygon fill = 'cyan' points = '409.5,427.4 410.6,427.4 410.6,426.5 409.5,426.5 '/>
  5677. </g>
  5678. <path stroke='cyan' d='M409.5,427.4 L409.5,426.6 L410.5,426.6 L410.5,427.4 L409.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5679. <polygon fill = 'cyan' points = '410.5,427.4 411.6,427.4 411.6,426.5 410.5,426.5 '/>
  5680. </g>
  5681. <path stroke='cyan' d='M410.5,427.4 L410.5,426.6 L411.5,426.6 L411.5,427.4 L410.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5682. <polygon fill = 'cyan' points = '411.5,427.4 412.6,427.4 412.6,426.5 411.5,426.5 '/>
  5683. </g>
  5684. <path stroke='cyan' d='M411.5,427.4 L411.5,426.6 L412.5,426.6 L412.5,427.4 L411.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5685. <polygon fill = 'cyan' points = '412.5,427.4 413.6,427.4 413.6,424.6 412.5,424.6 '/>
  5686. </g>
  5687. <path stroke='cyan' d='M412.5,427.4 L412.5,424.7 L413.5,424.7 L413.5,427.4 L412.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5688. <polygon fill = 'cyan' points = '413.5,427.4 414.6,427.4 414.6,426.5 413.5,426.5 '/>
  5689. </g>
  5690. <path stroke='cyan' d='M413.5,427.4 L413.5,426.6 L414.5,426.6 L414.5,427.4 L413.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5691. <polygon fill = 'cyan' points = '414.5,427.4 415.6,427.4 415.6,422.5 414.5,422.5 '/>
  5692. </g>
  5693. <path stroke='cyan' d='M414.5,427.4 L414.5,422.6 L415.5,422.6 L415.5,427.4 L414.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5694. <polygon fill = 'cyan' points = '415.5,427.4 416.6,427.4 416.6,425.9 415.5,425.9 '/>
  5695. </g>
  5696. <path stroke='cyan' d='M415.5,427.4 L415.5,426.0 L416.5,426.0 L416.5,427.4 L415.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5697. <polygon fill = 'cyan' points = '416.5,427.4 417.6,427.4 417.6,400.1 416.5,400.1 '/>
  5698. </g>
  5699. <path stroke='cyan' d='M416.5,427.4 L416.5,400.2 L417.5,400.2 L417.5,427.4 L416.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5700. <polygon fill = 'cyan' points = '417.5,427.4 418.6,427.4 418.6,402.4 417.5,402.4 '/>
  5701. </g>
  5702. <path stroke='cyan' d='M417.5,427.4 L417.5,402.5 L418.5,402.5 L418.5,427.4 L417.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5703. <polygon fill = 'cyan' points = '418.5,427.4 419.6,427.4 419.6,426.5 418.5,426.5 '/>
  5704. </g>
  5705. <path stroke='cyan' d='M418.5,427.4 L418.5,426.6 L419.5,426.6 L419.5,427.4 L418.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5706. <polygon fill = 'cyan' points = '419.5,427.4 420.6,427.4 420.6,426.5 419.5,426.5 '/>
  5707. </g>
  5708. <path stroke='cyan' d='M419.5,427.4 L419.5,426.6 L420.5,426.6 L420.5,427.4 L419.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5709. <polygon fill = 'cyan' points = '420.5,427.4 421.7,427.4 421.7,426.5 420.5,426.5 '/>
  5710. </g>
  5711. <path stroke='cyan' d='M420.5,427.4 L420.5,426.6 L421.6,426.6 L421.6,427.4 L420.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5712. <polygon fill = 'cyan' points = '421.6,427.4 422.7,427.4 422.7,426.5 421.6,426.5 '/>
  5713. </g>
  5714. <path stroke='cyan' d='M421.6,427.4 L421.6,426.6 L422.6,426.6 L422.6,427.4 L421.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5715. <polygon fill = 'cyan' points = '422.6,427.4 423.7,427.4 423.7,426.5 422.6,426.5 '/>
  5716. </g>
  5717. <path stroke='cyan' d='M422.6,427.4 L422.6,426.6 L423.6,426.6 L423.6,427.4 L422.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5718. <polygon fill = 'cyan' points = '423.6,427.4 424.7,427.4 424.7,426.5 423.6,426.5 '/>
  5719. </g>
  5720. <path stroke='cyan' d='M423.6,427.4 L423.6,426.6 L424.6,426.6 L424.6,427.4 L423.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5721. <polygon fill = 'cyan' points = '424.6,427.4 425.7,427.4 425.7,426.5 424.6,426.5 '/>
  5722. </g>
  5723. <path stroke='cyan' d='M424.6,427.4 L424.6,426.6 L425.6,426.6 L425.6,427.4 L424.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5724. <polygon fill = 'cyan' points = '425.6,427.4 426.7,427.4 426.7,426.5 425.6,426.5 '/>
  5725. </g>
  5726. <path stroke='cyan' d='M425.6,427.4 L425.6,426.6 L426.6,426.6 L426.6,427.4 L425.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5727. <polygon fill = 'cyan' points = '426.6,427.4 427.7,427.4 427.7,426.5 426.6,426.5 '/>
  5728. </g>
  5729. <path stroke='cyan' d='M426.6,427.4 L426.6,426.6 L427.6,426.6 L427.6,427.4 L426.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5730. <polygon fill = 'cyan' points = '427.6,427.4 428.7,427.4 428.7,426.5 427.6,426.5 '/>
  5731. </g>
  5732. <path stroke='cyan' d='M427.6,427.4 L427.6,426.6 L428.6,426.6 L428.6,427.4 L427.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5733. <polygon fill = 'cyan' points = '428.6,427.4 429.7,427.4 429.7,417.7 428.6,417.7 '/>
  5734. </g>
  5735. <path stroke='cyan' d='M428.6,427.4 L428.6,417.8 L429.6,417.8 L429.6,427.4 L428.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5736. <polygon fill = 'cyan' points = '429.6,427.4 430.7,427.4 430.7,426.5 429.6,426.5 '/>
  5737. </g>
  5738. <path stroke='cyan' d='M429.6,427.4 L429.6,426.6 L430.6,426.6 L430.6,427.4 L429.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5739. <polygon fill = 'cyan' points = '430.6,427.4 431.7,427.4 431.7,426.5 430.6,426.5 '/>
  5740. </g>
  5741. <path stroke='cyan' d='M430.6,427.4 L430.6,426.6 L431.6,426.6 L431.6,427.4 L430.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5742. <polygon fill = 'cyan' points = '431.6,427.4 432.7,427.4 432.7,426.5 431.6,426.5 '/>
  5743. </g>
  5744. <path stroke='cyan' d='M431.6,427.4 L431.6,426.6 L432.6,426.6 L432.6,427.4 L431.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5745. <polygon fill = 'cyan' points = '432.6,427.4 433.7,427.4 433.7,426.5 432.6,426.5 '/>
  5746. </g>
  5747. <path stroke='cyan' d='M432.6,427.4 L432.6,426.6 L433.6,426.6 L433.6,427.4 L432.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5748. <polygon fill = 'cyan' points = '433.6,427.4 434.7,427.4 434.7,426.5 433.6,426.5 '/>
  5749. </g>
  5750. <path stroke='cyan' d='M433.6,427.4 L433.6,426.6 L434.6,426.6 L434.6,427.4 L433.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5751. <polygon fill = 'cyan' points = '434.6,427.4 435.7,427.4 435.7,426.5 434.6,426.5 '/>
  5752. </g>
  5753. <path stroke='cyan' d='M434.6,427.4 L434.6,426.6 L435.6,426.6 L435.6,427.4 L434.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5754. <polygon fill = 'cyan' points = '435.6,427.4 436.7,427.4 436.7,426.5 435.6,426.5 '/>
  5755. </g>
  5756. <path stroke='cyan' d='M435.6,427.4 L435.6,426.6 L436.6,426.6 L436.6,427.4 L435.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5757. <polygon fill = 'cyan' points = '436.6,427.4 437.8,427.4 437.8,426.5 436.6,426.5 '/>
  5758. </g>
  5759. <path stroke='cyan' d='M436.6,427.4 L436.6,426.6 L437.7,426.6 L437.7,427.4 L436.6,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5760. <polygon fill = 'cyan' points = '437.7,427.4 438.8,427.4 438.8,426.5 437.7,426.5 '/>
  5761. </g>
  5762. <path stroke='cyan' d='M437.7,427.4 L437.7,426.6 L438.7,426.6 L438.7,427.4 L437.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5763. <polygon fill = 'cyan' points = '438.7,427.4 439.8,427.4 439.8,426.5 438.7,426.5 '/>
  5764. </g>
  5765. <path stroke='cyan' d='M438.7,427.4 L438.7,426.6 L439.7,426.6 L439.7,427.4 L438.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5766. <polygon fill = 'cyan' points = '439.7,427.4 440.8,427.4 440.8,426.5 439.7,426.5 '/>
  5767. </g>
  5768. <path stroke='cyan' d='M439.7,427.4 L439.7,426.6 L440.7,426.6 L440.7,427.4 L439.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5769. <polygon fill = 'cyan' points = '440.7,427.4 441.8,427.4 441.8,426.5 440.7,426.5 '/>
  5770. </g>
  5771. <path stroke='cyan' d='M440.7,427.4 L440.7,426.6 L441.7,426.6 L441.7,427.4 L440.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5772. <polygon fill = 'cyan' points = '441.7,427.4 442.8,427.4 442.8,426.5 441.7,426.5 '/>
  5773. </g>
  5774. <path stroke='cyan' d='M441.7,427.4 L441.7,426.6 L442.7,426.6 L442.7,427.4 L441.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5775. <polygon fill = 'cyan' points = '442.7,427.4 443.8,427.4 443.8,426.5 442.7,426.5 '/>
  5776. </g>
  5777. <path stroke='cyan' d='M442.7,427.4 L442.7,426.6 L443.7,426.6 L443.7,427.4 L442.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5778. <polygon fill = 'cyan' points = '443.7,427.4 444.8,427.4 444.8,426.5 443.7,426.5 '/>
  5779. </g>
  5780. <path stroke='cyan' d='M443.7,427.4 L443.7,426.6 L444.7,426.6 L444.7,427.4 L443.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5781. <polygon fill = 'cyan' points = '444.7,427.4 445.8,427.4 445.8,426.5 444.7,426.5 '/>
  5782. </g>
  5783. <path stroke='cyan' d='M444.7,427.4 L444.7,426.6 L445.7,426.6 L445.7,427.4 L444.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5784. <polygon fill = 'cyan' points = '445.7,427.4 446.8,427.4 446.8,426.5 445.7,426.5 '/>
  5785. </g>
  5786. <path stroke='cyan' d='M445.7,427.4 L445.7,426.6 L446.7,426.6 L446.7,427.4 L445.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5787. <polygon fill = 'cyan' points = '446.7,427.4 447.8,427.4 447.8,413.1 446.7,413.1 '/>
  5788. </g>
  5789. <path stroke='cyan' d='M446.7,427.4 L446.7,413.2 L447.7,413.2 L447.7,427.4 L446.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5790. <polygon fill = 'cyan' points = '447.7,427.4 448.8,427.4 448.8,426.5 447.7,426.5 '/>
  5791. </g>
  5792. <path stroke='cyan' d='M447.7,427.4 L447.7,426.6 L448.7,426.6 L448.7,427.4 L447.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5793. <polygon fill = 'cyan' points = '448.7,427.4 449.8,427.4 449.8,426.5 448.7,426.5 '/>
  5794. </g>
  5795. <path stroke='cyan' d='M448.7,427.4 L448.7,426.6 L449.7,426.6 L449.7,427.4 L448.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5796. <polygon fill = 'cyan' points = '449.7,427.4 450.8,427.4 450.8,426.5 449.7,426.5 '/>
  5797. </g>
  5798. <path stroke='cyan' d='M449.7,427.4 L449.7,426.6 L450.7,426.6 L450.7,427.4 L449.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5799. <polygon fill = 'cyan' points = '450.7,427.4 451.8,427.4 451.8,426.5 450.7,426.5 '/>
  5800. </g>
  5801. <path stroke='cyan' d='M450.7,427.4 L450.7,426.6 L451.7,426.6 L451.7,427.4 L450.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5802. <polygon fill = 'cyan' points = '451.7,427.4 452.8,427.4 452.8,426.5 451.7,426.5 '/>
  5803. </g>
  5804. <path stroke='cyan' d='M451.7,427.4 L451.7,426.6 L452.7,426.6 L452.7,427.4 L451.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5805. <polygon fill = 'cyan' points = '452.7,427.4 453.9,427.4 453.9,426.5 452.7,426.5 '/>
  5806. </g>
  5807. <path stroke='cyan' d='M452.7,427.4 L452.7,426.6 L453.8,426.6 L453.8,427.4 L452.7,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5808. <polygon fill = 'cyan' points = '453.8,427.4 454.9,427.4 454.9,426.5 453.8,426.5 '/>
  5809. </g>
  5810. <path stroke='cyan' d='M453.8,427.4 L453.8,426.6 L454.8,426.6 L454.8,427.4 L453.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5811. <polygon fill = 'cyan' points = '454.8,427.4 455.9,427.4 455.9,426.5 454.8,426.5 '/>
  5812. </g>
  5813. <path stroke='cyan' d='M454.8,427.4 L454.8,426.6 L455.8,426.6 L455.8,427.4 L454.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5814. <polygon fill = 'cyan' points = '455.8,427.4 456.9,427.4 456.9,426.5 455.8,426.5 '/>
  5815. </g>
  5816. <path stroke='cyan' d='M455.8,427.4 L455.8,426.6 L456.8,426.6 L456.8,427.4 L455.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5817. <polygon fill = 'cyan' points = '456.8,427.4 457.9,427.4 457.9,426.5 456.8,426.5 '/>
  5818. </g>
  5819. <path stroke='cyan' d='M456.8,427.4 L456.8,426.6 L457.8,426.6 L457.8,427.4 L456.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5820. <polygon fill = 'cyan' points = '457.8,427.4 458.9,427.4 458.9,426.5 457.8,426.5 '/>
  5821. </g>
  5822. <path stroke='cyan' d='M457.8,427.4 L457.8,426.6 L458.8,426.6 L458.8,427.4 L457.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5823. <polygon fill = 'cyan' points = '458.8,427.4 459.9,427.4 459.9,426.5 458.8,426.5 '/>
  5824. </g>
  5825. <path stroke='cyan' d='M458.8,427.4 L458.8,426.6 L459.8,426.6 L459.8,427.4 L458.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5826. <polygon fill = 'cyan' points = '459.8,427.4 460.9,427.4 460.9,426.5 459.8,426.5 '/>
  5827. </g>
  5828. <path stroke='cyan' d='M459.8,427.4 L459.8,426.6 L460.8,426.6 L460.8,427.4 L459.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5829. <polygon fill = 'cyan' points = '460.8,427.4 461.9,427.4 461.9,426.5 460.8,426.5 '/>
  5830. </g>
  5831. <path stroke='cyan' d='M460.8,427.4 L460.8,426.6 L461.8,426.6 L461.8,427.4 L460.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5832. <polygon fill = 'cyan' points = '461.8,427.4 462.9,427.4 462.9,426.5 461.8,426.5 '/>
  5833. </g>
  5834. <path stroke='cyan' d='M461.8,427.4 L461.8,426.6 L462.8,426.6 L462.8,427.4 L461.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5835. <polygon fill = 'cyan' points = '462.8,427.4 463.9,427.4 463.9,426.5 462.8,426.5 '/>
  5836. </g>
  5837. <path stroke='cyan' d='M462.8,427.4 L462.8,426.6 L463.8,426.6 L463.8,427.4 L462.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5838. <polygon fill = 'cyan' points = '463.8,427.4 464.9,427.4 464.9,426.5 463.8,426.5 '/>
  5839. </g>
  5840. <path stroke='cyan' d='M463.8,427.4 L463.8,426.6 L464.8,426.6 L464.8,427.4 L463.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5841. <polygon fill = 'cyan' points = '464.8,427.4 465.9,427.4 465.9,426.5 464.8,426.5 '/>
  5842. </g>
  5843. <path stroke='cyan' d='M464.8,427.4 L464.8,426.6 L465.8,426.6 L465.8,427.4 L464.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5844. <polygon fill = 'cyan' points = '465.8,427.4 466.9,427.4 466.9,426.5 465.8,426.5 '/>
  5845. </g>
  5846. <path stroke='cyan' d='M465.8,427.4 L465.8,426.6 L466.8,426.6 L466.8,427.4 L465.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5847. <polygon fill = 'cyan' points = '466.8,427.4 467.9,427.4 467.9,426.5 466.8,426.5 '/>
  5848. </g>
  5849. <path stroke='cyan' d='M466.8,427.4 L466.8,426.6 L467.8,426.6 L467.8,427.4 L466.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5850. <polygon fill = 'cyan' points = '467.8,427.4 468.9,427.4 468.9,426.5 467.8,426.5 '/>
  5851. </g>
  5852. <path stroke='cyan' d='M467.8,427.4 L467.8,426.6 L468.8,426.6 L468.8,427.4 L467.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5853. <polygon fill = 'cyan' points = '468.8,427.4 470.0,427.4 470.0,426.5 468.8,426.5 '/>
  5854. </g>
  5855. <path stroke='cyan' d='M468.8,427.4 L468.8,426.6 L469.9,426.6 L469.9,427.4 L468.8,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5856. <polygon fill = 'cyan' points = '469.9,427.4 471.0,427.4 471.0,426.5 469.9,426.5 '/>
  5857. </g>
  5858. <path stroke='cyan' d='M469.9,427.4 L469.9,426.6 L470.9,426.6 L470.9,427.4 L469.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5859. <polygon fill = 'cyan' points = '470.9,427.4 472.0,427.4 472.0,426.5 470.9,426.5 '/>
  5860. </g>
  5861. <path stroke='cyan' d='M470.9,427.4 L470.9,426.6 L471.9,426.6 L471.9,427.4 L470.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5862. <polygon fill = 'cyan' points = '471.9,427.4 473.0,427.4 473.0,426.5 471.9,426.5 '/>
  5863. </g>
  5864. <path stroke='cyan' d='M471.9,427.4 L471.9,426.6 L472.9,426.6 L472.9,427.4 L471.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5865. <polygon fill = 'cyan' points = '472.9,427.4 474.0,427.4 474.0,426.5 472.9,426.5 '/>
  5866. </g>
  5867. <path stroke='cyan' d='M472.9,427.4 L472.9,426.6 L473.9,426.6 L473.9,427.4 L472.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5868. <polygon fill = 'cyan' points = '473.9,427.4 475.0,427.4 475.0,426.5 473.9,426.5 '/>
  5869. </g>
  5870. <path stroke='cyan' d='M473.9,427.4 L473.9,426.6 L474.9,426.6 L474.9,427.4 L473.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5871. <polygon fill = 'cyan' points = '474.9,427.4 476.0,427.4 476.0,426.5 474.9,426.5 '/>
  5872. </g>
  5873. <path stroke='cyan' d='M474.9,427.4 L474.9,426.6 L475.9,426.6 L475.9,427.4 L474.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5874. <polygon fill = 'cyan' points = '475.9,427.4 477.0,427.4 477.0,426.5 475.9,426.5 '/>
  5875. </g>
  5876. <path stroke='cyan' d='M475.9,427.4 L475.9,426.6 L476.9,426.6 L476.9,427.4 L475.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5877. <polygon fill = 'cyan' points = '476.9,427.4 478.0,427.4 478.0,426.5 476.9,426.5 '/>
  5878. </g>
  5879. <path stroke='cyan' d='M476.9,427.4 L476.9,426.6 L477.9,426.6 L477.9,427.4 L476.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5880. <polygon fill = 'cyan' points = '477.9,427.4 479.0,427.4 479.0,426.5 477.9,426.5 '/>
  5881. </g>
  5882. <path stroke='cyan' d='M477.9,427.4 L477.9,426.6 L478.9,426.6 L478.9,427.4 L477.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5883. <polygon fill = 'cyan' points = '478.9,427.4 480.0,427.4 480.0,426.5 478.9,426.5 '/>
  5884. </g>
  5885. <path stroke='cyan' d='M478.9,427.4 L478.9,426.6 L479.9,426.6 L479.9,427.4 L478.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5886. <polygon fill = 'cyan' points = '479.9,427.4 481.0,427.4 481.0,426.5 479.9,426.5 '/>
  5887. </g>
  5888. <path stroke='cyan' d='M479.9,427.4 L479.9,426.6 L480.9,426.6 L480.9,427.4 L479.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5889. <polygon fill = 'cyan' points = '480.9,427.4 482.0,427.4 482.0,426.5 480.9,426.5 '/>
  5890. </g>
  5891. <path stroke='cyan' d='M480.9,427.4 L480.9,426.6 L481.9,426.6 L481.9,427.4 L480.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5892. <polygon fill = 'cyan' points = '481.9,427.4 483.0,427.4 483.0,426.5 481.9,426.5 '/>
  5893. </g>
  5894. <path stroke='cyan' d='M481.9,427.4 L481.9,426.6 L482.9,426.6 L482.9,427.4 L481.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5895. <polygon fill = 'cyan' points = '482.9,427.4 484.0,427.4 484.0,426.5 482.9,426.5 '/>
  5896. </g>
  5897. <path stroke='cyan' d='M482.9,427.4 L482.9,426.6 L483.9,426.6 L483.9,427.4 L482.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5898. <polygon fill = 'cyan' points = '483.9,427.4 485.0,427.4 485.0,426.5 483.9,426.5 '/>
  5899. </g>
  5900. <path stroke='cyan' d='M483.9,427.4 L483.9,426.6 L484.9,426.6 L484.9,427.4 L483.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5901. <polygon fill = 'cyan' points = '484.9,427.4 486.1,427.4 486.1,426.5 484.9,426.5 '/>
  5902. </g>
  5903. <path stroke='cyan' d='M484.9,427.4 L484.9,426.6 L486.0,426.6 L486.0,427.4 L484.9,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5904. <polygon fill = 'cyan' points = '486.0,427.4 487.1,427.4 487.1,426.5 486.0,426.5 '/>
  5905. </g>
  5906. <path stroke='cyan' d='M486.0,427.4 L486.0,426.6 L487.0,426.6 L487.0,427.4 L486.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5907. <polygon fill = 'cyan' points = '487.0,427.4 488.1,427.4 488.1,426.5 487.0,426.5 '/>
  5908. </g>
  5909. <path stroke='cyan' d='M487.0,427.4 L487.0,426.6 L488.0,426.6 L488.0,427.4 L487.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5910. <polygon fill = 'cyan' points = '488.0,427.4 489.1,427.4 489.1,405.1 488.0,405.1 '/>
  5911. </g>
  5912. <path stroke='cyan' d='M488.0,427.4 L488.0,405.2 L489.0,405.2 L489.0,427.4 L488.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5913. <polygon fill = 'cyan' points = '489.0,427.4 490.1,427.4 490.1,403.8 489.0,403.8 '/>
  5914. </g>
  5915. <path stroke='cyan' d='M489.0,427.4 L489.0,403.9 L490.0,403.9 L490.0,427.4 L489.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5916. <polygon fill = 'cyan' points = '490.0,427.4 491.1,427.4 491.1,395.4 490.0,395.4 '/>
  5917. </g>
  5918. <path stroke='cyan' d='M490.0,427.4 L490.0,395.5 L491.0,395.5 L491.0,427.4 L490.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5919. <polygon fill = 'cyan' points = '491.0,427.4 492.1,427.4 492.1,396.8 491.0,396.8 '/>
  5920. </g>
  5921. <path stroke='cyan' d='M491.0,427.4 L491.0,396.9 L492.0,396.9 L492.0,427.4 L491.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5922. <polygon fill = 'cyan' points = '492.0,427.4 493.1,427.4 493.1,426.5 492.0,426.5 '/>
  5923. </g>
  5924. <path stroke='cyan' d='M492.0,427.4 L492.0,426.6 L493.0,426.6 L493.0,427.4 L492.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5925. <polygon fill = 'cyan' points = '493.0,427.4 494.1,427.4 494.1,426.5 493.0,426.5 '/>
  5926. </g>
  5927. <path stroke='cyan' d='M493.0,427.4 L493.0,426.6 L494.0,426.6 L494.0,427.4 L493.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5928. <polygon fill = 'cyan' points = '494.0,427.4 495.1,427.4 495.1,426.5 494.0,426.5 '/>
  5929. </g>
  5930. <path stroke='cyan' d='M494.0,427.4 L494.0,426.6 L495.0,426.6 L495.0,427.4 L494.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5931. <polygon fill = 'cyan' points = '495.0,427.4 496.1,427.4 496.1,426.5 495.0,426.5 '/>
  5932. </g>
  5933. <path stroke='cyan' d='M495.0,427.4 L495.0,426.6 L496.0,426.6 L496.0,427.4 L495.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5934. <polygon fill = 'cyan' points = '496.0,427.4 497.1,427.4 497.1,426.5 496.0,426.5 '/>
  5935. </g>
  5936. <path stroke='cyan' d='M496.0,427.4 L496.0,426.6 L497.0,426.6 L497.0,427.4 L496.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5937. <polygon fill = 'cyan' points = '497.0,427.4 498.1,427.4 498.1,426.5 497.0,426.5 '/>
  5938. </g>
  5939. <path stroke='cyan' d='M497.0,427.4 L497.0,426.6 L498.0,426.6 L498.0,427.4 L497.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5940. <polygon fill = 'cyan' points = '498.0,427.4 499.1,427.4 499.1,426.5 498.0,426.5 '/>
  5941. </g>
  5942. <path stroke='cyan' d='M498.0,427.4 L498.0,426.6 L499.0,426.6 L499.0,427.4 L498.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5943. <polygon fill = 'cyan' points = '499.0,427.4 500.1,427.4 500.1,426.5 499.0,426.5 '/>
  5944. </g>
  5945. <path stroke='cyan' d='M499.0,427.4 L499.0,426.6 L500.0,426.6 L500.0,427.4 L499.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5946. <polygon fill = 'cyan' points = '500.0,427.4 501.1,427.4 501.1,426.5 500.0,426.5 '/>
  5947. </g>
  5948. <path stroke='cyan' d='M500.0,427.4 L500.0,426.6 L501.0,426.6 L501.0,427.4 L500.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5949. <polygon fill = 'cyan' points = '501.0,427.4 502.2,427.4 502.2,426.5 501.0,426.5 '/>
  5950. </g>
  5951. <path stroke='cyan' d='M501.0,427.4 L501.0,426.6 L502.1,426.6 L502.1,427.4 L501.0,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5952. <polygon fill = 'cyan' points = '502.1,427.4 503.2,427.4 503.2,426.5 502.1,426.5 '/>
  5953. </g>
  5954. <path stroke='cyan' d='M502.1,427.4 L502.1,426.6 L503.1,426.6 L503.1,427.4 L502.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5955. <polygon fill = 'cyan' points = '503.1,427.4 504.2,427.4 504.2,426.5 503.1,426.5 '/>
  5956. </g>
  5957. <path stroke='cyan' d='M503.1,427.4 L503.1,426.6 L504.1,426.6 L504.1,427.4 L503.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5958. <polygon fill = 'cyan' points = '504.1,427.4 505.2,427.4 505.2,426.5 504.1,426.5 '/>
  5959. </g>
  5960. <path stroke='cyan' d='M504.1,427.4 L504.1,426.6 L505.1,426.6 L505.1,427.4 L504.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5961. <polygon fill = 'cyan' points = '505.1,427.4 506.2,427.4 506.2,426.5 505.1,426.5 '/>
  5962. </g>
  5963. <path stroke='cyan' d='M505.1,427.4 L505.1,426.6 L506.1,426.6 L506.1,427.4 L505.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5964. <polygon fill = 'cyan' points = '506.1,427.4 507.2,427.4 507.2,426.5 506.1,426.5 '/>
  5965. </g>
  5966. <path stroke='cyan' d='M506.1,427.4 L506.1,426.6 L507.1,426.6 L507.1,427.4 L506.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5967. <polygon fill = 'cyan' points = '507.1,427.4 508.2,427.4 508.2,426.5 507.1,426.5 '/>
  5968. </g>
  5969. <path stroke='cyan' d='M507.1,427.4 L507.1,426.6 L508.1,426.6 L508.1,427.4 L507.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5970. <polygon fill = 'cyan' points = '508.1,427.4 509.2,427.4 509.2,426.5 508.1,426.5 '/>
  5971. </g>
  5972. <path stroke='cyan' d='M508.1,427.4 L508.1,426.6 L509.1,426.6 L509.1,427.4 L508.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5973. <polygon fill = 'cyan' points = '509.1,427.4 510.2,427.4 510.2,406.1 509.1,406.1 '/>
  5974. </g>
  5975. <path stroke='cyan' d='M509.1,427.4 L509.1,406.2 L510.1,406.2 L510.1,427.4 L509.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5976. <polygon fill = 'cyan' points = '510.1,427.4 511.2,427.4 511.2,413.1 510.1,413.1 '/>
  5977. </g>
  5978. <path stroke='cyan' d='M510.1,427.4 L510.1,413.2 L511.1,413.2 L511.1,427.4 L510.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5979. <polygon fill = 'cyan' points = '511.1,427.4 512.2,427.4 512.2,426.5 511.1,426.5 '/>
  5980. </g>
  5981. <path stroke='cyan' d='M511.1,427.4 L511.1,426.6 L512.1,426.6 L512.1,427.4 L511.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5982. <polygon fill = 'cyan' points = '512.1,427.4 513.2,427.4 513.2,426.5 512.1,426.5 '/>
  5983. </g>
  5984. <path stroke='cyan' d='M512.1,427.4 L512.1,426.6 L513.1,426.6 L513.1,427.4 L512.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5985. <polygon fill = 'cyan' points = '513.1,427.4 514.2,427.4 514.2,426.5 513.1,426.5 '/>
  5986. </g>
  5987. <path stroke='cyan' d='M513.1,427.4 L513.1,426.6 L514.1,426.6 L514.1,427.4 L513.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5988. <polygon fill = 'cyan' points = '514.1,427.4 515.2,427.4 515.2,426.5 514.1,426.5 '/>
  5989. </g>
  5990. <path stroke='cyan' d='M514.1,427.4 L514.1,426.6 L515.1,426.6 L515.1,427.4 L514.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5991. <polygon fill = 'cyan' points = '515.1,427.4 516.2,427.4 516.2,426.5 515.1,426.5 '/>
  5992. </g>
  5993. <path stroke='cyan' d='M515.1,427.4 L515.1,426.6 L516.1,426.6 L516.1,427.4 L515.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5994. <polygon fill = 'cyan' points = '516.1,427.4 517.2,427.4 517.2,426.5 516.1,426.5 '/>
  5995. </g>
  5996. <path stroke='cyan' d='M516.1,427.4 L516.1,426.6 L517.1,426.6 L517.1,427.4 L516.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  5997. <polygon fill = 'cyan' points = '517.1,427.4 518.2,427.4 518.2,426.5 517.1,426.5 '/>
  5998. </g>
  5999. <path stroke='cyan' d='M517.1,427.4 L517.1,426.6 L518.1,426.6 L518.1,427.4 L517.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6000. <polygon fill = 'cyan' points = '518.1,427.4 519.3,427.4 519.3,426.5 518.1,426.5 '/>
  6001. </g>
  6002. <path stroke='cyan' d='M518.1,427.4 L518.1,426.6 L519.2,426.6 L519.2,427.4 L518.1,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6003. <polygon fill = 'cyan' points = '519.2,427.4 520.3,427.4 520.3,426.5 519.2,426.5 '/>
  6004. </g>
  6005. <path stroke='cyan' d='M519.2,427.4 L519.2,426.6 L520.2,426.6 L520.2,427.4 L519.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6006. <polygon fill = 'cyan' points = '520.2,427.4 521.3,427.4 521.3,426.5 520.2,426.5 '/>
  6007. </g>
  6008. <path stroke='cyan' d='M520.2,427.4 L520.2,426.6 L521.2,426.6 L521.2,427.4 L520.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6009. <polygon fill = 'cyan' points = '521.2,427.4 522.3,427.4 522.3,426.5 521.2,426.5 '/>
  6010. </g>
  6011. <path stroke='cyan' d='M521.2,427.4 L521.2,426.6 L522.2,426.6 L522.2,427.4 L521.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6012. <polygon fill = 'cyan' points = '522.2,427.4 523.3,427.4 523.3,426.5 522.2,426.5 '/>
  6013. </g>
  6014. <path stroke='cyan' d='M522.2,427.4 L522.2,426.6 L523.2,426.6 L523.2,427.4 L522.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6015. <polygon fill = 'cyan' points = '523.2,427.4 524.3,427.4 524.3,426.5 523.2,426.5 '/>
  6016. </g>
  6017. <path stroke='cyan' d='M523.2,427.4 L523.2,426.6 L524.2,426.6 L524.2,427.4 L523.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6018. <polygon fill = 'cyan' points = '524.2,427.4 525.3,427.4 525.3,426.5 524.2,426.5 '/>
  6019. </g>
  6020. <path stroke='cyan' d='M524.2,427.4 L524.2,426.6 L525.2,426.6 L525.2,427.4 L524.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6021. <polygon fill = 'cyan' points = '525.2,427.4 526.3,427.4 526.3,426.5 525.2,426.5 '/>
  6022. </g>
  6023. <path stroke='cyan' d='M525.2,427.4 L525.2,426.6 L526.2,426.6 L526.2,427.4 L525.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6024. <polygon fill = 'cyan' points = '526.2,427.4 527.3,427.4 527.3,426.5 526.2,426.5 '/>
  6025. </g>
  6026. <path stroke='cyan' d='M526.2,427.4 L526.2,426.6 L527.2,426.6 L527.2,427.4 L526.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6027. <polygon fill = 'cyan' points = '527.2,427.4 528.3,427.4 528.3,426.5 527.2,426.5 '/>
  6028. </g>
  6029. <path stroke='cyan' d='M527.2,427.4 L527.2,426.6 L528.2,426.6 L528.2,427.4 L527.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6030. <polygon fill = 'cyan' points = '528.2,427.4 529.3,427.4 529.3,426.5 528.2,426.5 '/>
  6031. </g>
  6032. <path stroke='cyan' d='M528.2,427.4 L528.2,426.6 L529.2,426.6 L529.2,427.4 L528.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6033. <polygon fill = 'cyan' points = '529.2,427.4 530.3,427.4 530.3,426.5 529.2,426.5 '/>
  6034. </g>
  6035. <path stroke='cyan' d='M529.2,427.4 L529.2,426.6 L530.2,426.6 L530.2,427.4 L529.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6036. <polygon fill = 'cyan' points = '530.2,427.4 531.3,427.4 531.3,426.5 530.2,426.5 '/>
  6037. </g>
  6038. <path stroke='cyan' d='M530.2,427.4 L530.2,426.6 L531.2,426.6 L531.2,427.4 L530.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6039. <polygon fill = 'cyan' points = '531.2,427.4 532.3,427.4 532.3,426.5 531.2,426.5 '/>
  6040. </g>
  6041. <path stroke='cyan' d='M531.2,427.4 L531.2,426.6 L532.2,426.6 L532.2,427.4 L531.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6042. <polygon fill = 'cyan' points = '532.2,427.4 533.3,427.4 533.3,426.1 532.2,426.1 '/>
  6043. </g>
  6044. <path stroke='cyan' d='M532.2,427.4 L532.2,426.2 L533.2,426.2 L533.2,427.4 L532.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6045. <polygon fill = 'cyan' points = '533.2,427.4 534.3,427.4 534.3,426.5 533.2,426.5 '/>
  6046. </g>
  6047. <path stroke='cyan' d='M533.2,427.4 L533.2,426.6 L534.2,426.6 L534.2,427.4 L533.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6048. <polygon fill = 'cyan' points = '534.2,427.4 535.4,427.4 535.4,418.2 534.2,418.2 '/>
  6049. </g>
  6050. <path stroke='cyan' d='M534.2,427.4 L534.2,418.3 L535.3,418.3 L535.3,427.4 L534.2,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6051. <polygon fill = 'cyan' points = '535.3,427.4 536.4,427.4 536.4,426.5 535.3,426.5 '/>
  6052. </g>
  6053. <path stroke='cyan' d='M535.3,427.4 L535.3,426.6 L536.3,426.6 L536.3,427.4 L535.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6054. <polygon fill = 'cyan' points = '536.3,427.4 537.4,427.4 537.4,426.5 536.3,426.5 '/>
  6055. </g>
  6056. <path stroke='cyan' d='M536.3,427.4 L536.3,426.6 L537.3,426.6 L537.3,427.4 L536.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6057. <polygon fill = 'cyan' points = '537.3,427.4 538.4,427.4 538.4,426.5 537.3,426.5 '/>
  6058. </g>
  6059. <path stroke='cyan' d='M537.3,427.4 L537.3,426.6 L538.3,426.6 L538.3,427.4 L537.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6060. <polygon fill = 'cyan' points = '538.3,427.4 539.4,427.4 539.4,426.5 538.3,426.5 '/>
  6061. </g>
  6062. <path stroke='cyan' d='M538.3,427.4 L538.3,426.6 L539.3,426.6 L539.3,427.4 L538.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6063. <polygon fill = 'cyan' points = '539.3,427.4 540.4,427.4 540.4,426.5 539.3,426.5 '/>
  6064. </g>
  6065. <path stroke='cyan' d='M539.3,427.4 L539.3,426.6 L540.3,426.6 L540.3,427.4 L539.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6066. <polygon fill = 'cyan' points = '540.3,427.4 541.4,427.4 541.4,426.5 540.3,426.5 '/>
  6067. </g>
  6068. <path stroke='cyan' d='M540.3,427.4 L540.3,426.6 L541.3,426.6 L541.3,427.4 L540.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6069. <polygon fill = 'cyan' points = '541.3,427.4 542.4,427.4 542.4,426.5 541.3,426.5 '/>
  6070. </g>
  6071. <path stroke='cyan' d='M541.3,427.4 L541.3,426.6 L542.3,426.6 L542.3,427.4 L541.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6072. <polygon fill = 'cyan' points = '542.3,427.4 543.4,427.4 543.4,426.5 542.3,426.5 '/>
  6073. </g>
  6074. <path stroke='cyan' d='M542.3,427.4 L542.3,426.6 L543.3,426.6 L543.3,427.4 L542.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6075. <polygon fill = 'cyan' points = '543.3,427.4 544.4,427.4 544.4,426.5 543.3,426.5 '/>
  6076. </g>
  6077. <path stroke='cyan' d='M543.3,427.4 L543.3,426.6 L544.3,426.6 L544.3,427.4 L543.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6078. <polygon fill = 'cyan' points = '544.3,427.4 545.4,427.4 545.4,426.5 544.3,426.5 '/>
  6079. </g>
  6080. <path stroke='cyan' d='M544.3,427.4 L544.3,426.6 L545.3,426.6 L545.3,427.4 L544.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6081. <polygon fill = 'cyan' points = '545.3,427.4 546.4,427.4 546.4,426.5 545.3,426.5 '/>
  6082. </g>
  6083. <path stroke='cyan' d='M545.3,427.4 L545.3,426.6 L546.3,426.6 L546.3,427.4 L545.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6084. <polygon fill = 'cyan' points = '546.3,427.4 547.4,427.4 547.4,426.5 546.3,426.5 '/>
  6085. </g>
  6086. <path stroke='cyan' d='M546.3,427.4 L546.3,426.6 L547.3,426.6 L547.3,427.4 L546.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6087. <polygon fill = 'cyan' points = '547.3,427.4 548.4,427.4 548.4,426.5 547.3,426.5 '/>
  6088. </g>
  6089. <path stroke='cyan' d='M547.3,427.4 L547.3,426.6 L548.3,426.6 L548.3,427.4 L547.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6090. <polygon fill = 'cyan' points = '548.3,427.4 549.4,427.4 549.4,426.5 548.3,426.5 '/>
  6091. </g>
  6092. <path stroke='cyan' d='M548.3,427.4 L548.3,426.6 L549.3,426.6 L549.3,427.4 L548.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6093. <polygon fill = 'cyan' points = '549.3,427.4 550.4,427.4 550.4,426.5 549.3,426.5 '/>
  6094. </g>
  6095. <path stroke='cyan' d='M549.3,427.4 L549.3,426.6 L550.3,426.6 L550.3,427.4 L549.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6096. <polygon fill = 'cyan' points = '550.3,427.4 551.5,427.4 551.5,426.5 550.3,426.5 '/>
  6097. </g>
  6098. <path stroke='cyan' d='M550.3,427.4 L550.3,426.6 L551.4,426.6 L551.4,427.4 L550.3,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6099. <polygon fill = 'cyan' points = '551.4,427.4 552.5,427.4 552.5,426.5 551.4,426.5 '/>
  6100. </g>
  6101. <path stroke='cyan' d='M551.4,427.4 L551.4,426.6 L552.4,426.6 L552.4,427.4 L551.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6102. <polygon fill = 'cyan' points = '552.4,427.4 553.5,427.4 553.5,426.5 552.4,426.5 '/>
  6103. </g>
  6104. <path stroke='cyan' d='M552.4,427.4 L552.4,426.6 L553.4,426.6 L553.4,427.4 L552.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6105. <polygon fill = 'cyan' points = '553.4,427.4 554.5,427.4 554.5,426.5 553.4,426.5 '/>
  6106. </g>
  6107. <path stroke='cyan' d='M553.4,427.4 L553.4,426.6 L554.4,426.6 L554.4,427.4 L553.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6108. <polygon fill = 'cyan' points = '554.4,427.4 555.5,427.4 555.5,426.5 554.4,426.5 '/>
  6109. </g>
  6110. <path stroke='cyan' d='M554.4,427.4 L554.4,426.6 L555.4,426.6 L555.4,427.4 L554.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6111. <polygon fill = 'cyan' points = '555.4,427.4 556.5,427.4 556.5,426.5 555.4,426.5 '/>
  6112. </g>
  6113. <path stroke='cyan' d='M555.4,427.4 L555.4,426.6 L556.4,426.6 L556.4,427.4 L555.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6114. <polygon fill = 'cyan' points = '556.4,427.4 557.5,427.4 557.5,426.5 556.4,426.5 '/>
  6115. </g>
  6116. <path stroke='cyan' d='M556.4,427.4 L556.4,426.6 L557.4,426.6 L557.4,427.4 L556.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6117. <polygon fill = 'cyan' points = '557.4,427.4 558.5,427.4 558.5,426.5 557.4,426.5 '/>
  6118. </g>
  6119. <path stroke='cyan' d='M557.4,427.4 L557.4,426.6 L558.4,426.6 L558.4,427.4 L557.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6120. <polygon fill = 'cyan' points = '558.4,427.4 559.5,427.4 559.5,426.5 558.4,426.5 '/>
  6121. </g>
  6122. <path stroke='cyan' d='M558.4,427.4 L558.4,426.6 L559.4,426.6 L559.4,427.4 L558.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6123. <polygon fill = 'cyan' points = '559.4,427.4 560.5,427.4 560.5,426.5 559.4,426.5 '/>
  6124. </g>
  6125. <path stroke='cyan' d='M559.4,427.4 L559.4,426.6 L560.4,426.6 L560.4,427.4 L559.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6126. <polygon fill = 'cyan' points = '560.4,427.4 561.5,427.4 561.5,426.5 560.4,426.5 '/>
  6127. </g>
  6128. <path stroke='cyan' d='M560.4,427.4 L560.4,426.6 L561.4,426.6 L561.4,427.4 L560.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6129. <polygon fill = 'cyan' points = '561.4,427.4 562.5,427.4 562.5,426.5 561.4,426.5 '/>
  6130. </g>
  6131. <path stroke='cyan' d='M561.4,427.4 L561.4,426.6 L562.4,426.6 L562.4,427.4 L561.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6132. <polygon fill = 'cyan' points = '562.4,427.4 563.5,427.4 563.5,426.5 562.4,426.5 '/>
  6133. </g>
  6134. <path stroke='cyan' d='M562.4,427.4 L562.4,426.6 L563.4,426.6 L563.4,427.4 L562.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6135. <polygon fill = 'cyan' points = '563.4,427.4 564.5,427.4 564.5,426.5 563.4,426.5 '/>
  6136. </g>
  6137. <path stroke='cyan' d='M563.4,427.4 L563.4,426.6 L564.4,426.6 L564.4,427.4 L563.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6138. <polygon fill = 'cyan' points = '564.4,427.4 565.5,427.4 565.5,426.5 564.4,426.5 '/>
  6139. </g>
  6140. <path stroke='cyan' d='M564.4,427.4 L564.4,426.6 L565.4,426.6 L565.4,427.4 L564.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6141. <polygon fill = 'cyan' points = '565.4,427.4 566.5,427.4 566.5,426.5 565.4,426.5 '/>
  6142. </g>
  6143. <path stroke='cyan' d='M565.4,427.4 L565.4,426.6 L566.4,426.6 L566.4,427.4 L565.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6144. <polygon fill = 'cyan' points = '566.4,427.4 567.6,427.4 567.6,426.5 566.4,426.5 '/>
  6145. </g>
  6146. <path stroke='cyan' d='M566.4,427.4 L566.4,426.6 L567.5,426.6 L567.5,427.4 L566.4,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6147. <polygon fill = 'cyan' points = '567.5,427.4 568.6,427.4 568.6,426.5 567.5,426.5 '/>
  6148. </g>
  6149. <path stroke='cyan' d='M567.5,427.4 L567.5,426.6 L568.5,426.6 L568.5,427.4 L567.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6150. <polygon fill = 'cyan' points = '568.5,427.4 569.6,427.4 569.6,425.9 568.5,425.9 '/>
  6151. </g>
  6152. <path stroke='cyan' d='M568.5,427.4 L568.5,426.0 L569.5,426.0 L569.5,427.4 L568.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6153. <polygon fill = 'cyan' points = '569.5,427.4 570.6,427.4 570.6,426.5 569.5,426.5 '/>
  6154. </g>
  6155. <path stroke='cyan' d='M569.5,427.4 L569.5,426.6 L570.5,426.6 L570.5,427.4 L569.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6156. <polygon fill = 'cyan' points = '570.5,427.4 571.6,427.4 571.6,426.5 570.5,426.5 '/>
  6157. </g>
  6158. <path stroke='cyan' d='M570.5,427.4 L570.5,426.6 L571.5,426.6 L571.5,427.4 L570.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6159. <polygon fill = 'cyan' points = '571.5,427.4 572.6,427.4 572.6,426.5 571.5,426.5 '/>
  6160. </g>
  6161. <path stroke='cyan' d='M571.5,427.4 L571.5,426.6 L572.5,426.6 L572.5,427.4 L571.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6162. <polygon fill = 'cyan' points = '572.5,427.4 573.6,427.4 573.6,426.5 572.5,426.5 '/>
  6163. </g>
  6164. <path stroke='cyan' d='M572.5,427.4 L572.5,426.6 L573.5,426.6 L573.5,427.4 L572.5,427.4 Z '/> <g stroke='none' shape-rendering='crispEdges'>
  6165. <polygon fill = 'cyan' points = '573.5,427.4 574.6,427.4 574.6,426.5 573.5,426.5 '/>
  6166. </g>
  6167. <path stroke='cyan' d='M573.5,427.4 L573.5,426.6 L574.5,426.6 L574.5,427.4 L573.5,427.4 Z '/></g>
  6168. </g>
  6169. <g fill="none" color="white" stroke="cyan" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
  6170. </g>
  6171. <g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
  6172. </g>
  6173. <g fill="none" color="black" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  6174. </g>
  6175. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  6176. <path stroke='black' d='M71.9,54.1 L71.9,427.4 L575.0,427.4 L575.0,54.1 L71.9,54.1 Z '/></g>
  6177. <g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
  6178. </g>
  6179. </g>
  6180. </svg>