04402.svg 206 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304
  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. <!-- Created with matplotlib (https://matplotlib.org/) -->
  5. <svg height="608.51625pt" version="1.1" viewBox="0 0 556.365625 608.51625" width="556.365625pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  6. <defs>
  7. <style type="text/css">
  8. *{stroke-linecap:butt;stroke-linejoin:round;}
  9. </style>
  10. </defs>
  11. <g id="figure_1">
  12. <g id="patch_1">
  13. <path d="M 0 608.51625
  14. L 556.365625 608.51625
  15. L 556.365625 0
  16. L 0 0
  17. z
  18. " style="fill:#ffffff;"/>
  19. </g>
  20. <g id="axes_1">
  21. <g id="patch_2">
  22. <path d="M 46.965625 298.8
  23. L 549.165625 298.8
  24. L 549.165625 72
  25. L 46.965625 72
  26. z
  27. " style="fill:#ffffff;"/>
  28. </g>
  29. <g id="patch_3">
  30. <path clip-path="url(#p6343eaa6e8)" d="M 46.965625 72
  31. L 235.291646 72
  32. L 235.291646 298.8
  33. L 46.965625 298.8
  34. z
  35. " style="opacity:0.5;"/>
  36. </g>
  37. <g id="patch_4">
  38. <path clip-path="url(#p6343eaa6e8)" d="M 235.291646 72
  39. L 298.065625 72
  40. L 298.065625 298.8
  41. L 235.291646 298.8
  42. z
  43. " style="fill:none;opacity:0;"/>
  44. </g>
  45. <g id="patch_5">
  46. <path clip-path="url(#p6343eaa6e8)" d="M 298.065625 72
  47. L 486.391646 72
  48. L 486.391646 298.8
  49. L 298.065625 298.8
  50. z
  51. " style="opacity:0.5;"/>
  52. </g>
  53. <g id="patch_6">
  54. <path clip-path="url(#p6343eaa6e8)" d="M 486.391646 72
  55. L 549.165625 72
  56. L 549.165625 298.8
  57. L 486.391646 298.8
  58. z
  59. "/>
  60. </g>
  61. <g id="matplotlib.axis_1"/>
  62. <g id="matplotlib.axis_2">
  63. <g id="ytick_1">
  64. <g id="line2d_1">
  65. <defs>
  66. <path d="M 0 0
  67. L -3.5 0
  68. " id="mb6686181a4" style="stroke:#000000;stroke-width:0.8;"/>
  69. </defs>
  70. <g>
  71. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#mb6686181a4" y="74.835"/>
  72. </g>
  73. </g>
  74. <g id="text_1">
  75. <!-- 0 -->
  76. <defs>
  77. <path d="M 31.78125 66.40625
  78. Q 24.171875 66.40625 20.328125 58.90625
  79. Q 16.5 51.421875 16.5 36.375
  80. Q 16.5 21.390625 20.328125 13.890625
  81. Q 24.171875 6.390625 31.78125 6.390625
  82. Q 39.453125 6.390625 43.28125 13.890625
  83. Q 47.125 21.390625 47.125 36.375
  84. Q 47.125 51.421875 43.28125 58.90625
  85. Q 39.453125 66.40625 31.78125 66.40625
  86. z
  87. M 31.78125 74.21875
  88. Q 44.046875 74.21875 50.515625 64.515625
  89. Q 56.984375 54.828125 56.984375 36.375
  90. Q 56.984375 17.96875 50.515625 8.265625
  91. Q 44.046875 -1.421875 31.78125 -1.421875
  92. Q 19.53125 -1.421875 13.0625 8.265625
  93. Q 6.59375 17.96875 6.59375 36.375
  94. Q 6.59375 54.828125 13.0625 64.515625
  95. Q 19.53125 74.21875 31.78125 74.21875
  96. z
  97. " id="DejaVuSans-48"/>
  98. </defs>
  99. <g transform="translate(33.603125 78.634219)scale(0.1 -0.1)">
  100. <use xlink:href="#DejaVuSans-48"/>
  101. </g>
  102. </g>
  103. </g>
  104. <g id="ytick_2">
  105. <g id="line2d_2">
  106. <g>
  107. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#mb6686181a4" y="103.185"/>
  108. </g>
  109. </g>
  110. <g id="text_2">
  111. <!-- 10 -->
  112. <defs>
  113. <path d="M 12.40625 8.296875
  114. L 28.515625 8.296875
  115. L 28.515625 63.921875
  116. L 10.984375 60.40625
  117. L 10.984375 69.390625
  118. L 28.421875 72.90625
  119. L 38.28125 72.90625
  120. L 38.28125 8.296875
  121. L 54.390625 8.296875
  122. L 54.390625 0
  123. L 12.40625 0
  124. z
  125. " id="DejaVuSans-49"/>
  126. </defs>
  127. <g transform="translate(27.240625 106.984219)scale(0.1 -0.1)">
  128. <use xlink:href="#DejaVuSans-49"/>
  129. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  130. </g>
  131. </g>
  132. </g>
  133. <g id="ytick_3">
  134. <g id="line2d_3">
  135. <g>
  136. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#mb6686181a4" y="131.535"/>
  137. </g>
  138. </g>
  139. <g id="text_3">
  140. <!-- 20 -->
  141. <defs>
  142. <path d="M 19.1875 8.296875
  143. L 53.609375 8.296875
  144. L 53.609375 0
  145. L 7.328125 0
  146. L 7.328125 8.296875
  147. Q 12.9375 14.109375 22.625 23.890625
  148. Q 32.328125 33.6875 34.8125 36.53125
  149. Q 39.546875 41.84375 41.421875 45.53125
  150. Q 43.3125 49.21875 43.3125 52.78125
  151. Q 43.3125 58.59375 39.234375 62.25
  152. Q 35.15625 65.921875 28.609375 65.921875
  153. Q 23.96875 65.921875 18.8125 64.3125
  154. Q 13.671875 62.703125 7.8125 59.421875
  155. L 7.8125 69.390625
  156. Q 13.765625 71.78125 18.9375 73
  157. Q 24.125 74.21875 28.421875 74.21875
  158. Q 39.75 74.21875 46.484375 68.546875
  159. Q 53.21875 62.890625 53.21875 53.421875
  160. Q 53.21875 48.921875 51.53125 44.890625
  161. Q 49.859375 40.875 45.40625 35.40625
  162. Q 44.1875 33.984375 37.640625 27.21875
  163. Q 31.109375 20.453125 19.1875 8.296875
  164. z
  165. " id="DejaVuSans-50"/>
  166. </defs>
  167. <g transform="translate(27.240625 135.334219)scale(0.1 -0.1)">
  168. <use xlink:href="#DejaVuSans-50"/>
  169. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  170. </g>
  171. </g>
  172. </g>
  173. <g id="ytick_4">
  174. <g id="line2d_4">
  175. <g>
  176. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#mb6686181a4" y="159.885"/>
  177. </g>
  178. </g>
  179. <g id="text_4">
  180. <!-- 30 -->
  181. <defs>
  182. <path d="M 40.578125 39.3125
  183. Q 47.65625 37.796875 51.625 33
  184. Q 55.609375 28.21875 55.609375 21.1875
  185. Q 55.609375 10.40625 48.1875 4.484375
  186. Q 40.765625 -1.421875 27.09375 -1.421875
  187. Q 22.515625 -1.421875 17.65625 -0.515625
  188. Q 12.796875 0.390625 7.625 2.203125
  189. L 7.625 11.71875
  190. Q 11.71875 9.328125 16.59375 8.109375
  191. Q 21.484375 6.890625 26.8125 6.890625
  192. Q 36.078125 6.890625 40.9375 10.546875
  193. Q 45.796875 14.203125 45.796875 21.1875
  194. Q 45.796875 27.640625 41.28125 31.265625
  195. Q 36.765625 34.90625 28.71875 34.90625
  196. L 20.21875 34.90625
  197. L 20.21875 43.015625
  198. L 29.109375 43.015625
  199. Q 36.375 43.015625 40.234375 45.921875
  200. Q 44.09375 48.828125 44.09375 54.296875
  201. Q 44.09375 59.90625 40.109375 62.90625
  202. Q 36.140625 65.921875 28.71875 65.921875
  203. Q 24.65625 65.921875 20.015625 65.03125
  204. Q 15.375 64.15625 9.8125 62.3125
  205. L 9.8125 71.09375
  206. Q 15.4375 72.65625 20.34375 73.4375
  207. Q 25.25 74.21875 29.59375 74.21875
  208. Q 40.828125 74.21875 47.359375 69.109375
  209. Q 53.90625 64.015625 53.90625 55.328125
  210. Q 53.90625 49.265625 50.4375 45.09375
  211. Q 46.96875 40.921875 40.578125 39.3125
  212. z
  213. " id="DejaVuSans-51"/>
  214. </defs>
  215. <g transform="translate(27.240625 163.684219)scale(0.1 -0.1)">
  216. <use xlink:href="#DejaVuSans-51"/>
  217. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  218. </g>
  219. </g>
  220. </g>
  221. <g id="ytick_5">
  222. <g id="line2d_5">
  223. <g>
  224. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#mb6686181a4" y="188.235"/>
  225. </g>
  226. </g>
  227. <g id="text_5">
  228. <!-- 40 -->
  229. <defs>
  230. <path d="M 37.796875 64.3125
  231. L 12.890625 25.390625
  232. L 37.796875 25.390625
  233. z
  234. M 35.203125 72.90625
  235. L 47.609375 72.90625
  236. L 47.609375 25.390625
  237. L 58.015625 25.390625
  238. L 58.015625 17.1875
  239. L 47.609375 17.1875
  240. L 47.609375 0
  241. L 37.796875 0
  242. L 37.796875 17.1875
  243. L 4.890625 17.1875
  244. L 4.890625 26.703125
  245. z
  246. " id="DejaVuSans-52"/>
  247. </defs>
  248. <g transform="translate(27.240625 192.034219)scale(0.1 -0.1)">
  249. <use xlink:href="#DejaVuSans-52"/>
  250. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  251. </g>
  252. </g>
  253. </g>
  254. <g id="ytick_6">
  255. <g id="line2d_6">
  256. <g>
  257. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#mb6686181a4" y="216.585"/>
  258. </g>
  259. </g>
  260. <g id="text_6">
  261. <!-- 50 -->
  262. <defs>
  263. <path d="M 10.796875 72.90625
  264. L 49.515625 72.90625
  265. L 49.515625 64.59375
  266. L 19.828125 64.59375
  267. L 19.828125 46.734375
  268. Q 21.96875 47.46875 24.109375 47.828125
  269. Q 26.265625 48.1875 28.421875 48.1875
  270. Q 40.625 48.1875 47.75 41.5
  271. Q 54.890625 34.8125 54.890625 23.390625
  272. Q 54.890625 11.625 47.5625 5.09375
  273. Q 40.234375 -1.421875 26.90625 -1.421875
  274. Q 22.3125 -1.421875 17.546875 -0.640625
  275. Q 12.796875 0.140625 7.71875 1.703125
  276. L 7.71875 11.625
  277. Q 12.109375 9.234375 16.796875 8.0625
  278. Q 21.484375 6.890625 26.703125 6.890625
  279. Q 35.15625 6.890625 40.078125 11.328125
  280. Q 45.015625 15.765625 45.015625 23.390625
  281. Q 45.015625 31 40.078125 35.4375
  282. Q 35.15625 39.890625 26.703125 39.890625
  283. Q 22.75 39.890625 18.8125 39.015625
  284. Q 14.890625 38.140625 10.796875 36.28125
  285. z
  286. " id="DejaVuSans-53"/>
  287. </defs>
  288. <g transform="translate(27.240625 220.384219)scale(0.1 -0.1)">
  289. <use xlink:href="#DejaVuSans-53"/>
  290. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  291. </g>
  292. </g>
  293. </g>
  294. <g id="ytick_7">
  295. <g id="line2d_7">
  296. <g>
  297. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#mb6686181a4" y="244.935"/>
  298. </g>
  299. </g>
  300. <g id="text_7">
  301. <!-- 60 -->
  302. <defs>
  303. <path d="M 33.015625 40.375
  304. Q 26.375 40.375 22.484375 35.828125
  305. Q 18.609375 31.296875 18.609375 23.390625
  306. Q 18.609375 15.53125 22.484375 10.953125
  307. Q 26.375 6.390625 33.015625 6.390625
  308. Q 39.65625 6.390625 43.53125 10.953125
  309. Q 47.40625 15.53125 47.40625 23.390625
  310. Q 47.40625 31.296875 43.53125 35.828125
  311. Q 39.65625 40.375 33.015625 40.375
  312. z
  313. M 52.59375 71.296875
  314. L 52.59375 62.3125
  315. Q 48.875 64.0625 45.09375 64.984375
  316. Q 41.3125 65.921875 37.59375 65.921875
  317. Q 27.828125 65.921875 22.671875 59.328125
  318. Q 17.53125 52.734375 16.796875 39.40625
  319. Q 19.671875 43.65625 24.015625 45.921875
  320. Q 28.375 48.1875 33.59375 48.1875
  321. Q 44.578125 48.1875 50.953125 41.515625
  322. Q 57.328125 34.859375 57.328125 23.390625
  323. Q 57.328125 12.15625 50.6875 5.359375
  324. Q 44.046875 -1.421875 33.015625 -1.421875
  325. Q 20.359375 -1.421875 13.671875 8.265625
  326. Q 6.984375 17.96875 6.984375 36.375
  327. Q 6.984375 53.65625 15.1875 63.9375
  328. Q 23.390625 74.21875 37.203125 74.21875
  329. Q 40.921875 74.21875 44.703125 73.484375
  330. Q 48.484375 72.75 52.59375 71.296875
  331. z
  332. " id="DejaVuSans-54"/>
  333. </defs>
  334. <g transform="translate(27.240625 248.734219)scale(0.1 -0.1)">
  335. <use xlink:href="#DejaVuSans-54"/>
  336. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  337. </g>
  338. </g>
  339. </g>
  340. <g id="ytick_8">
  341. <g id="line2d_8">
  342. <g>
  343. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#mb6686181a4" y="273.285"/>
  344. </g>
  345. </g>
  346. <g id="text_8">
  347. <!-- 70 -->
  348. <defs>
  349. <path d="M 8.203125 72.90625
  350. L 55.078125 72.90625
  351. L 55.078125 68.703125
  352. L 28.609375 0
  353. L 18.3125 0
  354. L 43.21875 64.59375
  355. L 8.203125 64.59375
  356. z
  357. " id="DejaVuSans-55"/>
  358. </defs>
  359. <g transform="translate(27.240625 277.084219)scale(0.1 -0.1)">
  360. <use xlink:href="#DejaVuSans-55"/>
  361. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  362. </g>
  363. </g>
  364. </g>
  365. <g id="text_9">
  366. <!-- Trial -->
  367. <defs>
  368. <path d="M -0.296875 72.90625
  369. L 61.375 72.90625
  370. L 61.375 64.59375
  371. L 35.5 64.59375
  372. L 35.5 0
  373. L 25.59375 0
  374. L 25.59375 64.59375
  375. L -0.296875 64.59375
  376. z
  377. " id="DejaVuSans-84"/>
  378. <path d="M 41.109375 46.296875
  379. Q 39.59375 47.171875 37.8125 47.578125
  380. Q 36.03125 48 33.890625 48
  381. Q 26.265625 48 22.1875 43.046875
  382. Q 18.109375 38.09375 18.109375 28.8125
  383. L 18.109375 0
  384. L 9.078125 0
  385. L 9.078125 54.6875
  386. L 18.109375 54.6875
  387. L 18.109375 46.1875
  388. Q 20.953125 51.171875 25.484375 53.578125
  389. Q 30.03125 56 36.53125 56
  390. Q 37.453125 56 38.578125 55.875
  391. Q 39.703125 55.765625 41.0625 55.515625
  392. z
  393. " id="DejaVuSans-114"/>
  394. <path d="M 9.421875 54.6875
  395. L 18.40625 54.6875
  396. L 18.40625 0
  397. L 9.421875 0
  398. z
  399. M 9.421875 75.984375
  400. L 18.40625 75.984375
  401. L 18.40625 64.59375
  402. L 9.421875 64.59375
  403. z
  404. " id="DejaVuSans-105"/>
  405. <path d="M 34.28125 27.484375
  406. Q 23.390625 27.484375 19.1875 25
  407. Q 14.984375 22.515625 14.984375 16.5
  408. Q 14.984375 11.71875 18.140625 8.90625
  409. Q 21.296875 6.109375 26.703125 6.109375
  410. Q 34.1875 6.109375 38.703125 11.40625
  411. Q 43.21875 16.703125 43.21875 25.484375
  412. L 43.21875 27.484375
  413. z
  414. M 52.203125 31.203125
  415. L 52.203125 0
  416. L 43.21875 0
  417. L 43.21875 8.296875
  418. Q 40.140625 3.328125 35.546875 0.953125
  419. Q 30.953125 -1.421875 24.3125 -1.421875
  420. Q 15.921875 -1.421875 10.953125 3.296875
  421. Q 6 8.015625 6 15.921875
  422. Q 6 25.140625 12.171875 29.828125
  423. Q 18.359375 34.515625 30.609375 34.515625
  424. L 43.21875 34.515625
  425. L 43.21875 35.40625
  426. Q 43.21875 41.609375 39.140625 45
  427. Q 35.0625 48.390625 27.6875 48.390625
  428. Q 23 48.390625 18.546875 47.265625
  429. Q 14.109375 46.140625 10.015625 43.890625
  430. L 10.015625 52.203125
  431. Q 14.9375 54.109375 19.578125 55.046875
  432. Q 24.21875 56 28.609375 56
  433. Q 40.484375 56 46.34375 49.84375
  434. Q 52.203125 43.703125 52.203125 31.203125
  435. z
  436. " id="DejaVuSans-97"/>
  437. <path d="M 9.421875 75.984375
  438. L 18.40625 75.984375
  439. L 18.40625 0
  440. L 9.421875 0
  441. z
  442. " id="DejaVuSans-108"/>
  443. </defs>
  444. <g transform="translate(21.160938 196.340625)rotate(-90)scale(0.1 -0.1)">
  445. <use xlink:href="#DejaVuSans-84"/>
  446. <use x="60.865234" xlink:href="#DejaVuSans-114"/>
  447. <use x="101.978516" xlink:href="#DejaVuSans-105"/>
  448. <use x="129.761719" xlink:href="#DejaVuSans-97"/>
  449. <use x="191.041016" xlink:href="#DejaVuSans-108"/>
  450. </g>
  451. </g>
  452. </g>
  453. <g id="EventCollection_1">
  454. <path clip-path="url(#p6343eaa6e8)" d="M 51.906053 76.2525
  455. L 51.906053 73.4175
  456. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  457. <path clip-path="url(#p6343eaa6e8)" d="M 54.826203 76.2525
  458. L 54.826203 73.4175
  459. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  460. <path clip-path="url(#p6343eaa6e8)" d="M 56.367393 76.2525
  461. L 56.367393 73.4175
  462. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  463. <path clip-path="url(#p6343eaa6e8)" d="M 58.582855 76.2525
  464. L 58.582855 73.4175
  465. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  466. <path clip-path="url(#p6343eaa6e8)" d="M 100.301459 76.2525
  467. L 100.301459 73.4175
  468. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  469. <path clip-path="url(#p6343eaa6e8)" d="M 143.500418 76.2525
  470. L 143.500418 73.4175
  471. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  472. <path clip-path="url(#p6343eaa6e8)" d="M 181.097352 76.2525
  473. L 181.097352 73.4175
  474. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  475. <path clip-path="url(#p6343eaa6e8)" d="M 239.135338 76.2525
  476. L 239.135338 73.4175
  477. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  478. <path clip-path="url(#p6343eaa6e8)" d="M 263.86536 76.2525
  479. L 263.86536 73.4175
  480. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  481. <path clip-path="url(#p6343eaa6e8)" d="M 273.416685 76.2525
  482. L 273.416685 73.4175
  483. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  484. <path clip-path="url(#p6343eaa6e8)" d="M 295.023769 76.2525
  485. L 295.023769 73.4175
  486. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  487. <path clip-path="url(#p6343eaa6e8)" d="M 543.941228 76.2525
  488. L 543.941228 73.4175
  489. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  490. </g>
  491. <g id="EventCollection_2">
  492. <path clip-path="url(#p6343eaa6e8)" d="M 54.227978 79.0875
  493. L 54.227978 76.2525
  494. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  495. <path clip-path="url(#p6343eaa6e8)" d="M 55.125316 79.0875
  496. L 55.125316 76.2525
  497. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  498. <path clip-path="url(#p6343eaa6e8)" d="M 56.037863 79.0875
  499. L 56.037863 76.2525
  500. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  501. <path clip-path="url(#p6343eaa6e8)" d="M 84.326818 79.0875
  502. L 84.326818 76.2525
  503. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  504. <path clip-path="url(#p6343eaa6e8)" d="M 196.296329 79.0875
  505. L 196.296329 76.2525
  506. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  507. <path clip-path="url(#p6343eaa6e8)" d="M 239.333057 79.0875
  508. L 239.333057 76.2525
  509. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  510. <path clip-path="url(#p6343eaa6e8)" d="M 240.154349 79.0875
  511. L 240.154349 76.2525
  512. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  513. <path clip-path="url(#p6343eaa6e8)" d="M 242.912268 79.0875
  514. L 242.912268 76.2525
  515. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  516. <path clip-path="url(#p6343eaa6e8)" d="M 245.188566 79.0875
  517. L 245.188566 76.2525
  518. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  519. <path clip-path="url(#p6343eaa6e8)" d="M 304.194866 79.0875
  520. L 304.194866 76.2525
  521. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  522. <path clip-path="url(#p6343eaa6e8)" d="M 305.619453 79.0875
  523. L 305.619453 76.2525
  524. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  525. <path clip-path="url(#p6343eaa6e8)" d="M 305.999681 79.0875
  526. L 305.999681 76.2525
  527. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  528. <path clip-path="url(#p6343eaa6e8)" d="M 307.581429 79.0875
  529. L 307.581429 76.2525
  530. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  531. <path clip-path="url(#p6343eaa6e8)" d="M 308.823507 79.0875
  532. L 308.823507 76.2525
  533. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  534. <path clip-path="url(#p6343eaa6e8)" d="M 451.256876 79.0875
  535. L 451.256876 76.2525
  536. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  537. <path clip-path="url(#p6343eaa6e8)" d="M 502.131369 79.0875
  538. L 502.131369 76.2525
  539. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  540. <path clip-path="url(#p6343eaa6e8)" d="M 521.117415 79.0875
  541. L 521.117415 76.2525
  542. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  543. <path clip-path="url(#p6343eaa6e8)" d="M 547.089515 79.0875
  544. L 547.089515 76.2525
  545. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  546. </g>
  547. <g id="EventCollection_3">
  548. <path clip-path="url(#p6343eaa6e8)" d="M 47.444712 81.9225
  549. L 47.444712 79.0875
  550. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  551. <path clip-path="url(#p6343eaa6e8)" d="M 54.70453 81.9225
  552. L 54.70453 79.0875
  553. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  554. <path clip-path="url(#p6343eaa6e8)" d="M 55.262198 81.9225
  555. L 55.262198 79.0875
  556. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  557. <path clip-path="url(#p6343eaa6e8)" d="M 111.444671 81.9225
  558. L 111.444671 79.0875
  559. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  560. <path clip-path="url(#p6343eaa6e8)" d="M 172.960475 81.9225
  561. L 172.960475 79.0875
  562. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  563. <path clip-path="url(#p6343eaa6e8)" d="M 243.150545 81.9225
  564. L 243.150545 79.0875
  565. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  566. <path clip-path="url(#p6343eaa6e8)" d="M 244.630899 81.9225
  567. L 244.630899 79.0875
  568. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  569. <path clip-path="url(#p6343eaa6e8)" d="M 258.2025 81.9225
  570. L 258.2025 79.0875
  571. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  572. <path clip-path="url(#p6343eaa6e8)" d="M 304.483839 81.9225
  573. L 304.483839 79.0875
  574. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  575. <path clip-path="url(#p6343eaa6e8)" d="M 305.218946 81.9225
  576. L 305.218946 79.0875
  577. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  578. <path clip-path="url(#p6343eaa6e8)" d="M 306.111214 81.9225
  579. L 306.111214 79.0875
  580. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  581. <path clip-path="url(#p6343eaa6e8)" d="M 308.301327 81.9225
  582. L 308.301327 79.0875
  583. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  584. <path clip-path="url(#p6343eaa6e8)" d="M 344.499023 81.9225
  585. L 344.499023 79.0875
  586. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  587. <path clip-path="url(#p6343eaa6e8)" d="M 409.026231 81.9225
  588. L 409.026231 79.0875
  589. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  590. <path clip-path="url(#p6343eaa6e8)" d="M 464.985638 81.9225
  591. L 464.985638 79.0875
  592. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  593. <path clip-path="url(#p6343eaa6e8)" d="M 497.370915 81.9225
  594. L 497.370915 79.0875
  595. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  596. <path clip-path="url(#p6343eaa6e8)" d="M 538.283437 81.9225
  597. L 538.283437 79.0875
  598. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  599. </g>
  600. <g id="EventCollection_4">
  601. <path clip-path="url(#p6343eaa6e8)" d="M 52.159538 84.7575
  602. L 52.159538 81.9225
  603. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  604. <path clip-path="url(#p6343eaa6e8)" d="M 54.856621 84.7575
  605. L 54.856621 81.9225
  606. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  607. <path clip-path="url(#p6343eaa6e8)" d="M 55.287546 84.7575
  608. L 55.287546 81.9225
  609. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  610. <path clip-path="url(#p6343eaa6e8)" d="M 55.987166 84.7575
  611. L 55.987166 81.9225
  612. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  613. <path clip-path="url(#p6343eaa6e8)" d="M 223.738643 84.7575
  614. L 223.738643 81.9225
  615. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  616. <path clip-path="url(#p6343eaa6e8)" d="M 244.149277 84.7575
  617. L 244.149277 81.9225
  618. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  619. <path clip-path="url(#p6343eaa6e8)" d="M 251.368537 84.7575
  620. L 251.368537 81.9225
  621. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  622. <path clip-path="url(#p6343eaa6e8)" d="M 290.395128 84.7575
  623. L 290.395128 81.9225
  624. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  625. <path clip-path="url(#p6343eaa6e8)" d="M 305.898287 84.7575
  626. L 305.898287 81.9225
  627. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  628. <path clip-path="url(#p6343eaa6e8)" d="M 492.422883 84.7575
  629. L 492.422883 81.9225
  630. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  631. <path clip-path="url(#p6343eaa6e8)" d="M 497.872816 84.7575
  632. L 497.872816 81.9225
  633. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  634. <path clip-path="url(#p6343eaa6e8)" d="M 533.41652 84.7575
  635. L 533.41652 81.9225
  636. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  637. </g>
  638. <g id="EventCollection_5">
  639. <path clip-path="url(#p6343eaa6e8)" d="M 51.662707 87.5925
  640. L 51.662707 84.7575
  641. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  642. <path clip-path="url(#p6343eaa6e8)" d="M 53.933935 87.5925
  643. L 53.933935 84.7575
  644. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  645. <path clip-path="url(#p6343eaa6e8)" d="M 54.511881 87.5925
  646. L 54.511881 84.7575
  647. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  648. <path clip-path="url(#p6343eaa6e8)" d="M 239.627099 87.5925
  649. L 239.627099 84.7575
  650. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  651. <path clip-path="url(#p6343eaa6e8)" d="M 243.860303 87.5925
  652. L 243.860303 84.7575
  653. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  654. <path clip-path="url(#p6343eaa6e8)" d="M 245.284891 87.5925
  655. L 245.284891 84.7575
  656. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  657. <path clip-path="url(#p6343eaa6e8)" d="M 274.734808 87.5925
  658. L 274.734808 84.7575
  659. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  660. <path clip-path="url(#p6343eaa6e8)" d="M 304.666348 87.5925
  661. L 304.666348 84.7575
  662. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  663. <path clip-path="url(#p6343eaa6e8)" d="M 306.374839 87.5925
  664. L 306.374839 84.7575
  665. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  666. <path clip-path="url(#p6343eaa6e8)" d="M 498.040116 87.5925
  667. L 498.040116 84.7575
  668. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  669. <path clip-path="url(#p6343eaa6e8)" d="M 509.193468 87.5925
  670. L 509.193468 84.7575
  671. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  672. <path clip-path="url(#p6343eaa6e8)" d="M 513.391184 87.5925
  673. L 513.391184 84.7575
  674. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  675. <path clip-path="url(#p6343eaa6e8)" d="M 543.581279 87.5925
  676. L 543.581279 84.7575
  677. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  678. </g>
  679. <g id="EventCollection_6">
  680. <path clip-path="url(#p6343eaa6e8)" d="M 51.409222 90.4275
  681. L 51.409222 87.5925
  682. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  683. <path clip-path="url(#p6343eaa6e8)" d="M 54.405417 90.4275
  684. L 54.405417 87.5925
  685. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  686. <path clip-path="url(#p6343eaa6e8)" d="M 55.307825 90.4275
  687. L 55.307825 87.5925
  688. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  689. <path clip-path="url(#p6343eaa6e8)" d="M 56.108838 90.4275
  690. L 56.108838 87.5925
  691. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  692. <path clip-path="url(#p6343eaa6e8)" d="M 181.837529 90.4275
  693. L 181.837529 87.5925
  694. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  695. <path clip-path="url(#p6343eaa6e8)" d="M 240.539646 90.4275
  696. L 240.539646 87.5925
  697. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  698. <path clip-path="url(#p6343eaa6e8)" d="M 242.075767 90.4275
  699. L 242.075767 87.5925
  700. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  701. <path clip-path="url(#p6343eaa6e8)" d="M 243.196172 90.4275
  702. L 243.196172 87.5925
  703. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  704. <path clip-path="url(#p6343eaa6e8)" d="M 245.928743 90.4275
  705. L 245.928743 87.5925
  706. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  707. <path clip-path="url(#p6343eaa6e8)" d="M 303.079531 90.4275
  708. L 303.079531 87.5925
  709. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  710. <path clip-path="url(#p6343eaa6e8)" d="M 353.441983 90.4275
  711. L 353.441983 87.5925
  712. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  713. <path clip-path="url(#p6343eaa6e8)" d="M 377.588989 90.4275
  714. L 377.588989 87.5925
  715. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  716. <path clip-path="url(#p6343eaa6e8)" d="M 432.321527 90.4275
  717. L 432.321527 87.5925
  718. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  719. <path clip-path="url(#p6343eaa6e8)" d="M 485.730872 90.4275
  720. L 485.730872 87.5925
  721. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  722. <path clip-path="url(#p6343eaa6e8)" d="M 493.548358 90.4275
  723. L 493.548358 87.5925
  724. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  725. <path clip-path="url(#p6343eaa6e8)" d="M 501.016033 90.4275
  726. L 501.016033 87.5925
  727. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  728. <path clip-path="url(#p6343eaa6e8)" d="M 539.231472 90.4275
  729. L 539.231472 87.5925
  730. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  731. </g>
  732. <g id="EventCollection_7">
  733. <path clip-path="url(#p6343eaa6e8)" d="M 55.779308 93.2625
  734. L 55.779308 90.4275
  735. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  736. <path clip-path="url(#p6343eaa6e8)" d="M 56.311627 93.2625
  737. L 56.311627 90.4275
  738. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  739. <path clip-path="url(#p6343eaa6e8)" d="M 119.703221 93.2625
  740. L 119.703221 90.4275
  741. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  742. <path clip-path="url(#p6343eaa6e8)" d="M 239.677797 93.2625
  743. L 239.677797 90.4275
  744. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  745. <path clip-path="url(#p6343eaa6e8)" d="M 243.905931 93.2625
  746. L 243.905931 90.4275
  747. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  748. <path clip-path="url(#p6343eaa6e8)" d="M 246.795663 93.2625
  749. L 246.795663 90.4275
  750. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  751. <path clip-path="url(#p6343eaa6e8)" d="M 306.932507 93.2625
  752. L 306.932507 90.4275
  753. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  754. <path clip-path="url(#p6343eaa6e8)" d="M 460.595273 93.2625
  755. L 460.595273 90.4275
  756. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  757. <path clip-path="url(#p6343eaa6e8)" d="M 490.618068 93.2625
  758. L 490.618068 90.4275
  759. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  760. <path clip-path="url(#p6343eaa6e8)" d="M 534.602831 93.2625
  761. L 534.602831 90.4275
  762. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  763. </g>
  764. <g id="EventCollection_8">
  765. <path clip-path="url(#p6343eaa6e8)" d="M 53.50301 96.0975
  766. L 53.50301 93.2625
  767. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  768. <path clip-path="url(#p6343eaa6e8)" d="M 54.486533 96.0975
  769. L 54.486533 93.2625
  770. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  771. <path clip-path="url(#p6343eaa6e8)" d="M 55.231779 96.0975
  772. L 55.231779 93.2625
  773. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  774. <path clip-path="url(#p6343eaa6e8)" d="M 86.892089 96.0975
  775. L 86.892089 93.2625
  776. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  777. <path clip-path="url(#p6343eaa6e8)" d="M 179.921181 96.0975
  778. L 179.921181 93.2625
  779. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  780. <path clip-path="url(#p6343eaa6e8)" d="M 239.606821 96.0975
  781. L 239.606821 93.2625
  782. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  783. <path clip-path="url(#p6343eaa6e8)" d="M 240.265882 96.0975
  784. L 240.265882 93.2625
  785. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  786. <path clip-path="url(#p6343eaa6e8)" d="M 241.802003 96.0975
  787. L 241.802003 93.2625
  788. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  789. <path clip-path="url(#p6343eaa6e8)" d="M 243.388821 96.0975
  790. L 243.388821 93.2625
  791. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  792. <path clip-path="url(#p6343eaa6e8)" d="M 244.696805 96.0975
  793. L 244.696805 93.2625
  794. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  795. <path clip-path="url(#p6343eaa6e8)" d="M 269.528221 96.0975
  796. L 269.528221 93.2625
  797. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  798. <path clip-path="url(#p6343eaa6e8)" d="M 288.220224 96.0975
  799. L 288.220224 93.2625
  800. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  801. <path clip-path="url(#p6343eaa6e8)" d="M 304.154308 96.0975
  802. L 304.154308 93.2625
  803. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  804. <path clip-path="url(#p6343eaa6e8)" d="M 309.675217 96.0975
  805. L 309.675217 93.2625
  806. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  807. <path clip-path="url(#p6343eaa6e8)" d="M 495.596518 96.0975
  808. L 495.596518 93.2625
  809. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  810. </g>
  811. <g id="EventCollection_9">
  812. <path clip-path="url(#p6343eaa6e8)" d="M 51.753962 98.9325
  813. L 51.753962 96.0975
  814. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  815. <path clip-path="url(#p6343eaa6e8)" d="M 54.035329 98.9325
  816. L 54.035329 96.0975
  817. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  818. <path clip-path="url(#p6343eaa6e8)" d="M 55.272337 98.9325
  819. L 55.272337 96.0975
  820. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  821. <path clip-path="url(#p6343eaa6e8)" d="M 200.661345 98.9325
  822. L 200.661345 96.0975
  823. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  824. <path clip-path="url(#p6343eaa6e8)" d="M 242.998453 98.9325
  825. L 242.998453 96.0975
  826. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  827. <path clip-path="url(#p6343eaa6e8)" d="M 243.824815 98.9325
  828. L 243.824815 96.0975
  829. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  830. <path clip-path="url(#p6343eaa6e8)" d="M 244.828617 98.9325
  831. L 244.828617 96.0975
  832. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  833. <path clip-path="url(#p6343eaa6e8)" d="M 270.329235 98.9325
  834. L 270.329235 96.0975
  835. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  836. <path clip-path="url(#p6343eaa6e8)" d="M 304.493978 98.9325
  837. L 304.493978 96.0975
  838. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  839. <path clip-path="url(#p6343eaa6e8)" d="M 305.705638 98.9325
  840. L 305.705638 96.0975
  841. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  842. <path clip-path="url(#p6343eaa6e8)" d="M 306.891949 98.9325
  843. L 306.891949 96.0975
  844. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  845. <path clip-path="url(#p6343eaa6e8)" d="M 505.685232 98.9325
  846. L 505.685232 96.0975
  847. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  848. <path clip-path="url(#p6343eaa6e8)" d="M 520.392447 98.9325
  849. L 520.392447 96.0975
  850. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  851. <path clip-path="url(#p6343eaa6e8)" d="M 532.782807 98.9325
  852. L 532.782807 96.0975
  853. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  854. </g>
  855. <g id="EventCollection_10">
  856. <path clip-path="url(#p6343eaa6e8)" d="M 51.845216 101.7675
  857. L 51.845216 98.9325
  858. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  859. <path clip-path="url(#p6343eaa6e8)" d="M 54.222908 101.7675
  860. L 54.222908 98.9325
  861. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  862. <path clip-path="url(#p6343eaa6e8)" d="M 54.897179 101.7675
  863. L 54.897179 98.9325
  864. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  865. <path clip-path="url(#p6343eaa6e8)" d="M 55.525822 101.7675
  866. L 55.525822 98.9325
  867. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  868. <path clip-path="url(#p6343eaa6e8)" d="M 56.129117 101.7675
  869. L 56.129117 98.9325
  870. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  871. <path clip-path="url(#p6343eaa6e8)" d="M 60.489064 101.7675
  872. L 60.489064 98.9325
  873. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  874. <path clip-path="url(#p6343eaa6e8)" d="M 104.407921 101.7675
  875. L 104.407921 98.9325
  876. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  877. <path clip-path="url(#p6343eaa6e8)" d="M 239.900864 101.7675
  878. L 239.900864 98.9325
  879. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  880. <path clip-path="url(#p6343eaa6e8)" d="M 240.757644 101.7675
  881. L 240.757644 98.9325
  882. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  883. <path clip-path="url(#p6343eaa6e8)" d="M 244.164486 101.7675
  884. L 244.164486 98.9325
  885. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  886. <path clip-path="url(#p6343eaa6e8)" d="M 305.249364 101.7675
  887. L 305.249364 98.9325
  888. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  889. <path clip-path="url(#p6343eaa6e8)" d="M 494.552159 101.7675
  890. L 494.552159 98.9325
  891. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  892. <path clip-path="url(#p6343eaa6e8)" d="M 518.79549 101.7675
  893. L 518.79549 98.9325
  894. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  895. </g>
  896. <g id="EventCollection_11">
  897. <path clip-path="url(#p6343eaa6e8)" d="M 54.050538 104.6025
  898. L 54.050538 101.7675
  899. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  900. <path clip-path="url(#p6343eaa6e8)" d="M 56.225442 104.6025
  901. L 56.225442 101.7675
  902. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  903. <path clip-path="url(#p6343eaa6e8)" d="M 188.610655 104.6025
  904. L 188.610655 101.7675
  905. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  906. <path clip-path="url(#p6343eaa6e8)" d="M 244.012395 104.6025
  907. L 244.012395 101.7675
  908. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  909. <path clip-path="url(#p6343eaa6e8)" d="M 245.3001 104.6025
  910. L 245.3001 101.7675
  911. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  912. <path clip-path="url(#p6343eaa6e8)" d="M 248.149274 104.6025
  913. L 248.149274 101.7675
  914. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  915. <path clip-path="url(#p6343eaa6e8)" d="M 261.81213 104.6025
  916. L 261.81213 101.7675
  917. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  918. <path clip-path="url(#p6343eaa6e8)" d="M 284.068136 104.6025
  919. L 284.068136 101.7675
  920. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  921. <path clip-path="url(#p6343eaa6e8)" d="M 492.81832 104.6025
  922. L 492.81832 101.7675
  923. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  924. <path clip-path="url(#p6343eaa6e8)" d="M 495.043921 104.6025
  925. L 495.043921 101.7675
  926. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  927. <path clip-path="url(#p6343eaa6e8)" d="M 508.356967 104.6025
  928. L 508.356967 101.7675
  929. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  930. <path clip-path="url(#p6343eaa6e8)" d="M 513.953921 104.6025
  931. L 513.953921 101.7675
  932. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  933. <path clip-path="url(#p6343eaa6e8)" d="M 517.127557 104.6025
  934. L 517.127557 101.7675
  935. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  936. </g>
  937. <g id="EventCollection_12">
  938. <path clip-path="url(#p6343eaa6e8)" d="M 52.144329 107.4375
  939. L 52.144329 104.6025
  940. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  941. <path clip-path="url(#p6343eaa6e8)" d="M 55.525822 107.4375
  942. L 55.525822 104.6025
  943. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  944. <path clip-path="url(#p6343eaa6e8)" d="M 55.956747 107.4375
  945. L 55.956747 104.6025
  946. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  947. <path clip-path="url(#p6343eaa6e8)" d="M 56.641158 107.4375
  948. L 56.641158 104.6025
  949. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  950. <path clip-path="url(#p6343eaa6e8)" d="M 57.908584 107.4375
  951. L 57.908584 104.6025
  952. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  953. <path clip-path="url(#p6343eaa6e8)" d="M 239.895794 107.4375
  954. L 239.895794 104.6025
  955. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  956. <path clip-path="url(#p6343eaa6e8)" d="M 240.458531 107.4375
  957. L 240.458531 104.6025
  958. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  959. <path clip-path="url(#p6343eaa6e8)" d="M 246.136601 107.4375
  960. L 246.136601 104.6025
  961. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  962. <path clip-path="url(#p6343eaa6e8)" d="M 279.774095 107.4375
  963. L 279.774095 104.6025
  964. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  965. <path clip-path="url(#p6343eaa6e8)" d="M 290.096015 107.4375
  966. L 290.096015 104.6025
  967. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  968. <path clip-path="url(#p6343eaa6e8)" d="M 305.599174 107.4375
  969. L 305.599174 104.6025
  970. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  971. <path clip-path="url(#p6343eaa6e8)" d="M 311.094735 107.4375
  972. L 311.094735 104.6025
  973. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  974. <path clip-path="url(#p6343eaa6e8)" d="M 354.912197 107.4375
  975. L 354.912197 104.6025
  976. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  977. <path clip-path="url(#p6343eaa6e8)" d="M 493.67003 107.4375
  978. L 493.67003 104.6025
  979. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  980. <path clip-path="url(#p6343eaa6e8)" d="M 495.201081 107.4375
  981. L 495.201081 104.6025
  982. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  983. <path clip-path="url(#p6343eaa6e8)" d="M 541.604094 107.4375
  984. L 541.604094 104.6025
  985. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  986. </g>
  987. <g id="EventCollection_13">
  988. <path clip-path="url(#p6343eaa6e8)" d="M 51.404152 110.2725
  989. L 51.404152 107.4375
  990. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  991. <path clip-path="url(#p6343eaa6e8)" d="M 52.392744 110.2725
  992. L 52.392744 107.4375
  993. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  994. <path clip-path="url(#p6343eaa6e8)" d="M 54.060678 110.2725
  995. L 54.060678 107.4375
  996. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  997. <path clip-path="url(#p6343eaa6e8)" d="M 54.988434 110.2725
  998. L 54.988434 107.4375
  999. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1000. <path clip-path="url(#p6343eaa6e8)" d="M 174.202553 110.2725
  1001. L 174.202553 107.4375
  1002. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1003. <path clip-path="url(#p6343eaa6e8)" d="M 221.04663 110.2725
  1004. L 221.04663 107.4375
  1005. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1006. <path clip-path="url(#p6343eaa6e8)" d="M 240.047885 110.2725
  1007. L 240.047885 107.4375
  1008. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1009. <path clip-path="url(#p6343eaa6e8)" d="M 240.438252 110.2725
  1010. L 240.438252 107.4375
  1011. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1012. <path clip-path="url(#p6343eaa6e8)" d="M 277.355846 110.2725
  1013. L 277.355846 107.4375
  1014. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1015. <path clip-path="url(#p6343eaa6e8)" d="M 291.312745 110.2725
  1016. L 291.312745 107.4375
  1017. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1018. <path clip-path="url(#p6343eaa6e8)" d="M 304.306399 110.2725
  1019. L 304.306399 107.4375
  1020. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1021. <path clip-path="url(#p6343eaa6e8)" d="M 305.15811 110.2725
  1022. L 305.15811 107.4375
  1023. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1024. <path clip-path="url(#p6343eaa6e8)" d="M 492.402604 110.2725
  1025. L 492.402604 107.4375
  1026. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1027. <path clip-path="url(#p6343eaa6e8)" d="M 497.406403 110.2725
  1028. L 497.406403 107.4375
  1029. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1030. <path clip-path="url(#p6343eaa6e8)" d="M 506.830985 110.2725
  1031. L 506.830985 107.4375
  1032. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1033. </g>
  1034. <g id="EventCollection_14">
  1035. <path clip-path="url(#p6343eaa6e8)" d="M 54.577787 113.1075
  1036. L 54.577787 110.2725
  1037. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1038. <path clip-path="url(#p6343eaa6e8)" d="M 55.231779 113.1075
  1039. L 55.231779 110.2725
  1040. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1041. <path clip-path="url(#p6343eaa6e8)" d="M 57.97449 113.1075
  1042. L 57.97449 110.2725
  1043. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1044. <path clip-path="url(#p6343eaa6e8)" d="M 142.912332 113.1075
  1045. L 142.912332 110.2725
  1046. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1047. <path clip-path="url(#p6343eaa6e8)" d="M 210.821034 113.1075
  1048. L 210.821034 110.2725
  1049. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1050. <path clip-path="url(#p6343eaa6e8)" d="M 239.758912 113.1075
  1051. L 239.758912 110.2725
  1052. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1053. <path clip-path="url(#p6343eaa6e8)" d="M 240.255743 113.1075
  1054. L 240.255743 110.2725
  1055. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1056. <path clip-path="url(#p6343eaa6e8)" d="M 243.322915 113.1075
  1057. L 243.322915 110.2725
  1058. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1059. <path clip-path="url(#p6343eaa6e8)" d="M 245.933813 113.1075
  1060. L 245.933813 110.2725
  1061. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1062. <path clip-path="url(#p6343eaa6e8)" d="M 290.547219 113.1075
  1063. L 290.547219 110.2725
  1064. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1065. <path clip-path="url(#p6343eaa6e8)" d="M 312.711971 113.1075
  1066. L 312.711971 110.2725
  1067. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1068. <path clip-path="url(#p6343eaa6e8)" d="M 458.76004 113.1075
  1069. L 458.76004 110.2725
  1070. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1071. <path clip-path="url(#p6343eaa6e8)" d="M 472.027459 113.1075
  1072. L 472.027459 110.2725
  1073. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1074. <path clip-path="url(#p6343eaa6e8)" d="M 493.84747 113.1075
  1075. L 493.84747 110.2725
  1076. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1077. <path clip-path="url(#p6343eaa6e8)" d="M 495.180803 113.1075
  1078. L 495.180803 110.2725
  1079. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1080. <path clip-path="url(#p6343eaa6e8)" d="M 513.198535 113.1075
  1081. L 513.198535 110.2725
  1082. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1083. <path clip-path="url(#p6343eaa6e8)" d="M 525.14783 113.1075
  1084. L 525.14783 110.2725
  1085. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1086. </g>
  1087. <g id="EventCollection_15">
  1088. <path clip-path="url(#p6343eaa6e8)" d="M 51.835077 115.9425
  1089. L 51.835077 113.1075
  1090. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1091. <path clip-path="url(#p6343eaa6e8)" d="M 54.451045 115.9425
  1092. L 54.451045 113.1075
  1093. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1094. <path clip-path="url(#p6343eaa6e8)" d="M 55.0442 115.9425
  1095. L 55.0442 113.1075
  1096. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1097. <path clip-path="url(#p6343eaa6e8)" d="M 55.784377 115.9425
  1098. L 55.784377 113.1075
  1099. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1100. <path clip-path="url(#p6343eaa6e8)" d="M 57.426962 115.9425
  1101. L 57.426962 113.1075
  1102. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1103. <path clip-path="url(#p6343eaa6e8)" d="M 235.49022 115.9425
  1104. L 235.49022 113.1075
  1105. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1106. <path clip-path="url(#p6343eaa6e8)" d="M 240.417973 115.9425
  1107. L 240.417973 113.1075
  1108. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1109. <path clip-path="url(#p6343eaa6e8)" d="M 243.317845 115.9425
  1110. L 243.317845 113.1075
  1111. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1112. <path clip-path="url(#p6343eaa6e8)" d="M 243.677794 115.9425
  1113. L 243.677794 113.1075
  1114. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1115. <path clip-path="url(#p6343eaa6e8)" d="M 246.739896 115.9425
  1116. L 246.739896 113.1075
  1117. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1118. <path clip-path="url(#p6343eaa6e8)" d="M 279.845071 115.9425
  1119. L 279.845071 113.1075
  1120. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1121. <path clip-path="url(#p6343eaa6e8)" d="M 305.736056 115.9425
  1122. L 305.736056 113.1075
  1123. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1124. <path clip-path="url(#p6343eaa6e8)" d="M 494.161792 115.9425
  1125. L 494.161792 113.1075
  1126. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1127. </g>
  1128. <g id="EventCollection_16">
  1129. <path clip-path="url(#p6343eaa6e8)" d="M 51.895913 118.7775
  1130. L 51.895913 115.9425
  1131. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1132. <path clip-path="url(#p6343eaa6e8)" d="M 54.633554 118.7775
  1133. L 54.633554 115.9425
  1134. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1135. <path clip-path="url(#p6343eaa6e8)" d="M 57.325568 118.7775
  1136. L 57.325568 115.9425
  1137. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1138. <path clip-path="url(#p6343eaa6e8)" d="M 174.527014 118.7775
  1139. L 174.527014 115.9425
  1140. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1141. <path clip-path="url(#p6343eaa6e8)" d="M 239.916073 118.7775
  1142. L 239.916073 115.9425
  1143. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1144. <path clip-path="url(#p6343eaa6e8)" d="M 240.524437 118.7775
  1145. L 240.524437 115.9425
  1146. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1147. <path clip-path="url(#p6343eaa6e8)" d="M 243.277287 118.7775
  1148. L 243.277287 115.9425
  1149. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1150. <path clip-path="url(#p6343eaa6e8)" d="M 243.814676 118.7775
  1151. L 243.814676 115.9425
  1152. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1153. <path clip-path="url(#p6343eaa6e8)" d="M 256.580194 118.7775
  1154. L 256.580194 115.9425
  1155. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1156. <path clip-path="url(#p6343eaa6e8)" d="M 283.262053 118.7775
  1157. L 283.262053 115.9425
  1158. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1159. <path clip-path="url(#p6343eaa6e8)" d="M 492.869017 118.7775
  1160. L 492.869017 115.9425
  1161. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1162. <path clip-path="url(#p6343eaa6e8)" d="M 496.514135 118.7775
  1163. L 496.514135 115.9425
  1164. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1165. </g>
  1166. <g id="EventCollection_17">
  1167. <path clip-path="url(#p6343eaa6e8)" d="M 52.423163 121.6125
  1168. L 52.423163 118.7775
  1169. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1170. <path clip-path="url(#p6343eaa6e8)" d="M 54.491602 121.6125
  1171. L 54.491602 118.7775
  1172. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1173. <path clip-path="url(#p6343eaa6e8)" d="M 54.968155 121.6125
  1174. L 54.968155 118.7775
  1175. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1176. <path clip-path="url(#p6343eaa6e8)" d="M 57.102501 121.6125
  1177. L 57.102501 118.7775
  1178. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1179. <path clip-path="url(#p6343eaa6e8)" d="M 157.634756 121.6125
  1180. L 157.634756 118.7775
  1181. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1182. <path clip-path="url(#p6343eaa6e8)" d="M 305.862799 121.6125
  1183. L 305.862799 118.7775
  1184. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1185. <path clip-path="url(#p6343eaa6e8)" d="M 381.000901 121.6125
  1186. L 381.000901 118.7775
  1187. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1188. <path clip-path="url(#p6343eaa6e8)" d="M 430.917219 121.6125
  1189. L 430.917219 118.7775
  1190. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1191. <path clip-path="url(#p6343eaa6e8)" d="M 494.937457 121.6125
  1192. L 494.937457 118.7775
  1193. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1194. <path clip-path="url(#p6343eaa6e8)" d="M 495.91591 121.6125
  1195. L 495.91591 118.7775
  1196. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1197. <path clip-path="url(#p6343eaa6e8)" d="M 515.586366 121.6125
  1198. L 515.586366 118.7775
  1199. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1200. </g>
  1201. <g id="EventCollection_18">
  1202. <path clip-path="url(#p6343eaa6e8)" d="M 51.890844 124.4475
  1203. L 51.890844 121.6125
  1204. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1205. <path clip-path="url(#p6343eaa6e8)" d="M 53.878168 124.4475
  1206. L 53.878168 121.6125
  1207. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1208. <path clip-path="url(#p6343eaa6e8)" d="M 54.623415 124.4475
  1209. L 54.623415 121.6125
  1210. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1211. <path clip-path="url(#p6343eaa6e8)" d="M 55.343313 124.4475
  1212. L 55.343313 121.6125
  1213. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1214. <path clip-path="url(#p6343eaa6e8)" d="M 56.118978 124.4475
  1215. L 56.118978 121.6125
  1216. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1217. <path clip-path="url(#p6343eaa6e8)" d="M 78.009965 124.4475
  1218. L 78.009965 121.6125
  1219. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1220. <path clip-path="url(#p6343eaa6e8)" d="M 99.464958 124.4475
  1221. L 99.464958 121.6125
  1222. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1223. <path clip-path="url(#p6343eaa6e8)" d="M 171.966813 124.4475
  1224. L 171.966813 121.6125
  1225. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1226. <path clip-path="url(#p6343eaa6e8)" d="M 227.368552 124.4475
  1227. L 227.368552 121.6125
  1228. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1229. <path clip-path="url(#p6343eaa6e8)" d="M 240.007327 124.4475
  1230. L 240.007327 121.6125
  1231. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1232. <path clip-path="url(#p6343eaa6e8)" d="M 242.760177 124.4475
  1233. L 242.760177 121.6125
  1234. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1235. <path clip-path="url(#p6343eaa6e8)" d="M 243.272218 124.4475
  1236. L 243.272218 121.6125
  1237. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1238. <path clip-path="url(#p6343eaa6e8)" d="M 243.951558 124.4475
  1239. L 243.951558 121.6125
  1240. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1241. <path clip-path="url(#p6343eaa6e8)" d="M 305.289922 124.4475
  1242. L 305.289922 121.6125
  1243. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1244. <path clip-path="url(#p6343eaa6e8)" d="M 305.817171 124.4475
  1245. L 305.817171 121.6125
  1246. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1247. <path clip-path="url(#p6343eaa6e8)" d="M 324.889403 124.4475
  1248. L 324.889403 121.6125
  1249. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1250. <path clip-path="url(#p6343eaa6e8)" d="M 490.628207 124.4475
  1251. L 490.628207 121.6125
  1252. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1253. <path clip-path="url(#p6343eaa6e8)" d="M 495.236569 124.4475
  1254. L 495.236569 121.6125
  1255. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1256. </g>
  1257. <g id="EventCollection_19">
  1258. <path clip-path="url(#p6343eaa6e8)" d="M 53.883238 127.2825
  1259. L 53.883238 124.4475
  1260. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1261. <path clip-path="url(#p6343eaa6e8)" d="M 54.400348 127.2825
  1262. L 54.400348 124.4475
  1263. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1264. <path clip-path="url(#p6343eaa6e8)" d="M 54.816064 127.2825
  1265. L 54.816064 124.4475
  1266. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1267. <path clip-path="url(#p6343eaa6e8)" d="M 107.525789 127.2825
  1268. L 107.525789 124.4475
  1269. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1270. <path clip-path="url(#p6343eaa6e8)" d="M 185.011165 127.2825
  1271. L 185.011165 124.4475
  1272. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1273. <path clip-path="url(#p6343eaa6e8)" d="M 242.973105 127.2825
  1274. L 242.973105 124.4475
  1275. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1276. <path clip-path="url(#p6343eaa6e8)" d="M 306.978134 127.2825
  1277. L 306.978134 124.4475
  1278. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1279. <path clip-path="url(#p6343eaa6e8)" d="M 308.463558 127.2825
  1280. L 308.463558 124.4475
  1281. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1282. <path clip-path="url(#p6343eaa6e8)" d="M 377.685313 127.2825
  1283. L 377.685313 124.4475
  1284. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1285. <path clip-path="url(#p6343eaa6e8)" d="M 420.149165 127.2825
  1286. L 420.149165 124.4475
  1287. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1288. <path clip-path="url(#p6343eaa6e8)" d="M 496.275859 127.2825
  1289. L 496.275859 124.4475
  1290. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1291. </g>
  1292. <g id="EventCollection_20">
  1293. <path clip-path="url(#p6343eaa6e8)" d="M 54.846482 130.1175
  1294. L 54.846482 127.2825
  1295. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1296. <path clip-path="url(#p6343eaa6e8)" d="M 55.708332 130.1175
  1297. L 55.708332 127.2825
  1298. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1299. <path clip-path="url(#p6343eaa6e8)" d="M 59.53089 130.1175
  1300. L 59.53089 127.2825
  1301. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1302. <path clip-path="url(#p6343eaa6e8)" d="M 111.383835 130.1175
  1303. L 111.383835 127.2825
  1304. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1305. <path clip-path="url(#p6343eaa6e8)" d="M 201.305197 130.1175
  1306. L 201.305197 127.2825
  1307. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1308. <path clip-path="url(#p6343eaa6e8)" d="M 209.710769 130.1175
  1309. L 209.710769 127.2825
  1310. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1311. <path clip-path="url(#p6343eaa6e8)" d="M 239.976909 130.1175
  1312. L 239.976909 127.2825
  1313. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1314. <path clip-path="url(#p6343eaa6e8)" d="M 242.567529 130.1175
  1315. L 242.567529 127.2825
  1316. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1317. <path clip-path="url(#p6343eaa6e8)" d="M 246.15688 130.1175
  1318. L 246.15688 127.2825
  1319. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1320. <path clip-path="url(#p6343eaa6e8)" d="M 371.601667 130.1175
  1321. L 371.601667 127.2825
  1322. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1323. <path clip-path="url(#p6343eaa6e8)" d="M 494.394998 130.1175
  1324. L 494.394998 127.2825
  1325. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1326. <path clip-path="url(#p6343eaa6e8)" d="M 499.626934 130.1175
  1327. L 499.626934 127.2825
  1328. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1329. <path clip-path="url(#p6343eaa6e8)" d="M 504.316412 130.1175
  1330. L 504.316412 127.2825
  1331. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1332. </g>
  1333. <g id="EventCollection_21">
  1334. <path clip-path="url(#p6343eaa6e8)" d="M 51.4295 132.9525
  1335. L 51.4295 130.1175
  1336. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1337. <path clip-path="url(#p6343eaa6e8)" d="M 54.800854 132.9525
  1338. L 54.800854 130.1175
  1339. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1340. <path clip-path="url(#p6343eaa6e8)" d="M 55.682983 132.9525
  1341. L 55.682983 130.1175
  1342. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1343. <path clip-path="url(#p6343eaa6e8)" d="M 127.880656 132.9525
  1344. L 127.880656 130.1175
  1345. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1346. <path clip-path="url(#p6343eaa6e8)" d="M 239.09478 132.9525
  1347. L 239.09478 130.1175
  1348. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1349. <path clip-path="url(#p6343eaa6e8)" d="M 240.65118 132.9525
  1350. L 240.65118 130.1175
  1351. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1352. <path clip-path="url(#p6343eaa6e8)" d="M 242.983244 132.9525
  1353. L 242.983244 130.1175
  1354. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1355. <path clip-path="url(#p6343eaa6e8)" d="M 243.784258 132.9525
  1356. L 243.784258 130.1175
  1357. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1358. <path clip-path="url(#p6343eaa6e8)" d="M 304.412863 132.9525
  1359. L 304.412863 130.1175
  1360. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1361. <path clip-path="url(#p6343eaa6e8)" d="M 309.021225 132.9525
  1362. L 309.021225 130.1175
  1363. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1364. <path clip-path="url(#p6343eaa6e8)" d="M 333.786735 132.9525
  1365. L 333.786735 130.1175
  1366. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1367. <path clip-path="url(#p6343eaa6e8)" d="M 360.656173 132.9525
  1368. L 360.656173 130.1175
  1369. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1370. <path clip-path="url(#p6343eaa6e8)" d="M 398.38999 132.9525
  1371. L 398.38999 130.1175
  1372. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1373. <path clip-path="url(#p6343eaa6e8)" d="M 419.206199 132.9525
  1374. L 419.206199 130.1175
  1375. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1376. <path clip-path="url(#p6343eaa6e8)" d="M 490.856344 132.9525
  1377. L 490.856344 130.1175
  1378. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1379. <path clip-path="url(#p6343eaa6e8)" d="M 499.079406 132.9525
  1380. L 499.079406 130.1175
  1381. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1382. </g>
  1383. <g id="EventCollection_22">
  1384. <path clip-path="url(#p6343eaa6e8)" d="M 54.430766 135.7875
  1385. L 54.430766 132.9525
  1386. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1387. <path clip-path="url(#p6343eaa6e8)" d="M 55.013782 135.7875
  1388. L 55.013782 132.9525
  1389. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1390. <path clip-path="url(#p6343eaa6e8)" d="M 55.586659 135.7875
  1391. L 55.586659 132.9525
  1392. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1393. <path clip-path="url(#p6343eaa6e8)" d="M 56.884503 135.7875
  1394. L 56.884503 132.9525
  1395. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1396. <path clip-path="url(#p6343eaa6e8)" d="M 57.594262 135.7875
  1397. L 57.594262 132.9525
  1398. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1399. <path clip-path="url(#p6343eaa6e8)" d="M 61.736211 135.7875
  1400. L 61.736211 132.9525
  1401. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1402. <path clip-path="url(#p6343eaa6e8)" d="M 242.968035 135.7875
  1403. L 242.968035 132.9525
  1404. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1405. <path clip-path="url(#p6343eaa6e8)" d="M 263.966754 135.7875
  1406. L 263.966754 132.9525
  1407. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1408. <path clip-path="url(#p6343eaa6e8)" d="M 298.998418 135.7875
  1409. L 298.998418 132.9525
  1410. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1411. <path clip-path="url(#p6343eaa6e8)" d="M 304.828579 135.7875
  1412. L 304.828579 132.9525
  1413. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1414. <path clip-path="url(#p6343eaa6e8)" d="M 307.682823 135.7875
  1415. L 307.682823 132.9525
  1416. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1417. <path clip-path="url(#p6343eaa6e8)" d="M 447.023672 135.7875
  1418. L 447.023672 132.9525
  1419. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1420. <path clip-path="url(#p6343eaa6e8)" d="M 463.789188 135.7875
  1421. L 463.789188 132.9525
  1422. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1423. <path clip-path="url(#p6343eaa6e8)" d="M 493.046457 135.7875
  1424. L 493.046457 132.9525
  1425. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1426. <path clip-path="url(#p6343eaa6e8)" d="M 501.573701 135.7875
  1427. L 501.573701 132.9525
  1428. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1429. <path clip-path="url(#p6343eaa6e8)" d="M 504.798034 135.7875
  1430. L 504.798034 132.9525
  1431. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1432. </g>
  1433. <g id="EventCollection_23">
  1434. <path clip-path="url(#p6343eaa6e8)" d="M 54.146863 138.6225
  1435. L 54.146863 135.7875
  1436. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1437. <path clip-path="url(#p6343eaa6e8)" d="M 57.10757 138.6225
  1438. L 57.10757 135.7875
  1439. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1440. <path clip-path="url(#p6343eaa6e8)" d="M 239.581472 138.6225
  1441. L 239.581472 135.7875
  1442. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1443. <path clip-path="url(#p6343eaa6e8)" d="M 240.093512 138.6225
  1444. L 240.093512 135.7875
  1445. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1446. <path clip-path="url(#p6343eaa6e8)" d="M 240.661319 138.6225
  1447. L 240.661319 135.7875
  1448. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1449. <path clip-path="url(#p6343eaa6e8)" d="M 242.983244 138.6225
  1450. L 242.983244 135.7875
  1451. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1452. <path clip-path="url(#p6343eaa6e8)" d="M 244.529504 138.6225
  1453. L 244.529504 135.7875
  1454. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1455. <path clip-path="url(#p6343eaa6e8)" d="M 267.840009 138.6225
  1456. L 267.840009 135.7875
  1457. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1458. <path clip-path="url(#p6343eaa6e8)" d="M 310.765204 138.6225
  1459. L 310.765204 135.7875
  1460. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1461. <path clip-path="url(#p6343eaa6e8)" d="M 359.662511 138.6225
  1462. L 359.662511 135.7875
  1463. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1464. <path clip-path="url(#p6343eaa6e8)" d="M 388.990756 138.6225
  1465. L 388.990756 135.7875
  1466. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1467. <path clip-path="url(#p6343eaa6e8)" d="M 420.691623 138.6225
  1468. L 420.691623 135.7875
  1469. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1470. <path clip-path="url(#p6343eaa6e8)" d="M 449.588943 138.6225
  1471. L 449.588943 135.7875
  1472. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1473. <path clip-path="url(#p6343eaa6e8)" d="M 492.270792 138.6225
  1474. L 492.270792 135.7875
  1475. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1476. <path clip-path="url(#p6343eaa6e8)" d="M 492.661159 138.6225
  1477. L 492.661159 135.7875
  1478. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1479. <path clip-path="url(#p6343eaa6e8)" d="M 496.985618 138.6225
  1480. L 496.985618 135.7875
  1481. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1482. <path clip-path="url(#p6343eaa6e8)" d="M 539.76886 138.6225
  1483. L 539.76886 135.7875
  1484. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1485. </g>
  1486. <g id="EventCollection_24">
  1487. <path clip-path="url(#p6343eaa6e8)" d="M 53.447243 141.4575
  1488. L 53.447243 138.6225
  1489. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1490. <path clip-path="url(#p6343eaa6e8)" d="M 54.866761 141.4575
  1491. L 54.866761 138.6225
  1492. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1493. <path clip-path="url(#p6343eaa6e8)" d="M 56.286278 141.4575
  1494. L 56.286278 138.6225
  1495. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1496. <path clip-path="url(#p6343eaa6e8)" d="M 80.85914 141.4575
  1497. L 80.85914 138.6225
  1498. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1499. <path clip-path="url(#p6343eaa6e8)" d="M 150.273544 141.4575
  1500. L 150.273544 138.6225
  1501. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1502. <path clip-path="url(#p6343eaa6e8)" d="M 239.865376 141.4575
  1503. L 239.865376 138.6225
  1504. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1505. <path clip-path="url(#p6343eaa6e8)" d="M 240.544716 141.4575
  1506. L 240.544716 138.6225
  1507. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1508. <path clip-path="url(#p6343eaa6e8)" d="M 493.066736 141.4575
  1509. L 493.066736 138.6225
  1510. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1511. <path clip-path="url(#p6343eaa6e8)" d="M 494.090816 141.4575
  1512. L 494.090816 138.6225
  1513. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1514. </g>
  1515. <g id="EventCollection_25">
  1516. <path clip-path="url(#p6343eaa6e8)" d="M 52.184887 144.2925
  1517. L 52.184887 141.4575
  1518. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1519. <path clip-path="url(#p6343eaa6e8)" d="M 54.451045 144.2925
  1520. L 54.451045 141.4575
  1521. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1522. <path clip-path="url(#p6343eaa6e8)" d="M 55.105037 144.2925
  1523. L 55.105037 141.4575
  1524. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1525. <path clip-path="url(#p6343eaa6e8)" d="M 141.888252 144.2925
  1526. L 141.888252 141.4575
  1527. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1528. <path clip-path="url(#p6343eaa6e8)" d="M 305.67522 144.2925
  1529. L 305.67522 141.4575
  1530. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1531. <path clip-path="url(#p6343eaa6e8)" d="M 307.008552 144.2925
  1532. L 307.008552 141.4575
  1533. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1534. <path clip-path="url(#p6343eaa6e8)" d="M 404.306336 144.2925
  1535. L 404.306336 141.4575
  1536. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1537. <path clip-path="url(#p6343eaa6e8)" d="M 431.550932 144.2925
  1538. L 431.550932 141.4575
  1539. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1540. <path clip-path="url(#p6343eaa6e8)" d="M 493.284733 144.2925
  1541. L 493.284733 141.4575
  1542. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1543. <path clip-path="url(#p6343eaa6e8)" d="M 522.800557 144.2925
  1544. L 522.800557 141.4575
  1545. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1546. </g>
  1547. <g id="EventCollection_26">
  1548. <path clip-path="url(#p6343eaa6e8)" d="M 54.790715 147.1275
  1549. L 54.790715 144.2925
  1550. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1551. <path clip-path="url(#p6343eaa6e8)" d="M 56.017584 147.1275
  1552. L 56.017584 144.2925
  1553. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1554. <path clip-path="url(#p6343eaa6e8)" d="M 57.158267 147.1275
  1555. L 57.158267 144.2925
  1556. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1557. <path clip-path="url(#p6343eaa6e8)" d="M 242.445856 147.1275
  1558. L 242.445856 144.2925
  1559. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1560. <path clip-path="url(#p6343eaa6e8)" d="M 244.052952 147.1275
  1561. L 244.052952 144.2925
  1562. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1563. <path clip-path="url(#p6343eaa6e8)" d="M 247.226588 147.1275
  1564. L 247.226588 144.2925
  1565. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1566. <path clip-path="url(#p6343eaa6e8)" d="M 305.583965 147.1275
  1567. L 305.583965 144.2925
  1568. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1569. <path clip-path="url(#p6343eaa6e8)" d="M 306.445815 147.1275
  1570. L 306.445815 144.2925
  1571. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1572. <path clip-path="url(#p6343eaa6e8)" d="M 308.286118 147.1275
  1573. L 308.286118 144.2925
  1574. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1575. <path clip-path="url(#p6343eaa6e8)" d="M 389.989488 147.1275
  1576. L 389.989488 144.2925
  1577. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1578. <path clip-path="url(#p6343eaa6e8)" d="M 400.321547 147.1275
  1579. L 400.321547 144.2925
  1580. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1581. <path clip-path="url(#p6343eaa6e8)" d="M 492.81832 147.1275
  1582. L 492.81832 144.2925
  1583. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1584. <path clip-path="url(#p6343eaa6e8)" d="M 536.088254 147.1275
  1585. L 536.088254 144.2925
  1586. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1587. </g>
  1588. <g id="EventCollection_27">
  1589. <path clip-path="url(#p6343eaa6e8)" d="M 51.78438 149.9625
  1590. L 51.78438 147.1275
  1591. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1592. <path clip-path="url(#p6343eaa6e8)" d="M 53.791983 149.9625
  1593. L 53.791983 147.1275
  1594. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1595. <path clip-path="url(#p6343eaa6e8)" d="M 54.53216 149.9625
  1596. L 54.53216 147.1275
  1597. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1598. <path clip-path="url(#p6343eaa6e8)" d="M 56.41809 149.9625
  1599. L 56.41809 147.1275
  1600. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1601. <path clip-path="url(#p6343eaa6e8)" d="M 239.459799 149.9625
  1602. L 239.459799 147.1275
  1603. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1604. <path clip-path="url(#p6343eaa6e8)" d="M 242.785526 149.9625
  1605. L 242.785526 147.1275
  1606. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1607. <path clip-path="url(#p6343eaa6e8)" d="M 243.703142 149.9625
  1608. L 243.703142 147.1275
  1609. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1610. <path clip-path="url(#p6343eaa6e8)" d="M 244.60048 149.9625
  1611. L 244.60048 147.1275
  1612. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1613. <path clip-path="url(#p6343eaa6e8)" d="M 290.750007 149.9625
  1614. L 290.750007 147.1275
  1615. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1616. <path clip-path="url(#p6343eaa6e8)" d="M 303.277249 149.9625
  1617. L 303.277249 147.1275
  1618. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1619. <path clip-path="url(#p6343eaa6e8)" d="M 356.458457 149.9625
  1620. L 356.458457 147.1275
  1621. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1622. <path clip-path="url(#p6343eaa6e8)" d="M 386.248046 149.9625
  1623. L 386.248046 147.1275
  1624. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1625. <path clip-path="url(#p6343eaa6e8)" d="M 491.287269 149.9625
  1626. L 491.287269 147.1275
  1627. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1628. <path clip-path="url(#p6343eaa6e8)" d="M 492.99576 149.9625
  1629. L 492.99576 147.1275
  1630. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1631. <path clip-path="url(#p6343eaa6e8)" d="M 507.976739 149.9625
  1632. L 507.976739 147.1275
  1633. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1634. </g>
  1635. <g id="EventCollection_28">
  1636. <path clip-path="url(#p6343eaa6e8)" d="M 51.515685 152.7975
  1637. L 51.515685 149.9625
  1638. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1639. <path clip-path="url(#p6343eaa6e8)" d="M 51.931401 152.7975
  1640. L 51.931401 149.9625
  1641. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1642. <path clip-path="url(#p6343eaa6e8)" d="M 54.35472 152.7975
  1643. L 54.35472 149.9625
  1644. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1645. <path clip-path="url(#p6343eaa6e8)" d="M 55.22164 152.7975
  1646. L 55.22164 149.9625
  1647. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1648. <path clip-path="url(#p6343eaa6e8)" d="M 57.45738 152.7975
  1649. L 57.45738 149.9625
  1650. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1651. <path clip-path="url(#p6343eaa6e8)" d="M 166.729807 152.7975
  1652. L 166.729807 149.9625
  1653. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1654. <path clip-path="url(#p6343eaa6e8)" d="M 239.028874 152.7975
  1655. L 239.028874 149.9625
  1656. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1657. <path clip-path="url(#p6343eaa6e8)" d="M 244.95029 152.7975
  1658. L 244.95029 149.9625
  1659. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1660. <path clip-path="url(#p6343eaa6e8)" d="M 246.638502 152.7975
  1661. L 246.638502 149.9625
  1662. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1663. <path clip-path="url(#p6343eaa6e8)" d="M 294.886887 152.7975
  1664. L 294.886887 149.9625
  1665. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1666. <path clip-path="url(#p6343eaa6e8)" d="M 304.838718 152.7975
  1667. L 304.838718 149.9625
  1668. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1669. <path clip-path="url(#p6343eaa6e8)" d="M 307.292456 152.7975
  1670. L 307.292456 149.9625
  1671. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1672. <path clip-path="url(#p6343eaa6e8)" d="M 308.995877 152.7975
  1673. L 308.995877 149.9625
  1674. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1675. <path clip-path="url(#p6343eaa6e8)" d="M 312.580158 152.7975
  1676. L 312.580158 149.9625
  1677. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1678. <path clip-path="url(#p6343eaa6e8)" d="M 374.384935 152.7975
  1679. L 374.384935 149.9625
  1680. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1681. <path clip-path="url(#p6343eaa6e8)" d="M 512.630728 152.7975
  1682. L 512.630728 149.9625
  1683. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1684. <path clip-path="url(#p6343eaa6e8)" d="M 538.075579 152.7975
  1685. L 538.075579 149.9625
  1686. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1687. <path clip-path="url(#p6343eaa6e8)" d="M 542.785335 152.7975
  1688. L 542.785335 149.9625
  1689. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1690. </g>
  1691. <g id="EventCollection_29">
  1692. <path clip-path="url(#p6343eaa6e8)" d="M 51.743822 155.6325
  1693. L 51.743822 152.7975
  1694. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1695. <path clip-path="url(#p6343eaa6e8)" d="M 52.240653 155.6325
  1696. L 52.240653 152.7975
  1697. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1698. <path clip-path="url(#p6343eaa6e8)" d="M 54.451045 155.6325
  1699. L 54.451045 152.7975
  1700. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1701. <path clip-path="url(#p6343eaa6e8)" d="M 56.565112 155.6325
  1702. L 56.565112 152.7975
  1703. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1704. <path clip-path="url(#p6343eaa6e8)" d="M 94.172186 155.6325
  1705. L 94.172186 152.7975
  1706. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1707. <path clip-path="url(#p6343eaa6e8)" d="M 239.551054 155.6325
  1708. L 239.551054 152.7975
  1709. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1710. <path clip-path="url(#p6343eaa6e8)" d="M 240.068164 155.6325
  1711. L 240.068164 152.7975
  1712. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1713. <path clip-path="url(#p6343eaa6e8)" d="M 242.973105 155.6325
  1714. L 242.973105 152.7975
  1715. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1716. <path clip-path="url(#p6343eaa6e8)" d="M 243.424309 155.6325
  1717. L 243.424309 152.7975
  1718. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1719. <path clip-path="url(#p6343eaa6e8)" d="M 385.026247 155.6325
  1720. L 385.026247 152.7975
  1721. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1722. <path clip-path="url(#p6343eaa6e8)" d="M 494.476114 155.6325
  1723. L 494.476114 152.7975
  1724. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1725. </g>
  1726. <g id="EventCollection_30">
  1727. <path clip-path="url(#p6343eaa6e8)" d="M 52.012517 158.4675
  1728. L 52.012517 155.6325
  1729. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1730. <path clip-path="url(#p6343eaa6e8)" d="M 53.928865 158.4675
  1731. L 53.928865 155.6325
  1732. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1733. <path clip-path="url(#p6343eaa6e8)" d="M 55.039131 158.4675
  1734. L 55.039131 155.6325
  1735. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1736. <path clip-path="url(#p6343eaa6e8)" d="M 57.087292 158.4675
  1737. L 57.087292 155.6325
  1738. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1739. <path clip-path="url(#p6343eaa6e8)" d="M 58.461182 158.4675
  1740. L 58.461182 155.6325
  1741. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1742. <path clip-path="url(#p6343eaa6e8)" d="M 192.66642 158.4675
  1743. L 192.66642 155.6325
  1744. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1745. <path clip-path="url(#p6343eaa6e8)" d="M 207.500377 158.4675
  1746. L 207.500377 155.6325
  1747. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1748. <path clip-path="url(#p6343eaa6e8)" d="M 240.078303 158.4675
  1749. L 240.078303 155.6325
  1750. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1751. <path clip-path="url(#p6343eaa6e8)" d="M 242.582738 158.4675
  1752. L 242.582738 155.6325
  1753. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1754. <path clip-path="url(#p6343eaa6e8)" d="M 270.298816 158.4675
  1755. L 270.298816 155.6325
  1756. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1757. <path clip-path="url(#p6343eaa6e8)" d="M 304.281051 158.4675
  1758. L 304.281051 155.6325
  1759. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1760. <path clip-path="url(#p6343eaa6e8)" d="M 305.776614 158.4675
  1761. L 305.776614 155.6325
  1762. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1763. <path clip-path="url(#p6343eaa6e8)" d="M 305.964193 158.4675
  1764. L 305.964193 155.6325
  1765. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1766. <path clip-path="url(#p6343eaa6e8)" d="M 355.419168 158.4675
  1767. L 355.419168 155.6325
  1768. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1769. <path clip-path="url(#p6343eaa6e8)" d="M 490.719462 158.4675
  1770. L 490.719462 155.6325
  1771. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1772. <path clip-path="url(#p6343eaa6e8)" d="M 523.77901 158.4675
  1773. L 523.77901 155.6325
  1774. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1775. <path clip-path="url(#p6343eaa6e8)" d="M 527.39371 158.4675
  1776. L 527.39371 155.6325
  1777. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1778. </g>
  1779. <g id="EventCollection_31">
  1780. <path clip-path="url(#p6343eaa6e8)" d="M 51.96182 161.3025
  1781. L 51.96182 158.4675
  1782. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1783. <path clip-path="url(#p6343eaa6e8)" d="M 54.674112 161.3025
  1784. L 54.674112 158.4675
  1785. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1786. <path clip-path="url(#p6343eaa6e8)" d="M 55.064479 161.3025
  1787. L 55.064479 158.4675
  1788. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1789. <path clip-path="url(#p6343eaa6e8)" d="M 56.397812 161.3025
  1790. L 56.397812 158.4675
  1791. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1792. <path clip-path="url(#p6343eaa6e8)" d="M 130.288766 161.3025
  1793. L 130.288766 158.4675
  1794. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1795. <path clip-path="url(#p6343eaa6e8)" d="M 239.774121 161.3025
  1796. L 239.774121 158.4675
  1797. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1798. <path clip-path="url(#p6343eaa6e8)" d="M 243.22152 161.3025
  1799. L 243.22152 158.4675
  1800. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1801. <path clip-path="url(#p6343eaa6e8)" d="M 306.461024 161.3025
  1802. L 306.461024 158.4675
  1803. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1804. <path clip-path="url(#p6343eaa6e8)" d="M 325.670137 161.3025
  1805. L 325.670137 158.4675
  1806. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1807. <path clip-path="url(#p6343eaa6e8)" d="M 354.232857 161.3025
  1808. L 354.232857 158.4675
  1809. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1810. <path clip-path="url(#p6343eaa6e8)" d="M 492.392465 161.3025
  1811. L 492.392465 158.4675
  1812. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1813. </g>
  1814. <g id="EventCollection_32">
  1815. <path clip-path="url(#p6343eaa6e8)" d="M 54.217838 164.1375
  1816. L 54.217838 161.3025
  1817. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1818. <path clip-path="url(#p6343eaa6e8)" d="M 55.099967 164.1375
  1819. L 55.099967 161.3025
  1820. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1821. <path clip-path="url(#p6343eaa6e8)" d="M 56.666506 164.1375
  1822. L 56.666506 161.3025
  1823. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1824. <path clip-path="url(#p6343eaa6e8)" d="M 57.690586 164.1375
  1825. L 57.690586 161.3025
  1826. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1827. <path clip-path="url(#p6343eaa6e8)" d="M 127.64238 164.1375
  1828. L 127.64238 161.3025
  1829. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1830. <path clip-path="url(#p6343eaa6e8)" d="M 243.733561 164.1375
  1831. L 243.733561 161.3025
  1832. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1833. <path clip-path="url(#p6343eaa6e8)" d="M 274.466114 164.1375
  1834. L 274.466114 161.3025
  1835. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1836. <path clip-path="url(#p6343eaa6e8)" d="M 305.487641 164.1375
  1837. L 305.487641 161.3025
  1838. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1839. <path clip-path="url(#p6343eaa6e8)" d="M 313.330475 164.1375
  1840. L 313.330475 161.3025
  1841. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1842. <path clip-path="url(#p6343eaa6e8)" d="M 379.606732 164.1375
  1843. L 379.606732 161.3025
  1844. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1845. <path clip-path="url(#p6343eaa6e8)" d="M 418.050307 164.1375
  1846. L 418.050307 161.3025
  1847. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1848. </g>
  1849. <g id="EventCollection_33">
  1850. <path clip-path="url(#p6343eaa6e8)" d="M 52.108841 166.9725
  1851. L 52.108841 164.1375
  1852. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1853. <path clip-path="url(#p6343eaa6e8)" d="M 52.46372 166.9725
  1854. L 52.46372 164.1375
  1855. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1856. <path clip-path="url(#p6343eaa6e8)" d="M 54.314163 166.9725
  1857. L 54.314163 164.1375
  1858. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1859. <path clip-path="url(#p6343eaa6e8)" d="M 54.866761 166.9725
  1860. L 54.866761 164.1375
  1861. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1862. <path clip-path="url(#p6343eaa6e8)" d="M 55.317964 166.9725
  1863. L 55.317964 164.1375
  1864. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1865. <path clip-path="url(#p6343eaa6e8)" d="M 56.747621 166.9725
  1866. L 56.747621 164.1375
  1867. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1868. <path clip-path="url(#p6343eaa6e8)" d="M 239.885654 166.9725
  1869. L 239.885654 164.1375
  1870. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1871. <path clip-path="url(#p6343eaa6e8)" d="M 243.267148 166.9725
  1872. L 243.267148 164.1375
  1873. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1874. <path clip-path="url(#p6343eaa6e8)" d="M 305.14797 166.9725
  1875. L 305.14797 164.1375
  1876. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1877. <path clip-path="url(#p6343eaa6e8)" d="M 417.142829 166.9725
  1878. L 417.142829 164.1375
  1879. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1880. <path clip-path="url(#p6343eaa6e8)" d="M 456.995783 166.9725
  1881. L 456.995783 164.1375
  1882. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1883. <path clip-path="url(#p6343eaa6e8)" d="M 497.28473 166.9725
  1884. L 497.28473 164.1375
  1885. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1886. <path clip-path="url(#p6343eaa6e8)" d="M 513.142768 166.9725
  1887. L 513.142768 164.1375
  1888. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1889. </g>
  1890. <g id="EventCollection_34">
  1891. <path clip-path="url(#p6343eaa6e8)" d="M 54.18235 169.8075
  1892. L 54.18235 166.9725
  1893. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1894. <path clip-path="url(#p6343eaa6e8)" d="M 55.04927 169.8075
  1895. L 55.04927 166.9725
  1896. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1897. <path clip-path="url(#p6343eaa6e8)" d="M 55.535962 169.8075
  1898. L 55.535962 166.9725
  1899. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1900. <path clip-path="url(#p6343eaa6e8)" d="M 56.7679 169.8075
  1901. L 56.7679 166.9725
  1902. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1903. <path clip-path="url(#p6343eaa6e8)" d="M 89.528336 169.8075
  1904. L 89.528336 166.9725
  1905. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1906. <path clip-path="url(#p6343eaa6e8)" d="M 157.22918 169.8075
  1907. L 157.22918 166.9725
  1908. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1909. <path clip-path="url(#p6343eaa6e8)" d="M 198.85146 169.8075
  1910. L 198.85146 166.9725
  1911. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1912. <path clip-path="url(#p6343eaa6e8)" d="M 243.120126 169.8075
  1913. L 243.120126 166.9725
  1914. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1915. <path clip-path="url(#p6343eaa6e8)" d="M 245.021266 169.8075
  1916. L 245.021266 166.9725
  1917. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1918. <path clip-path="url(#p6343eaa6e8)" d="M 247.246866 169.8075
  1919. L 247.246866 166.9725
  1920. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1921. <path clip-path="url(#p6343eaa6e8)" d="M 250.28869 169.8075
  1922. L 250.28869 166.9725
  1923. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1924. <path clip-path="url(#p6343eaa6e8)" d="M 307.003482 169.8075
  1925. L 307.003482 166.9725
  1926. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1927. <path clip-path="url(#p6343eaa6e8)" d="M 308.473697 169.8075
  1928. L 308.473697 166.9725
  1929. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1930. <path clip-path="url(#p6343eaa6e8)" d="M 369.223975 169.8075
  1931. L 369.223975 166.9725
  1932. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1933. <path clip-path="url(#p6343eaa6e8)" d="M 508.737194 169.8075
  1934. L 508.737194 166.9725
  1935. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1936. </g>
  1937. <g id="EventCollection_35">
  1938. <path clip-path="url(#p6343eaa6e8)" d="M 52.230514 172.6425
  1939. L 52.230514 169.8075
  1940. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1941. <path clip-path="url(#p6343eaa6e8)" d="M 54.618345 172.6425
  1942. L 54.618345 169.8075
  1943. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1944. <path clip-path="url(#p6343eaa6e8)" d="M 55.272337 172.6425
  1945. L 55.272337 169.8075
  1946. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1947. <path clip-path="url(#p6343eaa6e8)" d="M 56.387672 172.6425
  1948. L 56.387672 169.8075
  1949. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1950. <path clip-path="url(#p6343eaa6e8)" d="M 59.475123 172.6425
  1951. L 59.475123 169.8075
  1952. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1953. <path clip-path="url(#p6343eaa6e8)" d="M 86.456094 172.6425
  1954. L 86.456094 169.8075
  1955. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1956. <path clip-path="url(#p6343eaa6e8)" d="M 106.785612 172.6425
  1957. L 106.785612 169.8075
  1958. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1959. <path clip-path="url(#p6343eaa6e8)" d="M 184.74754 172.6425
  1960. L 184.74754 169.8075
  1961. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1962. <path clip-path="url(#p6343eaa6e8)" d="M 229.523177 172.6425
  1963. L 229.523177 169.8075
  1964. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1965. <path clip-path="url(#p6343eaa6e8)" d="M 240.154349 172.6425
  1966. L 240.154349 169.8075
  1967. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1968. <path clip-path="url(#p6343eaa6e8)" d="M 240.600483 172.6425
  1969. L 240.600483 169.8075
  1970. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1971. <path clip-path="url(#p6343eaa6e8)" d="M 242.724689 172.6425
  1972. L 242.724689 169.8075
  1973. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1974. <path clip-path="url(#p6343eaa6e8)" d="M 308.747461 172.6425
  1975. L 308.747461 169.8075
  1976. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1977. <path clip-path="url(#p6343eaa6e8)" d="M 465.563584 172.6425
  1978. L 465.563584 169.8075
  1979. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1980. <path clip-path="url(#p6343eaa6e8)" d="M 509.107283 172.6425
  1981. L 509.107283 169.8075
  1982. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1983. <path clip-path="url(#p6343eaa6e8)" d="M 520.85886 172.6425
  1984. L 520.85886 169.8075
  1985. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1986. <path clip-path="url(#p6343eaa6e8)" d="M 523.697895 172.6425
  1987. L 523.697895 169.8075
  1988. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1989. </g>
  1990. <g id="EventCollection_36">
  1991. <path clip-path="url(#p6343eaa6e8)" d="M 51.992238 175.4775
  1992. L 51.992238 172.6425
  1993. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1994. <path clip-path="url(#p6343eaa6e8)" d="M 55.064479 175.4775
  1995. L 55.064479 172.6425
  1996. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1997. <path clip-path="url(#p6343eaa6e8)" d="M 56.514415 175.4775
  1998. L 56.514415 172.6425
  1999. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2000. <path clip-path="url(#p6343eaa6e8)" d="M 87.495384 175.4775
  2001. L 87.495384 172.6425
  2002. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2003. <path clip-path="url(#p6343eaa6e8)" d="M 191.221554 175.4775
  2004. L 191.221554 172.6425
  2005. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2006. <path clip-path="url(#p6343eaa6e8)" d="M 231.302643 175.4775
  2007. L 231.302643 172.6425
  2008. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2009. <path clip-path="url(#p6343eaa6e8)" d="M 239.708215 175.4775
  2010. L 239.708215 172.6425
  2011. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2012. <path clip-path="url(#p6343eaa6e8)" d="M 240.103652 175.4775
  2013. L 240.103652 172.6425
  2014. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2015. <path clip-path="url(#p6343eaa6e8)" d="M 243.069429 175.4775
  2016. L 243.069429 172.6425
  2017. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2018. <path clip-path="url(#p6343eaa6e8)" d="M 244.615689 175.4775
  2019. L 244.615689 172.6425
  2020. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2021. <path clip-path="url(#p6343eaa6e8)" d="M 307.845054 175.4775
  2022. L 307.845054 172.6425
  2023. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2024. <path clip-path="url(#p6343eaa6e8)" d="M 313.122617 175.4775
  2025. L 313.122617 172.6425
  2026. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2027. <path clip-path="url(#p6343eaa6e8)" d="M 496.691575 175.4775
  2028. L 496.691575 172.6425
  2029. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2030. <path clip-path="url(#p6343eaa6e8)" d="M 506.197272 175.4775
  2031. L 506.197272 172.6425
  2032. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2033. <path clip-path="url(#p6343eaa6e8)" d="M 520.69156 175.4775
  2034. L 520.69156 172.6425
  2035. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2036. </g>
  2037. <g id="EventCollection_37">
  2038. <path clip-path="url(#p6343eaa6e8)" d="M 51.931401 178.3125
  2039. L 51.931401 175.4775
  2040. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2041. <path clip-path="url(#p6343eaa6e8)" d="M 52.529627 178.3125
  2042. L 52.529627 175.4775
  2043. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2044. <path clip-path="url(#p6343eaa6e8)" d="M 54.136723 178.3125
  2045. L 54.136723 175.4775
  2046. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2047. <path clip-path="url(#p6343eaa6e8)" d="M 54.638624 178.3125
  2048. L 54.638624 175.4775
  2049. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2050. <path clip-path="url(#p6343eaa6e8)" d="M 55.419359 178.3125
  2051. L 55.419359 175.4775
  2052. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2053. <path clip-path="url(#p6343eaa6e8)" d="M 58.734946 178.3125
  2054. L 58.734946 175.4775
  2055. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2056. <path clip-path="url(#p6343eaa6e8)" d="M 70.603126 178.3125
  2057. L 70.603126 175.4775
  2058. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2059. <path clip-path="url(#p6343eaa6e8)" d="M 240.022536 178.3125
  2060. L 240.022536 175.4775
  2061. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2062. <path clip-path="url(#p6343eaa6e8)" d="M 242.663853 178.3125
  2063. L 242.663853 175.4775
  2064. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2065. <path clip-path="url(#p6343eaa6e8)" d="M 243.287427 178.3125
  2066. L 243.287427 175.4775
  2067. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2068. <path clip-path="url(#p6343eaa6e8)" d="M 244.407832 178.3125
  2069. L 244.407832 175.4775
  2070. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2071. <path clip-path="url(#p6343eaa6e8)" d="M 299.875477 178.3125
  2072. L 299.875477 175.4775
  2073. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2074. <path clip-path="url(#p6343eaa6e8)" d="M 304.30133 178.3125
  2075. L 304.30133 175.4775
  2076. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2077. <path clip-path="url(#p6343eaa6e8)" d="M 310.019957 178.3125
  2078. L 310.019957 175.4775
  2079. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2080. <path clip-path="url(#p6343eaa6e8)" d="M 385.254383 178.3125
  2081. L 385.254383 175.4775
  2082. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2083. <path clip-path="url(#p6343eaa6e8)" d="M 495.966607 178.3125
  2084. L 495.966607 175.4775
  2085. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2086. <path clip-path="url(#p6343eaa6e8)" d="M 522.471026 178.3125
  2087. L 522.471026 175.4775
  2088. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2089. </g>
  2090. <g id="EventCollection_38">
  2091. <path clip-path="url(#p6343eaa6e8)" d="M 52.458651 181.1475
  2092. L 52.458651 178.3125
  2093. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2094. <path clip-path="url(#p6343eaa6e8)" d="M 54.136723 181.1475
  2095. L 54.136723 178.3125
  2096. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2097. <path clip-path="url(#p6343eaa6e8)" d="M 54.669042 181.1475
  2098. L 54.669042 178.3125
  2099. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2100. <path clip-path="url(#p6343eaa6e8)" d="M 55.206431 181.1475
  2101. L 55.206431 178.3125
  2102. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2103. <path clip-path="url(#p6343eaa6e8)" d="M 55.73368 181.1475
  2104. L 55.73368 178.3125
  2105. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2106. <path clip-path="url(#p6343eaa6e8)" d="M 243.180963 181.1475
  2107. L 243.180963 178.3125
  2108. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2109. <path clip-path="url(#p6343eaa6e8)" d="M 306.729718 181.1475
  2110. L 306.729718 178.3125
  2111. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2112. </g>
  2113. <g id="EventCollection_39">
  2114. <path clip-path="url(#p6343eaa6e8)" d="M 54.486533 183.9825
  2115. L 54.486533 181.1475
  2116. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2117. <path clip-path="url(#p6343eaa6e8)" d="M 55.059409 183.9825
  2118. L 55.059409 181.1475
  2119. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2120. <path clip-path="url(#p6343eaa6e8)" d="M 55.617077 183.9825
  2121. L 55.617077 181.1475
  2122. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2123. <path clip-path="url(#p6343eaa6e8)" d="M 57.406683 183.9825
  2124. L 57.406683 181.1475
  2125. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2126. <path clip-path="url(#p6343eaa6e8)" d="M 239.9617 183.9825
  2127. L 239.9617 181.1475
  2128. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2129. <path clip-path="url(#p6343eaa6e8)" d="M 243.596679 183.9825
  2130. L 243.596679 181.1475
  2131. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2132. <path clip-path="url(#p6343eaa6e8)" d="M 244.641038 183.9825
  2133. L 244.641038 181.1475
  2134. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2135. <path clip-path="url(#p6343eaa6e8)" d="M 245.63977 183.9825
  2136. L 245.63977 181.1475
  2137. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2138. <path clip-path="url(#p6343eaa6e8)" d="M 307.368501 183.9825
  2139. L 307.368501 181.1475
  2140. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2141. <path clip-path="url(#p6343eaa6e8)" d="M 349.852631 183.9825
  2142. L 349.852631 181.1475
  2143. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2144. <path clip-path="url(#p6343eaa6e8)" d="M 493.943795 183.9825
  2145. L 493.943795 181.1475
  2146. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2147. </g>
  2148. <g id="EventCollection_40">
  2149. <path clip-path="url(#p6343eaa6e8)" d="M 54.430766 186.8175
  2150. L 54.430766 183.9825
  2151. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2152. <path clip-path="url(#p6343eaa6e8)" d="M 55.57145 186.8175
  2153. L 55.57145 183.9825
  2154. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2155. <path clip-path="url(#p6343eaa6e8)" d="M 58.136721 186.8175
  2156. L 58.136721 183.9825
  2157. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2158. <path clip-path="url(#p6343eaa6e8)" d="M 79.216555 186.8175
  2159. L 79.216555 183.9825
  2160. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2161. <path clip-path="url(#p6343eaa6e8)" d="M 224.48896 186.8175
  2162. L 224.48896 183.9825
  2163. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2164. <path clip-path="url(#p6343eaa6e8)" d="M 239.591612 186.8175
  2165. L 239.591612 183.9825
  2166. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2167. <path clip-path="url(#p6343eaa6e8)" d="M 240.554856 186.8175
  2168. L 240.554856 183.9825
  2169. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2170. <path clip-path="url(#p6343eaa6e8)" d="M 243.327984 186.8175
  2171. L 243.327984 183.9825
  2172. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2173. <path clip-path="url(#p6343eaa6e8)" d="M 245.142939 186.8175
  2174. L 245.142939 183.9825
  2175. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2176. <path clip-path="url(#p6343eaa6e8)" d="M 246.526968 186.8175
  2177. L 246.526968 183.9825
  2178. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2179. <path clip-path="url(#p6343eaa6e8)" d="M 480.77777 186.8175
  2180. L 480.77777 183.9825
  2181. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2182. <path clip-path="url(#p6343eaa6e8)" d="M 493.832261 186.8175
  2183. L 493.832261 183.9825
  2184. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2185. </g>
  2186. <g id="EventCollection_41">
  2187. <path clip-path="url(#p6343eaa6e8)" d="M 52.093632 189.6525
  2188. L 52.093632 186.8175
  2189. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2190. <path clip-path="url(#p6343eaa6e8)" d="M 54.385139 189.6525
  2191. L 54.385139 186.8175
  2192. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2193. <path clip-path="url(#p6343eaa6e8)" d="M 54.988434 189.6525
  2194. L 54.988434 186.8175
  2195. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2196. <path clip-path="url(#p6343eaa6e8)" d="M 55.672844 189.6525
  2197. L 55.672844 186.8175
  2198. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2199. <path clip-path="url(#p6343eaa6e8)" d="M 179.845135 189.6525
  2200. L 179.845135 186.8175
  2201. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2202. <path clip-path="url(#p6343eaa6e8)" d="M 239.170826 189.6525
  2203. L 239.170826 186.8175
  2204. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2205. <path clip-path="url(#p6343eaa6e8)" d="M 242.476274 189.6525
  2206. L 242.476274 186.8175
  2207. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2208. <path clip-path="url(#p6343eaa6e8)" d="M 243.642306 189.6525
  2209. L 243.642306 186.8175
  2210. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2211. <path clip-path="url(#p6343eaa6e8)" d="M 244.924941 189.6525
  2212. L 244.924941 186.8175
  2213. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2214. <path clip-path="url(#p6343eaa6e8)" d="M 269.03646 189.6525
  2215. L 269.03646 186.8175
  2216. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2217. <path clip-path="url(#p6343eaa6e8)" d="M 304.722115 189.6525
  2218. L 304.722115 186.8175
  2219. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2220. <path clip-path="url(#p6343eaa6e8)" d="M 305.142901 189.6525
  2221. L 305.142901 186.8175
  2222. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2223. <path clip-path="url(#p6343eaa6e8)" d="M 308.544673 189.6525
  2224. L 308.544673 186.8175
  2225. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2226. <path clip-path="url(#p6343eaa6e8)" d="M 310.694228 189.6525
  2227. L 310.694228 186.8175
  2228. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2229. <path clip-path="url(#p6343eaa6e8)" d="M 490.729601 189.6525
  2230. L 490.729601 186.8175
  2231. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2232. <path clip-path="url(#p6343eaa6e8)" d="M 497.746073 189.6525
  2233. L 497.746073 186.8175
  2234. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2235. </g>
  2236. <g id="EventCollection_42">
  2237. <path clip-path="url(#p6343eaa6e8)" d="M 52.494139 192.4875
  2238. L 52.494139 189.6525
  2239. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2240. <path clip-path="url(#p6343eaa6e8)" d="M 55.652565 192.4875
  2241. L 55.652565 189.6525
  2242. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2243. <path clip-path="url(#p6343eaa6e8)" d="M 56.382603 192.4875
  2244. L 56.382603 189.6525
  2245. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2246. <path clip-path="url(#p6343eaa6e8)" d="M 57.310359 192.4875
  2247. L 57.310359 189.6525
  2248. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2249. <path clip-path="url(#p6343eaa6e8)" d="M 239.535845 192.4875
  2250. L 239.535845 189.6525
  2251. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2252. <path clip-path="url(#p6343eaa6e8)" d="M 240.423043 192.4875
  2253. L 240.423043 189.6525
  2254. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2255. <path clip-path="url(#p6343eaa6e8)" d="M 243.429378 192.4875
  2256. L 243.429378 189.6525
  2257. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2258. <path clip-path="url(#p6343eaa6e8)" d="M 244.813408 192.4875
  2259. L 244.813408 189.6525
  2260. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2261. <path clip-path="url(#p6343eaa6e8)" d="M 275.779168 192.4875
  2262. L 275.779168 189.6525
  2263. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2264. <path clip-path="url(#p6343eaa6e8)" d="M 313.771539 192.4875
  2265. L 313.771539 189.6525
  2266. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2267. <path clip-path="url(#p6343eaa6e8)" d="M 493.147851 192.4875
  2268. L 493.147851 189.6525
  2269. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2270. </g>
  2271. <g id="EventCollection_43">
  2272. <path clip-path="url(#p6343eaa6e8)" d="M 52.058144 195.3225
  2273. L 52.058144 192.4875
  2274. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2275. <path clip-path="url(#p6343eaa6e8)" d="M 54.167141 195.3225
  2276. L 54.167141 192.4875
  2277. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2278. <path clip-path="url(#p6343eaa6e8)" d="M 190.146776 195.3225
  2279. L 190.146776 192.4875
  2280. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2281. <path clip-path="url(#p6343eaa6e8)" d="M 240.235464 195.3225
  2282. L 240.235464 192.4875
  2283. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2284. <path clip-path="url(#p6343eaa6e8)" d="M 242.790596 195.3225
  2285. L 242.790596 192.4875
  2286. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2287. <path clip-path="url(#p6343eaa6e8)" d="M 244.220252 195.3225
  2288. L 244.220252 192.4875
  2289. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2290. <path clip-path="url(#p6343eaa6e8)" d="M 279.510471 195.3225
  2291. L 279.510471 192.4875
  2292. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2293. <path clip-path="url(#p6343eaa6e8)" d="M 308.189794 195.3225
  2294. L 308.189794 192.4875
  2295. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2296. <path clip-path="url(#p6343eaa6e8)" d="M 479.170673 195.3225
  2297. L 479.170673 192.4875
  2298. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2299. <path clip-path="url(#p6343eaa6e8)" d="M 483.033789 195.3225
  2300. L 483.033789 192.4875
  2301. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2302. <path clip-path="url(#p6343eaa6e8)" d="M 494.678902 195.3225
  2303. L 494.678902 192.4875
  2304. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2305. <path clip-path="url(#p6343eaa6e8)" d="M 513.036305 195.3225
  2306. L 513.036305 192.4875
  2307. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2308. </g>
  2309. <g id="EventCollection_44">
  2310. <path clip-path="url(#p6343eaa6e8)" d="M 52.037865 198.1575
  2311. L 52.037865 195.3225
  2312. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2313. <path clip-path="url(#p6343eaa6e8)" d="M 54.202629 198.1575
  2314. L 54.202629 195.3225
  2315. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2316. <path clip-path="url(#p6343eaa6e8)" d="M 54.810994 198.1575
  2317. L 54.810994 195.3225
  2318. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2319. <path clip-path="url(#p6343eaa6e8)" d="M 55.404149 198.1575
  2320. L 55.404149 195.3225
  2321. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2322. <path clip-path="url(#p6343eaa6e8)" d="M 56.519485 198.1575
  2323. L 56.519485 195.3225
  2324. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2325. <path clip-path="url(#p6343eaa6e8)" d="M 57.350916 198.1575
  2326. L 57.350916 195.3225
  2327. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2328. <path clip-path="url(#p6343eaa6e8)" d="M 125.05176 198.1575
  2329. L 125.05176 195.3225
  2330. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2331. <path clip-path="url(#p6343eaa6e8)" d="M 239.175896 198.1575
  2332. L 239.175896 195.3225
  2333. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2334. <path clip-path="url(#p6343eaa6e8)" d="M 243.196172 198.1575
  2335. L 243.196172 195.3225
  2336. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2337. <path clip-path="url(#p6343eaa6e8)" d="M 243.855234 198.1575
  2338. L 243.855234 195.3225
  2339. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2340. <path clip-path="url(#p6343eaa6e8)" d="M 244.843826 198.1575
  2341. L 244.843826 195.3225
  2342. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2343. <path clip-path="url(#p6343eaa6e8)" d="M 292.859005 198.1575
  2344. L 292.859005 195.3225
  2345. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2346. <path clip-path="url(#p6343eaa6e8)" d="M 308.260769 198.1575
  2347. L 308.260769 195.3225
  2348. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2349. <path clip-path="url(#p6343eaa6e8)" d="M 488.564837 198.1575
  2350. L 488.564837 195.3225
  2351. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2352. <path clip-path="url(#p6343eaa6e8)" d="M 493.593985 198.1575
  2353. L 493.593985 195.3225
  2354. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2355. <path clip-path="url(#p6343eaa6e8)" d="M 501.401331 198.1575
  2356. L 501.401331 195.3225
  2357. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2358. <path clip-path="url(#p6343eaa6e8)" d="M 514.810701 198.1575
  2359. L 514.810701 195.3225
  2360. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2361. <path clip-path="url(#p6343eaa6e8)" d="M 515.809433 198.1575
  2362. L 515.809433 195.3225
  2363. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2364. </g>
  2365. <g id="EventCollection_45">
  2366. <path clip-path="url(#p6343eaa6e8)" d="M 52.225444 200.9925
  2367. L 52.225444 198.1575
  2368. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2369. <path clip-path="url(#p6343eaa6e8)" d="M 54.734948 200.9925
  2370. L 54.734948 198.1575
  2371. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2372. <path clip-path="url(#p6343eaa6e8)" d="M 55.56131 200.9925
  2373. L 55.56131 198.1575
  2374. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2375. <path clip-path="url(#p6343eaa6e8)" d="M 57.533426 200.9925
  2376. L 57.533426 198.1575
  2377. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2378. <path clip-path="url(#p6343eaa6e8)" d="M 60.783107 200.9925
  2379. L 60.783107 198.1575
  2380. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2381. <path clip-path="url(#p6343eaa6e8)" d="M 132.159487 200.9925
  2382. L 132.159487 198.1575
  2383. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2384. <path clip-path="url(#p6343eaa6e8)" d="M 239.763981 200.9925
  2385. L 239.763981 198.1575
  2386. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2387. <path clip-path="url(#p6343eaa6e8)" d="M 243.809606 200.9925
  2388. L 243.809606 198.1575
  2389. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2390. <path clip-path="url(#p6343eaa6e8)" d="M 305.472431 200.9925
  2391. L 305.472431 198.1575
  2392. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2393. <path clip-path="url(#p6343eaa6e8)" d="M 309.239222 200.9925
  2394. L 309.239222 198.1575
  2395. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2396. <path clip-path="url(#p6343eaa6e8)" d="M 491.043923 200.9925
  2397. L 491.043923 198.1575
  2398. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2399. <path clip-path="url(#p6343eaa6e8)" d="M 493.948864 200.9925
  2400. L 493.948864 198.1575
  2401. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2402. </g>
  2403. <g id="EventCollection_46">
  2404. <path clip-path="url(#p6343eaa6e8)" d="M 55.307825 203.8275
  2405. L 55.307825 200.9925
  2406. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2407. <path clip-path="url(#p6343eaa6e8)" d="M 239.246872 203.8275
  2408. L 239.246872 200.9925
  2409. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2410. <path clip-path="url(#p6343eaa6e8)" d="M 240.047885 203.8275
  2411. L 240.047885 200.9925
  2412. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2413. <path clip-path="url(#p6343eaa6e8)" d="M 240.641041 203.8275
  2414. L 240.641041 200.9925
  2415. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2416. <path clip-path="url(#p6343eaa6e8)" d="M 243.353333 203.8275
  2417. L 243.353333 200.9925
  2418. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2419. <path clip-path="url(#p6343eaa6e8)" d="M 244.788059 203.8275
  2420. L 244.788059 200.9925
  2421. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2422. <path clip-path="url(#p6343eaa6e8)" d="M 245.969301 203.8275
  2423. L 245.969301 200.9925
  2424. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2425. <path clip-path="url(#p6343eaa6e8)" d="M 294.577635 203.8275
  2426. L 294.577635 200.9925
  2427. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2428. <path clip-path="url(#p6343eaa6e8)" d="M 307.708171 203.8275
  2429. L 307.708171 200.9925
  2430. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2431. <path clip-path="url(#p6343eaa6e8)" d="M 309.28485 203.8275
  2432. L 309.28485 200.9925
  2433. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2434. <path clip-path="url(#p6343eaa6e8)" d="M 341.512966 203.8275
  2435. L 341.512966 200.9925
  2436. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2437. <path clip-path="url(#p6343eaa6e8)" d="M 494.151652 203.8275
  2438. L 494.151652 200.9925
  2439. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2440. <path clip-path="url(#p6343eaa6e8)" d="M 517.806897 203.8275
  2441. L 517.806897 200.9925
  2442. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2443. </g>
  2444. <g id="EventCollection_47">
  2445. <path clip-path="url(#p6343eaa6e8)" d="M 54.121514 206.6625
  2446. L 54.121514 203.8275
  2447. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2448. <path clip-path="url(#p6343eaa6e8)" d="M 55.140525 206.6625
  2449. L 55.140525 203.8275
  2450. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2451. <path clip-path="url(#p6343eaa6e8)" d="M 79.759014 206.6625
  2452. L 79.759014 203.8275
  2453. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2454. <path clip-path="url(#p6343eaa6e8)" d="M 179.622068 206.6625
  2455. L 179.622068 203.8275
  2456. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2457. <path clip-path="url(#p6343eaa6e8)" d="M 235.83496 206.6625
  2458. L 235.83496 203.8275
  2459. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2460. <path clip-path="url(#p6343eaa6e8)" d="M 243.540912 206.6625
  2461. L 243.540912 203.8275
  2462. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2463. <path clip-path="url(#p6343eaa6e8)" d="M 246.248135 206.6625
  2464. L 246.248135 203.8275
  2465. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2466. <path clip-path="url(#p6343eaa6e8)" d="M 287.348235 206.6625
  2467. L 287.348235 203.8275
  2468. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2469. <path clip-path="url(#p6343eaa6e8)" d="M 291.109956 206.6625
  2470. L 291.109956 203.8275
  2471. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2472. <path clip-path="url(#p6343eaa6e8)" d="M 491.119969 206.6625
  2473. L 491.119969 203.8275
  2474. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2475. <path clip-path="url(#p6343eaa6e8)" d="M 493.735937 206.6625
  2476. L 493.735937 203.8275
  2477. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2478. <path clip-path="url(#p6343eaa6e8)" d="M 498.283462 206.6625
  2479. L 498.283462 203.8275
  2480. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2481. <path clip-path="url(#p6343eaa6e8)" d="M 509.49765 206.6625
  2482. L 509.49765 203.8275
  2483. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2484. </g>
  2485. <g id="EventCollection_48">
  2486. <path clip-path="url(#p6343eaa6e8)" d="M 51.764101 209.4975
  2487. L 51.764101 206.6625
  2488. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2489. <path clip-path="url(#p6343eaa6e8)" d="M 54.248257 209.4975
  2490. L 54.248257 206.6625
  2491. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2492. <path clip-path="url(#p6343eaa6e8)" d="M 55.824935 209.4975
  2493. L 55.824935 206.6625
  2494. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2495. <path clip-path="url(#p6343eaa6e8)" d="M 56.625948 209.4975
  2496. L 56.625948 206.6625
  2497. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2498. <path clip-path="url(#p6343eaa6e8)" d="M 57.305289 209.4975
  2499. L 57.305289 206.6625
  2500. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2501. <path clip-path="url(#p6343eaa6e8)" d="M 98.816036 209.4975
  2502. L 98.816036 206.6625
  2503. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2504. <path clip-path="url(#p6343eaa6e8)" d="M 179.424349 209.4975
  2505. L 179.424349 206.6625
  2506. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2507. <path clip-path="url(#p6343eaa6e8)" d="M 243.535842 209.4975
  2508. L 243.535842 206.6625
  2509. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2510. <path clip-path="url(#p6343eaa6e8)" d="M 244.09351 209.4975
  2511. L 244.09351 206.6625
  2512. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2513. <path clip-path="url(#p6343eaa6e8)" d="M 255.987038 209.4975
  2514. L 255.987038 206.6625
  2515. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2516. <path clip-path="url(#p6343eaa6e8)" d="M 282.724664 209.4975
  2517. L 282.724664 206.6625
  2518. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2519. <path clip-path="url(#p6343eaa6e8)" d="M 303.216413 209.4975
  2520. L 303.216413 206.6625
  2521. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2522. <path clip-path="url(#p6343eaa6e8)" d="M 452.362072 209.4975
  2523. L 452.362072 206.6625
  2524. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2525. <path clip-path="url(#p6343eaa6e8)" d="M 490.830995 209.4975
  2526. L 490.830995 206.6625
  2527. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2528. <path clip-path="url(#p6343eaa6e8)" d="M 496.073071 209.4975
  2529. L 496.073071 206.6625
  2530. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2531. <path clip-path="url(#p6343eaa6e8)" d="M 497.847468 209.4975
  2532. L 497.847468 206.6625
  2533. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2534. </g>
  2535. <g id="EventCollection_49">
  2536. <path clip-path="url(#p6343eaa6e8)" d="M 54.785645 212.3325
  2537. L 54.785645 209.4975
  2538. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2539. <path clip-path="url(#p6343eaa6e8)" d="M 55.165873 212.3325
  2540. L 55.165873 209.4975
  2541. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2542. <path clip-path="url(#p6343eaa6e8)" d="M 55.556241 212.3325
  2543. L 55.556241 209.4975
  2544. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2545. <path clip-path="url(#p6343eaa6e8)" d="M 57.954211 212.3325
  2546. L 57.954211 209.4975
  2547. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2548. <path clip-path="url(#p6343eaa6e8)" d="M 89.898424 212.3325
  2549. L 89.898424 209.4975
  2550. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2551. <path clip-path="url(#p6343eaa6e8)" d="M 240.225325 212.3325
  2552. L 240.225325 209.4975
  2553. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2554. <path clip-path="url(#p6343eaa6e8)" d="M 243.804537 212.3325
  2555. L 243.804537 209.4975
  2556. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2557. <path clip-path="url(#p6343eaa6e8)" d="M 246.354598 212.3325
  2558. L 246.354598 209.4975
  2559. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2560. <path clip-path="url(#p6343eaa6e8)" d="M 311.333011 212.3325
  2561. L 311.333011 209.4975
  2562. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2563. <path clip-path="url(#p6343eaa6e8)" d="M 343.211317 212.3325
  2564. L 343.211317 209.4975
  2565. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2566. <path clip-path="url(#p6343eaa6e8)" d="M 431.991996 212.3325
  2567. L 431.991996 209.4975
  2568. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2569. </g>
  2570. <g id="EventCollection_50">
  2571. <path clip-path="url(#p6343eaa6e8)" d="M 51.921262 215.1675
  2572. L 51.921262 212.3325
  2573. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2574. <path clip-path="url(#p6343eaa6e8)" d="M 54.927597 215.1675
  2575. L 54.927597 212.3325
  2576. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2577. <path clip-path="url(#p6343eaa6e8)" d="M 55.91619 215.1675
  2578. L 55.91619 212.3325
  2579. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2580. <path clip-path="url(#p6343eaa6e8)" d="M 57.148128 215.1675
  2581. L 57.148128 212.3325
  2582. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2583. <path clip-path="url(#p6343eaa6e8)" d="M 116.742513 215.1675
  2584. L 116.742513 212.3325
  2585. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2586. <path clip-path="url(#p6343eaa6e8)" d="M 117.903476 215.1675
  2587. L 117.903476 212.3325
  2588. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2589. <path clip-path="url(#p6343eaa6e8)" d="M 150.608145 215.1675
  2590. L 150.608145 212.3325
  2591. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2592. <path clip-path="url(#p6343eaa6e8)" d="M 242.618226 215.1675
  2593. L 242.618226 212.3325
  2594. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2595. <path clip-path="url(#p6343eaa6e8)" d="M 244.270949 215.1675
  2596. L 244.270949 212.3325
  2597. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2598. <path clip-path="url(#p6343eaa6e8)" d="M 281.183474 215.1675
  2599. L 281.183474 212.3325
  2600. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2601. </g>
  2602. <g id="EventCollection_51">
  2603. <path clip-path="url(#p6343eaa6e8)" d="M 54.141793 218.0025
  2604. L 54.141793 215.1675
  2605. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2606. <path clip-path="url(#p6343eaa6e8)" d="M 54.917458 218.0025
  2607. L 54.917458 215.1675
  2608. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2609. <path clip-path="url(#p6343eaa6e8)" d="M 55.520753 218.0025
  2610. L 55.520753 215.1675
  2611. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2612. <path clip-path="url(#p6343eaa6e8)" d="M 239.454729 218.0025
  2613. L 239.454729 215.1675
  2614. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2615. <path clip-path="url(#p6343eaa6e8)" d="M 240.352067 218.0025
  2616. L 240.352067 215.1675
  2617. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2618. <path clip-path="url(#p6343eaa6e8)" d="M 243.257008 218.0025
  2619. L 243.257008 215.1675
  2620. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2621. <path clip-path="url(#p6343eaa6e8)" d="M 244.61062 218.0025
  2622. L 244.61062 215.1675
  2623. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2624. <path clip-path="url(#p6343eaa6e8)" d="M 303.0846 218.0025
  2625. L 303.0846 215.1675
  2626. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2627. <path clip-path="url(#p6343eaa6e8)" d="M 305.376107 218.0025
  2628. L 305.376107 215.1675
  2629. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2630. <path clip-path="url(#p6343eaa6e8)" d="M 500.265717 218.0025
  2631. L 500.265717 215.1675
  2632. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2633. <path clip-path="url(#p6343eaa6e8)" d="M 502.922243 218.0025
  2634. L 502.922243 215.1675
  2635. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2636. </g>
  2637. <g id="EventCollection_52">
  2638. <path clip-path="url(#p6343eaa6e8)" d="M 52.073353 220.8375
  2639. L 52.073353 218.0025
  2640. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2641. <path clip-path="url(#p6343eaa6e8)" d="M 54.040399 220.8375
  2642. L 54.040399 218.0025
  2643. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2644. <path clip-path="url(#p6343eaa6e8)" d="M 54.816064 220.8375
  2645. L 54.816064 218.0025
  2646. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2647. <path clip-path="url(#p6343eaa6e8)" d="M 55.181082 220.8375
  2648. L 55.181082 218.0025
  2649. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2650. <path clip-path="url(#p6343eaa6e8)" d="M 55.799586 220.8375
  2651. L 55.799586 218.0025
  2652. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2653. <path clip-path="url(#p6343eaa6e8)" d="M 59.738747 220.8375
  2654. L 59.738747 218.0025
  2655. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2656. <path clip-path="url(#p6343eaa6e8)" d="M 136.093578 220.8375
  2657. L 136.093578 218.0025
  2658. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2659. <path clip-path="url(#p6343eaa6e8)" d="M 202.101141 220.8375
  2660. L 202.101141 218.0025
  2661. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2662. <path clip-path="url(#p6343eaa6e8)" d="M 233.330526 220.8375
  2663. L 233.330526 218.0025
  2664. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2665. <path clip-path="url(#p6343eaa6e8)" d="M 244.514295 220.8375
  2666. L 244.514295 218.0025
  2667. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2668. <path clip-path="url(#p6343eaa6e8)" d="M 246.582735 220.8375
  2669. L 246.582735 218.0025
  2670. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2671. <path clip-path="url(#p6343eaa6e8)" d="M 258.146733 220.8375
  2672. L 258.146733 218.0025
  2673. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2674. <path clip-path="url(#p6343eaa6e8)" d="M 262.790583 220.8375
  2675. L 262.790583 218.0025
  2676. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2677. <path clip-path="url(#p6343eaa6e8)" d="M 307.302595 220.8375
  2678. L 307.302595 218.0025
  2679. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2680. <path clip-path="url(#p6343eaa6e8)" d="M 309.786751 220.8375
  2681. L 309.786751 218.0025
  2682. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2683. <path clip-path="url(#p6343eaa6e8)" d="M 312.990804 220.8375
  2684. L 312.990804 218.0025
  2685. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2686. <path clip-path="url(#p6343eaa6e8)" d="M 313.198662 220.8375
  2687. L 313.198662 218.0025
  2688. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2689. <path clip-path="url(#p6343eaa6e8)" d="M 544.858845 220.8375
  2690. L 544.858845 218.0025
  2691. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2692. </g>
  2693. <g id="EventCollection_53">
  2694. <path clip-path="url(#p6343eaa6e8)" d="M 51.799589 223.6725
  2695. L 51.799589 220.8375
  2696. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2697. <path clip-path="url(#p6343eaa6e8)" d="M 54.724809 223.6725
  2698. L 54.724809 220.8375
  2699. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2700. <path clip-path="url(#p6343eaa6e8)" d="M 55.165873 223.6725
  2701. L 55.165873 220.8375
  2702. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2703. <path clip-path="url(#p6343eaa6e8)" d="M 55.885771 223.6725
  2704. L 55.885771 220.8375
  2705. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2706. <path clip-path="url(#p6343eaa6e8)" d="M 57.067013 223.6725
  2707. L 57.067013 220.8375
  2708. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2709. <path clip-path="url(#p6343eaa6e8)" d="M 239.78933 223.6725
  2710. L 239.78933 220.8375
  2711. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2712. <path clip-path="url(#p6343eaa6e8)" d="M 243.023802 223.6725
  2713. L 243.023802 220.8375
  2714. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2715. <path clip-path="url(#p6343eaa6e8)" d="M 244.159416 223.6725
  2716. L 244.159416 220.8375
  2717. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2718. <path clip-path="url(#p6343eaa6e8)" d="M 258.922398 223.6725
  2719. L 258.922398 220.8375
  2720. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2721. <path clip-path="url(#p6343eaa6e8)" d="M 305.725917 223.6725
  2722. L 305.725917 220.8375
  2723. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2724. <path clip-path="url(#p6343eaa6e8)" d="M 307.647335 223.6725
  2725. L 307.647335 220.8375
  2726. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2727. <path clip-path="url(#p6343eaa6e8)" d="M 494.410207 223.6725
  2728. L 494.410207 220.8375
  2729. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2730. <path clip-path="url(#p6343eaa6e8)" d="M 520.945045 223.6725
  2731. L 520.945045 220.8375
  2732. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2733. <path clip-path="url(#p6343eaa6e8)" d="M 540.184576 223.6725
  2734. L 540.184576 220.8375
  2735. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2736. </g>
  2737. <g id="EventCollection_54">
  2738. <path clip-path="url(#p6343eaa6e8)" d="M 54.557509 226.5075
  2739. L 54.557509 223.6725
  2740. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2741. <path clip-path="url(#p6343eaa6e8)" d="M 55.91112 226.5075
  2742. L 55.91112 223.6725
  2743. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2744. <path clip-path="url(#p6343eaa6e8)" d="M 56.529624 226.5075
  2745. L 56.529624 223.6725
  2746. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2747. <path clip-path="url(#p6343eaa6e8)" d="M 243.414169 226.5075
  2748. L 243.414169 223.6725
  2749. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2750. <path clip-path="url(#p6343eaa6e8)" d="M 244.09858 226.5075
  2751. L 244.09858 223.6725
  2752. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2753. <path clip-path="url(#p6343eaa6e8)" d="M 281.59412 226.5075
  2754. L 281.59412 223.6725
  2755. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2756. <path clip-path="url(#p6343eaa6e8)" d="M 303.236691 226.5075
  2757. L 303.236691 223.6725
  2758. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2759. <path clip-path="url(#p6343eaa6e8)" d="M 363.799391 226.5075
  2760. L 363.799391 223.6725
  2761. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2762. <path clip-path="url(#p6343eaa6e8)" d="M 490.765089 226.5075
  2763. L 490.765089 223.6725
  2764. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2765. <path clip-path="url(#p6343eaa6e8)" d="M 496.95013 226.5075
  2766. L 496.95013 223.6725
  2767. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2768. <path clip-path="url(#p6343eaa6e8)" d="M 499.368379 226.5075
  2769. L 499.368379 223.6725
  2770. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2771. <path clip-path="url(#p6343eaa6e8)" d="M 520.833511 226.5075
  2772. L 520.833511 223.6725
  2773. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2774. </g>
  2775. <g id="EventCollection_55">
  2776. <path clip-path="url(#p6343eaa6e8)" d="M 52.088562 229.3425
  2777. L 52.088562 226.5075
  2778. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2779. <path clip-path="url(#p6343eaa6e8)" d="M 54.653833 229.3425
  2780. L 54.653833 226.5075
  2781. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2782. <path clip-path="url(#p6343eaa6e8)" d="M 56.118978 229.3425
  2783. L 56.118978 226.5075
  2784. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2785. <path clip-path="url(#p6343eaa6e8)" d="M 239.61189 229.3425
  2786. L 239.61189 226.5075
  2787. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2788. <path clip-path="url(#p6343eaa6e8)" d="M 243.510494 229.3425
  2789. L 243.510494 226.5075
  2790. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2791. <path clip-path="url(#p6343eaa6e8)" d="M 244.95536 229.3425
  2792. L 244.95536 226.5075
  2793. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2794. <path clip-path="url(#p6343eaa6e8)" d="M 246.49148 229.3425
  2795. L 246.49148 226.5075
  2796. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2797. <path clip-path="url(#p6343eaa6e8)" d="M 270.968017 229.3425
  2798. L 270.968017 226.5075
  2799. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2800. <path clip-path="url(#p6343eaa6e8)" d="M 310.243024 229.3425
  2801. L 310.243024 226.5075
  2802. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2803. <path clip-path="url(#p6343eaa6e8)" d="M 482.227706 229.3425
  2804. L 482.227706 226.5075
  2805. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2806. <path clip-path="url(#p6343eaa6e8)" d="M 494.288534 229.3425
  2807. L 494.288534 226.5075
  2808. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2809. <path clip-path="url(#p6343eaa6e8)" d="M 497.538216 229.3425
  2810. L 497.538216 226.5075
  2811. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2812. <path clip-path="url(#p6343eaa6e8)" d="M 497.791701 229.3425
  2813. L 497.791701 226.5075
  2814. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2815. <path clip-path="url(#p6343eaa6e8)" d="M 512.569892 229.3425
  2816. L 512.569892 226.5075
  2817. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2818. </g>
  2819. <g id="EventCollection_56">
  2820. <path clip-path="url(#p6343eaa6e8)" d="M 52.154468 232.1775
  2821. L 52.154468 229.3425
  2822. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2823. <path clip-path="url(#p6343eaa6e8)" d="M 54.101235 232.1775
  2824. L 54.101235 229.3425
  2825. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2826. <path clip-path="url(#p6343eaa6e8)" d="M 54.805924 232.1775
  2827. L 54.805924 229.3425
  2828. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2829. <path clip-path="url(#p6343eaa6e8)" d="M 56.585391 232.1775
  2830. L 56.585391 229.3425
  2831. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2832. <path clip-path="url(#p6343eaa6e8)" d="M 178.597987 232.1775
  2833. L 178.597987 229.3425
  2834. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2835. <path clip-path="url(#p6343eaa6e8)" d="M 203.099873 232.1775
  2836. L 203.099873 229.3425
  2837. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2838. <path clip-path="url(#p6343eaa6e8)" d="M 222.258289 232.1775
  2839. L 222.258289 229.3425
  2840. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2841. <path clip-path="url(#p6343eaa6e8)" d="M 240.519368 232.1775
  2842. L 240.519368 229.3425
  2843. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2844. <path clip-path="url(#p6343eaa6e8)" d="M 244.118858 232.1775
  2845. L 244.118858 229.3425
  2846. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2847. <path clip-path="url(#p6343eaa6e8)" d="M 295.5206 232.1775
  2848. L 295.5206 229.3425
  2849. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2850. <path clip-path="url(#p6343eaa6e8)" d="M 304.585233 232.1775
  2851. L 304.585233 229.3425
  2852. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2853. <path clip-path="url(#p6343eaa6e8)" d="M 403.419137 232.1775
  2854. L 403.419137 229.3425
  2855. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2856. <path clip-path="url(#p6343eaa6e8)" d="M 492.934923 232.1775
  2857. L 492.934923 229.3425
  2858. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2859. <path clip-path="url(#p6343eaa6e8)" d="M 494.202349 232.1775
  2860. L 494.202349 229.3425
  2861. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2862. <path clip-path="url(#p6343eaa6e8)" d="M 495.439358 232.1775
  2863. L 495.439358 229.3425
  2864. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2865. <path clip-path="url(#p6343eaa6e8)" d="M 496.230232 232.1775
  2866. L 496.230232 229.3425
  2867. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2868. <path clip-path="url(#p6343eaa6e8)" d="M 505.310074 232.1775
  2869. L 505.310074 229.3425
  2870. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2871. </g>
  2872. <g id="EventCollection_57">
  2873. <path clip-path="url(#p6343eaa6e8)" d="M 54.217838 235.0125
  2874. L 54.217838 232.1775
  2875. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2876. <path clip-path="url(#p6343eaa6e8)" d="M 76.565099 235.0125
  2877. L 76.565099 232.1775
  2878. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2879. <path clip-path="url(#p6343eaa6e8)" d="M 219.855249 235.0125
  2880. L 219.855249 232.1775
  2881. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2882. <path clip-path="url(#p6343eaa6e8)" d="M 240.012397 235.0125
  2883. L 240.012397 232.1775
  2884. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2885. <path clip-path="url(#p6343eaa6e8)" d="M 242.846362 235.0125
  2886. L 242.846362 232.1775
  2887. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2888. <path clip-path="url(#p6343eaa6e8)" d="M 244.965499 235.0125
  2889. L 244.965499 232.1775
  2890. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2891. <path clip-path="url(#p6343eaa6e8)" d="M 302.760139 235.0125
  2892. L 302.760139 232.1775
  2893. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2894. <path clip-path="url(#p6343eaa6e8)" d="M 308.07319 235.0125
  2895. L 308.07319 232.1775
  2896. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2897. <path clip-path="url(#p6343eaa6e8)" d="M 334.531982 235.0125
  2898. L 334.531982 232.1775
  2899. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2900. <path clip-path="url(#p6343eaa6e8)" d="M 385.948933 235.0125
  2901. L 385.948933 232.1775
  2902. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2903. <path clip-path="url(#p6343eaa6e8)" d="M 423.469822 235.0125
  2904. L 423.469822 232.1775
  2905. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2906. <path clip-path="url(#p6343eaa6e8)" d="M 507.241631 235.0125
  2907. L 507.241631 232.1775
  2908. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2909. <path clip-path="url(#p6343eaa6e8)" d="M 515.383578 235.0125
  2910. L 515.383578 232.1775
  2911. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2912. <path clip-path="url(#p6343eaa6e8)" d="M 522.374702 235.0125
  2913. L 522.374702 232.1775
  2914. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2915. </g>
  2916. <g id="EventCollection_58">
  2917. <path clip-path="url(#p6343eaa6e8)" d="M 51.916192 237.8475
  2918. L 51.916192 235.0125
  2919. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2920. <path clip-path="url(#p6343eaa6e8)" d="M 54.663972 237.8475
  2921. L 54.663972 235.0125
  2922. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2923. <path clip-path="url(#p6343eaa6e8)" d="M 55.520753 237.8475
  2924. L 55.520753 235.0125
  2925. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2926. <path clip-path="url(#p6343eaa6e8)" d="M 56.615809 237.8475
  2927. L 56.615809 235.0125
  2928. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2929. <path clip-path="url(#p6343eaa6e8)" d="M 82.035311 237.8475
  2930. L 82.035311 235.0125
  2931. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2932. <path clip-path="url(#p6343eaa6e8)" d="M 201.001015 237.8475
  2933. L 201.001015 235.0125
  2934. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2935. <path clip-path="url(#p6343eaa6e8)" d="M 240.058024 237.8475
  2936. L 240.058024 235.0125
  2937. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2938. <path clip-path="url(#p6343eaa6e8)" d="M 240.580204 237.8475
  2939. L 240.580204 235.0125
  2940. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2941. <path clip-path="url(#p6343eaa6e8)" d="M 243.647376 237.8475
  2942. L 243.647376 235.0125
  2943. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2944. <path clip-path="url(#p6343eaa6e8)" d="M 244.483877 237.8475
  2945. L 244.483877 235.0125
  2946. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2947. <path clip-path="url(#p6343eaa6e8)" d="M 246.445853 237.8475
  2948. L 246.445853 235.0125
  2949. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2950. <path clip-path="url(#p6343eaa6e8)" d="M 303.074461 237.8475
  2951. L 303.074461 235.0125
  2952. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2953. <path clip-path="url(#p6343eaa6e8)" d="M 304.661279 237.8475
  2954. L 304.661279 235.0125
  2955. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2956. <path clip-path="url(#p6343eaa6e8)" d="M 305.066855 237.8475
  2957. L 305.066855 235.0125
  2958. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2959. <path clip-path="url(#p6343eaa6e8)" d="M 306.01996 237.8475
  2960. L 306.01996 235.0125
  2961. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2962. <path clip-path="url(#p6343eaa6e8)" d="M 330.562403 237.8475
  2963. L 330.562403 235.0125
  2964. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2965. <path clip-path="url(#p6343eaa6e8)" d="M 375.708128 237.8475
  2966. L 375.708128 235.0125
  2967. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2968. <path clip-path="url(#p6343eaa6e8)" d="M 473.20363 237.8475
  2969. L 473.20363 235.0125
  2970. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2971. </g>
  2972. <g id="EventCollection_59">
  2973. <path clip-path="url(#p6343eaa6e8)" d="M 52.46372 240.6825
  2974. L 52.46372 237.8475
  2975. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2976. <path clip-path="url(#p6343eaa6e8)" d="M 54.491602 240.6825
  2977. L 54.491602 237.8475
  2978. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2979. <path clip-path="url(#p6343eaa6e8)" d="M 175.672767 240.6825
  2980. L 175.672767 237.8475
  2981. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2982. <path clip-path="url(#p6343eaa6e8)" d="M 239.480078 240.6825
  2983. L 239.480078 237.8475
  2984. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2985. <path clip-path="url(#p6343eaa6e8)" d="M 242.405298 240.6825
  2986. L 242.405298 237.8475
  2987. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2988. <path clip-path="url(#p6343eaa6e8)" d="M 245.148008 240.6825
  2989. L 245.148008 237.8475
  2990. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2991. <path clip-path="url(#p6343eaa6e8)" d="M 266.461049 240.6825
  2992. L 266.461049 237.8475
  2993. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2994. <path clip-path="url(#p6343eaa6e8)" d="M 494.800575 240.6825
  2995. L 494.800575 237.8475
  2996. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2997. <path clip-path="url(#p6343eaa6e8)" d="M 526.582557 240.6825
  2998. L 526.582557 237.8475
  2999. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3000. </g>
  3001. <g id="EventCollection_60">
  3002. <path clip-path="url(#p6343eaa6e8)" d="M 55.652565 243.5175
  3003. L 55.652565 240.6825
  3004. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3005. <path clip-path="url(#p6343eaa6e8)" d="M 57.269801 243.5175
  3006. L 57.269801 240.6825
  3007. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3008. <path clip-path="url(#p6343eaa6e8)" d="M 58.993501 243.5175
  3009. L 58.993501 240.6825
  3010. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3011. <path clip-path="url(#p6343eaa6e8)" d="M 212.240552 243.5175
  3012. L 212.240552 240.6825
  3013. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3014. <path clip-path="url(#p6343eaa6e8)" d="M 239.505427 243.5175
  3015. L 239.505427 240.6825
  3016. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3017. <path clip-path="url(#p6343eaa6e8)" d="M 240.073234 243.5175
  3018. L 240.073234 240.6825
  3019. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3020. <path clip-path="url(#p6343eaa6e8)" d="M 243.941419 243.5175
  3021. L 243.941419 240.6825
  3022. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3023. <path clip-path="url(#p6343eaa6e8)" d="M 244.590341 243.5175
  3024. L 244.590341 240.6825
  3025. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3026. <path clip-path="url(#p6343eaa6e8)" d="M 343.834891 243.5175
  3027. L 343.834891 240.6825
  3028. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3029. <path clip-path="url(#p6343eaa6e8)" d="M 464.691595 243.5175
  3030. L 464.691595 240.6825
  3031. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3032. </g>
  3033. <g id="EventCollection_61">
  3034. <path clip-path="url(#p6343eaa6e8)" d="M 55.130385 246.3525
  3035. L 55.130385 243.5175
  3036. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3037. <path clip-path="url(#p6343eaa6e8)" d="M 56.367393 246.3525
  3038. L 56.367393 243.5175
  3039. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3040. <path clip-path="url(#p6343eaa6e8)" d="M 231.459804 246.3525
  3041. L 231.459804 243.5175
  3042. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3043. <path clip-path="url(#p6343eaa6e8)" d="M 240.549786 246.3525
  3044. L 240.549786 243.5175
  3045. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3046. <path clip-path="url(#p6343eaa6e8)" d="M 243.069429 246.3525
  3047. L 243.069429 243.5175
  3048. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3049. <path clip-path="url(#p6343eaa6e8)" d="M 243.677794 246.3525
  3050. L 243.677794 243.5175
  3051. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3052. <path clip-path="url(#p6343eaa6e8)" d="M 308.493976 246.3525
  3053. L 308.493976 243.5175
  3054. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3055. <path clip-path="url(#p6343eaa6e8)" d="M 472.676381 246.3525
  3056. L 472.676381 243.5175
  3057. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3058. <path clip-path="url(#p6343eaa6e8)" d="M 512.929841 246.3525
  3059. L 512.929841 243.5175
  3060. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3061. </g>
  3062. <g id="EventCollection_62">
  3063. <path clip-path="url(#p6343eaa6e8)" d="M 54.116444 249.1875
  3064. L 54.116444 246.3525
  3065. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3066. <path clip-path="url(#p6343eaa6e8)" d="M 54.643694 249.1875
  3067. L 54.643694 246.3525
  3068. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3069. <path clip-path="url(#p6343eaa6e8)" d="M 55.343313 249.1875
  3070. L 55.343313 246.3525
  3071. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3072. <path clip-path="url(#p6343eaa6e8)" d="M 55.966887 249.1875
  3073. L 55.966887 246.3525
  3074. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3075. <path clip-path="url(#p6343eaa6e8)" d="M 56.519485 249.1875
  3076. L 56.519485 246.3525
  3077. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3078. <path clip-path="url(#p6343eaa6e8)" d="M 219.748785 249.1875
  3079. L 219.748785 246.3525
  3080. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3081. <path clip-path="url(#p6343eaa6e8)" d="M 242.334322 249.1875
  3082. L 242.334322 246.3525
  3083. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3084. <path clip-path="url(#p6343eaa6e8)" d="M 243.92114 249.1875
  3085. L 243.92114 246.3525
  3086. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3087. <path clip-path="url(#p6343eaa6e8)" d="M 306.455954 249.1875
  3088. L 306.455954 246.3525
  3089. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3090. <path clip-path="url(#p6343eaa6e8)" d="M 367.033863 249.1875
  3091. L 367.033863 246.3525
  3092. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3093. <path clip-path="url(#p6343eaa6e8)" d="M 454.040144 249.1875
  3094. L 454.040144 246.3525
  3095. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3096. <path clip-path="url(#p6343eaa6e8)" d="M 491.08955 249.1875
  3097. L 491.08955 246.3525
  3098. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3099. <path clip-path="url(#p6343eaa6e8)" d="M 493.092084 249.1875
  3100. L 493.092084 246.3525
  3101. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3102. <path clip-path="url(#p6343eaa6e8)" d="M 529.512847 249.1875
  3103. L 529.512847 246.3525
  3104. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3105. </g>
  3106. <g id="EventCollection_63">
  3107. <path clip-path="url(#p6343eaa6e8)" d="M 53.655101 252.0225
  3108. L 53.655101 249.1875
  3109. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3110. <path clip-path="url(#p6343eaa6e8)" d="M 54.349651 252.0225
  3111. L 54.349651 249.1875
  3112. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3113. <path clip-path="url(#p6343eaa6e8)" d="M 55.05434 252.0225
  3114. L 55.05434 249.1875
  3115. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3116. <path clip-path="url(#p6343eaa6e8)" d="M 56.174745 252.0225
  3117. L 56.174745 249.1875
  3118. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3119. <path clip-path="url(#p6343eaa6e8)" d="M 239.606821 252.0225
  3120. L 239.606821 249.1875
  3121. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3122. <path clip-path="url(#p6343eaa6e8)" d="M 240.199976 252.0225
  3123. L 240.199976 249.1875
  3124. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3125. <path clip-path="url(#p6343eaa6e8)" d="M 243.855234 252.0225
  3126. L 243.855234 249.1875
  3127. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3128. <path clip-path="url(#p6343eaa6e8)" d="M 244.77792 252.0225
  3129. L 244.77792 249.1875
  3130. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3131. <path clip-path="url(#p6343eaa6e8)" d="M 306.344421 252.0225
  3132. L 306.344421 249.1875
  3133. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3134. <path clip-path="url(#p6343eaa6e8)" d="M 308.499046 252.0225
  3135. L 308.499046 249.1875
  3136. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3137. <path clip-path="url(#p6343eaa6e8)" d="M 496.666226 252.0225
  3138. L 496.666226 249.1875
  3139. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3140. <path clip-path="url(#p6343eaa6e8)" d="M 498.567366 252.0225
  3141. L 498.567366 249.1875
  3142. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3143. <path clip-path="url(#p6343eaa6e8)" d="M 547.85504 252.0225
  3144. L 547.85504 249.1875
  3145. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3146. </g>
  3147. <g id="EventCollection_64">
  3148. <path clip-path="url(#p6343eaa6e8)" d="M 48.321771 254.8575
  3149. L 48.321771 252.0225
  3150. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3151. <path clip-path="url(#p6343eaa6e8)" d="M 52.017586 254.8575
  3152. L 52.017586 252.0225
  3153. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3154. <path clip-path="url(#p6343eaa6e8)" d="M 54.8769 254.8575
  3155. L 54.8769 252.0225
  3156. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3157. <path clip-path="url(#p6343eaa6e8)" d="M 58.14179 254.8575
  3158. L 58.14179 252.0225
  3159. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3160. <path clip-path="url(#p6343eaa6e8)" d="M 239.900864 254.8575
  3161. L 239.900864 252.0225
  3162. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3163. <path clip-path="url(#p6343eaa6e8)" d="M 240.412904 254.8575
  3164. L 240.412904 252.0225
  3165. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3166. <path clip-path="url(#p6343eaa6e8)" d="M 243.434448 254.8575
  3167. L 243.434448 252.0225
  3168. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3169. <path clip-path="url(#p6343eaa6e8)" d="M 244.473738 254.8575
  3170. L 244.473738 252.0225
  3171. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3172. <path clip-path="url(#p6343eaa6e8)" d="M 245.680328 254.8575
  3173. L 245.680328 252.0225
  3174. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3175. <path clip-path="url(#p6343eaa6e8)" d="M 304.995879 254.8575
  3176. L 304.995879 252.0225
  3177. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3178. <path clip-path="url(#p6343eaa6e8)" d="M 320.600432 254.8575
  3179. L 320.600432 252.0225
  3180. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3181. <path clip-path="url(#p6343eaa6e8)" d="M 500.843663 254.8575
  3182. L 500.843663 252.0225
  3183. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3184. <path clip-path="url(#p6343eaa6e8)" d="M 511.130095 254.8575
  3185. L 511.130095 252.0225
  3186. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3187. <path clip-path="url(#p6343eaa6e8)" d="M 535.500169 254.8575
  3188. L 535.500169 252.0225
  3189. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3190. </g>
  3191. <g id="EventCollection_65">
  3192. <path clip-path="url(#p6343eaa6e8)" d="M 54.821133 257.6925
  3193. L 54.821133 254.8575
  3194. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3195. <path clip-path="url(#p6343eaa6e8)" d="M 55.809726 257.6925
  3196. L 55.809726 254.8575
  3197. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3198. <path clip-path="url(#p6343eaa6e8)" d="M 239.743703 257.6925
  3199. L 239.743703 254.8575
  3200. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3201. <path clip-path="url(#p6343eaa6e8)" d="M 242.922408 257.6925
  3202. L 242.922408 254.8575
  3203. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3204. <path clip-path="url(#p6343eaa6e8)" d="M 243.987046 257.6925
  3205. L 243.987046 254.8575
  3206. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3207. <path clip-path="url(#p6343eaa6e8)" d="M 245.949022 257.6925
  3208. L 245.949022 254.8575
  3209. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3210. <path clip-path="url(#p6343eaa6e8)" d="M 304.696767 257.6925
  3211. L 304.696767 254.8575
  3212. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3213. <path clip-path="url(#p6343eaa6e8)" d="M 310.628322 257.6925
  3214. L 310.628322 254.8575
  3215. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3216. <path clip-path="url(#p6343eaa6e8)" d="M 373.568713 257.6925
  3217. L 373.568713 254.8575
  3218. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3219. <path clip-path="url(#p6343eaa6e8)" d="M 427.1048 257.6925
  3220. L 427.1048 254.8575
  3221. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3222. <path clip-path="url(#p6343eaa6e8)" d="M 492.945063 257.6925
  3223. L 492.945063 254.8575
  3224. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3225. <path clip-path="url(#p6343eaa6e8)" d="M 496.194744 257.6925
  3226. L 496.194744 254.8575
  3227. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3228. <path clip-path="url(#p6343eaa6e8)" d="M 548.691542 257.6925
  3229. L 548.691542 254.8575
  3230. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3231. </g>
  3232. <g id="EventCollection_66">
  3233. <path clip-path="url(#p6343eaa6e8)" d="M 51.77424 260.5275
  3234. L 51.77424 257.6925
  3235. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3236. <path clip-path="url(#p6343eaa6e8)" d="M 54.952946 260.5275
  3237. L 54.952946 257.6925
  3238. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3239. <path clip-path="url(#p6343eaa6e8)" d="M 55.647495 260.5275
  3240. L 55.647495 257.6925
  3241. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3242. <path clip-path="url(#p6343eaa6e8)" d="M 56.813527 260.5275
  3243. L 56.813527 257.6925
  3244. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3245. <path clip-path="url(#p6343eaa6e8)" d="M 58.227975 260.5275
  3246. L 58.227975 257.6925
  3247. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3248. <path clip-path="url(#p6343eaa6e8)" d="M 240.017467 260.5275
  3249. L 240.017467 257.6925
  3250. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3251. <path clip-path="url(#p6343eaa6e8)" d="M 242.851432 260.5275
  3252. L 242.851432 257.6925
  3253. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3254. <path clip-path="url(#p6343eaa6e8)" d="M 243.616957 260.5275
  3255. L 243.616957 257.6925
  3256. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3257. <path clip-path="url(#p6343eaa6e8)" d="M 261.107441 260.5275
  3258. L 261.107441 257.6925
  3259. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3260. <path clip-path="url(#p6343eaa6e8)" d="M 305.365968 260.5275
  3261. L 305.365968 257.6925
  3262. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3263. <path clip-path="url(#p6343eaa6e8)" d="M 306.390048 260.5275
  3264. L 306.390048 257.6925
  3265. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3266. <path clip-path="url(#p6343eaa6e8)" d="M 308.139096 260.5275
  3267. L 308.139096 257.6925
  3268. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3269. <path clip-path="url(#p6343eaa6e8)" d="M 447.327855 260.5275
  3270. L 447.327855 257.6925
  3271. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3272. <path clip-path="url(#p6343eaa6e8)" d="M 546.48622 260.5275
  3273. L 546.48622 257.6925
  3274. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3275. </g>
  3276. <g id="EventCollection_67">
  3277. <path clip-path="url(#p6343eaa6e8)" d="M 54.775506 263.3625
  3278. L 54.775506 260.5275
  3279. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3280. <path clip-path="url(#p6343eaa6e8)" d="M 55.38894 263.3625
  3281. L 55.38894 260.5275
  3282. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3283. <path clip-path="url(#p6343eaa6e8)" d="M 56.240651 263.3625
  3284. L 56.240651 260.5275
  3285. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3286. <path clip-path="url(#p6343eaa6e8)" d="M 57.928863 263.3625
  3287. L 57.928863 260.5275
  3288. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3289. <path clip-path="url(#p6343eaa6e8)" d="M 240.022536 263.3625
  3290. L 240.022536 260.5275
  3291. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3292. <path clip-path="url(#p6343eaa6e8)" d="M 243.591609 263.3625
  3293. L 243.591609 260.5275
  3294. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3295. <path clip-path="url(#p6343eaa6e8)" d="M 244.691735 263.3625
  3296. L 244.691735 260.5275
  3297. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3298. <path clip-path="url(#p6343eaa6e8)" d="M 263.449645 263.3625
  3299. L 263.449645 260.5275
  3300. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3301. <path clip-path="url(#p6343eaa6e8)" d="M 282.608061 263.3625
  3302. L 282.608061 260.5275
  3303. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3304. <path clip-path="url(#p6343eaa6e8)" d="M 305.087134 263.3625
  3305. L 305.087134 260.5275
  3306. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3307. <path clip-path="url(#p6343eaa6e8)" d="M 311.383708 263.3625
  3308. L 311.383708 260.5275
  3309. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3310. <path clip-path="url(#p6343eaa6e8)" d="M 434.354479 263.3625
  3311. L 434.354479 260.5275
  3312. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3313. <path clip-path="url(#p6343eaa6e8)" d="M 493.984352 263.3625
  3314. L 493.984352 260.5275
  3315. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3316. <path clip-path="url(#p6343eaa6e8)" d="M 502.369645 263.3625
  3317. L 502.369645 260.5275
  3318. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3319. </g>
  3320. <g id="EventCollection_68">
  3321. <path clip-path="url(#p6343eaa6e8)" d="M 52.200096 266.1975
  3322. L 52.200096 263.3625
  3323. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3324. <path clip-path="url(#p6343eaa6e8)" d="M 54.496672 266.1975
  3325. L 54.496672 263.3625
  3326. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3327. <path clip-path="url(#p6343eaa6e8)" d="M 55.039131 266.1975
  3328. L 55.039131 263.3625
  3329. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3330. <path clip-path="url(#p6343eaa6e8)" d="M 55.647495 266.1975
  3331. L 55.647495 263.3625
  3332. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3333. <path clip-path="url(#p6343eaa6e8)" d="M 56.473857 266.1975
  3334. L 56.473857 263.3625
  3335. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3336. <path clip-path="url(#p6343eaa6e8)" d="M 57.447241 266.1975
  3337. L 57.447241 263.3625
  3338. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3339. <path clip-path="url(#p6343eaa6e8)" d="M 59.00871 266.1975
  3340. L 59.00871 263.3625
  3341. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3342. <path clip-path="url(#p6343eaa6e8)" d="M 240.240534 266.1975
  3343. L 240.240534 263.3625
  3344. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3345. <path clip-path="url(#p6343eaa6e8)" d="M 243.505424 266.1975
  3346. L 243.505424 263.3625
  3347. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3348. <path clip-path="url(#p6343eaa6e8)" d="M 244.220252 266.1975
  3349. L 244.220252 263.3625
  3350. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3351. <path clip-path="url(#p6343eaa6e8)" d="M 246.739896 266.1975
  3352. L 246.739896 263.3625
  3353. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3354. <path clip-path="url(#p6343eaa6e8)" d="M 299.150509 266.1975
  3355. L 299.150509 263.3625
  3356. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3357. <path clip-path="url(#p6343eaa6e8)" d="M 371.013581 266.1975
  3358. L 371.013581 263.3625
  3359. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3360. <path clip-path="url(#p6343eaa6e8)" d="M 409.477435 266.1975
  3361. L 409.477435 263.3625
  3362. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3363. </g>
  3364. <g id="EventCollection_69">
  3365. <path clip-path="url(#p6343eaa6e8)" d="M 53.85282 269.0325
  3366. L 53.85282 266.1975
  3367. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3368. <path clip-path="url(#p6343eaa6e8)" d="M 54.207699 269.0325
  3369. L 54.207699 266.1975
  3370. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3371. <path clip-path="url(#p6343eaa6e8)" d="M 55.657635 269.0325
  3372. L 55.657635 266.1975
  3373. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3374. <path clip-path="url(#p6343eaa6e8)" d="M 57.416822 269.0325
  3375. L 57.416822 266.1975
  3376. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3377. <path clip-path="url(#p6343eaa6e8)" d="M 119.971916 269.0325
  3378. L 119.971916 266.1975
  3379. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3380. <path clip-path="url(#p6343eaa6e8)" d="M 161.629684 269.0325
  3381. L 161.629684 266.1975
  3382. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3383. <path clip-path="url(#p6343eaa6e8)" d="M 162.978226 269.0325
  3384. L 162.978226 266.1975
  3385. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3386. <path clip-path="url(#p6343eaa6e8)" d="M 240.230394 269.0325
  3387. L 240.230394 266.1975
  3388. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3389. <path clip-path="url(#p6343eaa6e8)" d="M 240.600483 269.0325
  3390. L 240.600483 266.1975
  3391. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3392. <path clip-path="url(#p6343eaa6e8)" d="M 242.947756 269.0325
  3393. L 242.947756 266.1975
  3394. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3395. <path clip-path="url(#p6343eaa6e8)" d="M 243.718352 269.0325
  3396. L 243.718352 266.1975
  3397. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3398. <path clip-path="url(#p6343eaa6e8)" d="M 305.046576 269.0325
  3399. L 305.046576 266.1975
  3400. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3401. <path clip-path="url(#p6343eaa6e8)" d="M 309.269641 269.0325
  3402. L 309.269641 266.1975
  3403. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3404. </g>
  3405. <g id="EventCollection_70">
  3406. <path clip-path="url(#p6343eaa6e8)" d="M 54.258396 271.8675
  3407. L 54.258396 269.0325
  3408. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3409. <path clip-path="url(#p6343eaa6e8)" d="M 55.454846 271.8675
  3410. L 55.454846 269.0325
  3411. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3412. <path clip-path="url(#p6343eaa6e8)" d="M 56.265999 271.8675
  3413. L 56.265999 269.0325
  3414. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3415. <path clip-path="url(#p6343eaa6e8)" d="M 216.159434 271.8675
  3416. L 216.159434 269.0325
  3417. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3418. <path clip-path="url(#p6343eaa6e8)" d="M 229.842568 271.8675
  3419. L 229.842568 269.0325
  3420. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3421. <path clip-path="url(#p6343eaa6e8)" d="M 239.698075 271.8675
  3422. L 239.698075 269.0325
  3423. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3424. <path clip-path="url(#p6343eaa6e8)" d="M 243.459797 271.8675
  3425. L 243.459797 269.0325
  3426. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3427. <path clip-path="url(#p6343eaa6e8)" d="M 244.61062 271.8675
  3428. L 244.61062 269.0325
  3429. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3430. <path clip-path="url(#p6343eaa6e8)" d="M 304.9756 271.8675
  3431. L 304.9756 269.0325
  3432. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3433. <path clip-path="url(#p6343eaa6e8)" d="M 308.306397 271.8675
  3434. L 308.306397 269.0325
  3435. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3436. <path clip-path="url(#p6343eaa6e8)" d="M 391.718257 271.8675
  3437. L 391.718257 269.0325
  3438. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3439. <path clip-path="url(#p6343eaa6e8)" d="M 473.396279 271.8675
  3440. L 473.396279 269.0325
  3441. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3442. <path clip-path="url(#p6343eaa6e8)" d="M 477.918456 271.8675
  3443. L 477.918456 269.0325
  3444. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3445. <path clip-path="url(#p6343eaa6e8)" d="M 490.420349 271.8675
  3446. L 490.420349 269.0325
  3447. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3448. <path clip-path="url(#p6343eaa6e8)" d="M 495.956468 271.8675
  3449. L 495.956468 269.0325
  3450. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3451. </g>
  3452. <g id="EventCollection_71">
  3453. <path clip-path="url(#p6343eaa6e8)" d="M 55.170943 274.7025
  3454. L 55.170943 271.8675
  3455. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3456. <path clip-path="url(#p6343eaa6e8)" d="M 56.874364 274.7025
  3457. L 56.874364 271.8675
  3458. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3459. <path clip-path="url(#p6343eaa6e8)" d="M 143.652509 274.7025
  3460. L 143.652509 271.8675
  3461. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3462. <path clip-path="url(#p6343eaa6e8)" d="M 193.781755 274.7025
  3463. L 193.781755 271.8675
  3464. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3465. <path clip-path="url(#p6343eaa6e8)" d="M 213.791881 274.7025
  3466. L 213.791881 271.8675
  3467. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3468. <path clip-path="url(#p6343eaa6e8)" d="M 239.763981 274.7025
  3469. L 239.763981 271.8675
  3470. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3471. <path clip-path="url(#p6343eaa6e8)" d="M 242.795665 274.7025
  3472. L 242.795665 271.8675
  3473. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3474. <path clip-path="url(#p6343eaa6e8)" d="M 243.358403 274.7025
  3475. L 243.358403 271.8675
  3476. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3477. <path clip-path="url(#p6343eaa6e8)" d="M 245.198706 274.7025
  3478. L 245.198706 271.8675
  3479. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3480. <path clip-path="url(#p6343eaa6e8)" d="M 489.401339 274.7025
  3481. L 489.401339 271.8675
  3482. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3483. <path clip-path="url(#p6343eaa6e8)" d="M 497.872816 274.7025
  3484. L 497.872816 271.8675
  3485. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3486. <path clip-path="url(#p6343eaa6e8)" d="M 503.109822 274.7025
  3487. L 503.109822 271.8675
  3488. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3489. <path clip-path="url(#p6343eaa6e8)" d="M 505.487513 274.7025
  3490. L 505.487513 271.8675
  3491. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3492. </g>
  3493. <g id="EventCollection_72">
  3494. <path clip-path="url(#p6343eaa6e8)" d="M 51.733683 277.5375
  3495. L 51.733683 274.7025
  3496. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3497. <path clip-path="url(#p6343eaa6e8)" d="M 54.902249 277.5375
  3498. L 54.902249 274.7025
  3499. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3500. <path clip-path="url(#p6343eaa6e8)" d="M 55.576519 277.5375
  3501. L 55.576519 274.7025
  3502. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3503. <path clip-path="url(#p6343eaa6e8)" d="M 239.753842 277.5375
  3504. L 239.753842 274.7025
  3505. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3506. <path clip-path="url(#p6343eaa6e8)" d="M 240.559925 277.5375
  3507. L 240.559925 274.7025
  3508. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3509. <path clip-path="url(#p6343eaa6e8)" d="M 242.461065 277.5375
  3510. L 242.461065 274.7025
  3511. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3512. <path clip-path="url(#p6343eaa6e8)" d="M 243.241799 277.5375
  3513. L 243.241799 274.7025
  3514. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3515. <path clip-path="url(#p6343eaa6e8)" d="M 244.007325 277.5375
  3516. L 244.007325 274.7025
  3517. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3518. <path clip-path="url(#p6343eaa6e8)" d="M 302.755069 277.5375
  3519. L 302.755069 274.7025
  3520. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3521. <path clip-path="url(#p6343eaa6e8)" d="M 306.461024 277.5375
  3522. L 306.461024 274.7025
  3523. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3524. <path clip-path="url(#p6343eaa6e8)" d="M 307.946448 277.5375
  3525. L 307.946448 274.7025
  3526. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3527. <path clip-path="url(#p6343eaa6e8)" d="M 392.311413 277.5375
  3528. L 392.311413 274.7025
  3529. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3530. <path clip-path="url(#p6343eaa6e8)" d="M 478.653563 277.5375
  3531. L 478.653563 274.7025
  3532. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3533. <path clip-path="url(#p6343eaa6e8)" d="M 490.491325 277.5375
  3534. L 490.491325 274.7025
  3535. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3536. <path clip-path="url(#p6343eaa6e8)" d="M 496.270789 277.5375
  3537. L 496.270789 274.7025
  3538. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3539. </g>
  3540. <g id="EventCollection_73">
  3541. <path clip-path="url(#p6343eaa6e8)" d="M 52.032795 280.3725
  3542. L 52.032795 277.5375
  3543. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3544. <path clip-path="url(#p6343eaa6e8)" d="M 54.18742 280.3725
  3545. L 54.18742 277.5375
  3546. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3547. <path clip-path="url(#p6343eaa6e8)" d="M 54.567648 280.3725
  3548. L 54.567648 277.5375
  3549. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3550. <path clip-path="url(#p6343eaa6e8)" d="M 55.495404 280.3725
  3551. L 55.495404 277.5375
  3552. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3553. <path clip-path="url(#p6343eaa6e8)" d="M 57.513147 280.3725
  3554. L 57.513147 277.5375
  3555. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3556. <path clip-path="url(#p6343eaa6e8)" d="M 211.398981 280.3725
  3557. L 211.398981 277.5375
  3558. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3559. <path clip-path="url(#p6343eaa6e8)" d="M 242.679062 280.3725
  3560. L 242.679062 277.5375
  3561. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3562. <path clip-path="url(#p6343eaa6e8)" d="M 243.216451 280.3725
  3563. L 243.216451 277.5375
  3564. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3565. <path clip-path="url(#p6343eaa6e8)" d="M 387.586448 280.3725
  3566. L 387.586448 277.5375
  3567. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3568. <path clip-path="url(#p6343eaa6e8)" d="M 429.203658 280.3725
  3569. L 429.203658 277.5375
  3570. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3571. <path clip-path="url(#p6343eaa6e8)" d="M 492.833529 280.3725
  3572. L 492.833529 277.5375
  3573. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3574. <path clip-path="url(#p6343eaa6e8)" d="M 539.43933 280.3725
  3575. L 539.43933 277.5375
  3576. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3577. </g>
  3578. <g id="EventCollection_74">
  3579. <path clip-path="url(#p6343eaa6e8)" d="M 51.404152 283.2075
  3580. L 51.404152 280.3725
  3581. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3582. <path clip-path="url(#p6343eaa6e8)" d="M 52.210235 283.2075
  3583. L 52.210235 280.3725
  3584. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3585. <path clip-path="url(#p6343eaa6e8)" d="M 55.145594 283.2075
  3586. L 55.145594 280.3725
  3587. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3588. <path clip-path="url(#p6343eaa6e8)" d="M 55.794517 283.2075
  3589. L 55.794517 280.3725
  3590. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3591. <path clip-path="url(#p6343eaa6e8)" d="M 56.265999 283.2075
  3592. L 56.265999 280.3725
  3593. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3594. <path clip-path="url(#p6343eaa6e8)" d="M 57.584123 283.2075
  3595. L 57.584123 280.3725
  3596. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3597. <path clip-path="url(#p6343eaa6e8)" d="M 118.623374 283.2075
  3598. L 118.623374 280.3725
  3599. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3600. <path clip-path="url(#p6343eaa6e8)" d="M 240.225325 283.2075
  3601. L 240.225325 280.3725
  3602. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3603. <path clip-path="url(#p6343eaa6e8)" d="M 243.089708 283.2075
  3604. L 243.089708 280.3725
  3605. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3606. <path clip-path="url(#p6343eaa6e8)" d="M 245.756373 283.2075
  3607. L 245.756373 280.3725
  3608. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3609. <path clip-path="url(#p6343eaa6e8)" d="M 293.720855 283.2075
  3610. L 293.720855 280.3725
  3611. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3612. <path clip-path="url(#p6343eaa6e8)" d="M 305.553547 283.2075
  3613. L 305.553547 280.3725
  3614. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3615. <path clip-path="url(#p6343eaa6e8)" d="M 307.028831 283.2075
  3616. L 307.028831 280.3725
  3617. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3618. <path clip-path="url(#p6343eaa6e8)" d="M 417.31013 283.2075
  3619. L 417.31013 280.3725
  3620. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3621. <path clip-path="url(#p6343eaa6e8)" d="M 496.874084 283.2075
  3622. L 496.874084 280.3725
  3623. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3624. <path clip-path="url(#p6343eaa6e8)" d="M 548.990654 283.2075
  3625. L 548.990654 280.3725
  3626. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3627. </g>
  3628. <g id="EventCollection_75">
  3629. <path clip-path="url(#p6343eaa6e8)" d="M 52.205165 286.0425
  3630. L 52.205165 283.2075
  3631. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3632. <path clip-path="url(#p6343eaa6e8)" d="M 53.614543 286.0425
  3633. L 53.614543 283.2075
  3634. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3635. <path clip-path="url(#p6343eaa6e8)" d="M 54.374999 286.0425
  3636. L 54.374999 283.2075
  3637. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3638. <path clip-path="url(#p6343eaa6e8)" d="M 57.46245 286.0425
  3639. L 57.46245 283.2075
  3640. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3641. <path clip-path="url(#p6343eaa6e8)" d="M 240.215185 286.0425
  3642. L 240.215185 283.2075
  3643. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3644. <path clip-path="url(#p6343eaa6e8)" d="M 243.23166 286.0425
  3645. L 243.23166 283.2075
  3646. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3647. <path clip-path="url(#p6343eaa6e8)" d="M 244.042813 286.0425
  3648. L 244.042813 283.2075
  3649. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3650. <path clip-path="url(#p6343eaa6e8)" d="M 306.592836 286.0425
  3651. L 306.592836 283.2075
  3652. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3653. <path clip-path="url(#p6343eaa6e8)" d="M 308.346954 286.0425
  3654. L 308.346954 283.2075
  3655. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3656. <path clip-path="url(#p6343eaa6e8)" d="M 340.630838 286.0425
  3657. L 340.630838 283.2075
  3658. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3659. <path clip-path="url(#p6343eaa6e8)" d="M 427.616841 286.0425
  3660. L 427.616841 283.2075
  3661. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3662. <path clip-path="url(#p6343eaa6e8)" d="M 495.109827 286.0425
  3663. L 495.109827 283.2075
  3664. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3665. <path clip-path="url(#p6343eaa6e8)" d="M 497.147848 286.0425
  3666. L 497.147848 283.2075
  3667. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3668. </g>
  3669. <g id="EventCollection_76">
  3670. <path clip-path="url(#p6343eaa6e8)" d="M 51.748892 288.8775
  3671. L 51.748892 286.0425
  3672. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3673. <path clip-path="url(#p6343eaa6e8)" d="M 52.362326 288.8775
  3674. L 52.362326 286.0425
  3675. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3676. <path clip-path="url(#p6343eaa6e8)" d="M 53.715938 288.8775
  3677. L 53.715938 286.0425
  3678. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3679. <path clip-path="url(#p6343eaa6e8)" d="M 55.018852 288.8775
  3680. L 55.018852 286.0425
  3681. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3682. <path clip-path="url(#p6343eaa6e8)" d="M 55.581589 288.8775
  3683. L 55.581589 286.0425
  3684. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3685. <path clip-path="url(#p6343eaa6e8)" d="M 81.330622 288.8775
  3686. L 81.330622 286.0425
  3687. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3688. <path clip-path="url(#p6343eaa6e8)" d="M 108.641124 288.8775
  3689. L 108.641124 286.0425
  3690. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3691. <path clip-path="url(#p6343eaa6e8)" d="M 227.987056 288.8775
  3692. L 227.987056 286.0425
  3693. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3694. <path clip-path="url(#p6343eaa6e8)" d="M 240.189837 288.8775
  3695. L 240.189837 286.0425
  3696. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3697. <path clip-path="url(#p6343eaa6e8)" d="M 242.668923 288.8775
  3698. L 242.668923 286.0425
  3699. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3700. <path clip-path="url(#p6343eaa6e8)" d="M 243.956628 288.8775
  3701. L 243.956628 286.0425
  3702. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3703. <path clip-path="url(#p6343eaa6e8)" d="M 244.575132 288.8775
  3704. L 244.575132 286.0425
  3705. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3706. <path clip-path="url(#p6343eaa6e8)" d="M 494.237837 288.8775
  3707. L 494.237837 286.0425
  3708. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3709. </g>
  3710. <g id="EventCollection_77">
  3711. <path clip-path="url(#p6343eaa6e8)" d="M 53.655101 291.7125
  3712. L 53.655101 288.8775
  3713. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3714. <path clip-path="url(#p6343eaa6e8)" d="M 103.845183 291.7125
  3715. L 103.845183 288.8775
  3716. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3717. <path clip-path="url(#p6343eaa6e8)" d="M 136.843895 291.7125
  3718. L 136.843895 288.8775
  3719. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3720. <path clip-path="url(#p6343eaa6e8)" d="M 200.463626 291.7125
  3721. L 200.463626 288.8775
  3722. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3723. <path clip-path="url(#p6343eaa6e8)" d="M 222.704423 291.7125
  3724. L 222.704423 288.8775
  3725. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3726. <path clip-path="url(#p6343eaa6e8)" d="M 239.763981 291.7125
  3727. L 239.763981 288.8775
  3728. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3729. <path clip-path="url(#p6343eaa6e8)" d="M 243.540912 291.7125
  3730. L 243.540912 288.8775
  3731. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3732. <path clip-path="url(#p6343eaa6e8)" d="M 245.041545 291.7125
  3733. L 245.041545 288.8775
  3734. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3735. <path clip-path="url(#p6343eaa6e8)" d="M 297.675225 291.7125
  3736. L 297.675225 288.8775
  3737. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3738. <path clip-path="url(#p6343eaa6e8)" d="M 305.938844 291.7125
  3739. L 305.938844 288.8775
  3740. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3741. <path clip-path="url(#p6343eaa6e8)" d="M 309.310198 291.7125
  3742. L 309.310198 288.8775
  3743. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  3744. </g>
  3745. <g id="EventCollection_78"/>
  3746. <g id="EventCollection_79"/>
  3747. </g>
  3748. <g id="axes_2">
  3749. <g id="patch_7">
  3750. <path d="M 46.965625 570.96
  3751. L 549.165625 570.96
  3752. L 549.165625 344.16
  3753. L 46.965625 344.16
  3754. z
  3755. " style="fill:#ffffff;"/>
  3756. </g>
  3757. <g id="PolyCollection_1">
  3758. <path clip-path="url(#pf06378b25d)" d="M 235.924716 569.211846
  3759. L 235.924716 566.468911
  3760. L 235.924716 569.211846
  3761. L 235.924716 569.211846
  3762. z
  3763. " style="fill:#d3d3d3;"/>
  3764. <path clip-path="url(#pf06378b25d)" d="M 239.729261 569.211846
  3765. L 239.729261 521.55802
  3766. L 240.997443 433.981782
  3767. L 242.265625 566.468911
  3768. L 243.533807 440.718416
  3769. L 244.801989 442.96396
  3770. L 246.07017 521.55802
  3771. L 247.338352 539.522376
  3772. L 248.606534 568.714455
  3773. L 248.606534 569.211846
  3774. L 248.606534 569.211846
  3775. L 247.338352 569.211846
  3776. L 246.07017 569.211846
  3777. L 244.801989 569.211846
  3778. L 243.533807 569.211846
  3779. L 242.265625 569.211846
  3780. L 240.997443 569.211846
  3781. L 239.729261 569.211846
  3782. z
  3783. " style="fill:#d3d3d3;"/>
  3784. <path clip-path="url(#pf06378b25d)" d="M 251.142898 569.211846
  3785. L 251.142898 568.714455
  3786. L 252.41108 568.714455
  3787. L 252.41108 569.211846
  3788. L 252.41108 569.211846
  3789. L 251.142898 569.211846
  3790. z
  3791. " style="fill:#d3d3d3;"/>
  3792. <path clip-path="url(#pf06378b25d)" d="M 256.215625 569.211846
  3793. L 256.215625 568.714455
  3794. L 257.483807 568.714455
  3795. L 258.751989 566.468911
  3796. L 260.02017 568.714455
  3797. L 261.288352 568.714455
  3798. L 262.556534 568.714455
  3799. L 263.824716 566.468911
  3800. L 265.092898 566.468911
  3801. L 265.092898 569.211846
  3802. L 265.092898 569.211846
  3803. L 263.824716 569.211846
  3804. L 262.556534 569.211846
  3805. L 261.288352 569.211846
  3806. L 260.02017 569.211846
  3807. L 258.751989 569.211846
  3808. L 257.483807 569.211846
  3809. L 256.215625 569.211846
  3810. z
  3811. " style="fill:#d3d3d3;"/>
  3812. <path clip-path="url(#pf06378b25d)" d="M 267.629261 569.211846
  3813. L 267.629261 568.714455
  3814. L 268.897443 568.714455
  3815. L 270.165625 566.468911
  3816. L 271.433807 564.223366
  3817. L 271.433807 569.211846
  3818. L 271.433807 569.211846
  3819. L 270.165625 569.211846
  3820. L 268.897443 569.211846
  3821. L 267.629261 569.211846
  3822. z
  3823. " style="fill:#d3d3d3;"/>
  3824. <path clip-path="url(#pf06378b25d)" d="M 273.97017 569.211846
  3825. L 273.97017 568.714455
  3826. L 275.238352 566.468911
  3827. L 276.506534 568.714455
  3828. L 277.774716 568.714455
  3829. L 277.774716 569.211846
  3830. L 277.774716 569.211846
  3831. L 276.506534 569.211846
  3832. L 275.238352 569.211846
  3833. L 273.97017 569.211846
  3834. z
  3835. " style="fill:#d3d3d3;"/>
  3836. <path clip-path="url(#pf06378b25d)" d="M 280.31108 569.211846
  3837. L 280.31108 564.223366
  3838. L 281.579261 568.714455
  3839. L 282.847443 564.223366
  3840. L 284.115625 566.468911
  3841. L 284.115625 569.211846
  3842. L 284.115625 569.211846
  3843. L 282.847443 569.211846
  3844. L 281.579261 569.211846
  3845. L 280.31108 569.211846
  3846. z
  3847. " style="fill:#d3d3d3;"/>
  3848. <path clip-path="url(#pf06378b25d)" d="M 287.92017 569.211846
  3849. L 287.92017 568.714455
  3850. L 289.188352 568.714455
  3851. L 290.456534 566.468911
  3852. L 291.724716 561.977822
  3853. L 292.992898 568.714455
  3854. L 294.26108 568.714455
  3855. L 295.529261 561.977822
  3856. L 295.529261 569.211846
  3857. L 295.529261 569.211846
  3858. L 294.26108 569.211846
  3859. L 292.992898 569.211846
  3860. L 291.724716 569.211846
  3861. L 290.456534 569.211846
  3862. L 289.188352 569.211846
  3863. L 287.92017 569.211846
  3864. z
  3865. " style="fill:#d3d3d3;"/>
  3866. </g>
  3867. <g id="PolyCollection_2">
  3868. <path clip-path="url(#pf06378b25d)" d="M 489.56108 569.211846
  3869. L 489.56108 566.468911
  3870. L 490.829261 555.241188
  3871. L 492.097443 557.486733
  3872. L 493.365625 532.785743
  3873. L 494.633807 528.294653
  3874. L 495.901989 548.504554
  3875. L 497.17017 537.276832
  3876. L 498.438352 546.25901
  3877. L 499.706534 561.977822
  3878. L 500.974716 566.468911
  3879. L 502.242898 561.977822
  3880. L 503.51108 564.223366
  3881. L 504.779261 568.714455
  3882. L 506.047443 561.977822
  3883. L 507.315625 564.223366
  3884. L 508.583807 566.468911
  3885. L 509.851989 561.977822
  3886. L 509.851989 569.211846
  3887. L 509.851989 569.211846
  3888. L 508.583807 569.211846
  3889. L 507.315625 569.211846
  3890. L 506.047443 569.211846
  3891. L 504.779261 569.211846
  3892. L 503.51108 569.211846
  3893. L 502.242898 569.211846
  3894. L 500.974716 569.211846
  3895. L 499.706534 569.211846
  3896. L 498.438352 569.211846
  3897. L 497.17017 569.211846
  3898. L 495.901989 569.211846
  3899. L 494.633807 569.211846
  3900. L 493.365625 569.211846
  3901. L 492.097443 569.211846
  3902. L 490.829261 569.211846
  3903. L 489.56108 569.211846
  3904. z
  3905. " style="fill:#d3d3d3;"/>
  3906. <path clip-path="url(#pf06378b25d)" d="M 512.388352 569.211846
  3907. L 512.388352 568.714455
  3908. L 513.656534 555.241188
  3909. L 514.924716 566.468911
  3910. L 516.192898 564.223366
  3911. L 517.46108 568.714455
  3912. L 518.729261 568.714455
  3913. L 519.997443 568.714455
  3914. L 521.265625 557.486733
  3915. L 522.533807 566.468911
  3916. L 523.801989 564.223366
  3917. L 523.801989 569.211846
  3918. L 523.801989 569.211846
  3919. L 522.533807 569.211846
  3920. L 521.265625 569.211846
  3921. L 519.997443 569.211846
  3922. L 518.729261 569.211846
  3923. L 517.46108 569.211846
  3924. L 516.192898 569.211846
  3925. L 514.924716 569.211846
  3926. L 513.656534 569.211846
  3927. L 512.388352 569.211846
  3928. z
  3929. " style="fill:#d3d3d3;"/>
  3930. <path clip-path="url(#pf06378b25d)" d="M 526.338352 569.211846
  3931. L 526.338352 568.714455
  3932. L 527.606534 566.468911
  3933. L 527.606534 569.211846
  3934. L 527.606534 569.211846
  3935. L 526.338352 569.211846
  3936. z
  3937. " style="fill:#d3d3d3;"/>
  3938. <path clip-path="url(#pf06378b25d)" d="M 530.142898 569.211846
  3939. L 530.142898 568.714455
  3940. L 530.142898 569.211846
  3941. L 530.142898 569.211846
  3942. z
  3943. " style="fill:#d3d3d3;"/>
  3944. <path clip-path="url(#pf06378b25d)" d="M 533.947443 569.211846
  3945. L 533.947443 566.468911
  3946. L 535.215625 568.714455
  3947. L 536.483807 566.468911
  3948. L 536.483807 569.211846
  3949. L 536.483807 569.211846
  3950. L 535.215625 569.211846
  3951. L 533.947443 569.211846
  3952. z
  3953. " style="fill:#d3d3d3;"/>
  3954. <path clip-path="url(#pf06378b25d)" d="M 539.02017 569.211846
  3955. L 539.02017 566.468911
  3956. L 540.288352 561.977822
  3957. L 540.288352 569.211846
  3958. L 540.288352 569.211846
  3959. L 539.02017 569.211846
  3960. z
  3961. " style="fill:#d3d3d3;"/>
  3962. <path clip-path="url(#pf06378b25d)" d="M 542.824716 569.211846
  3963. L 542.824716 566.468911
  3964. L 544.092898 566.468911
  3965. L 545.36108 568.714455
  3966. L 546.629261 568.714455
  3967. L 547.897443 566.468911
  3968. L 547.897443 569.211846
  3969. L 547.897443 569.211846
  3970. L 546.629261 569.211846
  3971. L 545.36108 569.211846
  3972. L 544.092898 569.211846
  3973. L 542.824716 569.211846
  3974. z
  3975. " style="fill:#d3d3d3;"/>
  3976. </g>
  3977. <g id="matplotlib.axis_3">
  3978. <g id="xtick_1">
  3979. <g id="line2d_9">
  3980. <defs>
  3981. <path d="M 0 0
  3982. L 0 3.5
  3983. " id="me60532b63c" style="stroke:#000000;stroke-width:0.8;"/>
  3984. </defs>
  3985. <g>
  3986. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#me60532b63c" y="570.96"/>
  3987. </g>
  3988. </g>
  3989. <g id="text_10">
  3990. <!-- 0.0 -->
  3991. <defs>
  3992. <path d="M 10.6875 12.40625
  3993. L 21 12.40625
  3994. L 21 0
  3995. L 10.6875 0
  3996. z
  3997. " id="DejaVuSans-46"/>
  3998. </defs>
  3999. <g transform="translate(39.014063 585.558437)scale(0.1 -0.1)">
  4000. <use xlink:href="#DejaVuSans-48"/>
  4001. <use x="63.623047" xlink:href="#DejaVuSans-46"/>
  4002. <use x="95.410156" xlink:href="#DejaVuSans-48"/>
  4003. </g>
  4004. </g>
  4005. </g>
  4006. <g id="xtick_2">
  4007. <g id="line2d_10">
  4008. <g>
  4009. <use style="stroke:#000000;stroke-width:0.8;" x="110.336941" xlink:href="#me60532b63c" y="570.96"/>
  4010. </g>
  4011. </g>
  4012. <g id="text_11">
  4013. <!-- 0.5 -->
  4014. <g transform="translate(102.385378 585.558437)scale(0.1 -0.1)">
  4015. <use xlink:href="#DejaVuSans-48"/>
  4016. <use x="63.623047" xlink:href="#DejaVuSans-46"/>
  4017. <use x="95.410156" xlink:href="#DejaVuSans-53"/>
  4018. </g>
  4019. </g>
  4020. </g>
  4021. <g id="xtick_3">
  4022. <g id="line2d_11">
  4023. <g>
  4024. <use style="stroke:#000000;stroke-width:0.8;" x="173.708257" xlink:href="#me60532b63c" y="570.96"/>
  4025. </g>
  4026. </g>
  4027. <g id="text_12">
  4028. <!-- 1.0 -->
  4029. <g transform="translate(165.756694 585.558437)scale(0.1 -0.1)">
  4030. <use xlink:href="#DejaVuSans-49"/>
  4031. <use x="63.623047" xlink:href="#DejaVuSans-46"/>
  4032. <use x="95.410156" xlink:href="#DejaVuSans-48"/>
  4033. </g>
  4034. </g>
  4035. </g>
  4036. <g id="xtick_4">
  4037. <g id="line2d_12">
  4038. <g>
  4039. <use style="stroke:#000000;stroke-width:0.8;" x="237.079573" xlink:href="#me60532b63c" y="570.96"/>
  4040. </g>
  4041. </g>
  4042. <g id="text_13">
  4043. <!-- 1.5 -->
  4044. <g transform="translate(229.12801 585.558437)scale(0.1 -0.1)">
  4045. <use xlink:href="#DejaVuSans-49"/>
  4046. <use x="63.623047" xlink:href="#DejaVuSans-46"/>
  4047. <use x="95.410156" xlink:href="#DejaVuSans-53"/>
  4048. </g>
  4049. </g>
  4050. </g>
  4051. <g id="xtick_5">
  4052. <g id="line2d_13">
  4053. <g>
  4054. <use style="stroke:#000000;stroke-width:0.8;" x="300.450888" xlink:href="#me60532b63c" y="570.96"/>
  4055. </g>
  4056. </g>
  4057. <g id="text_14">
  4058. <!-- 2.0 -->
  4059. <g transform="translate(292.499326 585.558437)scale(0.1 -0.1)">
  4060. <use xlink:href="#DejaVuSans-50"/>
  4061. <use x="63.623047" xlink:href="#DejaVuSans-46"/>
  4062. <use x="95.410156" xlink:href="#DejaVuSans-48"/>
  4063. </g>
  4064. </g>
  4065. </g>
  4066. <g id="xtick_6">
  4067. <g id="line2d_14">
  4068. <g>
  4069. <use style="stroke:#000000;stroke-width:0.8;" x="363.822204" xlink:href="#me60532b63c" y="570.96"/>
  4070. </g>
  4071. </g>
  4072. <g id="text_15">
  4073. <!-- 2.5 -->
  4074. <g transform="translate(355.870642 585.558437)scale(0.1 -0.1)">
  4075. <use xlink:href="#DejaVuSans-50"/>
  4076. <use x="63.623047" xlink:href="#DejaVuSans-46"/>
  4077. <use x="95.410156" xlink:href="#DejaVuSans-53"/>
  4078. </g>
  4079. </g>
  4080. </g>
  4081. <g id="xtick_7">
  4082. <g id="line2d_15">
  4083. <g>
  4084. <use style="stroke:#000000;stroke-width:0.8;" x="427.19352" xlink:href="#me60532b63c" y="570.96"/>
  4085. </g>
  4086. </g>
  4087. <g id="text_16">
  4088. <!-- 3.0 -->
  4089. <g transform="translate(419.241958 585.558437)scale(0.1 -0.1)">
  4090. <use xlink:href="#DejaVuSans-51"/>
  4091. <use x="63.623047" xlink:href="#DejaVuSans-46"/>
  4092. <use x="95.410156" xlink:href="#DejaVuSans-48"/>
  4093. </g>
  4094. </g>
  4095. </g>
  4096. <g id="xtick_8">
  4097. <g id="line2d_16">
  4098. <g>
  4099. <use style="stroke:#000000;stroke-width:0.8;" x="490.564836" xlink:href="#me60532b63c" y="570.96"/>
  4100. </g>
  4101. </g>
  4102. <g id="text_17">
  4103. <!-- 3.5 -->
  4104. <g transform="translate(482.613273 585.558437)scale(0.1 -0.1)">
  4105. <use xlink:href="#DejaVuSans-51"/>
  4106. <use x="63.623047" xlink:href="#DejaVuSans-46"/>
  4107. <use x="95.410156" xlink:href="#DejaVuSans-53"/>
  4108. </g>
  4109. </g>
  4110. </g>
  4111. <g id="text_18">
  4112. <!-- Time[s] -->
  4113. <defs>
  4114. <path d="M 52 44.1875
  4115. Q 55.375 50.25 60.0625 53.125
  4116. Q 64.75 56 71.09375 56
  4117. Q 79.640625 56 84.28125 50.015625
  4118. Q 88.921875 44.046875 88.921875 33.015625
  4119. L 88.921875 0
  4120. L 79.890625 0
  4121. L 79.890625 32.71875
  4122. Q 79.890625 40.578125 77.09375 44.375
  4123. Q 74.3125 48.1875 68.609375 48.1875
  4124. Q 61.625 48.1875 57.5625 43.546875
  4125. Q 53.515625 38.921875 53.515625 30.90625
  4126. L 53.515625 0
  4127. L 44.484375 0
  4128. L 44.484375 32.71875
  4129. Q 44.484375 40.625 41.703125 44.40625
  4130. Q 38.921875 48.1875 33.109375 48.1875
  4131. Q 26.21875 48.1875 22.15625 43.53125
  4132. Q 18.109375 38.875 18.109375 30.90625
  4133. L 18.109375 0
  4134. L 9.078125 0
  4135. L 9.078125 54.6875
  4136. L 18.109375 54.6875
  4137. L 18.109375 46.1875
  4138. Q 21.1875 51.21875 25.484375 53.609375
  4139. Q 29.78125 56 35.6875 56
  4140. Q 41.65625 56 45.828125 52.96875
  4141. Q 50 49.953125 52 44.1875
  4142. z
  4143. " id="DejaVuSans-109"/>
  4144. <path d="M 56.203125 29.59375
  4145. L 56.203125 25.203125
  4146. L 14.890625 25.203125
  4147. Q 15.484375 15.921875 20.484375 11.0625
  4148. Q 25.484375 6.203125 34.421875 6.203125
  4149. Q 39.59375 6.203125 44.453125 7.46875
  4150. Q 49.3125 8.734375 54.109375 11.28125
  4151. L 54.109375 2.78125
  4152. Q 49.265625 0.734375 44.1875 -0.34375
  4153. Q 39.109375 -1.421875 33.890625 -1.421875
  4154. Q 20.796875 -1.421875 13.15625 6.1875
  4155. Q 5.515625 13.8125 5.515625 26.8125
  4156. Q 5.515625 40.234375 12.765625 48.109375
  4157. Q 20.015625 56 32.328125 56
  4158. Q 43.359375 56 49.78125 48.890625
  4159. Q 56.203125 41.796875 56.203125 29.59375
  4160. z
  4161. M 47.21875 32.234375
  4162. Q 47.125 39.59375 43.09375 43.984375
  4163. Q 39.0625 48.390625 32.421875 48.390625
  4164. Q 24.90625 48.390625 20.390625 44.140625
  4165. Q 15.875 39.890625 15.1875 32.171875
  4166. z
  4167. " id="DejaVuSans-101"/>
  4168. <path d="M 8.59375 75.984375
  4169. L 29.296875 75.984375
  4170. L 29.296875 69
  4171. L 17.578125 69
  4172. L 17.578125 -6.203125
  4173. L 29.296875 -6.203125
  4174. L 29.296875 -13.1875
  4175. L 8.59375 -13.1875
  4176. z
  4177. " id="DejaVuSans-91"/>
  4178. <path d="M 44.28125 53.078125
  4179. L 44.28125 44.578125
  4180. Q 40.484375 46.53125 36.375 47.5
  4181. Q 32.28125 48.484375 27.875 48.484375
  4182. Q 21.1875 48.484375 17.84375 46.4375
  4183. Q 14.5 44.390625 14.5 40.28125
  4184. Q 14.5 37.15625 16.890625 35.375
  4185. Q 19.28125 33.59375 26.515625 31.984375
  4186. L 29.59375 31.296875
  4187. Q 39.15625 29.25 43.1875 25.515625
  4188. Q 47.21875 21.78125 47.21875 15.09375
  4189. Q 47.21875 7.46875 41.1875 3.015625
  4190. Q 35.15625 -1.421875 24.609375 -1.421875
  4191. Q 20.21875 -1.421875 15.453125 -0.5625
  4192. Q 10.6875 0.296875 5.421875 2
  4193. L 5.421875 11.28125
  4194. Q 10.40625 8.6875 15.234375 7.390625
  4195. Q 20.0625 6.109375 24.8125 6.109375
  4196. Q 31.15625 6.109375 34.5625 8.28125
  4197. Q 37.984375 10.453125 37.984375 14.40625
  4198. Q 37.984375 18.0625 35.515625 20.015625
  4199. Q 33.0625 21.96875 24.703125 23.78125
  4200. L 21.578125 24.515625
  4201. Q 13.234375 26.265625 9.515625 29.90625
  4202. Q 5.8125 33.546875 5.8125 39.890625
  4203. Q 5.8125 47.609375 11.28125 51.796875
  4204. Q 16.75 56 26.8125 56
  4205. Q 31.78125 56 36.171875 55.265625
  4206. Q 40.578125 54.546875 44.28125 53.078125
  4207. z
  4208. " id="DejaVuSans-115"/>
  4209. <path d="M 30.421875 75.984375
  4210. L 30.421875 -13.1875
  4211. L 9.71875 -13.1875
  4212. L 9.71875 -6.203125
  4213. L 21.390625 -6.203125
  4214. L 21.390625 69
  4215. L 9.71875 69
  4216. L 9.71875 75.984375
  4217. z
  4218. " id="DejaVuSans-93"/>
  4219. </defs>
  4220. <g transform="translate(279.171875 599.236562)scale(0.1 -0.1)">
  4221. <use xlink:href="#DejaVuSans-84"/>
  4222. <use x="61.037109" xlink:href="#DejaVuSans-105"/>
  4223. <use x="88.820312" xlink:href="#DejaVuSans-109"/>
  4224. <use x="186.232422" xlink:href="#DejaVuSans-101"/>
  4225. <use x="247.755859" xlink:href="#DejaVuSans-91"/>
  4226. <use x="286.769531" xlink:href="#DejaVuSans-115"/>
  4227. <use x="338.869141" xlink:href="#DejaVuSans-93"/>
  4228. </g>
  4229. </g>
  4230. </g>
  4231. <g id="matplotlib.axis_4">
  4232. <g id="ytick_9">
  4233. <g id="line2d_17">
  4234. <g>
  4235. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#mb6686181a4" y="570.96"/>
  4236. </g>
  4237. </g>
  4238. <g id="text_19">
  4239. <!-- 0 -->
  4240. <g transform="translate(33.603125 574.759219)scale(0.1 -0.1)">
  4241. <use xlink:href="#DejaVuSans-48"/>
  4242. </g>
  4243. </g>
  4244. </g>
  4245. <g id="ytick_10">
  4246. <g id="line2d_18">
  4247. <g>
  4248. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#mb6686181a4" y="535.996914"/>
  4249. </g>
  4250. </g>
  4251. <g id="text_20">
  4252. <!-- 20 -->
  4253. <g transform="translate(27.240625 539.796133)scale(0.1 -0.1)">
  4254. <use xlink:href="#DejaVuSans-50"/>
  4255. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  4256. </g>
  4257. </g>
  4258. </g>
  4259. <g id="ytick_11">
  4260. <g id="line2d_19">
  4261. <g>
  4262. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#mb6686181a4" y="501.033828"/>
  4263. </g>
  4264. </g>
  4265. <g id="text_21">
  4266. <!-- 40 -->
  4267. <g transform="translate(27.240625 504.833047)scale(0.1 -0.1)">
  4268. <use xlink:href="#DejaVuSans-52"/>
  4269. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  4270. </g>
  4271. </g>
  4272. </g>
  4273. <g id="ytick_12">
  4274. <g id="line2d_20">
  4275. <g>
  4276. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#mb6686181a4" y="466.070743"/>
  4277. </g>
  4278. </g>
  4279. <g id="text_22">
  4280. <!-- 60 -->
  4281. <g transform="translate(27.240625 469.869961)scale(0.1 -0.1)">
  4282. <use xlink:href="#DejaVuSans-54"/>
  4283. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  4284. </g>
  4285. </g>
  4286. </g>
  4287. <g id="ytick_13">
  4288. <g id="line2d_21">
  4289. <g>
  4290. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#mb6686181a4" y="431.107657"/>
  4291. </g>
  4292. </g>
  4293. <g id="text_23">
  4294. <!-- 80 -->
  4295. <defs>
  4296. <path d="M 31.78125 34.625
  4297. Q 24.75 34.625 20.71875 30.859375
  4298. Q 16.703125 27.09375 16.703125 20.515625
  4299. Q 16.703125 13.921875 20.71875 10.15625
  4300. Q 24.75 6.390625 31.78125 6.390625
  4301. Q 38.8125 6.390625 42.859375 10.171875
  4302. Q 46.921875 13.96875 46.921875 20.515625
  4303. Q 46.921875 27.09375 42.890625 30.859375
  4304. Q 38.875 34.625 31.78125 34.625
  4305. z
  4306. M 21.921875 38.8125
  4307. Q 15.578125 40.375 12.03125 44.71875
  4308. Q 8.5 49.078125 8.5 55.328125
  4309. Q 8.5 64.0625 14.71875 69.140625
  4310. Q 20.953125 74.21875 31.78125 74.21875
  4311. Q 42.671875 74.21875 48.875 69.140625
  4312. Q 55.078125 64.0625 55.078125 55.328125
  4313. Q 55.078125 49.078125 51.53125 44.71875
  4314. Q 48 40.375 41.703125 38.8125
  4315. Q 48.828125 37.15625 52.796875 32.3125
  4316. Q 56.78125 27.484375 56.78125 20.515625
  4317. Q 56.78125 9.90625 50.3125 4.234375
  4318. Q 43.84375 -1.421875 31.78125 -1.421875
  4319. Q 19.734375 -1.421875 13.25 4.234375
  4320. Q 6.78125 9.90625 6.78125 20.515625
  4321. Q 6.78125 27.484375 10.78125 32.3125
  4322. Q 14.796875 37.15625 21.921875 38.8125
  4323. z
  4324. M 18.3125 54.390625
  4325. Q 18.3125 48.734375 21.84375 45.5625
  4326. Q 25.390625 42.390625 31.78125 42.390625
  4327. Q 38.140625 42.390625 41.71875 45.5625
  4328. Q 45.3125 48.734375 45.3125 54.390625
  4329. Q 45.3125 60.0625 41.71875 63.234375
  4330. Q 38.140625 66.40625 31.78125 66.40625
  4331. Q 25.390625 66.40625 21.84375 63.234375
  4332. Q 18.3125 60.0625 18.3125 54.390625
  4333. z
  4334. " id="DejaVuSans-56"/>
  4335. </defs>
  4336. <g transform="translate(27.240625 434.906876)scale(0.1 -0.1)">
  4337. <use xlink:href="#DejaVuSans-56"/>
  4338. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  4339. </g>
  4340. </g>
  4341. </g>
  4342. <g id="ytick_14">
  4343. <g id="line2d_22">
  4344. <g>
  4345. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#mb6686181a4" y="396.144571"/>
  4346. </g>
  4347. </g>
  4348. <g id="text_24">
  4349. <!-- 100 -->
  4350. <g transform="translate(20.878125 399.94379)scale(0.1 -0.1)">
  4351. <use xlink:href="#DejaVuSans-49"/>
  4352. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  4353. <use x="127.246094" xlink:href="#DejaVuSans-48"/>
  4354. </g>
  4355. </g>
  4356. </g>
  4357. <g id="ytick_15">
  4358. <g id="line2d_23">
  4359. <g>
  4360. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#mb6686181a4" y="361.181485"/>
  4361. </g>
  4362. </g>
  4363. <g id="text_25">
  4364. <!-- 120 -->
  4365. <g transform="translate(20.878125 364.980704)scale(0.1 -0.1)">
  4366. <use xlink:href="#DejaVuSans-49"/>
  4367. <use x="63.623047" xlink:href="#DejaVuSans-50"/>
  4368. <use x="127.246094" xlink:href="#DejaVuSans-48"/>
  4369. </g>
  4370. </g>
  4371. </g>
  4372. <g id="text_26">
  4373. <!-- Firing rate[spikes/s] -->
  4374. <defs>
  4375. <path d="M 9.8125 72.90625
  4376. L 51.703125 72.90625
  4377. L 51.703125 64.59375
  4378. L 19.671875 64.59375
  4379. L 19.671875 43.109375
  4380. L 48.578125 43.109375
  4381. L 48.578125 34.8125
  4382. L 19.671875 34.8125
  4383. L 19.671875 0
  4384. L 9.8125 0
  4385. z
  4386. " id="DejaVuSans-70"/>
  4387. <path d="M 54.890625 33.015625
  4388. L 54.890625 0
  4389. L 45.90625 0
  4390. L 45.90625 32.71875
  4391. Q 45.90625 40.484375 42.875 44.328125
  4392. Q 39.84375 48.1875 33.796875 48.1875
  4393. Q 26.515625 48.1875 22.3125 43.546875
  4394. Q 18.109375 38.921875 18.109375 30.90625
  4395. L 18.109375 0
  4396. L 9.078125 0
  4397. L 9.078125 54.6875
  4398. L 18.109375 54.6875
  4399. L 18.109375 46.1875
  4400. Q 21.34375 51.125 25.703125 53.5625
  4401. Q 30.078125 56 35.796875 56
  4402. Q 45.21875 56 50.046875 50.171875
  4403. Q 54.890625 44.34375 54.890625 33.015625
  4404. z
  4405. " id="DejaVuSans-110"/>
  4406. <path d="M 45.40625 27.984375
  4407. Q 45.40625 37.75 41.375 43.109375
  4408. Q 37.359375 48.484375 30.078125 48.484375
  4409. Q 22.859375 48.484375 18.828125 43.109375
  4410. Q 14.796875 37.75 14.796875 27.984375
  4411. Q 14.796875 18.265625 18.828125 12.890625
  4412. Q 22.859375 7.515625 30.078125 7.515625
  4413. Q 37.359375 7.515625 41.375 12.890625
  4414. Q 45.40625 18.265625 45.40625 27.984375
  4415. z
  4416. M 54.390625 6.78125
  4417. Q 54.390625 -7.171875 48.1875 -13.984375
  4418. Q 42 -20.796875 29.203125 -20.796875
  4419. Q 24.46875 -20.796875 20.265625 -20.09375
  4420. Q 16.0625 -19.390625 12.109375 -17.921875
  4421. L 12.109375 -9.1875
  4422. Q 16.0625 -11.328125 19.921875 -12.34375
  4423. Q 23.78125 -13.375 27.78125 -13.375
  4424. Q 36.625 -13.375 41.015625 -8.765625
  4425. Q 45.40625 -4.15625 45.40625 5.171875
  4426. L 45.40625 9.625
  4427. Q 42.625 4.78125 38.28125 2.390625
  4428. Q 33.9375 0 27.875 0
  4429. Q 17.828125 0 11.671875 7.65625
  4430. Q 5.515625 15.328125 5.515625 27.984375
  4431. Q 5.515625 40.671875 11.671875 48.328125
  4432. Q 17.828125 56 27.875 56
  4433. Q 33.9375 56 38.28125 53.609375
  4434. Q 42.625 51.21875 45.40625 46.390625
  4435. L 45.40625 54.6875
  4436. L 54.390625 54.6875
  4437. z
  4438. " id="DejaVuSans-103"/>
  4439. <path id="DejaVuSans-32"/>
  4440. <path d="M 18.3125 70.21875
  4441. L 18.3125 54.6875
  4442. L 36.8125 54.6875
  4443. L 36.8125 47.703125
  4444. L 18.3125 47.703125
  4445. L 18.3125 18.015625
  4446. Q 18.3125 11.328125 20.140625 9.421875
  4447. Q 21.96875 7.515625 27.59375 7.515625
  4448. L 36.8125 7.515625
  4449. L 36.8125 0
  4450. L 27.59375 0
  4451. Q 17.1875 0 13.234375 3.875
  4452. Q 9.28125 7.765625 9.28125 18.015625
  4453. L 9.28125 47.703125
  4454. L 2.6875 47.703125
  4455. L 2.6875 54.6875
  4456. L 9.28125 54.6875
  4457. L 9.28125 70.21875
  4458. z
  4459. " id="DejaVuSans-116"/>
  4460. <path d="M 18.109375 8.203125
  4461. L 18.109375 -20.796875
  4462. L 9.078125 -20.796875
  4463. L 9.078125 54.6875
  4464. L 18.109375 54.6875
  4465. L 18.109375 46.390625
  4466. Q 20.953125 51.265625 25.265625 53.625
  4467. Q 29.59375 56 35.59375 56
  4468. Q 45.5625 56 51.78125 48.09375
  4469. Q 58.015625 40.1875 58.015625 27.296875
  4470. Q 58.015625 14.40625 51.78125 6.484375
  4471. Q 45.5625 -1.421875 35.59375 -1.421875
  4472. Q 29.59375 -1.421875 25.265625 0.953125
  4473. Q 20.953125 3.328125 18.109375 8.203125
  4474. z
  4475. M 48.6875 27.296875
  4476. Q 48.6875 37.203125 44.609375 42.84375
  4477. Q 40.53125 48.484375 33.40625 48.484375
  4478. Q 26.265625 48.484375 22.1875 42.84375
  4479. Q 18.109375 37.203125 18.109375 27.296875
  4480. Q 18.109375 17.390625 22.1875 11.75
  4481. Q 26.265625 6.109375 33.40625 6.109375
  4482. Q 40.53125 6.109375 44.609375 11.75
  4483. Q 48.6875 17.390625 48.6875 27.296875
  4484. z
  4485. " id="DejaVuSans-112"/>
  4486. <path d="M 9.078125 75.984375
  4487. L 18.109375 75.984375
  4488. L 18.109375 31.109375
  4489. L 44.921875 54.6875
  4490. L 56.390625 54.6875
  4491. L 27.390625 29.109375
  4492. L 57.625 0
  4493. L 45.90625 0
  4494. L 18.109375 26.703125
  4495. L 18.109375 0
  4496. L 9.078125 0
  4497. z
  4498. " id="DejaVuSans-107"/>
  4499. <path d="M 25.390625 72.90625
  4500. L 33.6875 72.90625
  4501. L 8.296875 -9.28125
  4502. L 0 -9.28125
  4503. z
  4504. " id="DejaVuSans-47"/>
  4505. </defs>
  4506. <g transform="translate(14.798438 507.285)rotate(-90)scale(0.1 -0.1)">
  4507. <use xlink:href="#DejaVuSans-70"/>
  4508. <use x="57.410156" xlink:href="#DejaVuSans-105"/>
  4509. <use x="85.193359" xlink:href="#DejaVuSans-114"/>
  4510. <use x="126.306641" xlink:href="#DejaVuSans-105"/>
  4511. <use x="154.089844" xlink:href="#DejaVuSans-110"/>
  4512. <use x="217.46875" xlink:href="#DejaVuSans-103"/>
  4513. <use x="280.945312" xlink:href="#DejaVuSans-32"/>
  4514. <use x="312.732422" xlink:href="#DejaVuSans-114"/>
  4515. <use x="353.845703" xlink:href="#DejaVuSans-97"/>
  4516. <use x="415.125" xlink:href="#DejaVuSans-116"/>
  4517. <use x="454.333984" xlink:href="#DejaVuSans-101"/>
  4518. <use x="515.857422" xlink:href="#DejaVuSans-91"/>
  4519. <use x="554.871094" xlink:href="#DejaVuSans-115"/>
  4520. <use x="606.970703" xlink:href="#DejaVuSans-112"/>
  4521. <use x="670.447266" xlink:href="#DejaVuSans-105"/>
  4522. <use x="698.230469" xlink:href="#DejaVuSans-107"/>
  4523. <use x="756.09375" xlink:href="#DejaVuSans-101"/>
  4524. <use x="817.617188" xlink:href="#DejaVuSans-115"/>
  4525. <use x="869.716797" xlink:href="#DejaVuSans-47"/>
  4526. <use x="903.408203" xlink:href="#DejaVuSans-115"/>
  4527. <use x="955.507812" xlink:href="#DejaVuSans-93"/>
  4528. </g>
  4529. </g>
  4530. </g>
  4531. <g id="line2d_24">
  4532. <path clip-path="url(#pf06378b25d)" d="M 46.965625 570.96
  4533. L 48.233807 568.714455
  4534. L 49.501989 568.714455
  4535. L 50.77017 570.96
  4536. L 52.038352 505.839208
  4537. L 53.306534 519.312475
  4538. L 54.574716 447.45505
  4539. L 55.842898 344.16
  4540. L 57.11108 469.910495
  4541. L 58.379261 514.821386
  4542. L 59.647443 555.241188
  4543. L 60.915625 564.223366
  4544. L 62.183807 568.714455
  4545. L 63.451989 570.96
  4546. L 69.792898 570.96
  4547. L 71.06108 568.714455
  4548. L 72.329261 570.96
  4549. L 76.133807 570.96
  4550. L 77.401989 568.714455
  4551. L 78.67017 568.714455
  4552. L 79.938352 566.468911
  4553. L 81.206534 568.714455
  4554. L 82.474716 566.468911
  4555. L 83.742898 570.96
  4556. L 85.01108 568.714455
  4557. L 86.279261 570.96
  4558. L 87.547443 564.223366
  4559. L 88.815625 570.96
  4560. L 90.083807 566.468911
  4561. L 91.351989 570.96
  4562. L 93.888352 570.96
  4563. L 95.156534 568.714455
  4564. L 96.424716 570.96
  4565. L 97.692898 570.96
  4566. L 98.96108 568.714455
  4567. L 101.497443 568.714455
  4568. L 102.765625 570.96
  4569. L 104.033807 568.714455
  4570. L 105.301989 568.714455
  4571. L 106.57017 570.96
  4572. L 107.838352 566.468911
  4573. L 110.374716 570.96
  4574. L 111.642898 566.468911
  4575. L 112.91108 570.96
  4576. L 116.715625 570.96
  4577. L 117.983807 566.468911
  4578. L 119.251989 568.714455
  4579. L 120.52017 566.468911
  4580. L 121.788352 570.96
  4581. L 124.324716 570.96
  4582. L 125.592898 568.714455
  4583. L 126.86108 570.96
  4584. L 128.129261 566.468911
  4585. L 129.397443 570.96
  4586. L 130.665625 568.714455
  4587. L 131.933807 570.96
  4588. L 133.201989 568.714455
  4589. L 134.47017 570.96
  4590. L 135.738352 570.96
  4591. L 137.006534 566.468911
  4592. L 138.274716 570.96
  4593. L 140.81108 570.96
  4594. L 142.079261 568.714455
  4595. L 143.347443 568.714455
  4596. L 144.615625 566.468911
  4597. L 145.883807 570.96
  4598. L 149.688352 570.96
  4599. L 150.956534 566.468911
  4600. L 152.224716 570.96
  4601. L 156.029261 570.96
  4602. L 157.297443 568.714455
  4603. L 158.565625 568.714455
  4604. L 159.833807 570.96
  4605. L 161.101989 570.96
  4606. L 162.37017 568.714455
  4607. L 163.638352 568.714455
  4608. L 164.906534 570.96
  4609. L 166.174716 570.96
  4610. L 167.442898 568.714455
  4611. L 168.71108 570.96
  4612. L 171.247443 570.96
  4613. L 172.515625 568.714455
  4614. L 173.783807 568.714455
  4615. L 175.051989 566.468911
  4616. L 177.588352 570.96
  4617. L 178.856534 568.714455
  4618. L 180.124716 561.977822
  4619. L 181.392898 568.714455
  4620. L 182.66108 568.714455
  4621. L 183.929261 570.96
  4622. L 185.197443 566.468911
  4623. L 186.465625 570.96
  4624. L 187.733807 570.96
  4625. L 189.001989 568.714455
  4626. L 194.074716 568.714455
  4627. L 195.342898 570.96
  4628. L 196.61108 568.714455
  4629. L 197.879261 570.96
  4630. L 199.147443 568.714455
  4631. L 200.415625 570.96
  4632. L 201.683807 561.977822
  4633. L 202.951989 568.714455
  4634. L 204.22017 568.714455
  4635. L 205.488352 570.96
  4636. L 206.756534 570.96
  4637. L 208.024716 568.714455
  4638. L 209.292898 570.96
  4639. L 211.829261 566.468911
  4640. L 213.097443 568.714455
  4641. L 214.365625 568.714455
  4642. L 215.633807 570.96
  4643. L 216.901989 568.714455
  4644. L 218.17017 570.96
  4645. L 219.438352 570.96
  4646. L 220.706534 566.468911
  4647. L 221.974716 568.714455
  4648. L 223.242898 566.468911
  4649. L 224.51108 566.468911
  4650. L 225.779261 570.96
  4651. L 227.047443 570.96
  4652. L 228.315625 566.468911
  4653. L 229.583807 568.714455
  4654. L 230.851989 568.714455
  4655. L 232.12017 566.468911
  4656. L 234.656534 570.96
  4657. L 235.924716 566.468911
  4658. L 237.192898 570.96
  4659. L 238.46108 570.96
  4660. L 239.729261 521.55802
  4661. L 240.997443 433.981782
  4662. L 242.265625 566.468911
  4663. L 243.533807 440.718416
  4664. L 244.801989 442.96396
  4665. L 246.07017 521.55802
  4666. L 247.338352 539.522376
  4667. L 248.606534 568.714455
  4668. L 249.874716 570.96
  4669. L 251.142898 568.714455
  4670. L 252.41108 568.714455
  4671. L 253.679261 570.96
  4672. L 254.947443 570.96
  4673. L 256.215625 568.714455
  4674. L 257.483807 568.714455
  4675. L 258.751989 566.468911
  4676. L 260.02017 568.714455
  4677. L 262.556534 568.714455
  4678. L 263.824716 566.468911
  4679. L 265.092898 566.468911
  4680. L 266.36108 570.96
  4681. L 267.629261 568.714455
  4682. L 268.897443 568.714455
  4683. L 271.433807 564.223366
  4684. L 272.701989 570.96
  4685. L 275.238352 566.468911
  4686. L 276.506534 568.714455
  4687. L 277.774716 568.714455
  4688. L 279.042898 570.96
  4689. L 280.31108 564.223366
  4690. L 281.579261 568.714455
  4691. L 282.847443 564.223366
  4692. L 284.115625 566.468911
  4693. L 285.383807 570.96
  4694. L 286.651989 570.96
  4695. L 287.92017 568.714455
  4696. L 289.188352 568.714455
  4697. L 290.456534 566.468911
  4698. L 291.724716 561.977822
  4699. L 292.992898 568.714455
  4700. L 294.26108 568.714455
  4701. L 295.529261 561.977822
  4702. L 296.797443 570.96
  4703. L 299.333807 566.468911
  4704. L 301.87017 570.96
  4705. L 303.138352 559.732277
  4706. L 304.406534 552.995644
  4707. L 305.674716 505.839208
  4708. L 306.942898 517.066931
  4709. L 308.21108 535.031287
  4710. L 309.479261 530.540198
  4711. L 310.747443 557.486733
  4712. L 312.015625 561.977822
  4713. L 313.283807 559.732277
  4714. L 314.551989 566.468911
  4715. L 315.82017 570.96
  4716. L 319.624716 570.96
  4717. L 320.892898 568.714455
  4718. L 322.16108 570.96
  4719. L 324.697443 570.96
  4720. L 325.965625 566.468911
  4721. L 327.233807 570.96
  4722. L 329.77017 570.96
  4723. L 331.038352 568.714455
  4724. L 332.306534 570.96
  4725. L 333.574716 570.96
  4726. L 334.842898 566.468911
  4727. L 336.11108 570.96
  4728. L 339.915625 570.96
  4729. L 341.183807 568.714455
  4730. L 343.72017 568.714455
  4731. L 344.988352 566.468911
  4732. L 346.256534 570.96
  4733. L 348.792898 570.96
  4734. L 350.06108 568.714455
  4735. L 351.329261 570.96
  4736. L 352.597443 570.96
  4737. L 355.133807 566.468911
  4738. L 356.401989 568.714455
  4739. L 357.67017 568.714455
  4740. L 358.938352 570.96
  4741. L 360.206534 568.714455
  4742. L 361.474716 568.714455
  4743. L 362.742898 570.96
  4744. L 364.01108 568.714455
  4745. L 365.279261 570.96
  4746. L 366.547443 570.96
  4747. L 367.815625 568.714455
  4748. L 369.083807 570.96
  4749. L 371.62017 566.468911
  4750. L 372.888352 570.96
  4751. L 374.156534 568.714455
  4752. L 376.692898 568.714455
  4753. L 377.96108 566.468911
  4754. L 379.229261 570.96
  4755. L 380.497443 568.714455
  4756. L 381.765625 568.714455
  4757. L 383.033807 570.96
  4758. L 384.301989 570.96
  4759. L 385.57017 566.468911
  4760. L 386.838352 566.468911
  4761. L 388.106534 568.714455
  4762. L 393.179261 568.714455
  4763. L 394.447443 570.96
  4764. L 398.251989 570.96
  4765. L 399.52017 568.714455
  4766. L 400.788352 568.714455
  4767. L 402.056534 570.96
  4768. L 403.324716 570.96
  4769. L 404.592898 566.468911
  4770. L 405.86108 570.96
  4771. L 408.397443 570.96
  4772. L 409.665625 566.468911
  4773. L 410.933807 570.96
  4774. L 416.006534 570.96
  4775. L 418.542898 566.468911
  4776. L 419.81108 568.714455
  4777. L 421.079261 566.468911
  4778. L 422.347443 570.96
  4779. L 423.615625 568.714455
  4780. L 424.883807 570.96
  4781. L 426.151989 570.96
  4782. L 427.42017 568.714455
  4783. L 431.224716 568.714455
  4784. L 432.492898 564.223366
  4785. L 433.76108 570.96
  4786. L 435.029261 568.714455
  4787. L 436.297443 570.96
  4788. L 446.442898 570.96
  4789. L 447.71108 566.468911
  4790. L 448.979261 570.96
  4791. L 450.247443 568.714455
  4792. L 454.051989 568.714455
  4793. L 455.32017 570.96
  4794. L 456.588352 570.96
  4795. L 457.856534 568.714455
  4796. L 459.124716 568.714455
  4797. L 460.392898 570.96
  4798. L 461.66108 568.714455
  4799. L 462.929261 570.96
  4800. L 465.465625 566.468911
  4801. L 468.001989 570.96
  4802. L 471.806534 570.96
  4803. L 473.074716 566.468911
  4804. L 474.342898 566.468911
  4805. L 475.61108 570.96
  4806. L 476.879261 570.96
  4807. L 479.415625 566.468911
  4808. L 480.683807 570.96
  4809. L 483.22017 566.468911
  4810. L 484.488352 570.96
  4811. L 485.756534 568.714455
  4812. L 487.024716 570.96
  4813. L 488.292898 570.96
  4814. L 489.56108 566.468911
  4815. L 490.829261 555.241188
  4816. L 492.097443 557.486733
  4817. L 493.365625 532.785743
  4818. L 494.633807 528.294653
  4819. L 495.901989 548.504554
  4820. L 497.17017 537.276832
  4821. L 498.438352 546.25901
  4822. L 499.706534 561.977822
  4823. L 500.974716 566.468911
  4824. L 502.242898 561.977822
  4825. L 503.51108 564.223366
  4826. L 504.779261 568.714455
  4827. L 506.047443 561.977822
  4828. L 508.583807 566.468911
  4829. L 509.851989 561.977822
  4830. L 511.12017 570.96
  4831. L 512.388352 568.714455
  4832. L 513.656534 555.241188
  4833. L 514.924716 566.468911
  4834. L 516.192898 564.223366
  4835. L 517.46108 568.714455
  4836. L 519.997443 568.714455
  4837. L 521.265625 557.486733
  4838. L 522.533807 566.468911
  4839. L 523.801989 564.223366
  4840. L 525.07017 570.96
  4841. L 527.606534 566.468911
  4842. L 528.874716 570.96
  4843. L 530.142898 568.714455
  4844. L 531.41108 570.96
  4845. L 532.679261 570.96
  4846. L 533.947443 566.468911
  4847. L 535.215625 568.714455
  4848. L 536.483807 566.468911
  4849. L 537.751989 570.96
  4850. L 540.288352 561.977822
  4851. L 541.556534 570.96
  4852. L 542.824716 566.468911
  4853. L 544.092898 566.468911
  4854. L 545.36108 568.714455
  4855. L 546.629261 568.714455
  4856. L 547.897443 566.468911
  4857. L 549.165625 566.468911
  4858. L 549.165625 566.468911
  4859. " style="fill:none;stroke:#1f77b4;stroke-linecap:square;stroke-width:1.5;"/>
  4860. </g>
  4861. <g id="text_27">
  4862. <!-- Baseline: 1 Hz Bias: 0.33 -->
  4863. <defs>
  4864. <path d="M 19.671875 34.8125
  4865. L 19.671875 8.109375
  4866. L 35.5 8.109375
  4867. Q 43.453125 8.109375 47.28125 11.40625
  4868. Q 51.125 14.703125 51.125 21.484375
  4869. Q 51.125 28.328125 47.28125 31.5625
  4870. Q 43.453125 34.8125 35.5 34.8125
  4871. z
  4872. M 19.671875 64.796875
  4873. L 19.671875 42.828125
  4874. L 34.28125 42.828125
  4875. Q 41.5 42.828125 45.03125 45.53125
  4876. Q 48.578125 48.25 48.578125 53.8125
  4877. Q 48.578125 59.328125 45.03125 62.0625
  4878. Q 41.5 64.796875 34.28125 64.796875
  4879. z
  4880. M 9.8125 72.90625
  4881. L 35.015625 72.90625
  4882. Q 46.296875 72.90625 52.390625 68.21875
  4883. Q 58.5 63.53125 58.5 54.890625
  4884. Q 58.5 48.1875 55.375 44.234375
  4885. Q 52.25 40.28125 46.1875 39.3125
  4886. Q 53.46875 37.75 57.5 32.78125
  4887. Q 61.53125 27.828125 61.53125 20.40625
  4888. Q 61.53125 10.640625 54.890625 5.3125
  4889. Q 48.25 0 35.984375 0
  4890. L 9.8125 0
  4891. z
  4892. " id="DejaVuSans-66"/>
  4893. <path d="M 11.71875 12.40625
  4894. L 22.015625 12.40625
  4895. L 22.015625 0
  4896. L 11.71875 0
  4897. z
  4898. M 11.71875 51.703125
  4899. L 22.015625 51.703125
  4900. L 22.015625 39.3125
  4901. L 11.71875 39.3125
  4902. z
  4903. " id="DejaVuSans-58"/>
  4904. <path d="M 9.8125 72.90625
  4905. L 19.671875 72.90625
  4906. L 19.671875 43.015625
  4907. L 55.515625 43.015625
  4908. L 55.515625 72.90625
  4909. L 65.375 72.90625
  4910. L 65.375 0
  4911. L 55.515625 0
  4912. L 55.515625 34.71875
  4913. L 19.671875 34.71875
  4914. L 19.671875 0
  4915. L 9.8125 0
  4916. z
  4917. " id="DejaVuSans-72"/>
  4918. <path d="M 5.515625 54.6875
  4919. L 48.1875 54.6875
  4920. L 48.1875 46.484375
  4921. L 14.40625 7.171875
  4922. L 48.1875 7.171875
  4923. L 48.1875 0
  4924. L 4.296875 0
  4925. L 4.296875 8.203125
  4926. L 38.09375 47.515625
  4927. L 5.515625 47.515625
  4928. z
  4929. " id="DejaVuSans-122"/>
  4930. </defs>
  4931. <g transform="translate(221.625625 338.16)scale(0.12 -0.12)">
  4932. <use xlink:href="#DejaVuSans-66"/>
  4933. <use x="68.603516" xlink:href="#DejaVuSans-97"/>
  4934. <use x="129.882812" xlink:href="#DejaVuSans-115"/>
  4935. <use x="181.982422" xlink:href="#DejaVuSans-101"/>
  4936. <use x="243.505859" xlink:href="#DejaVuSans-108"/>
  4937. <use x="271.289062" xlink:href="#DejaVuSans-105"/>
  4938. <use x="299.072266" xlink:href="#DejaVuSans-110"/>
  4939. <use x="362.451172" xlink:href="#DejaVuSans-101"/>
  4940. <use x="423.974609" xlink:href="#DejaVuSans-58"/>
  4941. <use x="457.666016" xlink:href="#DejaVuSans-32"/>
  4942. <use x="489.453125" xlink:href="#DejaVuSans-32"/>
  4943. <use x="521.240234" xlink:href="#DejaVuSans-49"/>
  4944. <use x="584.863281" xlink:href="#DejaVuSans-32"/>
  4945. <use x="616.650391" xlink:href="#DejaVuSans-72"/>
  4946. <use x="691.845703" xlink:href="#DejaVuSans-122"/>
  4947. <use x="744.335938" xlink:href="#DejaVuSans-32"/>
  4948. <use x="776.123047" xlink:href="#DejaVuSans-66"/>
  4949. <use x="844.726562" xlink:href="#DejaVuSans-105"/>
  4950. <use x="872.509766" xlink:href="#DejaVuSans-97"/>
  4951. <use x="933.789062" xlink:href="#DejaVuSans-115"/>
  4952. <use x="985.888672" xlink:href="#DejaVuSans-58"/>
  4953. <use x="1019.580078" xlink:href="#DejaVuSans-32"/>
  4954. <use x="1051.367188" xlink:href="#DejaVuSans-48"/>
  4955. <use x="1114.990234" xlink:href="#DejaVuSans-46"/>
  4956. <use x="1146.777344" xlink:href="#DejaVuSans-51"/>
  4957. <use x="1210.400391" xlink:href="#DejaVuSans-51"/>
  4958. </g>
  4959. </g>
  4960. </g>
  4961. <g id="text_28">
  4962. <!-- 20180712_YE_60MEA_Marmoset_eye1_42_kilosorted -->
  4963. <defs>
  4964. <path d="M 50.984375 -16.609375
  4965. L 50.984375 -23.578125
  4966. L -0.984375 -23.578125
  4967. L -0.984375 -16.609375
  4968. z
  4969. " id="DejaVuSans-95"/>
  4970. <path d="M -0.203125 72.90625
  4971. L 10.40625 72.90625
  4972. L 30.609375 42.921875
  4973. L 50.6875 72.90625
  4974. L 61.28125 72.90625
  4975. L 35.5 34.71875
  4976. L 35.5 0
  4977. L 25.59375 0
  4978. L 25.59375 34.71875
  4979. z
  4980. " id="DejaVuSans-89"/>
  4981. <path d="M 9.8125 72.90625
  4982. L 55.90625 72.90625
  4983. L 55.90625 64.59375
  4984. L 19.671875 64.59375
  4985. L 19.671875 43.015625
  4986. L 54.390625 43.015625
  4987. L 54.390625 34.71875
  4988. L 19.671875 34.71875
  4989. L 19.671875 8.296875
  4990. L 56.78125 8.296875
  4991. L 56.78125 0
  4992. L 9.8125 0
  4993. z
  4994. " id="DejaVuSans-69"/>
  4995. <path d="M 9.8125 72.90625
  4996. L 24.515625 72.90625
  4997. L 43.109375 23.296875
  4998. L 61.8125 72.90625
  4999. L 76.515625 72.90625
  5000. L 76.515625 0
  5001. L 66.890625 0
  5002. L 66.890625 64.015625
  5003. L 48.09375 14.015625
  5004. L 38.1875 14.015625
  5005. L 19.390625 64.015625
  5006. L 19.390625 0
  5007. L 9.8125 0
  5008. z
  5009. " id="DejaVuSans-77"/>
  5010. <path d="M 34.1875 63.1875
  5011. L 20.796875 26.90625
  5012. L 47.609375 26.90625
  5013. z
  5014. M 28.609375 72.90625
  5015. L 39.796875 72.90625
  5016. L 67.578125 0
  5017. L 57.328125 0
  5018. L 50.6875 18.703125
  5019. L 17.828125 18.703125
  5020. L 11.1875 0
  5021. L 0.78125 0
  5022. z
  5023. " id="DejaVuSans-65"/>
  5024. <path d="M 30.609375 48.390625
  5025. Q 23.390625 48.390625 19.1875 42.75
  5026. Q 14.984375 37.109375 14.984375 27.296875
  5027. Q 14.984375 17.484375 19.15625 11.84375
  5028. Q 23.34375 6.203125 30.609375 6.203125
  5029. Q 37.796875 6.203125 41.984375 11.859375
  5030. Q 46.1875 17.53125 46.1875 27.296875
  5031. Q 46.1875 37.015625 41.984375 42.703125
  5032. Q 37.796875 48.390625 30.609375 48.390625
  5033. z
  5034. M 30.609375 56
  5035. Q 42.328125 56 49.015625 48.375
  5036. Q 55.71875 40.765625 55.71875 27.296875
  5037. Q 55.71875 13.875 49.015625 6.21875
  5038. Q 42.328125 -1.421875 30.609375 -1.421875
  5039. Q 18.84375 -1.421875 12.171875 6.21875
  5040. Q 5.515625 13.875 5.515625 27.296875
  5041. Q 5.515625 40.765625 12.171875 48.375
  5042. Q 18.84375 56 30.609375 56
  5043. z
  5044. " id="DejaVuSans-111"/>
  5045. <path d="M 32.171875 -5.078125
  5046. Q 28.375 -14.84375 24.75 -17.8125
  5047. Q 21.140625 -20.796875 15.09375 -20.796875
  5048. L 7.90625 -20.796875
  5049. L 7.90625 -13.28125
  5050. L 13.1875 -13.28125
  5051. Q 16.890625 -13.28125 18.9375 -11.515625
  5052. Q 21 -9.765625 23.484375 -3.21875
  5053. L 25.09375 0.875
  5054. L 2.984375 54.6875
  5055. L 12.5 54.6875
  5056. L 29.59375 11.921875
  5057. L 46.6875 54.6875
  5058. L 56.203125 54.6875
  5059. z
  5060. " id="DejaVuSans-121"/>
  5061. <path d="M 45.40625 46.390625
  5062. L 45.40625 75.984375
  5063. L 54.390625 75.984375
  5064. L 54.390625 0
  5065. L 45.40625 0
  5066. L 45.40625 8.203125
  5067. Q 42.578125 3.328125 38.25 0.953125
  5068. Q 33.9375 -1.421875 27.875 -1.421875
  5069. Q 17.96875 -1.421875 11.734375 6.484375
  5070. Q 5.515625 14.40625 5.515625 27.296875
  5071. Q 5.515625 40.1875 11.734375 48.09375
  5072. Q 17.96875 56 27.875 56
  5073. Q 33.9375 56 38.25 53.625
  5074. Q 42.578125 51.265625 45.40625 46.390625
  5075. z
  5076. M 14.796875 27.296875
  5077. Q 14.796875 17.390625 18.875 11.75
  5078. Q 22.953125 6.109375 30.078125 6.109375
  5079. Q 37.203125 6.109375 41.296875 11.75
  5080. Q 45.40625 17.390625 45.40625 27.296875
  5081. Q 45.40625 37.203125 41.296875 42.84375
  5082. Q 37.203125 48.484375 30.078125 48.484375
  5083. Q 22.953125 48.484375 18.875 42.84375
  5084. Q 14.796875 37.203125 14.796875 27.296875
  5085. z
  5086. " id="DejaVuSans-100"/>
  5087. </defs>
  5088. <g transform="translate(131.274063 16.318125)scale(0.12 -0.12)">
  5089. <use xlink:href="#DejaVuSans-50"/>
  5090. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  5091. <use x="127.246094" xlink:href="#DejaVuSans-49"/>
  5092. <use x="190.869141" xlink:href="#DejaVuSans-56"/>
  5093. <use x="254.492188" xlink:href="#DejaVuSans-48"/>
  5094. <use x="318.115234" xlink:href="#DejaVuSans-55"/>
  5095. <use x="381.738281" xlink:href="#DejaVuSans-49"/>
  5096. <use x="445.361328" xlink:href="#DejaVuSans-50"/>
  5097. <use x="508.984375" xlink:href="#DejaVuSans-95"/>
  5098. <use x="558.984375" xlink:href="#DejaVuSans-89"/>
  5099. <use x="620.068359" xlink:href="#DejaVuSans-69"/>
  5100. <use x="683.251953" xlink:href="#DejaVuSans-95"/>
  5101. <use x="733.251953" xlink:href="#DejaVuSans-54"/>
  5102. <use x="796.875" xlink:href="#DejaVuSans-48"/>
  5103. <use x="860.498047" xlink:href="#DejaVuSans-77"/>
  5104. <use x="946.777344" xlink:href="#DejaVuSans-69"/>
  5105. <use x="1009.960938" xlink:href="#DejaVuSans-65"/>
  5106. <use x="1078.369141" xlink:href="#DejaVuSans-95"/>
  5107. <use x="1128.369141" xlink:href="#DejaVuSans-77"/>
  5108. <use x="1214.648438" xlink:href="#DejaVuSans-97"/>
  5109. <use x="1275.927734" xlink:href="#DejaVuSans-114"/>
  5110. <use x="1317.025391" xlink:href="#DejaVuSans-109"/>
  5111. <use x="1414.4375" xlink:href="#DejaVuSans-111"/>
  5112. <use x="1475.619141" xlink:href="#DejaVuSans-115"/>
  5113. <use x="1527.71875" xlink:href="#DejaVuSans-101"/>
  5114. <use x="1589.242188" xlink:href="#DejaVuSans-116"/>
  5115. <use x="1628.451172" xlink:href="#DejaVuSans-95"/>
  5116. <use x="1678.451172" xlink:href="#DejaVuSans-101"/>
  5117. <use x="1739.974609" xlink:href="#DejaVuSans-121"/>
  5118. <use x="1799.154297" xlink:href="#DejaVuSans-101"/>
  5119. <use x="1860.677734" xlink:href="#DejaVuSans-49"/>
  5120. <use x="1924.300781" xlink:href="#DejaVuSans-95"/>
  5121. <use x="1974.300781" xlink:href="#DejaVuSans-52"/>
  5122. <use x="2037.923828" xlink:href="#DejaVuSans-50"/>
  5123. <use x="2101.546875" xlink:href="#DejaVuSans-95"/>
  5124. <use x="2151.546875" xlink:href="#DejaVuSans-107"/>
  5125. <use x="2209.457031" xlink:href="#DejaVuSans-105"/>
  5126. <use x="2237.240234" xlink:href="#DejaVuSans-108"/>
  5127. <use x="2265.023438" xlink:href="#DejaVuSans-111"/>
  5128. <use x="2326.205078" xlink:href="#DejaVuSans-115"/>
  5129. <use x="2378.304688" xlink:href="#DejaVuSans-111"/>
  5130. <use x="2439.486328" xlink:href="#DejaVuSans-114"/>
  5131. <use x="2480.599609" xlink:href="#DejaVuSans-116"/>
  5132. <use x="2519.808594" xlink:href="#DejaVuSans-101"/>
  5133. <use x="2581.332031" xlink:href="#DejaVuSans-100"/>
  5134. </g>
  5135. <!-- 3_onoffsteps30preframes90contrast1 -->
  5136. <defs>
  5137. <path d="M 37.109375 75.984375
  5138. L 37.109375 68.5
  5139. L 28.515625 68.5
  5140. Q 23.6875 68.5 21.796875 66.546875
  5141. Q 19.921875 64.59375 19.921875 59.515625
  5142. L 19.921875 54.6875
  5143. L 34.71875 54.6875
  5144. L 34.71875 47.703125
  5145. L 19.921875 47.703125
  5146. L 19.921875 0
  5147. L 10.890625 0
  5148. L 10.890625 47.703125
  5149. L 2.296875 47.703125
  5150. L 2.296875 54.6875
  5151. L 10.890625 54.6875
  5152. L 10.890625 58.5
  5153. Q 10.890625 67.625 15.140625 71.796875
  5154. Q 19.390625 75.984375 28.609375 75.984375
  5155. z
  5156. " id="DejaVuSans-102"/>
  5157. <path d="M 10.984375 1.515625
  5158. L 10.984375 10.5
  5159. Q 14.703125 8.734375 18.5 7.8125
  5160. Q 22.3125 6.890625 25.984375 6.890625
  5161. Q 35.75 6.890625 40.890625 13.453125
  5162. Q 46.046875 20.015625 46.78125 33.40625
  5163. Q 43.953125 29.203125 39.59375 26.953125
  5164. Q 35.25 24.703125 29.984375 24.703125
  5165. Q 19.046875 24.703125 12.671875 31.3125
  5166. Q 6.296875 37.9375 6.296875 49.421875
  5167. Q 6.296875 60.640625 12.9375 67.421875
  5168. Q 19.578125 74.21875 30.609375 74.21875
  5169. Q 43.265625 74.21875 49.921875 64.515625
  5170. Q 56.59375 54.828125 56.59375 36.375
  5171. Q 56.59375 19.140625 48.40625 8.859375
  5172. Q 40.234375 -1.421875 26.421875 -1.421875
  5173. Q 22.703125 -1.421875 18.890625 -0.6875
  5174. Q 15.09375 0.046875 10.984375 1.515625
  5175. z
  5176. M 30.609375 32.421875
  5177. Q 37.25 32.421875 41.125 36.953125
  5178. Q 45.015625 41.5 45.015625 49.421875
  5179. Q 45.015625 57.28125 41.125 61.84375
  5180. Q 37.25 66.40625 30.609375 66.40625
  5181. Q 23.96875 66.40625 20.09375 61.84375
  5182. Q 16.21875 57.28125 16.21875 49.421875
  5183. Q 16.21875 41.5 20.09375 36.953125
  5184. Q 23.96875 32.421875 30.609375 32.421875
  5185. z
  5186. " id="DejaVuSans-57"/>
  5187. <path d="M 48.78125 52.59375
  5188. L 48.78125 44.1875
  5189. Q 44.96875 46.296875 41.140625 47.34375
  5190. Q 37.3125 48.390625 33.40625 48.390625
  5191. Q 24.65625 48.390625 19.8125 42.84375
  5192. Q 14.984375 37.3125 14.984375 27.296875
  5193. Q 14.984375 17.28125 19.8125 11.734375
  5194. Q 24.65625 6.203125 33.40625 6.203125
  5195. Q 37.3125 6.203125 41.140625 7.25
  5196. Q 44.96875 8.296875 48.78125 10.40625
  5197. L 48.78125 2.09375
  5198. Q 45.015625 0.34375 40.984375 -0.53125
  5199. Q 36.96875 -1.421875 32.421875 -1.421875
  5200. Q 20.0625 -1.421875 12.78125 6.34375
  5201. Q 5.515625 14.109375 5.515625 27.296875
  5202. Q 5.515625 40.671875 12.859375 48.328125
  5203. Q 20.21875 56 33.015625 56
  5204. Q 37.15625 56 41.109375 55.140625
  5205. Q 45.0625 54.296875 48.78125 52.59375
  5206. z
  5207. " id="DejaVuSans-99"/>
  5208. </defs>
  5209. <g transform="translate(176.9575 30.08925)scale(0.12 -0.12)">
  5210. <use xlink:href="#DejaVuSans-51"/>
  5211. <use x="63.623047" xlink:href="#DejaVuSans-95"/>
  5212. <use x="113.623047" xlink:href="#DejaVuSans-111"/>
  5213. <use x="174.804688" xlink:href="#DejaVuSans-110"/>
  5214. <use x="238.183594" xlink:href="#DejaVuSans-111"/>
  5215. <use x="299.365234" xlink:href="#DejaVuSans-102"/>
  5216. <use x="334.570312" xlink:href="#DejaVuSans-102"/>
  5217. <use x="369.775391" xlink:href="#DejaVuSans-115"/>
  5218. <use x="421.875" xlink:href="#DejaVuSans-116"/>
  5219. <use x="461.083984" xlink:href="#DejaVuSans-101"/>
  5220. <use x="522.607422" xlink:href="#DejaVuSans-112"/>
  5221. <use x="586.083984" xlink:href="#DejaVuSans-115"/>
  5222. <use x="638.183594" xlink:href="#DejaVuSans-51"/>
  5223. <use x="701.806641" xlink:href="#DejaVuSans-48"/>
  5224. <use x="765.429688" xlink:href="#DejaVuSans-112"/>
  5225. <use x="828.90625" xlink:href="#DejaVuSans-114"/>
  5226. <use x="869.988281" xlink:href="#DejaVuSans-101"/>
  5227. <use x="931.511719" xlink:href="#DejaVuSans-102"/>
  5228. <use x="966.716797" xlink:href="#DejaVuSans-114"/>
  5229. <use x="1007.830078" xlink:href="#DejaVuSans-97"/>
  5230. <use x="1069.109375" xlink:href="#DejaVuSans-109"/>
  5231. <use x="1166.521484" xlink:href="#DejaVuSans-101"/>
  5232. <use x="1228.044922" xlink:href="#DejaVuSans-115"/>
  5233. <use x="1280.144531" xlink:href="#DejaVuSans-57"/>
  5234. <use x="1343.767578" xlink:href="#DejaVuSans-48"/>
  5235. <use x="1407.390625" xlink:href="#DejaVuSans-99"/>
  5236. <use x="1462.371094" xlink:href="#DejaVuSans-111"/>
  5237. <use x="1523.552734" xlink:href="#DejaVuSans-110"/>
  5238. <use x="1586.931641" xlink:href="#DejaVuSans-116"/>
  5239. <use x="1626.140625" xlink:href="#DejaVuSans-114"/>
  5240. <use x="1667.253906" xlink:href="#DejaVuSans-97"/>
  5241. <use x="1728.533203" xlink:href="#DejaVuSans-115"/>
  5242. <use x="1780.632812" xlink:href="#DejaVuSans-116"/>
  5243. <use x="1819.841797" xlink:href="#DejaVuSans-49"/>
  5244. </g>
  5245. <!-- 04402 Rating: 4 -->
  5246. <defs>
  5247. <path d="M 44.390625 34.1875
  5248. Q 47.5625 33.109375 50.5625 29.59375
  5249. Q 53.5625 26.078125 56.59375 19.921875
  5250. L 66.609375 0
  5251. L 56 0
  5252. L 46.6875 18.703125
  5253. Q 43.0625 26.03125 39.671875 28.421875
  5254. Q 36.28125 30.8125 30.421875 30.8125
  5255. L 19.671875 30.8125
  5256. L 19.671875 0
  5257. L 9.8125 0
  5258. L 9.8125 72.90625
  5259. L 32.078125 72.90625
  5260. Q 44.578125 72.90625 50.734375 67.671875
  5261. Q 56.890625 62.453125 56.890625 51.90625
  5262. Q 56.890625 45.015625 53.6875 40.46875
  5263. Q 50.484375 35.9375 44.390625 34.1875
  5264. z
  5265. M 19.671875 64.796875
  5266. L 19.671875 38.921875
  5267. L 32.078125 38.921875
  5268. Q 39.203125 38.921875 42.84375 42.21875
  5269. Q 46.484375 45.515625 46.484375 51.90625
  5270. Q 46.484375 58.296875 42.84375 61.546875
  5271. Q 39.203125 64.796875 32.078125 64.796875
  5272. z
  5273. " id="DejaVuSans-82"/>
  5274. </defs>
  5275. <g transform="translate(241.750938 43.860375)scale(0.12 -0.12)">
  5276. <use xlink:href="#DejaVuSans-48"/>
  5277. <use x="63.623047" xlink:href="#DejaVuSans-52"/>
  5278. <use x="127.246094" xlink:href="#DejaVuSans-52"/>
  5279. <use x="190.869141" xlink:href="#DejaVuSans-48"/>
  5280. <use x="254.492188" xlink:href="#DejaVuSans-50"/>
  5281. <use x="318.115234" xlink:href="#DejaVuSans-32"/>
  5282. <use x="349.902344" xlink:href="#DejaVuSans-82"/>
  5283. <use x="419.353516" xlink:href="#DejaVuSans-97"/>
  5284. <use x="480.632812" xlink:href="#DejaVuSans-116"/>
  5285. <use x="519.841797" xlink:href="#DejaVuSans-105"/>
  5286. <use x="547.625" xlink:href="#DejaVuSans-110"/>
  5287. <use x="611.003906" xlink:href="#DejaVuSans-103"/>
  5288. <use x="674.480469" xlink:href="#DejaVuSans-58"/>
  5289. <use x="708.171875" xlink:href="#DejaVuSans-32"/>
  5290. <use x="739.958984" xlink:href="#DejaVuSans-52"/>
  5291. </g>
  5292. <!-- -->
  5293. <g transform="translate(289.965625 57.29775)scale(0.12 -0.12)"/>
  5294. </g>
  5295. </g>
  5296. <defs>
  5297. <clipPath id="p6343eaa6e8">
  5298. <rect height="226.8" width="502.2" x="46.965625" y="72"/>
  5299. </clipPath>
  5300. <clipPath id="pf06378b25d">
  5301. <rect height="226.8" width="502.2" x="46.965625" y="344.16"/>
  5302. </clipPath>
  5303. </defs>
  5304. </svg>