06001.svg 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471
  1. <?xml version="1.0" encoding="utf-8" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
  3. "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
  4. <!-- Created with matplotlib (http://matplotlib.org/) -->
  5. <svg height="598.79625pt" version="1.1" viewBox="0 0 564.317188 598.79625" width="564.317188pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  6. <defs>
  7. <style type="text/css">
  8. *{stroke-linecap:butt;stroke-linejoin:round;}
  9. </style>
  10. </defs>
  11. <g id="figure_1">
  12. <g id="patch_1">
  13. <path d="M 0 598.79625
  14. L 564.317188 598.79625
  15. L 564.317188 0
  16. L 0 0
  17. z
  18. " style="fill:#ffffff;"/>
  19. </g>
  20. <g id="axes_1">
  21. <g id="patch_2">
  22. <path d="M 46.965625 294.381818
  23. L 549.165625 294.381818
  24. L 549.165625 72
  25. L 46.965625 72
  26. z
  27. " style="fill:#ffffff;"/>
  28. </g>
  29. <g id="patch_3">
  30. <path clip-path="url(#p37420677c3)" d="M 46.965625 72
  31. L 235.290625 72
  32. L 235.290625 294.381818
  33. L 46.965625 294.381818
  34. z
  35. " style="opacity:0.5;"/>
  36. </g>
  37. <g id="patch_4">
  38. <path clip-path="url(#p37420677c3)" d="M 235.290625 72
  39. L 298.065625 72
  40. L 298.065625 294.381818
  41. L 235.290625 294.381818
  42. z
  43. " style="fill:none;opacity:0;"/>
  44. </g>
  45. <g id="patch_5">
  46. <path clip-path="url(#p37420677c3)" d="M 298.065625 72
  47. L 486.390625 72
  48. L 486.390625 294.381818
  49. L 298.065625 294.381818
  50. z
  51. " style="opacity:0.5;"/>
  52. </g>
  53. <g id="patch_6">
  54. <path clip-path="url(#p37420677c3)" d="M 486.390625 72
  55. L 549.165625 72
  56. L 549.165625 294.381818
  57. L 486.390625 294.381818
  58. z
  59. "/>
  60. </g>
  61. <g id="matplotlib.axis_1"/>
  62. <g id="matplotlib.axis_2">
  63. <g id="ytick_1">
  64. <g id="line2d_1">
  65. <defs>
  66. <path d="M 0 0
  67. L -3.5 0
  68. " id="m584ddde25d" 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="#m584ddde25d" y="74.443756"/>
  72. </g>
  73. </g>
  74. <g id="text_1">
  75. <!-- 0 -->
  76. <defs>
  77. <path d="M 31.78125 66.40625
  78. Q 24.171875 66.40625 20.328125 58.90625
  79. Q 16.5 51.421875 16.5 36.375
  80. Q 16.5 21.390625 20.328125 13.890625
  81. Q 24.171875 6.390625 31.78125 6.390625
  82. Q 39.453125 6.390625 43.28125 13.890625
  83. Q 47.125 21.390625 47.125 36.375
  84. Q 47.125 51.421875 43.28125 58.90625
  85. Q 39.453125 66.40625 31.78125 66.40625
  86. z
  87. M 31.78125 74.21875
  88. Q 44.046875 74.21875 50.515625 64.515625
  89. Q 56.984375 54.828125 56.984375 36.375
  90. Q 56.984375 17.96875 50.515625 8.265625
  91. Q 44.046875 -1.421875 31.78125 -1.421875
  92. Q 19.53125 -1.421875 13.0625 8.265625
  93. Q 6.59375 17.96875 6.59375 36.375
  94. Q 6.59375 54.828125 13.0625 64.515625
  95. Q 19.53125 74.21875 31.78125 74.21875
  96. z
  97. " id="DejaVuSans-30"/>
  98. </defs>
  99. <g transform="translate(33.603125 78.242975)scale(0.1 -0.1)">
  100. <use xlink:href="#DejaVuSans-30"/>
  101. </g>
  102. </g>
  103. </g>
  104. <g id="ytick_2">
  105. <g id="line2d_2">
  106. <g>
  107. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m584ddde25d" y="123.318881"/>
  108. </g>
  109. </g>
  110. <g id="text_2">
  111. <!-- 20 -->
  112. <defs>
  113. <path d="M 19.1875 8.296875
  114. L 53.609375 8.296875
  115. L 53.609375 0
  116. L 7.328125 0
  117. L 7.328125 8.296875
  118. Q 12.9375 14.109375 22.625 23.890625
  119. Q 32.328125 33.6875 34.8125 36.53125
  120. Q 39.546875 41.84375 41.421875 45.53125
  121. Q 43.3125 49.21875 43.3125 52.78125
  122. Q 43.3125 58.59375 39.234375 62.25
  123. Q 35.15625 65.921875 28.609375 65.921875
  124. Q 23.96875 65.921875 18.8125 64.3125
  125. Q 13.671875 62.703125 7.8125 59.421875
  126. L 7.8125 69.390625
  127. Q 13.765625 71.78125 18.9375 73
  128. Q 24.125 74.21875 28.421875 74.21875
  129. Q 39.75 74.21875 46.484375 68.546875
  130. Q 53.21875 62.890625 53.21875 53.421875
  131. Q 53.21875 48.921875 51.53125 44.890625
  132. Q 49.859375 40.875 45.40625 35.40625
  133. Q 44.1875 33.984375 37.640625 27.21875
  134. Q 31.109375 20.453125 19.1875 8.296875
  135. z
  136. " id="DejaVuSans-32"/>
  137. </defs>
  138. <g transform="translate(27.240625 127.1181)scale(0.1 -0.1)">
  139. <use xlink:href="#DejaVuSans-32"/>
  140. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  141. </g>
  142. </g>
  143. </g>
  144. <g id="ytick_3">
  145. <g id="line2d_3">
  146. <g>
  147. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m584ddde25d" y="172.194006"/>
  148. </g>
  149. </g>
  150. <g id="text_3">
  151. <!-- 40 -->
  152. <defs>
  153. <path d="M 37.796875 64.3125
  154. L 12.890625 25.390625
  155. L 37.796875 25.390625
  156. z
  157. M 35.203125 72.90625
  158. L 47.609375 72.90625
  159. L 47.609375 25.390625
  160. L 58.015625 25.390625
  161. L 58.015625 17.1875
  162. L 47.609375 17.1875
  163. L 47.609375 0
  164. L 37.796875 0
  165. L 37.796875 17.1875
  166. L 4.890625 17.1875
  167. L 4.890625 26.703125
  168. z
  169. " id="DejaVuSans-34"/>
  170. </defs>
  171. <g transform="translate(27.240625 175.993225)scale(0.1 -0.1)">
  172. <use xlink:href="#DejaVuSans-34"/>
  173. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  174. </g>
  175. </g>
  176. </g>
  177. <g id="ytick_4">
  178. <g id="line2d_4">
  179. <g>
  180. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m584ddde25d" y="221.069131"/>
  181. </g>
  182. </g>
  183. <g id="text_4">
  184. <!-- 60 -->
  185. <defs>
  186. <path d="M 33.015625 40.375
  187. Q 26.375 40.375 22.484375 35.828125
  188. Q 18.609375 31.296875 18.609375 23.390625
  189. Q 18.609375 15.53125 22.484375 10.953125
  190. Q 26.375 6.390625 33.015625 6.390625
  191. Q 39.65625 6.390625 43.53125 10.953125
  192. Q 47.40625 15.53125 47.40625 23.390625
  193. Q 47.40625 31.296875 43.53125 35.828125
  194. Q 39.65625 40.375 33.015625 40.375
  195. z
  196. M 52.59375 71.296875
  197. L 52.59375 62.3125
  198. Q 48.875 64.0625 45.09375 64.984375
  199. Q 41.3125 65.921875 37.59375 65.921875
  200. Q 27.828125 65.921875 22.671875 59.328125
  201. Q 17.53125 52.734375 16.796875 39.40625
  202. Q 19.671875 43.65625 24.015625 45.921875
  203. Q 28.375 48.1875 33.59375 48.1875
  204. Q 44.578125 48.1875 50.953125 41.515625
  205. Q 57.328125 34.859375 57.328125 23.390625
  206. Q 57.328125 12.15625 50.6875 5.359375
  207. Q 44.046875 -1.421875 33.015625 -1.421875
  208. Q 20.359375 -1.421875 13.671875 8.265625
  209. Q 6.984375 17.96875 6.984375 36.375
  210. Q 6.984375 53.65625 15.1875 63.9375
  211. Q 23.390625 74.21875 37.203125 74.21875
  212. Q 40.921875 74.21875 44.703125 73.484375
  213. Q 48.484375 72.75 52.59375 71.296875
  214. z
  215. " id="DejaVuSans-36"/>
  216. </defs>
  217. <g transform="translate(27.240625 224.86835)scale(0.1 -0.1)">
  218. <use xlink:href="#DejaVuSans-36"/>
  219. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  220. </g>
  221. </g>
  222. </g>
  223. <g id="ytick_5">
  224. <g id="line2d_5">
  225. <g>
  226. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m584ddde25d" y="269.944256"/>
  227. </g>
  228. </g>
  229. <g id="text_5">
  230. <!-- 80 -->
  231. <defs>
  232. <path d="M 31.78125 34.625
  233. Q 24.75 34.625 20.71875 30.859375
  234. Q 16.703125 27.09375 16.703125 20.515625
  235. Q 16.703125 13.921875 20.71875 10.15625
  236. Q 24.75 6.390625 31.78125 6.390625
  237. Q 38.8125 6.390625 42.859375 10.171875
  238. Q 46.921875 13.96875 46.921875 20.515625
  239. Q 46.921875 27.09375 42.890625 30.859375
  240. Q 38.875 34.625 31.78125 34.625
  241. z
  242. M 21.921875 38.8125
  243. Q 15.578125 40.375 12.03125 44.71875
  244. Q 8.5 49.078125 8.5 55.328125
  245. Q 8.5 64.0625 14.71875 69.140625
  246. Q 20.953125 74.21875 31.78125 74.21875
  247. Q 42.671875 74.21875 48.875 69.140625
  248. Q 55.078125 64.0625 55.078125 55.328125
  249. Q 55.078125 49.078125 51.53125 44.71875
  250. Q 48 40.375 41.703125 38.8125
  251. Q 48.828125 37.15625 52.796875 32.3125
  252. Q 56.78125 27.484375 56.78125 20.515625
  253. Q 56.78125 9.90625 50.3125 4.234375
  254. Q 43.84375 -1.421875 31.78125 -1.421875
  255. Q 19.734375 -1.421875 13.25 4.234375
  256. Q 6.78125 9.90625 6.78125 20.515625
  257. Q 6.78125 27.484375 10.78125 32.3125
  258. Q 14.796875 37.15625 21.921875 38.8125
  259. z
  260. M 18.3125 54.390625
  261. Q 18.3125 48.734375 21.84375 45.5625
  262. Q 25.390625 42.390625 31.78125 42.390625
  263. Q 38.140625 42.390625 41.71875 45.5625
  264. Q 45.3125 48.734375 45.3125 54.390625
  265. Q 45.3125 60.0625 41.71875 63.234375
  266. Q 38.140625 66.40625 31.78125 66.40625
  267. Q 25.390625 66.40625 21.84375 63.234375
  268. Q 18.3125 60.0625 18.3125 54.390625
  269. z
  270. " id="DejaVuSans-38"/>
  271. </defs>
  272. <g transform="translate(27.240625 273.743474)scale(0.1 -0.1)">
  273. <use xlink:href="#DejaVuSans-38"/>
  274. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  275. </g>
  276. </g>
  277. </g>
  278. <g id="text_6">
  279. <!-- Trial -->
  280. <defs>
  281. <path d="M -0.296875 72.90625
  282. L 61.375 72.90625
  283. L 61.375 64.59375
  284. L 35.5 64.59375
  285. L 35.5 0
  286. L 25.59375 0
  287. L 25.59375 64.59375
  288. L -0.296875 64.59375
  289. z
  290. " id="DejaVuSans-54"/>
  291. <path d="M 41.109375 46.296875
  292. Q 39.59375 47.171875 37.8125 47.578125
  293. Q 36.03125 48 33.890625 48
  294. Q 26.265625 48 22.1875 43.046875
  295. Q 18.109375 38.09375 18.109375 28.8125
  296. L 18.109375 0
  297. L 9.078125 0
  298. L 9.078125 54.6875
  299. L 18.109375 54.6875
  300. L 18.109375 46.1875
  301. Q 20.953125 51.171875 25.484375 53.578125
  302. Q 30.03125 56 36.53125 56
  303. Q 37.453125 56 38.578125 55.875
  304. Q 39.703125 55.765625 41.0625 55.515625
  305. z
  306. " id="DejaVuSans-72"/>
  307. <path d="M 9.421875 54.6875
  308. L 18.40625 54.6875
  309. L 18.40625 0
  310. L 9.421875 0
  311. z
  312. M 9.421875 75.984375
  313. L 18.40625 75.984375
  314. L 18.40625 64.59375
  315. L 9.421875 64.59375
  316. z
  317. " id="DejaVuSans-69"/>
  318. <path d="M 34.28125 27.484375
  319. Q 23.390625 27.484375 19.1875 25
  320. Q 14.984375 22.515625 14.984375 16.5
  321. Q 14.984375 11.71875 18.140625 8.90625
  322. Q 21.296875 6.109375 26.703125 6.109375
  323. Q 34.1875 6.109375 38.703125 11.40625
  324. Q 43.21875 16.703125 43.21875 25.484375
  325. L 43.21875 27.484375
  326. z
  327. M 52.203125 31.203125
  328. L 52.203125 0
  329. L 43.21875 0
  330. L 43.21875 8.296875
  331. Q 40.140625 3.328125 35.546875 0.953125
  332. Q 30.953125 -1.421875 24.3125 -1.421875
  333. Q 15.921875 -1.421875 10.953125 3.296875
  334. Q 6 8.015625 6 15.921875
  335. Q 6 25.140625 12.171875 29.828125
  336. Q 18.359375 34.515625 30.609375 34.515625
  337. L 43.21875 34.515625
  338. L 43.21875 35.40625
  339. Q 43.21875 41.609375 39.140625 45
  340. Q 35.0625 48.390625 27.6875 48.390625
  341. Q 23 48.390625 18.546875 47.265625
  342. Q 14.109375 46.140625 10.015625 43.890625
  343. L 10.015625 52.203125
  344. Q 14.9375 54.109375 19.578125 55.046875
  345. Q 24.21875 56 28.609375 56
  346. Q 40.484375 56 46.34375 49.84375
  347. Q 52.203125 43.703125 52.203125 31.203125
  348. z
  349. " id="DejaVuSans-61"/>
  350. <path d="M 9.421875 75.984375
  351. L 18.40625 75.984375
  352. L 18.40625 0
  353. L 9.421875 0
  354. z
  355. " id="DejaVuSans-6c"/>
  356. </defs>
  357. <g transform="translate(21.160938 194.131534)rotate(-90)scale(0.1 -0.1)">
  358. <use xlink:href="#DejaVuSans-54"/>
  359. <use x="60.865234" xlink:href="#DejaVuSans-72"/>
  360. <use x="101.978516" xlink:href="#DejaVuSans-69"/>
  361. <use x="129.761719" xlink:href="#DejaVuSans-61"/>
  362. <use x="191.041016" xlink:href="#DejaVuSans-6c"/>
  363. </g>
  364. </g>
  365. </g>
  366. <g id="EventCollection_1">
  367. <path clip-path="url(#p37420677c3)" d="M 52.811233 75.665634
  368. L 52.811233 73.221878
  369. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  370. <path clip-path="url(#p37420677c3)" d="M 240.051481 75.665634
  371. L 240.051481 73.221878
  372. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  373. <path clip-path="url(#p37420677c3)" d="M 274.040377 75.665634
  374. L 274.040377 73.221878
  375. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  376. <path clip-path="url(#p37420677c3)" d="M 283.511869 75.665634
  377. L 283.511869 73.221878
  378. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  379. <path clip-path="url(#p37420677c3)" d="M 301.430365 75.665634
  380. L 301.430365 73.221878
  381. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  382. <path clip-path="url(#p37420677c3)" d="M 487.239343 75.665634
  383. L 487.239343 73.221878
  384. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  385. <path clip-path="url(#p37420677c3)" d="M 490.317829 75.665634
  386. L 490.317829 73.221878
  387. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  388. </g>
  389. <g id="EventCollection_2">
  390. <path clip-path="url(#p37420677c3)" d="M 52.786123 78.109391
  391. L 52.786123 75.665634
  392. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  393. <path clip-path="url(#p37420677c3)" d="M 240.207163 78.109391
  394. L 240.207163 75.665634
  395. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  396. <path clip-path="url(#p37420677c3)" d="M 301.480585 78.109391
  397. L 301.480585 75.665634
  398. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  399. <path clip-path="url(#p37420677c3)" d="M 487.264453 78.109391
  400. L 487.264453 75.665634
  401. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  402. </g>
  403. <g id="EventCollection_3">
  404. <path clip-path="url(#p37420677c3)" d="M 51.164017 80.553147
  405. L 51.164017 78.109391
  406. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  407. <path clip-path="url(#p37420677c3)" d="M 51.721459 80.553147
  408. L 51.721459 78.109391
  409. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  410. <path clip-path="url(#p37420677c3)" d="M 52.806211 80.553147
  411. L 52.806211 78.109391
  412. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  413. <path clip-path="url(#p37420677c3)" d="M 156.304609 80.553147
  414. L 156.304609 78.109391
  415. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  416. <path clip-path="url(#p37420677c3)" d="M 238.469551 80.553147
  417. L 238.469551 78.109391
  418. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  419. <path clip-path="url(#p37420677c3)" d="M 240.177031 80.553147
  420. L 240.177031 78.109391
  421. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  422. <path clip-path="url(#p37420677c3)" d="M 264.448357 80.553147
  423. L 264.448357 78.109391
  424. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  425. <path clip-path="url(#p37420677c3)" d="M 301.570981 80.553147
  426. L 301.570981 78.109391
  427. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  428. <path clip-path="url(#p37420677c3)" d="M 487.334761 80.553147
  429. L 487.334761 78.109391
  430. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  431. </g>
  432. <g id="EventCollection_4">
  433. <path clip-path="url(#p37420677c3)" d="M 52.138285 82.996903
  434. L 52.138285 80.553147
  435. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  436. <path clip-path="url(#p37420677c3)" d="M 52.796167 82.996903
  437. L 52.796167 80.553147
  438. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  439. <path clip-path="url(#p37420677c3)" d="M 102.338197 82.996903
  440. L 102.338197 80.553147
  441. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  442. <path clip-path="url(#p37420677c3)" d="M 301.621201 82.996903
  443. L 301.621201 80.553147
  444. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  445. <path clip-path="url(#p37420677c3)" d="M 433.760065 82.996903
  446. L 433.760065 80.553147
  447. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  448. <path clip-path="url(#p37420677c3)" d="M 487.314673 82.996903
  449. L 487.314673 80.553147
  450. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  451. <path clip-path="url(#p37420677c3)" d="M 489.268231 82.996903
  452. L 489.268231 80.553147
  453. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  454. </g>
  455. <g id="EventCollection_5">
  456. <path clip-path="url(#p37420677c3)" d="M 51.209215 85.440659
  457. L 51.209215 82.996903
  458. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  459. <path clip-path="url(#p37420677c3)" d="M 52.766035 85.440659
  460. L 52.766035 82.996903
  461. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  462. <path clip-path="url(#p37420677c3)" d="M 240.111745 85.440659
  463. L 240.111745 82.996903
  464. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  465. <path clip-path="url(#p37420677c3)" d="M 301.550893 85.440659
  466. L 301.550893 82.996903
  467. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  468. <path clip-path="url(#p37420677c3)" d="M 333.058921 85.440659
  469. L 333.058921 82.996903
  470. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  471. <path clip-path="url(#p37420677c3)" d="M 487.359871 85.440659
  472. L 487.359871 82.996903
  473. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  474. </g>
  475. <g id="EventCollection_6">
  476. <path clip-path="url(#p37420677c3)" d="M 51.877141 87.884416
  477. L 51.877141 85.440659
  478. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  479. <path clip-path="url(#p37420677c3)" d="M 52.861453 87.884416
  480. L 52.861453 85.440659
  481. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  482. <path clip-path="url(#p37420677c3)" d="M 87.668935 87.884416
  483. L 87.668935 85.440659
  484. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  485. <path clip-path="url(#p37420677c3)" d="M 240.166987 87.884416
  486. L 240.166987 85.440659
  487. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  488. <path clip-path="url(#p37420677c3)" d="M 301.631245 87.884416
  489. L 301.631245 85.440659
  490. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  491. <path clip-path="url(#p37420677c3)" d="M 370.688767 87.884416
  492. L 370.688767 85.440659
  493. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  494. <path clip-path="url(#p37420677c3)" d="M 486.194767 87.884416
  495. L 486.194767 85.440659
  496. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  497. <path clip-path="url(#p37420677c3)" d="M 487.309651 87.884416
  498. L 487.309651 85.440659
  499. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  500. <path clip-path="url(#p37420677c3)" d="M 489.238099 87.884416
  501. L 489.238099 85.440659
  502. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  503. </g>
  504. <g id="EventCollection_7">
  505. <path clip-path="url(#p37420677c3)" d="M 52.771057 90.328172
  506. L 52.771057 87.884416
  507. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  508. <path clip-path="url(#p37420677c3)" d="M 112.859287 90.328172
  509. L 112.859287 87.884416
  510. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  511. <path clip-path="url(#p37420677c3)" d="M 240.136855 90.328172
  512. L 240.136855 87.884416
  513. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  514. <path clip-path="url(#p37420677c3)" d="M 301.540849 90.328172
  515. L 301.540849 87.884416
  516. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  517. <path clip-path="url(#p37420677c3)" d="M 307.798261 90.328172
  518. L 307.798261 87.884416
  519. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  520. <path clip-path="url(#p37420677c3)" d="M 487.214233 90.328172
  521. L 487.214233 87.884416
  522. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  523. <path clip-path="url(#p37420677c3)" d="M 488.755987 90.328172
  524. L 488.755987 87.884416
  525. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  526. </g>
  527. <g id="EventCollection_8">
  528. <path clip-path="url(#p37420677c3)" d="M 52.801189 92.771928
  529. L 52.801189 90.328172
  530. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  531. <path clip-path="url(#p37420677c3)" d="M 69.655021 92.771928
  532. L 69.655021 90.328172
  533. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  534. <path clip-path="url(#p37420677c3)" d="M 240.161965 92.771928
  535. L 240.161965 90.328172
  536. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  537. <path clip-path="url(#p37420677c3)" d="M 301.149133 92.771928
  538. L 301.149133 90.328172
  539. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  540. <path clip-path="url(#p37420677c3)" d="M 301.616179 92.771928
  541. L 301.616179 90.328172
  542. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  543. <path clip-path="url(#p37420677c3)" d="M 487.339783 92.771928
  544. L 487.339783 90.328172
  545. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  546. </g>
  547. <g id="EventCollection_9">
  548. <path clip-path="url(#p37420677c3)" d="M 52.801189 95.215684
  549. L 52.801189 92.771928
  550. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  551. <path clip-path="url(#p37420677c3)" d="M 81.461743 95.215684
  552. L 81.461743 92.771928
  553. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  554. <path clip-path="url(#p37420677c3)" d="M 240.177031 95.215684
  555. L 240.177031 92.771928
  556. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  557. <path clip-path="url(#p37420677c3)" d="M 301.696531 95.215684
  558. L 301.696531 92.771928
  559. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  560. <path clip-path="url(#p37420677c3)" d="M 302.344369 95.215684
  561. L 302.344369 92.771928
  562. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  563. <path clip-path="url(#p37420677c3)" d="M 487.259431 95.215684
  564. L 487.259431 92.771928
  565. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  566. </g>
  567. <g id="EventCollection_10">
  568. <path clip-path="url(#p37420677c3)" d="M 52.776079 97.659441
  569. L 52.776079 95.215684
  570. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  571. <path clip-path="url(#p37420677c3)" d="M 109.805911 97.659441
  572. L 109.805911 95.215684
  573. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  574. <path clip-path="url(#p37420677c3)" d="M 240.242317 97.659441
  575. L 240.242317 95.215684
  576. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  577. <path clip-path="url(#p37420677c3)" d="M 300.998473 97.659441
  578. L 300.998473 95.215684
  579. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  580. <path clip-path="url(#p37420677c3)" d="M 301.611157 97.659441
  581. L 301.611157 95.215684
  582. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  583. <path clip-path="url(#p37420677c3)" d="M 487.269475 97.659441
  584. L 487.269475 95.215684
  585. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  586. <path clip-path="url(#p37420677c3)" d="M 500.291521 97.659441
  587. L 500.291521 95.215684
  588. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  589. </g>
  590. <g id="EventCollection_11">
  591. <path clip-path="url(#p37420677c3)" d="M 51.756613 100.103197
  592. L 51.756613 97.659441
  593. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  594. <path clip-path="url(#p37420677c3)" d="M 52.806211 100.103197
  595. L 52.806211 97.659441
  596. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  597. <path clip-path="url(#p37420677c3)" d="M 77.850925 100.103197
  598. L 77.850925 97.659441
  599. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  600. <path clip-path="url(#p37420677c3)" d="M 238.755805 100.103197
  601. L 238.755805 97.659441
  602. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  603. <path clip-path="url(#p37420677c3)" d="M 240.156943 100.103197
  604. L 240.156943 97.659441
  605. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  606. <path clip-path="url(#p37420677c3)" d="M 301.696531 100.103197
  607. L 301.696531 97.659441
  608. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  609. <path clip-path="url(#p37420677c3)" d="M 487.294585 100.103197
  610. L 487.294585 97.659441
  611. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  612. <path clip-path="url(#p37420677c3)" d="M 488.595283 100.103197
  613. L 488.595283 97.659441
  614. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  615. <path clip-path="url(#p37420677c3)" d="M 489.127615 100.103197
  616. L 489.127615 97.659441
  617. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  618. </g>
  619. <g id="EventCollection_12">
  620. <path clip-path="url(#p37420677c3)" d="M 51.952471 102.546953
  621. L 51.952471 100.103197
  622. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  623. <path clip-path="url(#p37420677c3)" d="M 238.790959 102.546953
  624. L 238.790959 100.103197
  625. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  626. <path clip-path="url(#p37420677c3)" d="M 239.574391 102.546953
  627. L 239.574391 100.103197
  628. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  629. <path clip-path="url(#p37420677c3)" d="M 301.751773 102.546953
  630. L 301.751773 100.103197
  631. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  632. <path clip-path="url(#p37420677c3)" d="M 487.354849 102.546953
  633. L 487.354849 100.103197
  634. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  635. <path clip-path="url(#p37420677c3)" d="M 488.655547 102.546953
  636. L 488.655547 100.103197
  637. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  638. <path clip-path="url(#p37420677c3)" d="M 490.850161 102.546953
  639. L 490.850161 100.103197
  640. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  641. </g>
  642. <g id="EventCollection_13">
  643. <path clip-path="url(#p37420677c3)" d="M 52.755991 104.990709
  644. L 52.755991 102.546953
  645. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  646. <path clip-path="url(#p37420677c3)" d="M 222.198271 104.990709
  647. L 222.198271 102.546953
  648. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  649. <path clip-path="url(#p37420677c3)" d="M 266.803675 104.990709
  650. L 266.803675 102.546953
  651. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  652. <path clip-path="url(#p37420677c3)" d="M 301.746751 104.990709
  653. L 301.746751 102.546953
  654. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  655. <path clip-path="url(#p37420677c3)" d="M 487.239343 104.990709
  656. L 487.239343 102.546953
  657. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  658. <path clip-path="url(#p37420677c3)" d="M 488.298985 104.990709
  659. L 488.298985 102.546953
  660. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  661. <path clip-path="url(#p37420677c3)" d="M 492.753499 104.990709
  662. L 492.753499 102.546953
  663. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  664. </g>
  665. <g id="EventCollection_14">
  666. <path clip-path="url(#p37420677c3)" d="M 52.811233 107.434466
  667. L 52.811233 104.990709
  668. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  669. <path clip-path="url(#p37420677c3)" d="M 302.354413 107.434466
  670. L 302.354413 104.990709
  671. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  672. <path clip-path="url(#p37420677c3)" d="M 490.182235 107.434466
  673. L 490.182235 104.990709
  674. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  675. <path clip-path="url(#p37420677c3)" d="M 492.929269 107.434466
  676. L 492.929269 104.990709
  677. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  678. </g>
  679. <g id="EventCollection_15">
  680. <path clip-path="url(#p37420677c3)" d="M 52.334143 109.878222
  681. L 52.334143 107.434466
  682. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  683. <path clip-path="url(#p37420677c3)" d="M 52.801189 109.878222
  684. L 52.801189 107.434466
  685. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  686. <path clip-path="url(#p37420677c3)" d="M 98.802709 109.878222
  687. L 98.802709 107.434466
  688. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  689. <path clip-path="url(#p37420677c3)" d="M 240.227251 109.878222
  690. L 240.227251 107.434466
  691. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  692. <path clip-path="url(#p37420677c3)" d="M 487.304629 109.878222
  693. L 487.304629 107.434466
  694. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  695. </g>
  696. <g id="EventCollection_16">
  697. <path clip-path="url(#p37420677c3)" d="M 52.821277 112.321978
  698. L 52.821277 109.878222
  699. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  700. <path clip-path="url(#p37420677c3)" d="M 238.273693 112.321978
  701. L 238.273693 109.878222
  702. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  703. <path clip-path="url(#p37420677c3)" d="M 240.131833 112.321978
  704. L 240.131833 109.878222
  705. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  706. <path clip-path="url(#p37420677c3)" d="M 301.776883 112.321978
  707. L 301.776883 109.878222
  708. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  709. <path clip-path="url(#p37420677c3)" d="M 487.309651 112.321978
  710. L 487.309651 109.878222
  711. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  712. <path clip-path="url(#p37420677c3)" d="M 490.317829 112.321978
  713. L 490.317829 109.878222
  714. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  715. </g>
  716. <g id="EventCollection_17">
  717. <path clip-path="url(#p37420677c3)" d="M 52.735903 114.765734
  718. L 52.735903 112.321978
  719. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  720. <path clip-path="url(#p37420677c3)" d="M 240.166987 114.765734
  721. L 240.166987 112.321978
  722. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  723. <path clip-path="url(#p37420677c3)" d="M 301.776883 114.765734
  724. L 301.776883 112.321978
  725. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  726. <path clip-path="url(#p37420677c3)" d="M 486.260053 114.765734
  727. L 486.260053 112.321978
  728. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  729. <path clip-path="url(#p37420677c3)" d="M 487.284541 114.765734
  730. L 487.284541 112.321978
  731. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  732. <path clip-path="url(#p37420677c3)" d="M 499.392583 114.765734
  733. L 499.392583 112.321978
  734. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  735. </g>
  736. <g id="EventCollection_18">
  737. <path clip-path="url(#p37420677c3)" d="M 51.826921 117.209491
  738. L 51.826921 114.765734
  739. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  740. <path clip-path="url(#p37420677c3)" d="M 52.776079 117.209491
  741. L 52.776079 114.765734
  742. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  743. <path clip-path="url(#p37420677c3)" d="M 240.242317 117.209491
  744. L 240.242317 114.765734
  745. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  746. <path clip-path="url(#p37420677c3)" d="M 301.746751 117.209491
  747. L 301.746751 114.765734
  748. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  749. <path clip-path="url(#p37420677c3)" d="M 487.053529 117.209491
  750. L 487.053529 114.765734
  751. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  752. <path clip-path="url(#p37420677c3)" d="M 487.354849 117.209491
  753. L 487.354849 114.765734
  754. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  755. <path clip-path="url(#p37420677c3)" d="M 489.052285 117.209491
  756. L 489.052285 114.765734
  757. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  758. </g>
  759. <g id="EventCollection_19">
  760. <path clip-path="url(#p37420677c3)" d="M 52.771057 119.653247
  761. L 52.771057 117.209491
  762. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  763. <path clip-path="url(#p37420677c3)" d="M 95.955235 119.653247
  764. L 95.955235 117.209491
  765. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  766. <path clip-path="url(#p37420677c3)" d="M 240.161965 119.653247
  767. L 240.161965 117.209491
  768. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  769. <path clip-path="url(#p37420677c3)" d="M 301.636267 119.653247
  770. L 301.636267 117.209491
  771. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  772. <path clip-path="url(#p37420677c3)" d="M 487.354849 119.653247
  773. L 487.354849 117.209491
  774. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  775. </g>
  776. <g id="EventCollection_20">
  777. <path clip-path="url(#p37420677c3)" d="M 52.761013 122.097003
  778. L 52.761013 119.653247
  779. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  780. <path clip-path="url(#p37420677c3)" d="M 240.207163 122.097003
  781. L 240.207163 119.653247
  782. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  783. <path clip-path="url(#p37420677c3)" d="M 301.631245 122.097003
  784. L 301.631245 119.653247
  785. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  786. <path clip-path="url(#p37420677c3)" d="M 486.661813 122.097003
  787. L 486.661813 119.653247
  788. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  789. <path clip-path="url(#p37420677c3)" d="M 487.344805 122.097003
  790. L 487.344805 119.653247
  791. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  792. <path clip-path="url(#p37420677c3)" d="M 490.704523 122.097003
  793. L 490.704523 119.653247
  794. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  795. </g>
  796. <g id="EventCollection_21">
  797. <path clip-path="url(#p37420677c3)" d="M 51.791767 124.540759
  798. L 51.791767 122.097003
  799. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  800. <path clip-path="url(#p37420677c3)" d="M 52.007713 124.540759
  801. L 52.007713 122.097003
  802. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  803. <path clip-path="url(#p37420677c3)" d="M 52.248769 124.540759
  804. L 52.248769 122.097003
  805. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  806. <path clip-path="url(#p37420677c3)" d="M 218.205781 124.540759
  807. L 218.205781 122.097003
  808. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  809. <path clip-path="url(#p37420677c3)" d="M 240.151921 124.540759
  810. L 240.151921 122.097003
  811. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  812. <path clip-path="url(#p37420677c3)" d="M 301.807015 124.540759
  813. L 301.807015 122.097003
  814. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  815. <path clip-path="url(#p37420677c3)" d="M 325.892527 124.540759
  816. L 325.892527 122.097003
  817. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  818. <path clip-path="url(#p37420677c3)" d="M 487.329739 124.540759
  819. L 487.329739 122.097003
  820. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  821. <path clip-path="url(#p37420677c3)" d="M 490.553863 124.540759
  822. L 490.553863 122.097003
  823. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  824. <path clip-path="url(#p37420677c3)" d="M 535.802083 124.540759
  825. L 535.802083 122.097003
  826. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  827. </g>
  828. <g id="EventCollection_22">
  829. <path clip-path="url(#p37420677c3)" d="M 51.701371 126.984515
  830. L 51.701371 124.540759
  831. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  832. <path clip-path="url(#p37420677c3)" d="M 52.384363 126.984515
  833. L 52.384363 124.540759
  834. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  835. <path clip-path="url(#p37420677c3)" d="M 52.740925 126.984515
  836. L 52.740925 124.540759
  837. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  838. <path clip-path="url(#p37420677c3)" d="M 93.263443 126.984515
  839. L 93.263443 124.540759
  840. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  841. <path clip-path="url(#p37420677c3)" d="M 299.913721 126.984515
  842. L 299.913721 124.540759
  843. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  844. <path clip-path="url(#p37420677c3)" d="M 301.400233 126.984515
  845. L 301.400233 124.540759
  846. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  847. <path clip-path="url(#p37420677c3)" d="M 301.796971 126.984515
  848. L 301.796971 124.540759
  849. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  850. <path clip-path="url(#p37420677c3)" d="M 473.097391 126.984515
  851. L 473.097391 124.540759
  852. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  853. <path clip-path="url(#p37420677c3)" d="M 486.902869 126.984515
  854. L 486.902869 124.540759
  855. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  856. <path clip-path="url(#p37420677c3)" d="M 487.354849 126.984515
  857. L 487.354849 124.540759
  858. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  859. <path clip-path="url(#p37420677c3)" d="M 490.508665 126.984515
  860. L 490.508665 124.540759
  861. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  862. </g>
  863. <g id="EventCollection_23">
  864. <path clip-path="url(#p37420677c3)" d="M 52.816255 129.428272
  865. L 52.816255 126.984515
  866. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  867. <path clip-path="url(#p37420677c3)" d="M 205.957123 129.428272
  868. L 205.957123 126.984515
  869. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  870. <path clip-path="url(#p37420677c3)" d="M 237.716251 129.428272
  871. L 237.716251 126.984515
  872. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  873. <path clip-path="url(#p37420677c3)" d="M 240.192097 129.428272
  874. L 240.192097 126.984515
  875. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  876. <path clip-path="url(#p37420677c3)" d="M 301.761817 129.428272
  877. L 301.761817 126.984515
  878. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  879. <path clip-path="url(#p37420677c3)" d="M 486.983221 129.428272
  880. L 486.983221 126.984515
  881. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  882. <path clip-path="url(#p37420677c3)" d="M 487.364893 129.428272
  883. L 487.364893 126.984515
  884. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  885. <path clip-path="url(#p37420677c3)" d="M 490.448401 129.428272
  886. L 490.448401 126.984515
  887. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  888. </g>
  889. <g id="EventCollection_24">
  890. <path clip-path="url(#p37420677c3)" d="M 52.776079 131.872028
  891. L 52.776079 129.428272
  892. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  893. <path clip-path="url(#p37420677c3)" d="M 240.267427 131.872028
  894. L 240.267427 129.428272
  895. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  896. <path clip-path="url(#p37420677c3)" d="M 241.301959 131.872028
  897. L 241.301959 129.428272
  898. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  899. <path clip-path="url(#p37420677c3)" d="M 301.726663 131.872028
  900. L 301.726663 129.428272
  901. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  902. <path clip-path="url(#p37420677c3)" d="M 487.324717 131.872028
  903. L 487.324717 129.428272
  904. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  905. <path clip-path="url(#p37420677c3)" d="M 490.644259 131.872028
  906. L 490.644259 129.428272
  907. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  908. </g>
  909. <g id="EventCollection_25">
  910. <path clip-path="url(#p37420677c3)" d="M 51.766657 134.315784
  911. L 51.766657 131.872028
  912. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  913. <path clip-path="url(#p37420677c3)" d="M 52.766035 134.315784
  914. L 52.766035 131.872028
  915. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  916. <path clip-path="url(#p37420677c3)" d="M 106.898173 134.315784
  917. L 106.898173 131.872028
  918. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  919. <path clip-path="url(#p37420677c3)" d="M 238.806025 134.315784
  920. L 238.806025 131.872028
  921. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  922. <path clip-path="url(#p37420677c3)" d="M 240.262405 134.315784
  923. L 240.262405 131.872028
  924. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  925. <path clip-path="url(#p37420677c3)" d="M 487.344805 134.315784
  926. L 487.344805 131.872028
  927. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  928. <path clip-path="url(#p37420677c3)" d="M 490.172191 134.315784
  929. L 490.172191 131.872028
  930. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  931. </g>
  932. <g id="EventCollection_26">
  933. <path clip-path="url(#p37420677c3)" d="M 52.771057 136.75954
  934. L 52.771057 134.315784
  935. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  936. <path clip-path="url(#p37420677c3)" d="M 240.121789 136.75954
  937. L 240.121789 134.315784
  938. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  939. <path clip-path="url(#p37420677c3)" d="M 301.827103 136.75954
  940. L 301.827103 134.315784
  941. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  942. <path clip-path="url(#p37420677c3)" d="M 487.359871 136.75954
  943. L 487.359871 134.315784
  944. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  945. <path clip-path="url(#p37420677c3)" d="M 488.504887 136.75954
  946. L 488.504887 134.315784
  947. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  948. </g>
  949. <g id="EventCollection_27">
  950. <path clip-path="url(#p37420677c3)" d="M 51.947449 139.203297
  951. L 51.947449 136.75954
  952. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  953. <path clip-path="url(#p37420677c3)" d="M 52.806211 139.203297
  954. L 52.806211 136.75954
  955. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  956. <path clip-path="url(#p37420677c3)" d="M 239.217829 139.203297
  957. L 239.217829 136.75954
  958. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  959. <path clip-path="url(#p37420677c3)" d="M 240.247339 139.203297
  960. L 240.247339 136.75954
  961. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  962. <path clip-path="url(#p37420677c3)" d="M 301.786927 139.203297
  963. L 301.786927 136.75954
  964. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  965. <path clip-path="url(#p37420677c3)" d="M 487.319695 139.203297
  966. L 487.319695 136.75954
  967. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  968. </g>
  969. <g id="EventCollection_28">
  970. <path clip-path="url(#p37420677c3)" d="M 50.546311 141.647053
  971. L 50.546311 139.203297
  972. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  973. <path clip-path="url(#p37420677c3)" d="M 52.750969 141.647053
  974. L 52.750969 139.203297
  975. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  976. <path clip-path="url(#p37420677c3)" d="M 240.217207 141.647053
  977. L 240.217207 139.203297
  978. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  979. <path clip-path="url(#p37420677c3)" d="M 266.944291 141.647053
  980. L 266.944291 139.203297
  981. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  982. <path clip-path="url(#p37420677c3)" d="M 301.791949 141.647053
  983. L 301.791949 139.203297
  984. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  985. <path clip-path="url(#p37420677c3)" d="M 487.405069 141.647053
  986. L 487.405069 139.203297
  987. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  988. <path clip-path="url(#p37420677c3)" d="M 489.428935 141.647053
  989. L 489.428935 139.203297
  990. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  991. </g>
  992. <g id="EventCollection_29">
  993. <path clip-path="url(#p37420677c3)" d="M 52.766035 144.090809
  994. L 52.766035 141.647053
  995. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  996. <path clip-path="url(#p37420677c3)" d="M 139.124347 144.090809
  997. L 139.124347 141.647053
  998. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  999. <path clip-path="url(#p37420677c3)" d="M 151.443313 144.090809
  1000. L 151.443313 141.647053
  1001. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1002. <path clip-path="url(#p37420677c3)" d="M 240.247339 144.090809
  1003. L 240.247339 141.647053
  1004. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1005. <path clip-path="url(#p37420677c3)" d="M 301.355035 144.090809
  1006. L 301.355035 141.647053
  1007. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1008. <path clip-path="url(#p37420677c3)" d="M 301.756795 144.090809
  1009. L 301.756795 141.647053
  1010. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1011. <path clip-path="url(#p37420677c3)" d="M 487.410091 144.090809
  1012. L 487.410091 141.647053
  1013. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1014. </g>
  1015. <g id="EventCollection_30">
  1016. <path clip-path="url(#p37420677c3)" d="M 52.786123 146.534565
  1017. L 52.786123 144.090809
  1018. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1019. <path clip-path="url(#p37420677c3)" d="M 239.298181 146.534565
  1020. L 239.298181 144.090809
  1021. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1022. <path clip-path="url(#p37420677c3)" d="M 240.207163 146.534565
  1023. L 240.207163 144.090809
  1024. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1025. <path clip-path="url(#p37420677c3)" d="M 301.822081 146.534565
  1026. L 301.822081 144.090809
  1027. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1028. <path clip-path="url(#p37420677c3)" d="M 487.344805 146.534565
  1029. L 487.344805 144.090809
  1030. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1031. <path clip-path="url(#p37420677c3)" d="M 493.737811 146.534565
  1032. L 493.737811 144.090809
  1033. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1034. </g>
  1035. <g id="EventCollection_31">
  1036. <path clip-path="url(#p37420677c3)" d="M 52.796167 148.978322
  1037. L 52.796167 146.534565
  1038. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1039. <path clip-path="url(#p37420677c3)" d="M 238.102945 148.978322
  1040. L 238.102945 146.534565
  1041. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1042. <path clip-path="url(#p37420677c3)" d="M 240.257383 148.978322
  1043. L 240.257383 146.534565
  1044. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1045. <path clip-path="url(#p37420677c3)" d="M 297.588535 148.978322
  1046. L 297.588535 146.534565
  1047. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1048. <path clip-path="url(#p37420677c3)" d="M 301.867279 148.978322
  1049. L 301.867279 146.534565
  1050. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1051. <path clip-path="url(#p37420677c3)" d="M 302.238907 148.978322
  1052. L 302.238907 146.534565
  1053. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1054. <path clip-path="url(#p37420677c3)" d="M 486.882781 148.978322
  1055. L 486.882781 146.534565
  1056. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1057. <path clip-path="url(#p37420677c3)" d="M 487.359871 148.978322
  1058. L 487.359871 146.534565
  1059. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1060. <path clip-path="url(#p37420677c3)" d="M 493.044775 148.978322
  1061. L 493.044775 146.534565
  1062. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1063. <path clip-path="url(#p37420677c3)" d="M 530.694709 148.978322
  1064. L 530.694709 146.534565
  1065. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1066. </g>
  1067. <g id="EventCollection_32">
  1068. <path clip-path="url(#p37420677c3)" d="M 240.161965 151.422078
  1069. L 240.161965 148.978322
  1070. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1071. <path clip-path="url(#p37420677c3)" d="M 487.354849 151.422078
  1072. L 487.354849 148.978322
  1073. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1074. </g>
  1075. <g id="EventCollection_33">
  1076. <path clip-path="url(#p37420677c3)" d="M 52.524979 153.865834
  1077. L 52.524979 151.422078
  1078. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1079. <path clip-path="url(#p37420677c3)" d="M 52.715815 153.865834
  1080. L 52.715815 151.422078
  1081. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1082. <path clip-path="url(#p37420677c3)" d="M 240.197119 153.865834
  1083. L 240.197119 151.422078
  1084. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1085. <path clip-path="url(#p37420677c3)" d="M 301.882345 153.865834
  1086. L 301.882345 151.422078
  1087. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1088. <path clip-path="url(#p37420677c3)" d="M 479.646079 153.865834
  1089. L 479.646079 151.422078
  1090. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1091. <path clip-path="url(#p37420677c3)" d="M 486.757231 153.865834
  1092. L 486.757231 151.422078
  1093. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1094. <path clip-path="url(#p37420677c3)" d="M 487.379959 153.865834
  1095. L 487.379959 151.422078
  1096. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1097. </g>
  1098. <g id="EventCollection_34">
  1099. <path clip-path="url(#p37420677c3)" d="M 52.806211 156.30959
  1100. L 52.806211 153.865834
  1101. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1102. <path clip-path="url(#p37420677c3)" d="M 66.365611 156.30959
  1103. L 66.365611 153.865834
  1104. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1105. <path clip-path="url(#p37420677c3)" d="M 240.252361 156.30959
  1106. L 240.252361 153.865834
  1107. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1108. <path clip-path="url(#p37420677c3)" d="M 301.776883 156.30959
  1109. L 301.776883 153.865834
  1110. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1111. <path clip-path="url(#p37420677c3)" d="M 487.384981 156.30959
  1112. L 487.384981 153.865834
  1113. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1114. <path clip-path="url(#p37420677c3)" d="M 492.632971 156.30959
  1115. L 492.632971 153.865834
  1116. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1117. </g>
  1118. <g id="EventCollection_35">
  1119. <path clip-path="url(#p37420677c3)" d="M 52.816255 158.753347
  1120. L 52.816255 156.30959
  1121. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1122. <path clip-path="url(#p37420677c3)" d="M 240.227251 158.753347
  1123. L 240.227251 156.30959
  1124. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1125. <path clip-path="url(#p37420677c3)" d="M 301.887367 158.753347
  1126. L 301.887367 156.30959
  1127. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1128. <path clip-path="url(#p37420677c3)" d="M 318.434857 158.753347
  1129. L 318.434857 156.30959
  1130. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1131. <path clip-path="url(#p37420677c3)" d="M 484.115659 158.753347
  1132. L 484.115659 156.30959
  1133. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1134. <path clip-path="url(#p37420677c3)" d="M 491.839495 158.753347
  1135. L 491.839495 156.30959
  1136. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1137. <path clip-path="url(#p37420677c3)" d="M 540.578005 158.753347
  1138. L 540.578005 156.30959
  1139. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1140. </g>
  1141. <g id="EventCollection_36">
  1142. <path clip-path="url(#p37420677c3)" d="M 52.771057 161.197103
  1143. L 52.771057 158.753347
  1144. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1145. <path clip-path="url(#p37420677c3)" d="M 222.404173 161.197103
  1146. L 222.404173 158.753347
  1147. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1148. <path clip-path="url(#p37420677c3)" d="M 239.634655 161.197103
  1149. L 239.634655 158.753347
  1150. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1151. <path clip-path="url(#p37420677c3)" d="M 240.126811 161.197103
  1152. L 240.126811 158.753347
  1153. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1154. <path clip-path="url(#p37420677c3)" d="M 301.801993 161.197103
  1155. L 301.801993 158.753347
  1156. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1157. <path clip-path="url(#p37420677c3)" d="M 487.354849 161.197103
  1158. L 487.354849 158.753347
  1159. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1160. <path clip-path="url(#p37420677c3)" d="M 490.051663 161.197103
  1161. L 490.051663 158.753347
  1162. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1163. </g>
  1164. <g id="EventCollection_37">
  1165. <path clip-path="url(#p37420677c3)" d="M 52.047889 163.640859
  1166. L 52.047889 161.197103
  1167. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1168. <path clip-path="url(#p37420677c3)" d="M 52.811233 163.640859
  1169. L 52.811233 161.197103
  1170. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1171. <path clip-path="url(#p37420677c3)" d="M 159.674371 163.640859
  1172. L 159.674371 161.197103
  1173. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1174. <path clip-path="url(#p37420677c3)" d="M 240.197119 163.640859
  1175. L 240.197119 161.197103
  1176. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1177. <path clip-path="url(#p37420677c3)" d="M 300.877945 163.640859
  1178. L 300.877945 161.197103
  1179. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1180. <path clip-path="url(#p37420677c3)" d="M 301.867279 163.640859
  1181. L 301.867279 161.197103
  1182. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1183. <path clip-path="url(#p37420677c3)" d="M 487.415113 163.640859
  1184. L 487.415113 161.197103
  1185. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1186. </g>
  1187. <g id="EventCollection_38">
  1188. <path clip-path="url(#p37420677c3)" d="M 52.796167 166.084615
  1189. L 52.796167 163.640859
  1190. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1191. <path clip-path="url(#p37420677c3)" d="M 161.376829 166.084615
  1192. L 161.376829 163.640859
  1193. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1194. <path clip-path="url(#p37420677c3)" d="M 239.594479 166.084615
  1195. L 239.594479 163.640859
  1196. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1197. <path clip-path="url(#p37420677c3)" d="M 240.116767 166.084615
  1198. L 240.116767 163.640859
  1199. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1200. <path clip-path="url(#p37420677c3)" d="M 301.862257 166.084615
  1201. L 301.862257 163.640859
  1202. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1203. <path clip-path="url(#p37420677c3)" d="M 487.364893 166.084615
  1204. L 487.364893 163.640859
  1205. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1206. </g>
  1207. <g id="EventCollection_39">
  1208. <path clip-path="url(#p37420677c3)" d="M 52.796167 168.528372
  1209. L 52.796167 166.084615
  1210. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1211. <path clip-path="url(#p37420677c3)" d="M 240.267427 168.528372
  1212. L 240.267427 166.084615
  1213. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1214. <path clip-path="url(#p37420677c3)" d="M 487.038463 168.528372
  1215. L 487.038463 166.084615
  1216. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1217. <path clip-path="url(#p37420677c3)" d="M 487.395025 168.528372
  1218. L 487.395025 166.084615
  1219. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1220. <path clip-path="url(#p37420677c3)" d="M 490.870249 168.528372
  1221. L 490.870249 166.084615
  1222. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1223. </g>
  1224. <g id="EventCollection_40">
  1225. <path clip-path="url(#p37420677c3)" d="M 52.841365 170.972128
  1226. L 52.841365 168.528372
  1227. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1228. <path clip-path="url(#p37420677c3)" d="M 301.867279 170.972128
  1229. L 301.867279 168.528372
  1230. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1231. <path clip-path="url(#p37420677c3)" d="M 487.369915 170.972128
  1232. L 487.369915 168.528372
  1233. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1234. <path clip-path="url(#p37420677c3)" d="M 488.605327 170.972128
  1235. L 488.605327 168.528372
  1236. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1237. </g>
  1238. <g id="EventCollection_41">
  1239. <path clip-path="url(#p37420677c3)" d="M 300.862879 173.415884
  1240. L 300.862879 170.972128
  1241. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1242. <path clip-path="url(#p37420677c3)" d="M 301.756795 173.415884
  1243. L 301.756795 170.972128
  1244. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1245. <path clip-path="url(#p37420677c3)" d="M 347.180785 173.415884
  1246. L 347.180785 170.972128
  1247. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1248. <path clip-path="url(#p37420677c3)" d="M 487.349827 173.415884
  1249. L 487.349827 170.972128
  1250. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1251. <path clip-path="url(#p37420677c3)" d="M 494.676925 173.415884
  1252. L 494.676925 170.972128
  1253. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1254. </g>
  1255. <g id="EventCollection_42">
  1256. <path clip-path="url(#p37420677c3)" d="M 52.479781 175.85964
  1257. L 52.479781 173.415884
  1258. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1259. <path clip-path="url(#p37420677c3)" d="M 52.801189 175.85964
  1260. L 52.801189 173.415884
  1261. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1262. <path clip-path="url(#p37420677c3)" d="M 240.242317 175.85964
  1263. L 240.242317 173.415884
  1264. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1265. <path clip-path="url(#p37420677c3)" d="M 296.870389 175.85964
  1266. L 296.870389 173.415884
  1267. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1268. <path clip-path="url(#p37420677c3)" d="M 301.832125 175.85964
  1269. L 301.832125 173.415884
  1270. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1271. <path clip-path="url(#p37420677c3)" d="M 487.395025 175.85964
  1272. L 487.395025 173.415884
  1273. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1274. <path clip-path="url(#p37420677c3)" d="M 491.447779 175.85964
  1275. L 491.447779 173.415884
  1276. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1277. </g>
  1278. <g id="EventCollection_43">
  1279. <path clip-path="url(#p37420677c3)" d="M 52.811233 178.303397
  1280. L 52.811233 175.85964
  1281. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1282. <path clip-path="url(#p37420677c3)" d="M 240.156943 178.303397
  1283. L 240.156943 175.85964
  1284. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1285. <path clip-path="url(#p37420677c3)" d="M 487.354849 178.303397
  1286. L 487.354849 175.85964
  1287. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1288. <path clip-path="url(#p37420677c3)" d="M 489.348583 178.303397
  1289. L 489.348583 175.85964
  1290. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1291. <path clip-path="url(#p37420677c3)" d="M 491.538175 178.303397
  1292. L 491.538175 175.85964
  1293. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1294. </g>
  1295. <g id="EventCollection_44">
  1296. <path clip-path="url(#p37420677c3)" d="M 52.474759 180.747153
  1297. L 52.474759 178.303397
  1298. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1299. <path clip-path="url(#p37420677c3)" d="M 52.791145 180.747153
  1300. L 52.791145 178.303397
  1301. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1302. <path clip-path="url(#p37420677c3)" d="M 240.232273 180.747153
  1303. L 240.232273 178.303397
  1304. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1305. <path clip-path="url(#p37420677c3)" d="M 264.945535 180.747153
  1306. L 264.945535 178.303397
  1307. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1308. <path clip-path="url(#p37420677c3)" d="M 487.334761 180.747153
  1309. L 487.334761 178.303397
  1310. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1311. <path clip-path="url(#p37420677c3)" d="M 489.223033 180.747153
  1312. L 489.223033 178.303397
  1313. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1314. <path clip-path="url(#p37420677c3)" d="M 490.659325 180.747153
  1315. L 490.659325 178.303397
  1316. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1317. </g>
  1318. <g id="EventCollection_45">
  1319. <path clip-path="url(#p37420677c3)" d="M 52.791145 183.190909
  1320. L 52.791145 180.747153
  1321. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1322. <path clip-path="url(#p37420677c3)" d="M 240.202141 183.190909
  1323. L 240.202141 180.747153
  1324. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1325. <path clip-path="url(#p37420677c3)" d="M 301.791949 183.190909
  1326. L 301.791949 180.747153
  1327. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1328. <path clip-path="url(#p37420677c3)" d="M 487.440223 183.190909
  1329. L 487.440223 180.747153
  1330. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1331. <path clip-path="url(#p37420677c3)" d="M 489.308407 183.190909
  1332. L 489.308407 180.747153
  1333. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1334. <path clip-path="url(#p37420677c3)" d="M 494.481067 183.190909
  1335. L 494.481067 180.747153
  1336. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1337. <path clip-path="url(#p37420677c3)" d="M 529.358857 183.190909
  1338. L 529.358857 180.747153
  1339. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1340. </g>
  1341. <g id="EventCollection_46">
  1342. <path clip-path="url(#p37420677c3)" d="M 52.811233 185.634665
  1343. L 52.811233 183.190909
  1344. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1345. <path clip-path="url(#p37420677c3)" d="M 240.267427 185.634665
  1346. L 240.267427 183.190909
  1347. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1348. <path clip-path="url(#p37420677c3)" d="M 301.887367 185.634665
  1349. L 301.887367 183.190909
  1350. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1351. <path clip-path="url(#p37420677c3)" d="M 487.405069 185.634665
  1352. L 487.405069 183.190909
  1353. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1354. </g>
  1355. <g id="EventCollection_47">
  1356. <path clip-path="url(#p37420677c3)" d="M 52.821277 188.078422
  1357. L 52.821277 185.634665
  1358. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1359. <path clip-path="url(#p37420677c3)" d="M 233.090989 188.078422
  1360. L 233.090989 185.634665
  1361. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1362. <path clip-path="url(#p37420677c3)" d="M 240.242317 188.078422
  1363. L 240.242317 185.634665
  1364. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1365. <path clip-path="url(#p37420677c3)" d="M 285.420229 188.078422
  1366. L 285.420229 185.634665
  1367. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1368. <path clip-path="url(#p37420677c3)" d="M 301.842169 188.078422
  1369. L 301.842169 185.634665
  1370. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1371. <path clip-path="url(#p37420677c3)" d="M 487.003309 188.078422
  1372. L 487.003309 185.634665
  1373. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1374. <path clip-path="url(#p37420677c3)" d="M 487.349827 188.078422
  1375. L 487.349827 185.634665
  1376. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1377. </g>
  1378. <g id="EventCollection_48">
  1379. <path clip-path="url(#p37420677c3)" d="M 52.816255 190.522178
  1380. L 52.816255 188.078422
  1381. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1382. <path clip-path="url(#p37420677c3)" d="M 239.760205 190.522178
  1383. L 239.760205 188.078422
  1384. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1385. <path clip-path="url(#p37420677c3)" d="M 240.156943 190.522178
  1386. L 240.156943 188.078422
  1387. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1388. <path clip-path="url(#p37420677c3)" d="M 294.690841 190.522178
  1389. L 294.690841 188.078422
  1390. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1391. <path clip-path="url(#p37420677c3)" d="M 301.786927 190.522178
  1392. L 301.786927 188.078422
  1393. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1394. <path clip-path="url(#p37420677c3)" d="M 487.384981 190.522178
  1395. L 487.384981 188.078422
  1396. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1397. </g>
  1398. <g id="EventCollection_49">
  1399. <path clip-path="url(#p37420677c3)" d="M 52.826299 192.965934
  1400. L 52.826299 190.522178
  1401. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1402. <path clip-path="url(#p37420677c3)" d="M 240.222229 192.965934
  1403. L 240.222229 190.522178
  1404. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1405. <path clip-path="url(#p37420677c3)" d="M 301.897411 192.965934
  1406. L 301.897411 190.522178
  1407. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1408. <path clip-path="url(#p37420677c3)" d="M 314.542807 192.965934
  1409. L 314.542807 190.522178
  1410. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1411. <path clip-path="url(#p37420677c3)" d="M 487.395025 192.965934
  1412. L 487.395025 190.522178
  1413. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1414. <path clip-path="url(#p37420677c3)" d="M 490.759765 192.965934
  1415. L 490.759765 190.522178
  1416. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1417. </g>
  1418. <g id="EventCollection_50">
  1419. <path clip-path="url(#p37420677c3)" d="M 52.801189 195.40969
  1420. L 52.801189 192.965934
  1421. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1422. <path clip-path="url(#p37420677c3)" d="M 84.374503 195.40969
  1423. L 84.374503 192.965934
  1424. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1425. <path clip-path="url(#p37420677c3)" d="M 240.232273 195.40969
  1426. L 240.232273 192.965934
  1427. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1428. <path clip-path="url(#p37420677c3)" d="M 435.628249 195.40969
  1429. L 435.628249 192.965934
  1430. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1431. <path clip-path="url(#p37420677c3)" d="M 487.410091 195.40969
  1432. L 487.410091 192.965934
  1433. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1434. <path clip-path="url(#p37420677c3)" d="M 489.293341 195.40969
  1435. L 489.293341 192.965934
  1436. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1437. </g>
  1438. <g id="EventCollection_51">
  1439. <path clip-path="url(#p37420677c3)" d="M 52.248769 197.853447
  1440. L 52.248769 195.40969
  1441. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1442. <path clip-path="url(#p37420677c3)" d="M 52.846387 197.853447
  1443. L 52.846387 195.40969
  1444. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1445. <path clip-path="url(#p37420677c3)" d="M 240.282493 197.853447
  1446. L 240.282493 195.40969
  1447. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1448. <path clip-path="url(#p37420677c3)" d="M 301.852213 197.853447
  1449. L 301.852213 195.40969
  1450. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1451. <path clip-path="url(#p37420677c3)" d="M 486.857671 197.853447
  1452. L 486.857671 195.40969
  1453. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1454. <path clip-path="url(#p37420677c3)" d="M 487.395025 197.853447
  1455. L 487.395025 195.40969
  1456. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1457. <path clip-path="url(#p37420677c3)" d="M 491.297119 197.853447
  1458. L 491.297119 195.40969
  1459. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1460. <path clip-path="url(#p37420677c3)" d="M 534.938299 197.853447
  1461. L 534.938299 195.40969
  1462. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1463. </g>
  1464. <g id="EventCollection_52">
  1465. <path clip-path="url(#p37420677c3)" d="M 52.384363 200.297203
  1466. L 52.384363 197.853447
  1467. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1468. <path clip-path="url(#p37420677c3)" d="M 52.821277 200.297203
  1469. L 52.821277 197.853447
  1470. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1471. <path clip-path="url(#p37420677c3)" d="M 240.262405 200.297203
  1472. L 240.262405 197.853447
  1473. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1474. <path clip-path="url(#p37420677c3)" d="M 301.937587 200.297203
  1475. L 301.937587 197.853447
  1476. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1477. <path clip-path="url(#p37420677c3)" d="M 487.440223 200.297203
  1478. L 487.440223 197.853447
  1479. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1480. <path clip-path="url(#p37420677c3)" d="M 490.493599 200.297203
  1481. L 490.493599 197.853447
  1482. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1483. </g>
  1484. <g id="EventCollection_53">
  1485. <path clip-path="url(#p37420677c3)" d="M 52.791145 202.740959
  1486. L 52.791145 200.297203
  1487. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1488. <path clip-path="url(#p37420677c3)" d="M 238.424353 202.740959
  1489. L 238.424353 200.297203
  1490. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1491. <path clip-path="url(#p37420677c3)" d="M 240.247339 202.740959
  1492. L 240.247339 200.297203
  1493. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1494. <path clip-path="url(#p37420677c3)" d="M 301.922521 202.740959
  1495. L 301.922521 200.297203
  1496. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1497. <path clip-path="url(#p37420677c3)" d="M 442.834819 202.740959
  1498. L 442.834819 200.297203
  1499. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1500. <path clip-path="url(#p37420677c3)" d="M 487.425157 202.740959
  1501. L 487.425157 200.297203
  1502. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1503. </g>
  1504. <g id="EventCollection_54">
  1505. <path clip-path="url(#p37420677c3)" d="M 51.862075 205.184715
  1506. L 51.862075 202.740959
  1507. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1508. <path clip-path="url(#p37420677c3)" d="M 112.924573 205.184715
  1509. L 112.924573 202.740959
  1510. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1511. <path clip-path="url(#p37420677c3)" d="M 204.626293 205.184715
  1512. L 204.626293 202.740959
  1513. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1514. <path clip-path="url(#p37420677c3)" d="M 240.252361 205.184715
  1515. L 240.252361 202.740959
  1516. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1517. <path clip-path="url(#p37420677c3)" d="M 301.907455 205.184715
  1518. L 301.907455 202.740959
  1519. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1520. <path clip-path="url(#p37420677c3)" d="M 302.600491 205.184715
  1521. L 302.600491 202.740959
  1522. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1523. <path clip-path="url(#p37420677c3)" d="M 487.430179 205.184715
  1524. L 487.430179 202.740959
  1525. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1526. </g>
  1527. <g id="EventCollection_55">
  1528. <path clip-path="url(#p37420677c3)" d="M 52.836343 207.628472
  1529. L 52.836343 205.184715
  1530. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1531. <path clip-path="url(#p37420677c3)" d="M 219.300577 207.628472
  1532. L 219.300577 205.184715
  1533. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1534. <path clip-path="url(#p37420677c3)" d="M 240.252361 207.628472
  1535. L 240.252361 205.184715
  1536. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1537. <path clip-path="url(#p37420677c3)" d="M 301.952653 207.628472
  1538. L 301.952653 205.184715
  1539. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1540. <path clip-path="url(#p37420677c3)" d="M 487.450267 207.628472
  1541. L 487.450267 205.184715
  1542. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1543. <path clip-path="url(#p37420677c3)" d="M 490.533775 207.628472
  1544. L 490.533775 205.184715
  1545. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1546. <path clip-path="url(#p37420677c3)" d="M 491.859583 207.628472
  1547. L 491.859583 205.184715
  1548. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1549. </g>
  1550. <g id="EventCollection_56">
  1551. <path clip-path="url(#p37420677c3)" d="M 153.889027 210.072228
  1552. L 153.889027 207.628472
  1553. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1554. <path clip-path="url(#p37420677c3)" d="M 240.257383 210.072228
  1555. L 240.257383 207.628472
  1556. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1557. <path clip-path="url(#p37420677c3)" d="M 301.922521 210.072228
  1558. L 301.922521 207.628472
  1559. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1560. <path clip-path="url(#p37420677c3)" d="M 486.521197 210.072228
  1561. L 486.521197 207.628472
  1562. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1563. <path clip-path="url(#p37420677c3)" d="M 487.440223 210.072228
  1564. L 487.440223 207.628472
  1565. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1566. <path clip-path="url(#p37420677c3)" d="M 488.243743 210.072228
  1567. L 488.243743 207.628472
  1568. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1569. <path clip-path="url(#p37420677c3)" d="M 492.577729 210.072228
  1570. L 492.577729 207.628472
  1571. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1572. </g>
  1573. <g id="EventCollection_57">
  1574. <path clip-path="url(#p37420677c3)" d="M 52.851409 212.515984
  1575. L 52.851409 210.072228
  1576. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1577. <path clip-path="url(#p37420677c3)" d="M 94.554097 212.515984
  1578. L 94.554097 210.072228
  1579. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1580. <path clip-path="url(#p37420677c3)" d="M 240.362845 212.515984
  1581. L 240.362845 210.072228
  1582. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1583. <path clip-path="url(#p37420677c3)" d="M 294.645643 212.515984
  1584. L 294.645643 210.072228
  1585. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1586. <path clip-path="url(#p37420677c3)" d="M 301.947631 212.515984
  1587. L 301.947631 210.072228
  1588. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1589. <path clip-path="url(#p37420677c3)" d="M 487.420135 212.515984
  1590. L 487.420135 210.072228
  1591. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1592. <path clip-path="url(#p37420677c3)" d="M 490.664347 212.515984
  1593. L 490.664347 210.072228
  1594. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1595. </g>
  1596. <g id="EventCollection_58">
  1597. <path clip-path="url(#p37420677c3)" d="M 52.871497 214.95974
  1598. L 52.871497 212.515984
  1599. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1600. <path clip-path="url(#p37420677c3)" d="M 237.003127 214.95974
  1601. L 237.003127 212.515984
  1602. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1603. <path clip-path="url(#p37420677c3)" d="M 240.357823 214.95974
  1604. L 240.357823 212.515984
  1605. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1606. <path clip-path="url(#p37420677c3)" d="M 301.947631 214.95974
  1607. L 301.947631 212.515984
  1608. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1609. <path clip-path="url(#p37420677c3)" d="M 302.871679 214.95974
  1610. L 302.871679 212.515984
  1611. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1612. <path clip-path="url(#p37420677c3)" d="M 471.917221 214.95974
  1613. L 471.917221 212.515984
  1614. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1615. <path clip-path="url(#p37420677c3)" d="M 487.430179 214.95974
  1616. L 487.430179 212.515984
  1617. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1618. </g>
  1619. <g id="EventCollection_59">
  1620. <path clip-path="url(#p37420677c3)" d="M 51.580843 217.403497
  1621. L 51.580843 214.95974
  1622. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1623. <path clip-path="url(#p37420677c3)" d="M 52.786123 217.403497
  1624. L 52.786123 214.95974
  1625. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1626. <path clip-path="url(#p37420677c3)" d="M 240.307603 217.403497
  1627. L 240.307603 214.95974
  1628. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1629. <path clip-path="url(#p37420677c3)" d="M 301.852213 217.403497
  1630. L 301.852213 214.95974
  1631. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1632. <path clip-path="url(#p37420677c3)" d="M 302.690887 217.403497
  1633. L 302.690887 214.95974
  1634. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1635. <path clip-path="url(#p37420677c3)" d="M 487.374937 217.403497
  1636. L 487.374937 214.95974
  1637. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1638. <path clip-path="url(#p37420677c3)" d="M 489.338539 217.403497
  1639. L 489.338539 214.95974
  1640. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1641. </g>
  1642. <g id="EventCollection_60">
  1643. <path clip-path="url(#p37420677c3)" d="M 51.374941 219.847253
  1644. L 51.374941 217.403497
  1645. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1646. <path clip-path="url(#p37420677c3)" d="M 51.696349 219.847253
  1647. L 51.696349 217.403497
  1648. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1649. <path clip-path="url(#p37420677c3)" d="M 52.173439 219.847253
  1650. L 52.173439 217.403497
  1651. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1652. <path clip-path="url(#p37420677c3)" d="M 240.322669 219.847253
  1653. L 240.322669 217.403497
  1654. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1655. <path clip-path="url(#p37420677c3)" d="M 301.947631 219.847253
  1656. L 301.947631 217.403497
  1657. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1658. <path clip-path="url(#p37420677c3)" d="M 304.247707 219.847253
  1659. L 304.247707 217.403497
  1660. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1661. <path clip-path="url(#p37420677c3)" d="M 359.911555 219.847253
  1662. L 359.911555 217.403497
  1663. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1664. <path clip-path="url(#p37420677c3)" d="M 429.330661 219.847253
  1665. L 429.330661 217.403497
  1666. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1667. <path clip-path="url(#p37420677c3)" d="M 486.933001 219.847253
  1668. L 486.933001 217.403497
  1669. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1670. <path clip-path="url(#p37420677c3)" d="M 487.400047 219.847253
  1671. L 487.400047 217.403497
  1672. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1673. <path clip-path="url(#p37420677c3)" d="M 488.750965 219.847253
  1674. L 488.750965 217.403497
  1675. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1676. </g>
  1677. <g id="EventCollection_61">
  1678. <path clip-path="url(#p37420677c3)" d="M 52.846387 222.291009
  1679. L 52.846387 219.847253
  1680. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1681. <path clip-path="url(#p37420677c3)" d="M 238.841179 222.291009
  1682. L 238.841179 219.847253
  1683. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1684. <path clip-path="url(#p37420677c3)" d="M 240.292537 222.291009
  1685. L 240.292537 219.847253
  1686. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1687. <path clip-path="url(#p37420677c3)" d="M 301.912477 222.291009
  1688. L 301.912477 219.847253
  1689. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1690. <path clip-path="url(#p37420677c3)" d="M 487.028419 222.291009
  1691. L 487.028419 219.847253
  1692. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1693. <path clip-path="url(#p37420677c3)" d="M 487.374937 222.291009
  1694. L 487.374937 219.847253
  1695. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1696. </g>
  1697. <g id="EventCollection_62">
  1698. <path clip-path="url(#p37420677c3)" d="M 52.841365 224.734765
  1699. L 52.841365 222.291009
  1700. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1701. <path clip-path="url(#p37420677c3)" d="M 237.846823 224.734765
  1702. L 237.846823 222.291009
  1703. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1704. <path clip-path="url(#p37420677c3)" d="M 240.352801 224.734765
  1705. L 240.352801 222.291009
  1706. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1707. <path clip-path="url(#p37420677c3)" d="M 252.325249 224.734765
  1708. L 252.325249 222.291009
  1709. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1710. <path clip-path="url(#p37420677c3)" d="M 301.967719 224.734765
  1711. L 301.967719 222.291009
  1712. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1713. <path clip-path="url(#p37420677c3)" d="M 407.324257 224.734765
  1714. L 407.324257 222.291009
  1715. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1716. <path clip-path="url(#p37420677c3)" d="M 487.354849 224.734765
  1717. L 487.354849 222.291009
  1718. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1719. <path clip-path="url(#p37420677c3)" d="M 489.162769 224.734765
  1720. L 489.162769 222.291009
  1721. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1722. <path clip-path="url(#p37420677c3)" d="M 489.268231 224.734765
  1723. L 489.268231 222.291009
  1724. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1725. </g>
  1726. <g id="EventCollection_63">
  1727. <path clip-path="url(#p37420677c3)" d="M 52.791145 227.178521
  1728. L 52.791145 224.734765
  1729. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1730. <path clip-path="url(#p37420677c3)" d="M 240.217207 227.178521
  1731. L 240.217207 224.734765
  1732. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1733. <path clip-path="url(#p37420677c3)" d="M 301.847191 227.178521
  1734. L 301.847191 224.734765
  1735. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1736. <path clip-path="url(#p37420677c3)" d="M 487.405069 227.178521
  1737. L 487.405069 224.734765
  1738. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1739. <path clip-path="url(#p37420677c3)" d="M 490.016509 227.178521
  1740. L 490.016509 224.734765
  1741. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1742. </g>
  1743. <g id="EventCollection_64">
  1744. <path clip-path="url(#p37420677c3)" d="M 52.876519 229.622278
  1745. L 52.876519 227.178521
  1746. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1747. <path clip-path="url(#p37420677c3)" d="M 240.317647 229.622278
  1748. L 240.317647 227.178521
  1749. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1750. <path clip-path="url(#p37420677c3)" d="M 294.118333 229.622278
  1751. L 294.118333 227.178521
  1752. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1753. <path clip-path="url(#p37420677c3)" d="M 301.812037 229.622278
  1754. L 301.812037 227.178521
  1755. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1756. <path clip-path="url(#p37420677c3)" d="M 487.420135 229.622278
  1757. L 487.420135 227.178521
  1758. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1759. <path clip-path="url(#p37420677c3)" d="M 490.523731 229.622278
  1760. L 490.523731 227.178521
  1761. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1762. </g>
  1763. <g id="EventCollection_65">
  1764. <path clip-path="url(#p37420677c3)" d="M 52.816255 232.066034
  1765. L 52.816255 229.622278
  1766. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1767. <path clip-path="url(#p37420677c3)" d="M 164.636107 232.066034
  1768. L 164.636107 229.622278
  1769. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1770. <path clip-path="url(#p37420677c3)" d="M 240.312625 232.066034
  1771. L 240.312625 229.622278
  1772. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1773. <path clip-path="url(#p37420677c3)" d="M 301.927543 232.066034
  1774. L 301.927543 229.622278
  1775. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1776. <path clip-path="url(#p37420677c3)" d="M 326.319397 232.066034
  1777. L 326.319397 229.622278
  1778. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1779. </g>
  1780. <g id="EventCollection_66">
  1781. <path clip-path="url(#p37420677c3)" d="M 236.937841 234.50979
  1782. L 236.937841 232.066034
  1783. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1784. <path clip-path="url(#p37420677c3)" d="M 240.327691 234.50979
  1785. L 240.327691 232.066034
  1786. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1787. <path clip-path="url(#p37420677c3)" d="M 301.947631 234.50979
  1788. L 301.947631 232.066034
  1789. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1790. <path clip-path="url(#p37420677c3)" d="M 390.877207 234.50979
  1791. L 390.877207 232.066034
  1792. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1793. <path clip-path="url(#p37420677c3)" d="M 487.435201 234.50979
  1794. L 487.435201 232.066034
  1795. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1796. </g>
  1797. <g id="EventCollection_67">
  1798. <path clip-path="url(#p37420677c3)" d="M 51.922339 236.953546
  1799. L 51.922339 234.50979
  1800. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1801. <path clip-path="url(#p37420677c3)" d="M 229.791535 236.953546
  1802. L 229.791535 234.50979
  1803. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1804. <path clip-path="url(#p37420677c3)" d="M 328.885639 236.953546
  1805. L 328.885639 234.50979
  1806. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1807. <path clip-path="url(#p37420677c3)" d="M 487.425157 236.953546
  1808. L 487.425157 234.50979
  1809. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1810. <path clip-path="url(#p37420677c3)" d="M 489.388759 236.953546
  1811. L 489.388759 234.50979
  1812. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1813. <path clip-path="url(#p37420677c3)" d="M 490.563907 236.953546
  1814. L 490.563907 234.50979
  1815. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1816. <path clip-path="url(#p37420677c3)" d="M 538.197577 236.953546
  1817. L 538.197577 234.50979
  1818. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1819. </g>
  1820. <g id="EventCollection_68">
  1821. <path clip-path="url(#p37420677c3)" d="M 51.831943 239.397303
  1822. L 51.831943 236.953546
  1823. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1824. <path clip-path="url(#p37420677c3)" d="M 52.243747 239.397303
  1825. L 52.243747 236.953546
  1826. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1827. <path clip-path="url(#p37420677c3)" d="M 52.866475 239.397303
  1828. L 52.866475 236.953546
  1829. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1830. <path clip-path="url(#p37420677c3)" d="M 240.397999 239.397303
  1831. L 240.397999 236.953546
  1832. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1833. <path clip-path="url(#p37420677c3)" d="M 267.893449 239.397303
  1834. L 267.893449 236.953546
  1835. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1836. <path clip-path="url(#p37420677c3)" d="M 292.737283 239.397303
  1837. L 292.737283 236.953546
  1838. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1839. <path clip-path="url(#p37420677c3)" d="M 301.932565 239.397303
  1840. L 301.932565 236.953546
  1841. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1842. <path clip-path="url(#p37420677c3)" d="M 487.415113 239.397303
  1843. L 487.415113 236.953546
  1844. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1845. <path clip-path="url(#p37420677c3)" d="M 491.382493 239.397303
  1846. L 491.382493 236.953546
  1847. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1848. <path clip-path="url(#p37420677c3)" d="M 492.125749 239.397303
  1849. L 492.125749 236.953546
  1850. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1851. </g>
  1852. <g id="EventCollection_69">
  1853. <path clip-path="url(#p37420677c3)" d="M 52.826299 241.841059
  1854. L 52.826299 239.397303
  1855. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1856. <path clip-path="url(#p37420677c3)" d="M 240.257383 241.841059
  1857. L 240.257383 239.397303
  1858. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1859. <path clip-path="url(#p37420677c3)" d="M 300.867901 241.841059
  1860. L 300.867901 239.397303
  1861. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1862. <path clip-path="url(#p37420677c3)" d="M 301.912477 241.841059
  1863. L 301.912477 239.397303
  1864. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1865. <path clip-path="url(#p37420677c3)" d="M 487.430179 241.841059
  1866. L 487.430179 239.397303
  1867. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1868. <path clip-path="url(#p37420677c3)" d="M 489.177835 241.841059
  1869. L 489.177835 239.397303
  1870. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1871. </g>
  1872. <g id="EventCollection_70">
  1873. <path clip-path="url(#p37420677c3)" d="M 51.786745 244.284815
  1874. L 51.786745 241.841059
  1875. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1876. <path clip-path="url(#p37420677c3)" d="M 52.861453 244.284815
  1877. L 52.861453 241.841059
  1878. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1879. <path clip-path="url(#p37420677c3)" d="M 78.980875 244.284815
  1880. L 78.980875 241.841059
  1881. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1882. <path clip-path="url(#p37420677c3)" d="M 240.312625 244.284815
  1883. L 240.312625 241.841059
  1884. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1885. <path clip-path="url(#p37420677c3)" d="M 301.837147 244.284815
  1886. L 301.837147 241.841059
  1887. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1888. <path clip-path="url(#p37420677c3)" d="M 484.873981 244.284815
  1889. L 484.873981 241.841059
  1890. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1891. <path clip-path="url(#p37420677c3)" d="M 485.336005 244.284815
  1892. L 485.336005 241.841059
  1893. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1894. </g>
  1895. <g id="EventCollection_71">
  1896. <path clip-path="url(#p37420677c3)" d="M 50.470981 246.728571
  1897. L 50.470981 244.284815
  1898. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1899. <path clip-path="url(#p37420677c3)" d="M 52.896607 246.728571
  1900. L 52.896607 244.284815
  1901. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1902. <path clip-path="url(#p37420677c3)" d="M 206.851039 246.728571
  1903. L 206.851039 244.284815
  1904. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1905. <path clip-path="url(#p37420677c3)" d="M 238.575013 246.728571
  1906. L 238.575013 244.284815
  1907. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1908. <path clip-path="url(#p37420677c3)" d="M 240.428131 246.728571
  1909. L 240.428131 244.284815
  1910. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1911. <path clip-path="url(#p37420677c3)" d="M 301.872301 246.728571
  1912. L 301.872301 244.284815
  1913. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1914. <path clip-path="url(#p37420677c3)" d="M 304.508851 246.728571
  1915. L 304.508851 244.284815
  1916. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1917. <path clip-path="url(#p37420677c3)" d="M 487.440223 246.728571
  1918. L 487.440223 244.284815
  1919. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1920. <path clip-path="url(#p37420677c3)" d="M 489.413869 246.728571
  1921. L 489.413869 244.284815
  1922. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1923. <path clip-path="url(#p37420677c3)" d="M 492.005221 246.728571
  1924. L 492.005221 244.284815
  1925. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1926. </g>
  1927. <g id="EventCollection_72">
  1928. <path clip-path="url(#p37420677c3)" d="M 52.806211 249.172328
  1929. L 52.806211 246.728571
  1930. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1931. <path clip-path="url(#p37420677c3)" d="M 237.389821 249.172328
  1932. L 237.389821 246.728571
  1933. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1934. <path clip-path="url(#p37420677c3)" d="M 240.212185 249.172328
  1935. L 240.212185 246.728571
  1936. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1937. <path clip-path="url(#p37420677c3)" d="M 301.887367 249.172328
  1938. L 301.887367 246.728571
  1939. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1940. <path clip-path="url(#p37420677c3)" d="M 487.475377 249.172328
  1941. L 487.475377 246.728571
  1942. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1943. </g>
  1944. <g id="EventCollection_73">
  1945. <path clip-path="url(#p37420677c3)" d="M 52.866475 251.616084
  1946. L 52.866475 249.172328
  1947. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1948. <path clip-path="url(#p37420677c3)" d="M 240.448219 251.616084
  1949. L 240.448219 249.172328
  1950. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1951. <path clip-path="url(#p37420677c3)" d="M 301.812037 251.616084
  1952. L 301.812037 249.172328
  1953. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1954. <path clip-path="url(#p37420677c3)" d="M 487.425157 251.616084
  1955. L 487.425157 249.172328
  1956. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1957. </g>
  1958. <g id="EventCollection_74">
  1959. <path clip-path="url(#p37420677c3)" d="M 52.841365 254.05984
  1960. L 52.841365 251.616084
  1961. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1962. <path clip-path="url(#p37420677c3)" d="M 240.317647 254.05984
  1963. L 240.317647 251.616084
  1964. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1965. <path clip-path="url(#p37420677c3)" d="M 301.435387 254.05984
  1966. L 301.435387 251.616084
  1967. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1968. <path clip-path="url(#p37420677c3)" d="M 487.425157 254.05984
  1969. L 487.425157 251.616084
  1970. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1971. </g>
  1972. <g id="EventCollection_75">
  1973. <path clip-path="url(#p37420677c3)" d="M 239.800381 256.503596
  1974. L 239.800381 254.05984
  1975. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1976. <path clip-path="url(#p37420677c3)" d="M 240.352801 256.503596
  1977. L 240.352801 254.05984
  1978. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1979. <path clip-path="url(#p37420677c3)" d="M 301.952653 256.503596
  1980. L 301.952653 254.05984
  1981. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1982. <path clip-path="url(#p37420677c3)" d="M 487.440223 256.503596
  1983. L 487.440223 254.05984
  1984. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1985. </g>
  1986. <g id="EventCollection_76">
  1987. <path clip-path="url(#p37420677c3)" d="M 52.916695 258.947353
  1988. L 52.916695 256.503596
  1989. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1990. <path clip-path="url(#p37420677c3)" d="M 240.397999 258.947353
  1991. L 240.397999 256.503596
  1992. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1993. <path clip-path="url(#p37420677c3)" d="M 301.952653 258.947353
  1994. L 301.952653 256.503596
  1995. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1996. <path clip-path="url(#p37420677c3)" d="M 487.490443 258.947353
  1997. L 487.490443 256.503596
  1998. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1999. </g>
  2000. <g id="EventCollection_77">
  2001. <path clip-path="url(#p37420677c3)" d="M 52.856431 261.391109
  2002. L 52.856431 258.947353
  2003. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2004. <path clip-path="url(#p37420677c3)" d="M 240.433153 261.391109
  2005. L 240.433153 258.947353
  2006. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2007. <path clip-path="url(#p37420677c3)" d="M 301.872301 261.391109
  2008. L 301.872301 258.947353
  2009. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2010. <path clip-path="url(#p37420677c3)" d="M 487.420135 261.391109
  2011. L 487.420135 258.947353
  2012. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2013. </g>
  2014. <g id="EventCollection_78">
  2015. <path clip-path="url(#p37420677c3)" d="M 52.846387 263.834865
  2016. L 52.846387 261.391109
  2017. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2018. <path clip-path="url(#p37420677c3)" d="M 240.372889 263.834865
  2019. L 240.372889 261.391109
  2020. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2021. <path clip-path="url(#p37420677c3)" d="M 301.872301 263.834865
  2022. L 301.872301 261.391109
  2023. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2024. <path clip-path="url(#p37420677c3)" d="M 487.395025 263.834865
  2025. L 487.395025 261.391109
  2026. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2027. </g>
  2028. <g id="EventCollection_79">
  2029. <path clip-path="url(#p37420677c3)" d="M 52.856431 266.278621
  2030. L 52.856431 263.834865
  2031. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2032. <path clip-path="url(#p37420677c3)" d="M 240.237295 266.278621
  2033. L 240.237295 263.834865
  2034. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2035. <path clip-path="url(#p37420677c3)" d="M 301.862257 266.278621
  2036. L 301.862257 263.834865
  2037. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2038. <path clip-path="url(#p37420677c3)" d="M 487.445245 266.278621
  2039. L 487.445245 263.834865
  2040. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2041. </g>
  2042. <g id="EventCollection_80">
  2043. <path clip-path="url(#p37420677c3)" d="M 52.876519 268.722378
  2044. L 52.876519 266.278621
  2045. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2046. <path clip-path="url(#p37420677c3)" d="M 240.367867 268.722378
  2047. L 240.367867 266.278621
  2048. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2049. <path clip-path="url(#p37420677c3)" d="M 301.927543 268.722378
  2050. L 301.927543 266.278621
  2051. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2052. <path clip-path="url(#p37420677c3)" d="M 487.435201 268.722378
  2053. L 487.435201 266.278621
  2054. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2055. </g>
  2056. <g id="EventCollection_81">
  2057. <path clip-path="url(#p37420677c3)" d="M 52.866475 271.166134
  2058. L 52.866475 268.722378
  2059. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2060. <path clip-path="url(#p37420677c3)" d="M 240.362845 271.166134
  2061. L 240.362845 268.722378
  2062. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2063. <path clip-path="url(#p37420677c3)" d="M 301.987807 271.166134
  2064. L 301.987807 268.722378
  2065. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2066. <path clip-path="url(#p37420677c3)" d="M 487.415113 271.166134
  2067. L 487.415113 268.722378
  2068. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2069. </g>
  2070. <g id="EventCollection_82">
  2071. <path clip-path="url(#p37420677c3)" d="M 52.861453 273.60989
  2072. L 52.861453 271.166134
  2073. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2074. <path clip-path="url(#p37420677c3)" d="M 240.267427 273.60989
  2075. L 240.267427 271.166134
  2076. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2077. <path clip-path="url(#p37420677c3)" d="M 301.912477 273.60989
  2078. L 301.912477 271.166134
  2079. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2080. <path clip-path="url(#p37420677c3)" d="M 487.465333 273.60989
  2081. L 487.465333 271.166134
  2082. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2083. </g>
  2084. <g id="EventCollection_83">
  2085. <path clip-path="url(#p37420677c3)" d="M 52.936783 276.053646
  2086. L 52.936783 273.60989
  2087. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2088. <path clip-path="url(#p37420677c3)" d="M 240.287515 276.053646
  2089. L 240.287515 273.60989
  2090. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2091. <path clip-path="url(#p37420677c3)" d="M 301.977763 276.053646
  2092. L 301.977763 273.60989
  2093. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2094. <path clip-path="url(#p37420677c3)" d="M 487.430179 276.053646
  2095. L 487.430179 273.60989
  2096. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2097. </g>
  2098. <g id="EventCollection_84">
  2099. <path clip-path="url(#p37420677c3)" d="M 52.881541 278.497403
  2100. L 52.881541 276.053646
  2101. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2102. <path clip-path="url(#p37420677c3)" d="M 240.387955 278.497403
  2103. L 240.387955 276.053646
  2104. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2105. <path clip-path="url(#p37420677c3)" d="M 301.827103 278.497403
  2106. L 301.827103 276.053646
  2107. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2108. <path clip-path="url(#p37420677c3)" d="M 487.440223 278.497403
  2109. L 487.440223 276.053646
  2110. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2111. </g>
  2112. <g id="EventCollection_85">
  2113. <path clip-path="url(#p37420677c3)" d="M 52.846387 280.941159
  2114. L 52.846387 278.497403
  2115. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2116. <path clip-path="url(#p37420677c3)" d="M 240.463285 280.941159
  2117. L 240.463285 278.497403
  2118. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2119. <path clip-path="url(#p37420677c3)" d="M 301.812037 280.941159
  2120. L 301.812037 278.497403
  2121. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2122. <path clip-path="url(#p37420677c3)" d="M 487.425157 280.941159
  2123. L 487.425157 278.497403
  2124. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2125. <path clip-path="url(#p37420677c3)" d="M 487.701367 280.941159
  2126. L 487.701367 278.497403
  2127. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2128. </g>
  2129. <g id="EventCollection_86">
  2130. <path clip-path="url(#p37420677c3)" d="M 52.891585 283.384915
  2131. L 52.891585 280.941159
  2132. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2133. <path clip-path="url(#p37420677c3)" d="M 240.468307 283.384915
  2134. L 240.468307 280.941159
  2135. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2136. <path clip-path="url(#p37420677c3)" d="M 301.842169 283.384915
  2137. L 301.842169 280.941159
  2138. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2139. <path clip-path="url(#p37420677c3)" d="M 487.395025 283.384915
  2140. L 487.395025 280.941159
  2141. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2142. </g>
  2143. <g id="EventCollection_87">
  2144. <path clip-path="url(#p37420677c3)" d="M 52.906651 285.828671
  2145. L 52.906651 283.384915
  2146. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2147. <path clip-path="url(#p37420677c3)" d="M 240.362845 285.828671
  2148. L 240.362845 283.384915
  2149. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2150. <path clip-path="url(#p37420677c3)" d="M 301.897411 285.828671
  2151. L 301.897411 283.384915
  2152. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2153. <path clip-path="url(#p37420677c3)" d="M 487.450267 285.828671
  2154. L 487.450267 283.384915
  2155. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2156. </g>
  2157. <g id="EventCollection_88">
  2158. <path clip-path="url(#p37420677c3)" d="M 52.881541 288.272428
  2159. L 52.881541 285.828671
  2160. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2161. <path clip-path="url(#p37420677c3)" d="M 240.362845 288.272428
  2162. L 240.362845 285.828671
  2163. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2164. <path clip-path="url(#p37420677c3)" d="M 301.927543 288.272428
  2165. L 301.927543 285.828671
  2166. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2167. <path clip-path="url(#p37420677c3)" d="M 487.445245 288.272428
  2168. L 487.445245 285.828671
  2169. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2170. </g>
  2171. <g id="EventCollection_89">
  2172. <path clip-path="url(#p37420677c3)" d="M 52.926739 290.716184
  2173. L 52.926739 288.272428
  2174. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2175. <path clip-path="url(#p37420677c3)" d="M 239.715007 290.716184
  2176. L 239.715007 288.272428
  2177. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2178. <path clip-path="url(#p37420677c3)" d="M 240.387955 290.716184
  2179. L 240.387955 288.272428
  2180. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  2181. </g>
  2182. <g id="EventCollection_90"/>
  2183. </g>
  2184. <g id="axes_2">
  2185. <g id="patch_7">
  2186. <path d="M 46.965625 561.24
  2187. L 549.165625 561.24
  2188. L 549.165625 338.858182
  2189. L 46.965625 338.858182
  2190. z
  2191. " style="fill:#ffffff;"/>
  2192. </g>
  2193. <g id="PolyCollection_1">
  2194. <path clip-path="url(#p36783aea58)" d="M 237.801625 561.24
  2195. L 237.801625 551.974091
  2196. L 239.057125 538.075227
  2197. L 240.312625 410.668977
  2198. L 241.568125 503.328068
  2199. L 241.568125 561.24
  2200. L 241.568125 561.24
  2201. L 240.312625 561.24
  2202. L 239.057125 561.24
  2203. L 237.801625 561.24
  2204. z
  2205. " style="fill:#d3d3d3;"/>
  2206. <path clip-path="url(#p36783aea58)" d="M 252.867625 561.24
  2207. L 252.867625 558.923523
  2208. L 252.867625 561.24
  2209. L 252.867625 561.24
  2210. z
  2211. " style="fill:#d3d3d3;"/>
  2212. <path clip-path="url(#p36783aea58)" d="M 265.422625 561.24
  2213. L 265.422625 556.607045
  2214. L 265.422625 561.24
  2215. L 265.422625 561.24
  2216. z
  2217. " style="fill:#d3d3d3;"/>
  2218. <path clip-path="url(#p36783aea58)" d="M 267.933625 561.24
  2219. L 267.933625 554.290568
  2220. L 267.933625 561.24
  2221. L 267.933625 561.24
  2222. z
  2223. " style="fill:#d3d3d3;"/>
  2224. <path clip-path="url(#p36783aea58)" d="M 274.211125 561.24
  2225. L 274.211125 558.923523
  2226. L 274.211125 561.24
  2227. L 274.211125 561.24
  2228. z
  2229. " style="fill:#d3d3d3;"/>
  2230. <path clip-path="url(#p36783aea58)" d="M 284.255125 561.24
  2231. L 284.255125 558.923523
  2232. L 285.510625 558.923523
  2233. L 285.510625 561.24
  2234. L 285.510625 561.24
  2235. L 284.255125 561.24
  2236. z
  2237. " style="fill:#d3d3d3;"/>
  2238. <path clip-path="url(#p36783aea58)" d="M 293.043625 561.24
  2239. L 293.043625 558.923523
  2240. L 294.299125 558.923523
  2241. L 295.554625 556.607045
  2242. L 295.554625 561.24
  2243. L 295.554625 561.24
  2244. L 294.299125 561.24
  2245. L 293.043625 561.24
  2246. z
  2247. " style="fill:#d3d3d3;"/>
  2248. </g>
  2249. <g id="PolyCollection_2">
  2250. <path clip-path="url(#p36783aea58)" d="M 486.390625 561.24
  2251. L 486.390625 554.290568
  2252. L 487.646125 338.858182
  2253. L 488.901625 540.391705
  2254. L 490.157125 521.859886
  2255. L 491.412625 514.910455
  2256. L 492.668125 542.708182
  2257. L 493.923625 551.974091
  2258. L 495.179125 556.607045
  2259. L 495.179125 561.24
  2260. L 495.179125 561.24
  2261. L 493.923625 561.24
  2262. L 492.668125 561.24
  2263. L 491.412625 561.24
  2264. L 490.157125 561.24
  2265. L 488.901625 561.24
  2266. L 487.646125 561.24
  2267. L 486.390625 561.24
  2268. z
  2269. " style="fill:#d3d3d3;"/>
  2270. <path clip-path="url(#p36783aea58)" d="M 500.201125 561.24
  2271. L 500.201125 558.923523
  2272. L 501.456625 558.923523
  2273. L 501.456625 561.24
  2274. L 501.456625 561.24
  2275. L 500.201125 561.24
  2276. z
  2277. " style="fill:#d3d3d3;"/>
  2278. <path clip-path="url(#p36783aea58)" d="M 530.333125 561.24
  2279. L 530.333125 558.923523
  2280. L 531.588625 558.923523
  2281. L 531.588625 561.24
  2282. L 531.588625 561.24
  2283. L 530.333125 561.24
  2284. z
  2285. " style="fill:#d3d3d3;"/>
  2286. <path clip-path="url(#p36783aea58)" d="M 535.355125 561.24
  2287. L 535.355125 558.923523
  2288. L 536.610625 558.923523
  2289. L 536.610625 561.24
  2290. L 536.610625 561.24
  2291. L 535.355125 561.24
  2292. z
  2293. " style="fill:#d3d3d3;"/>
  2294. <path clip-path="url(#p36783aea58)" d="M 539.121625 561.24
  2295. L 539.121625 558.923523
  2296. L 539.121625 561.24
  2297. L 539.121625 561.24
  2298. z
  2299. " style="fill:#d3d3d3;"/>
  2300. <path clip-path="url(#p36783aea58)" d="M 541.632625 561.24
  2301. L 541.632625 558.923523
  2302. L 541.632625 561.24
  2303. L 541.632625 561.24
  2304. z
  2305. " style="fill:#d3d3d3;"/>
  2306. </g>
  2307. <g id="matplotlib.axis_3">
  2308. <g id="xtick_1">
  2309. <g id="line2d_6">
  2310. <defs>
  2311. <path d="M 0 0
  2312. L 0 3.5
  2313. " id="m37ff44d9c0" style="stroke:#000000;stroke-width:0.8;"/>
  2314. </defs>
  2315. <g>
  2316. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m37ff44d9c0" y="561.24"/>
  2317. </g>
  2318. </g>
  2319. <g id="text_7">
  2320. <!-- 0.0 -->
  2321. <defs>
  2322. <path d="M 10.6875 12.40625
  2323. L 21 12.40625
  2324. L 21 0
  2325. L 10.6875 0
  2326. z
  2327. " id="DejaVuSans-2e"/>
  2328. </defs>
  2329. <g transform="translate(39.014063 575.838437)scale(0.1 -0.1)">
  2330. <use xlink:href="#DejaVuSans-30"/>
  2331. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2332. <use x="95.410156" xlink:href="#DejaVuSans-30"/>
  2333. </g>
  2334. </g>
  2335. </g>
  2336. <g id="xtick_2">
  2337. <g id="line2d_7">
  2338. <g>
  2339. <use style="stroke:#000000;stroke-width:0.8;" x="109.740625" xlink:href="#m37ff44d9c0" y="561.24"/>
  2340. </g>
  2341. </g>
  2342. <g id="text_8">
  2343. <!-- 0.5 -->
  2344. <defs>
  2345. <path d="M 10.796875 72.90625
  2346. L 49.515625 72.90625
  2347. L 49.515625 64.59375
  2348. L 19.828125 64.59375
  2349. L 19.828125 46.734375
  2350. Q 21.96875 47.46875 24.109375 47.828125
  2351. Q 26.265625 48.1875 28.421875 48.1875
  2352. Q 40.625 48.1875 47.75 41.5
  2353. Q 54.890625 34.8125 54.890625 23.390625
  2354. Q 54.890625 11.625 47.5625 5.09375
  2355. Q 40.234375 -1.421875 26.90625 -1.421875
  2356. Q 22.3125 -1.421875 17.546875 -0.640625
  2357. Q 12.796875 0.140625 7.71875 1.703125
  2358. L 7.71875 11.625
  2359. Q 12.109375 9.234375 16.796875 8.0625
  2360. Q 21.484375 6.890625 26.703125 6.890625
  2361. Q 35.15625 6.890625 40.078125 11.328125
  2362. Q 45.015625 15.765625 45.015625 23.390625
  2363. Q 45.015625 31 40.078125 35.4375
  2364. Q 35.15625 39.890625 26.703125 39.890625
  2365. Q 22.75 39.890625 18.8125 39.015625
  2366. Q 14.890625 38.140625 10.796875 36.28125
  2367. z
  2368. " id="DejaVuSans-35"/>
  2369. </defs>
  2370. <g transform="translate(101.789063 575.838437)scale(0.1 -0.1)">
  2371. <use xlink:href="#DejaVuSans-30"/>
  2372. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2373. <use x="95.410156" xlink:href="#DejaVuSans-35"/>
  2374. </g>
  2375. </g>
  2376. </g>
  2377. <g id="xtick_3">
  2378. <g id="line2d_8">
  2379. <g>
  2380. <use style="stroke:#000000;stroke-width:0.8;" x="172.515625" xlink:href="#m37ff44d9c0" y="561.24"/>
  2381. </g>
  2382. </g>
  2383. <g id="text_9">
  2384. <!-- 1.0 -->
  2385. <defs>
  2386. <path d="M 12.40625 8.296875
  2387. L 28.515625 8.296875
  2388. L 28.515625 63.921875
  2389. L 10.984375 60.40625
  2390. L 10.984375 69.390625
  2391. L 28.421875 72.90625
  2392. L 38.28125 72.90625
  2393. L 38.28125 8.296875
  2394. L 54.390625 8.296875
  2395. L 54.390625 0
  2396. L 12.40625 0
  2397. z
  2398. " id="DejaVuSans-31"/>
  2399. </defs>
  2400. <g transform="translate(164.564063 575.838437)scale(0.1 -0.1)">
  2401. <use xlink:href="#DejaVuSans-31"/>
  2402. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2403. <use x="95.410156" xlink:href="#DejaVuSans-30"/>
  2404. </g>
  2405. </g>
  2406. </g>
  2407. <g id="xtick_4">
  2408. <g id="line2d_9">
  2409. <g>
  2410. <use style="stroke:#000000;stroke-width:0.8;" x="235.290625" xlink:href="#m37ff44d9c0" y="561.24"/>
  2411. </g>
  2412. </g>
  2413. <g id="text_10">
  2414. <!-- 1.5 -->
  2415. <g transform="translate(227.339063 575.838437)scale(0.1 -0.1)">
  2416. <use xlink:href="#DejaVuSans-31"/>
  2417. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2418. <use x="95.410156" xlink:href="#DejaVuSans-35"/>
  2419. </g>
  2420. </g>
  2421. </g>
  2422. <g id="xtick_5">
  2423. <g id="line2d_10">
  2424. <g>
  2425. <use style="stroke:#000000;stroke-width:0.8;" x="298.065625" xlink:href="#m37ff44d9c0" y="561.24"/>
  2426. </g>
  2427. </g>
  2428. <g id="text_11">
  2429. <!-- 2.0 -->
  2430. <g transform="translate(290.114063 575.838437)scale(0.1 -0.1)">
  2431. <use xlink:href="#DejaVuSans-32"/>
  2432. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2433. <use x="95.410156" xlink:href="#DejaVuSans-30"/>
  2434. </g>
  2435. </g>
  2436. </g>
  2437. <g id="xtick_6">
  2438. <g id="line2d_11">
  2439. <g>
  2440. <use style="stroke:#000000;stroke-width:0.8;" x="360.840625" xlink:href="#m37ff44d9c0" y="561.24"/>
  2441. </g>
  2442. </g>
  2443. <g id="text_12">
  2444. <!-- 2.5 -->
  2445. <g transform="translate(352.889063 575.838437)scale(0.1 -0.1)">
  2446. <use xlink:href="#DejaVuSans-32"/>
  2447. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2448. <use x="95.410156" xlink:href="#DejaVuSans-35"/>
  2449. </g>
  2450. </g>
  2451. </g>
  2452. <g id="xtick_7">
  2453. <g id="line2d_12">
  2454. <g>
  2455. <use style="stroke:#000000;stroke-width:0.8;" x="423.615625" xlink:href="#m37ff44d9c0" y="561.24"/>
  2456. </g>
  2457. </g>
  2458. <g id="text_13">
  2459. <!-- 3.0 -->
  2460. <defs>
  2461. <path d="M 40.578125 39.3125
  2462. Q 47.65625 37.796875 51.625 33
  2463. Q 55.609375 28.21875 55.609375 21.1875
  2464. Q 55.609375 10.40625 48.1875 4.484375
  2465. Q 40.765625 -1.421875 27.09375 -1.421875
  2466. Q 22.515625 -1.421875 17.65625 -0.515625
  2467. Q 12.796875 0.390625 7.625 2.203125
  2468. L 7.625 11.71875
  2469. Q 11.71875 9.328125 16.59375 8.109375
  2470. Q 21.484375 6.890625 26.8125 6.890625
  2471. Q 36.078125 6.890625 40.9375 10.546875
  2472. Q 45.796875 14.203125 45.796875 21.1875
  2473. Q 45.796875 27.640625 41.28125 31.265625
  2474. Q 36.765625 34.90625 28.71875 34.90625
  2475. L 20.21875 34.90625
  2476. L 20.21875 43.015625
  2477. L 29.109375 43.015625
  2478. Q 36.375 43.015625 40.234375 45.921875
  2479. Q 44.09375 48.828125 44.09375 54.296875
  2480. Q 44.09375 59.90625 40.109375 62.90625
  2481. Q 36.140625 65.921875 28.71875 65.921875
  2482. Q 24.65625 65.921875 20.015625 65.03125
  2483. Q 15.375 64.15625 9.8125 62.3125
  2484. L 9.8125 71.09375
  2485. Q 15.4375 72.65625 20.34375 73.4375
  2486. Q 25.25 74.21875 29.59375 74.21875
  2487. Q 40.828125 74.21875 47.359375 69.109375
  2488. Q 53.90625 64.015625 53.90625 55.328125
  2489. Q 53.90625 49.265625 50.4375 45.09375
  2490. Q 46.96875 40.921875 40.578125 39.3125
  2491. z
  2492. " id="DejaVuSans-33"/>
  2493. </defs>
  2494. <g transform="translate(415.664062 575.838437)scale(0.1 -0.1)">
  2495. <use xlink:href="#DejaVuSans-33"/>
  2496. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2497. <use x="95.410156" xlink:href="#DejaVuSans-30"/>
  2498. </g>
  2499. </g>
  2500. </g>
  2501. <g id="xtick_8">
  2502. <g id="line2d_13">
  2503. <g>
  2504. <use style="stroke:#000000;stroke-width:0.8;" x="486.390625" xlink:href="#m37ff44d9c0" y="561.24"/>
  2505. </g>
  2506. </g>
  2507. <g id="text_14">
  2508. <!-- 3.5 -->
  2509. <g transform="translate(478.439063 575.838437)scale(0.1 -0.1)">
  2510. <use xlink:href="#DejaVuSans-33"/>
  2511. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2512. <use x="95.410156" xlink:href="#DejaVuSans-35"/>
  2513. </g>
  2514. </g>
  2515. </g>
  2516. <g id="xtick_9">
  2517. <g id="line2d_14">
  2518. <g>
  2519. <use style="stroke:#000000;stroke-width:0.8;" x="549.165625" xlink:href="#m37ff44d9c0" y="561.24"/>
  2520. </g>
  2521. </g>
  2522. <g id="text_15">
  2523. <!-- 4.0 -->
  2524. <g transform="translate(541.214063 575.838437)scale(0.1 -0.1)">
  2525. <use xlink:href="#DejaVuSans-34"/>
  2526. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2527. <use x="95.410156" xlink:href="#DejaVuSans-30"/>
  2528. </g>
  2529. </g>
  2530. </g>
  2531. <g id="text_16">
  2532. <!-- Time[s] -->
  2533. <defs>
  2534. <path d="M 52 44.1875
  2535. Q 55.375 50.25 60.0625 53.125
  2536. Q 64.75 56 71.09375 56
  2537. Q 79.640625 56 84.28125 50.015625
  2538. Q 88.921875 44.046875 88.921875 33.015625
  2539. L 88.921875 0
  2540. L 79.890625 0
  2541. L 79.890625 32.71875
  2542. Q 79.890625 40.578125 77.09375 44.375
  2543. Q 74.3125 48.1875 68.609375 48.1875
  2544. Q 61.625 48.1875 57.5625 43.546875
  2545. Q 53.515625 38.921875 53.515625 30.90625
  2546. L 53.515625 0
  2547. L 44.484375 0
  2548. L 44.484375 32.71875
  2549. Q 44.484375 40.625 41.703125 44.40625
  2550. Q 38.921875 48.1875 33.109375 48.1875
  2551. Q 26.21875 48.1875 22.15625 43.53125
  2552. Q 18.109375 38.875 18.109375 30.90625
  2553. L 18.109375 0
  2554. L 9.078125 0
  2555. L 9.078125 54.6875
  2556. L 18.109375 54.6875
  2557. L 18.109375 46.1875
  2558. Q 21.1875 51.21875 25.484375 53.609375
  2559. Q 29.78125 56 35.6875 56
  2560. Q 41.65625 56 45.828125 52.96875
  2561. Q 50 49.953125 52 44.1875
  2562. z
  2563. " id="DejaVuSans-6d"/>
  2564. <path d="M 56.203125 29.59375
  2565. L 56.203125 25.203125
  2566. L 14.890625 25.203125
  2567. Q 15.484375 15.921875 20.484375 11.0625
  2568. Q 25.484375 6.203125 34.421875 6.203125
  2569. Q 39.59375 6.203125 44.453125 7.46875
  2570. Q 49.3125 8.734375 54.109375 11.28125
  2571. L 54.109375 2.78125
  2572. Q 49.265625 0.734375 44.1875 -0.34375
  2573. Q 39.109375 -1.421875 33.890625 -1.421875
  2574. Q 20.796875 -1.421875 13.15625 6.1875
  2575. Q 5.515625 13.8125 5.515625 26.8125
  2576. Q 5.515625 40.234375 12.765625 48.109375
  2577. Q 20.015625 56 32.328125 56
  2578. Q 43.359375 56 49.78125 48.890625
  2579. Q 56.203125 41.796875 56.203125 29.59375
  2580. z
  2581. M 47.21875 32.234375
  2582. Q 47.125 39.59375 43.09375 43.984375
  2583. Q 39.0625 48.390625 32.421875 48.390625
  2584. Q 24.90625 48.390625 20.390625 44.140625
  2585. Q 15.875 39.890625 15.1875 32.171875
  2586. z
  2587. " id="DejaVuSans-65"/>
  2588. <path d="M 8.59375 75.984375
  2589. L 29.296875 75.984375
  2590. L 29.296875 69
  2591. L 17.578125 69
  2592. L 17.578125 -6.203125
  2593. L 29.296875 -6.203125
  2594. L 29.296875 -13.1875
  2595. L 8.59375 -13.1875
  2596. z
  2597. " id="DejaVuSans-5b"/>
  2598. <path d="M 44.28125 53.078125
  2599. L 44.28125 44.578125
  2600. Q 40.484375 46.53125 36.375 47.5
  2601. Q 32.28125 48.484375 27.875 48.484375
  2602. Q 21.1875 48.484375 17.84375 46.4375
  2603. Q 14.5 44.390625 14.5 40.28125
  2604. Q 14.5 37.15625 16.890625 35.375
  2605. Q 19.28125 33.59375 26.515625 31.984375
  2606. L 29.59375 31.296875
  2607. Q 39.15625 29.25 43.1875 25.515625
  2608. Q 47.21875 21.78125 47.21875 15.09375
  2609. Q 47.21875 7.46875 41.1875 3.015625
  2610. Q 35.15625 -1.421875 24.609375 -1.421875
  2611. Q 20.21875 -1.421875 15.453125 -0.5625
  2612. Q 10.6875 0.296875 5.421875 2
  2613. L 5.421875 11.28125
  2614. Q 10.40625 8.6875 15.234375 7.390625
  2615. Q 20.0625 6.109375 24.8125 6.109375
  2616. Q 31.15625 6.109375 34.5625 8.28125
  2617. Q 37.984375 10.453125 37.984375 14.40625
  2618. Q 37.984375 18.0625 35.515625 20.015625
  2619. Q 33.0625 21.96875 24.703125 23.78125
  2620. L 21.578125 24.515625
  2621. Q 13.234375 26.265625 9.515625 29.90625
  2622. Q 5.8125 33.546875 5.8125 39.890625
  2623. Q 5.8125 47.609375 11.28125 51.796875
  2624. Q 16.75 56 26.8125 56
  2625. Q 31.78125 56 36.171875 55.265625
  2626. Q 40.578125 54.546875 44.28125 53.078125
  2627. z
  2628. " id="DejaVuSans-73"/>
  2629. <path d="M 30.421875 75.984375
  2630. L 30.421875 -13.1875
  2631. L 9.71875 -13.1875
  2632. L 9.71875 -6.203125
  2633. L 21.390625 -6.203125
  2634. L 21.390625 69
  2635. L 9.71875 69
  2636. L 9.71875 75.984375
  2637. z
  2638. " id="DejaVuSans-5d"/>
  2639. </defs>
  2640. <g transform="translate(279.171875 589.516562)scale(0.1 -0.1)">
  2641. <use xlink:href="#DejaVuSans-54"/>
  2642. <use x="61.037109" xlink:href="#DejaVuSans-69"/>
  2643. <use x="88.820312" xlink:href="#DejaVuSans-6d"/>
  2644. <use x="186.232422" xlink:href="#DejaVuSans-65"/>
  2645. <use x="247.755859" xlink:href="#DejaVuSans-5b"/>
  2646. <use x="286.769531" xlink:href="#DejaVuSans-73"/>
  2647. <use x="338.869141" xlink:href="#DejaVuSans-5d"/>
  2648. </g>
  2649. </g>
  2650. </g>
  2651. <g id="matplotlib.axis_4">
  2652. <g id="ytick_6">
  2653. <g id="line2d_15">
  2654. <g>
  2655. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m584ddde25d" y="561.24"/>
  2656. </g>
  2657. </g>
  2658. <g id="text_17">
  2659. <!-- 0 -->
  2660. <g transform="translate(33.603125 565.039219)scale(0.1 -0.1)">
  2661. <use xlink:href="#DejaVuSans-30"/>
  2662. </g>
  2663. </g>
  2664. </g>
  2665. <g id="ytick_7">
  2666. <g id="line2d_16">
  2667. <g>
  2668. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m584ddde25d" y="520.109531"/>
  2669. </g>
  2670. </g>
  2671. <g id="text_18">
  2672. <!-- 20 -->
  2673. <g transform="translate(27.240625 523.908749)scale(0.1 -0.1)">
  2674. <use xlink:href="#DejaVuSans-32"/>
  2675. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  2676. </g>
  2677. </g>
  2678. </g>
  2679. <g id="ytick_8">
  2680. <g id="line2d_17">
  2681. <g>
  2682. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m584ddde25d" y="478.979061"/>
  2683. </g>
  2684. </g>
  2685. <g id="text_19">
  2686. <!-- 40 -->
  2687. <g transform="translate(27.240625 482.77828)scale(0.1 -0.1)">
  2688. <use xlink:href="#DejaVuSans-34"/>
  2689. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  2690. </g>
  2691. </g>
  2692. </g>
  2693. <g id="ytick_9">
  2694. <g id="line2d_18">
  2695. <g>
  2696. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m584ddde25d" y="437.848592"/>
  2697. </g>
  2698. </g>
  2699. <g id="text_20">
  2700. <!-- 60 -->
  2701. <g transform="translate(27.240625 441.647811)scale(0.1 -0.1)">
  2702. <use xlink:href="#DejaVuSans-36"/>
  2703. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  2704. </g>
  2705. </g>
  2706. </g>
  2707. <g id="ytick_10">
  2708. <g id="line2d_19">
  2709. <g>
  2710. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m584ddde25d" y="396.718123"/>
  2711. </g>
  2712. </g>
  2713. <g id="text_21">
  2714. <!-- 80 -->
  2715. <g transform="translate(27.240625 400.517342)scale(0.1 -0.1)">
  2716. <use xlink:href="#DejaVuSans-38"/>
  2717. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  2718. </g>
  2719. </g>
  2720. </g>
  2721. <g id="ytick_11">
  2722. <g id="line2d_20">
  2723. <g>
  2724. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m584ddde25d" y="355.587654"/>
  2725. </g>
  2726. </g>
  2727. <g id="text_22">
  2728. <!-- 100 -->
  2729. <g transform="translate(20.878125 359.386872)scale(0.1 -0.1)">
  2730. <use xlink:href="#DejaVuSans-31"/>
  2731. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  2732. <use x="127.246094" xlink:href="#DejaVuSans-30"/>
  2733. </g>
  2734. </g>
  2735. </g>
  2736. <g id="text_23">
  2737. <!-- Firing rate[spikes/s] -->
  2738. <defs>
  2739. <path d="M 9.8125 72.90625
  2740. L 51.703125 72.90625
  2741. L 51.703125 64.59375
  2742. L 19.671875 64.59375
  2743. L 19.671875 43.109375
  2744. L 48.578125 43.109375
  2745. L 48.578125 34.8125
  2746. L 19.671875 34.8125
  2747. L 19.671875 0
  2748. L 9.8125 0
  2749. z
  2750. " id="DejaVuSans-46"/>
  2751. <path d="M 54.890625 33.015625
  2752. L 54.890625 0
  2753. L 45.90625 0
  2754. L 45.90625 32.71875
  2755. Q 45.90625 40.484375 42.875 44.328125
  2756. Q 39.84375 48.1875 33.796875 48.1875
  2757. Q 26.515625 48.1875 22.3125 43.546875
  2758. Q 18.109375 38.921875 18.109375 30.90625
  2759. L 18.109375 0
  2760. L 9.078125 0
  2761. L 9.078125 54.6875
  2762. L 18.109375 54.6875
  2763. L 18.109375 46.1875
  2764. Q 21.34375 51.125 25.703125 53.5625
  2765. Q 30.078125 56 35.796875 56
  2766. Q 45.21875 56 50.046875 50.171875
  2767. Q 54.890625 44.34375 54.890625 33.015625
  2768. z
  2769. " id="DejaVuSans-6e"/>
  2770. <path d="M 45.40625 27.984375
  2771. Q 45.40625 37.75 41.375 43.109375
  2772. Q 37.359375 48.484375 30.078125 48.484375
  2773. Q 22.859375 48.484375 18.828125 43.109375
  2774. Q 14.796875 37.75 14.796875 27.984375
  2775. Q 14.796875 18.265625 18.828125 12.890625
  2776. Q 22.859375 7.515625 30.078125 7.515625
  2777. Q 37.359375 7.515625 41.375 12.890625
  2778. Q 45.40625 18.265625 45.40625 27.984375
  2779. z
  2780. M 54.390625 6.78125
  2781. Q 54.390625 -7.171875 48.1875 -13.984375
  2782. Q 42 -20.796875 29.203125 -20.796875
  2783. Q 24.46875 -20.796875 20.265625 -20.09375
  2784. Q 16.0625 -19.390625 12.109375 -17.921875
  2785. L 12.109375 -9.1875
  2786. Q 16.0625 -11.328125 19.921875 -12.34375
  2787. Q 23.78125 -13.375 27.78125 -13.375
  2788. Q 36.625 -13.375 41.015625 -8.765625
  2789. Q 45.40625 -4.15625 45.40625 5.171875
  2790. L 45.40625 9.625
  2791. Q 42.625 4.78125 38.28125 2.390625
  2792. Q 33.9375 0 27.875 0
  2793. Q 17.828125 0 11.671875 7.65625
  2794. Q 5.515625 15.328125 5.515625 27.984375
  2795. Q 5.515625 40.671875 11.671875 48.328125
  2796. Q 17.828125 56 27.875 56
  2797. Q 33.9375 56 38.28125 53.609375
  2798. Q 42.625 51.21875 45.40625 46.390625
  2799. L 45.40625 54.6875
  2800. L 54.390625 54.6875
  2801. z
  2802. " id="DejaVuSans-67"/>
  2803. <path id="DejaVuSans-20"/>
  2804. <path d="M 18.3125 70.21875
  2805. L 18.3125 54.6875
  2806. L 36.8125 54.6875
  2807. L 36.8125 47.703125
  2808. L 18.3125 47.703125
  2809. L 18.3125 18.015625
  2810. Q 18.3125 11.328125 20.140625 9.421875
  2811. Q 21.96875 7.515625 27.59375 7.515625
  2812. L 36.8125 7.515625
  2813. L 36.8125 0
  2814. L 27.59375 0
  2815. Q 17.1875 0 13.234375 3.875
  2816. Q 9.28125 7.765625 9.28125 18.015625
  2817. L 9.28125 47.703125
  2818. L 2.6875 47.703125
  2819. L 2.6875 54.6875
  2820. L 9.28125 54.6875
  2821. L 9.28125 70.21875
  2822. z
  2823. " id="DejaVuSans-74"/>
  2824. <path d="M 18.109375 8.203125
  2825. L 18.109375 -20.796875
  2826. L 9.078125 -20.796875
  2827. L 9.078125 54.6875
  2828. L 18.109375 54.6875
  2829. L 18.109375 46.390625
  2830. Q 20.953125 51.265625 25.265625 53.625
  2831. Q 29.59375 56 35.59375 56
  2832. Q 45.5625 56 51.78125 48.09375
  2833. Q 58.015625 40.1875 58.015625 27.296875
  2834. Q 58.015625 14.40625 51.78125 6.484375
  2835. Q 45.5625 -1.421875 35.59375 -1.421875
  2836. Q 29.59375 -1.421875 25.265625 0.953125
  2837. Q 20.953125 3.328125 18.109375 8.203125
  2838. z
  2839. M 48.6875 27.296875
  2840. Q 48.6875 37.203125 44.609375 42.84375
  2841. Q 40.53125 48.484375 33.40625 48.484375
  2842. Q 26.265625 48.484375 22.1875 42.84375
  2843. Q 18.109375 37.203125 18.109375 27.296875
  2844. Q 18.109375 17.390625 22.1875 11.75
  2845. Q 26.265625 6.109375 33.40625 6.109375
  2846. Q 40.53125 6.109375 44.609375 11.75
  2847. Q 48.6875 17.390625 48.6875 27.296875
  2848. z
  2849. " id="DejaVuSans-70"/>
  2850. <path d="M 9.078125 75.984375
  2851. L 18.109375 75.984375
  2852. L 18.109375 31.109375
  2853. L 44.921875 54.6875
  2854. L 56.390625 54.6875
  2855. L 27.390625 29.109375
  2856. L 57.625 0
  2857. L 45.90625 0
  2858. L 18.109375 26.703125
  2859. L 18.109375 0
  2860. L 9.078125 0
  2861. z
  2862. " id="DejaVuSans-6b"/>
  2863. <path d="M 25.390625 72.90625
  2864. L 33.6875 72.90625
  2865. L 8.296875 -9.28125
  2866. L 0 -9.28125
  2867. z
  2868. " id="DejaVuSans-2f"/>
  2869. </defs>
  2870. <g transform="translate(14.798438 499.774091)rotate(-90)scale(0.1 -0.1)">
  2871. <use xlink:href="#DejaVuSans-46"/>
  2872. <use x="57.410156" xlink:href="#DejaVuSans-69"/>
  2873. <use x="85.193359" xlink:href="#DejaVuSans-72"/>
  2874. <use x="126.306641" xlink:href="#DejaVuSans-69"/>
  2875. <use x="154.089844" xlink:href="#DejaVuSans-6e"/>
  2876. <use x="217.46875" xlink:href="#DejaVuSans-67"/>
  2877. <use x="280.945312" xlink:href="#DejaVuSans-20"/>
  2878. <use x="312.732422" xlink:href="#DejaVuSans-72"/>
  2879. <use x="353.845703" xlink:href="#DejaVuSans-61"/>
  2880. <use x="415.125" xlink:href="#DejaVuSans-74"/>
  2881. <use x="454.333984" xlink:href="#DejaVuSans-65"/>
  2882. <use x="515.857422" xlink:href="#DejaVuSans-5b"/>
  2883. <use x="554.871094" xlink:href="#DejaVuSans-73"/>
  2884. <use x="606.970703" xlink:href="#DejaVuSans-70"/>
  2885. <use x="670.447266" xlink:href="#DejaVuSans-69"/>
  2886. <use x="698.230469" xlink:href="#DejaVuSans-6b"/>
  2887. <use x="756.09375" xlink:href="#DejaVuSans-65"/>
  2888. <use x="817.617188" xlink:href="#DejaVuSans-73"/>
  2889. <use x="869.716797" xlink:href="#DejaVuSans-2f"/>
  2890. <use x="903.408203" xlink:href="#DejaVuSans-73"/>
  2891. <use x="955.507812" xlink:href="#DejaVuSans-5d"/>
  2892. </g>
  2893. </g>
  2894. </g>
  2895. <g id="line2d_21">
  2896. <path clip-path="url(#p36783aea58)" d="M 46.965625 561.24
  2897. L 49.476625 561.24
  2898. L 50.732125 556.607045
  2899. L 51.987625 519.543409
  2900. L 53.243125 348.124091
  2901. L 54.498625 561.24
  2902. L 65.798125 561.24
  2903. L 67.053625 558.923523
  2904. L 68.309125 561.24
  2905. L 69.564625 561.24
  2906. L 70.820125 558.923523
  2907. L 72.075625 561.24
  2908. L 77.097625 561.24
  2909. L 78.353125 558.923523
  2910. L 79.608625 558.923523
  2911. L 80.864125 561.24
  2912. L 82.119625 558.923523
  2913. L 83.375125 561.24
  2914. L 84.630625 558.923523
  2915. L 85.886125 561.24
  2916. L 87.141625 561.24
  2917. L 88.397125 558.923523
  2918. L 89.652625 561.24
  2919. L 92.163625 561.24
  2920. L 93.419125 558.923523
  2921. L 94.674625 558.923523
  2922. L 95.930125 561.24
  2923. L 97.185625 558.923523
  2924. L 98.441125 561.24
  2925. L 99.696625 558.923523
  2926. L 100.952125 561.24
  2927. L 102.207625 561.24
  2928. L 103.463125 558.923523
  2929. L 104.718625 561.24
  2930. L 105.974125 561.24
  2931. L 107.229625 558.923523
  2932. L 108.485125 561.24
  2933. L 109.740625 561.24
  2934. L 110.996125 558.923523
  2935. L 112.251625 561.24
  2936. L 113.507125 556.607045
  2937. L 114.762625 561.24
  2938. L 138.617125 561.24
  2939. L 139.872625 558.923523
  2940. L 141.128125 561.24
  2941. L 151.172125 561.24
  2942. L 152.427625 558.923523
  2943. L 153.683125 561.24
  2944. L 154.938625 558.923523
  2945. L 156.194125 561.24
  2946. L 157.449625 558.923523
  2947. L 158.705125 561.24
  2948. L 159.960625 558.923523
  2949. L 161.216125 561.24
  2950. L 162.471625 558.923523
  2951. L 163.727125 561.24
  2952. L 164.982625 558.923523
  2953. L 166.238125 561.24
  2954. L 203.903125 561.24
  2955. L 205.158625 558.923523
  2956. L 207.669625 558.923523
  2957. L 208.925125 561.24
  2958. L 217.713625 561.24
  2959. L 218.969125 558.923523
  2960. L 220.224625 558.923523
  2961. L 221.480125 561.24
  2962. L 222.735625 556.607045
  2963. L 223.991125 561.24
  2964. L 229.013125 561.24
  2965. L 230.268625 558.923523
  2966. L 231.524125 561.24
  2967. L 232.779625 561.24
  2968. L 234.035125 558.923523
  2969. L 235.290625 561.24
  2970. L 236.546125 561.24
  2971. L 237.801625 551.974091
  2972. L 239.057125 538.075227
  2973. L 240.312625 410.668977
  2974. L 241.568125 503.328068
  2975. L 242.823625 561.24
  2976. L 251.612125 561.24
  2977. L 252.867625 558.923523
  2978. L 254.123125 561.24
  2979. L 264.167125 561.24
  2980. L 265.422625 556.607045
  2981. L 266.678125 561.24
  2982. L 267.933625 554.290568
  2983. L 269.189125 561.24
  2984. L 272.955625 561.24
  2985. L 274.211125 558.923523
  2986. L 275.466625 561.24
  2987. L 282.999625 561.24
  2988. L 284.255125 558.923523
  2989. L 285.510625 558.923523
  2990. L 286.766125 561.24
  2991. L 291.788125 561.24
  2992. L 293.043625 558.923523
  2993. L 294.299125 558.923523
  2994. L 295.554625 556.607045
  2995. L 296.810125 561.24
  2996. L 298.065625 556.607045
  2997. L 299.321125 561.24
  2998. L 300.576625 558.923523
  2999. L 301.832125 459.315
  3000. L 303.087625 450.049091
  3001. L 304.343125 558.923523
  3002. L 305.598625 558.923523
  3003. L 306.854125 561.24
  3004. L 308.109625 558.923523
  3005. L 309.365125 561.24
  3006. L 314.387125 561.24
  3007. L 315.642625 558.923523
  3008. L 316.898125 561.24
  3009. L 318.153625 561.24
  3010. L 319.409125 558.923523
  3011. L 320.664625 561.24
  3012. L 325.686625 561.24
  3013. L 326.942125 556.607045
  3014. L 328.197625 561.24
  3015. L 329.453125 558.923523
  3016. L 330.708625 561.24
  3017. L 331.964125 561.24
  3018. L 333.219625 558.923523
  3019. L 334.475125 561.24
  3020. L 347.030125 561.24
  3021. L 348.285625 558.923523
  3022. L 349.541125 561.24
  3023. L 359.585125 561.24
  3024. L 360.840625 558.923523
  3025. L 362.096125 561.24
  3026. L 369.629125 561.24
  3027. L 370.884625 558.923523
  3028. L 372.140125 561.24
  3029. L 389.717125 561.24
  3030. L 390.972625 558.923523
  3031. L 392.228125 561.24
  3032. L 407.294125 561.24
  3033. L 408.549625 558.923523
  3034. L 409.805125 561.24
  3035. L 428.637625 561.24
  3036. L 429.893125 558.923523
  3037. L 431.148625 561.24
  3038. L 433.659625 561.24
  3039. L 434.915125 558.923523
  3040. L 436.170625 558.923523
  3041. L 437.426125 561.24
  3042. L 442.448125 561.24
  3043. L 443.703625 558.923523
  3044. L 444.959125 561.24
  3045. L 471.324625 561.24
  3046. L 472.580125 558.923523
  3047. L 473.835625 558.923523
  3048. L 475.091125 561.24
  3049. L 478.857625 561.24
  3050. L 480.113125 558.923523
  3051. L 481.368625 561.24
  3052. L 483.879625 561.24
  3053. L 485.135125 556.607045
  3054. L 486.390625 554.290568
  3055. L 487.646125 338.858182
  3056. L 488.901625 540.391705
  3057. L 490.157125 521.859886
  3058. L 491.412625 514.910455
  3059. L 492.668125 542.708182
  3060. L 493.923625 551.974091
  3061. L 496.434625 561.24
  3062. L 498.945625 561.24
  3063. L 500.201125 558.923523
  3064. L 501.456625 558.923523
  3065. L 502.712125 561.24
  3066. L 529.077625 561.24
  3067. L 530.333125 558.923523
  3068. L 531.588625 558.923523
  3069. L 532.844125 561.24
  3070. L 534.099625 561.24
  3071. L 535.355125 558.923523
  3072. L 536.610625 558.923523
  3073. L 537.866125 561.24
  3074. L 539.121625 558.923523
  3075. L 540.377125 561.24
  3076. L 541.632625 558.923523
  3077. L 542.888125 561.24
  3078. L 549.165625 561.24
  3079. L 549.165625 561.24
  3080. " style="fill:none;stroke:#1f77b4;stroke-linecap:square;stroke-width:1.5;"/>
  3081. </g>
  3082. <g id="text_24">
  3083. <!-- Baseline: 0 Hz Bias: -0.18 -->
  3084. <defs>
  3085. <path d="M 19.671875 34.8125
  3086. L 19.671875 8.109375
  3087. L 35.5 8.109375
  3088. Q 43.453125 8.109375 47.28125 11.40625
  3089. Q 51.125 14.703125 51.125 21.484375
  3090. Q 51.125 28.328125 47.28125 31.5625
  3091. Q 43.453125 34.8125 35.5 34.8125
  3092. z
  3093. M 19.671875 64.796875
  3094. L 19.671875 42.828125
  3095. L 34.28125 42.828125
  3096. Q 41.5 42.828125 45.03125 45.53125
  3097. Q 48.578125 48.25 48.578125 53.8125
  3098. Q 48.578125 59.328125 45.03125 62.0625
  3099. Q 41.5 64.796875 34.28125 64.796875
  3100. z
  3101. M 9.8125 72.90625
  3102. L 35.015625 72.90625
  3103. Q 46.296875 72.90625 52.390625 68.21875
  3104. Q 58.5 63.53125 58.5 54.890625
  3105. Q 58.5 48.1875 55.375 44.234375
  3106. Q 52.25 40.28125 46.1875 39.3125
  3107. Q 53.46875 37.75 57.5 32.78125
  3108. Q 61.53125 27.828125 61.53125 20.40625
  3109. Q 61.53125 10.640625 54.890625 5.3125
  3110. Q 48.25 0 35.984375 0
  3111. L 9.8125 0
  3112. z
  3113. " id="DejaVuSans-42"/>
  3114. <path d="M 11.71875 12.40625
  3115. L 22.015625 12.40625
  3116. L 22.015625 0
  3117. L 11.71875 0
  3118. z
  3119. M 11.71875 51.703125
  3120. L 22.015625 51.703125
  3121. L 22.015625 39.3125
  3122. L 11.71875 39.3125
  3123. z
  3124. " id="DejaVuSans-3a"/>
  3125. <path d="M 9.8125 72.90625
  3126. L 19.671875 72.90625
  3127. L 19.671875 43.015625
  3128. L 55.515625 43.015625
  3129. L 55.515625 72.90625
  3130. L 65.375 72.90625
  3131. L 65.375 0
  3132. L 55.515625 0
  3133. L 55.515625 34.71875
  3134. L 19.671875 34.71875
  3135. L 19.671875 0
  3136. L 9.8125 0
  3137. z
  3138. " id="DejaVuSans-48"/>
  3139. <path d="M 5.515625 54.6875
  3140. L 48.1875 54.6875
  3141. L 48.1875 46.484375
  3142. L 14.40625 7.171875
  3143. L 48.1875 7.171875
  3144. L 48.1875 0
  3145. L 4.296875 0
  3146. L 4.296875 8.203125
  3147. L 38.09375 47.515625
  3148. L 5.515625 47.515625
  3149. z
  3150. " id="DejaVuSans-7a"/>
  3151. <path d="M 4.890625 31.390625
  3152. L 31.203125 31.390625
  3153. L 31.203125 23.390625
  3154. L 4.890625 23.390625
  3155. z
  3156. " id="DejaVuSans-2d"/>
  3157. </defs>
  3158. <g transform="translate(219.460938 332.858182)scale(0.12 -0.12)">
  3159. <use xlink:href="#DejaVuSans-42"/>
  3160. <use x="68.603516" xlink:href="#DejaVuSans-61"/>
  3161. <use x="129.882812" xlink:href="#DejaVuSans-73"/>
  3162. <use x="181.982422" xlink:href="#DejaVuSans-65"/>
  3163. <use x="243.505859" xlink:href="#DejaVuSans-6c"/>
  3164. <use x="271.289062" xlink:href="#DejaVuSans-69"/>
  3165. <use x="299.072266" xlink:href="#DejaVuSans-6e"/>
  3166. <use x="362.451172" xlink:href="#DejaVuSans-65"/>
  3167. <use x="423.974609" xlink:href="#DejaVuSans-3a"/>
  3168. <use x="457.666016" xlink:href="#DejaVuSans-20"/>
  3169. <use x="489.453125" xlink:href="#DejaVuSans-20"/>
  3170. <use x="521.240234" xlink:href="#DejaVuSans-30"/>
  3171. <use x="584.863281" xlink:href="#DejaVuSans-20"/>
  3172. <use x="616.650391" xlink:href="#DejaVuSans-48"/>
  3173. <use x="691.845703" xlink:href="#DejaVuSans-7a"/>
  3174. <use x="744.335938" xlink:href="#DejaVuSans-20"/>
  3175. <use x="776.123047" xlink:href="#DejaVuSans-42"/>
  3176. <use x="844.726562" xlink:href="#DejaVuSans-69"/>
  3177. <use x="872.509766" xlink:href="#DejaVuSans-61"/>
  3178. <use x="933.789062" xlink:href="#DejaVuSans-73"/>
  3179. <use x="985.888672" xlink:href="#DejaVuSans-3a"/>
  3180. <use x="1019.580078" xlink:href="#DejaVuSans-20"/>
  3181. <use x="1051.367188" xlink:href="#DejaVuSans-2d"/>
  3182. <use x="1087.451172" xlink:href="#DejaVuSans-30"/>
  3183. <use x="1151.074219" xlink:href="#DejaVuSans-2e"/>
  3184. <use x="1182.861328" xlink:href="#DejaVuSans-31"/>
  3185. <use x="1246.484375" xlink:href="#DejaVuSans-38"/>
  3186. </g>
  3187. </g>
  3188. </g>
  3189. <g id="text_25">
  3190. <!-- Erol_20180710_60MEA_marmoset -->
  3191. <defs>
  3192. <path d="M 9.8125 72.90625
  3193. L 55.90625 72.90625
  3194. L 55.90625 64.59375
  3195. L 19.671875 64.59375
  3196. L 19.671875 43.015625
  3197. L 54.390625 43.015625
  3198. L 54.390625 34.71875
  3199. L 19.671875 34.71875
  3200. L 19.671875 8.296875
  3201. L 56.78125 8.296875
  3202. L 56.78125 0
  3203. L 9.8125 0
  3204. z
  3205. " id="DejaVuSans-45"/>
  3206. <path d="M 30.609375 48.390625
  3207. Q 23.390625 48.390625 19.1875 42.75
  3208. Q 14.984375 37.109375 14.984375 27.296875
  3209. Q 14.984375 17.484375 19.15625 11.84375
  3210. Q 23.34375 6.203125 30.609375 6.203125
  3211. Q 37.796875 6.203125 41.984375 11.859375
  3212. Q 46.1875 17.53125 46.1875 27.296875
  3213. Q 46.1875 37.015625 41.984375 42.703125
  3214. Q 37.796875 48.390625 30.609375 48.390625
  3215. z
  3216. M 30.609375 56
  3217. Q 42.328125 56 49.015625 48.375
  3218. Q 55.71875 40.765625 55.71875 27.296875
  3219. Q 55.71875 13.875 49.015625 6.21875
  3220. Q 42.328125 -1.421875 30.609375 -1.421875
  3221. Q 18.84375 -1.421875 12.171875 6.21875
  3222. Q 5.515625 13.875 5.515625 27.296875
  3223. Q 5.515625 40.765625 12.171875 48.375
  3224. Q 18.84375 56 30.609375 56
  3225. z
  3226. " id="DejaVuSans-6f"/>
  3227. <path d="M 50.984375 -16.609375
  3228. L 50.984375 -23.578125
  3229. L -0.984375 -23.578125
  3230. L -0.984375 -16.609375
  3231. z
  3232. " id="DejaVuSans-5f"/>
  3233. <path d="M 8.203125 72.90625
  3234. L 55.078125 72.90625
  3235. L 55.078125 68.703125
  3236. L 28.609375 0
  3237. L 18.3125 0
  3238. L 43.21875 64.59375
  3239. L 8.203125 64.59375
  3240. z
  3241. " id="DejaVuSans-37"/>
  3242. <path d="M 9.8125 72.90625
  3243. L 24.515625 72.90625
  3244. L 43.109375 23.296875
  3245. L 61.8125 72.90625
  3246. L 76.515625 72.90625
  3247. L 76.515625 0
  3248. L 66.890625 0
  3249. L 66.890625 64.015625
  3250. L 48.09375 14.015625
  3251. L 38.1875 14.015625
  3252. L 19.390625 64.015625
  3253. L 19.390625 0
  3254. L 9.8125 0
  3255. z
  3256. " id="DejaVuSans-4d"/>
  3257. <path d="M 34.1875 63.1875
  3258. L 20.796875 26.90625
  3259. L 47.609375 26.90625
  3260. z
  3261. M 28.609375 72.90625
  3262. L 39.796875 72.90625
  3263. L 67.578125 0
  3264. L 57.328125 0
  3265. L 50.6875 18.703125
  3266. L 17.828125 18.703125
  3267. L 11.1875 0
  3268. L 0.78125 0
  3269. z
  3270. " id="DejaVuSans-41"/>
  3271. </defs>
  3272. <g transform="translate(187.451875 16.651875)scale(0.12 -0.12)">
  3273. <use xlink:href="#DejaVuSans-45"/>
  3274. <use x="63.183594" xlink:href="#DejaVuSans-72"/>
  3275. <use x="104.265625" xlink:href="#DejaVuSans-6f"/>
  3276. <use x="165.447266" xlink:href="#DejaVuSans-6c"/>
  3277. <use x="193.230469" xlink:href="#DejaVuSans-5f"/>
  3278. <use x="243.230469" xlink:href="#DejaVuSans-32"/>
  3279. <use x="306.853516" xlink:href="#DejaVuSans-30"/>
  3280. <use x="370.476562" xlink:href="#DejaVuSans-31"/>
  3281. <use x="434.099609" xlink:href="#DejaVuSans-38"/>
  3282. <use x="497.722656" xlink:href="#DejaVuSans-30"/>
  3283. <use x="561.345703" xlink:href="#DejaVuSans-37"/>
  3284. <use x="624.96875" xlink:href="#DejaVuSans-31"/>
  3285. <use x="688.591797" xlink:href="#DejaVuSans-30"/>
  3286. <use x="752.214844" xlink:href="#DejaVuSans-5f"/>
  3287. <use x="802.214844" xlink:href="#DejaVuSans-36"/>
  3288. <use x="865.837891" xlink:href="#DejaVuSans-30"/>
  3289. <use x="929.460938" xlink:href="#DejaVuSans-4d"/>
  3290. <use x="1015.740234" xlink:href="#DejaVuSans-45"/>
  3291. <use x="1078.923828" xlink:href="#DejaVuSans-41"/>
  3292. <use x="1147.332031" xlink:href="#DejaVuSans-5f"/>
  3293. <use x="1197.332031" xlink:href="#DejaVuSans-6d"/>
  3294. <use x="1294.744141" xlink:href="#DejaVuSans-61"/>
  3295. <use x="1356.023438" xlink:href="#DejaVuSans-72"/>
  3296. <use x="1397.121094" xlink:href="#DejaVuSans-6d"/>
  3297. <use x="1494.533203" xlink:href="#DejaVuSans-6f"/>
  3298. <use x="1555.714844" xlink:href="#DejaVuSans-73"/>
  3299. <use x="1607.814453" xlink:href="#DejaVuSans-65"/>
  3300. <use x="1669.337891" xlink:href="#DejaVuSans-74"/>
  3301. </g>
  3302. <!-- 3_onoffsteps30preframes90contrast1 -->
  3303. <defs>
  3304. <path d="M 37.109375 75.984375
  3305. L 37.109375 68.5
  3306. L 28.515625 68.5
  3307. Q 23.6875 68.5 21.796875 66.546875
  3308. Q 19.921875 64.59375 19.921875 59.515625
  3309. L 19.921875 54.6875
  3310. L 34.71875 54.6875
  3311. L 34.71875 47.703125
  3312. L 19.921875 47.703125
  3313. L 19.921875 0
  3314. L 10.890625 0
  3315. L 10.890625 47.703125
  3316. L 2.296875 47.703125
  3317. L 2.296875 54.6875
  3318. L 10.890625 54.6875
  3319. L 10.890625 58.5
  3320. Q 10.890625 67.625 15.140625 71.796875
  3321. Q 19.390625 75.984375 28.609375 75.984375
  3322. z
  3323. " id="DejaVuSans-66"/>
  3324. <path d="M 10.984375 1.515625
  3325. L 10.984375 10.5
  3326. Q 14.703125 8.734375 18.5 7.8125
  3327. Q 22.3125 6.890625 25.984375 6.890625
  3328. Q 35.75 6.890625 40.890625 13.453125
  3329. Q 46.046875 20.015625 46.78125 33.40625
  3330. Q 43.953125 29.203125 39.59375 26.953125
  3331. Q 35.25 24.703125 29.984375 24.703125
  3332. Q 19.046875 24.703125 12.671875 31.3125
  3333. Q 6.296875 37.9375 6.296875 49.421875
  3334. Q 6.296875 60.640625 12.9375 67.421875
  3335. Q 19.578125 74.21875 30.609375 74.21875
  3336. Q 43.265625 74.21875 49.921875 64.515625
  3337. Q 56.59375 54.828125 56.59375 36.375
  3338. Q 56.59375 19.140625 48.40625 8.859375
  3339. Q 40.234375 -1.421875 26.421875 -1.421875
  3340. Q 22.703125 -1.421875 18.890625 -0.6875
  3341. Q 15.09375 0.046875 10.984375 1.515625
  3342. z
  3343. M 30.609375 32.421875
  3344. Q 37.25 32.421875 41.125 36.953125
  3345. Q 45.015625 41.5 45.015625 49.421875
  3346. Q 45.015625 57.28125 41.125 61.84375
  3347. Q 37.25 66.40625 30.609375 66.40625
  3348. Q 23.96875 66.40625 20.09375 61.84375
  3349. Q 16.21875 57.28125 16.21875 49.421875
  3350. Q 16.21875 41.5 20.09375 36.953125
  3351. Q 23.96875 32.421875 30.609375 32.421875
  3352. z
  3353. " id="DejaVuSans-39"/>
  3354. <path d="M 48.78125 52.59375
  3355. L 48.78125 44.1875
  3356. Q 44.96875 46.296875 41.140625 47.34375
  3357. Q 37.3125 48.390625 33.40625 48.390625
  3358. Q 24.65625 48.390625 19.8125 42.84375
  3359. Q 14.984375 37.3125 14.984375 27.296875
  3360. Q 14.984375 17.28125 19.8125 11.734375
  3361. Q 24.65625 6.203125 33.40625 6.203125
  3362. Q 37.3125 6.203125 41.140625 7.25
  3363. Q 44.96875 8.296875 48.78125 10.40625
  3364. L 48.78125 2.09375
  3365. Q 45.015625 0.34375 40.984375 -0.53125
  3366. Q 36.96875 -1.421875 32.421875 -1.421875
  3367. Q 20.0625 -1.421875 12.78125 6.34375
  3368. Q 5.515625 14.109375 5.515625 27.296875
  3369. Q 5.515625 40.671875 12.859375 48.328125
  3370. Q 20.21875 56 33.015625 56
  3371. Q 37.15625 56 41.109375 55.140625
  3372. Q 45.0625 54.296875 48.78125 52.59375
  3373. z
  3374. " id="DejaVuSans-63"/>
  3375. </defs>
  3376. <g transform="translate(176.9575 30.423)scale(0.12 -0.12)">
  3377. <use xlink:href="#DejaVuSans-33"/>
  3378. <use x="63.623047" xlink:href="#DejaVuSans-5f"/>
  3379. <use x="113.623047" xlink:href="#DejaVuSans-6f"/>
  3380. <use x="174.804688" xlink:href="#DejaVuSans-6e"/>
  3381. <use x="238.183594" xlink:href="#DejaVuSans-6f"/>
  3382. <use x="299.365234" xlink:href="#DejaVuSans-66"/>
  3383. <use x="334.570312" xlink:href="#DejaVuSans-66"/>
  3384. <use x="369.775391" xlink:href="#DejaVuSans-73"/>
  3385. <use x="421.875" xlink:href="#DejaVuSans-74"/>
  3386. <use x="461.083984" xlink:href="#DejaVuSans-65"/>
  3387. <use x="522.607422" xlink:href="#DejaVuSans-70"/>
  3388. <use x="586.083984" xlink:href="#DejaVuSans-73"/>
  3389. <use x="638.183594" xlink:href="#DejaVuSans-33"/>
  3390. <use x="701.806641" xlink:href="#DejaVuSans-30"/>
  3391. <use x="765.429688" xlink:href="#DejaVuSans-70"/>
  3392. <use x="828.90625" xlink:href="#DejaVuSans-72"/>
  3393. <use x="869.988281" xlink:href="#DejaVuSans-65"/>
  3394. <use x="931.511719" xlink:href="#DejaVuSans-66"/>
  3395. <use x="966.716797" xlink:href="#DejaVuSans-72"/>
  3396. <use x="1007.830078" xlink:href="#DejaVuSans-61"/>
  3397. <use x="1069.109375" xlink:href="#DejaVuSans-6d"/>
  3398. <use x="1166.521484" xlink:href="#DejaVuSans-65"/>
  3399. <use x="1228.044922" xlink:href="#DejaVuSans-73"/>
  3400. <use x="1280.144531" xlink:href="#DejaVuSans-39"/>
  3401. <use x="1343.767578" xlink:href="#DejaVuSans-30"/>
  3402. <use x="1407.390625" xlink:href="#DejaVuSans-63"/>
  3403. <use x="1462.371094" xlink:href="#DejaVuSans-6f"/>
  3404. <use x="1523.552734" xlink:href="#DejaVuSans-6e"/>
  3405. <use x="1586.931641" xlink:href="#DejaVuSans-74"/>
  3406. <use x="1626.140625" xlink:href="#DejaVuSans-72"/>
  3407. <use x="1667.253906" xlink:href="#DejaVuSans-61"/>
  3408. <use x="1728.533203" xlink:href="#DejaVuSans-73"/>
  3409. <use x="1780.632812" xlink:href="#DejaVuSans-74"/>
  3410. <use x="1819.841797" xlink:href="#DejaVuSans-31"/>
  3411. </g>
  3412. <!-- 06001 Rating: 4 -->
  3413. <defs>
  3414. <path d="M 44.390625 34.1875
  3415. Q 47.5625 33.109375 50.5625 29.59375
  3416. Q 53.5625 26.078125 56.59375 19.921875
  3417. L 66.609375 0
  3418. L 56 0
  3419. L 46.6875 18.703125
  3420. Q 43.0625 26.03125 39.671875 28.421875
  3421. Q 36.28125 30.8125 30.421875 30.8125
  3422. L 19.671875 30.8125
  3423. L 19.671875 0
  3424. L 9.8125 0
  3425. L 9.8125 72.90625
  3426. L 32.078125 72.90625
  3427. Q 44.578125 72.90625 50.734375 67.671875
  3428. Q 56.890625 62.453125 56.890625 51.90625
  3429. Q 56.890625 45.015625 53.6875 40.46875
  3430. Q 50.484375 35.9375 44.390625 34.1875
  3431. z
  3432. M 19.671875 64.796875
  3433. L 19.671875 38.921875
  3434. L 32.078125 38.921875
  3435. Q 39.203125 38.921875 42.84375 42.21875
  3436. Q 46.484375 45.515625 46.484375 51.90625
  3437. Q 46.484375 58.296875 42.84375 61.546875
  3438. Q 39.203125 64.796875 32.078125 64.796875
  3439. z
  3440. " id="DejaVuSans-52"/>
  3441. </defs>
  3442. <g transform="translate(241.750938 44.194125)scale(0.12 -0.12)">
  3443. <use xlink:href="#DejaVuSans-30"/>
  3444. <use x="63.623047" xlink:href="#DejaVuSans-36"/>
  3445. <use x="127.246094" xlink:href="#DejaVuSans-30"/>
  3446. <use x="190.869141" xlink:href="#DejaVuSans-30"/>
  3447. <use x="254.492188" xlink:href="#DejaVuSans-31"/>
  3448. <use x="318.115234" xlink:href="#DejaVuSans-20"/>
  3449. <use x="349.902344" xlink:href="#DejaVuSans-52"/>
  3450. <use x="419.353516" xlink:href="#DejaVuSans-61"/>
  3451. <use x="480.632812" xlink:href="#DejaVuSans-74"/>
  3452. <use x="519.841797" xlink:href="#DejaVuSans-69"/>
  3453. <use x="547.625" xlink:href="#DejaVuSans-6e"/>
  3454. <use x="611.003906" xlink:href="#DejaVuSans-67"/>
  3455. <use x="674.480469" xlink:href="#DejaVuSans-3a"/>
  3456. <use x="708.171875" xlink:href="#DejaVuSans-20"/>
  3457. <use x="739.958984" xlink:href="#DejaVuSans-34"/>
  3458. </g>
  3459. <!-- -->
  3460. <g transform="translate(289.965625 57.6315)scale(0.12 -0.12)"/>
  3461. </g>
  3462. </g>
  3463. <defs>
  3464. <clipPath id="p37420677c3">
  3465. <rect height="222.381818" width="502.2" x="46.965625" y="72"/>
  3466. </clipPath>
  3467. <clipPath id="p36783aea58">
  3468. <rect height="222.381818" width="502.2" x="46.965625" y="338.858182"/>
  3469. </clipPath>
  3470. </defs>
  3471. </svg>