00901.svg 134 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495
  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 (http://matplotlib.org/) -->
  5. <svg height="598.79625pt" version="1.1" viewBox="0 0 564.317188 598.79625" width="564.317188pt" 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 598.79625
  14. L 564.317188 598.79625
  15. L 564.317188 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 294.381818
  23. L 549.165625 294.381818
  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(#pabe1935394)" d="M 46.965625 72
  31. L 235.290625 72
  32. L 235.290625 294.381818
  33. L 46.965625 294.381818
  34. z
  35. " style="opacity:0.5;"/>
  36. </g>
  37. <g id="patch_4">
  38. <path clip-path="url(#pabe1935394)" d="M 235.290625 72
  39. L 298.065625 72
  40. L 298.065625 294.381818
  41. L 235.290625 294.381818
  42. z
  43. " style="fill:none;opacity:0;"/>
  44. </g>
  45. <g id="patch_5">
  46. <path clip-path="url(#pabe1935394)" d="M 298.065625 72
  47. L 486.390625 72
  48. L 486.390625 294.381818
  49. L 298.065625 294.381818
  50. z
  51. " style="opacity:0.5;"/>
  52. </g>
  53. <g id="patch_6">
  54. <path clip-path="url(#pabe1935394)" d="M 486.390625 72
  55. L 549.165625 72
  56. L 549.165625 294.381818
  57. L 486.390625 294.381818
  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="m9741601051" 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="#m9741601051" y="74.443756"/>
  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-30"/>
  98. </defs>
  99. <g transform="translate(33.603125 78.242975)scale(0.1 -0.1)">
  100. <use xlink:href="#DejaVuSans-30"/>
  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="#m9741601051" y="123.318881"/>
  108. </g>
  109. </g>
  110. <g id="text_2">
  111. <!-- 20 -->
  112. <defs>
  113. <path d="M 19.1875 8.296875
  114. L 53.609375 8.296875
  115. L 53.609375 0
  116. L 7.328125 0
  117. L 7.328125 8.296875
  118. Q 12.9375 14.109375 22.625 23.890625
  119. Q 32.328125 33.6875 34.8125 36.53125
  120. Q 39.546875 41.84375 41.421875 45.53125
  121. Q 43.3125 49.21875 43.3125 52.78125
  122. Q 43.3125 58.59375 39.234375 62.25
  123. Q 35.15625 65.921875 28.609375 65.921875
  124. Q 23.96875 65.921875 18.8125 64.3125
  125. Q 13.671875 62.703125 7.8125 59.421875
  126. L 7.8125 69.390625
  127. Q 13.765625 71.78125 18.9375 73
  128. Q 24.125 74.21875 28.421875 74.21875
  129. Q 39.75 74.21875 46.484375 68.546875
  130. Q 53.21875 62.890625 53.21875 53.421875
  131. Q 53.21875 48.921875 51.53125 44.890625
  132. Q 49.859375 40.875 45.40625 35.40625
  133. Q 44.1875 33.984375 37.640625 27.21875
  134. Q 31.109375 20.453125 19.1875 8.296875
  135. z
  136. " id="DejaVuSans-32"/>
  137. </defs>
  138. <g transform="translate(27.240625 127.1181)scale(0.1 -0.1)">
  139. <use xlink:href="#DejaVuSans-32"/>
  140. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  141. </g>
  142. </g>
  143. </g>
  144. <g id="ytick_3">
  145. <g id="line2d_3">
  146. <g>
  147. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m9741601051" y="172.194006"/>
  148. </g>
  149. </g>
  150. <g id="text_3">
  151. <!-- 40 -->
  152. <defs>
  153. <path d="M 37.796875 64.3125
  154. L 12.890625 25.390625
  155. L 37.796875 25.390625
  156. z
  157. M 35.203125 72.90625
  158. L 47.609375 72.90625
  159. L 47.609375 25.390625
  160. L 58.015625 25.390625
  161. L 58.015625 17.1875
  162. L 47.609375 17.1875
  163. L 47.609375 0
  164. L 37.796875 0
  165. L 37.796875 17.1875
  166. L 4.890625 17.1875
  167. L 4.890625 26.703125
  168. z
  169. " id="DejaVuSans-34"/>
  170. </defs>
  171. <g transform="translate(27.240625 175.993225)scale(0.1 -0.1)">
  172. <use xlink:href="#DejaVuSans-34"/>
  173. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  174. </g>
  175. </g>
  176. </g>
  177. <g id="ytick_4">
  178. <g id="line2d_4">
  179. <g>
  180. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m9741601051" y="221.069131"/>
  181. </g>
  182. </g>
  183. <g id="text_4">
  184. <!-- 60 -->
  185. <defs>
  186. <path d="M 33.015625 40.375
  187. Q 26.375 40.375 22.484375 35.828125
  188. Q 18.609375 31.296875 18.609375 23.390625
  189. Q 18.609375 15.53125 22.484375 10.953125
  190. Q 26.375 6.390625 33.015625 6.390625
  191. Q 39.65625 6.390625 43.53125 10.953125
  192. Q 47.40625 15.53125 47.40625 23.390625
  193. Q 47.40625 31.296875 43.53125 35.828125
  194. Q 39.65625 40.375 33.015625 40.375
  195. z
  196. M 52.59375 71.296875
  197. L 52.59375 62.3125
  198. Q 48.875 64.0625 45.09375 64.984375
  199. Q 41.3125 65.921875 37.59375 65.921875
  200. Q 27.828125 65.921875 22.671875 59.328125
  201. Q 17.53125 52.734375 16.796875 39.40625
  202. Q 19.671875 43.65625 24.015625 45.921875
  203. Q 28.375 48.1875 33.59375 48.1875
  204. Q 44.578125 48.1875 50.953125 41.515625
  205. Q 57.328125 34.859375 57.328125 23.390625
  206. Q 57.328125 12.15625 50.6875 5.359375
  207. Q 44.046875 -1.421875 33.015625 -1.421875
  208. Q 20.359375 -1.421875 13.671875 8.265625
  209. Q 6.984375 17.96875 6.984375 36.375
  210. Q 6.984375 53.65625 15.1875 63.9375
  211. Q 23.390625 74.21875 37.203125 74.21875
  212. Q 40.921875 74.21875 44.703125 73.484375
  213. Q 48.484375 72.75 52.59375 71.296875
  214. z
  215. " id="DejaVuSans-36"/>
  216. </defs>
  217. <g transform="translate(27.240625 224.86835)scale(0.1 -0.1)">
  218. <use xlink:href="#DejaVuSans-36"/>
  219. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  220. </g>
  221. </g>
  222. </g>
  223. <g id="ytick_5">
  224. <g id="line2d_5">
  225. <g>
  226. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m9741601051" y="269.944256"/>
  227. </g>
  228. </g>
  229. <g id="text_5">
  230. <!-- 80 -->
  231. <defs>
  232. <path d="M 31.78125 34.625
  233. Q 24.75 34.625 20.71875 30.859375
  234. Q 16.703125 27.09375 16.703125 20.515625
  235. Q 16.703125 13.921875 20.71875 10.15625
  236. Q 24.75 6.390625 31.78125 6.390625
  237. Q 38.8125 6.390625 42.859375 10.171875
  238. Q 46.921875 13.96875 46.921875 20.515625
  239. Q 46.921875 27.09375 42.890625 30.859375
  240. Q 38.875 34.625 31.78125 34.625
  241. z
  242. M 21.921875 38.8125
  243. Q 15.578125 40.375 12.03125 44.71875
  244. Q 8.5 49.078125 8.5 55.328125
  245. Q 8.5 64.0625 14.71875 69.140625
  246. Q 20.953125 74.21875 31.78125 74.21875
  247. Q 42.671875 74.21875 48.875 69.140625
  248. Q 55.078125 64.0625 55.078125 55.328125
  249. Q 55.078125 49.078125 51.53125 44.71875
  250. Q 48 40.375 41.703125 38.8125
  251. Q 48.828125 37.15625 52.796875 32.3125
  252. Q 56.78125 27.484375 56.78125 20.515625
  253. Q 56.78125 9.90625 50.3125 4.234375
  254. Q 43.84375 -1.421875 31.78125 -1.421875
  255. Q 19.734375 -1.421875 13.25 4.234375
  256. Q 6.78125 9.90625 6.78125 20.515625
  257. Q 6.78125 27.484375 10.78125 32.3125
  258. Q 14.796875 37.15625 21.921875 38.8125
  259. z
  260. M 18.3125 54.390625
  261. Q 18.3125 48.734375 21.84375 45.5625
  262. Q 25.390625 42.390625 31.78125 42.390625
  263. Q 38.140625 42.390625 41.71875 45.5625
  264. Q 45.3125 48.734375 45.3125 54.390625
  265. Q 45.3125 60.0625 41.71875 63.234375
  266. Q 38.140625 66.40625 31.78125 66.40625
  267. Q 25.390625 66.40625 21.84375 63.234375
  268. Q 18.3125 60.0625 18.3125 54.390625
  269. z
  270. " id="DejaVuSans-38"/>
  271. </defs>
  272. <g transform="translate(27.240625 273.743474)scale(0.1 -0.1)">
  273. <use xlink:href="#DejaVuSans-38"/>
  274. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  275. </g>
  276. </g>
  277. </g>
  278. <g id="text_6">
  279. <!-- Trial -->
  280. <defs>
  281. <path d="M -0.296875 72.90625
  282. L 61.375 72.90625
  283. L 61.375 64.59375
  284. L 35.5 64.59375
  285. L 35.5 0
  286. L 25.59375 0
  287. L 25.59375 64.59375
  288. L -0.296875 64.59375
  289. z
  290. " id="DejaVuSans-54"/>
  291. <path d="M 41.109375 46.296875
  292. Q 39.59375 47.171875 37.8125 47.578125
  293. Q 36.03125 48 33.890625 48
  294. Q 26.265625 48 22.1875 43.046875
  295. Q 18.109375 38.09375 18.109375 28.8125
  296. L 18.109375 0
  297. L 9.078125 0
  298. L 9.078125 54.6875
  299. L 18.109375 54.6875
  300. L 18.109375 46.1875
  301. Q 20.953125 51.171875 25.484375 53.578125
  302. Q 30.03125 56 36.53125 56
  303. Q 37.453125 56 38.578125 55.875
  304. Q 39.703125 55.765625 41.0625 55.515625
  305. z
  306. " id="DejaVuSans-72"/>
  307. <path d="M 9.421875 54.6875
  308. L 18.40625 54.6875
  309. L 18.40625 0
  310. L 9.421875 0
  311. z
  312. M 9.421875 75.984375
  313. L 18.40625 75.984375
  314. L 18.40625 64.59375
  315. L 9.421875 64.59375
  316. z
  317. " id="DejaVuSans-69"/>
  318. <path d="M 34.28125 27.484375
  319. Q 23.390625 27.484375 19.1875 25
  320. Q 14.984375 22.515625 14.984375 16.5
  321. Q 14.984375 11.71875 18.140625 8.90625
  322. Q 21.296875 6.109375 26.703125 6.109375
  323. Q 34.1875 6.109375 38.703125 11.40625
  324. Q 43.21875 16.703125 43.21875 25.484375
  325. L 43.21875 27.484375
  326. z
  327. M 52.203125 31.203125
  328. L 52.203125 0
  329. L 43.21875 0
  330. L 43.21875 8.296875
  331. Q 40.140625 3.328125 35.546875 0.953125
  332. Q 30.953125 -1.421875 24.3125 -1.421875
  333. Q 15.921875 -1.421875 10.953125 3.296875
  334. Q 6 8.015625 6 15.921875
  335. Q 6 25.140625 12.171875 29.828125
  336. Q 18.359375 34.515625 30.609375 34.515625
  337. L 43.21875 34.515625
  338. L 43.21875 35.40625
  339. Q 43.21875 41.609375 39.140625 45
  340. Q 35.0625 48.390625 27.6875 48.390625
  341. Q 23 48.390625 18.546875 47.265625
  342. Q 14.109375 46.140625 10.015625 43.890625
  343. L 10.015625 52.203125
  344. Q 14.9375 54.109375 19.578125 55.046875
  345. Q 24.21875 56 28.609375 56
  346. Q 40.484375 56 46.34375 49.84375
  347. Q 52.203125 43.703125 52.203125 31.203125
  348. z
  349. " id="DejaVuSans-61"/>
  350. <path d="M 9.421875 75.984375
  351. L 18.40625 75.984375
  352. L 18.40625 0
  353. L 9.421875 0
  354. z
  355. " id="DejaVuSans-6c"/>
  356. </defs>
  357. <g transform="translate(21.160938 194.131534)rotate(-90)scale(0.1 -0.1)">
  358. <use xlink:href="#DejaVuSans-54"/>
  359. <use x="60.865234" xlink:href="#DejaVuSans-72"/>
  360. <use x="101.978516" xlink:href="#DejaVuSans-69"/>
  361. <use x="129.761719" xlink:href="#DejaVuSans-61"/>
  362. <use x="191.041016" xlink:href="#DejaVuSans-6c"/>
  363. </g>
  364. </g>
  365. </g>
  366. <g id="EventCollection_1">
  367. <path clip-path="url(#pabe1935394)" d="M 300.661999 75.665634
  368. L 300.661999 73.221878
  369. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  370. <path clip-path="url(#pabe1935394)" d="M 302.419699 75.665634
  371. L 302.419699 73.221878
  372. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  373. <path clip-path="url(#pabe1935394)" d="M 486.059173 75.665634
  374. L 486.059173 73.221878
  375. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  376. <path clip-path="url(#pabe1935394)" d="M 488.193523 75.665634
  377. L 488.193523 73.221878
  378. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  379. <path clip-path="url(#pabe1935394)" d="M 489.634837 75.665634
  380. L 489.634837 73.221878
  381. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  382. </g>
  383. <g id="EventCollection_2">
  384. <path clip-path="url(#pabe1935394)" d="M 300.747373 78.109391
  385. L 300.747373 75.665634
  386. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  387. <path clip-path="url(#pabe1935394)" d="M 301.063759 78.109391
  388. L 301.063759 75.665634
  389. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  390. <path clip-path="url(#pabe1935394)" d="M 302.525161 78.109391
  391. L 302.525161 75.665634
  392. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  393. <path clip-path="url(#pabe1935394)" d="M 304.970875 78.109391
  394. L 304.970875 75.665634
  395. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  396. <path clip-path="url(#pabe1935394)" d="M 305.874835 78.109391
  397. L 305.874835 75.665634
  398. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  399. <path clip-path="url(#pabe1935394)" d="M 486.601549 78.109391
  400. L 486.601549 75.665634
  401. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  402. <path clip-path="url(#pabe1935394)" d="M 487.987621 78.109391
  403. L 487.987621 75.665634
  404. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  405. <path clip-path="url(#pabe1935394)" d="M 489.996421 78.109391
  406. L 489.996421 75.665634
  407. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  408. </g>
  409. <g id="EventCollection_3">
  410. <path clip-path="url(#pabe1935394)" d="M 301.189309 80.553147
  411. L 301.189309 78.109391
  412. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  413. <path clip-path="url(#pabe1935394)" d="M 302.866657 80.553147
  414. L 302.866657 78.109391
  415. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  416. <path clip-path="url(#pabe1935394)" d="M 307.893679 80.553147
  417. L 307.893679 78.109391
  418. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  419. <path clip-path="url(#pabe1935394)" d="M 486.390625 80.553147
  420. L 486.390625 78.109391
  421. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  422. <path clip-path="url(#pabe1935394)" d="M 486.737143 80.553147
  423. L 486.737143 78.109391
  424. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  425. <path clip-path="url(#pabe1935394)" d="M 487.631059 80.553147
  426. L 487.631059 78.109391
  427. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  428. <path clip-path="url(#pabe1935394)" d="M 488.826295 80.553147
  429. L 488.826295 78.109391
  430. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  431. <path clip-path="url(#pabe1935394)" d="M 500.487379 80.553147
  432. L 500.487379 78.109391
  433. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  434. </g>
  435. <g id="EventCollection_4">
  436. <path clip-path="url(#pabe1935394)" d="M 52.178461 82.996903
  437. L 52.178461 80.553147
  438. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  439. <path clip-path="url(#pabe1935394)" d="M 52.309033 82.996903
  440. L 52.309033 80.553147
  441. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  442. <path clip-path="url(#pabe1935394)" d="M 300.963319 82.996903
  443. L 300.963319 80.553147
  444. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  445. <path clip-path="url(#pabe1935394)" d="M 301.721641 82.996903
  446. L 301.721641 80.553147
  447. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  448. <path clip-path="url(#pabe1935394)" d="M 486.872737 82.996903
  449. L 486.872737 80.553147
  450. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  451. <path clip-path="url(#pabe1935394)" d="M 488.535019 82.996903
  452. L 488.535019 80.553147
  453. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  454. <path clip-path="url(#pabe1935394)" d="M 490.739677 82.996903
  455. L 490.739677 80.553147
  456. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  457. </g>
  458. <g id="EventCollection_5">
  459. <path clip-path="url(#pabe1935394)" d="M 300.350635 85.440659
  460. L 300.350635 82.996903
  461. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  462. <path clip-path="url(#pabe1935394)" d="M 301.334947 85.440659
  463. L 301.334947 82.996903
  464. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  465. <path clip-path="url(#pabe1935394)" d="M 303.705331 85.440659
  466. L 303.705331 82.996903
  467. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  468. <path clip-path="url(#pabe1935394)" d="M 486.882781 85.440659
  469. L 486.882781 82.996903
  470. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  471. <path clip-path="url(#pabe1935394)" d="M 488.590261 85.440659
  472. L 488.590261 82.996903
  473. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  474. <path clip-path="url(#pabe1935394)" d="M 491.312185 85.440659
  475. L 491.312185 82.996903
  476. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  477. <path clip-path="url(#pabe1935394)" d="M 494.712079 85.440659
  478. L 494.712079 82.996903
  479. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  480. </g>
  481. <g id="EventCollection_6">
  482. <path clip-path="url(#pabe1935394)" d="M 50.742169 87.884416
  483. L 50.742169 85.440659
  484. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  485. <path clip-path="url(#pabe1935394)" d="M 303.479341 87.884416
  486. L 303.479341 85.440659
  487. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  488. <path clip-path="url(#pabe1935394)" d="M 486.912913 87.884416
  489. L 486.912913 85.440659
  490. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  491. <path clip-path="url(#pabe1935394)" d="M 489.830695 87.884416
  492. L 489.830695 85.440659
  493. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  494. </g>
  495. <g id="EventCollection_7">
  496. <path clip-path="url(#pabe1935394)" d="M 52.118197 90.328172
  497. L 52.118197 87.884416
  498. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  499. <path clip-path="url(#pabe1935394)" d="M 52.293967 90.328172
  500. L 52.293967 87.884416
  501. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  502. <path clip-path="url(#pabe1935394)" d="M 302.977141 90.328172
  503. L 302.977141 87.884416
  504. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  505. <path clip-path="url(#pabe1935394)" d="M 486.651769 90.328172
  506. L 486.651769 87.884416
  507. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  508. <path clip-path="url(#pabe1935394)" d="M 488.359249 90.328172
  509. L 488.359249 87.884416
  510. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  511. <path clip-path="url(#pabe1935394)" d="M 491.497999 90.328172
  512. L 491.497999 87.884416
  513. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  514. <path clip-path="url(#pabe1935394)" d="M 496.409515 90.328172
  515. L 496.409515 87.884416
  516. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  517. <path clip-path="url(#pabe1935394)" d="M 497.398849 90.328172
  518. L 497.398849 87.884416
  519. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  520. </g>
  521. <g id="EventCollection_8">
  522. <path clip-path="url(#pabe1935394)" d="M 51.425161 92.771928
  523. L 51.425161 90.328172
  524. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  525. <path clip-path="url(#pabe1935394)" d="M 51.892207 92.771928
  526. L 51.892207 90.328172
  527. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  528. <path clip-path="url(#pabe1935394)" d="M 293.842123 92.771928
  529. L 293.842123 90.328172
  530. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  531. <path clip-path="url(#pabe1935394)" d="M 300.687109 92.771928
  532. L 300.687109 90.328172
  533. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  534. <path clip-path="url(#pabe1935394)" d="M 301.907455 92.771928
  535. L 301.907455 90.328172
  536. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  537. <path clip-path="url(#pabe1935394)" d="M 305.824615 92.771928
  538. L 305.824615 90.328172
  539. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  540. <path clip-path="url(#pabe1935394)" d="M 486.887803 92.771928
  541. L 486.887803 90.328172
  542. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  543. <path clip-path="url(#pabe1935394)" d="M 488.042863 92.771928
  544. L 488.042863 90.328172
  545. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  546. <path clip-path="url(#pabe1935394)" d="M 488.298985 92.771928
  547. L 488.298985 90.328172
  548. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  549. <path clip-path="url(#pabe1935394)" d="M 488.841361 92.771928
  550. L 488.841361 90.328172
  551. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  552. <path clip-path="url(#pabe1935394)" d="M 489.775453 92.771928
  553. L 489.775453 90.328172
  554. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  555. <path clip-path="url(#pabe1935394)" d="M 494.561419 92.771928
  556. L 494.561419 90.328172
  557. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  558. </g>
  559. <g id="EventCollection_9">
  560. <path clip-path="url(#pabe1935394)" d="M 51.585865 95.215684
  561. L 51.585865 92.771928
  562. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  563. <path clip-path="url(#pabe1935394)" d="M 303.404011 95.215684
  564. L 303.404011 92.771928
  565. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  566. <path clip-path="url(#pabe1935394)" d="M 486.481021 95.215684
  567. L 486.481021 92.771928
  568. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  569. <path clip-path="url(#pabe1935394)" d="M 486.626659 95.215684
  570. L 486.626659 92.771928
  571. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  572. <path clip-path="url(#pabe1935394)" d="M 489.489199 95.215684
  573. L 489.489199 92.771928
  574. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  575. <path clip-path="url(#pabe1935394)" d="M 491.256943 95.215684
  576. L 491.256943 92.771928
  577. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  578. </g>
  579. <g id="EventCollection_10">
  580. <path clip-path="url(#pabe1935394)" d="M 52.163395 97.659441
  581. L 52.163395 95.215684
  582. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  583. <path clip-path="url(#pabe1935394)" d="M 238.826113 97.659441
  584. L 238.826113 95.215684
  585. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  586. <path clip-path="url(#pabe1935394)" d="M 301.023583 97.659441
  587. L 301.023583 95.215684
  588. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  589. <path clip-path="url(#pabe1935394)" d="M 302.962075 97.659441
  590. L 302.962075 95.215684
  591. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  592. <path clip-path="url(#pabe1935394)" d="M 486.611593 97.659441
  593. L 486.611593 95.215684
  594. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  595. <path clip-path="url(#pabe1935394)" d="M 488.057929 97.659441
  596. L 488.057929 95.215684
  597. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  598. <path clip-path="url(#pabe1935394)" d="M 488.555107 97.659441
  599. L 488.555107 95.215684
  600. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  601. <path clip-path="url(#pabe1935394)" d="M 488.766031 97.659441
  602. L 488.766031 95.215684
  603. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  604. <path clip-path="url(#pabe1935394)" d="M 489.865849 97.659441
  605. L 489.865849 95.215684
  606. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  607. </g>
  608. <g id="EventCollection_11">
  609. <path clip-path="url(#pabe1935394)" d="M 300.968341 100.103197
  610. L 300.968341 97.659441
  611. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  612. <path clip-path="url(#pabe1935394)" d="M 302.876701 100.103197
  613. L 302.876701 97.659441
  614. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  615. <path clip-path="url(#pabe1935394)" d="M 486.747187 100.103197
  616. L 486.747187 97.659441
  617. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  618. <path clip-path="url(#pabe1935394)" d="M 487.952467 100.103197
  619. L 487.952467 97.659441
  620. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  621. <path clip-path="url(#pabe1935394)" d="M 490.232455 100.103197
  622. L 490.232455 97.659441
  623. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  624. <path clip-path="url(#pabe1935394)" d="M 494.571463 100.103197
  625. L 494.571463 97.659441
  626. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  627. </g>
  628. <g id="EventCollection_12">
  629. <path clip-path="url(#pabe1935394)" d="M 300.722263 102.546953
  630. L 300.722263 100.103197
  631. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  632. <path clip-path="url(#pabe1935394)" d="M 488.062951 102.546953
  633. L 488.062951 100.103197
  634. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  635. <path clip-path="url(#pabe1935394)" d="M 489.760387 102.546953
  636. L 489.760387 100.103197
  637. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  638. <path clip-path="url(#pabe1935394)" d="M 490.332895 102.546953
  639. L 490.332895 100.103197
  640. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  641. </g>
  642. <g id="EventCollection_13">
  643. <path clip-path="url(#pabe1935394)" d="M 239.840557 104.990709
  644. L 239.840557 102.546953
  645. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  646. <path clip-path="url(#pabe1935394)" d="M 301.164199 104.990709
  647. L 301.164199 102.546953
  648. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  649. <path clip-path="url(#pabe1935394)" d="M 303.097669 104.990709
  650. L 303.097669 102.546953
  651. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  652. <path clip-path="url(#pabe1935394)" d="M 486.380581 104.990709
  653. L 486.380581 102.546953
  654. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  655. <path clip-path="url(#pabe1935394)" d="M 490.684435 104.990709
  656. L 490.684435 102.546953
  657. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  658. <path clip-path="url(#pabe1935394)" d="M 491.513065 104.990709
  659. L 491.513065 102.546953
  660. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  661. </g>
  662. <g id="EventCollection_14">
  663. <path clip-path="url(#pabe1935394)" d="M 300.762439 107.434466
  664. L 300.762439 104.990709
  665. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  666. <path clip-path="url(#pabe1935394)" d="M 300.963319 107.434466
  667. L 300.963319 104.990709
  668. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  669. <path clip-path="url(#pabe1935394)" d="M 303.102691 107.434466
  670. L 303.102691 104.990709
  671. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  672. <path clip-path="url(#pabe1935394)" d="M 305.995363 107.434466
  673. L 305.995363 104.990709
  674. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  675. <path clip-path="url(#pabe1935394)" d="M 307.120291 107.434466
  676. L 307.120291 104.990709
  677. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  678. <path clip-path="url(#pabe1935394)" d="M 486.536263 107.434466
  679. L 486.536263 104.990709
  680. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  681. <path clip-path="url(#pabe1935394)" d="M 486.717055 107.434466
  682. L 486.717055 104.990709
  683. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  684. <path clip-path="url(#pabe1935394)" d="M 488.253787 107.434466
  685. L 488.253787 104.990709
  686. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  687. <path clip-path="url(#pabe1935394)" d="M 489.855805 107.434466
  688. L 489.855805 104.990709
  689. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  690. </g>
  691. <g id="EventCollection_15">
  692. <path clip-path="url(#pabe1935394)" d="M 300.687109 109.878222
  693. L 300.687109 107.434466
  694. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  695. <path clip-path="url(#pabe1935394)" d="M 302.048071 109.878222
  696. L 302.048071 107.434466
  697. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  698. <path clip-path="url(#pabe1935394)" d="M 486.536263 109.878222
  699. L 486.536263 107.434466
  700. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  701. <path clip-path="url(#pabe1935394)" d="M 488.208589 109.878222
  702. L 488.208589 107.434466
  703. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  704. <path clip-path="url(#pabe1935394)" d="M 490.302763 109.878222
  705. L 490.302763 107.434466
  706. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  707. </g>
  708. <g id="EventCollection_16">
  709. <path clip-path="url(#pabe1935394)" d="M 50.712037 112.321978
  710. L 50.712037 109.878222
  711. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  712. <path clip-path="url(#pabe1935394)" d="M 51.661195 112.321978
  713. L 51.661195 109.878222
  714. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  715. <path clip-path="url(#pabe1935394)" d="M 300.782527 112.321978
  716. L 300.782527 109.878222
  717. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  718. <path clip-path="url(#pabe1935394)" d="M 302.269039 112.321978
  719. L 302.269039 109.878222
  720. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  721. <path clip-path="url(#pabe1935394)" d="M 486.034063 112.321978
  722. L 486.034063 109.878222
  723. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  724. <path clip-path="url(#pabe1935394)" d="M 486.681901 112.321978
  725. L 486.681901 109.878222
  726. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  727. <path clip-path="url(#pabe1935394)" d="M 489.298363 112.321978
  728. L 489.298363 109.878222
  729. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  730. </g>
  731. <g id="EventCollection_17">
  732. <path clip-path="url(#pabe1935394)" d="M 300.837769 114.765734
  733. L 300.837769 112.321978
  734. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  735. <path clip-path="url(#pabe1935394)" d="M 302.705953 114.765734
  736. L 302.705953 112.321978
  737. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  738. <path clip-path="url(#pabe1935394)" d="M 305.638801 114.765734
  739. L 305.638801 112.321978
  740. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  741. <path clip-path="url(#pabe1935394)" d="M 488.268853 114.765734
  742. L 488.268853 112.321978
  743. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  744. <path clip-path="url(#pabe1935394)" d="M 489.353605 114.765734
  745. L 489.353605 112.321978
  746. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  747. <path clip-path="url(#pabe1935394)" d="M 491.272009 114.765734
  748. L 491.272009 112.321978
  749. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  750. </g>
  751. <g id="EventCollection_18">
  752. <path clip-path="url(#pabe1935394)" d="M 237.239161 117.209491
  753. L 237.239161 114.765734
  754. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  755. <path clip-path="url(#pabe1935394)" d="M 299.953897 117.209491
  756. L 299.953897 114.765734
  757. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  758. <path clip-path="url(#pabe1935394)" d="M 301.063759 117.209491
  759. L 301.063759 114.765734
  760. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  761. <path clip-path="url(#pabe1935394)" d="M 304.800127 117.209491
  762. L 304.800127 114.765734
  763. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  764. <path clip-path="url(#pabe1935394)" d="M 486.460933 117.209491
  765. L 486.460933 114.765734
  766. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  767. <path clip-path="url(#pabe1935394)" d="M 486.671857 117.209491
  768. L 486.671857 114.765734
  769. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  770. <path clip-path="url(#pabe1935394)" d="M 487.646125 117.209491
  771. L 487.646125 114.765734
  772. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  773. <path clip-path="url(#pabe1935394)" d="M 489.936157 117.209491
  774. L 489.936157 114.765734
  775. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  776. </g>
  777. <g id="EventCollection_19">
  778. <path clip-path="url(#pabe1935394)" d="M 51.796789 119.653247
  779. L 51.796789 117.209491
  780. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  781. <path clip-path="url(#pabe1935394)" d="M 301.334947 119.653247
  782. L 301.334947 117.209491
  783. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  784. <path clip-path="url(#pabe1935394)" d="M 302.957053 119.653247
  785. L 302.957053 117.209491
  786. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  787. <path clip-path="url(#pabe1935394)" d="M 306.171133 119.653247
  788. L 306.171133 117.209491
  789. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  790. <path clip-path="url(#pabe1935394)" d="M 486.882781 119.653247
  791. L 486.882781 117.209491
  792. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  793. <path clip-path="url(#pabe1935394)" d="M 488.670613 119.653247
  794. L 488.670613 117.209491
  795. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  796. <path clip-path="url(#pabe1935394)" d="M 490.634215 119.653247
  797. L 490.634215 117.209491
  798. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  799. </g>
  800. <g id="EventCollection_20">
  801. <path clip-path="url(#pabe1935394)" d="M 51.626041 122.097003
  802. L 51.626041 119.653247
  803. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  804. <path clip-path="url(#pabe1935394)" d="M 301.244551 122.097003
  805. L 301.244551 119.653247
  806. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  807. <path clip-path="url(#pabe1935394)" d="M 304.498807 122.097003
  808. L 304.498807 119.653247
  809. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  810. <path clip-path="url(#pabe1935394)" d="M 486.450889 122.097003
  811. L 486.450889 119.653247
  812. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  813. <path clip-path="url(#pabe1935394)" d="M 488.213611 122.097003
  814. L 488.213611 119.653247
  815. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  816. <path clip-path="url(#pabe1935394)" d="M 490.408225 122.097003
  817. L 490.408225 119.653247
  818. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  819. <path clip-path="url(#pabe1935394)" d="M 494.340451 122.097003
  820. L 494.340451 119.653247
  821. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  822. </g>
  823. <g id="EventCollection_21">
  824. <path clip-path="url(#pabe1935394)" d="M 300.767461 124.540759
  825. L 300.767461 122.097003
  826. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  827. <path clip-path="url(#pabe1935394)" d="M 489.750343 124.540759
  828. L 489.750343 122.097003
  829. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  830. </g>
  831. <g id="EventCollection_22">
  832. <path clip-path="url(#pabe1935394)" d="M 239.966107 126.984515
  833. L 239.966107 124.540759
  834. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  835. <path clip-path="url(#pabe1935394)" d="M 300.978385 126.984515
  836. L 300.978385 124.540759
  837. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  838. <path clip-path="url(#pabe1935394)" d="M 303.790705 126.984515
  839. L 303.790705 124.540759
  840. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  841. <path clip-path="url(#pabe1935394)" d="M 486.958111 126.984515
  842. L 486.958111 124.540759
  843. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  844. <path clip-path="url(#pabe1935394)" d="M 488.434579 126.984515
  845. L 488.434579 124.540759
  846. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  847. <path clip-path="url(#pabe1935394)" d="M 490.332895 126.984515
  848. L 490.332895 124.540759
  849. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  850. </g>
  851. <g id="EventCollection_23">
  852. <path clip-path="url(#pabe1935394)" d="M 51.882163 129.428272
  853. L 51.882163 126.984515
  854. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  855. <path clip-path="url(#pabe1935394)" d="M 231.398575 129.428272
  856. L 231.398575 126.984515
  857. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  858. <path clip-path="url(#pabe1935394)" d="M 300.817681 129.428272
  859. L 300.817681 126.984515
  860. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  861. <path clip-path="url(#pabe1935394)" d="M 305.694043 129.428272
  862. L 305.694043 126.984515
  863. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  864. <path clip-path="url(#pabe1935394)" d="M 360.534283 129.428272
  865. L 360.534283 126.984515
  866. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  867. <path clip-path="url(#pabe1935394)" d="M 486.571417 129.428272
  868. L 486.571417 126.984515
  869. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  870. <path clip-path="url(#pabe1935394)" d="M 486.807451 129.428272
  871. L 486.807451 126.984515
  872. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  873. <path clip-path="url(#pabe1935394)" d="M 489.911047 129.428272
  874. L 489.911047 126.984515
  875. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  876. </g>
  877. <g id="EventCollection_24">
  878. <path clip-path="url(#pabe1935394)" d="M 303.253351 131.872028
  879. L 303.253351 129.428272
  880. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  881. <path clip-path="url(#pabe1935394)" d="M 305.342503 131.872028
  882. L 305.342503 129.428272
  883. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  884. <path clip-path="url(#pabe1935394)" d="M 486.686923 131.872028
  885. L 486.686923 129.428272
  886. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  887. <path clip-path="url(#pabe1935394)" d="M 486.933001 131.872028
  888. L 486.933001 129.428272
  889. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  890. <path clip-path="url(#pabe1935394)" d="M 489.057307 131.872028
  891. L 489.057307 129.428272
  892. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  893. <path clip-path="url(#pabe1935394)" d="M 494.375605 131.872028
  894. L 494.375605 129.428272
  895. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  896. </g>
  897. <g id="EventCollection_25">
  898. <path clip-path="url(#pabe1935394)" d="M 236.711851 134.315784
  899. L 236.711851 131.872028
  900. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  901. <path clip-path="url(#pabe1935394)" d="M 299.858479 134.315784
  902. L 299.858479 131.872028
  903. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  904. <path clip-path="url(#pabe1935394)" d="M 304.609291 134.315784
  905. L 304.609291 131.872028
  906. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  907. <path clip-path="url(#pabe1935394)" d="M 486.139525 134.315784
  908. L 486.139525 131.872028
  909. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  910. <path clip-path="url(#pabe1935394)" d="M 490.071751 134.315784
  911. L 490.071751 131.872028
  912. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  913. </g>
  914. <g id="EventCollection_26">
  915. <path clip-path="url(#pabe1935394)" d="M 52.263835 136.75954
  916. L 52.263835 134.315784
  917. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  918. <path clip-path="url(#pabe1935394)" d="M 300.807637 136.75954
  919. L 300.807637 134.315784
  920. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  921. <path clip-path="url(#pabe1935394)" d="M 486.029041 136.75954
  922. L 486.029041 134.315784
  923. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  924. <path clip-path="url(#pabe1935394)" d="M 486.892825 136.75954
  925. L 486.892825 134.315784
  926. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  927. <path clip-path="url(#pabe1935394)" d="M 488.570173 136.75954
  928. L 488.570173 134.315784
  929. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  930. </g>
  931. <g id="EventCollection_27">
  932. <path clip-path="url(#pabe1935394)" d="M 52.560133 139.203297
  933. L 52.560133 136.75954
  934. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  935. <path clip-path="url(#pabe1935394)" d="M 303.122779 139.203297
  936. L 303.122779 136.75954
  937. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  938. <path clip-path="url(#pabe1935394)" d="M 486.405691 139.203297
  939. L 486.405691 136.75954
  940. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  941. <path clip-path="url(#pabe1935394)" d="M 488.781097 139.203297
  942. L 488.781097 136.75954
  943. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  944. <path clip-path="url(#pabe1935394)" d="M 490.393159 139.203297
  945. L 490.393159 136.75954
  946. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  947. </g>
  948. <g id="EventCollection_28">
  949. <path clip-path="url(#pabe1935394)" d="M 300.832747 141.647053
  950. L 300.832747 139.203297
  951. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  952. <path clip-path="url(#pabe1935394)" d="M 302.424721 141.647053
  953. L 302.424721 139.203297
  954. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  955. <path clip-path="url(#pabe1935394)" d="M 304.950787 141.647053
  956. L 304.950787 139.203297
  957. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  958. <path clip-path="url(#pabe1935394)" d="M 486.465955 141.647053
  959. L 486.465955 139.203297
  960. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  961. <path clip-path="url(#pabe1935394)" d="M 489.594661 141.647053
  962. L 489.594661 139.203297
  963. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  964. <path clip-path="url(#pabe1935394)" d="M 492.572707 141.647053
  965. L 492.572707 139.203297
  966. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  967. </g>
  968. <g id="EventCollection_29">
  969. <path clip-path="url(#pabe1935394)" d="M 300.215041 144.090809
  970. L 300.215041 141.647053
  971. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  972. <path clip-path="url(#pabe1935394)" d="M 302.635645 144.090809
  973. L 302.635645 141.647053
  974. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  975. <path clip-path="url(#pabe1935394)" d="M 304.463653 144.090809
  976. L 304.463653 141.647053
  977. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  978. <path clip-path="url(#pabe1935394)" d="M 486.380581 144.090809
  979. L 486.380581 141.647053
  980. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  981. <path clip-path="url(#pabe1935394)" d="M 488.755987 144.090809
  982. L 488.755987 141.647053
  983. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  984. <path clip-path="url(#pabe1935394)" d="M 490.599061 144.090809
  985. L 490.599061 141.647053
  986. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  987. <path clip-path="url(#pabe1935394)" d="M 493.371205 144.090809
  988. L 493.371205 141.647053
  989. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  990. </g>
  991. <g id="EventCollection_30">
  992. <path clip-path="url(#pabe1935394)" d="M 51.847009 146.534565
  993. L 51.847009 144.090809
  994. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  995. <path clip-path="url(#pabe1935394)" d="M 300.903055 146.534565
  996. L 300.903055 144.090809
  997. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  998. <path clip-path="url(#pabe1935394)" d="M 302.419699 146.534565
  999. L 302.419699 144.090809
  1000. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1001. <path clip-path="url(#pabe1935394)" d="M 488.936779 146.534565
  1002. L 488.936779 144.090809
  1003. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1004. <path clip-path="url(#pabe1935394)" d="M 492.401959 146.534565
  1005. L 492.401959 144.090809
  1006. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1007. <path clip-path="url(#pabe1935394)" d="M 523.503205 146.534565
  1008. L 523.503205 144.090809
  1009. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1010. </g>
  1011. <g id="EventCollection_31">
  1012. <path clip-path="url(#pabe1935394)" d="M 52.575199 148.978322
  1013. L 52.575199 146.534565
  1014. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1015. <path clip-path="url(#pabe1935394)" d="M 300.752395 148.978322
  1016. L 300.752395 146.534565
  1017. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1018. <path clip-path="url(#pabe1935394)" d="M 302.218819 148.978322
  1019. L 302.218819 146.534565
  1020. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1021. <path clip-path="url(#pabe1935394)" d="M 365.244919 148.978322
  1022. L 365.244919 146.534565
  1023. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1024. <path clip-path="url(#pabe1935394)" d="M 486.496087 148.978322
  1025. L 486.496087 146.534565
  1026. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1027. <path clip-path="url(#pabe1935394)" d="M 486.882781 148.978322
  1028. L 486.882781 146.534565
  1029. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1030. <path clip-path="url(#pabe1935394)" d="M 487.143925 148.978322
  1031. L 487.143925 146.534565
  1032. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1033. <path clip-path="url(#pabe1935394)" d="M 488.545063 148.978322
  1034. L 488.545063 146.534565
  1035. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1036. <path clip-path="url(#pabe1935394)" d="M 491.377471 148.978322
  1037. L 491.377471 146.534565
  1038. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1039. <path clip-path="url(#pabe1935394)" d="M 491.824429 148.978322
  1040. L 491.824429 146.534565
  1041. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1042. </g>
  1043. <g id="EventCollection_32">
  1044. <path clip-path="url(#pabe1935394)" d="M 300.767461 151.422078
  1045. L 300.767461 148.978322
  1046. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1047. <path clip-path="url(#pabe1935394)" d="M 303.067537 151.422078
  1048. L 303.067537 148.978322
  1049. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1050. <path clip-path="url(#pabe1935394)" d="M 303.971497 151.422078
  1051. L 303.971497 148.978322
  1052. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1053. <path clip-path="url(#pabe1935394)" d="M 488.314051 151.422078
  1054. L 488.314051 148.978322
  1055. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1056. <path clip-path="url(#pabe1935394)" d="M 489.117571 151.422078
  1057. L 489.117571 148.978322
  1058. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1059. <path clip-path="url(#pabe1935394)" d="M 491.965045 151.422078
  1060. L 491.965045 148.978322
  1061. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1062. <path clip-path="url(#pabe1935394)" d="M 498.006511 151.422078
  1063. L 498.006511 148.978322
  1064. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1065. </g>
  1066. <g id="EventCollection_33">
  1067. <path clip-path="url(#pabe1935394)" d="M 51.133885 153.865834
  1068. L 51.133885 151.422078
  1069. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1070. <path clip-path="url(#pabe1935394)" d="M 301.134067 153.865834
  1071. L 301.134067 151.422078
  1072. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1073. <path clip-path="url(#pabe1935394)" d="M 303.022339 153.865834
  1074. L 303.022339 151.422078
  1075. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1076. <path clip-path="url(#pabe1935394)" d="M 486.877759 153.865834
  1077. L 486.877759 151.422078
  1078. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1079. <path clip-path="url(#pabe1935394)" d="M 488.359249 153.865834
  1080. L 488.359249 151.422078
  1081. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1082. <path clip-path="url(#pabe1935394)" d="M 490.106905 153.865834
  1083. L 490.106905 151.422078
  1084. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1085. <path clip-path="url(#pabe1935394)" d="M 490.940557 153.865834
  1086. L 490.940557 151.422078
  1087. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1088. </g>
  1089. <g id="EventCollection_34">
  1090. <path clip-path="url(#pabe1935394)" d="M 118.122343 156.30959
  1091. L 118.122343 153.865834
  1092. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1093. <path clip-path="url(#pabe1935394)" d="M 239.102323 156.30959
  1094. L 239.102323 153.865834
  1095. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1096. <path clip-path="url(#pabe1935394)" d="M 301.013539 156.30959
  1097. L 301.013539 153.865834
  1098. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1099. <path clip-path="url(#pabe1935394)" d="M 307.933855 156.30959
  1100. L 307.933855 153.865834
  1101. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1102. <path clip-path="url(#pabe1935394)" d="M 488.514931 156.30959
  1103. L 488.514931 153.865834
  1104. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1105. <path clip-path="url(#pabe1935394)" d="M 489.820651 156.30959
  1106. L 489.820651 153.865834
  1107. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1108. </g>
  1109. <g id="EventCollection_35">
  1110. <path clip-path="url(#pabe1935394)" d="M 52.173439 158.753347
  1111. L 52.173439 156.30959
  1112. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1113. <path clip-path="url(#pabe1935394)" d="M 303.976519 158.753347
  1114. L 303.976519 156.30959
  1115. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1116. <path clip-path="url(#pabe1935394)" d="M 305.729197 158.753347
  1117. L 305.729197 156.30959
  1118. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1119. <path clip-path="url(#pabe1935394)" d="M 486.902869 158.753347
  1120. L 486.902869 156.30959
  1121. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1122. <path clip-path="url(#pabe1935394)" d="M 488.037841 158.753347
  1123. L 488.037841 156.30959
  1124. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1125. <path clip-path="url(#pabe1935394)" d="M 491.025931 158.753347
  1126. L 491.025931 156.30959
  1127. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1128. <path clip-path="url(#pabe1935394)" d="M 497.474179 158.753347
  1129. L 497.474179 156.30959
  1130. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1131. </g>
  1132. <g id="EventCollection_36">
  1133. <path clip-path="url(#pabe1935394)" d="M 52.188505 161.197103
  1134. L 52.188505 158.753347
  1135. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1136. <path clip-path="url(#pabe1935394)" d="M 303.579781 161.197103
  1137. L 303.579781 158.753347
  1138. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1139. <path clip-path="url(#pabe1935394)" d="M 486.707011 161.197103
  1140. L 486.707011 158.753347
  1141. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1142. <path clip-path="url(#pabe1935394)" d="M 486.922957 161.197103
  1143. L 486.922957 158.753347
  1144. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1145. <path clip-path="url(#pabe1935394)" d="M 488.268853 161.197103
  1146. L 488.268853 158.753347
  1147. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1148. <path clip-path="url(#pabe1935394)" d="M 491.492977 161.197103
  1149. L 491.492977 158.753347
  1150. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1151. </g>
  1152. <g id="EventCollection_37">
  1153. <path clip-path="url(#pabe1935394)" d="M 300.817681 163.640859
  1154. L 300.817681 161.197103
  1155. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1156. <path clip-path="url(#pabe1935394)" d="M 302.274061 163.640859
  1157. L 302.274061 161.197103
  1158. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1159. <path clip-path="url(#pabe1935394)" d="M 302.565337 163.640859
  1160. L 302.565337 161.197103
  1161. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1162. <path clip-path="url(#pabe1935394)" d="M 305.859769 163.640859
  1163. L 305.859769 161.197103
  1164. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1165. <path clip-path="url(#pabe1935394)" d="M 486.601549 163.640859
  1166. L 486.601549 161.197103
  1167. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1168. <path clip-path="url(#pabe1935394)" d="M 488.801185 163.640859
  1169. L 488.801185 161.197103
  1170. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1171. <path clip-path="url(#pabe1935394)" d="M 490.845139 163.640859
  1172. L 490.845139 161.197103
  1173. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1174. </g>
  1175. <g id="EventCollection_38">
  1176. <path clip-path="url(#pabe1935394)" d="M 52.208593 166.084615
  1177. L 52.208593 163.640859
  1178. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1179. <path clip-path="url(#pabe1935394)" d="M 300.722263 166.084615
  1180. L 300.722263 163.640859
  1181. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1182. <path clip-path="url(#pabe1935394)" d="M 486.631681 166.084615
  1183. L 486.631681 163.640859
  1184. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1185. <path clip-path="url(#pabe1935394)" d="M 486.717055 166.084615
  1186. L 486.717055 163.640859
  1187. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1188. <path clip-path="url(#pabe1935394)" d="M 487.872115 166.084615
  1189. L 487.872115 163.640859
  1190. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1191. <path clip-path="url(#pabe1935394)" d="M 491.101261 166.084615
  1192. L 491.101261 163.640859
  1193. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1194. </g>
  1195. <g id="EventCollection_39">
  1196. <path clip-path="url(#pabe1935394)" d="M 301.113979 168.528372
  1197. L 301.113979 166.084615
  1198. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1199. <path clip-path="url(#pabe1935394)" d="M 303.218197 168.528372
  1200. L 303.218197 166.084615
  1201. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1202. <path clip-path="url(#pabe1935394)" d="M 486.234943 168.528372
  1203. L 486.234943 166.084615
  1204. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1205. <path clip-path="url(#pabe1935394)" d="M 486.681901 168.528372
  1206. L 486.681901 166.084615
  1207. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1208. <path clip-path="url(#pabe1935394)" d="M 486.993265 168.528372
  1209. L 486.993265 166.084615
  1210. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1211. <path clip-path="url(#pabe1935394)" d="M 489.042241 168.528372
  1212. L 489.042241 166.084615
  1213. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1214. <path clip-path="url(#pabe1935394)" d="M 494.099395 168.528372
  1215. L 494.099395 166.084615
  1216. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1217. </g>
  1218. <g id="EventCollection_40">
  1219. <path clip-path="url(#pabe1935394)" d="M 51.440227 170.972128
  1220. L 51.440227 168.528372
  1221. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1222. <path clip-path="url(#pabe1935394)" d="M 52.208593 170.972128
  1223. L 52.208593 168.528372
  1224. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1225. <path clip-path="url(#pabe1935394)" d="M 52.314055 170.972128
  1226. L 52.314055 168.528372
  1227. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1228. <path clip-path="url(#pabe1935394)" d="M 238.966729 170.972128
  1229. L 238.966729 168.528372
  1230. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1231. <path clip-path="url(#pabe1935394)" d="M 300.882967 170.972128
  1232. L 300.882967 168.528372
  1233. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1234. <path clip-path="url(#pabe1935394)" d="M 303.906211 170.972128
  1235. L 303.906211 168.528372
  1236. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1237. <path clip-path="url(#pabe1935394)" d="M 306.562849 170.972128
  1238. L 306.562849 168.528372
  1239. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1240. <path clip-path="url(#pabe1935394)" d="M 486.882781 170.972128
  1241. L 486.882781 168.528372
  1242. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1243. <path clip-path="url(#pabe1935394)" d="M 488.585239 170.972128
  1244. L 488.585239 168.528372
  1245. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1246. <path clip-path="url(#pabe1935394)" d="M 491.784253 170.972128
  1247. L 491.784253 168.528372
  1248. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1249. </g>
  1250. <g id="EventCollection_41">
  1251. <path clip-path="url(#pabe1935394)" d="M 300.596713 173.415884
  1252. L 300.596713 170.972128
  1253. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1254. <path clip-path="url(#pabe1935394)" d="M 486.792385 173.415884
  1255. L 486.792385 170.972128
  1256. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1257. <path clip-path="url(#pabe1935394)" d="M 487.661191 173.415884
  1258. L 487.661191 170.972128
  1259. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1260. <path clip-path="url(#pabe1935394)" d="M 488.509909 173.415884
  1261. L 488.509909 170.972128
  1262. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1263. <path clip-path="url(#pabe1935394)" d="M 490.247521 173.415884
  1264. L 490.247521 170.972128
  1265. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1266. </g>
  1267. <g id="EventCollection_42">
  1268. <path clip-path="url(#pabe1935394)" d="M 301.254595 175.85964
  1269. L 301.254595 173.415884
  1270. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1271. <path clip-path="url(#pabe1935394)" d="M 487.786741 175.85964
  1272. L 487.786741 173.415884
  1273. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1274. <path clip-path="url(#pabe1935394)" d="M 488.992021 175.85964
  1275. L 488.992021 173.415884
  1276. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1277. <path clip-path="url(#pabe1935394)" d="M 490.538797 175.85964
  1278. L 490.538797 173.415884
  1279. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1280. <path clip-path="url(#pabe1935394)" d="M 493.878427 175.85964
  1281. L 493.878427 173.415884
  1282. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1283. </g>
  1284. <g id="EventCollection_43">
  1285. <path clip-path="url(#pabe1935394)" d="M 52.364275 178.303397
  1286. L 52.364275 175.85964
  1287. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1288. <path clip-path="url(#pabe1935394)" d="M 301.038649 178.303397
  1289. L 301.038649 175.85964
  1290. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1291. <path clip-path="url(#pabe1935394)" d="M 302.796349 178.303397
  1292. L 302.796349 175.85964
  1293. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1294. <path clip-path="url(#pabe1935394)" d="M 486.953089 178.303397
  1295. L 486.953089 175.85964
  1296. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1297. <path clip-path="url(#pabe1935394)" d="M 488.524975 178.303397
  1298. L 488.524975 175.85964
  1299. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1300. <path clip-path="url(#pabe1935394)" d="M 488.771053 178.303397
  1301. L 488.771053 175.85964
  1302. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1303. <path clip-path="url(#pabe1935394)" d="M 489.951223 178.303397
  1304. L 489.951223 175.85964
  1305. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1306. <path clip-path="url(#pabe1935394)" d="M 492.140815 178.303397
  1307. L 492.140815 175.85964
  1308. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1309. </g>
  1310. <g id="EventCollection_44">
  1311. <path clip-path="url(#pabe1935394)" d="M 51.847009 180.747153
  1312. L 51.847009 178.303397
  1313. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1314. <path clip-path="url(#pabe1935394)" d="M 52.258813 180.747153
  1315. L 52.258813 178.303397
  1316. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1317. <path clip-path="url(#pabe1935394)" d="M 52.530001 180.747153
  1318. L 52.530001 178.303397
  1319. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1320. <path clip-path="url(#pabe1935394)" d="M 303.358813 180.747153
  1321. L 303.358813 178.303397
  1322. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1323. <path clip-path="url(#pabe1935394)" d="M 488.153347 180.747153
  1324. L 488.153347 178.303397
  1325. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1326. <path clip-path="url(#pabe1935394)" d="M 490.096861 180.747153
  1327. L 490.096861 178.303397
  1328. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1329. </g>
  1330. <g id="EventCollection_45">
  1331. <path clip-path="url(#pabe1935394)" d="M 52.535023 183.190909
  1332. L 52.535023 180.747153
  1333. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1334. <path clip-path="url(#pabe1935394)" d="M 305.121535 183.190909
  1335. L 305.121535 180.747153
  1336. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1337. <path clip-path="url(#pabe1935394)" d="M 486.239965 183.190909
  1338. L 486.239965 180.747153
  1339. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1340. <path clip-path="url(#pabe1935394)" d="M 486.385603 183.190909
  1341. L 486.385603 180.747153
  1342. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1343. <path clip-path="url(#pabe1935394)" d="M 486.747187 183.190909
  1344. L 486.747187 180.747153
  1345. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1346. <path clip-path="url(#pabe1935394)" d="M 487.088683 183.190909
  1347. L 487.088683 180.747153
  1348. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1349. <path clip-path="url(#pabe1935394)" d="M 489.197923 183.190909
  1350. L 489.197923 180.747153
  1351. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1352. <path clip-path="url(#pabe1935394)" d="M 497.775499 183.190909
  1353. L 497.775499 180.747153
  1354. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1355. </g>
  1356. <g id="EventCollection_46">
  1357. <path clip-path="url(#pabe1935394)" d="M 300.546493 185.634665
  1358. L 300.546493 183.190909
  1359. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1360. <path clip-path="url(#pabe1935394)" d="M 302.982163 185.634665
  1361. L 302.982163 183.190909
  1362. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1363. <path clip-path="url(#pabe1935394)" d="M 488.524975 185.634665
  1364. L 488.524975 183.190909
  1365. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1366. <path clip-path="url(#pabe1935394)" d="M 491.287075 185.634665
  1367. L 491.287075 183.190909
  1368. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1369. <path clip-path="url(#pabe1935394)" d="M 499.829497 185.634665
  1370. L 499.829497 183.190909
  1371. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1372. </g>
  1373. <g id="EventCollection_47">
  1374. <path clip-path="url(#pabe1935394)" d="M 52.545067 188.078422
  1375. L 52.545067 185.634665
  1376. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1377. <path clip-path="url(#pabe1935394)" d="M 300.626845 188.078422
  1378. L 300.626845 185.634665
  1379. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1380. <path clip-path="url(#pabe1935394)" d="M 300.857857 188.078422
  1381. L 300.857857 185.634665
  1382. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1383. <path clip-path="url(#pabe1935394)" d="M 303.504451 188.078422
  1384. L 303.504451 185.634665
  1385. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1386. <path clip-path="url(#pabe1935394)" d="M 486.606571 188.078422
  1387. L 486.606571 185.634665
  1388. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1389. <path clip-path="url(#pabe1935394)" d="M 487.982599 188.078422
  1390. L 487.982599 185.634665
  1391. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1392. <path clip-path="url(#pabe1935394)" d="M 490.352983 188.078422
  1393. L 490.352983 185.634665
  1394. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1395. <path clip-path="url(#pabe1935394)" d="M 490.483555 188.078422
  1396. L 490.483555 185.634665
  1397. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1398. </g>
  1399. <g id="EventCollection_48">
  1400. <path clip-path="url(#pabe1935394)" d="M 51.927361 190.522178
  1401. L 51.927361 188.078422
  1402. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1403. <path clip-path="url(#pabe1935394)" d="M 52.555111 190.522178
  1404. L 52.555111 188.078422
  1405. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1406. <path clip-path="url(#pabe1935394)" d="M 303.820837 190.522178
  1407. L 303.820837 188.078422
  1408. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1409. <path clip-path="url(#pabe1935394)" d="M 486.676879 190.522178
  1410. L 486.676879 188.078422
  1411. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1412. <path clip-path="url(#pabe1935394)" d="M 488.017753 190.522178
  1413. L 488.017753 188.078422
  1414. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1415. <path clip-path="url(#pabe1935394)" d="M 489.880915 190.522178
  1416. L 489.880915 188.078422
  1417. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1418. <path clip-path="url(#pabe1935394)" d="M 492.723367 190.522178
  1419. L 492.723367 188.078422
  1420. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1421. </g>
  1422. <g id="EventCollection_49">
  1423. <path clip-path="url(#pabe1935394)" d="M 239.750161 192.965934
  1424. L 239.750161 190.522178
  1425. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1426. <path clip-path="url(#pabe1935394)" d="M 301.073803 192.965934
  1427. L 301.073803 190.522178
  1428. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1429. <path clip-path="url(#pabe1935394)" d="M 303.117757 192.965934
  1430. L 303.117757 190.522178
  1431. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1432. <path clip-path="url(#pabe1935394)" d="M 486.360493 192.965934
  1433. L 486.360493 190.522178
  1434. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1435. <path clip-path="url(#pabe1935394)" d="M 488.720833 192.965934
  1436. L 488.720833 190.522178
  1437. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1438. <path clip-path="url(#pabe1935394)" d="M 488.796163 192.965934
  1439. L 488.796163 190.522178
  1440. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1441. <path clip-path="url(#pabe1935394)" d="M 490.794919 192.965934
  1442. L 490.794919 190.522178
  1443. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1444. <path clip-path="url(#pabe1935394)" d="M 492.477289 192.965934
  1445. L 492.477289 190.522178
  1446. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1447. <path clip-path="url(#pabe1935394)" d="M 494.395693 192.965934
  1448. L 494.395693 190.522178
  1449. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1450. </g>
  1451. <g id="EventCollection_50">
  1452. <path clip-path="url(#pabe1935394)" d="M 300.928165 195.40969
  1453. L 300.928165 192.965934
  1454. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1455. <path clip-path="url(#pabe1935394)" d="M 302.967097 195.40969
  1456. L 302.967097 192.965934
  1457. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1458. <path clip-path="url(#pabe1935394)" d="M 486.686923 195.40969
  1459. L 486.686923 192.965934
  1460. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1461. <path clip-path="url(#pabe1935394)" d="M 488.002687 195.40969
  1462. L 488.002687 192.965934
  1463. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1464. <path clip-path="url(#pabe1935394)" d="M 489.192901 195.40969
  1465. L 489.192901 192.965934
  1466. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1467. <path clip-path="url(#pabe1935394)" d="M 489.574573 195.40969
  1468. L 489.574573 192.965934
  1469. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1470. </g>
  1471. <g id="EventCollection_51">
  1472. <path clip-path="url(#pabe1935394)" d="M 301.149133 197.853447
  1473. L 301.149133 195.40969
  1474. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1475. <path clip-path="url(#pabe1935394)" d="M 302.540227 197.853447
  1476. L 302.540227 195.40969
  1477. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1478. <path clip-path="url(#pabe1935394)" d="M 305.593603 197.853447
  1479. L 305.593603 195.40969
  1480. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1481. <path clip-path="url(#pabe1935394)" d="M 486.561373 197.853447
  1482. L 486.561373 195.40969
  1483. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1484. <path clip-path="url(#pabe1935394)" d="M 488.133259 197.853447
  1485. L 488.133259 195.40969
  1486. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1487. <path clip-path="url(#pabe1935394)" d="M 488.439601 197.853447
  1488. L 488.439601 195.40969
  1489. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1490. <path clip-path="url(#pabe1935394)" d="M 489.187879 197.853447
  1491. L 489.187879 195.40969
  1492. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1493. </g>
  1494. <g id="EventCollection_52">
  1495. <path clip-path="url(#pabe1935394)" d="M 303.017317 200.297203
  1496. L 303.017317 197.853447
  1497. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1498. <path clip-path="url(#pabe1935394)" d="M 306.648223 200.297203
  1499. L 306.648223 197.853447
  1500. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1501. <path clip-path="url(#pabe1935394)" d="M 486.686923 200.297203
  1502. L 486.686923 197.853447
  1503. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1504. <path clip-path="url(#pabe1935394)" d="M 488.293963 200.297203
  1505. L 488.293963 197.853447
  1506. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1507. <path clip-path="url(#pabe1935394)" d="M 489.117571 200.297203
  1508. L 489.117571 197.853447
  1509. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1510. <path clip-path="url(#pabe1935394)" d="M 489.579595 200.297203
  1511. L 489.579595 197.853447
  1512. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1513. <path clip-path="url(#pabe1935394)" d="M 490.046641 200.297203
  1514. L 490.046641 197.853447
  1515. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1516. </g>
  1517. <g id="EventCollection_53">
  1518. <path clip-path="url(#pabe1935394)" d="M 51.676261 202.740959
  1519. L 51.676261 200.297203
  1520. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1521. <path clip-path="url(#pabe1935394)" d="M 299.742973 202.740959
  1522. L 299.742973 200.297203
  1523. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1524. <path clip-path="url(#pabe1935394)" d="M 300.837769 202.740959
  1525. L 300.837769 200.297203
  1526. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1527. <path clip-path="url(#pabe1935394)" d="M 303.358813 202.740959
  1528. L 303.358813 200.297203
  1529. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1530. <path clip-path="url(#pabe1935394)" d="M 486.465955 202.740959
  1531. L 486.465955 200.297203
  1532. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1533. <path clip-path="url(#pabe1935394)" d="M 486.958111 202.740959
  1534. L 486.958111 200.297203
  1535. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1536. <path clip-path="url(#pabe1935394)" d="M 487.495465 202.740959
  1537. L 487.495465 200.297203
  1538. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1539. <path clip-path="url(#pabe1935394)" d="M 489.323473 202.740959
  1540. L 489.323473 200.297203
  1541. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1542. <path clip-path="url(#pabe1935394)" d="M 493.190413 202.740959
  1543. L 493.190413 200.297203
  1544. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1545. </g>
  1546. <g id="EventCollection_54">
  1547. <path clip-path="url(#pabe1935394)" d="M 300.682087 205.184715
  1548. L 300.682087 202.740959
  1549. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1550. <path clip-path="url(#pabe1935394)" d="M 302.500051 205.184715
  1551. L 302.500051 202.740959
  1552. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1553. <path clip-path="url(#pabe1935394)" d="M 486.948067 205.184715
  1554. L 486.948067 202.740959
  1555. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1556. <path clip-path="url(#pabe1935394)" d="M 488.293963 205.184715
  1557. L 488.293963 202.740959
  1558. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1559. <path clip-path="url(#pabe1935394)" d="M 490.895359 205.184715
  1560. L 490.895359 202.740959
  1561. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1562. </g>
  1563. <g id="EventCollection_55">
  1564. <path clip-path="url(#pabe1935394)" d="M 51.716437 207.628472
  1565. L 51.716437 205.184715
  1566. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1567. <path clip-path="url(#pabe1935394)" d="M 301.244551 207.628472
  1568. L 301.244551 205.184715
  1569. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1570. <path clip-path="url(#pabe1935394)" d="M 301.701553 207.628472
  1571. L 301.701553 205.184715
  1572. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1573. <path clip-path="url(#pabe1935394)" d="M 304.092025 207.628472
  1574. L 304.092025 205.184715
  1575. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1576. <path clip-path="url(#pabe1935394)" d="M 486.465955 207.628472
  1577. L 486.465955 205.184715
  1578. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1579. <path clip-path="url(#pabe1935394)" d="M 490.177213 207.628472
  1580. L 490.177213 205.184715
  1581. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1582. </g>
  1583. <g id="EventCollection_56">
  1584. <path clip-path="url(#pabe1935394)" d="M 300.636889 210.072228
  1585. L 300.636889 207.628472
  1586. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1587. <path clip-path="url(#pabe1935394)" d="M 301.942609 210.072228
  1588. L 301.942609 207.628472
  1589. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1590. <path clip-path="url(#pabe1935394)" d="M 486.450889 210.072228
  1591. L 486.450889 207.628472
  1592. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1593. <path clip-path="url(#pabe1935394)" d="M 488.052907 210.072228
  1594. L 488.052907 207.628472
  1595. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1596. <path clip-path="url(#pabe1935394)" d="M 489.649903 210.072228
  1597. L 489.649903 207.628472
  1598. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1599. </g>
  1600. <g id="EventCollection_57">
  1601. <path clip-path="url(#pabe1935394)" d="M 239.368489 212.515984
  1602. L 239.368489 210.072228
  1603. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1604. <path clip-path="url(#pabe1935394)" d="M 303.052471 212.515984
  1605. L 303.052471 210.072228
  1606. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1607. <path clip-path="url(#pabe1935394)" d="M 307.411567 212.515984
  1608. L 307.411567 210.072228
  1609. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1610. <path clip-path="url(#pabe1935394)" d="M 485.958733 212.515984
  1611. L 485.958733 210.072228
  1612. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1613. <path clip-path="url(#pabe1935394)" d="M 486.696967 212.515984
  1614. L 486.696967 210.072228
  1615. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1616. <path clip-path="url(#pabe1935394)" d="M 488.625415 212.515984
  1617. L 488.625415 210.072228
  1618. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1619. <path clip-path="url(#pabe1935394)" d="M 490.734655 212.515984
  1620. L 490.734655 210.072228
  1621. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1622. </g>
  1623. <g id="EventCollection_58">
  1624. <path clip-path="url(#pabe1935394)" d="M 299.712841 214.95974
  1625. L 299.712841 212.515984
  1626. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1627. <path clip-path="url(#pabe1935394)" d="M 300.887989 214.95974
  1628. L 300.887989 212.515984
  1629. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1630. <path clip-path="url(#pabe1935394)" d="M 303.414055 214.95974
  1631. L 303.414055 212.515984
  1632. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1633. <path clip-path="url(#pabe1935394)" d="M 486.616615 214.95974
  1634. L 486.616615 212.515984
  1635. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1636. <path clip-path="url(#pabe1935394)" d="M 488.916691 214.95974
  1637. L 488.916691 212.515984
  1638. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1639. </g>
  1640. <g id="EventCollection_59">
  1641. <path clip-path="url(#pabe1935394)" d="M 301.078825 217.403497
  1642. L 301.078825 214.95974
  1643. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1644. <path clip-path="url(#pabe1935394)" d="M 304.549027 217.403497
  1645. L 304.549027 214.95974
  1646. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1647. <path clip-path="url(#pabe1935394)" d="M 486.732121 217.403497
  1648. L 486.732121 214.95974
  1649. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1650. <path clip-path="url(#pabe1935394)" d="M 488.951845 217.403497
  1651. L 488.951845 214.95974
  1652. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1653. <path clip-path="url(#pabe1935394)" d="M 491.462845 217.403497
  1654. L 491.462845 214.95974
  1655. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1656. <path clip-path="url(#pabe1935394)" d="M 494.300275 217.403497
  1657. L 494.300275 214.95974
  1658. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1659. </g>
  1660. <g id="EventCollection_60">
  1661. <path clip-path="url(#pabe1935394)" d="M 52.168417 219.847253
  1662. L 52.168417 217.403497
  1663. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1664. <path clip-path="url(#pabe1935394)" d="M 52.263835 219.847253
  1665. L 52.263835 217.403497
  1666. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1667. <path clip-path="url(#pabe1935394)" d="M 237.414931 219.847253
  1668. L 237.414931 217.403497
  1669. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1670. <path clip-path="url(#pabe1935394)" d="M 300.832747 219.847253
  1671. L 300.832747 217.403497
  1672. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1673. <path clip-path="url(#pabe1935394)" d="M 486.787363 219.847253
  1674. L 486.787363 217.403497
  1675. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1676. <path clip-path="url(#pabe1935394)" d="M 488.163391 219.847253
  1677. L 488.163391 217.403497
  1678. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1679. <path clip-path="url(#pabe1935394)" d="M 490.669369 219.847253
  1680. L 490.669369 217.403497
  1681. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1682. </g>
  1683. <g id="EventCollection_61">
  1684. <path clip-path="url(#pabe1935394)" d="M 300.415921 222.291009
  1685. L 300.415921 219.847253
  1686. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1687. <path clip-path="url(#pabe1935394)" d="M 301.244551 222.291009
  1688. L 301.244551 219.847253
  1689. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1690. <path clip-path="url(#pabe1935394)" d="M 304.664533 222.291009
  1691. L 304.664533 219.847253
  1692. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1693. <path clip-path="url(#pabe1935394)" d="M 486.571417 222.291009
  1694. L 486.571417 219.847253
  1695. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1696. <path clip-path="url(#pabe1935394)" d="M 488.414491 222.291009
  1697. L 488.414491 219.847253
  1698. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1699. <path clip-path="url(#pabe1935394)" d="M 491.457823 222.291009
  1700. L 491.457823 219.847253
  1701. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1702. <path clip-path="url(#pabe1935394)" d="M 496.228723 222.291009
  1703. L 496.228723 219.847253
  1704. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1705. </g>
  1706. <g id="EventCollection_62">
  1707. <path clip-path="url(#pabe1935394)" d="M 301.530805 224.734765
  1708. L 301.530805 222.291009
  1709. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1710. <path clip-path="url(#pabe1935394)" d="M 303.640045 224.734765
  1711. L 303.640045 222.291009
  1712. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1713. <path clip-path="url(#pabe1935394)" d="M 486.927979 224.734765
  1714. L 486.927979 222.291009
  1715. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1716. <path clip-path="url(#pabe1935394)" d="M 488.745943 224.734765
  1717. L 488.745943 222.291009
  1718. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1719. <path clip-path="url(#pabe1935394)" d="M 491.302141 224.734765
  1720. L 491.302141 222.291009
  1721. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1722. </g>
  1723. <g id="EventCollection_63">
  1724. <path clip-path="url(#pabe1935394)" d="M 301.264639 227.178521
  1725. L 301.264639 224.734765
  1726. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1727. <path clip-path="url(#pabe1935394)" d="M 303.067537 227.178521
  1728. L 303.067537 224.734765
  1729. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1730. <path clip-path="url(#pabe1935394)" d="M 486.802429 227.178521
  1731. L 486.802429 224.734765
  1732. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1733. <path clip-path="url(#pabe1935394)" d="M 486.912913 227.178521
  1734. L 486.912913 224.734765
  1735. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1736. <path clip-path="url(#pabe1935394)" d="M 488.489821 227.178521
  1737. L 488.489821 224.734765
  1738. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1739. <path clip-path="url(#pabe1935394)" d="M 490.478533 227.178521
  1740. L 490.478533 224.734765
  1741. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1742. </g>
  1743. <g id="EventCollection_64">
  1744. <path clip-path="url(#pabe1935394)" d="M 51.575821 229.622278
  1745. L 51.575821 227.178521
  1746. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1747. <path clip-path="url(#pabe1935394)" d="M 300.887989 229.622278
  1748. L 300.887989 227.178521
  1749. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1750. <path clip-path="url(#pabe1935394)" d="M 303.097669 229.622278
  1751. L 303.097669 227.178521
  1752. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1753. <path clip-path="url(#pabe1935394)" d="M 487.435201 229.622278
  1754. L 487.435201 227.178521
  1755. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1756. </g>
  1757. <g id="EventCollection_65">
  1758. <path clip-path="url(#pabe1935394)" d="M 52.354231 232.066034
  1759. L 52.354231 229.622278
  1760. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1761. <path clip-path="url(#pabe1935394)" d="M 300.260239 232.066034
  1762. L 300.260239 229.622278
  1763. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1764. <path clip-path="url(#pabe1935394)" d="M 304.237663 232.066034
  1765. L 304.237663 229.622278
  1766. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1767. <path clip-path="url(#pabe1935394)" d="M 486.973177 232.066034
  1768. L 486.973177 229.622278
  1769. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1770. <path clip-path="url(#pabe1935394)" d="M 489.017131 232.066034
  1771. L 489.017131 229.622278
  1772. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1773. <path clip-path="url(#pabe1935394)" d="M 489.253165 232.066034
  1774. L 489.253165 229.622278
  1775. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1776. </g>
  1777. <g id="EventCollection_66">
  1778. <path clip-path="url(#pabe1935394)" d="M 237.962329 234.50979
  1779. L 237.962329 232.066034
  1780. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1781. <path clip-path="url(#pabe1935394)" d="M 300.687109 234.50979
  1782. L 300.687109 232.066034
  1783. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1784. <path clip-path="url(#pabe1935394)" d="M 305.337481 234.50979
  1785. L 305.337481 232.066034
  1786. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1787. <path clip-path="url(#pabe1935394)" d="M 486.375559 234.50979
  1788. L 486.375559 232.066034
  1789. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1790. <path clip-path="url(#pabe1935394)" d="M 486.802429 234.50979
  1791. L 486.802429 232.066034
  1792. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1793. <path clip-path="url(#pabe1935394)" d="M 488.550085 234.50979
  1794. L 488.550085 232.066034
  1795. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1796. <path clip-path="url(#pabe1935394)" d="M 495.194191 234.50979
  1797. L 495.194191 232.066034
  1798. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1799. </g>
  1800. <g id="EventCollection_67">
  1801. <path clip-path="url(#pabe1935394)" d="M 52.484803 236.953546
  1802. L 52.484803 234.50979
  1803. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1804. <path clip-path="url(#pabe1935394)" d="M 304.031761 236.953546
  1805. L 304.031761 234.50979
  1806. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1807. <path clip-path="url(#pabe1935394)" d="M 486.666835 236.953546
  1808. L 486.666835 234.50979
  1809. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1810. <path clip-path="url(#pabe1935394)" d="M 488.278897 236.953546
  1811. L 488.278897 234.50979
  1812. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1813. <path clip-path="url(#pabe1935394)" d="M 492.412003 236.953546
  1814. L 492.412003 234.50979
  1815. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1816. </g>
  1817. <g id="EventCollection_68">
  1818. <path clip-path="url(#pabe1935394)" d="M 300.682087 239.397303
  1819. L 300.682087 236.953546
  1820. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1821. <path clip-path="url(#pabe1935394)" d="M 486.927979 239.397303
  1822. L 486.927979 236.953546
  1823. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1824. <path clip-path="url(#pabe1935394)" d="M 488.067973 239.397303
  1825. L 488.067973 236.953546
  1826. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1827. <path clip-path="url(#pabe1935394)" d="M 489.127615 239.397303
  1828. L 489.127615 236.953546
  1829. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1830. <path clip-path="url(#pabe1935394)" d="M 489.248143 239.397303
  1831. L 489.248143 236.953546
  1832. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1833. <path clip-path="url(#pabe1935394)" d="M 490.694479 239.397303
  1834. L 490.694479 236.953546
  1835. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1836. </g>
  1837. <g id="EventCollection_69">
  1838. <path clip-path="url(#pabe1935394)" d="M 51.636085 241.841059
  1839. L 51.636085 239.397303
  1840. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1841. <path clip-path="url(#pabe1935394)" d="M 52.268857 241.841059
  1842. L 52.268857 239.397303
  1843. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1844. <path clip-path="url(#pabe1935394)" d="M 301.179265 241.841059
  1845. L 301.179265 239.397303
  1846. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1847. <path clip-path="url(#pabe1935394)" d="M 302.063137 241.841059
  1848. L 302.063137 239.397303
  1849. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1850. <path clip-path="url(#pabe1935394)" d="M 487.053529 241.841059
  1851. L 487.053529 239.397303
  1852. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1853. <path clip-path="url(#pabe1935394)" d="M 488.103127 241.841059
  1854. L 488.103127 239.397303
  1855. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1856. <path clip-path="url(#pabe1935394)" d="M 488.183479 241.841059
  1857. L 488.183479 239.397303
  1858. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1859. <path clip-path="url(#pabe1935394)" d="M 491.030953 241.841059
  1860. L 491.030953 239.397303
  1861. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1862. </g>
  1863. <g id="EventCollection_70">
  1864. <path clip-path="url(#pabe1935394)" d="M 301.319881 244.284815
  1865. L 301.319881 241.841059
  1866. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1867. <path clip-path="url(#pabe1935394)" d="M 302.856613 244.284815
  1868. L 302.856613 241.841059
  1869. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1870. <path clip-path="url(#pabe1935394)" d="M 484.286407 244.284815
  1871. L 484.286407 241.841059
  1872. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1873. <path clip-path="url(#pabe1935394)" d="M 484.693189 244.284815
  1874. L 484.693189 241.841059
  1875. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1876. <path clip-path="url(#pabe1935394)" d="M 486.214855 244.284815
  1877. L 486.214855 241.841059
  1878. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1879. <path clip-path="url(#pabe1935394)" d="M 486.737143 244.284815
  1880. L 486.737143 241.841059
  1881. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1882. </g>
  1883. <g id="EventCollection_71">
  1884. <path clip-path="url(#pabe1935394)" d="M 52.238725 246.728571
  1885. L 52.238725 244.284815
  1886. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1887. <path clip-path="url(#pabe1935394)" d="M 300.225085 246.728571
  1888. L 300.225085 244.284815
  1889. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1890. <path clip-path="url(#pabe1935394)" d="M 304.835281 246.728571
  1891. L 304.835281 244.284815
  1892. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1893. <path clip-path="url(#pabe1935394)" d="M 486.797407 246.728571
  1894. L 486.797407 244.284815
  1895. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1896. <path clip-path="url(#pabe1935394)" d="M 489.313429 246.728571
  1897. L 489.313429 244.284815
  1898. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1899. <path clip-path="url(#pabe1935394)" d="M 491.332273 246.728571
  1900. L 491.332273 244.284815
  1901. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1902. <path clip-path="url(#pabe1935394)" d="M 492.472267 246.728571
  1903. L 492.472267 244.284815
  1904. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1905. </g>
  1906. <g id="EventCollection_72">
  1907. <path clip-path="url(#pabe1935394)" d="M 300.827725 249.172328
  1908. L 300.827725 246.728571
  1909. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1910. <path clip-path="url(#pabe1935394)" d="M 301.113979 249.172328
  1911. L 301.113979 246.728571
  1912. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1913. <path clip-path="url(#pabe1935394)" d="M 303.178021 249.172328
  1914. L 303.178021 246.728571
  1915. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1916. <path clip-path="url(#pabe1935394)" d="M 485.938645 249.172328
  1917. L 485.938645 246.728571
  1918. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1919. <path clip-path="url(#pabe1935394)" d="M 486.701989 249.172328
  1920. L 486.701989 246.728571
  1921. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1922. <path clip-path="url(#pabe1935394)" d="M 488.339161 249.172328
  1923. L 488.339161 246.728571
  1924. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1925. <path clip-path="url(#pabe1935394)" d="M 490.619149 249.172328
  1926. L 490.619149 246.728571
  1927. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1928. </g>
  1929. <g id="EventCollection_73">
  1930. <path clip-path="url(#pabe1935394)" d="M 300.456097 251.616084
  1931. L 300.456097 249.172328
  1932. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1933. <path clip-path="url(#pabe1935394)" d="M 302.138467 251.616084
  1934. L 302.138467 249.172328
  1935. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1936. <path clip-path="url(#pabe1935394)" d="M 305.081359 251.616084
  1937. L 305.081359 249.172328
  1938. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1939. <path clip-path="url(#pabe1935394)" d="M 486.752209 251.616084
  1940. L 486.752209 249.172328
  1941. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1942. <path clip-path="url(#pabe1935394)" d="M 488.730877 251.616084
  1943. L 488.730877 249.172328
  1944. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1945. <path clip-path="url(#pabe1935394)" d="M 491.121349 251.616084
  1946. L 491.121349 249.172328
  1947. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1948. </g>
  1949. <g id="EventCollection_74">
  1950. <path clip-path="url(#pabe1935394)" d="M 238.831135 254.05984
  1951. L 238.831135 251.616084
  1952. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1953. <path clip-path="url(#pabe1935394)" d="M 303.137845 254.05984
  1954. L 303.137845 251.616084
  1955. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1956. <path clip-path="url(#pabe1935394)" d="M 306.281617 254.05984
  1957. L 306.281617 251.616084
  1958. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1959. <path clip-path="url(#pabe1935394)" d="M 488.690701 254.05984
  1960. L 488.690701 251.616084
  1961. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1962. </g>
  1963. <g id="EventCollection_75">
  1964. <path clip-path="url(#pabe1935394)" d="M 197.213821 256.503596
  1965. L 197.213821 254.05984
  1966. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1967. <path clip-path="url(#pabe1935394)" d="M 303.599869 256.503596
  1968. L 303.599869 254.05984
  1969. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1970. <path clip-path="url(#pabe1935394)" d="M 308.787595 256.503596
  1971. L 308.787595 254.05984
  1972. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1973. <path clip-path="url(#pabe1935394)" d="M 486.501109 256.503596
  1974. L 486.501109 254.05984
  1975. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1976. <path clip-path="url(#pabe1935394)" d="M 486.872737 256.503596
  1977. L 486.872737 254.05984
  1978. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1979. <path clip-path="url(#pabe1935394)" d="M 488.484799 256.503596
  1980. L 488.484799 254.05984
  1981. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1982. <path clip-path="url(#pabe1935394)" d="M 489.293341 256.503596
  1983. L 489.293341 254.05984
  1984. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1985. <path clip-path="url(#pabe1935394)" d="M 491.824429 256.503596
  1986. L 491.824429 254.05984
  1987. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1988. </g>
  1989. <g id="EventCollection_76">
  1990. <path clip-path="url(#pabe1935394)" d="M 265.407559 258.947353
  1991. L 265.407559 256.503596
  1992. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1993. <path clip-path="url(#pabe1935394)" d="M 301.450453 258.947353
  1994. L 301.450453 256.503596
  1995. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1996. <path clip-path="url(#pabe1935394)" d="M 305.352547 258.947353
  1997. L 305.352547 256.503596
  1998. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1999. <path clip-path="url(#pabe1935394)" d="M 487.108771 258.947353
  2000. L 487.108771 256.503596
  2001. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2002. <path clip-path="url(#pabe1935394)" d="M 488.690701 258.947353
  2003. L 488.690701 256.503596
  2004. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2005. <path clip-path="url(#pabe1935394)" d="M 491.407603 258.947353
  2006. L 491.407603 256.503596
  2007. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2008. <path clip-path="url(#pabe1935394)" d="M 494.917981 258.947353
  2009. L 494.917981 256.503596
  2010. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2011. <path clip-path="url(#pabe1935394)" d="M 497.654971 258.947353
  2012. L 497.654971 256.503596
  2013. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2014. <path clip-path="url(#pabe1935394)" d="M 499.874695 258.947353
  2015. L 499.874695 256.503596
  2016. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2017. <path clip-path="url(#pabe1935394)" d="M 500.507467 258.947353
  2018. L 500.507467 256.503596
  2019. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2020. </g>
  2021. <g id="EventCollection_77">
  2022. <path clip-path="url(#pabe1935394)" d="M 300.832747 261.391109
  2023. L 300.832747 258.947353
  2024. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2025. <path clip-path="url(#pabe1935394)" d="M 302.575381 261.391109
  2026. L 302.575381 258.947353
  2027. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2028. <path clip-path="url(#pabe1935394)" d="M 303.368857 261.391109
  2029. L 303.368857 258.947353
  2030. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2031. <path clip-path="url(#pabe1935394)" d="M 486.686923 261.391109
  2032. L 486.686923 258.947353
  2033. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2034. <path clip-path="url(#pabe1935394)" d="M 486.922957 261.391109
  2035. L 486.922957 258.947353
  2036. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2037. <path clip-path="url(#pabe1935394)" d="M 488.067973 261.391109
  2038. L 488.067973 258.947353
  2039. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2040. <path clip-path="url(#pabe1935394)" d="M 489.383737 261.391109
  2041. L 489.383737 258.947353
  2042. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2043. <path clip-path="url(#pabe1935394)" d="M 490.177213 261.391109
  2044. L 490.177213 258.947353
  2045. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2046. <path clip-path="url(#pabe1935394)" d="M 494.034109 261.391109
  2047. L 494.034109 258.947353
  2048. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2049. <path clip-path="url(#pabe1935394)" d="M 495.329785 261.391109
  2050. L 495.329785 258.947353
  2051. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2052. </g>
  2053. <g id="EventCollection_78">
  2054. <path clip-path="url(#pabe1935394)" d="M 199.323061 263.834865
  2055. L 199.323061 261.391109
  2056. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2057. <path clip-path="url(#pabe1935394)" d="M 238.735717 263.834865
  2058. L 238.735717 261.391109
  2059. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2060. <path clip-path="url(#pabe1935394)" d="M 301.400233 263.834865
  2061. L 301.400233 261.391109
  2062. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2063. <path clip-path="url(#pabe1935394)" d="M 305.036161 263.834865
  2064. L 305.036161 261.391109
  2065. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2066. <path clip-path="url(#pabe1935394)" d="M 485.958733 263.834865
  2067. L 485.958733 261.391109
  2068. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2069. <path clip-path="url(#pabe1935394)" d="M 486.742165 263.834865
  2070. L 486.742165 261.391109
  2071. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2072. </g>
  2073. <g id="EventCollection_79">
  2074. <path clip-path="url(#pabe1935394)" d="M 109.404151 266.278621
  2075. L 109.404151 263.834865
  2076. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2077. <path clip-path="url(#pabe1935394)" d="M 301.339969 266.278621
  2078. L 301.339969 263.834865
  2079. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2080. <path clip-path="url(#pabe1935394)" d="M 303.705331 266.278621
  2081. L 303.705331 263.834865
  2082. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2083. <path clip-path="url(#pabe1935394)" d="M 303.830881 266.278621
  2084. L 303.830881 263.834865
  2085. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2086. <path clip-path="url(#pabe1935394)" d="M 489.479155 266.278621
  2087. L 489.479155 263.834865
  2088. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2089. <path clip-path="url(#pabe1935394)" d="M 490.875271 266.278621
  2090. L 490.875271 263.834865
  2091. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2092. <path clip-path="url(#pabe1935394)" d="M 491.729011 266.278621
  2093. L 491.729011 263.834865
  2094. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2095. </g>
  2096. <g id="EventCollection_80">
  2097. <path clip-path="url(#pabe1935394)" d="M 221.851753 268.722378
  2098. L 221.851753 266.278621
  2099. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2100. <path clip-path="url(#pabe1935394)" d="M 300.551515 268.722378
  2101. L 300.551515 266.278621
  2102. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2103. <path clip-path="url(#pabe1935394)" d="M 302.309215 268.722378
  2104. L 302.309215 266.278621
  2105. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2106. <path clip-path="url(#pabe1935394)" d="M 304.664533 268.722378
  2107. L 304.664533 266.278621
  2108. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2109. <path clip-path="url(#pabe1935394)" d="M 486.094327 268.722378
  2110. L 486.094327 266.278621
  2111. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2112. <path clip-path="url(#pabe1935394)" d="M 486.425779 268.722378
  2113. L 486.425779 266.278621
  2114. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2115. <path clip-path="url(#pabe1935394)" d="M 486.817495 268.722378
  2116. L 486.817495 266.278621
  2117. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2118. <path clip-path="url(#pabe1935394)" d="M 486.938023 268.722378
  2119. L 486.938023 266.278621
  2120. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2121. <path clip-path="url(#pabe1935394)" d="M 492.060463 268.722378
  2122. L 492.060463 266.278621
  2123. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2124. <path clip-path="url(#pabe1935394)" d="M 501.978913 268.722378
  2125. L 501.978913 266.278621
  2126. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2127. </g>
  2128. <g id="EventCollection_81">
  2129. <path clip-path="url(#pabe1935394)" d="M 301.209397 271.166134
  2130. L 301.209397 268.722378
  2131. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2132. <path clip-path="url(#pabe1935394)" d="M 302.816437 271.166134
  2133. L 302.816437 268.722378
  2134. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2135. <path clip-path="url(#pabe1935394)" d="M 417.443587 271.166134
  2136. L 417.443587 268.722378
  2137. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2138. <path clip-path="url(#pabe1935394)" d="M 488.600305 271.166134
  2139. L 488.600305 268.722378
  2140. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2141. </g>
  2142. <g id="EventCollection_82">
  2143. <path clip-path="url(#pabe1935394)" d="M 50.907895 273.60989
  2144. L 50.907895 271.166134
  2145. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2146. <path clip-path="url(#pabe1935394)" d="M 52.364275 273.60989
  2147. L 52.364275 271.166134
  2148. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2149. <path clip-path="url(#pabe1935394)" d="M 300.772483 273.60989
  2150. L 300.772483 271.166134
  2151. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2152. <path clip-path="url(#pabe1935394)" d="M 303.368857 273.60989
  2153. L 303.368857 271.166134
  2154. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2155. <path clip-path="url(#pabe1935394)" d="M 305.387701 273.60989
  2156. L 305.387701 271.166134
  2157. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2158. <path clip-path="url(#pabe1935394)" d="M 432.680335 273.60989
  2159. L 432.680335 271.166134
  2160. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2161. <path clip-path="url(#pabe1935394)" d="M 486.963133 273.60989
  2162. L 486.963133 271.166134
  2163. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2164. <path clip-path="url(#pabe1935394)" d="M 488.560129 273.60989
  2165. L 488.560129 271.166134
  2166. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2167. <path clip-path="url(#pabe1935394)" d="M 490.880293 273.60989
  2168. L 490.880293 271.166134
  2169. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2170. <path clip-path="url(#pabe1935394)" d="M 494.938069 273.60989
  2171. L 494.938069 271.166134
  2172. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2173. <path clip-path="url(#pabe1935394)" d="M 499.528177 273.60989
  2174. L 499.528177 271.166134
  2175. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2176. </g>
  2177. <g id="EventCollection_83">
  2178. <path clip-path="url(#pabe1935394)" d="M 50.747191 276.053646
  2179. L 50.747191 273.60989
  2180. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2181. <path clip-path="url(#pabe1935394)" d="M 301.284727 276.053646
  2182. L 301.284727 273.60989
  2183. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2184. <path clip-path="url(#pabe1935394)" d="M 303.464275 276.053646
  2185. L 303.464275 273.60989
  2186. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2187. <path clip-path="url(#pabe1935394)" d="M 354.944797 276.053646
  2188. L 354.944797 273.60989
  2189. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2190. <path clip-path="url(#pabe1935394)" d="M 486.385603 276.053646
  2191. L 486.385603 273.60989
  2192. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2193. <path clip-path="url(#pabe1935394)" d="M 488.670613 276.053646
  2194. L 488.670613 273.60989
  2195. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2196. <path clip-path="url(#pabe1935394)" d="M 491.005843 276.053646
  2197. L 491.005843 273.60989
  2198. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2199. <path clip-path="url(#pabe1935394)" d="M 491.131393 276.053646
  2200. L 491.131393 273.60989
  2201. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2202. </g>
  2203. <g id="EventCollection_84">
  2204. <path clip-path="url(#pabe1935394)" d="M 237.404887 278.497403
  2205. L 237.404887 276.053646
  2206. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2207. <path clip-path="url(#pabe1935394)" d="M 300.677065 278.497403
  2208. L 300.677065 276.053646
  2209. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2210. <path clip-path="url(#pabe1935394)" d="M 300.923143 278.497403
  2211. L 300.923143 276.053646
  2212. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2213. <path clip-path="url(#pabe1935394)" d="M 303.449209 278.497403
  2214. L 303.449209 276.053646
  2215. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2216. <path clip-path="url(#pabe1935394)" d="M 303.986563 278.497403
  2217. L 303.986563 276.053646
  2218. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2219. <path clip-path="url(#pabe1935394)" d="M 304.408411 278.497403
  2220. L 304.408411 276.053646
  2221. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2222. <path clip-path="url(#pabe1935394)" d="M 486.862693 278.497403
  2223. L 486.862693 276.053646
  2224. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2225. <path clip-path="url(#pabe1935394)" d="M 487.068595 278.497403
  2226. L 487.068595 276.053646
  2227. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2228. <path clip-path="url(#pabe1935394)" d="M 488.997043 278.497403
  2229. L 488.997043 276.053646
  2230. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2231. <path clip-path="url(#pabe1935394)" d="M 492.718345 278.497403
  2232. L 492.718345 276.053646
  2233. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2234. <path clip-path="url(#pabe1935394)" d="M 519.771859 278.497403
  2235. L 519.771859 276.053646
  2236. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2237. </g>
  2238. <g id="EventCollection_85">
  2239. <path clip-path="url(#pabe1935394)" d="M 51.671239 280.941159
  2240. L 51.671239 278.497403
  2241. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2242. <path clip-path="url(#pabe1935394)" d="M 237.349645 280.941159
  2243. L 237.349645 278.497403
  2244. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2245. <path clip-path="url(#pabe1935394)" d="M 303.760573 280.941159
  2246. L 303.760573 278.497403
  2247. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2248. <path clip-path="url(#pabe1935394)" d="M 486.757231 280.941159
  2249. L 486.757231 278.497403
  2250. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2251. <path clip-path="url(#pabe1935394)" d="M 487.902247 280.941159
  2252. L 487.902247 278.497403
  2253. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2254. <path clip-path="url(#pabe1935394)" d="M 488.429557 280.941159
  2255. L 488.429557 278.497403
  2256. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2257. <path clip-path="url(#pabe1935394)" d="M 490.317829 280.941159
  2258. L 490.317829 278.497403
  2259. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2260. <path clip-path="url(#pabe1935394)" d="M 497.313475 280.941159
  2261. L 497.313475 278.497403
  2262. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2263. </g>
  2264. <g id="EventCollection_86">
  2265. <path clip-path="url(#pabe1935394)" d="M 300.586669 283.384915
  2266. L 300.586669 280.941159
  2267. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2268. <path clip-path="url(#pabe1935394)" d="M 305.558449 283.384915
  2269. L 305.558449 280.941159
  2270. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2271. <path clip-path="url(#pabe1935394)" d="M 486.752209 283.384915
  2272. L 486.752209 280.941159
  2273. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2274. <path clip-path="url(#pabe1935394)" d="M 488.655547 283.384915
  2275. L 488.655547 280.941159
  2276. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2277. <path clip-path="url(#pabe1935394)" d="M 489.348583 283.384915
  2278. L 489.348583 280.941159
  2279. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2280. <path clip-path="url(#pabe1935394)" d="M 491.427691 283.384915
  2281. L 491.427691 280.941159
  2282. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2283. </g>
  2284. <g id="EventCollection_87">
  2285. <path clip-path="url(#pabe1935394)" d="M 52.218637 285.828671
  2286. L 52.218637 283.384915
  2287. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2288. <path clip-path="url(#pabe1935394)" d="M 281.869675 285.828671
  2289. L 281.869675 283.384915
  2290. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2291. <path clip-path="url(#pabe1935394)" d="M 302.449831 285.828671
  2292. L 302.449831 283.384915
  2293. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2294. <path clip-path="url(#pabe1935394)" d="M 488.811229 285.828671
  2295. L 488.811229 283.384915
  2296. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2297. <path clip-path="url(#pabe1935394)" d="M 490.950601 285.828671
  2298. L 490.950601 283.384915
  2299. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2300. <path clip-path="url(#pabe1935394)" d="M 496.896649 285.828671
  2301. L 496.896649 283.384915
  2302. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2303. </g>
  2304. <g id="EventCollection_88">
  2305. <path clip-path="url(#pabe1935394)" d="M 486.345427 288.272428
  2306. L 486.345427 285.828671
  2307. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2308. <path clip-path="url(#pabe1935394)" d="M 489.564529 288.272428
  2309. L 489.564529 285.828671
  2310. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2311. <path clip-path="url(#pabe1935394)" d="M 493.993933 288.272428
  2312. L 493.993933 285.828671
  2313. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2314. </g>
  2315. <g id="EventCollection_89">
  2316. <path clip-path="url(#pabe1935394)" d="M 51.821899 290.716184
  2317. L 51.821899 288.272428
  2318. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2319. <path clip-path="url(#pabe1935394)" d="M 51.907273 290.716184
  2320. L 51.907273 288.272428
  2321. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2322. <path clip-path="url(#pabe1935394)" d="M 52.304011 290.716184
  2323. L 52.304011 288.272428
  2324. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2325. <path clip-path="url(#pabe1935394)" d="M 177.708373 290.716184
  2326. L 177.708373 288.272428
  2327. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2328. <path clip-path="url(#pabe1935394)" d="M 252.727009 290.716184
  2329. L 252.727009 288.272428
  2330. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2331. </g>
  2332. <g id="EventCollection_90"/>
  2333. </g>
  2334. <g id="axes_2">
  2335. <g id="patch_7">
  2336. <path d="M 46.965625 561.24
  2337. L 549.165625 561.24
  2338. L 549.165625 338.858182
  2339. L 46.965625 338.858182
  2340. z
  2341. " style="fill:#ffffff;"/>
  2342. </g>
  2343. <g id="PolyCollection_1">
  2344. <path clip-path="url(#p717cb45097)" d="M 237.801625 561.24
  2345. L 237.801625 548.746639
  2346. L 239.057125 548.746639
  2347. L 240.312625 548.746639
  2348. L 240.312625 561.24
  2349. L 240.312625 561.24
  2350. L 239.057125 561.24
  2351. L 237.801625 561.24
  2352. z
  2353. " style="fill:#d3d3d3;"/>
  2354. <path clip-path="url(#p717cb45097)" d="M 252.867625 561.24
  2355. L 252.867625 558.741328
  2356. L 252.867625 561.24
  2357. L 252.867625 561.24
  2358. z
  2359. " style="fill:#d3d3d3;"/>
  2360. <path clip-path="url(#p717cb45097)" d="M 265.422625 561.24
  2361. L 265.422625 558.741328
  2362. L 265.422625 561.24
  2363. L 265.422625 561.24
  2364. z
  2365. " style="fill:#d3d3d3;"/>
  2366. <path clip-path="url(#p717cb45097)" d="M 282.999625 561.24
  2367. L 282.999625 558.741328
  2368. L 282.999625 561.24
  2369. L 282.999625 561.24
  2370. z
  2371. " style="fill:#d3d3d3;"/>
  2372. <path clip-path="url(#p717cb45097)" d="M 294.299125 561.24
  2373. L 294.299125 558.741328
  2374. L 294.299125 561.24
  2375. L 294.299125 561.24
  2376. z
  2377. " style="fill:#d3d3d3;"/>
  2378. </g>
  2379. <g id="PolyCollection_2">
  2380. <path clip-path="url(#p717cb45097)" d="M 486.390625 561.24
  2381. L 486.390625 513.76523
  2382. L 487.646125 338.858182
  2383. L 488.901625 381.335608
  2384. L 490.157125 443.802411
  2385. L 491.412625 453.797099
  2386. L 492.668125 516.263902
  2387. L 493.923625 548.746639
  2388. L 495.179125 531.255935
  2389. L 496.434625 551.245312
  2390. L 497.690125 548.746639
  2391. L 498.945625 556.242656
  2392. L 500.201125 553.743984
  2393. L 501.456625 556.242656
  2394. L 502.712125 558.741328
  2395. L 502.712125 561.24
  2396. L 502.712125 561.24
  2397. L 501.456625 561.24
  2398. L 500.201125 561.24
  2399. L 498.945625 561.24
  2400. L 497.690125 561.24
  2401. L 496.434625 561.24
  2402. L 495.179125 561.24
  2403. L 493.923625 561.24
  2404. L 492.668125 561.24
  2405. L 491.412625 561.24
  2406. L 490.157125 561.24
  2407. L 488.901625 561.24
  2408. L 487.646125 561.24
  2409. L 486.390625 561.24
  2410. z
  2411. " style="fill:#d3d3d3;"/>
  2412. <path clip-path="url(#p717cb45097)" d="M 520.289125 561.24
  2413. L 520.289125 558.741328
  2414. L 520.289125 561.24
  2415. L 520.289125 561.24
  2416. z
  2417. " style="fill:#d3d3d3;"/>
  2418. <path clip-path="url(#p717cb45097)" d="M 524.055625 561.24
  2419. L 524.055625 558.741328
  2420. L 524.055625 561.24
  2421. L 524.055625 561.24
  2422. z
  2423. " style="fill:#d3d3d3;"/>
  2424. </g>
  2425. <g id="matplotlib.axis_3">
  2426. <g id="xtick_1">
  2427. <g id="line2d_6">
  2428. <defs>
  2429. <path d="M 0 0
  2430. L 0 3.5
  2431. " id="m2bf1ceb1af" style="stroke:#000000;stroke-width:0.8;"/>
  2432. </defs>
  2433. <g>
  2434. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m2bf1ceb1af" y="561.24"/>
  2435. </g>
  2436. </g>
  2437. <g id="text_7">
  2438. <!-- 0.0 -->
  2439. <defs>
  2440. <path d="M 10.6875 12.40625
  2441. L 21 12.40625
  2442. L 21 0
  2443. L 10.6875 0
  2444. z
  2445. " id="DejaVuSans-2e"/>
  2446. </defs>
  2447. <g transform="translate(39.014063 575.838437)scale(0.1 -0.1)">
  2448. <use xlink:href="#DejaVuSans-30"/>
  2449. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2450. <use x="95.410156" xlink:href="#DejaVuSans-30"/>
  2451. </g>
  2452. </g>
  2453. </g>
  2454. <g id="xtick_2">
  2455. <g id="line2d_7">
  2456. <g>
  2457. <use style="stroke:#000000;stroke-width:0.8;" x="109.740625" xlink:href="#m2bf1ceb1af" y="561.24"/>
  2458. </g>
  2459. </g>
  2460. <g id="text_8">
  2461. <!-- 0.5 -->
  2462. <defs>
  2463. <path d="M 10.796875 72.90625
  2464. L 49.515625 72.90625
  2465. L 49.515625 64.59375
  2466. L 19.828125 64.59375
  2467. L 19.828125 46.734375
  2468. Q 21.96875 47.46875 24.109375 47.828125
  2469. Q 26.265625 48.1875 28.421875 48.1875
  2470. Q 40.625 48.1875 47.75 41.5
  2471. Q 54.890625 34.8125 54.890625 23.390625
  2472. Q 54.890625 11.625 47.5625 5.09375
  2473. Q 40.234375 -1.421875 26.90625 -1.421875
  2474. Q 22.3125 -1.421875 17.546875 -0.640625
  2475. Q 12.796875 0.140625 7.71875 1.703125
  2476. L 7.71875 11.625
  2477. Q 12.109375 9.234375 16.796875 8.0625
  2478. Q 21.484375 6.890625 26.703125 6.890625
  2479. Q 35.15625 6.890625 40.078125 11.328125
  2480. Q 45.015625 15.765625 45.015625 23.390625
  2481. Q 45.015625 31 40.078125 35.4375
  2482. Q 35.15625 39.890625 26.703125 39.890625
  2483. Q 22.75 39.890625 18.8125 39.015625
  2484. Q 14.890625 38.140625 10.796875 36.28125
  2485. z
  2486. " id="DejaVuSans-35"/>
  2487. </defs>
  2488. <g transform="translate(101.789063 575.838437)scale(0.1 -0.1)">
  2489. <use xlink:href="#DejaVuSans-30"/>
  2490. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2491. <use x="95.410156" xlink:href="#DejaVuSans-35"/>
  2492. </g>
  2493. </g>
  2494. </g>
  2495. <g id="xtick_3">
  2496. <g id="line2d_8">
  2497. <g>
  2498. <use style="stroke:#000000;stroke-width:0.8;" x="172.515625" xlink:href="#m2bf1ceb1af" y="561.24"/>
  2499. </g>
  2500. </g>
  2501. <g id="text_9">
  2502. <!-- 1.0 -->
  2503. <defs>
  2504. <path d="M 12.40625 8.296875
  2505. L 28.515625 8.296875
  2506. L 28.515625 63.921875
  2507. L 10.984375 60.40625
  2508. L 10.984375 69.390625
  2509. L 28.421875 72.90625
  2510. L 38.28125 72.90625
  2511. L 38.28125 8.296875
  2512. L 54.390625 8.296875
  2513. L 54.390625 0
  2514. L 12.40625 0
  2515. z
  2516. " id="DejaVuSans-31"/>
  2517. </defs>
  2518. <g transform="translate(164.564063 575.838437)scale(0.1 -0.1)">
  2519. <use xlink:href="#DejaVuSans-31"/>
  2520. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2521. <use x="95.410156" xlink:href="#DejaVuSans-30"/>
  2522. </g>
  2523. </g>
  2524. </g>
  2525. <g id="xtick_4">
  2526. <g id="line2d_9">
  2527. <g>
  2528. <use style="stroke:#000000;stroke-width:0.8;" x="235.290625" xlink:href="#m2bf1ceb1af" y="561.24"/>
  2529. </g>
  2530. </g>
  2531. <g id="text_10">
  2532. <!-- 1.5 -->
  2533. <g transform="translate(227.339063 575.838437)scale(0.1 -0.1)">
  2534. <use xlink:href="#DejaVuSans-31"/>
  2535. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2536. <use x="95.410156" xlink:href="#DejaVuSans-35"/>
  2537. </g>
  2538. </g>
  2539. </g>
  2540. <g id="xtick_5">
  2541. <g id="line2d_10">
  2542. <g>
  2543. <use style="stroke:#000000;stroke-width:0.8;" x="298.065625" xlink:href="#m2bf1ceb1af" y="561.24"/>
  2544. </g>
  2545. </g>
  2546. <g id="text_11">
  2547. <!-- 2.0 -->
  2548. <g transform="translate(290.114063 575.838437)scale(0.1 -0.1)">
  2549. <use xlink:href="#DejaVuSans-32"/>
  2550. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2551. <use x="95.410156" xlink:href="#DejaVuSans-30"/>
  2552. </g>
  2553. </g>
  2554. </g>
  2555. <g id="xtick_6">
  2556. <g id="line2d_11">
  2557. <g>
  2558. <use style="stroke:#000000;stroke-width:0.8;" x="360.840625" xlink:href="#m2bf1ceb1af" y="561.24"/>
  2559. </g>
  2560. </g>
  2561. <g id="text_12">
  2562. <!-- 2.5 -->
  2563. <g transform="translate(352.889063 575.838437)scale(0.1 -0.1)">
  2564. <use xlink:href="#DejaVuSans-32"/>
  2565. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2566. <use x="95.410156" xlink:href="#DejaVuSans-35"/>
  2567. </g>
  2568. </g>
  2569. </g>
  2570. <g id="xtick_7">
  2571. <g id="line2d_12">
  2572. <g>
  2573. <use style="stroke:#000000;stroke-width:0.8;" x="423.615625" xlink:href="#m2bf1ceb1af" y="561.24"/>
  2574. </g>
  2575. </g>
  2576. <g id="text_13">
  2577. <!-- 3.0 -->
  2578. <defs>
  2579. <path d="M 40.578125 39.3125
  2580. Q 47.65625 37.796875 51.625 33
  2581. Q 55.609375 28.21875 55.609375 21.1875
  2582. Q 55.609375 10.40625 48.1875 4.484375
  2583. Q 40.765625 -1.421875 27.09375 -1.421875
  2584. Q 22.515625 -1.421875 17.65625 -0.515625
  2585. Q 12.796875 0.390625 7.625 2.203125
  2586. L 7.625 11.71875
  2587. Q 11.71875 9.328125 16.59375 8.109375
  2588. Q 21.484375 6.890625 26.8125 6.890625
  2589. Q 36.078125 6.890625 40.9375 10.546875
  2590. Q 45.796875 14.203125 45.796875 21.1875
  2591. Q 45.796875 27.640625 41.28125 31.265625
  2592. Q 36.765625 34.90625 28.71875 34.90625
  2593. L 20.21875 34.90625
  2594. L 20.21875 43.015625
  2595. L 29.109375 43.015625
  2596. Q 36.375 43.015625 40.234375 45.921875
  2597. Q 44.09375 48.828125 44.09375 54.296875
  2598. Q 44.09375 59.90625 40.109375 62.90625
  2599. Q 36.140625 65.921875 28.71875 65.921875
  2600. Q 24.65625 65.921875 20.015625 65.03125
  2601. Q 15.375 64.15625 9.8125 62.3125
  2602. L 9.8125 71.09375
  2603. Q 15.4375 72.65625 20.34375 73.4375
  2604. Q 25.25 74.21875 29.59375 74.21875
  2605. Q 40.828125 74.21875 47.359375 69.109375
  2606. Q 53.90625 64.015625 53.90625 55.328125
  2607. Q 53.90625 49.265625 50.4375 45.09375
  2608. Q 46.96875 40.921875 40.578125 39.3125
  2609. z
  2610. " id="DejaVuSans-33"/>
  2611. </defs>
  2612. <g transform="translate(415.664062 575.838437)scale(0.1 -0.1)">
  2613. <use xlink:href="#DejaVuSans-33"/>
  2614. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2615. <use x="95.410156" xlink:href="#DejaVuSans-30"/>
  2616. </g>
  2617. </g>
  2618. </g>
  2619. <g id="xtick_8">
  2620. <g id="line2d_13">
  2621. <g>
  2622. <use style="stroke:#000000;stroke-width:0.8;" x="486.390625" xlink:href="#m2bf1ceb1af" y="561.24"/>
  2623. </g>
  2624. </g>
  2625. <g id="text_14">
  2626. <!-- 3.5 -->
  2627. <g transform="translate(478.439063 575.838437)scale(0.1 -0.1)">
  2628. <use xlink:href="#DejaVuSans-33"/>
  2629. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2630. <use x="95.410156" xlink:href="#DejaVuSans-35"/>
  2631. </g>
  2632. </g>
  2633. </g>
  2634. <g id="xtick_9">
  2635. <g id="line2d_14">
  2636. <g>
  2637. <use style="stroke:#000000;stroke-width:0.8;" x="549.165625" xlink:href="#m2bf1ceb1af" y="561.24"/>
  2638. </g>
  2639. </g>
  2640. <g id="text_15">
  2641. <!-- 4.0 -->
  2642. <g transform="translate(541.214063 575.838437)scale(0.1 -0.1)">
  2643. <use xlink:href="#DejaVuSans-34"/>
  2644. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2645. <use x="95.410156" xlink:href="#DejaVuSans-30"/>
  2646. </g>
  2647. </g>
  2648. </g>
  2649. <g id="text_16">
  2650. <!-- Time[s] -->
  2651. <defs>
  2652. <path d="M 52 44.1875
  2653. Q 55.375 50.25 60.0625 53.125
  2654. Q 64.75 56 71.09375 56
  2655. Q 79.640625 56 84.28125 50.015625
  2656. Q 88.921875 44.046875 88.921875 33.015625
  2657. L 88.921875 0
  2658. L 79.890625 0
  2659. L 79.890625 32.71875
  2660. Q 79.890625 40.578125 77.09375 44.375
  2661. Q 74.3125 48.1875 68.609375 48.1875
  2662. Q 61.625 48.1875 57.5625 43.546875
  2663. Q 53.515625 38.921875 53.515625 30.90625
  2664. L 53.515625 0
  2665. L 44.484375 0
  2666. L 44.484375 32.71875
  2667. Q 44.484375 40.625 41.703125 44.40625
  2668. Q 38.921875 48.1875 33.109375 48.1875
  2669. Q 26.21875 48.1875 22.15625 43.53125
  2670. Q 18.109375 38.875 18.109375 30.90625
  2671. L 18.109375 0
  2672. L 9.078125 0
  2673. L 9.078125 54.6875
  2674. L 18.109375 54.6875
  2675. L 18.109375 46.1875
  2676. Q 21.1875 51.21875 25.484375 53.609375
  2677. Q 29.78125 56 35.6875 56
  2678. Q 41.65625 56 45.828125 52.96875
  2679. Q 50 49.953125 52 44.1875
  2680. z
  2681. " id="DejaVuSans-6d"/>
  2682. <path d="M 56.203125 29.59375
  2683. L 56.203125 25.203125
  2684. L 14.890625 25.203125
  2685. Q 15.484375 15.921875 20.484375 11.0625
  2686. Q 25.484375 6.203125 34.421875 6.203125
  2687. Q 39.59375 6.203125 44.453125 7.46875
  2688. Q 49.3125 8.734375 54.109375 11.28125
  2689. L 54.109375 2.78125
  2690. Q 49.265625 0.734375 44.1875 -0.34375
  2691. Q 39.109375 -1.421875 33.890625 -1.421875
  2692. Q 20.796875 -1.421875 13.15625 6.1875
  2693. Q 5.515625 13.8125 5.515625 26.8125
  2694. Q 5.515625 40.234375 12.765625 48.109375
  2695. Q 20.015625 56 32.328125 56
  2696. Q 43.359375 56 49.78125 48.890625
  2697. Q 56.203125 41.796875 56.203125 29.59375
  2698. z
  2699. M 47.21875 32.234375
  2700. Q 47.125 39.59375 43.09375 43.984375
  2701. Q 39.0625 48.390625 32.421875 48.390625
  2702. Q 24.90625 48.390625 20.390625 44.140625
  2703. Q 15.875 39.890625 15.1875 32.171875
  2704. z
  2705. " id="DejaVuSans-65"/>
  2706. <path d="M 8.59375 75.984375
  2707. L 29.296875 75.984375
  2708. L 29.296875 69
  2709. L 17.578125 69
  2710. L 17.578125 -6.203125
  2711. L 29.296875 -6.203125
  2712. L 29.296875 -13.1875
  2713. L 8.59375 -13.1875
  2714. z
  2715. " id="DejaVuSans-5b"/>
  2716. <path d="M 44.28125 53.078125
  2717. L 44.28125 44.578125
  2718. Q 40.484375 46.53125 36.375 47.5
  2719. Q 32.28125 48.484375 27.875 48.484375
  2720. Q 21.1875 48.484375 17.84375 46.4375
  2721. Q 14.5 44.390625 14.5 40.28125
  2722. Q 14.5 37.15625 16.890625 35.375
  2723. Q 19.28125 33.59375 26.515625 31.984375
  2724. L 29.59375 31.296875
  2725. Q 39.15625 29.25 43.1875 25.515625
  2726. Q 47.21875 21.78125 47.21875 15.09375
  2727. Q 47.21875 7.46875 41.1875 3.015625
  2728. Q 35.15625 -1.421875 24.609375 -1.421875
  2729. Q 20.21875 -1.421875 15.453125 -0.5625
  2730. Q 10.6875 0.296875 5.421875 2
  2731. L 5.421875 11.28125
  2732. Q 10.40625 8.6875 15.234375 7.390625
  2733. Q 20.0625 6.109375 24.8125 6.109375
  2734. Q 31.15625 6.109375 34.5625 8.28125
  2735. Q 37.984375 10.453125 37.984375 14.40625
  2736. Q 37.984375 18.0625 35.515625 20.015625
  2737. Q 33.0625 21.96875 24.703125 23.78125
  2738. L 21.578125 24.515625
  2739. Q 13.234375 26.265625 9.515625 29.90625
  2740. Q 5.8125 33.546875 5.8125 39.890625
  2741. Q 5.8125 47.609375 11.28125 51.796875
  2742. Q 16.75 56 26.8125 56
  2743. Q 31.78125 56 36.171875 55.265625
  2744. Q 40.578125 54.546875 44.28125 53.078125
  2745. z
  2746. " id="DejaVuSans-73"/>
  2747. <path d="M 30.421875 75.984375
  2748. L 30.421875 -13.1875
  2749. L 9.71875 -13.1875
  2750. L 9.71875 -6.203125
  2751. L 21.390625 -6.203125
  2752. L 21.390625 69
  2753. L 9.71875 69
  2754. L 9.71875 75.984375
  2755. z
  2756. " id="DejaVuSans-5d"/>
  2757. </defs>
  2758. <g transform="translate(279.171875 589.516562)scale(0.1 -0.1)">
  2759. <use xlink:href="#DejaVuSans-54"/>
  2760. <use x="61.037109" xlink:href="#DejaVuSans-69"/>
  2761. <use x="88.820312" xlink:href="#DejaVuSans-6d"/>
  2762. <use x="186.232422" xlink:href="#DejaVuSans-65"/>
  2763. <use x="247.755859" xlink:href="#DejaVuSans-5b"/>
  2764. <use x="286.769531" xlink:href="#DejaVuSans-73"/>
  2765. <use x="338.869141" xlink:href="#DejaVuSans-5d"/>
  2766. </g>
  2767. </g>
  2768. </g>
  2769. <g id="matplotlib.axis_4">
  2770. <g id="ytick_6">
  2771. <g id="line2d_15">
  2772. <g>
  2773. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m9741601051" y="561.24"/>
  2774. </g>
  2775. </g>
  2776. <g id="text_17">
  2777. <!-- 0 -->
  2778. <g transform="translate(33.603125 565.039219)scale(0.1 -0.1)">
  2779. <use xlink:href="#DejaVuSans-30"/>
  2780. </g>
  2781. </g>
  2782. </g>
  2783. <g id="ytick_7">
  2784. <g id="line2d_16">
  2785. <g>
  2786. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m9741601051" y="516.87455"/>
  2787. </g>
  2788. </g>
  2789. <g id="text_18">
  2790. <!-- 20 -->
  2791. <g transform="translate(27.240625 520.673769)scale(0.1 -0.1)">
  2792. <use xlink:href="#DejaVuSans-32"/>
  2793. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  2794. </g>
  2795. </g>
  2796. </g>
  2797. <g id="ytick_8">
  2798. <g id="line2d_17">
  2799. <g>
  2800. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m9741601051" y="472.5091"/>
  2801. </g>
  2802. </g>
  2803. <g id="text_19">
  2804. <!-- 40 -->
  2805. <g transform="translate(27.240625 476.308319)scale(0.1 -0.1)">
  2806. <use xlink:href="#DejaVuSans-34"/>
  2807. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  2808. </g>
  2809. </g>
  2810. </g>
  2811. <g id="ytick_9">
  2812. <g id="line2d_18">
  2813. <g>
  2814. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m9741601051" y="428.14365"/>
  2815. </g>
  2816. </g>
  2817. <g id="text_20">
  2818. <!-- 60 -->
  2819. <g transform="translate(27.240625 431.942869)scale(0.1 -0.1)">
  2820. <use xlink:href="#DejaVuSans-36"/>
  2821. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  2822. </g>
  2823. </g>
  2824. </g>
  2825. <g id="ytick_10">
  2826. <g id="line2d_19">
  2827. <g>
  2828. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m9741601051" y="383.7782"/>
  2829. </g>
  2830. </g>
  2831. <g id="text_21">
  2832. <!-- 80 -->
  2833. <g transform="translate(27.240625 387.577419)scale(0.1 -0.1)">
  2834. <use xlink:href="#DejaVuSans-38"/>
  2835. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  2836. </g>
  2837. </g>
  2838. </g>
  2839. <g id="ytick_11">
  2840. <g id="line2d_20">
  2841. <g>
  2842. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m9741601051" y="339.41275"/>
  2843. </g>
  2844. </g>
  2845. <g id="text_22">
  2846. <!-- 100 -->
  2847. <g transform="translate(20.878125 343.211969)scale(0.1 -0.1)">
  2848. <use xlink:href="#DejaVuSans-31"/>
  2849. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  2850. <use x="127.246094" xlink:href="#DejaVuSans-30"/>
  2851. </g>
  2852. </g>
  2853. </g>
  2854. <g id="text_23">
  2855. <!-- Firing rate[spikes/s] -->
  2856. <defs>
  2857. <path d="M 9.8125 72.90625
  2858. L 51.703125 72.90625
  2859. L 51.703125 64.59375
  2860. L 19.671875 64.59375
  2861. L 19.671875 43.109375
  2862. L 48.578125 43.109375
  2863. L 48.578125 34.8125
  2864. L 19.671875 34.8125
  2865. L 19.671875 0
  2866. L 9.8125 0
  2867. z
  2868. " id="DejaVuSans-46"/>
  2869. <path d="M 54.890625 33.015625
  2870. L 54.890625 0
  2871. L 45.90625 0
  2872. L 45.90625 32.71875
  2873. Q 45.90625 40.484375 42.875 44.328125
  2874. Q 39.84375 48.1875 33.796875 48.1875
  2875. Q 26.515625 48.1875 22.3125 43.546875
  2876. Q 18.109375 38.921875 18.109375 30.90625
  2877. L 18.109375 0
  2878. L 9.078125 0
  2879. L 9.078125 54.6875
  2880. L 18.109375 54.6875
  2881. L 18.109375 46.1875
  2882. Q 21.34375 51.125 25.703125 53.5625
  2883. Q 30.078125 56 35.796875 56
  2884. Q 45.21875 56 50.046875 50.171875
  2885. Q 54.890625 44.34375 54.890625 33.015625
  2886. z
  2887. " id="DejaVuSans-6e"/>
  2888. <path d="M 45.40625 27.984375
  2889. Q 45.40625 37.75 41.375 43.109375
  2890. Q 37.359375 48.484375 30.078125 48.484375
  2891. Q 22.859375 48.484375 18.828125 43.109375
  2892. Q 14.796875 37.75 14.796875 27.984375
  2893. Q 14.796875 18.265625 18.828125 12.890625
  2894. Q 22.859375 7.515625 30.078125 7.515625
  2895. Q 37.359375 7.515625 41.375 12.890625
  2896. Q 45.40625 18.265625 45.40625 27.984375
  2897. z
  2898. M 54.390625 6.78125
  2899. Q 54.390625 -7.171875 48.1875 -13.984375
  2900. Q 42 -20.796875 29.203125 -20.796875
  2901. Q 24.46875 -20.796875 20.265625 -20.09375
  2902. Q 16.0625 -19.390625 12.109375 -17.921875
  2903. L 12.109375 -9.1875
  2904. Q 16.0625 -11.328125 19.921875 -12.34375
  2905. Q 23.78125 -13.375 27.78125 -13.375
  2906. Q 36.625 -13.375 41.015625 -8.765625
  2907. Q 45.40625 -4.15625 45.40625 5.171875
  2908. L 45.40625 9.625
  2909. Q 42.625 4.78125 38.28125 2.390625
  2910. Q 33.9375 0 27.875 0
  2911. Q 17.828125 0 11.671875 7.65625
  2912. Q 5.515625 15.328125 5.515625 27.984375
  2913. Q 5.515625 40.671875 11.671875 48.328125
  2914. Q 17.828125 56 27.875 56
  2915. Q 33.9375 56 38.28125 53.609375
  2916. Q 42.625 51.21875 45.40625 46.390625
  2917. L 45.40625 54.6875
  2918. L 54.390625 54.6875
  2919. z
  2920. " id="DejaVuSans-67"/>
  2921. <path id="DejaVuSans-20"/>
  2922. <path d="M 18.3125 70.21875
  2923. L 18.3125 54.6875
  2924. L 36.8125 54.6875
  2925. L 36.8125 47.703125
  2926. L 18.3125 47.703125
  2927. L 18.3125 18.015625
  2928. Q 18.3125 11.328125 20.140625 9.421875
  2929. Q 21.96875 7.515625 27.59375 7.515625
  2930. L 36.8125 7.515625
  2931. L 36.8125 0
  2932. L 27.59375 0
  2933. Q 17.1875 0 13.234375 3.875
  2934. Q 9.28125 7.765625 9.28125 18.015625
  2935. L 9.28125 47.703125
  2936. L 2.6875 47.703125
  2937. L 2.6875 54.6875
  2938. L 9.28125 54.6875
  2939. L 9.28125 70.21875
  2940. z
  2941. " id="DejaVuSans-74"/>
  2942. <path d="M 18.109375 8.203125
  2943. L 18.109375 -20.796875
  2944. L 9.078125 -20.796875
  2945. L 9.078125 54.6875
  2946. L 18.109375 54.6875
  2947. L 18.109375 46.390625
  2948. Q 20.953125 51.265625 25.265625 53.625
  2949. Q 29.59375 56 35.59375 56
  2950. Q 45.5625 56 51.78125 48.09375
  2951. Q 58.015625 40.1875 58.015625 27.296875
  2952. Q 58.015625 14.40625 51.78125 6.484375
  2953. Q 45.5625 -1.421875 35.59375 -1.421875
  2954. Q 29.59375 -1.421875 25.265625 0.953125
  2955. Q 20.953125 3.328125 18.109375 8.203125
  2956. z
  2957. M 48.6875 27.296875
  2958. Q 48.6875 37.203125 44.609375 42.84375
  2959. Q 40.53125 48.484375 33.40625 48.484375
  2960. Q 26.265625 48.484375 22.1875 42.84375
  2961. Q 18.109375 37.203125 18.109375 27.296875
  2962. Q 18.109375 17.390625 22.1875 11.75
  2963. Q 26.265625 6.109375 33.40625 6.109375
  2964. Q 40.53125 6.109375 44.609375 11.75
  2965. Q 48.6875 17.390625 48.6875 27.296875
  2966. z
  2967. " id="DejaVuSans-70"/>
  2968. <path d="M 9.078125 75.984375
  2969. L 18.109375 75.984375
  2970. L 18.109375 31.109375
  2971. L 44.921875 54.6875
  2972. L 56.390625 54.6875
  2973. L 27.390625 29.109375
  2974. L 57.625 0
  2975. L 45.90625 0
  2976. L 18.109375 26.703125
  2977. L 18.109375 0
  2978. L 9.078125 0
  2979. z
  2980. " id="DejaVuSans-6b"/>
  2981. <path d="M 25.390625 72.90625
  2982. L 33.6875 72.90625
  2983. L 8.296875 -9.28125
  2984. L 0 -9.28125
  2985. z
  2986. " id="DejaVuSans-2f"/>
  2987. </defs>
  2988. <g transform="translate(14.798438 499.774091)rotate(-90)scale(0.1 -0.1)">
  2989. <use xlink:href="#DejaVuSans-46"/>
  2990. <use x="57.410156" xlink:href="#DejaVuSans-69"/>
  2991. <use x="85.193359" xlink:href="#DejaVuSans-72"/>
  2992. <use x="126.306641" xlink:href="#DejaVuSans-69"/>
  2993. <use x="154.089844" xlink:href="#DejaVuSans-6e"/>
  2994. <use x="217.46875" xlink:href="#DejaVuSans-67"/>
  2995. <use x="280.945312" xlink:href="#DejaVuSans-20"/>
  2996. <use x="312.732422" xlink:href="#DejaVuSans-72"/>
  2997. <use x="353.845703" xlink:href="#DejaVuSans-61"/>
  2998. <use x="415.125" xlink:href="#DejaVuSans-74"/>
  2999. <use x="454.333984" xlink:href="#DejaVuSans-65"/>
  3000. <use x="515.857422" xlink:href="#DejaVuSans-5b"/>
  3001. <use x="554.871094" xlink:href="#DejaVuSans-73"/>
  3002. <use x="606.970703" xlink:href="#DejaVuSans-70"/>
  3003. <use x="670.447266" xlink:href="#DejaVuSans-69"/>
  3004. <use x="698.230469" xlink:href="#DejaVuSans-6b"/>
  3005. <use x="756.09375" xlink:href="#DejaVuSans-65"/>
  3006. <use x="817.617188" xlink:href="#DejaVuSans-73"/>
  3007. <use x="869.716797" xlink:href="#DejaVuSans-2f"/>
  3008. <use x="903.408203" xlink:href="#DejaVuSans-73"/>
  3009. <use x="955.507812" xlink:href="#DejaVuSans-5d"/>
  3010. </g>
  3011. </g>
  3012. </g>
  3013. <g id="line2d_21">
  3014. <path clip-path="url(#p717cb45097)" d="M 46.965625 561.24
  3015. L 49.476625 561.24
  3016. L 50.732125 558.741328
  3017. L 51.987625 506.269213
  3018. L 53.243125 491.277181
  3019. L 54.498625 561.24
  3020. L 108.485125 561.24
  3021. L 109.740625 558.741328
  3022. L 110.996125 561.24
  3023. L 117.273625 561.24
  3024. L 118.529125 558.741328
  3025. L 119.784625 561.24
  3026. L 177.537625 561.24
  3027. L 178.793125 558.741328
  3028. L 180.048625 561.24
  3029. L 196.370125 561.24
  3030. L 197.625625 558.741328
  3031. L 198.881125 561.24
  3032. L 200.136625 558.741328
  3033. L 201.392125 561.24
  3034. L 221.480125 561.24
  3035. L 222.735625 558.741328
  3036. L 223.991125 561.24
  3037. L 230.268625 561.24
  3038. L 231.524125 558.741328
  3039. L 232.779625 561.24
  3040. L 236.546125 561.24
  3041. L 237.801625 548.746639
  3042. L 240.312625 548.746639
  3043. L 241.568125 561.24
  3044. L 251.612125 561.24
  3045. L 252.867625 558.741328
  3046. L 254.123125 561.24
  3047. L 264.167125 561.24
  3048. L 265.422625 558.741328
  3049. L 266.678125 561.24
  3050. L 281.744125 561.24
  3051. L 282.999625 558.741328
  3052. L 284.255125 561.24
  3053. L 293.043625 561.24
  3054. L 294.299125 558.741328
  3055. L 295.554625 561.24
  3056. L 299.321125 561.24
  3057. L 300.576625 531.255935
  3058. L 301.832125 386.332952
  3059. L 303.087625 473.786476
  3060. L 304.343125 473.786476
  3061. L 305.598625 511.266558
  3062. L 306.854125 533.754607
  3063. L 308.109625 551.245312
  3064. L 309.365125 558.741328
  3065. L 310.620625 561.24
  3066. L 354.563125 561.24
  3067. L 355.818625 558.741328
  3068. L 357.074125 561.24
  3069. L 359.585125 561.24
  3070. L 360.840625 558.741328
  3071. L 362.096125 561.24
  3072. L 364.607125 561.24
  3073. L 365.862625 558.741328
  3074. L 367.118125 561.24
  3075. L 417.338125 561.24
  3076. L 418.593625 558.741328
  3077. L 419.849125 561.24
  3078. L 432.404125 561.24
  3079. L 433.659625 558.741328
  3080. L 434.915125 561.24
  3081. L 483.879625 561.24
  3082. L 485.135125 556.242656
  3083. L 486.390625 513.76523
  3084. L 487.646125 338.858182
  3085. L 488.901625 381.335608
  3086. L 490.157125 443.802411
  3087. L 491.412625 453.797099
  3088. L 492.668125 516.263902
  3089. L 493.923625 548.746639
  3090. L 495.179125 531.255935
  3091. L 496.434625 551.245312
  3092. L 497.690125 548.746639
  3093. L 498.945625 556.242656
  3094. L 500.201125 553.743984
  3095. L 503.967625 561.24
  3096. L 519.033625 561.24
  3097. L 520.289125 558.741328
  3098. L 521.544625 561.24
  3099. L 522.800125 561.24
  3100. L 524.055625 558.741328
  3101. L 525.311125 561.24
  3102. L 549.165625 561.24
  3103. L 549.165625 561.24
  3104. " style="fill:none;stroke:#1f77b4;stroke-linecap:square;stroke-width:1.5;"/>
  3105. </g>
  3106. <g id="text_24">
  3107. <!-- Baseline: 0 Hz Bias: -0.89 -->
  3108. <defs>
  3109. <path d="M 19.671875 34.8125
  3110. L 19.671875 8.109375
  3111. L 35.5 8.109375
  3112. Q 43.453125 8.109375 47.28125 11.40625
  3113. Q 51.125 14.703125 51.125 21.484375
  3114. Q 51.125 28.328125 47.28125 31.5625
  3115. Q 43.453125 34.8125 35.5 34.8125
  3116. z
  3117. M 19.671875 64.796875
  3118. L 19.671875 42.828125
  3119. L 34.28125 42.828125
  3120. Q 41.5 42.828125 45.03125 45.53125
  3121. Q 48.578125 48.25 48.578125 53.8125
  3122. Q 48.578125 59.328125 45.03125 62.0625
  3123. Q 41.5 64.796875 34.28125 64.796875
  3124. z
  3125. M 9.8125 72.90625
  3126. L 35.015625 72.90625
  3127. Q 46.296875 72.90625 52.390625 68.21875
  3128. Q 58.5 63.53125 58.5 54.890625
  3129. Q 58.5 48.1875 55.375 44.234375
  3130. Q 52.25 40.28125 46.1875 39.3125
  3131. Q 53.46875 37.75 57.5 32.78125
  3132. Q 61.53125 27.828125 61.53125 20.40625
  3133. Q 61.53125 10.640625 54.890625 5.3125
  3134. Q 48.25 0 35.984375 0
  3135. L 9.8125 0
  3136. z
  3137. " id="DejaVuSans-42"/>
  3138. <path d="M 11.71875 12.40625
  3139. L 22.015625 12.40625
  3140. L 22.015625 0
  3141. L 11.71875 0
  3142. z
  3143. M 11.71875 51.703125
  3144. L 22.015625 51.703125
  3145. L 22.015625 39.3125
  3146. L 11.71875 39.3125
  3147. z
  3148. " id="DejaVuSans-3a"/>
  3149. <path d="M 9.8125 72.90625
  3150. L 19.671875 72.90625
  3151. L 19.671875 43.015625
  3152. L 55.515625 43.015625
  3153. L 55.515625 72.90625
  3154. L 65.375 72.90625
  3155. L 65.375 0
  3156. L 55.515625 0
  3157. L 55.515625 34.71875
  3158. L 19.671875 34.71875
  3159. L 19.671875 0
  3160. L 9.8125 0
  3161. z
  3162. " id="DejaVuSans-48"/>
  3163. <path d="M 5.515625 54.6875
  3164. L 48.1875 54.6875
  3165. L 48.1875 46.484375
  3166. L 14.40625 7.171875
  3167. L 48.1875 7.171875
  3168. L 48.1875 0
  3169. L 4.296875 0
  3170. L 4.296875 8.203125
  3171. L 38.09375 47.515625
  3172. L 5.515625 47.515625
  3173. z
  3174. " id="DejaVuSans-7a"/>
  3175. <path d="M 4.890625 31.390625
  3176. L 31.203125 31.390625
  3177. L 31.203125 23.390625
  3178. L 4.890625 23.390625
  3179. z
  3180. " id="DejaVuSans-2d"/>
  3181. <path d="M 10.984375 1.515625
  3182. L 10.984375 10.5
  3183. Q 14.703125 8.734375 18.5 7.8125
  3184. Q 22.3125 6.890625 25.984375 6.890625
  3185. Q 35.75 6.890625 40.890625 13.453125
  3186. Q 46.046875 20.015625 46.78125 33.40625
  3187. Q 43.953125 29.203125 39.59375 26.953125
  3188. Q 35.25 24.703125 29.984375 24.703125
  3189. Q 19.046875 24.703125 12.671875 31.3125
  3190. Q 6.296875 37.9375 6.296875 49.421875
  3191. Q 6.296875 60.640625 12.9375 67.421875
  3192. Q 19.578125 74.21875 30.609375 74.21875
  3193. Q 43.265625 74.21875 49.921875 64.515625
  3194. Q 56.59375 54.828125 56.59375 36.375
  3195. Q 56.59375 19.140625 48.40625 8.859375
  3196. Q 40.234375 -1.421875 26.421875 -1.421875
  3197. Q 22.703125 -1.421875 18.890625 -0.6875
  3198. Q 15.09375 0.046875 10.984375 1.515625
  3199. z
  3200. M 30.609375 32.421875
  3201. Q 37.25 32.421875 41.125 36.953125
  3202. Q 45.015625 41.5 45.015625 49.421875
  3203. Q 45.015625 57.28125 41.125 61.84375
  3204. Q 37.25 66.40625 30.609375 66.40625
  3205. Q 23.96875 66.40625 20.09375 61.84375
  3206. Q 16.21875 57.28125 16.21875 49.421875
  3207. Q 16.21875 41.5 20.09375 36.953125
  3208. Q 23.96875 32.421875 30.609375 32.421875
  3209. z
  3210. " id="DejaVuSans-39"/>
  3211. </defs>
  3212. <g transform="translate(219.460938 332.858182)scale(0.12 -0.12)">
  3213. <use xlink:href="#DejaVuSans-42"/>
  3214. <use x="68.603516" xlink:href="#DejaVuSans-61"/>
  3215. <use x="129.882812" xlink:href="#DejaVuSans-73"/>
  3216. <use x="181.982422" xlink:href="#DejaVuSans-65"/>
  3217. <use x="243.505859" xlink:href="#DejaVuSans-6c"/>
  3218. <use x="271.289062" xlink:href="#DejaVuSans-69"/>
  3219. <use x="299.072266" xlink:href="#DejaVuSans-6e"/>
  3220. <use x="362.451172" xlink:href="#DejaVuSans-65"/>
  3221. <use x="423.974609" xlink:href="#DejaVuSans-3a"/>
  3222. <use x="457.666016" xlink:href="#DejaVuSans-20"/>
  3223. <use x="489.453125" xlink:href="#DejaVuSans-20"/>
  3224. <use x="521.240234" xlink:href="#DejaVuSans-30"/>
  3225. <use x="584.863281" xlink:href="#DejaVuSans-20"/>
  3226. <use x="616.650391" xlink:href="#DejaVuSans-48"/>
  3227. <use x="691.845703" xlink:href="#DejaVuSans-7a"/>
  3228. <use x="744.335938" xlink:href="#DejaVuSans-20"/>
  3229. <use x="776.123047" xlink:href="#DejaVuSans-42"/>
  3230. <use x="844.726562" xlink:href="#DejaVuSans-69"/>
  3231. <use x="872.509766" xlink:href="#DejaVuSans-61"/>
  3232. <use x="933.789062" xlink:href="#DejaVuSans-73"/>
  3233. <use x="985.888672" xlink:href="#DejaVuSans-3a"/>
  3234. <use x="1019.580078" xlink:href="#DejaVuSans-20"/>
  3235. <use x="1051.367188" xlink:href="#DejaVuSans-2d"/>
  3236. <use x="1087.451172" xlink:href="#DejaVuSans-30"/>
  3237. <use x="1151.074219" xlink:href="#DejaVuSans-2e"/>
  3238. <use x="1182.861328" xlink:href="#DejaVuSans-38"/>
  3239. <use x="1246.484375" xlink:href="#DejaVuSans-39"/>
  3240. </g>
  3241. </g>
  3242. </g>
  3243. <g id="text_25">
  3244. <!-- Erol_20180710_60MEA_marmoset -->
  3245. <defs>
  3246. <path d="M 9.8125 72.90625
  3247. L 55.90625 72.90625
  3248. L 55.90625 64.59375
  3249. L 19.671875 64.59375
  3250. L 19.671875 43.015625
  3251. L 54.390625 43.015625
  3252. L 54.390625 34.71875
  3253. L 19.671875 34.71875
  3254. L 19.671875 8.296875
  3255. L 56.78125 8.296875
  3256. L 56.78125 0
  3257. L 9.8125 0
  3258. z
  3259. " id="DejaVuSans-45"/>
  3260. <path d="M 30.609375 48.390625
  3261. Q 23.390625 48.390625 19.1875 42.75
  3262. Q 14.984375 37.109375 14.984375 27.296875
  3263. Q 14.984375 17.484375 19.15625 11.84375
  3264. Q 23.34375 6.203125 30.609375 6.203125
  3265. Q 37.796875 6.203125 41.984375 11.859375
  3266. Q 46.1875 17.53125 46.1875 27.296875
  3267. Q 46.1875 37.015625 41.984375 42.703125
  3268. Q 37.796875 48.390625 30.609375 48.390625
  3269. z
  3270. M 30.609375 56
  3271. Q 42.328125 56 49.015625 48.375
  3272. Q 55.71875 40.765625 55.71875 27.296875
  3273. Q 55.71875 13.875 49.015625 6.21875
  3274. Q 42.328125 -1.421875 30.609375 -1.421875
  3275. Q 18.84375 -1.421875 12.171875 6.21875
  3276. Q 5.515625 13.875 5.515625 27.296875
  3277. Q 5.515625 40.765625 12.171875 48.375
  3278. Q 18.84375 56 30.609375 56
  3279. z
  3280. " id="DejaVuSans-6f"/>
  3281. <path d="M 50.984375 -16.609375
  3282. L 50.984375 -23.578125
  3283. L -0.984375 -23.578125
  3284. L -0.984375 -16.609375
  3285. z
  3286. " id="DejaVuSans-5f"/>
  3287. <path d="M 8.203125 72.90625
  3288. L 55.078125 72.90625
  3289. L 55.078125 68.703125
  3290. L 28.609375 0
  3291. L 18.3125 0
  3292. L 43.21875 64.59375
  3293. L 8.203125 64.59375
  3294. z
  3295. " id="DejaVuSans-37"/>
  3296. <path d="M 9.8125 72.90625
  3297. L 24.515625 72.90625
  3298. L 43.109375 23.296875
  3299. L 61.8125 72.90625
  3300. L 76.515625 72.90625
  3301. L 76.515625 0
  3302. L 66.890625 0
  3303. L 66.890625 64.015625
  3304. L 48.09375 14.015625
  3305. L 38.1875 14.015625
  3306. L 19.390625 64.015625
  3307. L 19.390625 0
  3308. L 9.8125 0
  3309. z
  3310. " id="DejaVuSans-4d"/>
  3311. <path d="M 34.1875 63.1875
  3312. L 20.796875 26.90625
  3313. L 47.609375 26.90625
  3314. z
  3315. M 28.609375 72.90625
  3316. L 39.796875 72.90625
  3317. L 67.578125 0
  3318. L 57.328125 0
  3319. L 50.6875 18.703125
  3320. L 17.828125 18.703125
  3321. L 11.1875 0
  3322. L 0.78125 0
  3323. z
  3324. " id="DejaVuSans-41"/>
  3325. </defs>
  3326. <g transform="translate(187.451875 16.651875)scale(0.12 -0.12)">
  3327. <use xlink:href="#DejaVuSans-45"/>
  3328. <use x="63.183594" xlink:href="#DejaVuSans-72"/>
  3329. <use x="104.265625" xlink:href="#DejaVuSans-6f"/>
  3330. <use x="165.447266" xlink:href="#DejaVuSans-6c"/>
  3331. <use x="193.230469" xlink:href="#DejaVuSans-5f"/>
  3332. <use x="243.230469" xlink:href="#DejaVuSans-32"/>
  3333. <use x="306.853516" xlink:href="#DejaVuSans-30"/>
  3334. <use x="370.476562" xlink:href="#DejaVuSans-31"/>
  3335. <use x="434.099609" xlink:href="#DejaVuSans-38"/>
  3336. <use x="497.722656" xlink:href="#DejaVuSans-30"/>
  3337. <use x="561.345703" xlink:href="#DejaVuSans-37"/>
  3338. <use x="624.96875" xlink:href="#DejaVuSans-31"/>
  3339. <use x="688.591797" xlink:href="#DejaVuSans-30"/>
  3340. <use x="752.214844" xlink:href="#DejaVuSans-5f"/>
  3341. <use x="802.214844" xlink:href="#DejaVuSans-36"/>
  3342. <use x="865.837891" xlink:href="#DejaVuSans-30"/>
  3343. <use x="929.460938" xlink:href="#DejaVuSans-4d"/>
  3344. <use x="1015.740234" xlink:href="#DejaVuSans-45"/>
  3345. <use x="1078.923828" xlink:href="#DejaVuSans-41"/>
  3346. <use x="1147.332031" xlink:href="#DejaVuSans-5f"/>
  3347. <use x="1197.332031" xlink:href="#DejaVuSans-6d"/>
  3348. <use x="1294.744141" xlink:href="#DejaVuSans-61"/>
  3349. <use x="1356.023438" xlink:href="#DejaVuSans-72"/>
  3350. <use x="1397.121094" xlink:href="#DejaVuSans-6d"/>
  3351. <use x="1494.533203" xlink:href="#DejaVuSans-6f"/>
  3352. <use x="1555.714844" xlink:href="#DejaVuSans-73"/>
  3353. <use x="1607.814453" xlink:href="#DejaVuSans-65"/>
  3354. <use x="1669.337891" xlink:href="#DejaVuSans-74"/>
  3355. </g>
  3356. <!-- 3_onoffsteps30preframes90contrast1 -->
  3357. <defs>
  3358. <path d="M 37.109375 75.984375
  3359. L 37.109375 68.5
  3360. L 28.515625 68.5
  3361. Q 23.6875 68.5 21.796875 66.546875
  3362. Q 19.921875 64.59375 19.921875 59.515625
  3363. L 19.921875 54.6875
  3364. L 34.71875 54.6875
  3365. L 34.71875 47.703125
  3366. L 19.921875 47.703125
  3367. L 19.921875 0
  3368. L 10.890625 0
  3369. L 10.890625 47.703125
  3370. L 2.296875 47.703125
  3371. L 2.296875 54.6875
  3372. L 10.890625 54.6875
  3373. L 10.890625 58.5
  3374. Q 10.890625 67.625 15.140625 71.796875
  3375. Q 19.390625 75.984375 28.609375 75.984375
  3376. z
  3377. " id="DejaVuSans-66"/>
  3378. <path d="M 48.78125 52.59375
  3379. L 48.78125 44.1875
  3380. Q 44.96875 46.296875 41.140625 47.34375
  3381. Q 37.3125 48.390625 33.40625 48.390625
  3382. Q 24.65625 48.390625 19.8125 42.84375
  3383. Q 14.984375 37.3125 14.984375 27.296875
  3384. Q 14.984375 17.28125 19.8125 11.734375
  3385. Q 24.65625 6.203125 33.40625 6.203125
  3386. Q 37.3125 6.203125 41.140625 7.25
  3387. Q 44.96875 8.296875 48.78125 10.40625
  3388. L 48.78125 2.09375
  3389. Q 45.015625 0.34375 40.984375 -0.53125
  3390. Q 36.96875 -1.421875 32.421875 -1.421875
  3391. Q 20.0625 -1.421875 12.78125 6.34375
  3392. Q 5.515625 14.109375 5.515625 27.296875
  3393. Q 5.515625 40.671875 12.859375 48.328125
  3394. Q 20.21875 56 33.015625 56
  3395. Q 37.15625 56 41.109375 55.140625
  3396. Q 45.0625 54.296875 48.78125 52.59375
  3397. z
  3398. " id="DejaVuSans-63"/>
  3399. </defs>
  3400. <g transform="translate(176.9575 30.423)scale(0.12 -0.12)">
  3401. <use xlink:href="#DejaVuSans-33"/>
  3402. <use x="63.623047" xlink:href="#DejaVuSans-5f"/>
  3403. <use x="113.623047" xlink:href="#DejaVuSans-6f"/>
  3404. <use x="174.804688" xlink:href="#DejaVuSans-6e"/>
  3405. <use x="238.183594" xlink:href="#DejaVuSans-6f"/>
  3406. <use x="299.365234" xlink:href="#DejaVuSans-66"/>
  3407. <use x="334.570312" xlink:href="#DejaVuSans-66"/>
  3408. <use x="369.775391" xlink:href="#DejaVuSans-73"/>
  3409. <use x="421.875" xlink:href="#DejaVuSans-74"/>
  3410. <use x="461.083984" xlink:href="#DejaVuSans-65"/>
  3411. <use x="522.607422" xlink:href="#DejaVuSans-70"/>
  3412. <use x="586.083984" xlink:href="#DejaVuSans-73"/>
  3413. <use x="638.183594" xlink:href="#DejaVuSans-33"/>
  3414. <use x="701.806641" xlink:href="#DejaVuSans-30"/>
  3415. <use x="765.429688" xlink:href="#DejaVuSans-70"/>
  3416. <use x="828.90625" xlink:href="#DejaVuSans-72"/>
  3417. <use x="869.988281" xlink:href="#DejaVuSans-65"/>
  3418. <use x="931.511719" xlink:href="#DejaVuSans-66"/>
  3419. <use x="966.716797" xlink:href="#DejaVuSans-72"/>
  3420. <use x="1007.830078" xlink:href="#DejaVuSans-61"/>
  3421. <use x="1069.109375" xlink:href="#DejaVuSans-6d"/>
  3422. <use x="1166.521484" xlink:href="#DejaVuSans-65"/>
  3423. <use x="1228.044922" xlink:href="#DejaVuSans-73"/>
  3424. <use x="1280.144531" xlink:href="#DejaVuSans-39"/>
  3425. <use x="1343.767578" xlink:href="#DejaVuSans-30"/>
  3426. <use x="1407.390625" xlink:href="#DejaVuSans-63"/>
  3427. <use x="1462.371094" xlink:href="#DejaVuSans-6f"/>
  3428. <use x="1523.552734" xlink:href="#DejaVuSans-6e"/>
  3429. <use x="1586.931641" xlink:href="#DejaVuSans-74"/>
  3430. <use x="1626.140625" xlink:href="#DejaVuSans-72"/>
  3431. <use x="1667.253906" xlink:href="#DejaVuSans-61"/>
  3432. <use x="1728.533203" xlink:href="#DejaVuSans-73"/>
  3433. <use x="1780.632812" xlink:href="#DejaVuSans-74"/>
  3434. <use x="1819.841797" xlink:href="#DejaVuSans-31"/>
  3435. </g>
  3436. <!-- 00901 Rating: 3 -->
  3437. <defs>
  3438. <path d="M 44.390625 34.1875
  3439. Q 47.5625 33.109375 50.5625 29.59375
  3440. Q 53.5625 26.078125 56.59375 19.921875
  3441. L 66.609375 0
  3442. L 56 0
  3443. L 46.6875 18.703125
  3444. Q 43.0625 26.03125 39.671875 28.421875
  3445. Q 36.28125 30.8125 30.421875 30.8125
  3446. L 19.671875 30.8125
  3447. L 19.671875 0
  3448. L 9.8125 0
  3449. L 9.8125 72.90625
  3450. L 32.078125 72.90625
  3451. Q 44.578125 72.90625 50.734375 67.671875
  3452. Q 56.890625 62.453125 56.890625 51.90625
  3453. Q 56.890625 45.015625 53.6875 40.46875
  3454. Q 50.484375 35.9375 44.390625 34.1875
  3455. z
  3456. M 19.671875 64.796875
  3457. L 19.671875 38.921875
  3458. L 32.078125 38.921875
  3459. Q 39.203125 38.921875 42.84375 42.21875
  3460. Q 46.484375 45.515625 46.484375 51.90625
  3461. Q 46.484375 58.296875 42.84375 61.546875
  3462. Q 39.203125 64.796875 32.078125 64.796875
  3463. z
  3464. " id="DejaVuSans-52"/>
  3465. </defs>
  3466. <g transform="translate(241.750938 44.194125)scale(0.12 -0.12)">
  3467. <use xlink:href="#DejaVuSans-30"/>
  3468. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  3469. <use x="127.246094" xlink:href="#DejaVuSans-39"/>
  3470. <use x="190.869141" xlink:href="#DejaVuSans-30"/>
  3471. <use x="254.492188" xlink:href="#DejaVuSans-31"/>
  3472. <use x="318.115234" xlink:href="#DejaVuSans-20"/>
  3473. <use x="349.902344" xlink:href="#DejaVuSans-52"/>
  3474. <use x="419.353516" xlink:href="#DejaVuSans-61"/>
  3475. <use x="480.632812" xlink:href="#DejaVuSans-74"/>
  3476. <use x="519.841797" xlink:href="#DejaVuSans-69"/>
  3477. <use x="547.625" xlink:href="#DejaVuSans-6e"/>
  3478. <use x="611.003906" xlink:href="#DejaVuSans-67"/>
  3479. <use x="674.480469" xlink:href="#DejaVuSans-3a"/>
  3480. <use x="708.171875" xlink:href="#DejaVuSans-20"/>
  3481. <use x="739.958984" xlink:href="#DejaVuSans-33"/>
  3482. </g>
  3483. <!-- -->
  3484. <g transform="translate(289.965625 57.6315)scale(0.12 -0.12)"/>
  3485. </g>
  3486. </g>
  3487. <defs>
  3488. <clipPath id="pabe1935394">
  3489. <rect height="222.381818" width="502.2" x="46.965625" y="72"/>
  3490. </clipPath>
  3491. <clipPath id="p717cb45097">
  3492. <rect height="222.381818" width="502.2" x="46.965625" y="338.858182"/>
  3493. </clipPath>
  3494. </defs>
  3495. </svg>