00801.svg 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856
  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(#pd16f15ebf9)" 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(#pd16f15ebf9)" 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(#pd16f15ebf9)" 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(#pd16f15ebf9)" 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="m8dfd7c0435" 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="#m8dfd7c0435" 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="#m8dfd7c0435" 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="#m8dfd7c0435" 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="#m8dfd7c0435" 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="#m8dfd7c0435" 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(#pd16f15ebf9)" d="M 52.866475 75.665634
  368. L 52.866475 73.221878
  369. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  370. <path clip-path="url(#pd16f15ebf9)" d="M 240.131833 75.665634
  371. L 240.131833 73.221878
  372. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  373. <path clip-path="url(#pd16f15ebf9)" d="M 301.591069 75.665634
  374. L 301.591069 73.221878
  375. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  376. <path clip-path="url(#pd16f15ebf9)" d="M 487.234321 75.665634
  377. L 487.234321 73.221878
  378. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  379. </g>
  380. <g id="EventCollection_2">
  381. <path clip-path="url(#pd16f15ebf9)" d="M 52.334143 78.109391
  382. L 52.334143 75.665634
  383. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  384. <path clip-path="url(#pd16f15ebf9)" d="M 52.836343 78.109391
  385. L 52.836343 75.665634
  386. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  387. <path clip-path="url(#pd16f15ebf9)" d="M 240.222229 78.109391
  388. L 240.222229 75.665634
  389. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  390. <path clip-path="url(#pd16f15ebf9)" d="M 301.686487 78.109391
  391. L 301.686487 75.665634
  392. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  393. <path clip-path="url(#pd16f15ebf9)" d="M 487.249387 78.109391
  394. L 487.249387 75.665634
  395. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  396. </g>
  397. <g id="EventCollection_3">
  398. <path clip-path="url(#pd16f15ebf9)" d="M 52.846387 80.553147
  399. L 52.846387 78.109391
  400. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  401. <path clip-path="url(#pd16f15ebf9)" d="M 240.172009 80.553147
  402. L 240.172009 78.109391
  403. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  404. <path clip-path="url(#pd16f15ebf9)" d="M 301.721641 80.553147
  405. L 301.721641 78.109391
  406. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  407. <path clip-path="url(#pd16f15ebf9)" d="M 487.359871 80.553147
  408. L 487.359871 78.109391
  409. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  410. </g>
  411. <g id="EventCollection_4">
  412. <path clip-path="url(#pd16f15ebf9)" d="M 52.821277 82.996903
  413. L 52.821277 80.553147
  414. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  415. <path clip-path="url(#pd16f15ebf9)" d="M 240.146899 82.996903
  416. L 240.146899 80.553147
  417. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  418. <path clip-path="url(#pd16f15ebf9)" d="M 301.786927 82.996903
  419. L 301.786927 80.553147
  420. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  421. <path clip-path="url(#pd16f15ebf9)" d="M 487.294585 82.996903
  422. L 487.294585 80.553147
  423. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  424. <path clip-path="url(#pd16f15ebf9)" d="M 489.238099 82.996903
  425. L 489.238099 80.553147
  426. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  427. </g>
  428. <g id="EventCollection_5">
  429. <path clip-path="url(#pd16f15ebf9)" d="M 52.796167 85.440659
  430. L 52.796167 82.996903
  431. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  432. <path clip-path="url(#pd16f15ebf9)" d="M 240.172009 85.440659
  433. L 240.172009 82.996903
  434. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  435. <path clip-path="url(#pd16f15ebf9)" d="M 301.731685 85.440659
  436. L 301.731685 82.996903
  437. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  438. <path clip-path="url(#pd16f15ebf9)" d="M 487.339783 85.440659
  439. L 487.339783 82.996903
  440. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  441. </g>
  442. <g id="EventCollection_6">
  443. <path clip-path="url(#pd16f15ebf9)" d="M 52.851409 87.884416
  444. L 52.851409 85.440659
  445. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  446. <path clip-path="url(#pd16f15ebf9)" d="M 239.760205 87.884416
  447. L 239.760205 85.440659
  448. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  449. <path clip-path="url(#pd16f15ebf9)" d="M 240.141877 87.884416
  450. L 240.141877 85.440659
  451. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  452. <path clip-path="url(#pd16f15ebf9)" d="M 301.776883 87.884416
  453. L 301.776883 85.440659
  454. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  455. <path clip-path="url(#pd16f15ebf9)" d="M 302.284105 87.884416
  456. L 302.284105 85.440659
  457. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  458. <path clip-path="url(#pd16f15ebf9)" d="M 487.329739 87.884416
  459. L 487.329739 85.440659
  460. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  461. <path clip-path="url(#pd16f15ebf9)" d="M 488.936779 87.884416
  462. L 488.936779 85.440659
  463. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  464. </g>
  465. <g id="EventCollection_7">
  466. <path clip-path="url(#pd16f15ebf9)" d="M 52.811233 90.328172
  467. L 52.811233 87.884416
  468. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  469. <path clip-path="url(#pd16f15ebf9)" d="M 240.151921 90.328172
  470. L 240.151921 87.884416
  471. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  472. <path clip-path="url(#pd16f15ebf9)" d="M 301.721641 90.328172
  473. L 301.721641 87.884416
  474. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  475. <path clip-path="url(#pd16f15ebf9)" d="M 487.299607 90.328172
  476. L 487.299607 87.884416
  477. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  478. </g>
  479. <g id="EventCollection_8">
  480. <path clip-path="url(#pd16f15ebf9)" d="M 52.836343 92.771928
  481. L 52.836343 90.328172
  482. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  483. <path clip-path="url(#pd16f15ebf9)" d="M 240.187075 92.771928
  484. L 240.187075 90.328172
  485. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  486. <path clip-path="url(#pd16f15ebf9)" d="M 301.751773 92.771928
  487. L 301.751773 90.328172
  488. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  489. <path clip-path="url(#pd16f15ebf9)" d="M 487.395025 92.771928
  490. L 487.395025 90.328172
  491. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  492. </g>
  493. <g id="EventCollection_9">
  494. <path clip-path="url(#pd16f15ebf9)" d="M 52.816255 95.215684
  495. L 52.816255 92.771928
  496. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  497. <path clip-path="url(#pd16f15ebf9)" d="M 239.755183 95.215684
  498. L 239.755183 92.771928
  499. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  500. <path clip-path="url(#pd16f15ebf9)" d="M 240.227251 95.215684
  501. L 240.227251 92.771928
  502. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  503. <path clip-path="url(#pd16f15ebf9)" d="M 301.837147 95.215684
  504. L 301.837147 92.771928
  505. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  506. <path clip-path="url(#pd16f15ebf9)" d="M 302.469919 95.215684
  507. L 302.469919 92.771928
  508. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  509. <path clip-path="url(#pd16f15ebf9)" d="M 487.329739 95.215684
  510. L 487.329739 92.771928
  511. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  512. </g>
  513. <g id="EventCollection_10">
  514. <path clip-path="url(#pd16f15ebf9)" d="M 52.896607 97.659441
  515. L 52.896607 95.215684
  516. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  517. <path clip-path="url(#pd16f15ebf9)" d="M 240.227251 97.659441
  518. L 240.227251 95.215684
  519. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  520. <path clip-path="url(#pd16f15ebf9)" d="M 301.771861 97.659441
  521. L 301.771861 95.215684
  522. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  523. <path clip-path="url(#pd16f15ebf9)" d="M 487.309651 97.659441
  524. L 487.309651 95.215684
  525. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  526. </g>
  527. <g id="EventCollection_11">
  528. <path clip-path="url(#pd16f15ebf9)" d="M 52.364275 100.103197
  529. L 52.364275 97.659441
  530. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  531. <path clip-path="url(#pd16f15ebf9)" d="M 52.871497 100.103197
  532. L 52.871497 97.659441
  533. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  534. <path clip-path="url(#pd16f15ebf9)" d="M 240.212185 100.103197
  535. L 240.212185 97.659441
  536. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  537. <path clip-path="url(#pd16f15ebf9)" d="M 301.842169 100.103197
  538. L 301.842169 97.659441
  539. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  540. <path clip-path="url(#pd16f15ebf9)" d="M 487.329739 100.103197
  541. L 487.329739 97.659441
  542. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  543. </g>
  544. <g id="EventCollection_12">
  545. <path clip-path="url(#pd16f15ebf9)" d="M 52.811233 102.546953
  546. L 52.811233 100.103197
  547. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  548. <path clip-path="url(#pd16f15ebf9)" d="M 239.669809 102.546953
  549. L 239.669809 100.103197
  550. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  551. <path clip-path="url(#pd16f15ebf9)" d="M 240.121789 102.546953
  552. L 240.121789 100.103197
  553. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  554. <path clip-path="url(#pd16f15ebf9)" d="M 301.842169 102.546953
  555. L 301.842169 100.103197
  556. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  557. <path clip-path="url(#pd16f15ebf9)" d="M 487.344805 102.546953
  558. L 487.344805 100.103197
  559. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  560. </g>
  561. <g id="EventCollection_13">
  562. <path clip-path="url(#pd16f15ebf9)" d="M 52.796167 104.990709
  563. L 52.796167 102.546953
  564. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  565. <path clip-path="url(#pd16f15ebf9)" d="M 239.674831 104.990709
  566. L 239.674831 102.546953
  567. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  568. <path clip-path="url(#pd16f15ebf9)" d="M 240.136855 104.990709
  569. L 240.136855 102.546953
  570. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  571. <path clip-path="url(#pd16f15ebf9)" d="M 301.837147 104.990709
  572. L 301.837147 102.546953
  573. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  574. <path clip-path="url(#pd16f15ebf9)" d="M 487.304629 104.990709
  575. L 487.304629 102.546953
  576. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  577. </g>
  578. <g id="EventCollection_14">
  579. <path clip-path="url(#pd16f15ebf9)" d="M 52.821277 107.434466
  580. L 52.821277 104.990709
  581. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  582. <path clip-path="url(#pd16f15ebf9)" d="M 240.166987 107.434466
  583. L 240.166987 104.990709
  584. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  585. <path clip-path="url(#pd16f15ebf9)" d="M 301.726663 107.434466
  586. L 301.726663 104.990709
  587. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  588. <path clip-path="url(#pd16f15ebf9)" d="M 487.359871 107.434466
  589. L 487.359871 104.990709
  590. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  591. </g>
  592. <g id="EventCollection_15">
  593. <path clip-path="url(#pd16f15ebf9)" d="M 52.841365 109.878222
  594. L 52.841365 107.434466
  595. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  596. <path clip-path="url(#pd16f15ebf9)" d="M 240.207163 109.878222
  597. L 240.207163 107.434466
  598. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  599. <path clip-path="url(#pd16f15ebf9)" d="M 301.917499 109.878222
  600. L 301.917499 107.434466
  601. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  602. <path clip-path="url(#pd16f15ebf9)" d="M 487.334761 109.878222
  603. L 487.334761 107.434466
  604. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  605. </g>
  606. <g id="EventCollection_16">
  607. <path clip-path="url(#pd16f15ebf9)" d="M 52.776079 112.321978
  608. L 52.776079 109.878222
  609. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  610. <path clip-path="url(#pd16f15ebf9)" d="M 240.136855 112.321978
  611. L 240.136855 109.878222
  612. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  613. <path clip-path="url(#pd16f15ebf9)" d="M 301.897411 112.321978
  614. L 301.897411 109.878222
  615. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  616. <path clip-path="url(#pd16f15ebf9)" d="M 487.344805 112.321978
  617. L 487.344805 109.878222
  618. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  619. <path clip-path="url(#pd16f15ebf9)" d="M 488.956867 112.321978
  620. L 488.956867 109.878222
  621. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  622. <path clip-path="url(#pd16f15ebf9)" d="M 490.453423 112.321978
  623. L 490.453423 109.878222
  624. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  625. </g>
  626. <g id="EventCollection_17">
  627. <path clip-path="url(#pd16f15ebf9)" d="M 52.806211 114.765734
  628. L 52.806211 112.321978
  629. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  630. <path clip-path="url(#pd16f15ebf9)" d="M 240.187075 114.765734
  631. L 240.187075 112.321978
  632. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  633. <path clip-path="url(#pd16f15ebf9)" d="M 301.897411 114.765734
  634. L 301.897411 112.321978
  635. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  636. <path clip-path="url(#pd16f15ebf9)" d="M 487.304629 114.765734
  637. L 487.304629 112.321978
  638. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  639. </g>
  640. <g id="EventCollection_18">
  641. <path clip-path="url(#pd16f15ebf9)" d="M 52.776079 117.209491
  642. L 52.776079 114.765734
  643. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  644. <path clip-path="url(#pd16f15ebf9)" d="M 239.694919 117.209491
  645. L 239.694919 114.765734
  646. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  647. <path clip-path="url(#pd16f15ebf9)" d="M 240.161965 117.209491
  648. L 240.161965 114.765734
  649. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  650. <path clip-path="url(#pd16f15ebf9)" d="M 301.867279 117.209491
  651. L 301.867279 114.765734
  652. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  653. <path clip-path="url(#pd16f15ebf9)" d="M 487.400047 117.209491
  654. L 487.400047 114.765734
  655. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  656. </g>
  657. <g id="EventCollection_19">
  658. <path clip-path="url(#pd16f15ebf9)" d="M 52.811233 119.653247
  659. L 52.811233 117.209491
  660. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  661. <path clip-path="url(#pd16f15ebf9)" d="M 239.584435 119.653247
  662. L 239.584435 117.209491
  663. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  664. <path clip-path="url(#pd16f15ebf9)" d="M 240.156943 119.653247
  665. L 240.156943 117.209491
  666. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  667. <path clip-path="url(#pd16f15ebf9)" d="M 301.751773 119.653247
  668. L 301.751773 117.209491
  669. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  670. <path clip-path="url(#pd16f15ebf9)" d="M 487.364893 119.653247
  671. L 487.364893 117.209491
  672. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  673. </g>
  674. <g id="EventCollection_20">
  675. <path clip-path="url(#pd16f15ebf9)" d="M 52.761013 122.097003
  676. L 52.761013 119.653247
  677. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  678. <path clip-path="url(#pd16f15ebf9)" d="M 240.202141 122.097003
  679. L 240.202141 119.653247
  680. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  681. <path clip-path="url(#pd16f15ebf9)" d="M 301.736707 122.097003
  682. L 301.736707 119.653247
  683. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  684. <path clip-path="url(#pd16f15ebf9)" d="M 487.319695 122.097003
  685. L 487.319695 119.653247
  686. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  687. <path clip-path="url(#pd16f15ebf9)" d="M 489.268231 122.097003
  688. L 489.268231 119.653247
  689. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  690. </g>
  691. <g id="EventCollection_21">
  692. <path clip-path="url(#pd16f15ebf9)" d="M 52.359253 124.540759
  693. L 52.359253 122.097003
  694. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  695. <path clip-path="url(#pd16f15ebf9)" d="M 52.806211 124.540759
  696. L 52.806211 122.097003
  697. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  698. <path clip-path="url(#pd16f15ebf9)" d="M 240.207163 124.540759
  699. L 240.207163 122.097003
  700. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  701. <path clip-path="url(#pd16f15ebf9)" d="M 301.897411 124.540759
  702. L 301.897411 122.097003
  703. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  704. <path clip-path="url(#pd16f15ebf9)" d="M 487.415113 124.540759
  705. L 487.415113 122.097003
  706. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  707. <path clip-path="url(#pd16f15ebf9)" d="M 491.081173 124.540759
  708. L 491.081173 122.097003
  709. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  710. <path clip-path="url(#pd16f15ebf9)" d="M 492.939313 124.540759
  711. L 492.939313 122.097003
  712. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  713. </g>
  714. <g id="EventCollection_22">
  715. <path clip-path="url(#pd16f15ebf9)" d="M 52.816255 126.984515
  716. L 52.816255 124.540759
  717. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  718. <path clip-path="url(#pd16f15ebf9)" d="M 240.187075 126.984515
  719. L 240.187075 124.540759
  720. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  721. <path clip-path="url(#pd16f15ebf9)" d="M 301.922521 126.984515
  722. L 301.922521 124.540759
  723. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  724. <path clip-path="url(#pd16f15ebf9)" d="M 487.329739 126.984515
  725. L 487.329739 124.540759
  726. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  727. <path clip-path="url(#pd16f15ebf9)" d="M 489.484177 126.984515
  728. L 489.484177 124.540759
  729. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  730. </g>
  731. <g id="EventCollection_23">
  732. <path clip-path="url(#pd16f15ebf9)" d="M 52.846387 129.428272
  733. L 52.846387 126.984515
  734. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  735. <path clip-path="url(#pd16f15ebf9)" d="M 239.684875 129.428272
  736. L 239.684875 126.984515
  737. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  738. <path clip-path="url(#pd16f15ebf9)" d="M 240.166987 129.428272
  739. L 240.166987 126.984515
  740. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  741. <path clip-path="url(#pd16f15ebf9)" d="M 301.892389 129.428272
  742. L 301.892389 126.984515
  743. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  744. <path clip-path="url(#pd16f15ebf9)" d="M 487.384981 129.428272
  745. L 487.384981 126.984515
  746. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  747. </g>
  748. <g id="EventCollection_24">
  749. <path clip-path="url(#pd16f15ebf9)" d="M 52.334143 131.872028
  750. L 52.334143 129.428272
  751. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  752. <path clip-path="url(#pd16f15ebf9)" d="M 52.821277 131.872028
  753. L 52.821277 129.428272
  754. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  755. <path clip-path="url(#pd16f15ebf9)" d="M 240.227251 131.872028
  756. L 240.227251 129.428272
  757. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  758. <path clip-path="url(#pd16f15ebf9)" d="M 301.907455 131.872028
  759. L 301.907455 129.428272
  760. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  761. <path clip-path="url(#pd16f15ebf9)" d="M 302.575381 131.872028
  762. L 302.575381 129.428272
  763. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  764. <path clip-path="url(#pd16f15ebf9)" d="M 487.339783 131.872028
  765. L 487.339783 129.428272
  766. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  767. </g>
  768. <g id="EventCollection_25">
  769. <path clip-path="url(#pd16f15ebf9)" d="M 52.720837 134.315784
  770. L 52.720837 131.872028
  771. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  772. <path clip-path="url(#pd16f15ebf9)" d="M 240.227251 134.315784
  773. L 240.227251 131.872028
  774. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  775. <path clip-path="url(#pd16f15ebf9)" d="M 301.932565 134.315784
  776. L 301.932565 131.872028
  777. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  778. <path clip-path="url(#pd16f15ebf9)" d="M 302.253973 134.315784
  779. L 302.253973 131.872028
  780. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  781. <path clip-path="url(#pd16f15ebf9)" d="M 487.359871 134.315784
  782. L 487.359871 131.872028
  783. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  784. </g>
  785. <g id="EventCollection_26">
  786. <path clip-path="url(#pd16f15ebf9)" d="M 52.826299 136.75954
  787. L 52.826299 134.315784
  788. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  789. <path clip-path="url(#pd16f15ebf9)" d="M 240.106723 136.75954
  790. L 240.106723 134.315784
  791. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  792. <path clip-path="url(#pd16f15ebf9)" d="M 301.942609 136.75954
  793. L 301.942609 134.315784
  794. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  795. <path clip-path="url(#pd16f15ebf9)" d="M 487.369915 136.75954
  796. L 487.369915 134.315784
  797. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  798. </g>
  799. <g id="EventCollection_27">
  800. <path clip-path="url(#pd16f15ebf9)" d="M 52.841365 139.203297
  801. L 52.841365 136.75954
  802. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  803. <path clip-path="url(#pd16f15ebf9)" d="M 240.227251 139.203297
  804. L 240.227251 136.75954
  805. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  806. <path clip-path="url(#pd16f15ebf9)" d="M 301.892389 139.203297
  807. L 301.892389 136.75954
  808. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  809. <path clip-path="url(#pd16f15ebf9)" d="M 487.384981 139.203297
  810. L 487.384981 136.75954
  811. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  812. </g>
  813. <g id="EventCollection_28">
  814. <path clip-path="url(#pd16f15ebf9)" d="M 52.776079 141.647053
  815. L 52.776079 139.203297
  816. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  817. <path clip-path="url(#pd16f15ebf9)" d="M 239.609545 141.647053
  818. L 239.609545 139.203297
  819. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  820. <path clip-path="url(#pd16f15ebf9)" d="M 240.106723 141.647053
  821. L 240.106723 139.203297
  822. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  823. <path clip-path="url(#pd16f15ebf9)" d="M 301.887367 141.647053
  824. L 301.887367 139.203297
  825. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  826. <path clip-path="url(#pd16f15ebf9)" d="M 487.435201 141.647053
  827. L 487.435201 139.203297
  828. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  829. </g>
  830. <g id="EventCollection_29">
  831. <path clip-path="url(#pd16f15ebf9)" d="M 52.816255 144.090809
  832. L 52.816255 141.647053
  833. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  834. <path clip-path="url(#pd16f15ebf9)" d="M 240.207163 144.090809
  835. L 240.207163 141.647053
  836. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  837. <path clip-path="url(#pd16f15ebf9)" d="M 301.877323 144.090809
  838. L 301.877323 141.647053
  839. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  840. <path clip-path="url(#pd16f15ebf9)" d="M 487.384981 144.090809
  841. L 487.384981 141.647053
  842. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  843. </g>
  844. <g id="EventCollection_30">
  845. <path clip-path="url(#pd16f15ebf9)" d="M 52.811233 146.534565
  846. L 52.811233 144.090809
  847. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  848. <path clip-path="url(#pd16f15ebf9)" d="M 239.699941 146.534565
  849. L 239.699941 144.090809
  850. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  851. <path clip-path="url(#pd16f15ebf9)" d="M 240.182053 146.534565
  852. L 240.182053 144.090809
  853. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  854. <path clip-path="url(#pd16f15ebf9)" d="M 301.977763 146.534565
  855. L 301.977763 144.090809
  856. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  857. <path clip-path="url(#pd16f15ebf9)" d="M 487.379959 146.534565
  858. L 487.379959 144.090809
  859. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  860. </g>
  861. <g id="EventCollection_31">
  862. <path clip-path="url(#pd16f15ebf9)" d="M 52.841365 148.978322
  863. L 52.841365 146.534565
  864. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  865. <path clip-path="url(#pd16f15ebf9)" d="M 240.232273 148.978322
  866. L 240.232273 146.534565
  867. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  868. <path clip-path="url(#pd16f15ebf9)" d="M 301.977763 148.978322
  869. L 301.977763 146.534565
  870. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  871. <path clip-path="url(#pd16f15ebf9)" d="M 487.334761 148.978322
  872. L 487.334761 146.534565
  873. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  874. </g>
  875. <g id="EventCollection_32">
  876. <path clip-path="url(#pd16f15ebf9)" d="M 52.861453 151.422078
  877. L 52.861453 148.978322
  878. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  879. <path clip-path="url(#pd16f15ebf9)" d="M 240.172009 151.422078
  880. L 240.172009 148.978322
  881. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  882. <path clip-path="url(#pd16f15ebf9)" d="M 301.872301 151.422078
  883. L 301.872301 148.978322
  884. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  885. <path clip-path="url(#pd16f15ebf9)" d="M 487.400047 151.422078
  886. L 487.400047 148.978322
  887. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  888. </g>
  889. <g id="EventCollection_33">
  890. <path clip-path="url(#pd16f15ebf9)" d="M 52.791145 153.865834
  891. L 52.791145 151.422078
  892. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  893. <path clip-path="url(#pd16f15ebf9)" d="M 240.166987 153.865834
  894. L 240.166987 151.422078
  895. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  896. <path clip-path="url(#pd16f15ebf9)" d="M 302.012917 153.865834
  897. L 302.012917 151.422078
  898. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  899. <path clip-path="url(#pd16f15ebf9)" d="M 487.374937 153.865834
  900. L 487.374937 151.422078
  901. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  902. </g>
  903. <g id="EventCollection_34">
  904. <path clip-path="url(#pd16f15ebf9)" d="M 52.841365 156.30959
  905. L 52.841365 153.865834
  906. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  907. <path clip-path="url(#pd16f15ebf9)" d="M 240.172009 156.30959
  908. L 240.172009 153.865834
  909. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  910. <path clip-path="url(#pd16f15ebf9)" d="M 301.902433 156.30959
  911. L 301.902433 153.865834
  912. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  913. <path clip-path="url(#pd16f15ebf9)" d="M 487.339783 156.30959
  914. L 487.339783 153.865834
  915. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  916. </g>
  917. <g id="EventCollection_35">
  918. <path clip-path="url(#pd16f15ebf9)" d="M 52.826299 158.753347
  919. L 52.826299 156.30959
  920. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  921. <path clip-path="url(#pd16f15ebf9)" d="M 240.262405 158.753347
  922. L 240.262405 156.30959
  923. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  924. <path clip-path="url(#pd16f15ebf9)" d="M 301.977763 158.753347
  925. L 301.977763 156.30959
  926. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  927. <path clip-path="url(#pd16f15ebf9)" d="M 487.369915 158.753347
  928. L 487.369915 156.30959
  929. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  930. </g>
  931. <g id="EventCollection_36">
  932. <path clip-path="url(#pd16f15ebf9)" d="M 52.826299 161.197103
  933. L 52.826299 158.753347
  934. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  935. <path clip-path="url(#pd16f15ebf9)" d="M 240.177031 161.197103
  936. L 240.177031 158.753347
  937. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  938. <path clip-path="url(#pd16f15ebf9)" d="M 301.947631 161.197103
  939. L 301.947631 158.753347
  940. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  941. <path clip-path="url(#pd16f15ebf9)" d="M 487.359871 161.197103
  942. L 487.359871 158.753347
  943. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  944. </g>
  945. <g id="EventCollection_37">
  946. <path clip-path="url(#pd16f15ebf9)" d="M 52.841365 163.640859
  947. L 52.841365 161.197103
  948. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  949. <path clip-path="url(#pd16f15ebf9)" d="M 239.725051 163.640859
  950. L 239.725051 161.197103
  951. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  952. <path clip-path="url(#pd16f15ebf9)" d="M 240.192097 163.640859
  953. L 240.192097 161.197103
  954. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  955. <path clip-path="url(#pd16f15ebf9)" d="M 302.017939 163.640859
  956. L 302.017939 161.197103
  957. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  958. <path clip-path="url(#pd16f15ebf9)" d="M 487.384981 163.640859
  959. L 487.384981 161.197103
  960. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  961. </g>
  962. <g id="EventCollection_38">
  963. <path clip-path="url(#pd16f15ebf9)" d="M 52.555111 166.084615
  964. L 52.555111 163.640859
  965. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  966. <path clip-path="url(#pd16f15ebf9)" d="M 52.831321 166.084615
  967. L 52.831321 163.640859
  968. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  969. <path clip-path="url(#pd16f15ebf9)" d="M 240.131833 166.084615
  970. L 240.131833 163.640859
  971. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  972. <path clip-path="url(#pd16f15ebf9)" d="M 302.007895 166.084615
  973. L 302.007895 163.640859
  974. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  975. <path clip-path="url(#pd16f15ebf9)" d="M 310.560361 166.084615
  976. L 310.560361 163.640859
  977. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  978. <path clip-path="url(#pd16f15ebf9)" d="M 487.369915 166.084615
  979. L 487.369915 163.640859
  980. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  981. </g>
  982. <g id="EventCollection_39">
  983. <path clip-path="url(#pd16f15ebf9)" d="M 52.851409 168.528372
  984. L 52.851409 166.084615
  985. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  986. <path clip-path="url(#pd16f15ebf9)" d="M 240.237295 168.528372
  987. L 240.237295 166.084615
  988. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  989. <path clip-path="url(#pd16f15ebf9)" d="M 302.022961 168.528372
  990. L 302.022961 166.084615
  991. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  992. <path clip-path="url(#pd16f15ebf9)" d="M 487.400047 168.528372
  993. L 487.400047 166.084615
  994. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  995. <path clip-path="url(#pd16f15ebf9)" d="M 492.517465 168.528372
  996. L 492.517465 166.084615
  997. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  998. </g>
  999. <g id="EventCollection_40">
  1000. <path clip-path="url(#pd16f15ebf9)" d="M 52.846387 170.972128
  1001. L 52.846387 168.528372
  1002. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1003. <path clip-path="url(#pd16f15ebf9)" d="M 240.227251 170.972128
  1004. L 240.227251 168.528372
  1005. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1006. <path clip-path="url(#pd16f15ebf9)" d="M 301.972741 170.972128
  1007. L 301.972741 168.528372
  1008. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1009. <path clip-path="url(#pd16f15ebf9)" d="M 487.374937 170.972128
  1010. L 487.374937 168.528372
  1011. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1012. </g>
  1013. <g id="EventCollection_41">
  1014. <path clip-path="url(#pd16f15ebf9)" d="M 52.871497 173.415884
  1015. L 52.871497 170.972128
  1016. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1017. <path clip-path="url(#pd16f15ebf9)" d="M 240.172009 173.415884
  1018. L 240.172009 170.972128
  1019. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1020. <path clip-path="url(#pd16f15ebf9)" d="M 301.942609 173.415884
  1021. L 301.942609 170.972128
  1022. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1023. <path clip-path="url(#pd16f15ebf9)" d="M 302.600491 173.415884
  1024. L 302.600491 170.972128
  1025. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1026. <path clip-path="url(#pd16f15ebf9)" d="M 487.379959 173.415884
  1027. L 487.379959 170.972128
  1028. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1029. </g>
  1030. <g id="EventCollection_42">
  1031. <path clip-path="url(#pd16f15ebf9)" d="M 52.841365 175.85964
  1032. L 52.841365 173.415884
  1033. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1034. <path clip-path="url(#pd16f15ebf9)" d="M 240.287515 175.85964
  1035. L 240.287515 173.415884
  1036. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1037. <path clip-path="url(#pd16f15ebf9)" d="M 301.977763 175.85964
  1038. L 301.977763 173.415884
  1039. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1040. <path clip-path="url(#pd16f15ebf9)" d="M 487.450267 175.85964
  1041. L 487.450267 173.415884
  1042. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1043. </g>
  1044. <g id="EventCollection_43">
  1045. <path clip-path="url(#pd16f15ebf9)" d="M 52.826299 178.303397
  1046. L 52.826299 175.85964
  1047. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1048. <path clip-path="url(#pd16f15ebf9)" d="M 239.679853 178.303397
  1049. L 239.679853 175.85964
  1050. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1051. <path clip-path="url(#pd16f15ebf9)" d="M 240.207163 178.303397
  1052. L 240.207163 175.85964
  1053. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1054. <path clip-path="url(#pd16f15ebf9)" d="M 301.997851 178.303397
  1055. L 301.997851 175.85964
  1056. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1057. <path clip-path="url(#pd16f15ebf9)" d="M 487.384981 178.303397
  1058. L 487.384981 175.85964
  1059. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1060. <path clip-path="url(#pd16f15ebf9)" d="M 488.826295 178.303397
  1061. L 488.826295 175.85964
  1062. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1063. <path clip-path="url(#pd16f15ebf9)" d="M 490.086817 178.303397
  1064. L 490.086817 175.85964
  1065. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1066. </g>
  1067. <g id="EventCollection_44">
  1068. <path clip-path="url(#pd16f15ebf9)" d="M 52.831321 180.747153
  1069. L 52.831321 178.303397
  1070. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1071. <path clip-path="url(#pd16f15ebf9)" d="M 240.292537 180.747153
  1072. L 240.292537 178.303397
  1073. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1074. <path clip-path="url(#pd16f15ebf9)" d="M 302.083225 180.747153
  1075. L 302.083225 178.303397
  1076. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1077. <path clip-path="url(#pd16f15ebf9)" d="M 487.364893 180.747153
  1078. L 487.364893 178.303397
  1079. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1080. <path clip-path="url(#pd16f15ebf9)" d="M 488.444623 180.747153
  1081. L 488.444623 178.303397
  1082. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1083. </g>
  1084. <g id="EventCollection_45">
  1085. <path clip-path="url(#pd16f15ebf9)" d="M 52.831321 183.190909
  1086. L 52.831321 180.747153
  1087. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1088. <path clip-path="url(#pd16f15ebf9)" d="M 240.267427 183.190909
  1089. L 240.267427 180.747153
  1090. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1091. <path clip-path="url(#pd16f15ebf9)" d="M 301.992829 183.190909
  1092. L 301.992829 180.747153
  1093. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1094. <path clip-path="url(#pd16f15ebf9)" d="M 487.500487 183.190909
  1095. L 487.500487 180.747153
  1096. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1097. <path clip-path="url(#pd16f15ebf9)" d="M 489.956245 183.190909
  1098. L 489.956245 180.747153
  1099. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1100. <path clip-path="url(#pd16f15ebf9)" d="M 491.171569 183.190909
  1101. L 491.171569 180.747153
  1102. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1103. </g>
  1104. <g id="EventCollection_46">
  1105. <path clip-path="url(#pd16f15ebf9)" d="M 52.228681 185.634665
  1106. L 52.228681 183.190909
  1107. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1108. <path clip-path="url(#pd16f15ebf9)" d="M 52.851409 185.634665
  1109. L 52.851409 183.190909
  1110. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1111. <path clip-path="url(#pd16f15ebf9)" d="M 240.247339 185.634665
  1112. L 240.247339 183.190909
  1113. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1114. <path clip-path="url(#pd16f15ebf9)" d="M 302.078203 185.634665
  1115. L 302.078203 183.190909
  1116. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1117. <path clip-path="url(#pd16f15ebf9)" d="M 487.420135 185.634665
  1118. L 487.420135 183.190909
  1119. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1120. </g>
  1121. <g id="EventCollection_47">
  1122. <path clip-path="url(#pd16f15ebf9)" d="M 52.876519 188.078422
  1123. L 52.876519 185.634665
  1124. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1125. <path clip-path="url(#pd16f15ebf9)" d="M 240.177031 188.078422
  1126. L 240.177031 185.634665
  1127. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1128. <path clip-path="url(#pd16f15ebf9)" d="M 301.992829 188.078422
  1129. L 301.992829 185.634665
  1130. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1131. <path clip-path="url(#pd16f15ebf9)" d="M 487.405069 188.078422
  1132. L 487.405069 185.634665
  1133. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1134. <path clip-path="url(#pd16f15ebf9)" d="M 487.646125 188.078422
  1135. L 487.646125 185.634665
  1136. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1137. </g>
  1138. <g id="EventCollection_48">
  1139. <path clip-path="url(#pd16f15ebf9)" d="M 52.896607 190.522178
  1140. L 52.896607 188.078422
  1141. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1142. <path clip-path="url(#pd16f15ebf9)" d="M 240.202141 190.522178
  1143. L 240.202141 188.078422
  1144. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1145. <path clip-path="url(#pd16f15ebf9)" d="M 301.987807 190.522178
  1146. L 301.987807 188.078422
  1147. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1148. <path clip-path="url(#pd16f15ebf9)" d="M 487.390003 190.522178
  1149. L 487.390003 188.078422
  1150. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1151. </g>
  1152. <g id="EventCollection_49">
  1153. <path clip-path="url(#pd16f15ebf9)" d="M 52.786123 192.965934
  1154. L 52.786123 190.522178
  1155. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1156. <path clip-path="url(#pd16f15ebf9)" d="M 240.207163 192.965934
  1157. L 240.207163 190.522178
  1158. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1159. <path clip-path="url(#pd16f15ebf9)" d="M 302.022961 192.965934
  1160. L 302.022961 190.522178
  1161. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1162. <path clip-path="url(#pd16f15ebf9)" d="M 487.420135 192.965934
  1163. L 487.420135 190.522178
  1164. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1165. </g>
  1166. <g id="EventCollection_50">
  1167. <path clip-path="url(#pd16f15ebf9)" d="M 52.158373 195.40969
  1168. L 52.158373 192.965934
  1169. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1170. <path clip-path="url(#pd16f15ebf9)" d="M 52.856431 195.40969
  1171. L 52.856431 192.965934
  1172. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1173. <path clip-path="url(#pd16f15ebf9)" d="M 239.825491 195.40969
  1174. L 239.825491 192.965934
  1175. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1176. <path clip-path="url(#pd16f15ebf9)" d="M 240.287515 195.40969
  1177. L 240.287515 192.965934
  1178. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1179. <path clip-path="url(#pd16f15ebf9)" d="M 302.043049 195.40969
  1180. L 302.043049 192.965934
  1181. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1182. <path clip-path="url(#pd16f15ebf9)" d="M 487.415113 195.40969
  1183. L 487.415113 192.965934
  1184. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1185. <path clip-path="url(#pd16f15ebf9)" d="M 489.393781 195.40969
  1186. L 489.393781 192.965934
  1187. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1188. </g>
  1189. <g id="EventCollection_51">
  1190. <path clip-path="url(#pd16f15ebf9)" d="M 52.886563 197.853447
  1191. L 52.886563 195.40969
  1192. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1193. <path clip-path="url(#pd16f15ebf9)" d="M 240.317647 197.853447
  1194. L 240.317647 195.40969
  1195. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1196. <path clip-path="url(#pd16f15ebf9)" d="M 302.053093 197.853447
  1197. L 302.053093 195.40969
  1198. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1199. <path clip-path="url(#pd16f15ebf9)" d="M 487.430179 197.853447
  1200. L 487.430179 195.40969
  1201. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1202. </g>
  1203. <g id="EventCollection_52">
  1204. <path clip-path="url(#pd16f15ebf9)" d="M 52.871497 200.297203
  1205. L 52.871497 197.853447
  1206. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1207. <path clip-path="url(#pd16f15ebf9)" d="M 240.312625 200.297203
  1208. L 240.312625 197.853447
  1209. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1210. <path clip-path="url(#pd16f15ebf9)" d="M 302.098291 200.297203
  1211. L 302.098291 197.853447
  1212. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1213. <path clip-path="url(#pd16f15ebf9)" d="M 487.465333 200.297203
  1214. L 487.465333 197.853447
  1215. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1216. <path clip-path="url(#pd16f15ebf9)" d="M 488.971933 200.297203
  1217. L 488.971933 197.853447
  1218. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1219. </g>
  1220. <g id="EventCollection_53">
  1221. <path clip-path="url(#pd16f15ebf9)" d="M 52.866475 202.740959
  1222. L 52.866475 200.297203
  1223. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1224. <path clip-path="url(#pd16f15ebf9)" d="M 239.730073 202.740959
  1225. L 239.730073 200.297203
  1226. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1227. <path clip-path="url(#pd16f15ebf9)" d="M 240.222229 202.740959
  1228. L 240.222229 200.297203
  1229. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1230. <path clip-path="url(#pd16f15ebf9)" d="M 302.058115 202.740959
  1231. L 302.058115 200.297203
  1232. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1233. <path clip-path="url(#pd16f15ebf9)" d="M 487.470355 202.740959
  1234. L 487.470355 200.297203
  1235. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1236. </g>
  1237. <g id="EventCollection_54">
  1238. <path clip-path="url(#pd16f15ebf9)" d="M 52.871497 205.184715
  1239. L 52.871497 202.740959
  1240. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1241. <path clip-path="url(#pd16f15ebf9)" d="M 239.865667 205.184715
  1242. L 239.865667 202.740959
  1243. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1244. <path clip-path="url(#pd16f15ebf9)" d="M 240.297559 205.184715
  1245. L 240.297559 202.740959
  1246. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1247. <path clip-path="url(#pd16f15ebf9)" d="M 302.053093 205.184715
  1248. L 302.053093 202.740959
  1249. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1250. <path clip-path="url(#pd16f15ebf9)" d="M 487.470355 205.184715
  1251. L 487.470355 202.740959
  1252. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1253. </g>
  1254. <g id="EventCollection_55">
  1255. <path clip-path="url(#pd16f15ebf9)" d="M 52.881541 207.628472
  1256. L 52.881541 205.184715
  1257. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1258. <path clip-path="url(#pd16f15ebf9)" d="M 239.770249 207.628472
  1259. L 239.770249 205.184715
  1260. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1261. <path clip-path="url(#pd16f15ebf9)" d="M 240.297559 207.628472
  1262. L 240.297559 205.184715
  1263. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1264. <path clip-path="url(#pd16f15ebf9)" d="M 302.073181 207.628472
  1265. L 302.073181 205.184715
  1266. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1267. <path clip-path="url(#pd16f15ebf9)" d="M 487.485421 207.628472
  1268. L 487.485421 205.184715
  1269. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1270. </g>
  1271. <g id="EventCollection_56">
  1272. <path clip-path="url(#pd16f15ebf9)" d="M 52.906651 210.072228
  1273. L 52.906651 207.628472
  1274. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1275. <path clip-path="url(#pd16f15ebf9)" d="M 240.307603 210.072228
  1276. L 240.307603 207.628472
  1277. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1278. <path clip-path="url(#pd16f15ebf9)" d="M 302.063137 210.072228
  1279. L 302.063137 207.628472
  1280. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1281. <path clip-path="url(#pd16f15ebf9)" d="M 487.445245 210.072228
  1282. L 487.445245 207.628472
  1283. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1284. </g>
  1285. <g id="EventCollection_57">
  1286. <path clip-path="url(#pd16f15ebf9)" d="M 52.891585 212.515984
  1287. L 52.891585 210.072228
  1288. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1289. <path clip-path="url(#pd16f15ebf9)" d="M 239.830513 212.515984
  1290. L 239.830513 210.072228
  1291. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1292. <path clip-path="url(#pd16f15ebf9)" d="M 240.357823 212.515984
  1293. L 240.357823 210.072228
  1294. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1295. <path clip-path="url(#pd16f15ebf9)" d="M 302.078203 212.515984
  1296. L 302.078203 210.072228
  1297. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1298. <path clip-path="url(#pd16f15ebf9)" d="M 487.440223 212.515984
  1299. L 487.440223 210.072228
  1300. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1301. </g>
  1302. <g id="EventCollection_58">
  1303. <path clip-path="url(#pd16f15ebf9)" d="M 52.881541 214.95974
  1304. L 52.881541 212.515984
  1305. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1306. <path clip-path="url(#pd16f15ebf9)" d="M 237.902065 214.95974
  1307. L 237.902065 212.515984
  1308. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1309. <path clip-path="url(#pd16f15ebf9)" d="M 240.277471 214.95974
  1310. L 240.277471 212.515984
  1311. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1312. <path clip-path="url(#pd16f15ebf9)" d="M 302.133445 214.95974
  1313. L 302.133445 212.515984
  1314. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1315. <path clip-path="url(#pd16f15ebf9)" d="M 487.450267 214.95974
  1316. L 487.450267 212.515984
  1317. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1318. <path clip-path="url(#pd16f15ebf9)" d="M 494.003977 214.95974
  1319. L 494.003977 212.515984
  1320. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1321. </g>
  1322. <g id="EventCollection_59">
  1323. <path clip-path="url(#pd16f15ebf9)" d="M 52.791145 217.403497
  1324. L 52.791145 214.95974
  1325. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1326. <path clip-path="url(#pd16f15ebf9)" d="M 240.312625 217.403497
  1327. L 240.312625 214.95974
  1328. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1329. <path clip-path="url(#pd16f15ebf9)" d="M 302.022961 217.403497
  1330. L 302.022961 214.95974
  1331. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1332. <path clip-path="url(#pd16f15ebf9)" d="M 487.425157 217.403497
  1333. L 487.425157 214.95974
  1334. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1335. </g>
  1336. <g id="EventCollection_60">
  1337. <path clip-path="url(#pd16f15ebf9)" d="M 52.921717 219.847253
  1338. L 52.921717 217.403497
  1339. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1340. <path clip-path="url(#pd16f15ebf9)" d="M 240.317647 219.847253
  1341. L 240.317647 217.403497
  1342. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1343. <path clip-path="url(#pd16f15ebf9)" d="M 302.133445 219.847253
  1344. L 302.133445 217.403497
  1345. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1346. <path clip-path="url(#pd16f15ebf9)" d="M 487.430179 219.847253
  1347. L 487.430179 217.403497
  1348. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1349. </g>
  1350. <g id="EventCollection_61">
  1351. <path clip-path="url(#pd16f15ebf9)" d="M 52.906651 222.291009
  1352. L 52.906651 219.847253
  1353. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1354. <path clip-path="url(#pd16f15ebf9)" d="M 240.247339 222.291009
  1355. L 240.247339 219.847253
  1356. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1357. <path clip-path="url(#pd16f15ebf9)" d="M 302.038027 222.291009
  1358. L 302.038027 219.847253
  1359. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1360. <path clip-path="url(#pd16f15ebf9)" d="M 487.420135 222.291009
  1361. L 487.420135 219.847253
  1362. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1363. </g>
  1364. <g id="EventCollection_62">
  1365. <path clip-path="url(#pd16f15ebf9)" d="M 52.886563 224.734765
  1366. L 52.886563 222.291009
  1367. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1368. <path clip-path="url(#pd16f15ebf9)" d="M 239.925931 224.734765
  1369. L 239.925931 222.291009
  1370. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1371. <path clip-path="url(#pd16f15ebf9)" d="M 240.327691 224.734765
  1372. L 240.327691 222.291009
  1373. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1374. <path clip-path="url(#pd16f15ebf9)" d="M 302.148511 224.734765
  1375. L 302.148511 222.291009
  1376. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1377. <path clip-path="url(#pd16f15ebf9)" d="M 487.420135 224.734765
  1378. L 487.420135 222.291009
  1379. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1380. <path clip-path="url(#pd16f15ebf9)" d="M 487.696345 224.734765
  1381. L 487.696345 222.291009
  1382. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1383. <path clip-path="url(#pd16f15ebf9)" d="M 489.142681 224.734765
  1384. L 489.142681 222.291009
  1385. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1386. </g>
  1387. <g id="EventCollection_63">
  1388. <path clip-path="url(#pd16f15ebf9)" d="M 52.831321 227.178521
  1389. L 52.831321 224.734765
  1390. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1391. <path clip-path="url(#pd16f15ebf9)" d="M 240.272449 227.178521
  1392. L 240.272449 224.734765
  1393. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1394. <path clip-path="url(#pd16f15ebf9)" d="M 302.022961 227.178521
  1395. L 302.022961 224.734765
  1396. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1397. <path clip-path="url(#pd16f15ebf9)" d="M 302.520139 227.178521
  1398. L 302.520139 224.734765
  1399. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1400. <path clip-path="url(#pd16f15ebf9)" d="M 487.435201 227.178521
  1401. L 487.435201 224.734765
  1402. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1403. </g>
  1404. <g id="EventCollection_64">
  1405. <path clip-path="url(#pd16f15ebf9)" d="M 52.901629 229.622278
  1406. L 52.901629 227.178521
  1407. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1408. <path clip-path="url(#pd16f15ebf9)" d="M 240.312625 229.622278
  1409. L 240.312625 227.178521
  1410. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1411. <path clip-path="url(#pd16f15ebf9)" d="M 301.947631 229.622278
  1412. L 301.947631 227.178521
  1413. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1414. <path clip-path="url(#pd16f15ebf9)" d="M 302.560315 229.622278
  1415. L 302.560315 227.178521
  1416. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1417. <path clip-path="url(#pd16f15ebf9)" d="M 487.460311 229.622278
  1418. L 487.460311 227.178521
  1419. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1420. <path clip-path="url(#pd16f15ebf9)" d="M 491.990155 229.622278
  1421. L 491.990155 227.178521
  1422. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1423. <path clip-path="url(#pd16f15ebf9)" d="M 493.923625 229.622278
  1424. L 493.923625 227.178521
  1425. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1426. </g>
  1427. <g id="EventCollection_65">
  1428. <path clip-path="url(#pd16f15ebf9)" d="M 52.881541 232.066034
  1429. L 52.881541 229.622278
  1430. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1431. <path clip-path="url(#pd16f15ebf9)" d="M 239.790337 232.066034
  1432. L 239.790337 229.622278
  1433. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1434. <path clip-path="url(#pd16f15ebf9)" d="M 240.342757 232.066034
  1435. L 240.342757 229.622278
  1436. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1437. <path clip-path="url(#pd16f15ebf9)" d="M 302.093269 232.066034
  1438. L 302.093269 229.622278
  1439. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1440. <path clip-path="url(#pd16f15ebf9)" d="M 487.455289 232.066034
  1441. L 487.455289 229.622278
  1442. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1443. </g>
  1444. <g id="EventCollection_66">
  1445. <path clip-path="url(#pd16f15ebf9)" d="M 52.901629 234.50979
  1446. L 52.901629 232.066034
  1447. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1448. <path clip-path="url(#pd16f15ebf9)" d="M 240.297559 234.50979
  1449. L 240.297559 232.066034
  1450. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1451. <path clip-path="url(#pd16f15ebf9)" d="M 302.133445 234.50979
  1452. L 302.133445 232.066034
  1453. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1454. <path clip-path="url(#pd16f15ebf9)" d="M 487.495465 234.50979
  1455. L 487.495465 232.066034
  1456. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1457. </g>
  1458. <g id="EventCollection_67">
  1459. <path clip-path="url(#pd16f15ebf9)" d="M 52.605331 236.953546
  1460. L 52.605331 234.50979
  1461. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1462. <path clip-path="url(#pd16f15ebf9)" d="M 52.911673 236.953546
  1463. L 52.911673 234.50979
  1464. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1465. <path clip-path="url(#pd16f15ebf9)" d="M 240.387955 236.953546
  1466. L 240.387955 234.50979
  1467. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1468. <path clip-path="url(#pd16f15ebf9)" d="M 302.073181 236.953546
  1469. L 302.073181 234.50979
  1470. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1471. <path clip-path="url(#pd16f15ebf9)" d="M 487.470355 236.953546
  1472. L 487.470355 234.50979
  1473. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1474. </g>
  1475. <g id="EventCollection_68">
  1476. <path clip-path="url(#pd16f15ebf9)" d="M 52.896607 239.397303
  1477. L 52.896607 236.953546
  1478. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1479. <path clip-path="url(#pd16f15ebf9)" d="M 240.392977 239.397303
  1480. L 240.392977 236.953546
  1481. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1482. <path clip-path="url(#pd16f15ebf9)" d="M 302.113357 239.397303
  1483. L 302.113357 236.953546
  1484. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1485. <path clip-path="url(#pd16f15ebf9)" d="M 487.410091 239.397303
  1486. L 487.410091 236.953546
  1487. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1488. <path clip-path="url(#pd16f15ebf9)" d="M 489.800563 239.397303
  1489. L 489.800563 236.953546
  1490. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1491. <path clip-path="url(#pd16f15ebf9)" d="M 491.061085 239.397303
  1492. L 491.061085 236.953546
  1493. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1494. </g>
  1495. <g id="EventCollection_69">
  1496. <path clip-path="url(#pd16f15ebf9)" d="M 52.836343 241.841059
  1497. L 52.836343 239.397303
  1498. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1499. <path clip-path="url(#pd16f15ebf9)" d="M 240.277471 241.841059
  1500. L 240.277471 239.397303
  1501. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1502. <path clip-path="url(#pd16f15ebf9)" d="M 302.073181 241.841059
  1503. L 302.073181 239.397303
  1504. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1505. <path clip-path="url(#pd16f15ebf9)" d="M 487.490443 241.841059
  1506. L 487.490443 239.397303
  1507. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1508. <path clip-path="url(#pd16f15ebf9)" d="M 493.572085 241.841059
  1509. L 493.572085 239.397303
  1510. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1511. </g>
  1512. <g id="EventCollection_70">
  1513. <path clip-path="url(#pd16f15ebf9)" d="M 52.871497 244.284815
  1514. L 52.871497 241.841059
  1515. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1516. <path clip-path="url(#pd16f15ebf9)" d="M 240.317647 244.284815
  1517. L 240.317647 241.841059
  1518. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1519. <path clip-path="url(#pd16f15ebf9)" d="M 302.007895 244.284815
  1520. L 302.007895 241.841059
  1521. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1522. <path clip-path="url(#pd16f15ebf9)" d="M 485.391247 244.284815
  1523. L 485.391247 241.841059
  1524. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1525. </g>
  1526. <g id="EventCollection_71">
  1527. <path clip-path="url(#pd16f15ebf9)" d="M 52.911673 246.728571
  1528. L 52.911673 244.284815
  1529. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1530. <path clip-path="url(#pd16f15ebf9)" d="M 240.332713 246.728571
  1531. L 240.332713 244.284815
  1532. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1533. <path clip-path="url(#pd16f15ebf9)" d="M 301.982785 246.728571
  1534. L 301.982785 244.284815
  1535. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1536. <path clip-path="url(#pd16f15ebf9)" d="M 487.450267 246.728571
  1537. L 487.450267 244.284815
  1538. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1539. </g>
  1540. <g id="EventCollection_72">
  1541. <path clip-path="url(#pd16f15ebf9)" d="M 52.861453 249.172328
  1542. L 52.861453 246.728571
  1543. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1544. <path clip-path="url(#pd16f15ebf9)" d="M 240.262405 249.172328
  1545. L 240.262405 246.728571
  1546. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1547. <path clip-path="url(#pd16f15ebf9)" d="M 302.068159 249.172328
  1548. L 302.068159 246.728571
  1549. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1550. <path clip-path="url(#pd16f15ebf9)" d="M 487.445245 249.172328
  1551. L 487.445245 246.728571
  1552. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1553. </g>
  1554. <g id="EventCollection_73">
  1555. <path clip-path="url(#pd16f15ebf9)" d="M 52.876519 251.616084
  1556. L 52.876519 249.172328
  1557. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1558. <path clip-path="url(#pd16f15ebf9)" d="M 239.850601 251.616084
  1559. L 239.850601 249.172328
  1560. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1561. <path clip-path="url(#pd16f15ebf9)" d="M 240.413065 251.616084
  1562. L 240.413065 249.172328
  1563. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1564. <path clip-path="url(#pd16f15ebf9)" d="M 301.972741 251.616084
  1565. L 301.972741 249.172328
  1566. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1567. <path clip-path="url(#pd16f15ebf9)" d="M 487.445245 251.616084
  1568. L 487.445245 249.172328
  1569. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1570. <path clip-path="url(#pd16f15ebf9)" d="M 489.840739 251.616084
  1571. L 489.840739 249.172328
  1572. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1573. </g>
  1574. <g id="EventCollection_74">
  1575. <path clip-path="url(#pd16f15ebf9)" d="M 52.911673 254.05984
  1576. L 52.911673 251.616084
  1577. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1578. <path clip-path="url(#pd16f15ebf9)" d="M 240.337735 254.05984
  1579. L 240.337735 251.616084
  1580. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1581. <path clip-path="url(#pd16f15ebf9)" d="M 302.048071 254.05984
  1582. L 302.048071 251.616084
  1583. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1584. <path clip-path="url(#pd16f15ebf9)" d="M 487.450267 254.05984
  1585. L 487.450267 251.616084
  1586. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1587. </g>
  1588. <g id="EventCollection_75">
  1589. <path clip-path="url(#pd16f15ebf9)" d="M 52.866475 256.503596
  1590. L 52.866475 254.05984
  1591. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1592. <path clip-path="url(#pd16f15ebf9)" d="M 239.920909 256.503596
  1593. L 239.920909 254.05984
  1594. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1595. <path clip-path="url(#pd16f15ebf9)" d="M 240.392977 256.503596
  1596. L 240.392977 254.05984
  1597. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1598. <path clip-path="url(#pd16f15ebf9)" d="M 302.038027 256.503596
  1599. L 302.038027 254.05984
  1600. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1601. <path clip-path="url(#pd16f15ebf9)" d="M 487.480399 256.503596
  1602. L 487.480399 254.05984
  1603. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1604. </g>
  1605. <g id="EventCollection_76">
  1606. <path clip-path="url(#pd16f15ebf9)" d="M 52.936783 258.947353
  1607. L 52.936783 256.503596
  1608. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1609. <path clip-path="url(#pd16f15ebf9)" d="M 240.337735 258.947353
  1610. L 240.337735 256.503596
  1611. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1612. <path clip-path="url(#pd16f15ebf9)" d="M 302.153533 258.947353
  1613. L 302.153533 256.503596
  1614. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1615. <path clip-path="url(#pd16f15ebf9)" d="M 487.525597 258.947353
  1616. L 487.525597 256.503596
  1617. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1618. </g>
  1619. <g id="EventCollection_77">
  1620. <path clip-path="url(#pd16f15ebf9)" d="M 52.876519 261.391109
  1621. L 52.876519 258.947353
  1622. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1623. <path clip-path="url(#pd16f15ebf9)" d="M 240.453241 261.391109
  1624. L 240.453241 258.947353
  1625. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1626. <path clip-path="url(#pd16f15ebf9)" d="M 302.063137 261.391109
  1627. L 302.063137 258.947353
  1628. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1629. <path clip-path="url(#pd16f15ebf9)" d="M 487.455289 261.391109
  1630. L 487.455289 258.947353
  1631. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1632. </g>
  1633. <g id="EventCollection_78">
  1634. <path clip-path="url(#pd16f15ebf9)" d="M 52.896607 263.834865
  1635. L 52.896607 261.391109
  1636. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1637. <path clip-path="url(#pd16f15ebf9)" d="M 240.327691 263.834865
  1638. L 240.327691 261.391109
  1639. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1640. <path clip-path="url(#pd16f15ebf9)" d="M 302.048071 263.834865
  1641. L 302.048071 261.391109
  1642. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1643. <path clip-path="url(#pd16f15ebf9)" d="M 487.420135 263.834865
  1644. L 487.420135 261.391109
  1645. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1646. </g>
  1647. <g id="EventCollection_79">
  1648. <path clip-path="url(#pd16f15ebf9)" d="M 52.896607 266.278621
  1649. L 52.896607 263.834865
  1650. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1651. <path clip-path="url(#pd16f15ebf9)" d="M 240.302581 266.278621
  1652. L 240.302581 263.834865
  1653. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1654. <path clip-path="url(#pd16f15ebf9)" d="M 302.083225 266.278621
  1655. L 302.083225 263.834865
  1656. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1657. <path clip-path="url(#pd16f15ebf9)" d="M 487.455289 266.278621
  1658. L 487.455289 263.834865
  1659. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1660. </g>
  1661. <g id="EventCollection_80">
  1662. <path clip-path="url(#pd16f15ebf9)" d="M 52.931761 268.722378
  1663. L 52.931761 266.278621
  1664. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1665. <path clip-path="url(#pd16f15ebf9)" d="M 239.830513 268.722378
  1666. L 239.830513 266.278621
  1667. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1668. <path clip-path="url(#pd16f15ebf9)" d="M 240.327691 268.722378
  1669. L 240.327691 266.278621
  1670. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1671. <path clip-path="url(#pd16f15ebf9)" d="M 302.113357 268.722378
  1672. L 302.113357 266.278621
  1673. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1674. <path clip-path="url(#pd16f15ebf9)" d="M 487.510531 268.722378
  1675. L 487.510531 266.278621
  1676. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1677. </g>
  1678. <g id="EventCollection_81">
  1679. <path clip-path="url(#pd16f15ebf9)" d="M 52.881541 271.166134
  1680. L 52.881541 268.722378
  1681. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1682. <path clip-path="url(#pd16f15ebf9)" d="M 240.392977 271.166134
  1683. L 240.392977 268.722378
  1684. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1685. <path clip-path="url(#pd16f15ebf9)" d="M 302.153533 271.166134
  1686. L 302.153533 268.722378
  1687. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1688. <path clip-path="url(#pd16f15ebf9)" d="M 487.485421 271.166134
  1689. L 487.485421 268.722378
  1690. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1691. </g>
  1692. <g id="EventCollection_82">
  1693. <path clip-path="url(#pd16f15ebf9)" d="M 52.886563 273.60989
  1694. L 52.886563 271.166134
  1695. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1696. <path clip-path="url(#pd16f15ebf9)" d="M 240.327691 273.60989
  1697. L 240.327691 271.166134
  1698. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1699. <path clip-path="url(#pd16f15ebf9)" d="M 302.083225 273.60989
  1700. L 302.083225 271.166134
  1701. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1702. <path clip-path="url(#pd16f15ebf9)" d="M 302.695909 273.60989
  1703. L 302.695909 271.166134
  1704. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1705. <path clip-path="url(#pd16f15ebf9)" d="M 487.475377 273.60989
  1706. L 487.475377 271.166134
  1707. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1708. </g>
  1709. <g id="EventCollection_83">
  1710. <path clip-path="url(#pd16f15ebf9)" d="M 52.951849 276.053646
  1711. L 52.951849 273.60989
  1712. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1713. <path clip-path="url(#pd16f15ebf9)" d="M 240.297559 276.053646
  1714. L 240.297559 273.60989
  1715. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1716. <path clip-path="url(#pd16f15ebf9)" d="M 302.103313 276.053646
  1717. L 302.103313 273.60989
  1718. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1719. <path clip-path="url(#pd16f15ebf9)" d="M 487.475377 276.053646
  1720. L 487.475377 273.60989
  1721. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1722. </g>
  1723. <g id="EventCollection_84">
  1724. <path clip-path="url(#pd16f15ebf9)" d="M 52.896607 278.497403
  1725. L 52.896607 276.053646
  1726. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1727. <path clip-path="url(#pd16f15ebf9)" d="M 240.418087 278.497403
  1728. L 240.418087 276.053646
  1729. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1730. <path clip-path="url(#pd16f15ebf9)" d="M 302.022961 278.497403
  1731. L 302.022961 276.053646
  1732. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1733. <path clip-path="url(#pd16f15ebf9)" d="M 487.495465 278.497403
  1734. L 487.495465 276.053646
  1735. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1736. </g>
  1737. <g id="EventCollection_85">
  1738. <path clip-path="url(#pd16f15ebf9)" d="M 52.916695 280.941159
  1739. L 52.916695 278.497403
  1740. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1741. <path clip-path="url(#pd16f15ebf9)" d="M 240.413065 280.941159
  1742. L 240.413065 278.497403
  1743. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1744. <path clip-path="url(#pd16f15ebf9)" d="M 301.977763 280.941159
  1745. L 301.977763 278.497403
  1746. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1747. <path clip-path="url(#pd16f15ebf9)" d="M 487.485421 280.941159
  1748. L 487.485421 278.497403
  1749. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1750. </g>
  1751. <g id="EventCollection_86">
  1752. <path clip-path="url(#pd16f15ebf9)" d="M 52.916695 283.384915
  1753. L 52.916695 280.941159
  1754. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1755. <path clip-path="url(#pd16f15ebf9)" d="M 240.443197 283.384915
  1756. L 240.443197 280.941159
  1757. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1758. <path clip-path="url(#pd16f15ebf9)" d="M 302.063137 283.384915
  1759. L 302.063137 280.941159
  1760. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1761. <path clip-path="url(#pd16f15ebf9)" d="M 487.410091 283.384915
  1762. L 487.410091 280.941159
  1763. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1764. </g>
  1765. <g id="EventCollection_87">
  1766. <path clip-path="url(#pd16f15ebf9)" d="M 52.916695 285.828671
  1767. L 52.916695 283.384915
  1768. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1769. <path clip-path="url(#pd16f15ebf9)" d="M 240.342757 285.828671
  1770. L 240.342757 283.384915
  1771. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1772. <path clip-path="url(#pd16f15ebf9)" d="M 302.083225 285.828671
  1773. L 302.083225 283.384915
  1774. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1775. <path clip-path="url(#pd16f15ebf9)" d="M 487.460311 285.828671
  1776. L 487.460311 283.384915
  1777. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1778. </g>
  1779. <g id="EventCollection_88">
  1780. <path clip-path="url(#pd16f15ebf9)" d="M 52.906651 288.272428
  1781. L 52.906651 285.828671
  1782. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1783. <path clip-path="url(#pd16f15ebf9)" d="M 239.775271 288.272428
  1784. L 239.775271 285.828671
  1785. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1786. <path clip-path="url(#pd16f15ebf9)" d="M 240.332713 288.272428
  1787. L 240.332713 285.828671
  1788. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1789. <path clip-path="url(#pd16f15ebf9)" d="M 302.153533 288.272428
  1790. L 302.153533 285.828671
  1791. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1792. <path clip-path="url(#pd16f15ebf9)" d="M 487.475377 288.272428
  1793. L 487.475377 285.828671
  1794. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1795. </g>
  1796. <g id="EventCollection_89">
  1797. <path clip-path="url(#pd16f15ebf9)" d="M 52.951849 290.716184
  1798. L 52.951849 288.272428
  1799. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1800. <path clip-path="url(#pd16f15ebf9)" d="M 240.397999 290.716184
  1801. L 240.397999 288.272428
  1802. " style="fill:none;stroke:#ff0000;stroke-width:0.5;"/>
  1803. </g>
  1804. <g id="EventCollection_90"/>
  1805. </g>
  1806. <g id="axes_2">
  1807. <g id="patch_7">
  1808. <path d="M 46.965625 561.24
  1809. L 549.165625 561.24
  1810. L 549.165625 338.858182
  1811. L 46.965625 338.858182
  1812. z
  1813. " style="fill:#ffffff;"/>
  1814. </g>
  1815. <g id="PolyCollection_1">
  1816. <path clip-path="url(#p2c86de8dd8)" d="M 239.057125 561.24
  1817. L 239.057125 558.947404
  1818. L 240.312625 364.076739
  1819. L 241.568125 503.925098
  1820. L 241.568125 561.24
  1821. L 241.568125 561.24
  1822. L 240.312625 561.24
  1823. L 239.057125 561.24
  1824. z
  1825. " style="fill:#d3d3d3;"/>
  1826. </g>
  1827. <g id="PolyCollection_2">
  1828. <path clip-path="url(#p2c86de8dd8)" d="M 486.390625 561.24
  1829. L 486.390625 558.947404
  1830. L 487.646125 359.491546
  1831. L 488.901625 554.362212
  1832. L 490.157125 533.728847
  1833. L 491.412625 552.069616
  1834. L 492.668125 556.654808
  1835. L 493.923625 556.654808
  1836. L 495.179125 556.654808
  1837. L 495.179125 561.24
  1838. L 495.179125 561.24
  1839. L 493.923625 561.24
  1840. L 492.668125 561.24
  1841. L 491.412625 561.24
  1842. L 490.157125 561.24
  1843. L 488.901625 561.24
  1844. L 487.646125 561.24
  1845. L 486.390625 561.24
  1846. z
  1847. " style="fill:#d3d3d3;"/>
  1848. </g>
  1849. <g id="matplotlib.axis_3">
  1850. <g id="xtick_1">
  1851. <g id="line2d_6">
  1852. <defs>
  1853. <path d="M 0 0
  1854. L 0 3.5
  1855. " id="m5fe3854b1f" style="stroke:#000000;stroke-width:0.8;"/>
  1856. </defs>
  1857. <g>
  1858. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m5fe3854b1f" y="561.24"/>
  1859. </g>
  1860. </g>
  1861. <g id="text_7">
  1862. <!-- 0.0 -->
  1863. <defs>
  1864. <path d="M 10.6875 12.40625
  1865. L 21 12.40625
  1866. L 21 0
  1867. L 10.6875 0
  1868. z
  1869. " id="DejaVuSans-2e"/>
  1870. </defs>
  1871. <g transform="translate(39.014063 575.838437)scale(0.1 -0.1)">
  1872. <use xlink:href="#DejaVuSans-30"/>
  1873. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  1874. <use x="95.410156" xlink:href="#DejaVuSans-30"/>
  1875. </g>
  1876. </g>
  1877. </g>
  1878. <g id="xtick_2">
  1879. <g id="line2d_7">
  1880. <g>
  1881. <use style="stroke:#000000;stroke-width:0.8;" x="109.740625" xlink:href="#m5fe3854b1f" y="561.24"/>
  1882. </g>
  1883. </g>
  1884. <g id="text_8">
  1885. <!-- 0.5 -->
  1886. <defs>
  1887. <path d="M 10.796875 72.90625
  1888. L 49.515625 72.90625
  1889. L 49.515625 64.59375
  1890. L 19.828125 64.59375
  1891. L 19.828125 46.734375
  1892. Q 21.96875 47.46875 24.109375 47.828125
  1893. Q 26.265625 48.1875 28.421875 48.1875
  1894. Q 40.625 48.1875 47.75 41.5
  1895. Q 54.890625 34.8125 54.890625 23.390625
  1896. Q 54.890625 11.625 47.5625 5.09375
  1897. Q 40.234375 -1.421875 26.90625 -1.421875
  1898. Q 22.3125 -1.421875 17.546875 -0.640625
  1899. Q 12.796875 0.140625 7.71875 1.703125
  1900. L 7.71875 11.625
  1901. Q 12.109375 9.234375 16.796875 8.0625
  1902. Q 21.484375 6.890625 26.703125 6.890625
  1903. Q 35.15625 6.890625 40.078125 11.328125
  1904. Q 45.015625 15.765625 45.015625 23.390625
  1905. Q 45.015625 31 40.078125 35.4375
  1906. Q 35.15625 39.890625 26.703125 39.890625
  1907. Q 22.75 39.890625 18.8125 39.015625
  1908. Q 14.890625 38.140625 10.796875 36.28125
  1909. z
  1910. " id="DejaVuSans-35"/>
  1911. </defs>
  1912. <g transform="translate(101.789063 575.838437)scale(0.1 -0.1)">
  1913. <use xlink:href="#DejaVuSans-30"/>
  1914. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  1915. <use x="95.410156" xlink:href="#DejaVuSans-35"/>
  1916. </g>
  1917. </g>
  1918. </g>
  1919. <g id="xtick_3">
  1920. <g id="line2d_8">
  1921. <g>
  1922. <use style="stroke:#000000;stroke-width:0.8;" x="172.515625" xlink:href="#m5fe3854b1f" y="561.24"/>
  1923. </g>
  1924. </g>
  1925. <g id="text_9">
  1926. <!-- 1.0 -->
  1927. <defs>
  1928. <path d="M 12.40625 8.296875
  1929. L 28.515625 8.296875
  1930. L 28.515625 63.921875
  1931. L 10.984375 60.40625
  1932. L 10.984375 69.390625
  1933. L 28.421875 72.90625
  1934. L 38.28125 72.90625
  1935. L 38.28125 8.296875
  1936. L 54.390625 8.296875
  1937. L 54.390625 0
  1938. L 12.40625 0
  1939. z
  1940. " id="DejaVuSans-31"/>
  1941. </defs>
  1942. <g transform="translate(164.564063 575.838437)scale(0.1 -0.1)">
  1943. <use xlink:href="#DejaVuSans-31"/>
  1944. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  1945. <use x="95.410156" xlink:href="#DejaVuSans-30"/>
  1946. </g>
  1947. </g>
  1948. </g>
  1949. <g id="xtick_4">
  1950. <g id="line2d_9">
  1951. <g>
  1952. <use style="stroke:#000000;stroke-width:0.8;" x="235.290625" xlink:href="#m5fe3854b1f" y="561.24"/>
  1953. </g>
  1954. </g>
  1955. <g id="text_10">
  1956. <!-- 1.5 -->
  1957. <g transform="translate(227.339063 575.838437)scale(0.1 -0.1)">
  1958. <use xlink:href="#DejaVuSans-31"/>
  1959. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  1960. <use x="95.410156" xlink:href="#DejaVuSans-35"/>
  1961. </g>
  1962. </g>
  1963. </g>
  1964. <g id="xtick_5">
  1965. <g id="line2d_10">
  1966. <g>
  1967. <use style="stroke:#000000;stroke-width:0.8;" x="298.065625" xlink:href="#m5fe3854b1f" y="561.24"/>
  1968. </g>
  1969. </g>
  1970. <g id="text_11">
  1971. <!-- 2.0 -->
  1972. <g transform="translate(290.114063 575.838437)scale(0.1 -0.1)">
  1973. <use xlink:href="#DejaVuSans-32"/>
  1974. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  1975. <use x="95.410156" xlink:href="#DejaVuSans-30"/>
  1976. </g>
  1977. </g>
  1978. </g>
  1979. <g id="xtick_6">
  1980. <g id="line2d_11">
  1981. <g>
  1982. <use style="stroke:#000000;stroke-width:0.8;" x="360.840625" xlink:href="#m5fe3854b1f" y="561.24"/>
  1983. </g>
  1984. </g>
  1985. <g id="text_12">
  1986. <!-- 2.5 -->
  1987. <g transform="translate(352.889063 575.838437)scale(0.1 -0.1)">
  1988. <use xlink:href="#DejaVuSans-32"/>
  1989. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  1990. <use x="95.410156" xlink:href="#DejaVuSans-35"/>
  1991. </g>
  1992. </g>
  1993. </g>
  1994. <g id="xtick_7">
  1995. <g id="line2d_12">
  1996. <g>
  1997. <use style="stroke:#000000;stroke-width:0.8;" x="423.615625" xlink:href="#m5fe3854b1f" y="561.24"/>
  1998. </g>
  1999. </g>
  2000. <g id="text_13">
  2001. <!-- 3.0 -->
  2002. <defs>
  2003. <path d="M 40.578125 39.3125
  2004. Q 47.65625 37.796875 51.625 33
  2005. Q 55.609375 28.21875 55.609375 21.1875
  2006. Q 55.609375 10.40625 48.1875 4.484375
  2007. Q 40.765625 -1.421875 27.09375 -1.421875
  2008. Q 22.515625 -1.421875 17.65625 -0.515625
  2009. Q 12.796875 0.390625 7.625 2.203125
  2010. L 7.625 11.71875
  2011. Q 11.71875 9.328125 16.59375 8.109375
  2012. Q 21.484375 6.890625 26.8125 6.890625
  2013. Q 36.078125 6.890625 40.9375 10.546875
  2014. Q 45.796875 14.203125 45.796875 21.1875
  2015. Q 45.796875 27.640625 41.28125 31.265625
  2016. Q 36.765625 34.90625 28.71875 34.90625
  2017. L 20.21875 34.90625
  2018. L 20.21875 43.015625
  2019. L 29.109375 43.015625
  2020. Q 36.375 43.015625 40.234375 45.921875
  2021. Q 44.09375 48.828125 44.09375 54.296875
  2022. Q 44.09375 59.90625 40.109375 62.90625
  2023. Q 36.140625 65.921875 28.71875 65.921875
  2024. Q 24.65625 65.921875 20.015625 65.03125
  2025. Q 15.375 64.15625 9.8125 62.3125
  2026. L 9.8125 71.09375
  2027. Q 15.4375 72.65625 20.34375 73.4375
  2028. Q 25.25 74.21875 29.59375 74.21875
  2029. Q 40.828125 74.21875 47.359375 69.109375
  2030. Q 53.90625 64.015625 53.90625 55.328125
  2031. Q 53.90625 49.265625 50.4375 45.09375
  2032. Q 46.96875 40.921875 40.578125 39.3125
  2033. z
  2034. " id="DejaVuSans-33"/>
  2035. </defs>
  2036. <g transform="translate(415.664062 575.838437)scale(0.1 -0.1)">
  2037. <use xlink:href="#DejaVuSans-33"/>
  2038. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2039. <use x="95.410156" xlink:href="#DejaVuSans-30"/>
  2040. </g>
  2041. </g>
  2042. </g>
  2043. <g id="xtick_8">
  2044. <g id="line2d_13">
  2045. <g>
  2046. <use style="stroke:#000000;stroke-width:0.8;" x="486.390625" xlink:href="#m5fe3854b1f" y="561.24"/>
  2047. </g>
  2048. </g>
  2049. <g id="text_14">
  2050. <!-- 3.5 -->
  2051. <g transform="translate(478.439063 575.838437)scale(0.1 -0.1)">
  2052. <use xlink:href="#DejaVuSans-33"/>
  2053. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2054. <use x="95.410156" xlink:href="#DejaVuSans-35"/>
  2055. </g>
  2056. </g>
  2057. </g>
  2058. <g id="xtick_9">
  2059. <g id="line2d_14">
  2060. <g>
  2061. <use style="stroke:#000000;stroke-width:0.8;" x="549.165625" xlink:href="#m5fe3854b1f" y="561.24"/>
  2062. </g>
  2063. </g>
  2064. <g id="text_15">
  2065. <!-- 4.0 -->
  2066. <g transform="translate(541.214063 575.838437)scale(0.1 -0.1)">
  2067. <use xlink:href="#DejaVuSans-34"/>
  2068. <use x="63.623047" xlink:href="#DejaVuSans-2e"/>
  2069. <use x="95.410156" xlink:href="#DejaVuSans-30"/>
  2070. </g>
  2071. </g>
  2072. </g>
  2073. <g id="text_16">
  2074. <!-- Time[s] -->
  2075. <defs>
  2076. <path d="M 52 44.1875
  2077. Q 55.375 50.25 60.0625 53.125
  2078. Q 64.75 56 71.09375 56
  2079. Q 79.640625 56 84.28125 50.015625
  2080. Q 88.921875 44.046875 88.921875 33.015625
  2081. L 88.921875 0
  2082. L 79.890625 0
  2083. L 79.890625 32.71875
  2084. Q 79.890625 40.578125 77.09375 44.375
  2085. Q 74.3125 48.1875 68.609375 48.1875
  2086. Q 61.625 48.1875 57.5625 43.546875
  2087. Q 53.515625 38.921875 53.515625 30.90625
  2088. L 53.515625 0
  2089. L 44.484375 0
  2090. L 44.484375 32.71875
  2091. Q 44.484375 40.625 41.703125 44.40625
  2092. Q 38.921875 48.1875 33.109375 48.1875
  2093. Q 26.21875 48.1875 22.15625 43.53125
  2094. Q 18.109375 38.875 18.109375 30.90625
  2095. L 18.109375 0
  2096. L 9.078125 0
  2097. L 9.078125 54.6875
  2098. L 18.109375 54.6875
  2099. L 18.109375 46.1875
  2100. Q 21.1875 51.21875 25.484375 53.609375
  2101. Q 29.78125 56 35.6875 56
  2102. Q 41.65625 56 45.828125 52.96875
  2103. Q 50 49.953125 52 44.1875
  2104. z
  2105. " id="DejaVuSans-6d"/>
  2106. <path d="M 56.203125 29.59375
  2107. L 56.203125 25.203125
  2108. L 14.890625 25.203125
  2109. Q 15.484375 15.921875 20.484375 11.0625
  2110. Q 25.484375 6.203125 34.421875 6.203125
  2111. Q 39.59375 6.203125 44.453125 7.46875
  2112. Q 49.3125 8.734375 54.109375 11.28125
  2113. L 54.109375 2.78125
  2114. Q 49.265625 0.734375 44.1875 -0.34375
  2115. Q 39.109375 -1.421875 33.890625 -1.421875
  2116. Q 20.796875 -1.421875 13.15625 6.1875
  2117. Q 5.515625 13.8125 5.515625 26.8125
  2118. Q 5.515625 40.234375 12.765625 48.109375
  2119. Q 20.015625 56 32.328125 56
  2120. Q 43.359375 56 49.78125 48.890625
  2121. Q 56.203125 41.796875 56.203125 29.59375
  2122. z
  2123. M 47.21875 32.234375
  2124. Q 47.125 39.59375 43.09375 43.984375
  2125. Q 39.0625 48.390625 32.421875 48.390625
  2126. Q 24.90625 48.390625 20.390625 44.140625
  2127. Q 15.875 39.890625 15.1875 32.171875
  2128. z
  2129. " id="DejaVuSans-65"/>
  2130. <path d="M 8.59375 75.984375
  2131. L 29.296875 75.984375
  2132. L 29.296875 69
  2133. L 17.578125 69
  2134. L 17.578125 -6.203125
  2135. L 29.296875 -6.203125
  2136. L 29.296875 -13.1875
  2137. L 8.59375 -13.1875
  2138. z
  2139. " id="DejaVuSans-5b"/>
  2140. <path d="M 44.28125 53.078125
  2141. L 44.28125 44.578125
  2142. Q 40.484375 46.53125 36.375 47.5
  2143. Q 32.28125 48.484375 27.875 48.484375
  2144. Q 21.1875 48.484375 17.84375 46.4375
  2145. Q 14.5 44.390625 14.5 40.28125
  2146. Q 14.5 37.15625 16.890625 35.375
  2147. Q 19.28125 33.59375 26.515625 31.984375
  2148. L 29.59375 31.296875
  2149. Q 39.15625 29.25 43.1875 25.515625
  2150. Q 47.21875 21.78125 47.21875 15.09375
  2151. Q 47.21875 7.46875 41.1875 3.015625
  2152. Q 35.15625 -1.421875 24.609375 -1.421875
  2153. Q 20.21875 -1.421875 15.453125 -0.5625
  2154. Q 10.6875 0.296875 5.421875 2
  2155. L 5.421875 11.28125
  2156. Q 10.40625 8.6875 15.234375 7.390625
  2157. Q 20.0625 6.109375 24.8125 6.109375
  2158. Q 31.15625 6.109375 34.5625 8.28125
  2159. Q 37.984375 10.453125 37.984375 14.40625
  2160. Q 37.984375 18.0625 35.515625 20.015625
  2161. Q 33.0625 21.96875 24.703125 23.78125
  2162. L 21.578125 24.515625
  2163. Q 13.234375 26.265625 9.515625 29.90625
  2164. Q 5.8125 33.546875 5.8125 39.890625
  2165. Q 5.8125 47.609375 11.28125 51.796875
  2166. Q 16.75 56 26.8125 56
  2167. Q 31.78125 56 36.171875 55.265625
  2168. Q 40.578125 54.546875 44.28125 53.078125
  2169. z
  2170. " id="DejaVuSans-73"/>
  2171. <path d="M 30.421875 75.984375
  2172. L 30.421875 -13.1875
  2173. L 9.71875 -13.1875
  2174. L 9.71875 -6.203125
  2175. L 21.390625 -6.203125
  2176. L 21.390625 69
  2177. L 9.71875 69
  2178. L 9.71875 75.984375
  2179. z
  2180. " id="DejaVuSans-5d"/>
  2181. </defs>
  2182. <g transform="translate(279.171875 589.516562)scale(0.1 -0.1)">
  2183. <use xlink:href="#DejaVuSans-54"/>
  2184. <use x="61.037109" xlink:href="#DejaVuSans-69"/>
  2185. <use x="88.820312" xlink:href="#DejaVuSans-6d"/>
  2186. <use x="186.232422" xlink:href="#DejaVuSans-65"/>
  2187. <use x="247.755859" xlink:href="#DejaVuSans-5b"/>
  2188. <use x="286.769531" xlink:href="#DejaVuSans-73"/>
  2189. <use x="338.869141" xlink:href="#DejaVuSans-5d"/>
  2190. </g>
  2191. </g>
  2192. </g>
  2193. <g id="matplotlib.axis_4">
  2194. <g id="ytick_6">
  2195. <g id="line2d_15">
  2196. <g>
  2197. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m8dfd7c0435" y="561.24"/>
  2198. </g>
  2199. </g>
  2200. <g id="text_17">
  2201. <!-- 0 -->
  2202. <g transform="translate(33.603125 565.039219)scale(0.1 -0.1)">
  2203. <use xlink:href="#DejaVuSans-30"/>
  2204. </g>
  2205. </g>
  2206. </g>
  2207. <g id="ytick_7">
  2208. <g id="line2d_16">
  2209. <g>
  2210. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m8dfd7c0435" y="520.533556"/>
  2211. </g>
  2212. </g>
  2213. <g id="text_18">
  2214. <!-- 20 -->
  2215. <g transform="translate(27.240625 524.332775)scale(0.1 -0.1)">
  2216. <use xlink:href="#DejaVuSans-32"/>
  2217. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  2218. </g>
  2219. </g>
  2220. </g>
  2221. <g id="ytick_8">
  2222. <g id="line2d_17">
  2223. <g>
  2224. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m8dfd7c0435" y="479.827112"/>
  2225. </g>
  2226. </g>
  2227. <g id="text_19">
  2228. <!-- 40 -->
  2229. <g transform="translate(27.240625 483.626331)scale(0.1 -0.1)">
  2230. <use xlink:href="#DejaVuSans-34"/>
  2231. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  2232. </g>
  2233. </g>
  2234. </g>
  2235. <g id="ytick_9">
  2236. <g id="line2d_18">
  2237. <g>
  2238. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m8dfd7c0435" y="439.120669"/>
  2239. </g>
  2240. </g>
  2241. <g id="text_20">
  2242. <!-- 60 -->
  2243. <g transform="translate(27.240625 442.919887)scale(0.1 -0.1)">
  2244. <use xlink:href="#DejaVuSans-36"/>
  2245. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  2246. </g>
  2247. </g>
  2248. </g>
  2249. <g id="ytick_10">
  2250. <g id="line2d_19">
  2251. <g>
  2252. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m8dfd7c0435" y="398.414225"/>
  2253. </g>
  2254. </g>
  2255. <g id="text_21">
  2256. <!-- 80 -->
  2257. <g transform="translate(27.240625 402.213443)scale(0.1 -0.1)">
  2258. <use xlink:href="#DejaVuSans-38"/>
  2259. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  2260. </g>
  2261. </g>
  2262. </g>
  2263. <g id="ytick_11">
  2264. <g id="line2d_20">
  2265. <g>
  2266. <use style="stroke:#000000;stroke-width:0.8;" x="46.965625" xlink:href="#m8dfd7c0435" y="357.707781"/>
  2267. </g>
  2268. </g>
  2269. <g id="text_22">
  2270. <!-- 100 -->
  2271. <g transform="translate(20.878125 361.507)scale(0.1 -0.1)">
  2272. <use xlink:href="#DejaVuSans-31"/>
  2273. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  2274. <use x="127.246094" xlink:href="#DejaVuSans-30"/>
  2275. </g>
  2276. </g>
  2277. </g>
  2278. <g id="text_23">
  2279. <!-- Firing rate[spikes/s] -->
  2280. <defs>
  2281. <path d="M 9.8125 72.90625
  2282. L 51.703125 72.90625
  2283. L 51.703125 64.59375
  2284. L 19.671875 64.59375
  2285. L 19.671875 43.109375
  2286. L 48.578125 43.109375
  2287. L 48.578125 34.8125
  2288. L 19.671875 34.8125
  2289. L 19.671875 0
  2290. L 9.8125 0
  2291. z
  2292. " id="DejaVuSans-46"/>
  2293. <path d="M 54.890625 33.015625
  2294. L 54.890625 0
  2295. L 45.90625 0
  2296. L 45.90625 32.71875
  2297. Q 45.90625 40.484375 42.875 44.328125
  2298. Q 39.84375 48.1875 33.796875 48.1875
  2299. Q 26.515625 48.1875 22.3125 43.546875
  2300. Q 18.109375 38.921875 18.109375 30.90625
  2301. L 18.109375 0
  2302. L 9.078125 0
  2303. L 9.078125 54.6875
  2304. L 18.109375 54.6875
  2305. L 18.109375 46.1875
  2306. Q 21.34375 51.125 25.703125 53.5625
  2307. Q 30.078125 56 35.796875 56
  2308. Q 45.21875 56 50.046875 50.171875
  2309. Q 54.890625 44.34375 54.890625 33.015625
  2310. z
  2311. " id="DejaVuSans-6e"/>
  2312. <path d="M 45.40625 27.984375
  2313. Q 45.40625 37.75 41.375 43.109375
  2314. Q 37.359375 48.484375 30.078125 48.484375
  2315. Q 22.859375 48.484375 18.828125 43.109375
  2316. Q 14.796875 37.75 14.796875 27.984375
  2317. Q 14.796875 18.265625 18.828125 12.890625
  2318. Q 22.859375 7.515625 30.078125 7.515625
  2319. Q 37.359375 7.515625 41.375 12.890625
  2320. Q 45.40625 18.265625 45.40625 27.984375
  2321. z
  2322. M 54.390625 6.78125
  2323. Q 54.390625 -7.171875 48.1875 -13.984375
  2324. Q 42 -20.796875 29.203125 -20.796875
  2325. Q 24.46875 -20.796875 20.265625 -20.09375
  2326. Q 16.0625 -19.390625 12.109375 -17.921875
  2327. L 12.109375 -9.1875
  2328. Q 16.0625 -11.328125 19.921875 -12.34375
  2329. Q 23.78125 -13.375 27.78125 -13.375
  2330. Q 36.625 -13.375 41.015625 -8.765625
  2331. Q 45.40625 -4.15625 45.40625 5.171875
  2332. L 45.40625 9.625
  2333. Q 42.625 4.78125 38.28125 2.390625
  2334. Q 33.9375 0 27.875 0
  2335. Q 17.828125 0 11.671875 7.65625
  2336. Q 5.515625 15.328125 5.515625 27.984375
  2337. Q 5.515625 40.671875 11.671875 48.328125
  2338. Q 17.828125 56 27.875 56
  2339. Q 33.9375 56 38.28125 53.609375
  2340. Q 42.625 51.21875 45.40625 46.390625
  2341. L 45.40625 54.6875
  2342. L 54.390625 54.6875
  2343. z
  2344. " id="DejaVuSans-67"/>
  2345. <path id="DejaVuSans-20"/>
  2346. <path d="M 18.3125 70.21875
  2347. L 18.3125 54.6875
  2348. L 36.8125 54.6875
  2349. L 36.8125 47.703125
  2350. L 18.3125 47.703125
  2351. L 18.3125 18.015625
  2352. Q 18.3125 11.328125 20.140625 9.421875
  2353. Q 21.96875 7.515625 27.59375 7.515625
  2354. L 36.8125 7.515625
  2355. L 36.8125 0
  2356. L 27.59375 0
  2357. Q 17.1875 0 13.234375 3.875
  2358. Q 9.28125 7.765625 9.28125 18.015625
  2359. L 9.28125 47.703125
  2360. L 2.6875 47.703125
  2361. L 2.6875 54.6875
  2362. L 9.28125 54.6875
  2363. L 9.28125 70.21875
  2364. z
  2365. " id="DejaVuSans-74"/>
  2366. <path d="M 18.109375 8.203125
  2367. L 18.109375 -20.796875
  2368. L 9.078125 -20.796875
  2369. L 9.078125 54.6875
  2370. L 18.109375 54.6875
  2371. L 18.109375 46.390625
  2372. Q 20.953125 51.265625 25.265625 53.625
  2373. Q 29.59375 56 35.59375 56
  2374. Q 45.5625 56 51.78125 48.09375
  2375. Q 58.015625 40.1875 58.015625 27.296875
  2376. Q 58.015625 14.40625 51.78125 6.484375
  2377. Q 45.5625 -1.421875 35.59375 -1.421875
  2378. Q 29.59375 -1.421875 25.265625 0.953125
  2379. Q 20.953125 3.328125 18.109375 8.203125
  2380. z
  2381. M 48.6875 27.296875
  2382. Q 48.6875 37.203125 44.609375 42.84375
  2383. Q 40.53125 48.484375 33.40625 48.484375
  2384. Q 26.265625 48.484375 22.1875 42.84375
  2385. Q 18.109375 37.203125 18.109375 27.296875
  2386. Q 18.109375 17.390625 22.1875 11.75
  2387. Q 26.265625 6.109375 33.40625 6.109375
  2388. Q 40.53125 6.109375 44.609375 11.75
  2389. Q 48.6875 17.390625 48.6875 27.296875
  2390. z
  2391. " id="DejaVuSans-70"/>
  2392. <path d="M 9.078125 75.984375
  2393. L 18.109375 75.984375
  2394. L 18.109375 31.109375
  2395. L 44.921875 54.6875
  2396. L 56.390625 54.6875
  2397. L 27.390625 29.109375
  2398. L 57.625 0
  2399. L 45.90625 0
  2400. L 18.109375 26.703125
  2401. L 18.109375 0
  2402. L 9.078125 0
  2403. z
  2404. " id="DejaVuSans-6b"/>
  2405. <path d="M 25.390625 72.90625
  2406. L 33.6875 72.90625
  2407. L 8.296875 -9.28125
  2408. L 0 -9.28125
  2409. z
  2410. " id="DejaVuSans-2f"/>
  2411. </defs>
  2412. <g transform="translate(14.798438 499.774091)rotate(-90)scale(0.1 -0.1)">
  2413. <use xlink:href="#DejaVuSans-46"/>
  2414. <use x="57.410156" xlink:href="#DejaVuSans-69"/>
  2415. <use x="85.193359" xlink:href="#DejaVuSans-72"/>
  2416. <use x="126.306641" xlink:href="#DejaVuSans-69"/>
  2417. <use x="154.089844" xlink:href="#DejaVuSans-6e"/>
  2418. <use x="217.46875" xlink:href="#DejaVuSans-67"/>
  2419. <use x="280.945312" xlink:href="#DejaVuSans-20"/>
  2420. <use x="312.732422" xlink:href="#DejaVuSans-72"/>
  2421. <use x="353.845703" xlink:href="#DejaVuSans-61"/>
  2422. <use x="415.125" xlink:href="#DejaVuSans-74"/>
  2423. <use x="454.333984" xlink:href="#DejaVuSans-65"/>
  2424. <use x="515.857422" xlink:href="#DejaVuSans-5b"/>
  2425. <use x="554.871094" xlink:href="#DejaVuSans-73"/>
  2426. <use x="606.970703" xlink:href="#DejaVuSans-70"/>
  2427. <use x="670.447266" xlink:href="#DejaVuSans-69"/>
  2428. <use x="698.230469" xlink:href="#DejaVuSans-6b"/>
  2429. <use x="756.09375" xlink:href="#DejaVuSans-65"/>
  2430. <use x="817.617188" xlink:href="#DejaVuSans-73"/>
  2431. <use x="869.716797" xlink:href="#DejaVuSans-2f"/>
  2432. <use x="903.408203" xlink:href="#DejaVuSans-73"/>
  2433. <use x="955.507812" xlink:href="#DejaVuSans-5d"/>
  2434. </g>
  2435. </g>
  2436. </g>
  2437. <g id="line2d_21">
  2438. <path clip-path="url(#p2c86de8dd8)" d="M 46.965625 561.24
  2439. L 51.987625 561.24
  2440. L 53.243125 338.858182
  2441. L 54.498625 561.24
  2442. L 237.801625 561.24
  2443. L 239.057125 558.947404
  2444. L 240.312625 364.076739
  2445. L 241.568125 503.925098
  2446. L 242.823625 561.24
  2447. L 300.576625 561.24
  2448. L 301.832125 533.728847
  2449. L 303.087625 368.661931
  2450. L 304.343125 561.24
  2451. L 309.365125 561.24
  2452. L 310.620625 558.947404
  2453. L 311.876125 561.24
  2454. L 485.135125 561.24
  2455. L 486.390625 558.947404
  2456. L 487.646125 359.491546
  2457. L 488.901625 554.362212
  2458. L 490.157125 533.728847
  2459. L 491.412625 552.069616
  2460. L 492.668125 556.654808
  2461. L 495.179125 556.654808
  2462. L 496.434625 561.24
  2463. L 549.165625 561.24
  2464. L 549.165625 561.24
  2465. " style="fill:none;stroke:#1f77b4;stroke-linecap:square;stroke-width:1.5;"/>
  2466. </g>
  2467. <g id="text_24">
  2468. <!-- Baseline: 0 Hz Bias: -0.01 -->
  2469. <defs>
  2470. <path d="M 19.671875 34.8125
  2471. L 19.671875 8.109375
  2472. L 35.5 8.109375
  2473. Q 43.453125 8.109375 47.28125 11.40625
  2474. Q 51.125 14.703125 51.125 21.484375
  2475. Q 51.125 28.328125 47.28125 31.5625
  2476. Q 43.453125 34.8125 35.5 34.8125
  2477. z
  2478. M 19.671875 64.796875
  2479. L 19.671875 42.828125
  2480. L 34.28125 42.828125
  2481. Q 41.5 42.828125 45.03125 45.53125
  2482. Q 48.578125 48.25 48.578125 53.8125
  2483. Q 48.578125 59.328125 45.03125 62.0625
  2484. Q 41.5 64.796875 34.28125 64.796875
  2485. z
  2486. M 9.8125 72.90625
  2487. L 35.015625 72.90625
  2488. Q 46.296875 72.90625 52.390625 68.21875
  2489. Q 58.5 63.53125 58.5 54.890625
  2490. Q 58.5 48.1875 55.375 44.234375
  2491. Q 52.25 40.28125 46.1875 39.3125
  2492. Q 53.46875 37.75 57.5 32.78125
  2493. Q 61.53125 27.828125 61.53125 20.40625
  2494. Q 61.53125 10.640625 54.890625 5.3125
  2495. Q 48.25 0 35.984375 0
  2496. L 9.8125 0
  2497. z
  2498. " id="DejaVuSans-42"/>
  2499. <path d="M 11.71875 12.40625
  2500. L 22.015625 12.40625
  2501. L 22.015625 0
  2502. L 11.71875 0
  2503. z
  2504. M 11.71875 51.703125
  2505. L 22.015625 51.703125
  2506. L 22.015625 39.3125
  2507. L 11.71875 39.3125
  2508. z
  2509. " id="DejaVuSans-3a"/>
  2510. <path d="M 9.8125 72.90625
  2511. L 19.671875 72.90625
  2512. L 19.671875 43.015625
  2513. L 55.515625 43.015625
  2514. L 55.515625 72.90625
  2515. L 65.375 72.90625
  2516. L 65.375 0
  2517. L 55.515625 0
  2518. L 55.515625 34.71875
  2519. L 19.671875 34.71875
  2520. L 19.671875 0
  2521. L 9.8125 0
  2522. z
  2523. " id="DejaVuSans-48"/>
  2524. <path d="M 5.515625 54.6875
  2525. L 48.1875 54.6875
  2526. L 48.1875 46.484375
  2527. L 14.40625 7.171875
  2528. L 48.1875 7.171875
  2529. L 48.1875 0
  2530. L 4.296875 0
  2531. L 4.296875 8.203125
  2532. L 38.09375 47.515625
  2533. L 5.515625 47.515625
  2534. z
  2535. " id="DejaVuSans-7a"/>
  2536. <path d="M 4.890625 31.390625
  2537. L 31.203125 31.390625
  2538. L 31.203125 23.390625
  2539. L 4.890625 23.390625
  2540. z
  2541. " id="DejaVuSans-2d"/>
  2542. </defs>
  2543. <g transform="translate(219.460938 332.858182)scale(0.12 -0.12)">
  2544. <use xlink:href="#DejaVuSans-42"/>
  2545. <use x="68.603516" xlink:href="#DejaVuSans-61"/>
  2546. <use x="129.882812" xlink:href="#DejaVuSans-73"/>
  2547. <use x="181.982422" xlink:href="#DejaVuSans-65"/>
  2548. <use x="243.505859" xlink:href="#DejaVuSans-6c"/>
  2549. <use x="271.289062" xlink:href="#DejaVuSans-69"/>
  2550. <use x="299.072266" xlink:href="#DejaVuSans-6e"/>
  2551. <use x="362.451172" xlink:href="#DejaVuSans-65"/>
  2552. <use x="423.974609" xlink:href="#DejaVuSans-3a"/>
  2553. <use x="457.666016" xlink:href="#DejaVuSans-20"/>
  2554. <use x="489.453125" xlink:href="#DejaVuSans-20"/>
  2555. <use x="521.240234" xlink:href="#DejaVuSans-30"/>
  2556. <use x="584.863281" xlink:href="#DejaVuSans-20"/>
  2557. <use x="616.650391" xlink:href="#DejaVuSans-48"/>
  2558. <use x="691.845703" xlink:href="#DejaVuSans-7a"/>
  2559. <use x="744.335938" xlink:href="#DejaVuSans-20"/>
  2560. <use x="776.123047" xlink:href="#DejaVuSans-42"/>
  2561. <use x="844.726562" xlink:href="#DejaVuSans-69"/>
  2562. <use x="872.509766" xlink:href="#DejaVuSans-61"/>
  2563. <use x="933.789062" xlink:href="#DejaVuSans-73"/>
  2564. <use x="985.888672" xlink:href="#DejaVuSans-3a"/>
  2565. <use x="1019.580078" xlink:href="#DejaVuSans-20"/>
  2566. <use x="1051.367188" xlink:href="#DejaVuSans-2d"/>
  2567. <use x="1087.451172" xlink:href="#DejaVuSans-30"/>
  2568. <use x="1151.074219" xlink:href="#DejaVuSans-2e"/>
  2569. <use x="1182.861328" xlink:href="#DejaVuSans-30"/>
  2570. <use x="1246.484375" xlink:href="#DejaVuSans-31"/>
  2571. </g>
  2572. </g>
  2573. </g>
  2574. <g id="text_25">
  2575. <!-- Erol_20180710_60MEA_marmoset -->
  2576. <defs>
  2577. <path d="M 9.8125 72.90625
  2578. L 55.90625 72.90625
  2579. L 55.90625 64.59375
  2580. L 19.671875 64.59375
  2581. L 19.671875 43.015625
  2582. L 54.390625 43.015625
  2583. L 54.390625 34.71875
  2584. L 19.671875 34.71875
  2585. L 19.671875 8.296875
  2586. L 56.78125 8.296875
  2587. L 56.78125 0
  2588. L 9.8125 0
  2589. z
  2590. " id="DejaVuSans-45"/>
  2591. <path d="M 30.609375 48.390625
  2592. Q 23.390625 48.390625 19.1875 42.75
  2593. Q 14.984375 37.109375 14.984375 27.296875
  2594. Q 14.984375 17.484375 19.15625 11.84375
  2595. Q 23.34375 6.203125 30.609375 6.203125
  2596. Q 37.796875 6.203125 41.984375 11.859375
  2597. Q 46.1875 17.53125 46.1875 27.296875
  2598. Q 46.1875 37.015625 41.984375 42.703125
  2599. Q 37.796875 48.390625 30.609375 48.390625
  2600. z
  2601. M 30.609375 56
  2602. Q 42.328125 56 49.015625 48.375
  2603. Q 55.71875 40.765625 55.71875 27.296875
  2604. Q 55.71875 13.875 49.015625 6.21875
  2605. Q 42.328125 -1.421875 30.609375 -1.421875
  2606. Q 18.84375 -1.421875 12.171875 6.21875
  2607. Q 5.515625 13.875 5.515625 27.296875
  2608. Q 5.515625 40.765625 12.171875 48.375
  2609. Q 18.84375 56 30.609375 56
  2610. z
  2611. " id="DejaVuSans-6f"/>
  2612. <path d="M 50.984375 -16.609375
  2613. L 50.984375 -23.578125
  2614. L -0.984375 -23.578125
  2615. L -0.984375 -16.609375
  2616. z
  2617. " id="DejaVuSans-5f"/>
  2618. <path d="M 8.203125 72.90625
  2619. L 55.078125 72.90625
  2620. L 55.078125 68.703125
  2621. L 28.609375 0
  2622. L 18.3125 0
  2623. L 43.21875 64.59375
  2624. L 8.203125 64.59375
  2625. z
  2626. " id="DejaVuSans-37"/>
  2627. <path d="M 9.8125 72.90625
  2628. L 24.515625 72.90625
  2629. L 43.109375 23.296875
  2630. L 61.8125 72.90625
  2631. L 76.515625 72.90625
  2632. L 76.515625 0
  2633. L 66.890625 0
  2634. L 66.890625 64.015625
  2635. L 48.09375 14.015625
  2636. L 38.1875 14.015625
  2637. L 19.390625 64.015625
  2638. L 19.390625 0
  2639. L 9.8125 0
  2640. z
  2641. " id="DejaVuSans-4d"/>
  2642. <path d="M 34.1875 63.1875
  2643. L 20.796875 26.90625
  2644. L 47.609375 26.90625
  2645. z
  2646. M 28.609375 72.90625
  2647. L 39.796875 72.90625
  2648. L 67.578125 0
  2649. L 57.328125 0
  2650. L 50.6875 18.703125
  2651. L 17.828125 18.703125
  2652. L 11.1875 0
  2653. L 0.78125 0
  2654. z
  2655. " id="DejaVuSans-41"/>
  2656. </defs>
  2657. <g transform="translate(187.451875 16.651875)scale(0.12 -0.12)">
  2658. <use xlink:href="#DejaVuSans-45"/>
  2659. <use x="63.183594" xlink:href="#DejaVuSans-72"/>
  2660. <use x="104.265625" xlink:href="#DejaVuSans-6f"/>
  2661. <use x="165.447266" xlink:href="#DejaVuSans-6c"/>
  2662. <use x="193.230469" xlink:href="#DejaVuSans-5f"/>
  2663. <use x="243.230469" xlink:href="#DejaVuSans-32"/>
  2664. <use x="306.853516" xlink:href="#DejaVuSans-30"/>
  2665. <use x="370.476562" xlink:href="#DejaVuSans-31"/>
  2666. <use x="434.099609" xlink:href="#DejaVuSans-38"/>
  2667. <use x="497.722656" xlink:href="#DejaVuSans-30"/>
  2668. <use x="561.345703" xlink:href="#DejaVuSans-37"/>
  2669. <use x="624.96875" xlink:href="#DejaVuSans-31"/>
  2670. <use x="688.591797" xlink:href="#DejaVuSans-30"/>
  2671. <use x="752.214844" xlink:href="#DejaVuSans-5f"/>
  2672. <use x="802.214844" xlink:href="#DejaVuSans-36"/>
  2673. <use x="865.837891" xlink:href="#DejaVuSans-30"/>
  2674. <use x="929.460938" xlink:href="#DejaVuSans-4d"/>
  2675. <use x="1015.740234" xlink:href="#DejaVuSans-45"/>
  2676. <use x="1078.923828" xlink:href="#DejaVuSans-41"/>
  2677. <use x="1147.332031" xlink:href="#DejaVuSans-5f"/>
  2678. <use x="1197.332031" xlink:href="#DejaVuSans-6d"/>
  2679. <use x="1294.744141" xlink:href="#DejaVuSans-61"/>
  2680. <use x="1356.023438" xlink:href="#DejaVuSans-72"/>
  2681. <use x="1397.121094" xlink:href="#DejaVuSans-6d"/>
  2682. <use x="1494.533203" xlink:href="#DejaVuSans-6f"/>
  2683. <use x="1555.714844" xlink:href="#DejaVuSans-73"/>
  2684. <use x="1607.814453" xlink:href="#DejaVuSans-65"/>
  2685. <use x="1669.337891" xlink:href="#DejaVuSans-74"/>
  2686. </g>
  2687. <!-- 3_onoffsteps30preframes90contrast1 -->
  2688. <defs>
  2689. <path d="M 37.109375 75.984375
  2690. L 37.109375 68.5
  2691. L 28.515625 68.5
  2692. Q 23.6875 68.5 21.796875 66.546875
  2693. Q 19.921875 64.59375 19.921875 59.515625
  2694. L 19.921875 54.6875
  2695. L 34.71875 54.6875
  2696. L 34.71875 47.703125
  2697. L 19.921875 47.703125
  2698. L 19.921875 0
  2699. L 10.890625 0
  2700. L 10.890625 47.703125
  2701. L 2.296875 47.703125
  2702. L 2.296875 54.6875
  2703. L 10.890625 54.6875
  2704. L 10.890625 58.5
  2705. Q 10.890625 67.625 15.140625 71.796875
  2706. Q 19.390625 75.984375 28.609375 75.984375
  2707. z
  2708. " id="DejaVuSans-66"/>
  2709. <path d="M 10.984375 1.515625
  2710. L 10.984375 10.5
  2711. Q 14.703125 8.734375 18.5 7.8125
  2712. Q 22.3125 6.890625 25.984375 6.890625
  2713. Q 35.75 6.890625 40.890625 13.453125
  2714. Q 46.046875 20.015625 46.78125 33.40625
  2715. Q 43.953125 29.203125 39.59375 26.953125
  2716. Q 35.25 24.703125 29.984375 24.703125
  2717. Q 19.046875 24.703125 12.671875 31.3125
  2718. Q 6.296875 37.9375 6.296875 49.421875
  2719. Q 6.296875 60.640625 12.9375 67.421875
  2720. Q 19.578125 74.21875 30.609375 74.21875
  2721. Q 43.265625 74.21875 49.921875 64.515625
  2722. Q 56.59375 54.828125 56.59375 36.375
  2723. Q 56.59375 19.140625 48.40625 8.859375
  2724. Q 40.234375 -1.421875 26.421875 -1.421875
  2725. Q 22.703125 -1.421875 18.890625 -0.6875
  2726. Q 15.09375 0.046875 10.984375 1.515625
  2727. z
  2728. M 30.609375 32.421875
  2729. Q 37.25 32.421875 41.125 36.953125
  2730. Q 45.015625 41.5 45.015625 49.421875
  2731. Q 45.015625 57.28125 41.125 61.84375
  2732. Q 37.25 66.40625 30.609375 66.40625
  2733. Q 23.96875 66.40625 20.09375 61.84375
  2734. Q 16.21875 57.28125 16.21875 49.421875
  2735. Q 16.21875 41.5 20.09375 36.953125
  2736. Q 23.96875 32.421875 30.609375 32.421875
  2737. z
  2738. " id="DejaVuSans-39"/>
  2739. <path d="M 48.78125 52.59375
  2740. L 48.78125 44.1875
  2741. Q 44.96875 46.296875 41.140625 47.34375
  2742. Q 37.3125 48.390625 33.40625 48.390625
  2743. Q 24.65625 48.390625 19.8125 42.84375
  2744. Q 14.984375 37.3125 14.984375 27.296875
  2745. Q 14.984375 17.28125 19.8125 11.734375
  2746. Q 24.65625 6.203125 33.40625 6.203125
  2747. Q 37.3125 6.203125 41.140625 7.25
  2748. Q 44.96875 8.296875 48.78125 10.40625
  2749. L 48.78125 2.09375
  2750. Q 45.015625 0.34375 40.984375 -0.53125
  2751. Q 36.96875 -1.421875 32.421875 -1.421875
  2752. Q 20.0625 -1.421875 12.78125 6.34375
  2753. Q 5.515625 14.109375 5.515625 27.296875
  2754. Q 5.515625 40.671875 12.859375 48.328125
  2755. Q 20.21875 56 33.015625 56
  2756. Q 37.15625 56 41.109375 55.140625
  2757. Q 45.0625 54.296875 48.78125 52.59375
  2758. z
  2759. " id="DejaVuSans-63"/>
  2760. </defs>
  2761. <g transform="translate(176.9575 30.423)scale(0.12 -0.12)">
  2762. <use xlink:href="#DejaVuSans-33"/>
  2763. <use x="63.623047" xlink:href="#DejaVuSans-5f"/>
  2764. <use x="113.623047" xlink:href="#DejaVuSans-6f"/>
  2765. <use x="174.804688" xlink:href="#DejaVuSans-6e"/>
  2766. <use x="238.183594" xlink:href="#DejaVuSans-6f"/>
  2767. <use x="299.365234" xlink:href="#DejaVuSans-66"/>
  2768. <use x="334.570312" xlink:href="#DejaVuSans-66"/>
  2769. <use x="369.775391" xlink:href="#DejaVuSans-73"/>
  2770. <use x="421.875" xlink:href="#DejaVuSans-74"/>
  2771. <use x="461.083984" xlink:href="#DejaVuSans-65"/>
  2772. <use x="522.607422" xlink:href="#DejaVuSans-70"/>
  2773. <use x="586.083984" xlink:href="#DejaVuSans-73"/>
  2774. <use x="638.183594" xlink:href="#DejaVuSans-33"/>
  2775. <use x="701.806641" xlink:href="#DejaVuSans-30"/>
  2776. <use x="765.429688" xlink:href="#DejaVuSans-70"/>
  2777. <use x="828.90625" xlink:href="#DejaVuSans-72"/>
  2778. <use x="869.988281" xlink:href="#DejaVuSans-65"/>
  2779. <use x="931.511719" xlink:href="#DejaVuSans-66"/>
  2780. <use x="966.716797" xlink:href="#DejaVuSans-72"/>
  2781. <use x="1007.830078" xlink:href="#DejaVuSans-61"/>
  2782. <use x="1069.109375" xlink:href="#DejaVuSans-6d"/>
  2783. <use x="1166.521484" xlink:href="#DejaVuSans-65"/>
  2784. <use x="1228.044922" xlink:href="#DejaVuSans-73"/>
  2785. <use x="1280.144531" xlink:href="#DejaVuSans-39"/>
  2786. <use x="1343.767578" xlink:href="#DejaVuSans-30"/>
  2787. <use x="1407.390625" xlink:href="#DejaVuSans-63"/>
  2788. <use x="1462.371094" xlink:href="#DejaVuSans-6f"/>
  2789. <use x="1523.552734" xlink:href="#DejaVuSans-6e"/>
  2790. <use x="1586.931641" xlink:href="#DejaVuSans-74"/>
  2791. <use x="1626.140625" xlink:href="#DejaVuSans-72"/>
  2792. <use x="1667.253906" xlink:href="#DejaVuSans-61"/>
  2793. <use x="1728.533203" xlink:href="#DejaVuSans-73"/>
  2794. <use x="1780.632812" xlink:href="#DejaVuSans-74"/>
  2795. <use x="1819.841797" xlink:href="#DejaVuSans-31"/>
  2796. </g>
  2797. <!-- 00801 Rating: 3 -->
  2798. <defs>
  2799. <path d="M 44.390625 34.1875
  2800. Q 47.5625 33.109375 50.5625 29.59375
  2801. Q 53.5625 26.078125 56.59375 19.921875
  2802. L 66.609375 0
  2803. L 56 0
  2804. L 46.6875 18.703125
  2805. Q 43.0625 26.03125 39.671875 28.421875
  2806. Q 36.28125 30.8125 30.421875 30.8125
  2807. L 19.671875 30.8125
  2808. L 19.671875 0
  2809. L 9.8125 0
  2810. L 9.8125 72.90625
  2811. L 32.078125 72.90625
  2812. Q 44.578125 72.90625 50.734375 67.671875
  2813. Q 56.890625 62.453125 56.890625 51.90625
  2814. Q 56.890625 45.015625 53.6875 40.46875
  2815. Q 50.484375 35.9375 44.390625 34.1875
  2816. z
  2817. M 19.671875 64.796875
  2818. L 19.671875 38.921875
  2819. L 32.078125 38.921875
  2820. Q 39.203125 38.921875 42.84375 42.21875
  2821. Q 46.484375 45.515625 46.484375 51.90625
  2822. Q 46.484375 58.296875 42.84375 61.546875
  2823. Q 39.203125 64.796875 32.078125 64.796875
  2824. z
  2825. " id="DejaVuSans-52"/>
  2826. </defs>
  2827. <g transform="translate(241.750938 44.194125)scale(0.12 -0.12)">
  2828. <use xlink:href="#DejaVuSans-30"/>
  2829. <use x="63.623047" xlink:href="#DejaVuSans-30"/>
  2830. <use x="127.246094" xlink:href="#DejaVuSans-38"/>
  2831. <use x="190.869141" xlink:href="#DejaVuSans-30"/>
  2832. <use x="254.492188" xlink:href="#DejaVuSans-31"/>
  2833. <use x="318.115234" xlink:href="#DejaVuSans-20"/>
  2834. <use x="349.902344" xlink:href="#DejaVuSans-52"/>
  2835. <use x="419.353516" xlink:href="#DejaVuSans-61"/>
  2836. <use x="480.632812" xlink:href="#DejaVuSans-74"/>
  2837. <use x="519.841797" xlink:href="#DejaVuSans-69"/>
  2838. <use x="547.625" xlink:href="#DejaVuSans-6e"/>
  2839. <use x="611.003906" xlink:href="#DejaVuSans-67"/>
  2840. <use x="674.480469" xlink:href="#DejaVuSans-3a"/>
  2841. <use x="708.171875" xlink:href="#DejaVuSans-20"/>
  2842. <use x="739.958984" xlink:href="#DejaVuSans-33"/>
  2843. </g>
  2844. <!-- -->
  2845. <g transform="translate(289.965625 57.6315)scale(0.12 -0.12)"/>
  2846. </g>
  2847. </g>
  2848. <defs>
  2849. <clipPath id="pd16f15ebf9">
  2850. <rect height="222.381818" width="502.2" x="46.965625" y="72"/>
  2851. </clipPath>
  2852. <clipPath id="p2c86de8dd8">
  2853. <rect height="222.381818" width="502.2" x="46.965625" y="338.858182"/>
  2854. </clipPath>
  2855. </defs>
  2856. </svg>