05001.svg 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183
  1. <?xml version="1.0" encoding="utf-8" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
  3. "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
  4. <!-- Created with matplotlib (https://matplotlib.org/) -->
  5. <svg height="598.79625pt" version="1.1" viewBox="0 0 556.365625 598.79625" width="556.365625pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  6. <defs>
  7. <style type="text/css">
  8. *{stroke-linecap:butt;stroke-linejoin:round;}
  9. </style>
  10. </defs>
  11. <g id="figure_1">
  12. <g id="patch_1">
  13. <path d="M 0 598.79625
  14. L 556.365625 598.79625
  15. L 556.365625 0
  16. L 0 0
  17. z
  18. " style="fill:#ffffff;"/>
  19. </g>
  20. <g id="axes_1">
  21. <g id="patch_2">
  22. <path d="M 46.965625 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(#p94abdec1fa)" d="M 46.965625 72
  31. L 235.291301 72
  32. L 235.291301 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(#p94abdec1fa)" d="M 235.291301 72
  39. L 298.065625 72
  40. L 298.065625 294.381818
  41. L 235.291301 294.381818
  42. z
  43. " style="fill:none;opacity:0;"/>
  44. </g>
  45. <g id="patch_5">
  46. <path clip-path="url(#p94abdec1fa)" d="M 298.065625 72
  47. L 486.391301 72
  48. L 486.391301 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(#p94abdec1fa)" d="M 486.391301 72
  55. L 549.165625 72
  56. L 549.165625 294.381818
  57. L 486.391301 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="m8cfb1763ae" 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="#m8cfb1763ae" 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-48"/>
  98. </defs>
  99. <g transform="translate(33.603125 78.242975)scale(0.1 -0.1)">
  100. <use xlink:href="#DejaVuSans-48"/>
  101. </g>
  102. </g>
  103. </g>
  104. <g id="ytick_2">
  105. <g id="line2d_2">
  106. <g>
  107. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m8cfb1763ae" 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-50"/>
  137. </defs>
  138. <g transform="translate(27.240625 127.1181)scale(0.1 -0.1)">
  139. <use xlink:href="#DejaVuSans-50"/>
  140. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  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="#m8cfb1763ae" 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-52"/>
  170. </defs>
  171. <g transform="translate(27.240625 175.993225)scale(0.1 -0.1)">
  172. <use xlink:href="#DejaVuSans-52"/>
  173. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  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="#m8cfb1763ae" 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-54"/>
  216. </defs>
  217. <g transform="translate(27.240625 224.86835)scale(0.1 -0.1)">
  218. <use xlink:href="#DejaVuSans-54"/>
  219. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  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="#m8cfb1763ae" 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-56"/>
  271. </defs>
  272. <g transform="translate(27.240625 273.743474)scale(0.1 -0.1)">
  273. <use xlink:href="#DejaVuSans-56"/>
  274. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  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-84"/>
  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-114"/>
  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-105"/>
  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-97"/>
  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-108"/>
  356. </defs>
  357. <g transform="translate(21.160938 194.131534)rotate(-90)scale(0.1 -0.1)">
  358. <use xlink:href="#DejaVuSans-84"/>
  359. <use x="60.865234" xlink:href="#DejaVuSans-114"/>
  360. <use x="101.978516" xlink:href="#DejaVuSans-105"/>
  361. <use x="129.761719" xlink:href="#DejaVuSans-97"/>
  362. <use x="191.041016" xlink:href="#DejaVuSans-108"/>
  363. </g>
  364. </g>
  365. </g>
  366. <g id="EventCollection_1">
  367. <path clip-path="url(#p94abdec1fa)" d="M 241.464893 75.665634
  368. L 241.464893 73.221878
  369. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  370. <path clip-path="url(#p94abdec1fa)" d="M 241.890748 75.665634
  371. L 241.890748 73.221878
  372. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  373. <path clip-path="url(#p94abdec1fa)" d="M 303.93381 75.665634
  374. L 303.93381 73.221878
  375. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  376. <path clip-path="url(#p94abdec1fa)" d="M 304.374874 75.665634
  377. L 304.374874 73.221878
  378. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  379. <path clip-path="url(#p94abdec1fa)" d="M 491.335489 75.665634
  380. L 491.335489 73.221878
  381. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  382. </g>
  383. <g id="EventCollection_2">
  384. <path clip-path="url(#p94abdec1fa)" d="M 52.841414 78.109391
  385. L 52.841414 75.665634
  386. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  387. <path clip-path="url(#p94abdec1fa)" d="M 241.398987 78.109391
  388. L 241.398987 75.665634
  389. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  390. <path clip-path="url(#p94abdec1fa)" d="M 241.804563 78.109391
  391. L 241.804563 75.665634
  392. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  393. <path clip-path="url(#p94abdec1fa)" d="M 242.017491 78.109391
  394. L 242.017491 75.665634
  395. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  396. <path clip-path="url(#p94abdec1fa)" d="M 304.009855 78.109391
  397. L 304.009855 75.665634
  398. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  399. <path clip-path="url(#p94abdec1fa)" d="M 304.030134 78.109391
  400. L 304.030134 75.665634
  401. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  402. <path clip-path="url(#p94abdec1fa)" d="M 304.542174 78.109391
  403. L 304.542174 75.665634
  404. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  405. <path clip-path="url(#p94abdec1fa)" d="M 491.33042 78.109391
  406. L 491.33042 75.665634
  407. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  408. </g>
  409. <g id="EventCollection_3">
  410. <path clip-path="url(#p94abdec1fa)" d="M 52.846484 80.553147
  411. L 52.846484 78.109391
  412. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  413. <path clip-path="url(#p94abdec1fa)" d="M 241.992143 80.553147
  414. L 241.992143 78.109391
  415. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  416. <path clip-path="url(#p94abdec1fa)" d="M 304.050413 80.553147
  417. L 304.050413 78.109391
  418. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  419. <path clip-path="url(#p94abdec1fa)" d="M 304.410362 80.553147
  420. L 304.410362 78.109391
  421. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  422. <path clip-path="url(#p94abdec1fa)" d="M 491.553487 80.553147
  423. L 491.553487 78.109391
  424. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  425. </g>
  426. <g id="EventCollection_4">
  427. <path clip-path="url(#p94abdec1fa)" d="M 52.821135 82.996903
  428. L 52.821135 80.553147
  429. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  430. <path clip-path="url(#p94abdec1fa)" d="M 241.718378 82.996903
  431. L 241.718378 80.553147
  432. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  433. <path clip-path="url(#p94abdec1fa)" d="M 241.931306 82.996903
  434. L 241.931306 80.553147
  435. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  436. <path clip-path="url(#p94abdec1fa)" d="M 304.131528 82.996903
  437. L 304.131528 80.553147
  438. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  439. <path clip-path="url(#p94abdec1fa)" d="M 304.684126 82.996903
  440. L 304.684126 80.553147
  441. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  442. <path clip-path="url(#p94abdec1fa)" d="M 491.391256 82.996903
  443. L 491.391256 80.553147
  444. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  445. </g>
  446. <g id="EventCollection_5">
  447. <path clip-path="url(#p94abdec1fa)" d="M 52.810996 85.440659
  448. L 52.810996 82.996903
  449. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  450. <path clip-path="url(#p94abdec1fa)" d="M 241.328011 85.440659
  451. L 241.328011 82.996903
  452. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  453. <path clip-path="url(#p94abdec1fa)" d="M 241.718378 85.440659
  454. L 241.718378 82.996903
  455. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  456. <path clip-path="url(#p94abdec1fa)" d="M 241.931306 85.440659
  457. L 241.931306 82.996903
  458. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  459. <path clip-path="url(#p94abdec1fa)" d="M 304.085901 85.440659
  460. L 304.085901 82.996903
  461. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  462. </g>
  463. <g id="EventCollection_6">
  464. <path clip-path="url(#p94abdec1fa)" d="M 52.887042 87.884416
  465. L 52.887042 85.440659
  466. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  467. <path clip-path="url(#p94abdec1fa)" d="M 241.52573 87.884416
  468. L 241.52573 85.440659
  469. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  470. <path clip-path="url(#p94abdec1fa)" d="M 304.111249 87.884416
  471. L 304.111249 85.440659
  472. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  473. <path clip-path="url(#p94abdec1fa)" d="M 491.259444 87.884416
  474. L 491.259444 85.440659
  475. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  476. <path clip-path="url(#p94abdec1fa)" d="M 491.477441 87.884416
  477. L 491.477441 85.440659
  478. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  479. </g>
  480. <g id="EventCollection_7">
  481. <path clip-path="url(#p94abdec1fa)" d="M 52.831275 90.328172
  482. L 52.831275 87.884416
  483. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  484. <path clip-path="url(#p94abdec1fa)" d="M 241.383778 90.328172
  485. L 241.383778 87.884416
  486. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  487. <path clip-path="url(#p94abdec1fa)" d="M 241.723448 90.328172
  488. L 241.723448 87.884416
  489. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  490. <path clip-path="url(#p94abdec1fa)" d="M 241.936376 90.328172
  491. L 241.936376 87.884416
  492. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  493. <path clip-path="url(#p94abdec1fa)" d="M 304.050413 90.328172
  494. L 304.050413 87.884416
  495. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  496. <path clip-path="url(#p94abdec1fa)" d="M 491.416605 90.328172
  497. L 491.416605 87.884416
  498. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  499. </g>
  500. <g id="EventCollection_8">
  501. <path clip-path="url(#p94abdec1fa)" d="M 52.577789 92.771928
  502. L 52.577789 90.328172
  503. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  504. <path clip-path="url(#p94abdec1fa)" d="M 241.703169 92.771928
  505. L 241.703169 90.328172
  506. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  507. <path clip-path="url(#p94abdec1fa)" d="M 241.966794 92.771928
  508. L 241.966794 90.328172
  509. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  510. <path clip-path="url(#p94abdec1fa)" d="M 304.09604 92.771928
  511. L 304.09604 90.328172
  512. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  513. <path clip-path="url(#p94abdec1fa)" d="M 491.528138 92.771928
  514. L 491.528138 90.328172
  515. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  516. </g>
  517. <g id="EventCollection_9">
  518. <path clip-path="url(#p94abdec1fa)" d="M 241.51052 95.215684
  519. L 241.51052 92.771928
  520. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  521. <path clip-path="url(#p94abdec1fa)" d="M 241.997212 95.215684
  522. L 241.997212 92.771928
  523. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  524. <path clip-path="url(#p94abdec1fa)" d="M 304.182225 95.215684
  525. L 304.182225 92.771928
  526. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  527. <path clip-path="url(#p94abdec1fa)" d="M 304.729753 95.215684
  528. L 304.729753 92.771928
  529. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  530. <path clip-path="url(#p94abdec1fa)" d="M 491.457162 95.215684
  531. L 491.457162 92.771928
  532. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  533. </g>
  534. <g id="EventCollection_10">
  535. <path clip-path="url(#p94abdec1fa)" d="M 52.679184 97.659441
  536. L 52.679184 95.215684
  537. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  538. <path clip-path="url(#p94abdec1fa)" d="M 52.881972 97.659441
  539. L 52.881972 95.215684
  540. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  541. <path clip-path="url(#p94abdec1fa)" d="M 304.111249 97.659441
  542. L 304.111249 95.215684
  543. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  544. <path clip-path="url(#p94abdec1fa)" d="M 304.628359 97.659441
  545. L 304.628359 95.215684
  546. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  547. <path clip-path="url(#p94abdec1fa)" d="M 491.441953 97.659441
  548. L 491.441953 95.215684
  549. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  550. </g>
  551. <g id="EventCollection_11">
  552. <path clip-path="url(#p94abdec1fa)" d="M 52.653835 100.103197
  553. L 52.653835 97.659441
  554. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  555. <path clip-path="url(#p94abdec1fa)" d="M 52.871832 100.103197
  556. L 52.871832 97.659441
  557. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  558. <path clip-path="url(#p94abdec1fa)" d="M 241.748797 100.103197
  559. L 241.748797 97.659441
  560. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  561. <path clip-path="url(#p94abdec1fa)" d="M 241.982003 100.103197
  562. L 241.982003 97.659441
  563. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  564. <path clip-path="url(#p94abdec1fa)" d="M 304.187295 100.103197
  565. L 304.187295 97.659441
  566. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  567. <path clip-path="url(#p94abdec1fa)" d="M 304.734823 100.103197
  568. L 304.734823 97.659441
  569. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  570. <path clip-path="url(#p94abdec1fa)" d="M 491.49265 100.103197
  571. L 491.49265 97.659441
  572. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  573. </g>
  574. <g id="EventCollection_12">
  575. <path clip-path="url(#p94abdec1fa)" d="M 52.816066 102.546953
  576. L 52.816066 100.103197
  577. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  578. <path clip-path="url(#p94abdec1fa)" d="M 241.419266 102.546953
  579. L 241.419266 100.103197
  580. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  581. <path clip-path="url(#p94abdec1fa)" d="M 304.207574 102.546953
  582. L 304.207574 100.103197
  583. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  584. <path clip-path="url(#p94abdec1fa)" d="M 491.563626 102.546953
  585. L 491.563626 100.103197
  586. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  587. </g>
  588. <g id="EventCollection_13">
  589. <path clip-path="url(#p94abdec1fa)" d="M 52.800857 104.990709
  590. L 52.800857 102.546953
  591. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  592. <path clip-path="url(#p94abdec1fa)" d="M 241.404057 104.990709
  593. L 241.404057 102.546953
  594. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  595. <path clip-path="url(#p94abdec1fa)" d="M 241.911027 104.990709
  596. L 241.911027 102.546953
  597. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  598. <path clip-path="url(#p94abdec1fa)" d="M 304.202504 104.990709
  599. L 304.202504 102.546953
  600. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  601. <path clip-path="url(#p94abdec1fa)" d="M 304.496547 104.990709
  602. L 304.496547 102.546953
  603. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  604. <path clip-path="url(#p94abdec1fa)" d="M 491.223956 104.990709
  605. L 491.223956 102.546953
  606. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  607. <path clip-path="url(#p94abdec1fa)" d="M 491.441953 104.990709
  608. L 491.441953 102.546953
  609. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  610. <path clip-path="url(#p94abdec1fa)" d="M 491.523069 104.990709
  611. L 491.523069 102.546953
  612. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  613. </g>
  614. <g id="EventCollection_14">
  615. <path clip-path="url(#p94abdec1fa)" d="M 52.577789 107.434466
  616. L 52.577789 104.990709
  617. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  618. <path clip-path="url(#p94abdec1fa)" d="M 241.414196 107.434466
  619. L 241.414196 104.990709
  620. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  621. <path clip-path="url(#p94abdec1fa)" d="M 241.758936 107.434466
  622. L 241.758936 104.990709
  623. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  624. <path clip-path="url(#p94abdec1fa)" d="M 241.961724 107.434466
  625. L 241.961724 104.990709
  626. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  627. <path clip-path="url(#p94abdec1fa)" d="M 304.070692 107.434466
  628. L 304.070692 104.990709
  629. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  630. <path clip-path="url(#p94abdec1fa)" d="M 491.482511 107.434466
  631. L 491.482511 104.990709
  632. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  633. </g>
  634. <g id="EventCollection_15">
  635. <path clip-path="url(#p94abdec1fa)" d="M 52.841414 109.878222
  636. L 52.841414 107.434466
  637. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  638. <path clip-path="url(#p94abdec1fa)" d="M 241.424335 109.878222
  639. L 241.424335 107.434466
  640. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  641. <path clip-path="url(#p94abdec1fa)" d="M 304.258271 109.878222
  642. L 304.258271 107.434466
  643. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  644. <path clip-path="url(#p94abdec1fa)" d="M 491.467302 109.878222
  645. L 491.467302 107.434466
  646. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  647. </g>
  648. <g id="EventCollection_16">
  649. <path clip-path="url(#p94abdec1fa)" d="M 52.704532 112.321978
  650. L 52.704532 109.878222
  651. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  652. <path clip-path="url(#p94abdec1fa)" d="M 304.248131 112.321978
  653. L 304.248131 109.878222
  654. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  655. <path clip-path="url(#p94abdec1fa)" d="M 304.684126 112.321978
  656. L 304.684126 109.878222
  657. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  658. <path clip-path="url(#p94abdec1fa)" d="M 491.300001 112.321978
  659. L 491.300001 109.878222
  660. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  661. <path clip-path="url(#p94abdec1fa)" d="M 491.487581 112.321978
  662. L 491.487581 109.878222
  663. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  664. </g>
  665. <g id="EventCollection_17">
  666. <path clip-path="url(#p94abdec1fa)" d="M 52.608208 114.765734
  667. L 52.608208 112.321978
  668. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  669. <path clip-path="url(#p94abdec1fa)" d="M 52.810996 114.765734
  670. L 52.810996 112.321978
  671. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  672. <path clip-path="url(#p94abdec1fa)" d="M 241.480102 114.765734
  673. L 241.480102 112.321978
  674. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  675. <path clip-path="url(#p94abdec1fa)" d="M 241.753866 114.765734
  676. L 241.753866 112.321978
  677. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  678. <path clip-path="url(#p94abdec1fa)" d="M 241.976933 114.765734
  679. L 241.976933 112.321978
  680. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  681. <path clip-path="url(#p94abdec1fa)" d="M 304.243062 114.765734
  682. L 304.243062 112.321978
  683. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  684. <path clip-path="url(#p94abdec1fa)" d="M 491.436884 114.765734
  685. L 491.436884 112.321978
  686. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  687. </g>
  688. <g id="EventCollection_18">
  689. <path clip-path="url(#p94abdec1fa)" d="M 241.429405 117.209491
  690. L 241.429405 114.765734
  691. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  692. <path clip-path="url(#p94abdec1fa)" d="M 304.212643 117.209491
  693. L 304.212643 114.765734
  694. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  695. <path clip-path="url(#p94abdec1fa)" d="M 491.533208 117.209491
  696. L 491.533208 114.765734
  697. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  698. </g>
  699. <g id="EventCollection_19">
  700. <path clip-path="url(#p94abdec1fa)" d="M 52.628487 119.653247
  701. L 52.628487 117.209491
  702. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  703. <path clip-path="url(#p94abdec1fa)" d="M 52.816066 119.653247
  704. L 52.816066 117.209491
  705. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  706. <path clip-path="url(#p94abdec1fa)" d="M 241.333081 119.653247
  707. L 241.333081 117.209491
  708. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  709. <path clip-path="url(#p94abdec1fa)" d="M 241.997212 119.653247
  710. L 241.997212 117.209491
  711. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  712. <path clip-path="url(#p94abdec1fa)" d="M 304.121389 119.653247
  713. L 304.121389 117.209491
  714. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  715. <path clip-path="url(#p94abdec1fa)" d="M 491.548417 119.653247
  716. L 491.548417 117.209491
  717. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  718. </g>
  719. <g id="EventCollection_20">
  720. <path clip-path="url(#p94abdec1fa)" d="M 241.444614 122.097003
  721. L 241.444614 119.653247
  722. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  723. <path clip-path="url(#p94abdec1fa)" d="M 241.789354 122.097003
  724. L 241.789354 119.653247
  725. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  726. <path clip-path="url(#p94abdec1fa)" d="M 242.0327 122.097003
  727. L 242.0327 119.653247
  728. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  729. <path clip-path="url(#p94abdec1fa)" d="M 304.080831 122.097003
  730. L 304.080831 119.653247
  731. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  732. </g>
  733. <g id="EventCollection_21">
  734. <path clip-path="url(#p94abdec1fa)" d="M 52.810996 124.540759
  735. L 52.810996 122.097003
  736. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  737. <path clip-path="url(#p94abdec1fa)" d="M 241.419266 124.540759
  738. L 241.419266 122.097003
  739. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  740. <path clip-path="url(#p94abdec1fa)" d="M 241.971864 124.540759
  741. L 241.971864 122.097003
  742. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  743. <path clip-path="url(#p94abdec1fa)" d="M 304.26841 124.540759
  744. L 304.26841 122.097003
  745. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  746. <path clip-path="url(#p94abdec1fa)" d="M 304.542174 124.540759
  747. L 304.542174 122.097003
  748. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  749. <path clip-path="url(#p94abdec1fa)" d="M 491.345629 124.540759
  750. L 491.345629 122.097003
  751. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  752. <path clip-path="url(#p94abdec1fa)" d="M 491.538278 124.540759
  753. L 491.538278 122.097003
  754. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  755. </g>
  756. <g id="EventCollection_22">
  757. <path clip-path="url(#p94abdec1fa)" d="M 52.795787 126.984515
  758. L 52.795787 124.540759
  759. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  760. <path clip-path="url(#p94abdec1fa)" d="M 241.434475 126.984515
  761. L 241.434475 124.540759
  762. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  763. <path clip-path="url(#p94abdec1fa)" d="M 304.27348 126.984515
  764. L 304.27348 124.540759
  765. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  766. <path clip-path="url(#p94abdec1fa)" d="M 304.638499 126.984515
  767. L 304.638499 124.540759
  768. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  769. <path clip-path="url(#p94abdec1fa)" d="M 491.396326 126.984515
  770. L 491.396326 124.540759
  771. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  772. </g>
  773. <g id="EventCollection_23">
  774. <path clip-path="url(#p94abdec1fa)" d="M 52.613277 129.428272
  775. L 52.613277 126.984515
  776. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  777. <path clip-path="url(#p94abdec1fa)" d="M 52.846484 129.428272
  778. L 52.846484 126.984515
  779. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  780. <path clip-path="url(#p94abdec1fa)" d="M 242.002282 129.428272
  781. L 242.002282 126.984515
  782. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  783. <path clip-path="url(#p94abdec1fa)" d="M 304.253201 129.428272
  784. L 304.253201 126.984515
  785. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  786. <path clip-path="url(#p94abdec1fa)" d="M 491.528138 129.428272
  787. L 491.528138 126.984515
  788. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  789. </g>
  790. <g id="EventCollection_24">
  791. <path clip-path="url(#p94abdec1fa)" d="M 52.623417 131.872028
  792. L 52.623417 129.428272
  793. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  794. <path clip-path="url(#p94abdec1fa)" d="M 52.826205 131.872028
  795. L 52.826205 129.428272
  796. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  797. <path clip-path="url(#p94abdec1fa)" d="M 241.459823 131.872028
  798. L 241.459823 129.428272
  799. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  800. <path clip-path="url(#p94abdec1fa)" d="M 241.809633 131.872028
  801. L 241.809633 129.428272
  802. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  803. <path clip-path="url(#p94abdec1fa)" d="M 242.068188 131.872028
  804. L 242.068188 129.428272
  805. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  806. <path clip-path="url(#p94abdec1fa)" d="M 304.253201 131.872028
  807. L 304.253201 129.428272
  808. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  809. <path clip-path="url(#p94abdec1fa)" d="M 304.26841 131.872028
  810. L 304.26841 129.428272
  811. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  812. <path clip-path="url(#p94abdec1fa)" d="M 304.917333 131.872028
  813. L 304.917333 129.428272
  814. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  815. <path clip-path="url(#p94abdec1fa)" d="M 491.50279 131.872028
  816. L 491.50279 129.428272
  817. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  818. <path clip-path="url(#p94abdec1fa)" d="M 491.563626 131.872028
  819. L 491.563626 129.428272
  820. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  821. </g>
  822. <g id="EventCollection_25">
  823. <path clip-path="url(#p94abdec1fa)" d="M 52.542302 134.315784
  824. L 52.542302 131.872028
  825. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  826. <path clip-path="url(#p94abdec1fa)" d="M 304.27348 134.315784
  827. L 304.27348 131.872028
  828. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  829. <path clip-path="url(#p94abdec1fa)" d="M 304.562453 134.315784
  830. L 304.562453 131.872028
  831. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  832. <path clip-path="url(#p94abdec1fa)" d="M 491.512929 134.315784
  833. L 491.512929 131.872028
  834. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  835. </g>
  836. <g id="EventCollection_26">
  837. <path clip-path="url(#p94abdec1fa)" d="M 52.831275 136.75954
  838. L 52.831275 134.315784
  839. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  840. <path clip-path="url(#p94abdec1fa)" d="M 304.293759 136.75954
  841. L 304.293759 134.315784
  842. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  843. <path clip-path="url(#p94abdec1fa)" d="M 491.512929 136.75954
  844. L 491.512929 134.315784
  845. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  846. </g>
  847. <g id="EventCollection_27">
  848. <path clip-path="url(#p94abdec1fa)" d="M 52.608208 139.203297
  849. L 52.608208 136.75954
  850. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  851. <path clip-path="url(#p94abdec1fa)" d="M 52.851554 139.203297
  852. L 52.851554 136.75954
  853. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  854. <path clip-path="url(#p94abdec1fa)" d="M 304.232922 139.203297
  855. L 304.232922 136.75954
  856. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  857. <path clip-path="url(#p94abdec1fa)" d="M 491.507859 139.203297
  858. L 491.507859 136.75954
  859. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  860. </g>
  861. <g id="EventCollection_28">
  862. <path clip-path="url(#p94abdec1fa)" d="M 52.795787 141.647053
  863. L 52.795787 139.203297
  864. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  865. <path clip-path="url(#p94abdec1fa)" d="M 241.383778 141.647053
  866. L 241.383778 139.203297
  867. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  868. <path clip-path="url(#p94abdec1fa)" d="M 241.8654 141.647053
  869. L 241.8654 139.203297
  870. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  871. <path clip-path="url(#p94abdec1fa)" d="M 242.144234 141.647053
  872. L 242.144234 139.203297
  873. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  874. <path clip-path="url(#p94abdec1fa)" d="M 304.253201 141.647053
  875. L 304.253201 139.203297
  876. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  877. <path clip-path="url(#p94abdec1fa)" d="M 304.871705 141.647053
  878. L 304.871705 139.203297
  879. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  880. <path clip-path="url(#p94abdec1fa)" d="M 491.583905 141.647053
  881. L 491.583905 139.203297
  882. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  883. <path clip-path="url(#p94abdec1fa)" d="M 491.66502 141.647053
  884. L 491.66502 139.203297
  885. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  886. </g>
  887. <g id="EventCollection_29">
  888. <path clip-path="url(#p94abdec1fa)" d="M 52.836344 144.090809
  889. L 52.836344 141.647053
  890. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  891. <path clip-path="url(#p94abdec1fa)" d="M 241.434475 144.090809
  892. L 241.434475 141.647053
  893. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  894. <path clip-path="url(#p94abdec1fa)" d="M 242.068188 144.090809
  895. L 242.068188 141.647053
  896. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  897. <path clip-path="url(#p94abdec1fa)" d="M 304.212643 144.090809
  898. L 304.212643 141.647053
  899. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  900. <path clip-path="url(#p94abdec1fa)" d="M 304.603011 144.090809
  901. L 304.603011 141.647053
  902. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  903. <path clip-path="url(#p94abdec1fa)" d="M 491.523069 144.090809
  904. L 491.523069 141.647053
  905. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  906. </g>
  907. <g id="EventCollection_30">
  908. <path clip-path="url(#p94abdec1fa)" d="M 52.603138 146.534565
  909. L 52.603138 144.090809
  910. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  911. <path clip-path="url(#p94abdec1fa)" d="M 52.795787 146.534565
  912. L 52.795787 144.090809
  913. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  914. <path clip-path="url(#p94abdec1fa)" d="M 304.308968 146.534565
  915. L 304.308968 144.090809
  916. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  917. <path clip-path="url(#p94abdec1fa)" d="M 491.345629 146.534565
  918. L 491.345629 144.090809
  919. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  920. <path clip-path="url(#p94abdec1fa)" d="M 491.533208 146.534565
  921. L 491.533208 144.090809
  922. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  923. <path clip-path="url(#p94abdec1fa)" d="M 491.614323 146.534565
  924. L 491.614323 144.090809
  925. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  926. </g>
  927. <g id="EventCollection_31">
  928. <path clip-path="url(#p94abdec1fa)" d="M 52.623417 148.978322
  929. L 52.623417 146.534565
  930. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  931. <path clip-path="url(#p94abdec1fa)" d="M 52.861693 148.978322
  932. L 52.861693 146.534565
  933. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  934. <path clip-path="url(#p94abdec1fa)" d="M 242.083397 148.978322
  935. L 242.083397 146.534565
  936. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  937. <path clip-path="url(#p94abdec1fa)" d="M 242.21014 148.978322
  938. L 242.21014 146.534565
  939. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  940. <path clip-path="url(#p94abdec1fa)" d="M 304.324177 148.978322
  941. L 304.324177 146.534565
  942. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  943. </g>
  944. <g id="EventCollection_32">
  945. <path clip-path="url(#p94abdec1fa)" d="M 52.648765 151.422078
  946. L 52.648765 148.978322
  947. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  948. <path clip-path="url(#p94abdec1fa)" d="M 52.861693 151.422078
  949. L 52.861693 148.978322
  950. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  951. <path clip-path="url(#p94abdec1fa)" d="M 304.207574 151.422078
  952. L 304.207574 148.978322
  953. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  954. <path clip-path="url(#p94abdec1fa)" d="M 491.340559 151.422078
  955. L 491.340559 148.978322
  956. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  957. <path clip-path="url(#p94abdec1fa)" d="M 491.533208 151.422078
  958. L 491.533208 148.978322
  959. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  960. </g>
  961. <g id="EventCollection_33">
  962. <path clip-path="url(#p94abdec1fa)" d="M 52.775508 153.865834
  963. L 52.775508 151.422078
  964. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  965. <path clip-path="url(#p94abdec1fa)" d="M 241.317872 153.865834
  966. L 241.317872 151.422078
  967. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  968. <path clip-path="url(#p94abdec1fa)" d="M 304.359665 153.865834
  969. L 304.359665 151.422078
  970. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  971. <path clip-path="url(#p94abdec1fa)" d="M 491.49772 153.865834
  972. L 491.49772 151.422078
  973. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  974. <path clip-path="url(#p94abdec1fa)" d="M 491.507859 153.865834
  975. L 491.507859 151.422078
  976. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  977. </g>
  978. <g id="EventCollection_34">
  979. <path clip-path="url(#p94abdec1fa)" d="M 52.658905 156.30959
  980. L 52.658905 153.865834
  981. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  982. <path clip-path="url(#p94abdec1fa)" d="M 52.851554 156.30959
  983. L 52.851554 153.865834
  984. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  985. <path clip-path="url(#p94abdec1fa)" d="M 241.880609 156.30959
  986. L 241.880609 153.865834
  987. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  988. <path clip-path="url(#p94abdec1fa)" d="M 304.253201 156.30959
  989. L 304.253201 153.865834
  990. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  991. <path clip-path="url(#p94abdec1fa)" d="M 491.411535 156.30959
  992. L 491.411535 153.865834
  993. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  994. </g>
  995. <g id="EventCollection_35">
  996. <path clip-path="url(#p94abdec1fa)" d="M 52.851554 158.753347
  997. L 52.851554 156.30959
  998. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  999. <path clip-path="url(#p94abdec1fa)" d="M 241.824842 158.753347
  1000. L 241.824842 156.30959
  1001. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1002. <path clip-path="url(#p94abdec1fa)" d="M 242.04284 158.753347
  1003. L 242.04284 156.30959
  1004. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1005. <path clip-path="url(#p94abdec1fa)" d="M 304.329247 158.753347
  1006. L 304.329247 156.30959
  1007. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1008. </g>
  1009. <g id="EventCollection_36">
  1010. <path clip-path="url(#p94abdec1fa)" d="M 52.805926 161.197103
  1011. L 52.805926 158.753347
  1012. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1013. <path clip-path="url(#p94abdec1fa)" d="M 241.449684 161.197103
  1014. L 241.449684 158.753347
  1015. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1016. <path clip-path="url(#p94abdec1fa)" d="M 241.733588 161.197103
  1017. L 241.733588 158.753347
  1018. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1019. <path clip-path="url(#p94abdec1fa)" d="M 241.941445 161.197103
  1020. L 241.941445 158.753347
  1021. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1022. <path clip-path="url(#p94abdec1fa)" d="M 304.288689 161.197103
  1023. L 304.288689 158.753347
  1024. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1025. <path clip-path="url(#p94abdec1fa)" d="M 304.673987 161.197103
  1026. L 304.673987 158.753347
  1027. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1028. <path clip-path="url(#p94abdec1fa)" d="M 491.517999 161.197103
  1029. L 491.517999 158.753347
  1030. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1031. </g>
  1032. <g id="EventCollection_37">
  1033. <path clip-path="url(#p94abdec1fa)" d="M 52.613277 163.640859
  1034. L 52.613277 161.197103
  1035. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1036. <path clip-path="url(#p94abdec1fa)" d="M 52.846484 163.640859
  1037. L 52.846484 161.197103
  1038. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1039. <path clip-path="url(#p94abdec1fa)" d="M 241.51052 163.640859
  1040. L 241.51052 161.197103
  1041. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1042. <path clip-path="url(#p94abdec1fa)" d="M 242.012421 163.640859
  1043. L 242.012421 161.197103
  1044. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1045. <path clip-path="url(#p94abdec1fa)" d="M 304.390083 163.640859
  1046. L 304.390083 161.197103
  1047. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1048. </g>
  1049. <g id="EventCollection_38">
  1050. <path clip-path="url(#p94abdec1fa)" d="M 52.598068 166.084615
  1051. L 52.598068 163.640859
  1052. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1053. <path clip-path="url(#p94abdec1fa)" d="M 52.836344 166.084615
  1054. L 52.836344 163.640859
  1055. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1056. <path clip-path="url(#p94abdec1fa)" d="M 241.449684 166.084615
  1057. L 241.449684 163.640859
  1058. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1059. <path clip-path="url(#p94abdec1fa)" d="M 241.941445 166.084615
  1060. L 241.941445 163.640859
  1061. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1062. <path clip-path="url(#p94abdec1fa)" d="M 304.344456 166.084615
  1063. L 304.344456 163.640859
  1064. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1065. <path clip-path="url(#p94abdec1fa)" d="M 491.553487 166.084615
  1066. L 491.553487 163.640859
  1067. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1068. </g>
  1069. <g id="EventCollection_39">
  1070. <path clip-path="url(#p94abdec1fa)" d="M 52.633556 168.528372
  1071. L 52.633556 166.084615
  1072. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1073. <path clip-path="url(#p94abdec1fa)" d="M 52.836344 168.528372
  1074. L 52.836344 166.084615
  1075. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1076. <path clip-path="url(#p94abdec1fa)" d="M 304.364735 168.528372
  1077. L 304.364735 166.084615
  1078. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1079. <path clip-path="url(#p94abdec1fa)" d="M 304.922402 168.528372
  1080. L 304.922402 166.084615
  1081. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1082. <path clip-path="url(#p94abdec1fa)" d="M 491.436884 168.528372
  1083. L 491.436884 166.084615
  1084. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1085. <path clip-path="url(#p94abdec1fa)" d="M 491.517999 168.528372
  1086. L 491.517999 166.084615
  1087. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1088. </g>
  1089. <g id="EventCollection_40">
  1090. <path clip-path="url(#p94abdec1fa)" d="M 52.674114 170.972128
  1091. L 52.674114 168.528372
  1092. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1093. <path clip-path="url(#p94abdec1fa)" d="M 241.429405 170.972128
  1094. L 241.429405 168.528372
  1095. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1096. <path clip-path="url(#p94abdec1fa)" d="M 241.789354 170.972128
  1097. L 241.789354 168.528372
  1098. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1099. <path clip-path="url(#p94abdec1fa)" d="M 242.007352 170.972128
  1100. L 242.007352 168.528372
  1101. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1102. <path clip-path="url(#p94abdec1fa)" d="M 304.324177 170.972128
  1103. L 304.324177 168.528372
  1104. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1105. <path clip-path="url(#p94abdec1fa)" d="M 304.826078 170.972128
  1106. L 304.826078 168.528372
  1107. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1108. <path clip-path="url(#p94abdec1fa)" d="M 491.558556 170.972128
  1109. L 491.558556 168.528372
  1110. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1111. </g>
  1112. <g id="EventCollection_41">
  1113. <path clip-path="url(#p94abdec1fa)" d="M 52.684253 173.415884
  1114. L 52.684253 170.972128
  1115. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1116. <path clip-path="url(#p94abdec1fa)" d="M 52.887042 173.415884
  1117. L 52.887042 170.972128
  1118. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1119. <path clip-path="url(#p94abdec1fa)" d="M 241.358429 173.415884
  1120. L 241.358429 170.972128
  1121. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1122. <path clip-path="url(#p94abdec1fa)" d="M 304.288689 173.415884
  1123. L 304.288689 170.972128
  1124. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1125. <path clip-path="url(#p94abdec1fa)" d="M 304.907193 173.415884
  1126. L 304.907193 170.972128
  1127. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1128. <path clip-path="url(#p94abdec1fa)" d="M 491.507859 173.415884
  1129. L 491.507859 170.972128
  1130. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1131. <path clip-path="url(#p94abdec1fa)" d="M 491.578835 173.415884
  1132. L 491.578835 170.972128
  1133. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1134. </g>
  1135. <g id="EventCollection_42">
  1136. <path clip-path="url(#p94abdec1fa)" d="M 52.658905 175.85964
  1137. L 52.658905 173.415884
  1138. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1139. <path clip-path="url(#p94abdec1fa)" d="M 52.861693 175.85964
  1140. L 52.861693 173.415884
  1141. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1142. <path clip-path="url(#p94abdec1fa)" d="M 241.302663 175.85964
  1143. L 241.302663 173.415884
  1144. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1145. <path clip-path="url(#p94abdec1fa)" d="M 241.850191 175.85964
  1146. L 241.850191 173.415884
  1147. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1148. <path clip-path="url(#p94abdec1fa)" d="M 242.063118 175.85964
  1149. L 242.063118 173.415884
  1150. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1151. <path clip-path="url(#p94abdec1fa)" d="M 304.319107 175.85964
  1152. L 304.319107 173.415884
  1153. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1154. <path clip-path="url(#p94abdec1fa)" d="M 491.588975 175.85964
  1155. L 491.588975 173.415884
  1156. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1157. </g>
  1158. <g id="EventCollection_43">
  1159. <path clip-path="url(#p94abdec1fa)" d="M 52.628487 178.303397
  1160. L 52.628487 175.85964
  1161. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1162. <path clip-path="url(#p94abdec1fa)" d="M 52.846484 178.303397
  1163. L 52.846484 175.85964
  1164. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1165. <path clip-path="url(#p94abdec1fa)" d="M 241.398987 178.303397
  1166. L 241.398987 175.85964
  1167. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1168. <path clip-path="url(#p94abdec1fa)" d="M 241.774145 178.303397
  1169. L 241.774145 175.85964
  1170. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1171. <path clip-path="url(#p94abdec1fa)" d="M 241.987073 178.303397
  1172. L 241.987073 175.85964
  1173. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1174. <path clip-path="url(#p94abdec1fa)" d="M 304.334316 178.303397
  1175. L 304.334316 175.85964
  1176. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1177. <path clip-path="url(#p94abdec1fa)" d="M 304.359665 178.303397
  1178. L 304.359665 175.85964
  1179. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1180. <path clip-path="url(#p94abdec1fa)" d="M 491.305071 178.303397
  1181. L 491.305071 175.85964
  1182. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1183. <path clip-path="url(#p94abdec1fa)" d="M 491.507859 178.303397
  1184. L 491.507859 175.85964
  1185. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1186. </g>
  1187. <g id="EventCollection_44">
  1188. <path clip-path="url(#p94abdec1fa)" d="M 52.846484 180.747153
  1189. L 52.846484 178.303397
  1190. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1191. <path clip-path="url(#p94abdec1fa)" d="M 241.495311 180.747153
  1192. L 241.495311 178.303397
  1193. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1194. <path clip-path="url(#p94abdec1fa)" d="M 242.068188 180.747153
  1195. L 242.068188 178.303397
  1196. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1197. <path clip-path="url(#p94abdec1fa)" d="M 304.430641 180.747153
  1198. L 304.430641 178.303397
  1199. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1200. <path clip-path="url(#p94abdec1fa)" d="M 304.912263 180.747153
  1201. L 304.912263 178.303397
  1202. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1203. <path clip-path="url(#p94abdec1fa)" d="M 491.300001 180.747153
  1204. L 491.300001 178.303397
  1205. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1206. <path clip-path="url(#p94abdec1fa)" d="M 491.49265 180.747153
  1207. L 491.49265 178.303397
  1208. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1209. </g>
  1210. <g id="EventCollection_45">
  1211. <path clip-path="url(#p94abdec1fa)" d="M 52.821135 183.190909
  1212. L 52.821135 180.747153
  1213. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1214. <path clip-path="url(#p94abdec1fa)" d="M 241.464893 183.190909
  1215. L 241.464893 180.747153
  1216. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1217. <path clip-path="url(#p94abdec1fa)" d="M 242.047909 183.190909
  1218. L 242.047909 180.747153
  1219. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1220. <path clip-path="url(#p94abdec1fa)" d="M 304.324177 183.190909
  1221. L 304.324177 180.747153
  1222. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1223. <path clip-path="url(#p94abdec1fa)" d="M 491.639672 183.190909
  1224. L 491.639672 180.747153
  1225. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1226. <path clip-path="url(#p94abdec1fa)" d="M 491.710648 183.190909
  1227. L 491.710648 180.747153
  1228. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1229. </g>
  1230. <g id="EventCollection_46">
  1231. <path clip-path="url(#p94abdec1fa)" d="M 52.603138 185.634665
  1232. L 52.603138 183.190909
  1233. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1234. <path clip-path="url(#p94abdec1fa)" d="M 52.846484 185.634665
  1235. L 52.846484 183.190909
  1236. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1237. <path clip-path="url(#p94abdec1fa)" d="M 241.439545 185.634665
  1238. L 241.439545 183.190909
  1239. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1240. <path clip-path="url(#p94abdec1fa)" d="M 241.819773 185.634665
  1241. L 241.819773 183.190909
  1242. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1243. <path clip-path="url(#p94abdec1fa)" d="M 242.073258 185.634665
  1244. L 242.073258 183.190909
  1245. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1246. <path clip-path="url(#p94abdec1fa)" d="M 304.415432 185.634665
  1247. L 304.415432 183.190909
  1248. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1249. <path clip-path="url(#p94abdec1fa)" d="M 304.729753 185.634665
  1250. L 304.729753 183.190909
  1251. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1252. <path clip-path="url(#p94abdec1fa)" d="M 304.998448 185.634665
  1253. L 304.998448 183.190909
  1254. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1255. <path clip-path="url(#p94abdec1fa)" d="M 491.355768 185.634665
  1256. L 491.355768 183.190909
  1257. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1258. <path clip-path="url(#p94abdec1fa)" d="M 491.588975 185.634665
  1259. L 491.588975 183.190909
  1260. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1261. </g>
  1262. <g id="EventCollection_47">
  1263. <path clip-path="url(#p94abdec1fa)" d="M 52.669044 188.078422
  1264. L 52.669044 185.634665
  1265. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1266. <path clip-path="url(#p94abdec1fa)" d="M 52.881972 188.078422
  1267. L 52.881972 185.634665
  1268. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1269. <path clip-path="url(#p94abdec1fa)" d="M 241.571357 188.078422
  1270. L 241.571357 185.634665
  1271. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1272. <path clip-path="url(#p94abdec1fa)" d="M 304.329247 188.078422
  1273. L 304.329247 185.634665
  1274. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1275. <path clip-path="url(#p94abdec1fa)" d="M 304.653708 188.078422
  1276. L 304.653708 185.634665
  1277. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1278. <path clip-path="url(#p94abdec1fa)" d="M 491.533208 188.078422
  1279. L 491.533208 185.634665
  1280. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1281. <path clip-path="url(#p94abdec1fa)" d="M 491.654881 188.078422
  1282. L 491.654881 185.634665
  1283. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1284. </g>
  1285. <g id="EventCollection_48">
  1286. <path clip-path="url(#p94abdec1fa)" d="M 52.653835 190.522178
  1287. L 52.653835 188.078422
  1288. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1289. <path clip-path="url(#p94abdec1fa)" d="M 52.881972 190.522178
  1290. L 52.881972 188.078422
  1291. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1292. <path clip-path="url(#p94abdec1fa)" d="M 241.971864 190.522178
  1293. L 241.971864 188.078422
  1294. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1295. <path clip-path="url(#p94abdec1fa)" d="M 304.319107 190.522178
  1296. L 304.319107 188.078422
  1297. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1298. <path clip-path="url(#p94abdec1fa)" d="M 491.543347 190.522178
  1299. L 491.543347 188.078422
  1300. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1301. </g>
  1302. <g id="EventCollection_49">
  1303. <path clip-path="url(#p94abdec1fa)" d="M 52.557511 192.965934
  1304. L 52.557511 190.522178
  1305. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1306. <path clip-path="url(#p94abdec1fa)" d="M 241.429405 192.965934
  1307. L 241.429405 190.522178
  1308. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1309. <path clip-path="url(#p94abdec1fa)" d="M 304.369804 192.965934
  1310. L 304.369804 190.522178
  1311. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1312. <path clip-path="url(#p94abdec1fa)" d="M 304.815938 192.965934
  1313. L 304.815938 190.522178
  1314. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1315. <path clip-path="url(#p94abdec1fa)" d="M 491.563626 192.965934
  1316. L 491.563626 190.522178
  1317. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1318. </g>
  1319. <g id="EventCollection_50">
  1320. <path clip-path="url(#p94abdec1fa)" d="M 52.608208 195.40969
  1321. L 52.608208 192.965934
  1322. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1323. <path clip-path="url(#p94abdec1fa)" d="M 52.856623 195.40969
  1324. L 52.856623 192.965934
  1325. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1326. <path clip-path="url(#p94abdec1fa)" d="M 241.566287 195.40969
  1327. L 241.566287 192.965934
  1328. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1329. <path clip-path="url(#p94abdec1fa)" d="M 241.85526 195.40969
  1330. L 241.85526 192.965934
  1331. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1332. <path clip-path="url(#p94abdec1fa)" d="M 242.068188 195.40969
  1333. L 242.068188 192.965934
  1334. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1335. <path clip-path="url(#p94abdec1fa)" d="M 304.349526 195.40969
  1336. L 304.349526 192.965934
  1337. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1338. <path clip-path="url(#p94abdec1fa)" d="M 304.369804 195.40969
  1339. L 304.369804 192.965934
  1340. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1341. <path clip-path="url(#p94abdec1fa)" d="M 491.609254 195.40969
  1342. L 491.609254 192.965934
  1343. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1344. </g>
  1345. <g id="EventCollection_51">
  1346. <path clip-path="url(#p94abdec1fa)" d="M 52.618347 197.853447
  1347. L 52.618347 195.40969
  1348. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1349. <path clip-path="url(#p94abdec1fa)" d="M 52.892111 197.853447
  1350. L 52.892111 195.40969
  1351. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1352. <path clip-path="url(#p94abdec1fa)" d="M 241.424335 197.853447
  1353. L 241.424335 195.40969
  1354. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1355. <path clip-path="url(#p94abdec1fa)" d="M 241.895818 197.853447
  1356. L 241.895818 195.40969
  1357. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1358. <path clip-path="url(#p94abdec1fa)" d="M 242.103676 197.853447
  1359. L 242.103676 195.40969
  1360. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1361. <path clip-path="url(#p94abdec1fa)" d="M 304.395153 197.853447
  1362. L 304.395153 195.40969
  1363. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1364. <path clip-path="url(#p94abdec1fa)" d="M 491.563626 197.853447
  1365. L 491.563626 195.40969
  1366. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1367. <path clip-path="url(#p94abdec1fa)" d="M 491.649811 197.853447
  1368. L 491.649811 195.40969
  1369. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1370. </g>
  1371. <g id="EventCollection_52">
  1372. <path clip-path="url(#p94abdec1fa)" d="M 52.638626 200.297203
  1373. L 52.638626 197.853447
  1374. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1375. <path clip-path="url(#p94abdec1fa)" d="M 52.871832 200.297203
  1376. L 52.871832 197.853447
  1377. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1378. <path clip-path="url(#p94abdec1fa)" d="M 241.875539 200.297203
  1379. L 241.875539 197.853447
  1380. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1381. <path clip-path="url(#p94abdec1fa)" d="M 242.083397 200.297203
  1382. L 242.083397 197.853447
  1383. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1384. <path clip-path="url(#p94abdec1fa)" d="M 304.425571 200.297203
  1385. L 304.425571 197.853447
  1386. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1387. <path clip-path="url(#p94abdec1fa)" d="M 304.755102 200.297203
  1388. L 304.755102 197.853447
  1389. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1390. <path clip-path="url(#p94abdec1fa)" d="M 491.619393 200.297203
  1391. L 491.619393 197.853447
  1392. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1393. </g>
  1394. <g id="EventCollection_53">
  1395. <path clip-path="url(#p94abdec1fa)" d="M 52.648765 202.740959
  1396. L 52.648765 200.297203
  1397. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1398. <path clip-path="url(#p94abdec1fa)" d="M 52.856623 202.740959
  1399. L 52.856623 200.297203
  1400. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1401. <path clip-path="url(#p94abdec1fa)" d="M 242.047909 202.740959
  1402. L 242.047909 200.297203
  1403. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1404. <path clip-path="url(#p94abdec1fa)" d="M 304.400223 202.740959
  1405. L 304.400223 200.297203
  1406. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1407. <path clip-path="url(#p94abdec1fa)" d="M 304.729753 202.740959
  1408. L 304.729753 200.297203
  1409. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1410. <path clip-path="url(#p94abdec1fa)" d="M 304.846357 202.740959
  1411. L 304.846357 200.297203
  1412. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1413. <path clip-path="url(#p94abdec1fa)" d="M 491.614323 202.740959
  1414. L 491.614323 200.297203
  1415. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1416. <path clip-path="url(#p94abdec1fa)" d="M 491.690369 202.740959
  1417. L 491.690369 200.297203
  1418. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1419. </g>
  1420. <g id="EventCollection_54">
  1421. <path clip-path="url(#p94abdec1fa)" d="M 52.643696 205.184715
  1422. L 52.643696 202.740959
  1423. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1424. <path clip-path="url(#p94abdec1fa)" d="M 52.866763 205.184715
  1425. L 52.866763 202.740959
  1426. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1427. <path clip-path="url(#p94abdec1fa)" d="M 241.616984 205.184715
  1428. L 241.616984 202.740959
  1429. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1430. <path clip-path="url(#p94abdec1fa)" d="M 242.073258 205.184715
  1431. L 242.073258 202.740959
  1432. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1433. <path clip-path="url(#p94abdec1fa)" d="M 304.400223 205.184715
  1434. L 304.400223 202.740959
  1435. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1436. <path clip-path="url(#p94abdec1fa)" d="M 491.604184 205.184715
  1437. L 491.604184 202.740959
  1438. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1439. </g>
  1440. <g id="EventCollection_55">
  1441. <path clip-path="url(#p94abdec1fa)" d="M 52.663974 207.628472
  1442. L 52.663974 205.184715
  1443. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1444. <path clip-path="url(#p94abdec1fa)" d="M 52.887042 207.628472
  1445. L 52.887042 205.184715
  1446. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1447. <path clip-path="url(#p94abdec1fa)" d="M 241.535869 207.628472
  1448. L 241.535869 205.184715
  1449. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1450. <path clip-path="url(#p94abdec1fa)" d="M 241.850191 207.628472
  1451. L 241.850191 205.184715
  1452. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1453. <path clip-path="url(#p94abdec1fa)" d="M 242.068188 207.628472
  1454. L 242.068188 205.184715
  1455. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1456. <path clip-path="url(#p94abdec1fa)" d="M 304.410362 207.628472
  1457. L 304.410362 205.184715
  1458. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1459. <path clip-path="url(#p94abdec1fa)" d="M 491.614323 207.628472
  1460. L 491.614323 205.184715
  1461. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1462. <path clip-path="url(#p94abdec1fa)" d="M 491.695439 207.628472
  1463. L 491.695439 205.184715
  1464. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1465. </g>
  1466. <g id="EventCollection_56">
  1467. <path clip-path="url(#p94abdec1fa)" d="M 52.658905 210.072228
  1468. L 52.658905 207.628472
  1469. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1470. <path clip-path="url(#p94abdec1fa)" d="M 52.902251 210.072228
  1471. L 52.902251 207.628472
  1472. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1473. <path clip-path="url(#p94abdec1fa)" d="M 241.86033 210.072228
  1474. L 241.86033 207.628472
  1475. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1476. <path clip-path="url(#p94abdec1fa)" d="M 242.073258 210.072228
  1477. L 242.073258 207.628472
  1478. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1479. <path clip-path="url(#p94abdec1fa)" d="M 304.405292 210.072228
  1480. L 304.405292 207.628472
  1481. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1482. <path clip-path="url(#p94abdec1fa)" d="M 491.553487 210.072228
  1483. L 491.553487 207.628472
  1484. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1485. </g>
  1486. <g id="EventCollection_57">
  1487. <path clip-path="url(#p94abdec1fa)" d="M 52.623417 212.515984
  1488. L 52.623417 210.072228
  1489. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1490. <path clip-path="url(#p94abdec1fa)" d="M 52.897181 212.515984
  1491. L 52.897181 210.072228
  1492. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1493. <path clip-path="url(#p94abdec1fa)" d="M 304.420501 212.515984
  1494. L 304.420501 210.072228
  1495. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1496. <path clip-path="url(#p94abdec1fa)" d="M 304.780451 212.515984
  1497. L 304.780451 210.072228
  1498. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1499. <path clip-path="url(#p94abdec1fa)" d="M 491.381117 212.515984
  1500. L 491.381117 210.072228
  1501. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1502. <path clip-path="url(#p94abdec1fa)" d="M 491.573766 212.515984
  1503. L 491.573766 210.072228
  1504. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1505. </g>
  1506. <g id="EventCollection_58">
  1507. <path clip-path="url(#p94abdec1fa)" d="M 52.689323 214.95974
  1508. L 52.689323 212.515984
  1509. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1510. <path clip-path="url(#p94abdec1fa)" d="M 52.902251 214.95974
  1511. L 52.902251 212.515984
  1512. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1513. <path clip-path="url(#p94abdec1fa)" d="M 241.556148 214.95974
  1514. L 241.556148 212.515984
  1515. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1516. <path clip-path="url(#p94abdec1fa)" d="M 242.296325 214.95974
  1517. L 242.296325 212.515984
  1518. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1519. <path clip-path="url(#p94abdec1fa)" d="M 304.471198 214.95974
  1520. L 304.471198 212.515984
  1521. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1522. <path clip-path="url(#p94abdec1fa)" d="M 491.609254 214.95974
  1523. L 491.609254 212.515984
  1524. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1525. </g>
  1526. <g id="EventCollection_59">
  1527. <path clip-path="url(#p94abdec1fa)" d="M 241.905958 217.403497
  1528. L 241.905958 214.95974
  1529. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1530. <path clip-path="url(#p94abdec1fa)" d="M 242.103676 217.403497
  1531. L 242.103676 214.95974
  1532. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1533. <path clip-path="url(#p94abdec1fa)" d="M 304.349526 217.403497
  1534. L 304.349526 214.95974
  1535. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1536. <path clip-path="url(#p94abdec1fa)" d="M 304.719614 217.403497
  1537. L 304.719614 214.95974
  1538. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1539. <path clip-path="url(#p94abdec1fa)" d="M 491.563626 217.403497
  1540. L 491.563626 214.95974
  1541. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1542. </g>
  1543. <g id="EventCollection_60">
  1544. <path clip-path="url(#p94abdec1fa)" d="M 52.719741 219.847253
  1545. L 52.719741 217.403497
  1546. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1547. <path clip-path="url(#p94abdec1fa)" d="M 52.922529 219.847253
  1548. L 52.922529 217.403497
  1549. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1550. <path clip-path="url(#p94abdec1fa)" d="M 241.601775 219.847253
  1551. L 241.601775 217.403497
  1552. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1553. <path clip-path="url(#p94abdec1fa)" d="M 242.149303 219.847253
  1554. L 242.149303 217.403497
  1555. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1556. <path clip-path="url(#p94abdec1fa)" d="M 304.471198 219.847253
  1557. L 304.471198 217.403497
  1558. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1559. <path clip-path="url(#p94abdec1fa)" d="M 304.496547 219.847253
  1560. L 304.496547 217.403497
  1561. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1562. <path clip-path="url(#p94abdec1fa)" d="M 304.95789 219.847253
  1563. L 304.95789 217.403497
  1564. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1565. <path clip-path="url(#p94abdec1fa)" d="M 491.594044 219.847253
  1566. L 491.594044 217.403497
  1567. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1568. <path clip-path="url(#p94abdec1fa)" d="M 493.951458 219.847253
  1569. L 493.951458 217.403497
  1570. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1571. </g>
  1572. <g id="EventCollection_61">
  1573. <path clip-path="url(#p94abdec1fa)" d="M 52.684253 222.291009
  1574. L 52.684253 219.847253
  1575. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1576. <path clip-path="url(#p94abdec1fa)" d="M 52.897181 222.291009
  1577. L 52.897181 219.847253
  1578. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1579. <path clip-path="url(#p94abdec1fa)" d="M 241.34829 222.291009
  1580. L 241.34829 219.847253
  1581. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1582. <path clip-path="url(#p94abdec1fa)" d="M 304.374874 222.291009
  1583. L 304.374874 219.847253
  1584. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1585. <path clip-path="url(#p94abdec1fa)" d="M 304.775381 222.291009
  1586. L 304.775381 219.847253
  1587. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1588. <path clip-path="url(#p94abdec1fa)" d="M 491.543347 222.291009
  1589. L 491.543347 219.847253
  1590. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1591. <path clip-path="url(#p94abdec1fa)" d="M 491.629532 222.291009
  1592. L 491.629532 219.847253
  1593. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1594. </g>
  1595. <g id="EventCollection_62">
  1596. <path clip-path="url(#p94abdec1fa)" d="M 52.871832 224.734765
  1597. L 52.871832 222.291009
  1598. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1599. <path clip-path="url(#p94abdec1fa)" d="M 241.642333 224.734765
  1600. L 241.642333 222.291009
  1601. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1602. <path clip-path="url(#p94abdec1fa)" d="M 304.481338 224.734765
  1603. L 304.481338 222.291009
  1604. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1605. <path clip-path="url(#p94abdec1fa)" d="M 304.516826 224.734765
  1606. L 304.516826 222.291009
  1607. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1608. <path clip-path="url(#p94abdec1fa)" d="M 491.558556 224.734765
  1609. L 491.558556 222.291009
  1610. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1611. </g>
  1612. <g id="EventCollection_63">
  1613. <path clip-path="url(#p94abdec1fa)" d="M 52.587929 227.178521
  1614. L 52.587929 224.734765
  1615. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1616. <path clip-path="url(#p94abdec1fa)" d="M 52.821135 227.178521
  1617. L 52.821135 224.734765
  1618. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1619. <path clip-path="url(#p94abdec1fa)" d="M 242.047909 227.178521
  1620. L 242.047909 224.734765
  1621. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1622. <path clip-path="url(#p94abdec1fa)" d="M 304.339386 227.178521
  1623. L 304.339386 224.734765
  1624. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1625. <path clip-path="url(#p94abdec1fa)" d="M 304.755102 227.178521
  1626. L 304.755102 224.734765
  1627. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1628. <path clip-path="url(#p94abdec1fa)" d="M 491.573766 227.178521
  1629. L 491.573766 224.734765
  1630. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1631. </g>
  1632. <g id="EventCollection_64">
  1633. <path clip-path="url(#p94abdec1fa)" d="M 52.689323 229.622278
  1634. L 52.689323 227.178521
  1635. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1636. <path clip-path="url(#p94abdec1fa)" d="M 52.90732 229.622278
  1637. L 52.90732 227.178521
  1638. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1639. <path clip-path="url(#p94abdec1fa)" d="M 242.129025 229.622278
  1640. L 242.129025 227.178521
  1641. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1642. <path clip-path="url(#p94abdec1fa)" d="M 304.293759 229.622278
  1643. L 304.293759 227.178521
  1644. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1645. <path clip-path="url(#p94abdec1fa)" d="M 491.599114 229.622278
  1646. L 491.599114 227.178521
  1647. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1648. <path clip-path="url(#p94abdec1fa)" d="M 491.67009 229.622278
  1649. L 491.67009 227.178521
  1650. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1651. </g>
  1652. <g id="EventCollection_65">
  1653. <path clip-path="url(#p94abdec1fa)" d="M 52.674114 232.066034
  1654. L 52.674114 229.622278
  1655. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1656. <path clip-path="url(#p94abdec1fa)" d="M 52.887042 232.066034
  1657. L 52.887042 229.622278
  1658. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1659. <path clip-path="url(#p94abdec1fa)" d="M 241.561218 232.066034
  1660. L 241.561218 229.622278
  1661. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1662. <path clip-path="url(#p94abdec1fa)" d="M 242.139164 232.066034
  1663. L 242.139164 229.622278
  1664. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1665. <path clip-path="url(#p94abdec1fa)" d="M 304.420501 232.066034
  1666. L 304.420501 229.622278
  1667. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1668. <path clip-path="url(#p94abdec1fa)" d="M 491.604184 232.066034
  1669. L 491.604184 229.622278
  1670. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1671. </g>
  1672. <g id="EventCollection_66">
  1673. <path clip-path="url(#p94abdec1fa)" d="M 52.689323 234.50979
  1674. L 52.689323 232.066034
  1675. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1676. <path clip-path="url(#p94abdec1fa)" d="M 52.932669 234.50979
  1677. L 52.932669 232.066034
  1678. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1679. <path clip-path="url(#p94abdec1fa)" d="M 304.471198 234.50979
  1680. L 304.471198 232.066034
  1681. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1682. <path clip-path="url(#p94abdec1fa)" d="M 491.629532 234.50979
  1683. L 491.629532 232.066034
  1684. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1685. </g>
  1686. <g id="EventCollection_67">
  1687. <path clip-path="url(#p94abdec1fa)" d="M 52.74002 236.953546
  1688. L 52.74002 234.50979
  1689. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1690. <path clip-path="url(#p94abdec1fa)" d="M 52.973227 236.953546
  1691. L 52.973227 234.50979
  1692. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1693. <path clip-path="url(#p94abdec1fa)" d="M 241.51559 236.953546
  1694. L 241.51559 234.50979
  1695. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1696. <path clip-path="url(#p94abdec1fa)" d="M 242.149303 236.953546
  1697. L 242.149303 234.50979
  1698. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1699. <path clip-path="url(#p94abdec1fa)" d="M 304.425571 236.953546
  1700. L 304.425571 234.50979
  1701. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1702. <path clip-path="url(#p94abdec1fa)" d="M 491.619393 236.953546
  1703. L 491.619393 234.50979
  1704. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1705. <path clip-path="url(#p94abdec1fa)" d="M 491.66502 236.953546
  1706. L 491.66502 234.50979
  1707. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1708. </g>
  1709. <g id="EventCollection_68">
  1710. <path clip-path="url(#p94abdec1fa)" d="M 52.663974 239.397303
  1711. L 52.663974 236.953546
  1712. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1713. <path clip-path="url(#p94abdec1fa)" d="M 241.606845 239.397303
  1714. L 241.606845 236.953546
  1715. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1716. <path clip-path="url(#p94abdec1fa)" d="M 242.225349 239.397303
  1717. L 242.225349 236.953546
  1718. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1719. <path clip-path="url(#p94abdec1fa)" d="M 304.44585 239.397303
  1720. L 304.44585 236.953546
  1721. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1722. <path clip-path="url(#p94abdec1fa)" d="M 304.805799 239.397303
  1723. L 304.805799 236.953546
  1724. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1725. <path clip-path="url(#p94abdec1fa)" d="M 491.523069 239.397303
  1726. L 491.523069 236.953546
  1727. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1728. </g>
  1729. <g id="EventCollection_69">
  1730. <path clip-path="url(#p94abdec1fa)" d="M 52.643696 241.841059
  1731. L 52.643696 239.397303
  1732. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1733. <path clip-path="url(#p94abdec1fa)" d="M 52.826205 241.841059
  1734. L 52.826205 239.397303
  1735. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1736. <path clip-path="url(#p94abdec1fa)" d="M 241.850191 241.841059
  1737. L 241.850191 239.397303
  1738. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1739. <path clip-path="url(#p94abdec1fa)" d="M 242.052979 241.841059
  1740. L 242.052979 239.397303
  1741. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1742. <path clip-path="url(#p94abdec1fa)" d="M 304.405292 241.841059
  1743. L 304.405292 239.397303
  1744. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1745. <path clip-path="url(#p94abdec1fa)" d="M 491.614323 241.841059
  1746. L 491.614323 239.397303
  1747. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1748. </g>
  1749. <g id="EventCollection_70">
  1750. <path clip-path="url(#p94abdec1fa)" d="M 52.653835 244.284815
  1751. L 52.653835 241.841059
  1752. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1753. <path clip-path="url(#p94abdec1fa)" d="M 241.535869 244.284815
  1754. L 241.535869 241.841059
  1755. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1756. <path clip-path="url(#p94abdec1fa)" d="M 241.890748 244.284815
  1757. L 241.890748 241.841059
  1758. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1759. <path clip-path="url(#p94abdec1fa)" d="M 242.134094 244.284815
  1760. L 242.134094 241.841059
  1761. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1762. <path clip-path="url(#p94abdec1fa)" d="M 304.354595 244.284815
  1763. L 304.354595 241.841059
  1764. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1765. <path clip-path="url(#p94abdec1fa)" d="M 304.932542 244.284815
  1766. L 304.932542 241.841059
  1767. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1768. <path clip-path="url(#p94abdec1fa)" d="M 489.510395 244.284815
  1769. L 489.510395 241.841059
  1770. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1771. </g>
  1772. <g id="EventCollection_71">
  1773. <path clip-path="url(#p94abdec1fa)" d="M 52.729881 246.728571
  1774. L 52.729881 244.284815
  1775. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1776. <path clip-path="url(#p94abdec1fa)" d="M 241.454754 246.728571
  1777. L 241.454754 244.284815
  1778. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1779. <path clip-path="url(#p94abdec1fa)" d="M 304.314038 246.728571
  1780. L 304.314038 244.284815
  1781. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1782. <path clip-path="url(#p94abdec1fa)" d="M 491.340559 246.728571
  1783. L 491.340559 244.284815
  1784. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1785. <path clip-path="url(#p94abdec1fa)" d="M 491.66502 246.728571
  1786. L 491.66502 244.284815
  1787. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1788. </g>
  1789. <g id="EventCollection_72">
  1790. <path clip-path="url(#p94abdec1fa)" d="M 52.648765 249.172328
  1791. L 52.648765 246.728571
  1792. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1793. <path clip-path="url(#p94abdec1fa)" d="M 52.851554 249.172328
  1794. L 52.851554 246.728571
  1795. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1796. <path clip-path="url(#p94abdec1fa)" d="M 241.809633 249.172328
  1797. L 241.809633 246.728571
  1798. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1799. <path clip-path="url(#p94abdec1fa)" d="M 242.0327 249.172328
  1800. L 242.0327 246.728571
  1801. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1802. <path clip-path="url(#p94abdec1fa)" d="M 304.390083 249.172328
  1803. L 304.390083 246.728571
  1804. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1805. <path clip-path="url(#p94abdec1fa)" d="M 304.78552 249.172328
  1806. L 304.78552 246.728571
  1807. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1808. <path clip-path="url(#p94abdec1fa)" d="M 491.573766 249.172328
  1809. L 491.573766 246.728571
  1810. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1811. </g>
  1812. <g id="EventCollection_73">
  1813. <path clip-path="url(#p94abdec1fa)" d="M 241.642333 251.616084
  1814. L 241.642333 249.172328
  1815. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1816. <path clip-path="url(#p94abdec1fa)" d="M 242.270976 251.616084
  1817. L 242.270976 249.172328
  1818. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1819. <path clip-path="url(#p94abdec1fa)" d="M 304.298828 251.616084
  1820. L 304.298828 249.172328
  1821. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1822. <path clip-path="url(#p94abdec1fa)" d="M 491.629532 251.616084
  1823. L 491.629532 249.172328
  1824. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1825. </g>
  1826. <g id="EventCollection_74">
  1827. <path clip-path="url(#p94abdec1fa)" d="M 52.658905 254.05984
  1828. L 52.658905 251.616084
  1829. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1830. <path clip-path="url(#p94abdec1fa)" d="M 52.897181 254.05984
  1831. L 52.897181 251.616084
  1832. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1833. <path clip-path="url(#p94abdec1fa)" d="M 241.368569 254.05984
  1834. L 241.368569 251.616084
  1835. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1836. <path clip-path="url(#p94abdec1fa)" d="M 241.911027 254.05984
  1837. L 241.911027 251.616084
  1838. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1839. <path clip-path="url(#p94abdec1fa)" d="M 242.123955 254.05984
  1840. L 242.123955 251.616084
  1841. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1842. <path clip-path="url(#p94abdec1fa)" d="M 304.385013 254.05984
  1843. L 304.385013 251.616084
  1844. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1845. <path clip-path="url(#p94abdec1fa)" d="M 491.588975 254.05984
  1846. L 491.588975 251.616084
  1847. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1848. </g>
  1849. <g id="EventCollection_75">
  1850. <path clip-path="url(#p94abdec1fa)" d="M 52.658905 256.503596
  1851. L 52.658905 254.05984
  1852. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1853. <path clip-path="url(#p94abdec1fa)" d="M 52.861693 256.503596
  1854. L 52.861693 254.05984
  1855. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1856. <path clip-path="url(#p94abdec1fa)" d="M 241.662612 256.503596
  1857. L 241.662612 254.05984
  1858. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1859. <path clip-path="url(#p94abdec1fa)" d="M 242.169582 256.503596
  1860. L 242.169582 254.05984
  1861. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1862. <path clip-path="url(#p94abdec1fa)" d="M 304.379944 256.503596
  1863. L 304.379944 254.05984
  1864. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1865. <path clip-path="url(#p94abdec1fa)" d="M 304.800729 256.503596
  1866. L 304.800729 254.05984
  1867. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1868. <path clip-path="url(#p94abdec1fa)" d="M 491.614323 256.503596
  1869. L 491.614323 254.05984
  1870. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1871. <path clip-path="url(#p94abdec1fa)" d="M 491.953994 256.503596
  1872. L 491.953994 254.05984
  1873. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1874. </g>
  1875. <g id="EventCollection_76">
  1876. <path clip-path="url(#p94abdec1fa)" d="M 52.704532 258.947353
  1877. L 52.704532 256.503596
  1878. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1879. <path clip-path="url(#p94abdec1fa)" d="M 241.561218 258.947353
  1880. L 241.561218 256.503596
  1881. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1882. <path clip-path="url(#p94abdec1fa)" d="M 304.476268 258.947353
  1883. L 304.476268 256.503596
  1884. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1885. <path clip-path="url(#p94abdec1fa)" d="M 304.775381 258.947353
  1886. L 304.775381 256.503596
  1887. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1888. <path clip-path="url(#p94abdec1fa)" d="M 491.66502 258.947353
  1889. L 491.66502 256.503596
  1890. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1891. </g>
  1892. <g id="EventCollection_77">
  1893. <path clip-path="url(#p94abdec1fa)" d="M 52.866763 261.391109
  1894. L 52.866763 258.947353
  1895. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1896. <path clip-path="url(#p94abdec1fa)" d="M 242.235488 261.391109
  1897. L 242.235488 258.947353
  1898. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1899. <path clip-path="url(#p94abdec1fa)" d="M 304.390083 261.391109
  1900. L 304.390083 258.947353
  1901. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1902. <path clip-path="url(#p94abdec1fa)" d="M 491.588975 261.391109
  1903. L 491.588975 258.947353
  1904. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1905. </g>
  1906. <g id="EventCollection_78">
  1907. <path clip-path="url(#p94abdec1fa)" d="M 52.679184 263.834865
  1908. L 52.679184 261.391109
  1909. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1910. <path clip-path="url(#p94abdec1fa)" d="M 52.897181 263.834865
  1911. L 52.897181 261.391109
  1912. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1913. <path clip-path="url(#p94abdec1fa)" d="M 241.586566 263.834865
  1914. L 241.586566 261.391109
  1915. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1916. <path clip-path="url(#p94abdec1fa)" d="M 304.379944 263.834865
  1917. L 304.379944 261.391109
  1918. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1919. <path clip-path="url(#p94abdec1fa)" d="M 304.709475 263.834865
  1920. L 304.709475 261.391109
  1921. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1922. <path clip-path="url(#p94abdec1fa)" d="M 305.094772 263.834865
  1923. L 305.094772 261.391109
  1924. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1925. <path clip-path="url(#p94abdec1fa)" d="M 491.568696 263.834865
  1926. L 491.568696 261.391109
  1927. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1928. <path clip-path="url(#p94abdec1fa)" d="M 491.649811 263.834865
  1929. L 491.649811 261.391109
  1930. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1931. </g>
  1932. <g id="EventCollection_79">
  1933. <path clip-path="url(#p94abdec1fa)" d="M 241.469963 266.278621
  1934. L 241.469963 263.834865
  1935. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1936. <path clip-path="url(#p94abdec1fa)" d="M 241.824842 266.278621
  1937. L 241.824842 263.834865
  1938. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1939. <path clip-path="url(#p94abdec1fa)" d="M 242.063118 266.278621
  1940. L 242.063118 263.834865
  1941. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1942. <path clip-path="url(#p94abdec1fa)" d="M 304.415432 266.278621
  1943. L 304.415432 263.834865
  1944. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1945. <path clip-path="url(#p94abdec1fa)" d="M 304.739893 266.278621
  1946. L 304.739893 263.834865
  1947. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1948. <path clip-path="url(#p94abdec1fa)" d="M 304.836217 266.278621
  1949. L 304.836217 263.834865
  1950. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1951. <path clip-path="url(#p94abdec1fa)" d="M 491.360838 266.278621
  1952. L 491.360838 263.834865
  1953. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1954. <path clip-path="url(#p94abdec1fa)" d="M 491.599114 266.278621
  1955. L 491.599114 263.834865
  1956. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1957. <path clip-path="url(#p94abdec1fa)" d="M 491.680229 266.278621
  1958. L 491.680229 263.834865
  1959. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1960. </g>
  1961. <g id="EventCollection_80">
  1962. <path clip-path="url(#p94abdec1fa)" d="M 52.937739 268.722378
  1963. L 52.937739 266.278621
  1964. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1965. <path clip-path="url(#p94abdec1fa)" d="M 241.622054 268.722378
  1966. L 241.622054 266.278621
  1967. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1968. <path clip-path="url(#p94abdec1fa)" d="M 304.44585 268.722378
  1969. L 304.44585 266.278621
  1970. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1971. <path clip-path="url(#p94abdec1fa)" d="M 491.619393 268.722378
  1972. L 491.619393 266.278621
  1973. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1974. <path clip-path="url(#p94abdec1fa)" d="M 491.705578 268.722378
  1975. L 491.705578 266.278621
  1976. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1977. </g>
  1978. <g id="EventCollection_81">
  1979. <path clip-path="url(#p94abdec1fa)" d="M 52.663974 271.166134
  1980. L 52.663974 268.722378
  1981. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1982. <path clip-path="url(#p94abdec1fa)" d="M 52.892111 271.166134
  1983. L 52.892111 268.722378
  1984. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1985. <path clip-path="url(#p94abdec1fa)" d="M 242.174652 271.166134
  1986. L 242.174652 268.722378
  1987. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1988. <path clip-path="url(#p94abdec1fa)" d="M 304.496547 271.166134
  1989. L 304.496547 268.722378
  1990. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1991. <path clip-path="url(#p94abdec1fa)" d="M 304.952821 271.166134
  1992. L 304.952821 268.722378
  1993. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1994. <path clip-path="url(#p94abdec1fa)" d="M 491.609254 271.166134
  1995. L 491.609254 268.722378
  1996. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1997. </g>
  1998. <g id="EventCollection_82">
  1999. <path clip-path="url(#p94abdec1fa)" d="M 52.582859 273.60989
  2000. L 52.582859 271.166134
  2001. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2002. <path clip-path="url(#p94abdec1fa)" d="M 242.098606 273.60989
  2003. L 242.098606 271.166134
  2004. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2005. <path clip-path="url(#p94abdec1fa)" d="M 304.410362 273.60989
  2006. L 304.410362 271.166134
  2007. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2008. <path clip-path="url(#p94abdec1fa)" d="M 305.059284 273.60989
  2009. L 305.059284 271.166134
  2010. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2011. </g>
  2012. <g id="EventCollection_83">
  2013. <path clip-path="url(#p94abdec1fa)" d="M 52.648765 276.053646
  2014. L 52.648765 273.60989
  2015. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2016. <path clip-path="url(#p94abdec1fa)" d="M 242.129025 276.053646
  2017. L 242.129025 273.60989
  2018. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2019. <path clip-path="url(#p94abdec1fa)" d="M 304.435711 276.053646
  2020. L 304.435711 273.60989
  2021. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2022. <path clip-path="url(#p94abdec1fa)" d="M 491.614323 276.053646
  2023. L 491.614323 273.60989
  2024. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2025. </g>
  2026. <g id="EventCollection_84">
  2027. <path clip-path="url(#p94abdec1fa)" d="M 52.714672 278.497403
  2028. L 52.714672 276.053646
  2029. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2030. <path clip-path="url(#p94abdec1fa)" d="M 242.220279 278.497403
  2031. L 242.220279 276.053646
  2032. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2033. <path clip-path="url(#p94abdec1fa)" d="M 304.349526 278.497403
  2034. L 304.349526 276.053646
  2035. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2036. <path clip-path="url(#p94abdec1fa)" d="M 304.390083 278.497403
  2037. L 304.390083 276.053646
  2038. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2039. <path clip-path="url(#p94abdec1fa)" d="M 304.704405 278.497403
  2040. L 304.704405 276.053646
  2041. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2042. <path clip-path="url(#p94abdec1fa)" d="M 491.67009 278.497403
  2043. L 491.67009 276.053646
  2044. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2045. </g>
  2046. <g id="EventCollection_85">
  2047. <path clip-path="url(#p94abdec1fa)" d="M 52.638626 280.941159
  2048. L 52.638626 278.497403
  2049. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2050. <path clip-path="url(#p94abdec1fa)" d="M 52.90732 280.941159
  2051. L 52.90732 278.497403
  2052. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2053. <path clip-path="url(#p94abdec1fa)" d="M 241.637263 280.941159
  2054. L 241.637263 278.497403
  2055. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2056. <path clip-path="url(#p94abdec1fa)" d="M 304.314038 280.941159
  2057. L 304.314038 278.497403
  2058. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2059. <path clip-path="url(#p94abdec1fa)" d="M 491.614323 280.941159
  2060. L 491.614323 278.497403
  2061. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2062. </g>
  2063. <g id="EventCollection_86">
  2064. <path clip-path="url(#p94abdec1fa)" d="M 52.73495 283.384915
  2065. L 52.73495 280.941159
  2066. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2067. <path clip-path="url(#p94abdec1fa)" d="M 52.932669 283.384915
  2068. L 52.932669 280.941159
  2069. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2070. <path clip-path="url(#p94abdec1fa)" d="M 304.395153 283.384915
  2071. L 304.395153 280.941159
  2072. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2073. <path clip-path="url(#p94abdec1fa)" d="M 491.553487 283.384915
  2074. L 491.553487 280.941159
  2075. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2076. <path clip-path="url(#p94abdec1fa)" d="M 491.629532 283.384915
  2077. L 491.629532 280.941159
  2078. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2079. </g>
  2080. <g id="EventCollection_87">
  2081. <path clip-path="url(#p94abdec1fa)" d="M 52.724811 285.828671
  2082. L 52.724811 283.384915
  2083. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2084. <path clip-path="url(#p94abdec1fa)" d="M 241.500381 285.828671
  2085. L 241.500381 283.384915
  2086. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2087. <path clip-path="url(#p94abdec1fa)" d="M 242.189861 285.828671
  2088. L 242.189861 283.384915
  2089. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2090. <path clip-path="url(#p94abdec1fa)" d="M 304.395153 285.828671
  2091. L 304.395153 283.384915
  2092. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2093. <path clip-path="url(#p94abdec1fa)" d="M 304.937611 285.828671
  2094. L 304.937611 283.384915
  2095. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2096. <path clip-path="url(#p94abdec1fa)" d="M 491.644741 285.828671
  2097. L 491.644741 283.384915
  2098. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2099. </g>
  2100. <g id="EventCollection_88">
  2101. <path clip-path="url(#p94abdec1fa)" d="M 52.958017 288.272428
  2102. L 52.958017 285.828671
  2103. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2104. <path clip-path="url(#p94abdec1fa)" d="M 242.169582 288.272428
  2105. L 242.169582 285.828671
  2106. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2107. <path clip-path="url(#p94abdec1fa)" d="M 304.491477 288.272428
  2108. L 304.491477 285.828671
  2109. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2110. <path clip-path="url(#p94abdec1fa)" d="M 304.516826 288.272428
  2111. L 304.516826 285.828671
  2112. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2113. <path clip-path="url(#p94abdec1fa)" d="M 305.115051 288.272428
  2114. L 305.115051 285.828671
  2115. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2116. <path clip-path="url(#p94abdec1fa)" d="M 491.406465 288.272428
  2117. L 491.406465 285.828671
  2118. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2119. <path clip-path="url(#p94abdec1fa)" d="M 491.624463 288.272428
  2120. L 491.624463 285.828671
  2121. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2122. <path clip-path="url(#p94abdec1fa)" d="M 491.720787 288.272428
  2123. L 491.720787 285.828671
  2124. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2125. </g>
  2126. <g id="EventCollection_89">
  2127. <path clip-path="url(#p94abdec1fa)" d="M 52.689323 290.716184
  2128. L 52.689323 288.272428
  2129. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2130. <path clip-path="url(#p94abdec1fa)" d="M 52.983366 290.716184
  2131. L 52.983366 288.272428
  2132. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2133. <path clip-path="url(#p94abdec1fa)" d="M 241.540939 290.716184
  2134. L 241.540939 288.272428
  2135. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2136. <path clip-path="url(#p94abdec1fa)" d="M 241.921167 290.716184
  2137. L 241.921167 288.272428
  2138. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2139. <path clip-path="url(#p94abdec1fa)" d="M 242.189861 290.716184
  2140. L 242.189861 288.272428
  2141. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2142. </g>
  2143. <g id="EventCollection_90"/>
  2144. </g>
  2145. <g id="axes_2">
  2146. <g id="patch_7">
  2147. <path d="M 46.965625 561.24
  2148. L 549.165625 561.24
  2149. L 549.165625 338.858182
  2150. L 46.965625 338.858182
  2151. z
  2152. " style="fill:#ffffff;"/>
  2153. </g>
  2154. <g id="PolyCollection_1">
  2155. <path clip-path="url(#pfd9880347f)" d="M 242.265625 561.24
  2156. L 242.265625 338.858182
  2157. L 243.533807 558.172665
  2158. L 243.533807 561.24
  2159. L 243.533807 561.24
  2160. L 242.265625 561.24
  2161. z
  2162. " style="fill:#d3d3d3;"/>
  2163. </g>
  2164. <g id="PolyCollection_2">
  2165. <path clip-path="url(#pfd9880347f)" d="M 489.56108 561.24
  2166. L 489.56108 559.706332
  2167. L 489.56108 561.24
  2168. L 489.56108 561.24
  2169. z
  2170. " style="fill:#d3d3d3;"/>
  2171. <path clip-path="url(#pfd9880347f)" d="M 492.097443 561.24
  2172. L 492.097443 384.868213
  2173. L 492.097443 561.24
  2174. L 492.097443 561.24
  2175. z
  2176. " style="fill:#d3d3d3;"/>
  2177. <path clip-path="url(#pfd9880347f)" d="M 494.633807 561.24
  2178. L 494.633807 559.706332
  2179. L 494.633807 561.24
  2180. L 494.633807 561.24
  2181. z
  2182. " style="fill:#d3d3d3;"/>
  2183. </g>
  2184. <g id="matplotlib.axis_3">
  2185. <g id="xtick_1">
  2186. <g id="line2d_6">
  2187. <defs>
  2188. <path d="M 0 0
  2189. L 0 3.5
  2190. " id="m97aec0fa6f" style="stroke:#000000;stroke-width:0.8;"/>
  2191. </defs>
  2192. <g>
  2193. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m97aec0fa6f" y="561.24"/>
  2194. </g>
  2195. </g>
  2196. <g id="text_7">
  2197. <!-- 0.0 -->
  2198. <defs>
  2199. <path d="M 10.6875 12.40625
  2200. L 21 12.40625
  2201. L 21 0
  2202. L 10.6875 0
  2203. z
  2204. " id="DejaVuSans-46"/>
  2205. </defs>
  2206. <g transform="translate(39.014063 575.838437)scale(0.1 -0.1)">
  2207. <use xlink:href="#DejaVuSans-48"/>
  2208. <use x="63.623047" xlink:href="#DejaVuSans-46"/>
  2209. <use x="95.410156" xlink:href="#DejaVuSans-48"/>
  2210. </g>
  2211. </g>
  2212. </g>
  2213. <g id="xtick_2">
  2214. <g id="line2d_7">
  2215. <g>
  2216. <use style="stroke:#000000;stroke-width:0.8;" x="110.336949" xlink:href="#m97aec0fa6f" y="561.24"/>
  2217. </g>
  2218. </g>
  2219. <g id="text_8">
  2220. <!-- 0.5 -->
  2221. <defs>
  2222. <path d="M 10.796875 72.90625
  2223. L 49.515625 72.90625
  2224. L 49.515625 64.59375
  2225. L 19.828125 64.59375
  2226. L 19.828125 46.734375
  2227. Q 21.96875 47.46875 24.109375 47.828125
  2228. Q 26.265625 48.1875 28.421875 48.1875
  2229. Q 40.625 48.1875 47.75 41.5
  2230. Q 54.890625 34.8125 54.890625 23.390625
  2231. Q 54.890625 11.625 47.5625 5.09375
  2232. Q 40.234375 -1.421875 26.90625 -1.421875
  2233. Q 22.3125 -1.421875 17.546875 -0.640625
  2234. Q 12.796875 0.140625 7.71875 1.703125
  2235. L 7.71875 11.625
  2236. Q 12.109375 9.234375 16.796875 8.0625
  2237. Q 21.484375 6.890625 26.703125 6.890625
  2238. Q 35.15625 6.890625 40.078125 11.328125
  2239. Q 45.015625 15.765625 45.015625 23.390625
  2240. Q 45.015625 31 40.078125 35.4375
  2241. Q 35.15625 39.890625 26.703125 39.890625
  2242. Q 22.75 39.890625 18.8125 39.015625
  2243. Q 14.890625 38.140625 10.796875 36.28125
  2244. z
  2245. " id="DejaVuSans-53"/>
  2246. </defs>
  2247. <g transform="translate(102.385387 575.838437)scale(0.1 -0.1)">
  2248. <use xlink:href="#DejaVuSans-48"/>
  2249. <use x="63.623047" xlink:href="#DejaVuSans-46"/>
  2250. <use x="95.410156" xlink:href="#DejaVuSans-53"/>
  2251. </g>
  2252. </g>
  2253. </g>
  2254. <g id="xtick_3">
  2255. <g id="line2d_8">
  2256. <g>
  2257. <use style="stroke:#000000;stroke-width:0.8;" x="173.708273" xlink:href="#m97aec0fa6f" y="561.24"/>
  2258. </g>
  2259. </g>
  2260. <g id="text_9">
  2261. <!-- 1.0 -->
  2262. <defs>
  2263. <path d="M 12.40625 8.296875
  2264. L 28.515625 8.296875
  2265. L 28.515625 63.921875
  2266. L 10.984375 60.40625
  2267. L 10.984375 69.390625
  2268. L 28.421875 72.90625
  2269. L 38.28125 72.90625
  2270. L 38.28125 8.296875
  2271. L 54.390625 8.296875
  2272. L 54.390625 0
  2273. L 12.40625 0
  2274. z
  2275. " id="DejaVuSans-49"/>
  2276. </defs>
  2277. <g transform="translate(165.756711 575.838437)scale(0.1 -0.1)">
  2278. <use xlink:href="#DejaVuSans-49"/>
  2279. <use x="63.623047" xlink:href="#DejaVuSans-46"/>
  2280. <use x="95.410156" xlink:href="#DejaVuSans-48"/>
  2281. </g>
  2282. </g>
  2283. </g>
  2284. <g id="xtick_4">
  2285. <g id="line2d_9">
  2286. <g>
  2287. <use style="stroke:#000000;stroke-width:0.8;" x="237.079597" xlink:href="#m97aec0fa6f" y="561.24"/>
  2288. </g>
  2289. </g>
  2290. <g id="text_10">
  2291. <!-- 1.5 -->
  2292. <g transform="translate(229.128035 575.838437)scale(0.1 -0.1)">
  2293. <use xlink:href="#DejaVuSans-49"/>
  2294. <use x="63.623047" xlink:href="#DejaVuSans-46"/>
  2295. <use x="95.410156" xlink:href="#DejaVuSans-53"/>
  2296. </g>
  2297. </g>
  2298. </g>
  2299. <g id="xtick_5">
  2300. <g id="line2d_10">
  2301. <g>
  2302. <use style="stroke:#000000;stroke-width:0.8;" x="300.450922" xlink:href="#m97aec0fa6f" y="561.24"/>
  2303. </g>
  2304. </g>
  2305. <g id="text_11">
  2306. <!-- 2.0 -->
  2307. <g transform="translate(292.499359 575.838437)scale(0.1 -0.1)">
  2308. <use xlink:href="#DejaVuSans-50"/>
  2309. <use x="63.623047" xlink:href="#DejaVuSans-46"/>
  2310. <use x="95.410156" xlink:href="#DejaVuSans-48"/>
  2311. </g>
  2312. </g>
  2313. </g>
  2314. <g id="xtick_6">
  2315. <g id="line2d_11">
  2316. <g>
  2317. <use style="stroke:#000000;stroke-width:0.8;" x="363.822246" xlink:href="#m97aec0fa6f" y="561.24"/>
  2318. </g>
  2319. </g>
  2320. <g id="text_12">
  2321. <!-- 2.5 -->
  2322. <g transform="translate(355.870683 575.838437)scale(0.1 -0.1)">
  2323. <use xlink:href="#DejaVuSans-50"/>
  2324. <use x="63.623047" xlink:href="#DejaVuSans-46"/>
  2325. <use x="95.410156" xlink:href="#DejaVuSans-53"/>
  2326. </g>
  2327. </g>
  2328. </g>
  2329. <g id="xtick_7">
  2330. <g id="line2d_12">
  2331. <g>
  2332. <use style="stroke:#000000;stroke-width:0.8;" x="427.19357" xlink:href="#m97aec0fa6f" y="561.24"/>
  2333. </g>
  2334. </g>
  2335. <g id="text_13">
  2336. <!-- 3.0 -->
  2337. <defs>
  2338. <path d="M 40.578125 39.3125
  2339. Q 47.65625 37.796875 51.625 33
  2340. Q 55.609375 28.21875 55.609375 21.1875
  2341. Q 55.609375 10.40625 48.1875 4.484375
  2342. Q 40.765625 -1.421875 27.09375 -1.421875
  2343. Q 22.515625 -1.421875 17.65625 -0.515625
  2344. Q 12.796875 0.390625 7.625 2.203125
  2345. L 7.625 11.71875
  2346. Q 11.71875 9.328125 16.59375 8.109375
  2347. Q 21.484375 6.890625 26.8125 6.890625
  2348. Q 36.078125 6.890625 40.9375 10.546875
  2349. Q 45.796875 14.203125 45.796875 21.1875
  2350. Q 45.796875 27.640625 41.28125 31.265625
  2351. Q 36.765625 34.90625 28.71875 34.90625
  2352. L 20.21875 34.90625
  2353. L 20.21875 43.015625
  2354. L 29.109375 43.015625
  2355. Q 36.375 43.015625 40.234375 45.921875
  2356. Q 44.09375 48.828125 44.09375 54.296875
  2357. Q 44.09375 59.90625 40.109375 62.90625
  2358. Q 36.140625 65.921875 28.71875 65.921875
  2359. Q 24.65625 65.921875 20.015625 65.03125
  2360. Q 15.375 64.15625 9.8125 62.3125
  2361. L 9.8125 71.09375
  2362. Q 15.4375 72.65625 20.34375 73.4375
  2363. Q 25.25 74.21875 29.59375 74.21875
  2364. Q 40.828125 74.21875 47.359375 69.109375
  2365. Q 53.90625 64.015625 53.90625 55.328125
  2366. Q 53.90625 49.265625 50.4375 45.09375
  2367. Q 46.96875 40.921875 40.578125 39.3125
  2368. z
  2369. " id="DejaVuSans-51"/>
  2370. </defs>
  2371. <g transform="translate(419.242007 575.838437)scale(0.1 -0.1)">
  2372. <use xlink:href="#DejaVuSans-51"/>
  2373. <use x="63.623047" xlink:href="#DejaVuSans-46"/>
  2374. <use x="95.410156" xlink:href="#DejaVuSans-48"/>
  2375. </g>
  2376. </g>
  2377. </g>
  2378. <g id="xtick_8">
  2379. <g id="line2d_13">
  2380. <g>
  2381. <use style="stroke:#000000;stroke-width:0.8;" x="490.564894" xlink:href="#m97aec0fa6f" y="561.24"/>
  2382. </g>
  2383. </g>
  2384. <g id="text_14">
  2385. <!-- 3.5 -->
  2386. <g transform="translate(482.613332 575.838437)scale(0.1 -0.1)">
  2387. <use xlink:href="#DejaVuSans-51"/>
  2388. <use x="63.623047" xlink:href="#DejaVuSans-46"/>
  2389. <use x="95.410156" xlink:href="#DejaVuSans-53"/>
  2390. </g>
  2391. </g>
  2392. </g>
  2393. <g id="text_15">
  2394. <!-- Time[s] -->
  2395. <defs>
  2396. <path d="M 52 44.1875
  2397. Q 55.375 50.25 60.0625 53.125
  2398. Q 64.75 56 71.09375 56
  2399. Q 79.640625 56 84.28125 50.015625
  2400. Q 88.921875 44.046875 88.921875 33.015625
  2401. L 88.921875 0
  2402. L 79.890625 0
  2403. L 79.890625 32.71875
  2404. Q 79.890625 40.578125 77.09375 44.375
  2405. Q 74.3125 48.1875 68.609375 48.1875
  2406. Q 61.625 48.1875 57.5625 43.546875
  2407. Q 53.515625 38.921875 53.515625 30.90625
  2408. L 53.515625 0
  2409. L 44.484375 0
  2410. L 44.484375 32.71875
  2411. Q 44.484375 40.625 41.703125 44.40625
  2412. Q 38.921875 48.1875 33.109375 48.1875
  2413. Q 26.21875 48.1875 22.15625 43.53125
  2414. Q 18.109375 38.875 18.109375 30.90625
  2415. L 18.109375 0
  2416. L 9.078125 0
  2417. L 9.078125 54.6875
  2418. L 18.109375 54.6875
  2419. L 18.109375 46.1875
  2420. Q 21.1875 51.21875 25.484375 53.609375
  2421. Q 29.78125 56 35.6875 56
  2422. Q 41.65625 56 45.828125 52.96875
  2423. Q 50 49.953125 52 44.1875
  2424. z
  2425. " id="DejaVuSans-109"/>
  2426. <path d="M 56.203125 29.59375
  2427. L 56.203125 25.203125
  2428. L 14.890625 25.203125
  2429. Q 15.484375 15.921875 20.484375 11.0625
  2430. Q 25.484375 6.203125 34.421875 6.203125
  2431. Q 39.59375 6.203125 44.453125 7.46875
  2432. Q 49.3125 8.734375 54.109375 11.28125
  2433. L 54.109375 2.78125
  2434. Q 49.265625 0.734375 44.1875 -0.34375
  2435. Q 39.109375 -1.421875 33.890625 -1.421875
  2436. Q 20.796875 -1.421875 13.15625 6.1875
  2437. Q 5.515625 13.8125 5.515625 26.8125
  2438. Q 5.515625 40.234375 12.765625 48.109375
  2439. Q 20.015625 56 32.328125 56
  2440. Q 43.359375 56 49.78125 48.890625
  2441. Q 56.203125 41.796875 56.203125 29.59375
  2442. z
  2443. M 47.21875 32.234375
  2444. Q 47.125 39.59375 43.09375 43.984375
  2445. Q 39.0625 48.390625 32.421875 48.390625
  2446. Q 24.90625 48.390625 20.390625 44.140625
  2447. Q 15.875 39.890625 15.1875 32.171875
  2448. z
  2449. " id="DejaVuSans-101"/>
  2450. <path d="M 8.59375 75.984375
  2451. L 29.296875 75.984375
  2452. L 29.296875 69
  2453. L 17.578125 69
  2454. L 17.578125 -6.203125
  2455. L 29.296875 -6.203125
  2456. L 29.296875 -13.1875
  2457. L 8.59375 -13.1875
  2458. z
  2459. " id="DejaVuSans-91"/>
  2460. <path d="M 44.28125 53.078125
  2461. L 44.28125 44.578125
  2462. Q 40.484375 46.53125 36.375 47.5
  2463. Q 32.28125 48.484375 27.875 48.484375
  2464. Q 21.1875 48.484375 17.84375 46.4375
  2465. Q 14.5 44.390625 14.5 40.28125
  2466. Q 14.5 37.15625 16.890625 35.375
  2467. Q 19.28125 33.59375 26.515625 31.984375
  2468. L 29.59375 31.296875
  2469. Q 39.15625 29.25 43.1875 25.515625
  2470. Q 47.21875 21.78125 47.21875 15.09375
  2471. Q 47.21875 7.46875 41.1875 3.015625
  2472. Q 35.15625 -1.421875 24.609375 -1.421875
  2473. Q 20.21875 -1.421875 15.453125 -0.5625
  2474. Q 10.6875 0.296875 5.421875 2
  2475. L 5.421875 11.28125
  2476. Q 10.40625 8.6875 15.234375 7.390625
  2477. Q 20.0625 6.109375 24.8125 6.109375
  2478. Q 31.15625 6.109375 34.5625 8.28125
  2479. Q 37.984375 10.453125 37.984375 14.40625
  2480. Q 37.984375 18.0625 35.515625 20.015625
  2481. Q 33.0625 21.96875 24.703125 23.78125
  2482. L 21.578125 24.515625
  2483. Q 13.234375 26.265625 9.515625 29.90625
  2484. Q 5.8125 33.546875 5.8125 39.890625
  2485. Q 5.8125 47.609375 11.28125 51.796875
  2486. Q 16.75 56 26.8125 56
  2487. Q 31.78125 56 36.171875 55.265625
  2488. Q 40.578125 54.546875 44.28125 53.078125
  2489. z
  2490. " id="DejaVuSans-115"/>
  2491. <path d="M 30.421875 75.984375
  2492. L 30.421875 -13.1875
  2493. L 9.71875 -13.1875
  2494. L 9.71875 -6.203125
  2495. L 21.390625 -6.203125
  2496. L 21.390625 69
  2497. L 9.71875 69
  2498. L 9.71875 75.984375
  2499. z
  2500. " id="DejaVuSans-93"/>
  2501. </defs>
  2502. <g transform="translate(279.171875 589.516562)scale(0.1 -0.1)">
  2503. <use xlink:href="#DejaVuSans-84"/>
  2504. <use x="61.037109" xlink:href="#DejaVuSans-105"/>
  2505. <use x="88.820312" xlink:href="#DejaVuSans-109"/>
  2506. <use x="186.232422" xlink:href="#DejaVuSans-101"/>
  2507. <use x="247.755859" xlink:href="#DejaVuSans-91"/>
  2508. <use x="286.769531" xlink:href="#DejaVuSans-115"/>
  2509. <use x="338.869141" xlink:href="#DejaVuSans-93"/>
  2510. </g>
  2511. </g>
  2512. </g>
  2513. <g id="matplotlib.axis_4">
  2514. <g id="ytick_6">
  2515. <g id="line2d_14">
  2516. <g>
  2517. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m8cfb1763ae" y="561.24"/>
  2518. </g>
  2519. </g>
  2520. <g id="text_16">
  2521. <!-- 0 -->
  2522. <g transform="translate(33.603125 565.039219)scale(0.1 -0.1)">
  2523. <use xlink:href="#DejaVuSans-48"/>
  2524. </g>
  2525. </g>
  2526. </g>
  2527. <g id="ytick_7">
  2528. <g id="line2d_15">
  2529. <g>
  2530. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m8cfb1763ae" y="533.99325"/>
  2531. </g>
  2532. </g>
  2533. <g id="text_17">
  2534. <!-- 20 -->
  2535. <g transform="translate(27.240625 537.792469)scale(0.1 -0.1)">
  2536. <use xlink:href="#DejaVuSans-50"/>
  2537. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  2538. </g>
  2539. </g>
  2540. </g>
  2541. <g id="ytick_8">
  2542. <g id="line2d_16">
  2543. <g>
  2544. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m8cfb1763ae" y="506.746501"/>
  2545. </g>
  2546. </g>
  2547. <g id="text_18">
  2548. <!-- 40 -->
  2549. <g transform="translate(27.240625 510.54572)scale(0.1 -0.1)">
  2550. <use xlink:href="#DejaVuSans-52"/>
  2551. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  2552. </g>
  2553. </g>
  2554. </g>
  2555. <g id="ytick_9">
  2556. <g id="line2d_17">
  2557. <g>
  2558. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m8cfb1763ae" y="479.499751"/>
  2559. </g>
  2560. </g>
  2561. <g id="text_19">
  2562. <!-- 60 -->
  2563. <g transform="translate(27.240625 483.29897)scale(0.1 -0.1)">
  2564. <use xlink:href="#DejaVuSans-54"/>
  2565. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  2566. </g>
  2567. </g>
  2568. </g>
  2569. <g id="ytick_10">
  2570. <g id="line2d_18">
  2571. <g>
  2572. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m8cfb1763ae" y="452.253002"/>
  2573. </g>
  2574. </g>
  2575. <g id="text_20">
  2576. <!-- 80 -->
  2577. <g transform="translate(27.240625 456.05222)scale(0.1 -0.1)">
  2578. <use xlink:href="#DejaVuSans-56"/>
  2579. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  2580. </g>
  2581. </g>
  2582. </g>
  2583. <g id="ytick_11">
  2584. <g id="line2d_19">
  2585. <g>
  2586. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m8cfb1763ae" y="425.006252"/>
  2587. </g>
  2588. </g>
  2589. <g id="text_21">
  2590. <!-- 100 -->
  2591. <g transform="translate(20.878125 428.805471)scale(0.1 -0.1)">
  2592. <use xlink:href="#DejaVuSans-49"/>
  2593. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  2594. <use x="127.246094" xlink:href="#DejaVuSans-48"/>
  2595. </g>
  2596. </g>
  2597. </g>
  2598. <g id="ytick_12">
  2599. <g id="line2d_20">
  2600. <g>
  2601. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m8cfb1763ae" y="397.759502"/>
  2602. </g>
  2603. </g>
  2604. <g id="text_22">
  2605. <!-- 120 -->
  2606. <g transform="translate(20.878125 401.558721)scale(0.1 -0.1)">
  2607. <use xlink:href="#DejaVuSans-49"/>
  2608. <use x="63.623047" xlink:href="#DejaVuSans-50"/>
  2609. <use x="127.246094" xlink:href="#DejaVuSans-48"/>
  2610. </g>
  2611. </g>
  2612. </g>
  2613. <g id="ytick_13">
  2614. <g id="line2d_21">
  2615. <g>
  2616. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m8cfb1763ae" y="370.512753"/>
  2617. </g>
  2618. </g>
  2619. <g id="text_23">
  2620. <!-- 140 -->
  2621. <g transform="translate(20.878125 374.311971)scale(0.1 -0.1)">
  2622. <use xlink:href="#DejaVuSans-49"/>
  2623. <use x="63.623047" xlink:href="#DejaVuSans-52"/>
  2624. <use x="127.246094" xlink:href="#DejaVuSans-48"/>
  2625. </g>
  2626. </g>
  2627. </g>
  2628. <g id="ytick_14">
  2629. <g id="line2d_22">
  2630. <g>
  2631. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m8cfb1763ae" y="343.266003"/>
  2632. </g>
  2633. </g>
  2634. <g id="text_24">
  2635. <!-- 160 -->
  2636. <g transform="translate(20.878125 347.065222)scale(0.1 -0.1)">
  2637. <use xlink:href="#DejaVuSans-49"/>
  2638. <use x="63.623047" xlink:href="#DejaVuSans-54"/>
  2639. <use x="127.246094" xlink:href="#DejaVuSans-48"/>
  2640. </g>
  2641. </g>
  2642. </g>
  2643. <g id="text_25">
  2644. <!-- Firing rate[spikes/s] -->
  2645. <defs>
  2646. <path d="M 9.8125 72.90625
  2647. L 51.703125 72.90625
  2648. L 51.703125 64.59375
  2649. L 19.671875 64.59375
  2650. L 19.671875 43.109375
  2651. L 48.578125 43.109375
  2652. L 48.578125 34.8125
  2653. L 19.671875 34.8125
  2654. L 19.671875 0
  2655. L 9.8125 0
  2656. z
  2657. " id="DejaVuSans-70"/>
  2658. <path d="M 54.890625 33.015625
  2659. L 54.890625 0
  2660. L 45.90625 0
  2661. L 45.90625 32.71875
  2662. Q 45.90625 40.484375 42.875 44.328125
  2663. Q 39.84375 48.1875 33.796875 48.1875
  2664. Q 26.515625 48.1875 22.3125 43.546875
  2665. Q 18.109375 38.921875 18.109375 30.90625
  2666. L 18.109375 0
  2667. L 9.078125 0
  2668. L 9.078125 54.6875
  2669. L 18.109375 54.6875
  2670. L 18.109375 46.1875
  2671. Q 21.34375 51.125 25.703125 53.5625
  2672. Q 30.078125 56 35.796875 56
  2673. Q 45.21875 56 50.046875 50.171875
  2674. Q 54.890625 44.34375 54.890625 33.015625
  2675. z
  2676. " id="DejaVuSans-110"/>
  2677. <path d="M 45.40625 27.984375
  2678. Q 45.40625 37.75 41.375 43.109375
  2679. Q 37.359375 48.484375 30.078125 48.484375
  2680. Q 22.859375 48.484375 18.828125 43.109375
  2681. Q 14.796875 37.75 14.796875 27.984375
  2682. Q 14.796875 18.265625 18.828125 12.890625
  2683. Q 22.859375 7.515625 30.078125 7.515625
  2684. Q 37.359375 7.515625 41.375 12.890625
  2685. Q 45.40625 18.265625 45.40625 27.984375
  2686. z
  2687. M 54.390625 6.78125
  2688. Q 54.390625 -7.171875 48.1875 -13.984375
  2689. Q 42 -20.796875 29.203125 -20.796875
  2690. Q 24.46875 -20.796875 20.265625 -20.09375
  2691. Q 16.0625 -19.390625 12.109375 -17.921875
  2692. L 12.109375 -9.1875
  2693. Q 16.0625 -11.328125 19.921875 -12.34375
  2694. Q 23.78125 -13.375 27.78125 -13.375
  2695. Q 36.625 -13.375 41.015625 -8.765625
  2696. Q 45.40625 -4.15625 45.40625 5.171875
  2697. L 45.40625 9.625
  2698. Q 42.625 4.78125 38.28125 2.390625
  2699. Q 33.9375 0 27.875 0
  2700. Q 17.828125 0 11.671875 7.65625
  2701. Q 5.515625 15.328125 5.515625 27.984375
  2702. Q 5.515625 40.671875 11.671875 48.328125
  2703. Q 17.828125 56 27.875 56
  2704. Q 33.9375 56 38.28125 53.609375
  2705. Q 42.625 51.21875 45.40625 46.390625
  2706. L 45.40625 54.6875
  2707. L 54.390625 54.6875
  2708. z
  2709. " id="DejaVuSans-103"/>
  2710. <path id="DejaVuSans-32"/>
  2711. <path d="M 18.3125 70.21875
  2712. L 18.3125 54.6875
  2713. L 36.8125 54.6875
  2714. L 36.8125 47.703125
  2715. L 18.3125 47.703125
  2716. L 18.3125 18.015625
  2717. Q 18.3125 11.328125 20.140625 9.421875
  2718. Q 21.96875 7.515625 27.59375 7.515625
  2719. L 36.8125 7.515625
  2720. L 36.8125 0
  2721. L 27.59375 0
  2722. Q 17.1875 0 13.234375 3.875
  2723. Q 9.28125 7.765625 9.28125 18.015625
  2724. L 9.28125 47.703125
  2725. L 2.6875 47.703125
  2726. L 2.6875 54.6875
  2727. L 9.28125 54.6875
  2728. L 9.28125 70.21875
  2729. z
  2730. " id="DejaVuSans-116"/>
  2731. <path d="M 18.109375 8.203125
  2732. L 18.109375 -20.796875
  2733. L 9.078125 -20.796875
  2734. L 9.078125 54.6875
  2735. L 18.109375 54.6875
  2736. L 18.109375 46.390625
  2737. Q 20.953125 51.265625 25.265625 53.625
  2738. Q 29.59375 56 35.59375 56
  2739. Q 45.5625 56 51.78125 48.09375
  2740. Q 58.015625 40.1875 58.015625 27.296875
  2741. Q 58.015625 14.40625 51.78125 6.484375
  2742. Q 45.5625 -1.421875 35.59375 -1.421875
  2743. Q 29.59375 -1.421875 25.265625 0.953125
  2744. Q 20.953125 3.328125 18.109375 8.203125
  2745. z
  2746. M 48.6875 27.296875
  2747. Q 48.6875 37.203125 44.609375 42.84375
  2748. Q 40.53125 48.484375 33.40625 48.484375
  2749. Q 26.265625 48.484375 22.1875 42.84375
  2750. Q 18.109375 37.203125 18.109375 27.296875
  2751. Q 18.109375 17.390625 22.1875 11.75
  2752. Q 26.265625 6.109375 33.40625 6.109375
  2753. Q 40.53125 6.109375 44.609375 11.75
  2754. Q 48.6875 17.390625 48.6875 27.296875
  2755. z
  2756. " id="DejaVuSans-112"/>
  2757. <path d="M 9.078125 75.984375
  2758. L 18.109375 75.984375
  2759. L 18.109375 31.109375
  2760. L 44.921875 54.6875
  2761. L 56.390625 54.6875
  2762. L 27.390625 29.109375
  2763. L 57.625 0
  2764. L 45.90625 0
  2765. L 18.109375 26.703125
  2766. L 18.109375 0
  2767. L 9.078125 0
  2768. z
  2769. " id="DejaVuSans-107"/>
  2770. <path d="M 25.390625 72.90625
  2771. L 33.6875 72.90625
  2772. L 8.296875 -9.28125
  2773. L 0 -9.28125
  2774. z
  2775. " id="DejaVuSans-47"/>
  2776. </defs>
  2777. <g transform="translate(14.798438 499.774091)rotate(-90)scale(0.1 -0.1)">
  2778. <use xlink:href="#DejaVuSans-70"/>
  2779. <use x="57.410156" xlink:href="#DejaVuSans-105"/>
  2780. <use x="85.193359" xlink:href="#DejaVuSans-114"/>
  2781. <use x="126.306641" xlink:href="#DejaVuSans-105"/>
  2782. <use x="154.089844" xlink:href="#DejaVuSans-110"/>
  2783. <use x="217.46875" xlink:href="#DejaVuSans-103"/>
  2784. <use x="280.945312" xlink:href="#DejaVuSans-32"/>
  2785. <use x="312.732422" xlink:href="#DejaVuSans-114"/>
  2786. <use x="353.845703" xlink:href="#DejaVuSans-97"/>
  2787. <use x="415.125" xlink:href="#DejaVuSans-116"/>
  2788. <use x="454.333984" xlink:href="#DejaVuSans-101"/>
  2789. <use x="515.857422" xlink:href="#DejaVuSans-91"/>
  2790. <use x="554.871094" xlink:href="#DejaVuSans-115"/>
  2791. <use x="606.970703" xlink:href="#DejaVuSans-112"/>
  2792. <use x="670.447266" xlink:href="#DejaVuSans-105"/>
  2793. <use x="698.230469" xlink:href="#DejaVuSans-107"/>
  2794. <use x="756.09375" xlink:href="#DejaVuSans-101"/>
  2795. <use x="817.617188" xlink:href="#DejaVuSans-115"/>
  2796. <use x="869.716797" xlink:href="#DejaVuSans-47"/>
  2797. <use x="903.408203" xlink:href="#DejaVuSans-115"/>
  2798. <use x="955.507812" xlink:href="#DejaVuSans-93"/>
  2799. </g>
  2800. </g>
  2801. </g>
  2802. <g id="line2d_23">
  2803. <path clip-path="url(#pfd9880347f)" d="M 46.965625 561.24
  2804. L 52.038352 561.24
  2805. L 53.306534 366.464201
  2806. L 54.574716 561.24
  2807. L 240.997443 561.24
  2808. L 242.265625 338.858182
  2809. L 243.533807 558.172665
  2810. L 244.801989 561.24
  2811. L 303.138352 561.24
  2812. L 304.406534 446.214922
  2813. L 305.674716 458.484263
  2814. L 306.942898 561.24
  2815. L 488.292898 561.24
  2816. L 489.56108 559.706332
  2817. L 490.829261 561.24
  2818. L 492.097443 384.868213
  2819. L 493.365625 561.24
  2820. L 494.633807 559.706332
  2821. L 495.901989 561.24
  2822. L 549.165625 561.24
  2823. L 549.165625 561.24
  2824. " style="fill:none;stroke:#1f77b4;stroke-linecap:square;stroke-width:1.5;"/>
  2825. </g>
  2826. <g id="text_26">
  2827. <!-- Baseline: 0 Hz Bias: 0.11 -->
  2828. <defs>
  2829. <path d="M 19.671875 34.8125
  2830. L 19.671875 8.109375
  2831. L 35.5 8.109375
  2832. Q 43.453125 8.109375 47.28125 11.40625
  2833. Q 51.125 14.703125 51.125 21.484375
  2834. Q 51.125 28.328125 47.28125 31.5625
  2835. Q 43.453125 34.8125 35.5 34.8125
  2836. z
  2837. M 19.671875 64.796875
  2838. L 19.671875 42.828125
  2839. L 34.28125 42.828125
  2840. Q 41.5 42.828125 45.03125 45.53125
  2841. Q 48.578125 48.25 48.578125 53.8125
  2842. Q 48.578125 59.328125 45.03125 62.0625
  2843. Q 41.5 64.796875 34.28125 64.796875
  2844. z
  2845. M 9.8125 72.90625
  2846. L 35.015625 72.90625
  2847. Q 46.296875 72.90625 52.390625 68.21875
  2848. Q 58.5 63.53125 58.5 54.890625
  2849. Q 58.5 48.1875 55.375 44.234375
  2850. Q 52.25 40.28125 46.1875 39.3125
  2851. Q 53.46875 37.75 57.5 32.78125
  2852. Q 61.53125 27.828125 61.53125 20.40625
  2853. Q 61.53125 10.640625 54.890625 5.3125
  2854. Q 48.25 0 35.984375 0
  2855. L 9.8125 0
  2856. z
  2857. " id="DejaVuSans-66"/>
  2858. <path d="M 11.71875 12.40625
  2859. L 22.015625 12.40625
  2860. L 22.015625 0
  2861. L 11.71875 0
  2862. z
  2863. M 11.71875 51.703125
  2864. L 22.015625 51.703125
  2865. L 22.015625 39.3125
  2866. L 11.71875 39.3125
  2867. z
  2868. " id="DejaVuSans-58"/>
  2869. <path d="M 9.8125 72.90625
  2870. L 19.671875 72.90625
  2871. L 19.671875 43.015625
  2872. L 55.515625 43.015625
  2873. L 55.515625 72.90625
  2874. L 65.375 72.90625
  2875. L 65.375 0
  2876. L 55.515625 0
  2877. L 55.515625 34.71875
  2878. L 19.671875 34.71875
  2879. L 19.671875 0
  2880. L 9.8125 0
  2881. z
  2882. " id="DejaVuSans-72"/>
  2883. <path d="M 5.515625 54.6875
  2884. L 48.1875 54.6875
  2885. L 48.1875 46.484375
  2886. L 14.40625 7.171875
  2887. L 48.1875 7.171875
  2888. L 48.1875 0
  2889. L 4.296875 0
  2890. L 4.296875 8.203125
  2891. L 38.09375 47.515625
  2892. L 5.515625 47.515625
  2893. z
  2894. " id="DejaVuSans-122"/>
  2895. </defs>
  2896. <g transform="translate(221.625625 332.858182)scale(0.12 -0.12)">
  2897. <use xlink:href="#DejaVuSans-66"/>
  2898. <use x="68.603516" xlink:href="#DejaVuSans-97"/>
  2899. <use x="129.882812" xlink:href="#DejaVuSans-115"/>
  2900. <use x="181.982422" xlink:href="#DejaVuSans-101"/>
  2901. <use x="243.505859" xlink:href="#DejaVuSans-108"/>
  2902. <use x="271.289062" xlink:href="#DejaVuSans-105"/>
  2903. <use x="299.072266" xlink:href="#DejaVuSans-110"/>
  2904. <use x="362.451172" xlink:href="#DejaVuSans-101"/>
  2905. <use x="423.974609" xlink:href="#DejaVuSans-58"/>
  2906. <use x="457.666016" xlink:href="#DejaVuSans-32"/>
  2907. <use x="489.453125" xlink:href="#DejaVuSans-32"/>
  2908. <use x="521.240234" xlink:href="#DejaVuSans-48"/>
  2909. <use x="584.863281" xlink:href="#DejaVuSans-32"/>
  2910. <use x="616.650391" xlink:href="#DejaVuSans-72"/>
  2911. <use x="691.845703" xlink:href="#DejaVuSans-122"/>
  2912. <use x="744.335938" xlink:href="#DejaVuSans-32"/>
  2913. <use x="776.123047" xlink:href="#DejaVuSans-66"/>
  2914. <use x="844.726562" xlink:href="#DejaVuSans-105"/>
  2915. <use x="872.509766" xlink:href="#DejaVuSans-97"/>
  2916. <use x="933.789062" xlink:href="#DejaVuSans-115"/>
  2917. <use x="985.888672" xlink:href="#DejaVuSans-58"/>
  2918. <use x="1019.580078" xlink:href="#DejaVuSans-32"/>
  2919. <use x="1051.367188" xlink:href="#DejaVuSans-48"/>
  2920. <use x="1114.990234" xlink:href="#DejaVuSans-46"/>
  2921. <use x="1146.777344" xlink:href="#DejaVuSans-49"/>
  2922. <use x="1210.400391" xlink:href="#DejaVuSans-49"/>
  2923. </g>
  2924. </g>
  2925. </g>
  2926. <g id="text_27">
  2927. <!-- 20180710_kilosorted -->
  2928. <defs>
  2929. <path d="M 8.203125 72.90625
  2930. L 55.078125 72.90625
  2931. L 55.078125 68.703125
  2932. L 28.609375 0
  2933. L 18.3125 0
  2934. L 43.21875 64.59375
  2935. L 8.203125 64.59375
  2936. z
  2937. " id="DejaVuSans-55"/>
  2938. <path d="M 50.984375 -16.609375
  2939. L 50.984375 -23.578125
  2940. L -0.984375 -23.578125
  2941. L -0.984375 -16.609375
  2942. z
  2943. " id="DejaVuSans-95"/>
  2944. <path d="M 30.609375 48.390625
  2945. Q 23.390625 48.390625 19.1875 42.75
  2946. Q 14.984375 37.109375 14.984375 27.296875
  2947. Q 14.984375 17.484375 19.15625 11.84375
  2948. Q 23.34375 6.203125 30.609375 6.203125
  2949. Q 37.796875 6.203125 41.984375 11.859375
  2950. Q 46.1875 17.53125 46.1875 27.296875
  2951. Q 46.1875 37.015625 41.984375 42.703125
  2952. Q 37.796875 48.390625 30.609375 48.390625
  2953. z
  2954. M 30.609375 56
  2955. Q 42.328125 56 49.015625 48.375
  2956. Q 55.71875 40.765625 55.71875 27.296875
  2957. Q 55.71875 13.875 49.015625 6.21875
  2958. Q 42.328125 -1.421875 30.609375 -1.421875
  2959. Q 18.84375 -1.421875 12.171875 6.21875
  2960. Q 5.515625 13.875 5.515625 27.296875
  2961. Q 5.515625 40.765625 12.171875 48.375
  2962. Q 18.84375 56 30.609375 56
  2963. z
  2964. " id="DejaVuSans-111"/>
  2965. <path d="M 45.40625 46.390625
  2966. L 45.40625 75.984375
  2967. L 54.390625 75.984375
  2968. L 54.390625 0
  2969. L 45.40625 0
  2970. L 45.40625 8.203125
  2971. Q 42.578125 3.328125 38.25 0.953125
  2972. Q 33.9375 -1.421875 27.875 -1.421875
  2973. Q 17.96875 -1.421875 11.734375 6.484375
  2974. Q 5.515625 14.40625 5.515625 27.296875
  2975. Q 5.515625 40.1875 11.734375 48.09375
  2976. Q 17.96875 56 27.875 56
  2977. Q 33.9375 56 38.25 53.625
  2978. Q 42.578125 51.265625 45.40625 46.390625
  2979. z
  2980. M 14.796875 27.296875
  2981. Q 14.796875 17.390625 18.875 11.75
  2982. Q 22.953125 6.109375 30.078125 6.109375
  2983. Q 37.203125 6.109375 41.296875 11.75
  2984. Q 45.40625 17.390625 45.40625 27.296875
  2985. Q 45.40625 37.203125 41.296875 42.84375
  2986. Q 37.203125 48.484375 30.078125 48.484375
  2987. Q 22.953125 48.484375 18.875 42.84375
  2988. Q 14.796875 37.203125 14.796875 27.296875
  2989. z
  2990. " id="DejaVuSans-100"/>
  2991. </defs>
  2992. <g transform="translate(226.829688 16.318125)scale(0.12 -0.12)">
  2993. <use xlink:href="#DejaVuSans-50"/>
  2994. <use x="63.623047" xlink:href="#DejaVuSans-48"/>
  2995. <use x="127.246094" xlink:href="#DejaVuSans-49"/>
  2996. <use x="190.869141" xlink:href="#DejaVuSans-56"/>
  2997. <use x="254.492188" xlink:href="#DejaVuSans-48"/>
  2998. <use x="318.115234" xlink:href="#DejaVuSans-55"/>
  2999. <use x="381.738281" xlink:href="#DejaVuSans-49"/>
  3000. <use x="445.361328" xlink:href="#DejaVuSans-48"/>
  3001. <use x="508.984375" xlink:href="#DejaVuSans-95"/>
  3002. <use x="558.984375" xlink:href="#DejaVuSans-107"/>
  3003. <use x="616.894531" xlink:href="#DejaVuSans-105"/>
  3004. <use x="644.677734" xlink:href="#DejaVuSans-108"/>
  3005. <use x="672.460938" xlink:href="#DejaVuSans-111"/>
  3006. <use x="733.642578" xlink:href="#DejaVuSans-115"/>
  3007. <use x="785.742188" xlink:href="#DejaVuSans-111"/>
  3008. <use x="846.923828" xlink:href="#DejaVuSans-114"/>
  3009. <use x="888.037109" xlink:href="#DejaVuSans-116"/>
  3010. <use x="927.246094" xlink:href="#DejaVuSans-101"/>
  3011. <use x="988.769531" xlink:href="#DejaVuSans-100"/>
  3012. </g>
  3013. <!-- 03_onoffsteps30preframes90contrast1 -->
  3014. <defs>
  3015. <path d="M 37.109375 75.984375
  3016. L 37.109375 68.5
  3017. L 28.515625 68.5
  3018. Q 23.6875 68.5 21.796875 66.546875
  3019. Q 19.921875 64.59375 19.921875 59.515625
  3020. L 19.921875 54.6875
  3021. L 34.71875 54.6875
  3022. L 34.71875 47.703125
  3023. L 19.921875 47.703125
  3024. L 19.921875 0
  3025. L 10.890625 0
  3026. L 10.890625 47.703125
  3027. L 2.296875 47.703125
  3028. L 2.296875 54.6875
  3029. L 10.890625 54.6875
  3030. L 10.890625 58.5
  3031. Q 10.890625 67.625 15.140625 71.796875
  3032. Q 19.390625 75.984375 28.609375 75.984375
  3033. z
  3034. " id="DejaVuSans-102"/>
  3035. <path d="M 10.984375 1.515625
  3036. L 10.984375 10.5
  3037. Q 14.703125 8.734375 18.5 7.8125
  3038. Q 22.3125 6.890625 25.984375 6.890625
  3039. Q 35.75 6.890625 40.890625 13.453125
  3040. Q 46.046875 20.015625 46.78125 33.40625
  3041. Q 43.953125 29.203125 39.59375 26.953125
  3042. Q 35.25 24.703125 29.984375 24.703125
  3043. Q 19.046875 24.703125 12.671875 31.3125
  3044. Q 6.296875 37.9375 6.296875 49.421875
  3045. Q 6.296875 60.640625 12.9375 67.421875
  3046. Q 19.578125 74.21875 30.609375 74.21875
  3047. Q 43.265625 74.21875 49.921875 64.515625
  3048. Q 56.59375 54.828125 56.59375 36.375
  3049. Q 56.59375 19.140625 48.40625 8.859375
  3050. Q 40.234375 -1.421875 26.421875 -1.421875
  3051. Q 22.703125 -1.421875 18.890625 -0.6875
  3052. Q 15.09375 0.046875 10.984375 1.515625
  3053. z
  3054. M 30.609375 32.421875
  3055. Q 37.25 32.421875 41.125 36.953125
  3056. Q 45.015625 41.5 45.015625 49.421875
  3057. Q 45.015625 57.28125 41.125 61.84375
  3058. Q 37.25 66.40625 30.609375 66.40625
  3059. Q 23.96875 66.40625 20.09375 61.84375
  3060. Q 16.21875 57.28125 16.21875 49.421875
  3061. Q 16.21875 41.5 20.09375 36.953125
  3062. Q 23.96875 32.421875 30.609375 32.421875
  3063. z
  3064. " id="DejaVuSans-57"/>
  3065. <path d="M 48.78125 52.59375
  3066. L 48.78125 44.1875
  3067. Q 44.96875 46.296875 41.140625 47.34375
  3068. Q 37.3125 48.390625 33.40625 48.390625
  3069. Q 24.65625 48.390625 19.8125 42.84375
  3070. Q 14.984375 37.3125 14.984375 27.296875
  3071. Q 14.984375 17.28125 19.8125 11.734375
  3072. Q 24.65625 6.203125 33.40625 6.203125
  3073. Q 37.3125 6.203125 41.140625 7.25
  3074. Q 44.96875 8.296875 48.78125 10.40625
  3075. L 48.78125 2.09375
  3076. Q 45.015625 0.34375 40.984375 -0.53125
  3077. Q 36.96875 -1.421875 32.421875 -1.421875
  3078. Q 20.0625 -1.421875 12.78125 6.34375
  3079. Q 5.515625 14.109375 5.515625 27.296875
  3080. Q 5.515625 40.671875 12.859375 48.328125
  3081. Q 20.21875 56 33.015625 56
  3082. Q 37.15625 56 41.109375 55.140625
  3083. Q 45.0625 54.296875 48.78125 52.59375
  3084. z
  3085. " id="DejaVuSans-99"/>
  3086. </defs>
  3087. <g transform="translate(173.14 30.08925)scale(0.12 -0.12)">
  3088. <use xlink:href="#DejaVuSans-48"/>
  3089. <use x="63.623047" xlink:href="#DejaVuSans-51"/>
  3090. <use x="127.246094" xlink:href="#DejaVuSans-95"/>
  3091. <use x="177.246094" xlink:href="#DejaVuSans-111"/>
  3092. <use x="238.427734" xlink:href="#DejaVuSans-110"/>
  3093. <use x="301.806641" xlink:href="#DejaVuSans-111"/>
  3094. <use x="362.988281" xlink:href="#DejaVuSans-102"/>
  3095. <use x="398.193359" xlink:href="#DejaVuSans-102"/>
  3096. <use x="433.398438" xlink:href="#DejaVuSans-115"/>
  3097. <use x="485.498047" xlink:href="#DejaVuSans-116"/>
  3098. <use x="524.707031" xlink:href="#DejaVuSans-101"/>
  3099. <use x="586.230469" xlink:href="#DejaVuSans-112"/>
  3100. <use x="649.707031" xlink:href="#DejaVuSans-115"/>
  3101. <use x="701.806641" xlink:href="#DejaVuSans-51"/>
  3102. <use x="765.429688" xlink:href="#DejaVuSans-48"/>
  3103. <use x="829.052734" xlink:href="#DejaVuSans-112"/>
  3104. <use x="892.529297" xlink:href="#DejaVuSans-114"/>
  3105. <use x="933.611328" xlink:href="#DejaVuSans-101"/>
  3106. <use x="995.134766" xlink:href="#DejaVuSans-102"/>
  3107. <use x="1030.339844" xlink:href="#DejaVuSans-114"/>
  3108. <use x="1071.453125" xlink:href="#DejaVuSans-97"/>
  3109. <use x="1132.732422" xlink:href="#DejaVuSans-109"/>
  3110. <use x="1230.144531" xlink:href="#DejaVuSans-101"/>
  3111. <use x="1291.667969" xlink:href="#DejaVuSans-115"/>
  3112. <use x="1343.767578" xlink:href="#DejaVuSans-57"/>
  3113. <use x="1407.390625" xlink:href="#DejaVuSans-48"/>
  3114. <use x="1471.013672" xlink:href="#DejaVuSans-99"/>
  3115. <use x="1525.994141" xlink:href="#DejaVuSans-111"/>
  3116. <use x="1587.175781" xlink:href="#DejaVuSans-110"/>
  3117. <use x="1650.554688" xlink:href="#DejaVuSans-116"/>
  3118. <use x="1689.763672" xlink:href="#DejaVuSans-114"/>
  3119. <use x="1730.876953" xlink:href="#DejaVuSans-97"/>
  3120. <use x="1792.15625" xlink:href="#DejaVuSans-115"/>
  3121. <use x="1844.255859" xlink:href="#DejaVuSans-116"/>
  3122. <use x="1883.464844" xlink:href="#DejaVuSans-49"/>
  3123. </g>
  3124. <!-- 05001 Rating: 2 -->
  3125. <defs>
  3126. <path d="M 44.390625 34.1875
  3127. Q 47.5625 33.109375 50.5625 29.59375
  3128. Q 53.5625 26.078125 56.59375 19.921875
  3129. L 66.609375 0
  3130. L 56 0
  3131. L 46.6875 18.703125
  3132. Q 43.0625 26.03125 39.671875 28.421875
  3133. Q 36.28125 30.8125 30.421875 30.8125
  3134. L 19.671875 30.8125
  3135. L 19.671875 0
  3136. L 9.8125 0
  3137. L 9.8125 72.90625
  3138. L 32.078125 72.90625
  3139. Q 44.578125 72.90625 50.734375 67.671875
  3140. Q 56.890625 62.453125 56.890625 51.90625
  3141. Q 56.890625 45.015625 53.6875 40.46875
  3142. Q 50.484375 35.9375 44.390625 34.1875
  3143. z
  3144. M 19.671875 64.796875
  3145. L 19.671875 38.921875
  3146. L 32.078125 38.921875
  3147. Q 39.203125 38.921875 42.84375 42.21875
  3148. Q 46.484375 45.515625 46.484375 51.90625
  3149. Q 46.484375 58.296875 42.84375 61.546875
  3150. Q 39.203125 64.796875 32.078125 64.796875
  3151. z
  3152. " id="DejaVuSans-82"/>
  3153. </defs>
  3154. <g transform="translate(241.750938 43.860375)scale(0.12 -0.12)">
  3155. <use xlink:href="#DejaVuSans-48"/>
  3156. <use x="63.623047" xlink:href="#DejaVuSans-53"/>
  3157. <use x="127.246094" xlink:href="#DejaVuSans-48"/>
  3158. <use x="190.869141" xlink:href="#DejaVuSans-48"/>
  3159. <use x="254.492188" xlink:href="#DejaVuSans-49"/>
  3160. <use x="318.115234" xlink:href="#DejaVuSans-32"/>
  3161. <use x="349.902344" xlink:href="#DejaVuSans-82"/>
  3162. <use x="419.353516" xlink:href="#DejaVuSans-97"/>
  3163. <use x="480.632812" xlink:href="#DejaVuSans-116"/>
  3164. <use x="519.841797" xlink:href="#DejaVuSans-105"/>
  3165. <use x="547.625" xlink:href="#DejaVuSans-110"/>
  3166. <use x="611.003906" xlink:href="#DejaVuSans-103"/>
  3167. <use x="674.480469" xlink:href="#DejaVuSans-58"/>
  3168. <use x="708.171875" xlink:href="#DejaVuSans-32"/>
  3169. <use x="739.958984" xlink:href="#DejaVuSans-50"/>
  3170. </g>
  3171. <!-- -->
  3172. <g transform="translate(289.965625 57.29775)scale(0.12 -0.12)"/>
  3173. </g>
  3174. </g>
  3175. <defs>
  3176. <clipPath id="p94abdec1fa">
  3177. <rect height="222.381818" width="502.2" x="46.965625" y="72"/>
  3178. </clipPath>
  3179. <clipPath id="pfd9880347f">
  3180. <rect height="222.381818" width="502.2" x="46.965625" y="338.858182"/>
  3181. </clipPath>
  3182. </defs>
  3183. </svg>