123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812 |
- <svg xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 393.70125 296.46825" xmlns="http://www.w3.org/2000/svg" version="1.1">
- <metadata>
- <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
- <cc:Work>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
- <dc:date>2024-04-22T06:02:26.567197</dc:date>
- <dc:format>image/svg+xml</dc:format>
- <dc:creator>
- <cc:Agent>
- <dc:title>Matplotlib v3.8.2, https://matplotlib.org/</dc:title>
- </cc:Agent>
- </dc:creator>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <defs>
- <style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
- </defs>
- <g id="figure_1">
- <g id="patch_1">
- <path d="M 0 296.46825
- L 393.70125 296.46825
- L 393.70125 0
- L 0 0
- z
- " style="fill: #ffffff"/>
- </g>
- <g id="axes_1">
- <g id="patch_2">
- <path d="M 36.58125 266.112
- L 393.70125 266.112
- L 393.70125 -0
- L 36.58125 -0
- z
- " style="fill: #ffffff"/>
- </g>
- <g id="patch_3">
- <path d="M 36.58125 266.112
- L 36.58125 252.244286
- L 80.995795 252.244286
- L 80.995795 257.570818
- L 125.410341 257.570818
- L 125.410341 259.966853
- L 169.824886 259.966853
- L 169.824886 262.153686
- L 214.239432 262.153686
- L 214.239432 262.279412
- L 258.653977 262.279412
- L 258.653977 265.30611
- L 303.068523 265.30611
- L 303.068523 265.656818
- L 347.483068 265.656818
- L 347.483068 265.860804
- L 391.897614 265.860804
- L 391.897614 265.911832
- L 436.312159 265.911832
- L 436.312159 266.072806
- L 480.726705 266.072806
- L 480.726705 266.09393
- L 525.14125 266.09393
- L 525.14125 266.100547
- L 569.555795 266.100547
- L 569.555795 266.103347
- L 613.970341 266.103347
- L 613.970341 266.109582
- L 658.384886 266.109582
- L 658.384886 266.109964
- L 702.799432 266.109964
- L 702.799432 266.109709
- L 747.213977 266.109709
- L 747.213977 266.110727
- L 791.628523 266.110727
- L 791.628523 266.109582
- L 836.043068 266.109582
- L 836.043068 266.110982
- L 880.457614 266.110982
- L 880.457614 266.111491
- L 924.872159 266.111491
- L 924.872159 266.111491
- L 969.286705 266.111491
- L 969.286705 266.1106
- L 1013.70125 266.1106
- L 1013.70125 266.111745
- L 1058.115795 266.111745
- L 1058.115795 266.111491
- L 1102.530341 266.111491
- L 1102.530341 266.111491
- L 1146.944886 266.111491
- L 1146.944886 266.110982
- L 1191.359432 266.110982
- L 1191.359432 266.110727
- L 1235.773977 266.110727
- L 1235.773977 266.111364
- L 1280.188523 266.111364
- L 1280.188523 266.111236
- L 1324.603068 266.111236
- L 1324.603068 266.111364
- L 1369.017614 266.111364
- L 1369.017614 266.110855
- L 1413.432159 266.110855
- L 1413.432159 266.111618
- L 1457.846705 266.111618
- L 1457.846705 266.111491
- L 1502.26125 266.111491
- L 1502.26125 266.111491
- L 1546.675795 266.111491
- L 1546.675795 266.110727
- L 1591.090341 266.110727
- L 1591.090341 266.111236
- L 1635.504886 266.111236
- L 1635.504886 266.111491
- L 1679.919432 266.111491
- L 1679.919432 266.111618
- L 1724.333977 266.111618
- L 1724.333977 266.110727
- L 1768.748523 266.110727
- L 1768.748523 266.111618
- L 1813.163068 266.111618
- L 1813.163068 266.111491
- L 1857.577614 266.111491
- L 1857.577614 266.111873
- L 1901.992159 266.111873
- L 1901.992159 266.111873
- L 1946.406705 266.111873
- L 1946.406705 266.111109
- L 1990.82125 266.111109
- L 1990.82125 266.111745
- L 2035.235795 266.111745
- L 2035.235795 266.111618
- L 2079.650341 266.111618
- L 2079.650341 266.111873
- L 2124.064886 266.111873
- L 2124.064886 266.110982
- L 2168.479432 266.110982
- L 2168.479432 266.111618
- L 2212.893977 266.111618
- L 2212.893977 266.111873
- L 2257.308523 266.111873
- L 2257.308523 266.111745
- L 2301.723068 266.111745
- L 2301.723068 266.110855
- L 2346.137614 266.110855
- L 2346.137614 266.112
- L 2390.552159 266.112
- L 2390.552159 266.111873
- L 2434.966705 266.111873
- L 2434.966705 266.111745
- L 2479.38125 266.111745
- L 2479.38125 266.112
- L 2523.795795 266.112
- L 2523.795795 266.111236
- L 2568.210341 266.111236
- L 2568.210341 266.111873
- L 2612.624886 266.111873
- L 2612.624886 266.111873
- L 2657.039432 266.111873
- L 2657.039432 266.111618
- L 2701.453977 266.111618
- L 2701.453977 266.111873
- L 2745.868523 266.111873
- L 2745.868523 266.111873
- L 2790.283068 266.111873
- L 2790.283068 266.111873
- L 2834.697614 266.111873
- L 2834.697614 266.112
- L 2879.112159 266.112
- L 2879.112159 266.111236
- L 2923.526705 266.111236
- L 2923.526705 266.111873
- L 2967.94125 266.111873
- L 2967.94125 266.112
- L 3012.355795 266.112
- L 3012.355795 266.111618
- L 3056.770341 266.111618
- L 3056.770341 266.112
- L 3101.184886 266.112
- L 3101.184886 266.111491
- L 3145.599432 266.111491
- L 3145.599432 266.111745
- L 3190.013977 266.111745
- L 3190.013977 266.111873
- L 3234.428523 266.111873
- L 3234.428523 266.111873
- L 3278.843068 266.111873
- L 3278.843068 266.111618
- L 3323.257614 266.111618
- L 3323.257614 266.111873
- L 3367.672159 266.111873
- L 3367.672159 266.112
- L 3412.086705 266.112
- L 3412.086705 266.112
- L 3456.50125 266.112
- L 3456.50125 266.111873
- L 3500.915795 266.111873
- L 3500.915795 266.111873
- L 3545.330341 266.111873
- L 3545.330341 266.111745
- L 3589.744886 266.111745
- L 3589.744886 266.112
- L 3634.159432 266.112
- L 3634.159432 266.112
- L 3678.573977 266.112
- L 3678.573977 266.111873
- L 3722.988523 266.111873
- L 3722.988523 266.112
- L 3767.403068 266.112
- L 3767.403068 266.112
- L 3811.817614 266.112
- L 3811.817614 266.112
- L 3856.232159 266.112
- L 3856.232159 266.111745
- L 3900.646705 266.111745
- L 3900.646705 266.111745
- L 3945.06125 266.111745
- L 3945.06125 266.112
- L 3989.475795 266.112
- L 3989.475795 266.111618
- L 4033.890341 266.111618
- L 4033.890341 266.112
- L 4078.304886 266.112
- L 4078.304886 266.112
- L 4122.719432 266.112
- L 4122.719432 266.111745
- L 4167.133977 266.111745
- L 4167.133977 266.112
- L 4211.548523 266.112
- L 4211.548523 266.112
- L 4255.963068 266.112
- L 4255.963068 266.111745
- L 4300.377614 266.111745
- L 4300.377614 266.112
- L 4344.792159 266.112
- L 4344.792159 266.112
- L 4389.206705 266.112
- L 4389.206705 266.112
- L 4433.62125 266.112
- L 4433.62125 266.111745
- L 4478.035795 266.111745
- L 4478.035795 266.112
- L 4522.450341 266.112
- L 4522.450341 266.112
- L 4566.864886 266.112
- L 4566.864886 266.111873
- L 4611.279432 266.111873
- L 4611.279432 266.111745
- L 4655.693977 266.111745
- L 4655.693977 266.111873
- L 4700.108523 266.111873
- L 4700.108523 266.111873
- L 4744.523068 266.111873
- L 4744.523068 266.112
- L 4788.937614 266.112
- L 4788.937614 266.112
- L 4833.352159 266.112
- L 4833.352159 266.111873
- L 4877.766705 266.111873
- L 4877.766705 266.111873
- L 4922.18125 266.111873
- L 4922.18125 266.112
- L 4966.595795 266.112
- L 4966.595795 266.112
- L 5011.010341 266.112
- L 5011.010341 266.112
- L 5055.424886 266.112
- L 5055.424886 266.111873
- L 5099.839432 266.111873
- L 5099.839432 266.111873
- L 5144.253977 266.111873
- L 5144.253977 266.111873
- L 5188.668523 266.111873
- L 5188.668523 266.112
- L 5233.083068 266.112
- L 5233.083068 266.112
- L 5277.497614 266.112
- L 5277.497614 266.112
- L 5321.912159 266.112
- L 5321.912159 266.111873
- L 5366.326705 266.111873
- L 5366.326705 266.112
- L 5410.74125 266.112
- L 5410.74125 266.111873
- L 5455.155795 266.111873
- L 5455.155795 266.112
- L 5499.570341 266.112
- L 5499.570341 266.112
- L 5543.984886 266.112
- L 5543.984886 266.111873
- L 5588.399432 266.111873
- L 5588.399432 266.112
- L 5632.813977 266.112
- L 5632.813977 266.112
- L 5677.228523 266.112
- L 5677.228523 266.112
- L 5721.643068 266.112
- L 5721.643068 266.112
- L 5766.057614 266.112
- L 5766.057614 266.112
- L 5810.472159 266.112
- L 5810.472159 266.112
- L 5854.886705 266.112
- L 5854.886705 266.112
- L 5899.30125 266.112
- L 5899.30125 266.112
- L 5943.715795 266.112
- L 5943.715795 266.112
- L 5988.130341 266.112
- L 5988.130341 266.112
- L 6032.544886 266.112
- L 6032.544886 266.112
- L 6076.959432 266.112
- L 6076.959432 266.112
- L 6121.373977 266.112
- L 6121.373977 266.112
- L 6165.788523 266.112
- L 6165.788523 266.112
- L 6210.203068 266.112
- L 6210.203068 266.112
- L 6254.617614 266.112
- L 6254.617614 266.112
- L 6299.032159 266.112
- L 6299.032159 266.112
- L 6343.446705 266.112
- L 6343.446705 266.112
- L 6387.86125 266.112
- L 6387.86125 266.112
- L 6432.275795 266.112
- L 6432.275795 266.112
- L 6476.690341 266.112
- L 6476.690341 266.112
- L 6521.104886 266.112
- L 6521.104886 266.112
- L 6565.519432 266.112
- L 6565.519432 266.112
- L 6609.933977 266.112
- L 6609.933977 266.112
- L 6654.348523 266.112
- L 6654.348523 266.112
- L 6698.763068 266.112
- L 6698.763068 266.112
- L 6743.177614 266.112
- L 6743.177614 266.112
- L 6787.592159 266.112
- L 6787.592159 266.112
- L 6832.006705 266.112
- L 6832.006705 266.112
- L 6876.42125 266.112
- L 6876.42125 266.112
- L 6920.835795 266.112
- L 6920.835795 266.112
- L 6965.250341 266.112
- L 6965.250341 266.112
- L 7009.664886 266.112
- L 7009.664886 266.112
- L 7054.079432 266.112
- L 7054.079432 266.112
- L 7098.493977 266.112
- L 7098.493977 266.111873
- L 7142.908523 266.111873
- L 7142.908523 266.112
- L 7098.493977 266.112
- L 7098.493977 266.112
- L 7054.079432 266.112
- L 7054.079432 266.112
- L 7009.664886 266.112
- L 7009.664886 266.112
- L 6965.250341 266.112
- L 6965.250341 266.112
- L 6920.835795 266.112
- L 6920.835795 266.112
- L 6876.42125 266.112
- L 6876.42125 266.112
- L 6832.006705 266.112
- L 6832.006705 266.112
- L 6787.592159 266.112
- L 6787.592159 266.112
- L 6743.177614 266.112
- L 6743.177614 266.112
- L 6698.763068 266.112
- L 6698.763068 266.112
- L 6654.348523 266.112
- L 6654.348523 266.112
- L 6609.933977 266.112
- L 6609.933977 266.112
- L 6565.519432 266.112
- L 6565.519432 266.112
- L 6521.104886 266.112
- L 6521.104886 266.112
- L 6476.690341 266.112
- L 6476.690341 266.112
- L 6432.275795 266.112
- L 6432.275795 266.112
- L 6387.86125 266.112
- L 6387.86125 266.112
- L 6343.446705 266.112
- L 6343.446705 266.112
- L 6299.032159 266.112
- L 6299.032159 266.112
- L 6254.617614 266.112
- L 6254.617614 266.112
- L 6210.203068 266.112
- L 6210.203068 266.112
- L 6165.788523 266.112
- L 6165.788523 266.112
- L 6121.373977 266.112
- L 6121.373977 266.112
- L 6076.959432 266.112
- L 6076.959432 266.112
- L 6032.544886 266.112
- L 6032.544886 266.112
- L 5988.130341 266.112
- L 5988.130341 266.112
- L 5943.715795 266.112
- L 5943.715795 266.112
- L 5899.30125 266.112
- L 5899.30125 266.112
- L 5854.886705 266.112
- L 5854.886705 266.112
- L 5810.472159 266.112
- L 5810.472159 266.112
- L 5766.057614 266.112
- L 5766.057614 266.112
- L 5721.643068 266.112
- L 5721.643068 266.112
- L 5677.228523 266.112
- L 5677.228523 266.112
- L 5632.813977 266.112
- L 5632.813977 266.112
- L 5588.399432 266.112
- L 5588.399432 266.112
- L 5543.984886 266.112
- L 5543.984886 266.112
- L 5499.570341 266.112
- L 5499.570341 266.112
- L 5455.155795 266.112
- L 5455.155795 266.112
- L 5410.74125 266.112
- L 5410.74125 266.112
- L 5366.326705 266.112
- L 5366.326705 266.112
- L 5321.912159 266.112
- L 5321.912159 266.112
- L 5277.497614 266.112
- L 5277.497614 266.112
- L 5233.083068 266.112
- L 5233.083068 266.112
- L 5188.668523 266.112
- L 5188.668523 266.112
- L 5144.253977 266.112
- L 5144.253977 266.112
- L 5099.839432 266.112
- L 5099.839432 266.112
- L 5055.424886 266.112
- L 5055.424886 266.112
- L 5011.010341 266.112
- L 5011.010341 266.112
- L 4966.595795 266.112
- L 4966.595795 266.112
- L 4922.18125 266.112
- L 4922.18125 266.112
- L 4877.766705 266.112
- L 4877.766705 266.112
- L 4833.352159 266.112
- L 4833.352159 266.112
- L 4788.937614 266.112
- L 4788.937614 266.112
- L 4744.523068 266.112
- L 4744.523068 266.112
- L 4700.108523 266.112
- L 4700.108523 266.112
- L 4655.693977 266.112
- L 4655.693977 266.112
- L 4611.279432 266.112
- L 4611.279432 266.112
- L 4566.864886 266.112
- L 4566.864886 266.112
- L 4522.450341 266.112
- L 4522.450341 266.112
- L 4478.035795 266.112
- L 4478.035795 266.112
- L 4433.62125 266.112
- L 4433.62125 266.112
- L 4389.206705 266.112
- L 4389.206705 266.112
- L 4344.792159 266.112
- L 4344.792159 266.112
- L 4300.377614 266.112
- L 4300.377614 266.112
- L 4255.963068 266.112
- L 4255.963068 266.112
- L 4211.548523 266.112
- L 4211.548523 266.112
- L 4167.133977 266.112
- L 4167.133977 266.112
- L 4122.719432 266.112
- L 4122.719432 266.112
- L 4078.304886 266.112
- L 4078.304886 266.112
- L 4033.890341 266.112
- L 4033.890341 266.112
- L 3989.475795 266.112
- L 3989.475795 266.112
- L 3945.06125 266.112
- L 3945.06125 266.112
- L 3900.646705 266.112
- L 3900.646705 266.112
- L 3856.232159 266.112
- L 3856.232159 266.112
- L 3811.817614 266.112
- L 3811.817614 266.112
- L 3767.403068 266.112
- L 3767.403068 266.112
- L 3722.988523 266.112
- L 3722.988523 266.112
- L 3678.573977 266.112
- L 3678.573977 266.112
- L 3634.159432 266.112
- L 3634.159432 266.112
- L 3589.744886 266.112
- L 3589.744886 266.112
- L 3545.330341 266.112
- L 3545.330341 266.112
- L 3500.915795 266.112
- L 3500.915795 266.112
- L 3456.50125 266.112
- L 3456.50125 266.112
- L 3412.086705 266.112
- L 3412.086705 266.112
- L 3367.672159 266.112
- L 3367.672159 266.112
- L 3323.257614 266.112
- L 3323.257614 266.112
- L 3278.843068 266.112
- L 3278.843068 266.112
- L 3234.428523 266.112
- L 3234.428523 266.112
- L 3190.013977 266.112
- L 3190.013977 266.112
- L 3145.599432 266.112
- L 3145.599432 266.112
- L 3101.184886 266.112
- L 3101.184886 266.112
- L 3056.770341 266.112
- L 3056.770341 266.112
- L 3012.355795 266.112
- L 3012.355795 266.112
- L 2967.94125 266.112
- L 2967.94125 266.112
- L 2923.526705 266.112
- L 2923.526705 266.112
- L 2879.112159 266.112
- L 2879.112159 266.112
- L 2834.697614 266.112
- L 2834.697614 266.112
- L 2790.283068 266.112
- L 2790.283068 266.112
- L 2745.868523 266.112
- L 2745.868523 266.112
- L 2701.453977 266.112
- L 2701.453977 266.112
- L 2657.039432 266.112
- L 2657.039432 266.112
- L 2612.624886 266.112
- L 2612.624886 266.112
- L 2568.210341 266.112
- L 2568.210341 266.112
- L 2523.795795 266.112
- L 2523.795795 266.112
- L 2479.38125 266.112
- L 2479.38125 266.112
- L 2434.966705 266.112
- L 2434.966705 266.112
- L 2390.552159 266.112
- L 2390.552159 266.112
- L 2346.137614 266.112
- L 2346.137614 266.112
- L 2301.723068 266.112
- L 2301.723068 266.112
- L 2257.308523 266.112
- L 2257.308523 266.112
- L 2212.893977 266.112
- L 2212.893977 266.112
- L 2168.479432 266.112
- L 2168.479432 266.112
- L 2124.064886 266.112
- L 2124.064886 266.112
- L 2079.650341 266.112
- L 2079.650341 266.112
- L 2035.235795 266.112
- L 2035.235795 266.112
- L 1990.82125 266.112
- L 1990.82125 266.112
- L 1946.406705 266.112
- L 1946.406705 266.112
- L 1901.992159 266.112
- L 1901.992159 266.112
- L 1857.577614 266.112
- L 1857.577614 266.112
- L 1813.163068 266.112
- L 1813.163068 266.112
- L 1768.748523 266.112
- L 1768.748523 266.112
- L 1724.333977 266.112
- L 1724.333977 266.112
- L 1679.919432 266.112
- L 1679.919432 266.112
- L 1635.504886 266.112
- L 1635.504886 266.112
- L 1591.090341 266.112
- L 1591.090341 266.112
- L 1546.675795 266.112
- L 1546.675795 266.112
- L 1502.26125 266.112
- L 1502.26125 266.112
- L 1457.846705 266.112
- L 1457.846705 266.112
- L 1413.432159 266.112
- L 1413.432159 266.112
- L 1369.017614 266.112
- L 1369.017614 266.112
- L 1324.603068 266.112
- L 1324.603068 266.112
- L 1280.188523 266.112
- L 1280.188523 266.112
- L 1235.773977 266.112
- L 1235.773977 266.112
- L 1191.359432 266.112
- L 1191.359432 266.112
- L 1146.944886 266.112
- L 1146.944886 266.112
- L 1102.530341 266.112
- L 1102.530341 266.112
- L 1058.115795 266.112
- L 1058.115795 266.112
- L 1013.70125 266.112
- L 1013.70125 266.112
- L 969.286705 266.112
- L 969.286705 266.112
- L 924.872159 266.112
- L 924.872159 266.112
- L 880.457614 266.112
- L 880.457614 266.112
- L 836.043068 266.112
- L 836.043068 266.112
- L 791.628523 266.112
- L 791.628523 266.112
- L 747.213977 266.112
- L 747.213977 266.112
- L 702.799432 266.112
- L 702.799432 266.112
- L 658.384886 266.112
- L 658.384886 266.112
- L 613.970341 266.112
- L 613.970341 266.112
- L 569.555795 266.112
- L 569.555795 266.112
- L 525.14125 266.112
- L 525.14125 266.112
- L 480.726705 266.112
- L 480.726705 266.112
- L 436.312159 266.112
- L 436.312159 266.112
- L 391.897614 266.112
- L 391.897614 266.112
- L 347.483068 266.112
- L 347.483068 266.112
- L 303.068523 266.112
- L 303.068523 266.112
- L 258.653977 266.112
- L 258.653977 266.112
- L 214.239432 266.112
- L 214.239432 266.112
- L 169.824886 266.112
- L 169.824886 266.112
- L 125.410341 266.112
- L 125.410341 266.112
- L 80.995795 266.112
- L 80.995795 266.112
- z
- " clip-path="url(#pcd3f01090e)" style="fill: #1e90ff; opacity: 0.2"/>
- </g>
- <g id="matplotlib.axis_1">
- <g id="xtick_1">
- <g id="line2d_1">
- <defs>
- <path id="mb8c7bc4cd8" d="M 0 0
- L 0 3.5
- " style="stroke: #000000; stroke-width: 0.8"/>
- </defs>
- <g>
- <use xlink:href="#mb8c7bc4cd8" x="36.58125" y="266.112" style="stroke: #000000; stroke-width: 0.8"/>
- </g>
- </g>
- <g id="text_1">
- <!-- 0 -->
- <g transform="translate(33.4 280.710437) scale(0.1 -0.1)">
- <defs>
- <path id="DejaVuSans-30" d="M 2034 4250
- Q 1547 4250 1301 3770
- Q 1056 3291 1056 2328
- Q 1056 1369 1301 889
- Q 1547 409 2034 409
- Q 2525 409 2770 889
- Q 3016 1369 3016 2328
- Q 3016 3291 2770 3770
- Q 2525 4250 2034 4250
- z
- M 2034 4750
- Q 2819 4750 3233 4129
- Q 3647 3509 3647 2328
- Q 3647 1150 3233 529
- Q 2819 -91 2034 -91
- Q 1250 -91 836 529
- Q 422 1150 422 2328
- Q 422 3509 836 4129
- Q 1250 4750 2034 4750
- z
- " transform="scale(0.015625)"/>
- </defs>
- <use xlink:href="#DejaVuSans-30"/>
- </g>
- </g>
- </g>
- <g id="xtick_2">
- <g id="line2d_2">
- <g>
- <use xlink:href="#mb8c7bc4cd8" x="101.512159" y="266.112" style="stroke: #000000; stroke-width: 0.8"/>
- </g>
- </g>
- <g id="text_2">
- <!-- 20 -->
- <g transform="translate(95.149659 280.710437) scale(0.1 -0.1)">
- <defs>
- <path id="DejaVuSans-32" d="M 1228 531
- L 3431 531
- L 3431 0
- L 469 0
- L 469 531
- Q 828 903 1448 1529
- Q 2069 2156 2228 2338
- Q 2531 2678 2651 2914
- Q 2772 3150 2772 3378
- Q 2772 3750 2511 3984
- Q 2250 4219 1831 4219
- Q 1534 4219 1204 4116
- Q 875 4013 500 3803
- L 500 4441
- Q 881 4594 1212 4672
- Q 1544 4750 1819 4750
- Q 2544 4750 2975 4387
- Q 3406 4025 3406 3419
- Q 3406 3131 3298 2873
- Q 3191 2616 2906 2266
- Q 2828 2175 2409 1742
- Q 1991 1309 1228 531
- z
- " transform="scale(0.015625)"/>
- </defs>
- <use xlink:href="#DejaVuSans-32"/>
- <use xlink:href="#DejaVuSans-30" x="63.623047"/>
- </g>
- </g>
- </g>
- <g id="xtick_3">
- <g id="line2d_3">
- <g>
- <use xlink:href="#mb8c7bc4cd8" x="166.443068" y="266.112" style="stroke: #000000; stroke-width: 0.8"/>
- </g>
- </g>
- <g id="text_3">
- <!-- 40 -->
- <g transform="translate(160.080568 280.710437) scale(0.1 -0.1)">
- <defs>
- <path id="DejaVuSans-34" d="M 2419 4116
- L 825 1625
- L 2419 1625
- L 2419 4116
- z
- M 2253 4666
- L 3047 4666
- L 3047 1625
- L 3713 1625
- L 3713 1100
- L 3047 1100
- L 3047 0
- L 2419 0
- L 2419 1100
- L 313 1100
- L 313 1709
- L 2253 4666
- z
- " transform="scale(0.015625)"/>
- </defs>
- <use xlink:href="#DejaVuSans-34"/>
- <use xlink:href="#DejaVuSans-30" x="63.623047"/>
- </g>
- </g>
- </g>
- <g id="xtick_4">
- <g id="line2d_4">
- <g>
- <use xlink:href="#mb8c7bc4cd8" x="231.373977" y="266.112" style="stroke: #000000; stroke-width: 0.8"/>
- </g>
- </g>
- <g id="text_4">
- <!-- 60 -->
- <g transform="translate(225.011477 280.710437) scale(0.1 -0.1)">
- <defs>
- <path id="DejaVuSans-36" d="M 2113 2584
- Q 1688 2584 1439 2293
- Q 1191 2003 1191 1497
- Q 1191 994 1439 701
- Q 1688 409 2113 409
- Q 2538 409 2786 701
- Q 3034 994 3034 1497
- Q 3034 2003 2786 2293
- Q 2538 2584 2113 2584
- z
- M 3366 4563
- L 3366 3988
- Q 3128 4100 2886 4159
- Q 2644 4219 2406 4219
- Q 1781 4219 1451 3797
- Q 1122 3375 1075 2522
- Q 1259 2794 1537 2939
- Q 1816 3084 2150 3084
- Q 2853 3084 3261 2657
- Q 3669 2231 3669 1497
- Q 3669 778 3244 343
- Q 2819 -91 2113 -91
- Q 1303 -91 875 529
- Q 447 1150 447 2328
- Q 447 3434 972 4092
- Q 1497 4750 2381 4750
- Q 2619 4750 2861 4703
- Q 3103 4656 3366 4563
- z
- " transform="scale(0.015625)"/>
- </defs>
- <use xlink:href="#DejaVuSans-36"/>
- <use xlink:href="#DejaVuSans-30" x="63.623047"/>
- </g>
- </g>
- </g>
- <g id="xtick_5">
- <g id="line2d_5">
- <g>
- <use xlink:href="#mb8c7bc4cd8" x="296.304886" y="266.112" style="stroke: #000000; stroke-width: 0.8"/>
- </g>
- </g>
- <g id="text_5">
- <!-- 80 -->
- <g transform="translate(289.942386 280.710437) scale(0.1 -0.1)">
- <defs>
- <path id="DejaVuSans-38" d="M 2034 2216
- Q 1584 2216 1326 1975
- Q 1069 1734 1069 1313
- Q 1069 891 1326 650
- Q 1584 409 2034 409
- Q 2484 409 2743 651
- Q 3003 894 3003 1313
- Q 3003 1734 2745 1975
- Q 2488 2216 2034 2216
- z
- M 1403 2484
- Q 997 2584 770 2862
- Q 544 3141 544 3541
- Q 544 4100 942 4425
- Q 1341 4750 2034 4750
- Q 2731 4750 3128 4425
- Q 3525 4100 3525 3541
- Q 3525 3141 3298 2862
- Q 3072 2584 2669 2484
- Q 3125 2378 3379 2068
- Q 3634 1759 3634 1313
- Q 3634 634 3220 271
- Q 2806 -91 2034 -91
- Q 1263 -91 848 271
- Q 434 634 434 1313
- Q 434 1759 690 2068
- Q 947 2378 1403 2484
- z
- M 1172 3481
- Q 1172 3119 1398 2916
- Q 1625 2713 2034 2713
- Q 2441 2713 2670 2916
- Q 2900 3119 2900 3481
- Q 2900 3844 2670 4047
- Q 2441 4250 2034 4250
- Q 1625 4250 1398 4047
- Q 1172 3844 1172 3481
- z
- " transform="scale(0.015625)"/>
- </defs>
- <use xlink:href="#DejaVuSans-38"/>
- <use xlink:href="#DejaVuSans-30" x="63.623047"/>
- </g>
- </g>
- </g>
- <g id="xtick_6">
- <g id="line2d_6">
- <g>
- <use xlink:href="#mb8c7bc4cd8" x="361.235795" y="266.112" style="stroke: #000000; stroke-width: 0.8"/>
- </g>
- </g>
- <g id="text_6">
- <!-- 100 -->
- <g transform="translate(351.692045 280.710437) scale(0.1 -0.1)">
- <defs>
- <path id="DejaVuSans-31" d="M 794 531
- L 1825 531
- L 1825 4091
- L 703 3866
- L 703 4441
- L 1819 4666
- L 2450 4666
- L 2450 531
- L 3481 531
- L 3481 0
- L 794 0
- L 794 531
- z
- " transform="scale(0.015625)"/>
- </defs>
- <use xlink:href="#DejaVuSans-31"/>
- <use xlink:href="#DejaVuSans-30" x="63.623047"/>
- <use xlink:href="#DejaVuSans-30" x="127.246094"/>
- </g>
- </g>
- </g>
- <g id="text_7">
- <!-- Intensity within "hat" mask -->
- <g transform="translate(147.219375 294.388562) scale(0.1 -0.1)">
- <defs>
- <path id="DejaVuSans-49" d="M 628 4666
- L 1259 4666
- L 1259 0
- L 628 0
- L 628 4666
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-6e" d="M 3513 2113
- L 3513 0
- L 2938 0
- L 2938 2094
- Q 2938 2591 2744 2837
- Q 2550 3084 2163 3084
- Q 1697 3084 1428 2787
- Q 1159 2491 1159 1978
- L 1159 0
- L 581 0
- L 581 3500
- L 1159 3500
- L 1159 2956
- Q 1366 3272 1645 3428
- Q 1925 3584 2291 3584
- Q 2894 3584 3203 3211
- Q 3513 2838 3513 2113
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-74" d="M 1172 4494
- L 1172 3500
- L 2356 3500
- L 2356 3053
- L 1172 3053
- L 1172 1153
- Q 1172 725 1289 603
- Q 1406 481 1766 481
- L 2356 481
- L 2356 0
- L 1766 0
- Q 1100 0 847 248
- Q 594 497 594 1153
- L 594 3053
- L 172 3053
- L 172 3500
- L 594 3500
- L 594 4494
- L 1172 4494
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-65" d="M 3597 1894
- L 3597 1613
- L 953 1613
- Q 991 1019 1311 708
- Q 1631 397 2203 397
- Q 2534 397 2845 478
- Q 3156 559 3463 722
- L 3463 178
- Q 3153 47 2828 -22
- Q 2503 -91 2169 -91
- Q 1331 -91 842 396
- Q 353 884 353 1716
- Q 353 2575 817 3079
- Q 1281 3584 2069 3584
- Q 2775 3584 3186 3129
- Q 3597 2675 3597 1894
- z
- M 3022 2063
- Q 3016 2534 2758 2815
- Q 2500 3097 2075 3097
- Q 1594 3097 1305 2825
- Q 1016 2553 972 2059
- L 3022 2063
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-73" d="M 2834 3397
- L 2834 2853
- Q 2591 2978 2328 3040
- Q 2066 3103 1784 3103
- Q 1356 3103 1142 2972
- Q 928 2841 928 2578
- Q 928 2378 1081 2264
- Q 1234 2150 1697 2047
- L 1894 2003
- Q 2506 1872 2764 1633
- Q 3022 1394 3022 966
- Q 3022 478 2636 193
- Q 2250 -91 1575 -91
- Q 1294 -91 989 -36
- Q 684 19 347 128
- L 347 722
- Q 666 556 975 473
- Q 1284 391 1588 391
- Q 1994 391 2212 530
- Q 2431 669 2431 922
- Q 2431 1156 2273 1281
- Q 2116 1406 1581 1522
- L 1381 1569
- Q 847 1681 609 1914
- Q 372 2147 372 2553
- Q 372 3047 722 3315
- Q 1072 3584 1716 3584
- Q 2034 3584 2315 3537
- Q 2597 3491 2834 3397
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-69" d="M 603 3500
- L 1178 3500
- L 1178 0
- L 603 0
- L 603 3500
- z
- M 603 4863
- L 1178 4863
- L 1178 4134
- L 603 4134
- L 603 4863
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-79" d="M 2059 -325
- Q 1816 -950 1584 -1140
- Q 1353 -1331 966 -1331
- L 506 -1331
- L 506 -850
- L 844 -850
- Q 1081 -850 1212 -737
- Q 1344 -625 1503 -206
- L 1606 56
- L 191 3500
- L 800 3500
- L 1894 763
- L 2988 3500
- L 3597 3500
- L 2059 -325
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-20" transform="scale(0.015625)"/>
- <path id="DejaVuSans-77" d="M 269 3500
- L 844 3500
- L 1563 769
- L 2278 3500
- L 2956 3500
- L 3675 769
- L 4391 3500
- L 4966 3500
- L 4050 0
- L 3372 0
- L 2619 2869
- L 1863 0
- L 1184 0
- L 269 3500
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-68" d="M 3513 2113
- L 3513 0
- L 2938 0
- L 2938 2094
- Q 2938 2591 2744 2837
- Q 2550 3084 2163 3084
- Q 1697 3084 1428 2787
- Q 1159 2491 1159 1978
- L 1159 0
- L 581 0
- L 581 4863
- L 1159 4863
- L 1159 2956
- Q 1366 3272 1645 3428
- Q 1925 3584 2291 3584
- Q 2894 3584 3203 3211
- Q 3513 2838 3513 2113
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-22" d="M 1147 4666
- L 1147 2931
- L 616 2931
- L 616 4666
- L 1147 4666
- z
- M 2328 4666
- L 2328 2931
- L 1797 2931
- L 1797 4666
- L 2328 4666
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-61" d="M 2194 1759
- Q 1497 1759 1228 1600
- Q 959 1441 959 1056
- Q 959 750 1161 570
- Q 1363 391 1709 391
- Q 2188 391 2477 730
- Q 2766 1069 2766 1631
- L 2766 1759
- L 2194 1759
- z
- M 3341 1997
- L 3341 0
- L 2766 0
- L 2766 531
- Q 2569 213 2275 61
- Q 1981 -91 1556 -91
- Q 1019 -91 701 211
- Q 384 513 384 1019
- Q 384 1609 779 1909
- Q 1175 2209 1959 2209
- L 2766 2209
- L 2766 2266
- Q 2766 2663 2505 2880
- Q 2244 3097 1772 3097
- Q 1472 3097 1187 3025
- Q 903 2953 641 2809
- L 641 3341
- Q 956 3463 1253 3523
- Q 1550 3584 1831 3584
- Q 2591 3584 2966 3190
- Q 3341 2797 3341 1997
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-6d" d="M 3328 2828
- Q 3544 3216 3844 3400
- Q 4144 3584 4550 3584
- Q 5097 3584 5394 3201
- Q 5691 2819 5691 2113
- L 5691 0
- L 5113 0
- L 5113 2094
- Q 5113 2597 4934 2840
- Q 4756 3084 4391 3084
- Q 3944 3084 3684 2787
- Q 3425 2491 3425 1978
- L 3425 0
- L 2847 0
- L 2847 2094
- Q 2847 2600 2669 2842
- Q 2491 3084 2119 3084
- Q 1678 3084 1418 2786
- Q 1159 2488 1159 1978
- L 1159 0
- L 581 0
- L 581 3500
- L 1159 3500
- L 1159 2956
- Q 1356 3278 1631 3431
- Q 1906 3584 2284 3584
- Q 2666 3584 2933 3390
- Q 3200 3197 3328 2828
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-6b" d="M 581 4863
- L 1159 4863
- L 1159 1991
- L 2875 3500
- L 3609 3500
- L 1753 1863
- L 3688 0
- L 2938 0
- L 1159 1709
- L 1159 0
- L 581 0
- L 581 4863
- z
- " transform="scale(0.015625)"/>
- </defs>
- <use xlink:href="#DejaVuSans-49"/>
- <use xlink:href="#DejaVuSans-6e" x="29.492188"/>
- <use xlink:href="#DejaVuSans-74" x="92.871094"/>
- <use xlink:href="#DejaVuSans-65" x="132.080078"/>
- <use xlink:href="#DejaVuSans-6e" x="193.603516"/>
- <use xlink:href="#DejaVuSans-73" x="256.982422"/>
- <use xlink:href="#DejaVuSans-69" x="309.082031"/>
- <use xlink:href="#DejaVuSans-74" x="336.865234"/>
- <use xlink:href="#DejaVuSans-79" x="376.074219"/>
- <use xlink:href="#DejaVuSans-20" x="435.253906"/>
- <use xlink:href="#DejaVuSans-77" x="467.041016"/>
- <use xlink:href="#DejaVuSans-69" x="548.828125"/>
- <use xlink:href="#DejaVuSans-74" x="576.611328"/>
- <use xlink:href="#DejaVuSans-68" x="615.820312"/>
- <use xlink:href="#DejaVuSans-69" x="679.199219"/>
- <use xlink:href="#DejaVuSans-6e" x="706.982422"/>
- <use xlink:href="#DejaVuSans-20" x="770.361328"/>
- <use xlink:href="#DejaVuSans-22" x="802.148438"/>
- <use xlink:href="#DejaVuSans-68" x="848.144531"/>
- <use xlink:href="#DejaVuSans-61" x="911.523438"/>
- <use xlink:href="#DejaVuSans-74" x="972.802734"/>
- <use xlink:href="#DejaVuSans-22" x="1012.011719"/>
- <use xlink:href="#DejaVuSans-20" x="1058.007812"/>
- <use xlink:href="#DejaVuSans-6d" x="1089.794922"/>
- <use xlink:href="#DejaVuSans-61" x="1187.207031"/>
- <use xlink:href="#DejaVuSans-73" x="1248.486328"/>
- <use xlink:href="#DejaVuSans-6b" x="1300.585938"/>
- </g>
- </g>
- </g>
- <g id="matplotlib.axis_2">
- <g id="ytick_1">
- <g id="line2d_7">
- <defs>
- <path id="m0b1b04663f" d="M 0 0
- L -3.5 0
- " style="stroke: #000000; stroke-width: 0.8"/>
- </defs>
- <g>
- <use xlink:href="#m0b1b04663f" x="36.58125" y="266.112" style="stroke: #000000; stroke-width: 0.8"/>
- </g>
- </g>
- <g id="text_8">
- <!-- 0.0 -->
- <g transform="translate(13.678125 269.911219) scale(0.1 -0.1)">
- <defs>
- <path id="DejaVuSans-2e" d="M 684 794
- L 1344 794
- L 1344 0
- L 684 0
- L 684 794
- z
- " transform="scale(0.015625)"/>
- </defs>
- <use xlink:href="#DejaVuSans-30"/>
- <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
- <use xlink:href="#DejaVuSans-30" x="95.410156"/>
- </g>
- </g>
- </g>
- <g id="ytick_2">
- <g id="line2d_8">
- <g>
- <use xlink:href="#m0b1b04663f" x="36.58125" y="213.885486" style="stroke: #000000; stroke-width: 0.8"/>
- </g>
- </g>
- <g id="text_9">
- <!-- 0.1 -->
- <g transform="translate(13.678125 217.684705) scale(0.1 -0.1)">
- <use xlink:href="#DejaVuSans-30"/>
- <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
- <use xlink:href="#DejaVuSans-31" x="95.410156"/>
- </g>
- </g>
- </g>
- <g id="ytick_3">
- <g id="line2d_9">
- <g>
- <use xlink:href="#m0b1b04663f" x="36.58125" y="161.658973" style="stroke: #000000; stroke-width: 0.8"/>
- </g>
- </g>
- <g id="text_10">
- <!-- 0.2 -->
- <g transform="translate(13.678125 165.458191) scale(0.1 -0.1)">
- <use xlink:href="#DejaVuSans-30"/>
- <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
- <use xlink:href="#DejaVuSans-32" x="95.410156"/>
- </g>
- </g>
- </g>
- <g id="ytick_4">
- <g id="line2d_10">
- <g>
- <use xlink:href="#m0b1b04663f" x="36.58125" y="109.432459" style="stroke: #000000; stroke-width: 0.8"/>
- </g>
- </g>
- <g id="text_11">
- <!-- 0.3 -->
- <g transform="translate(13.678125 113.231678) scale(0.1 -0.1)">
- <defs>
- <path id="DejaVuSans-33" d="M 2597 2516
- Q 3050 2419 3304 2112
- Q 3559 1806 3559 1356
- Q 3559 666 3084 287
- Q 2609 -91 1734 -91
- Q 1441 -91 1130 -33
- Q 819 25 488 141
- L 488 750
- Q 750 597 1062 519
- Q 1375 441 1716 441
- Q 2309 441 2620 675
- Q 2931 909 2931 1356
- Q 2931 1769 2642 2001
- Q 2353 2234 1838 2234
- L 1294 2234
- L 1294 2753
- L 1863 2753
- Q 2328 2753 2575 2939
- Q 2822 3125 2822 3475
- Q 2822 3834 2567 4026
- Q 2313 4219 1838 4219
- Q 1578 4219 1281 4162
- Q 984 4106 628 3988
- L 628 4550
- Q 988 4650 1302 4700
- Q 1616 4750 1894 4750
- Q 2613 4750 3031 4423
- Q 3450 4097 3450 3541
- Q 3450 3153 3228 2886
- Q 3006 2619 2597 2516
- z
- " transform="scale(0.015625)"/>
- </defs>
- <use xlink:href="#DejaVuSans-30"/>
- <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
- <use xlink:href="#DejaVuSans-33" x="95.410156"/>
- </g>
- </g>
- </g>
- <g id="ytick_5">
- <g id="line2d_11">
- <g>
- <use xlink:href="#m0b1b04663f" x="36.58125" y="57.205945" style="stroke: #000000; stroke-width: 0.8"/>
- </g>
- </g>
- <g id="text_12">
- <!-- 0.4 -->
- <g transform="translate(13.678125 61.005164) scale(0.1 -0.1)">
- <use xlink:href="#DejaVuSans-30"/>
- <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
- <use xlink:href="#DejaVuSans-34" x="95.410156"/>
- </g>
- </g>
- </g>
- <g id="ytick_6">
- <g id="line2d_12">
- <g>
- <use xlink:href="#m0b1b04663f" x="36.58125" y="4.979432" style="stroke: #000000; stroke-width: 0.8"/>
- </g>
- </g>
- <g id="text_13">
- <!-- 0.5 -->
- <g transform="translate(13.678125 8.77865) scale(0.1 -0.1)">
- <defs>
- <path id="DejaVuSans-35" d="M 691 4666
- L 3169 4666
- L 3169 4134
- L 1269 4134
- L 1269 2991
- Q 1406 3038 1543 3061
- Q 1681 3084 1819 3084
- Q 2600 3084 3056 2656
- Q 3513 2228 3513 1497
- Q 3513 744 3044 326
- Q 2575 -91 1722 -91
- Q 1428 -91 1123 -41
- Q 819 9 494 109
- L 494 744
- Q 775 591 1075 516
- Q 1375 441 1709 441
- Q 2250 441 2565 725
- Q 2881 1009 2881 1497
- Q 2881 1984 2565 2268
- Q 2250 2553 1709 2553
- Q 1456 2553 1204 2497
- Q 953 2441 691 2322
- L 691 4666
- z
- " transform="scale(0.015625)"/>
- </defs>
- <use xlink:href="#DejaVuSans-30"/>
- <use xlink:href="#DejaVuSans-2e" x="63.623047"/>
- <use xlink:href="#DejaVuSans-35" x="95.410156"/>
- </g>
- </g>
- </g>
- <g id="text_14">
- <!-- Frequency -->
- <g transform="translate(7.598438 158.885687) rotate(-90) scale(0.1 -0.1)">
- <defs>
- <path id="DejaVuSans-46" d="M 628 4666
- L 3309 4666
- L 3309 4134
- L 1259 4134
- L 1259 2759
- L 3109 2759
- L 3109 2228
- L 1259 2228
- L 1259 0
- L 628 0
- L 628 4666
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-72" d="M 2631 2963
- Q 2534 3019 2420 3045
- Q 2306 3072 2169 3072
- Q 1681 3072 1420 2755
- Q 1159 2438 1159 1844
- L 1159 0
- L 581 0
- L 581 3500
- L 1159 3500
- L 1159 2956
- Q 1341 3275 1631 3429
- Q 1922 3584 2338 3584
- Q 2397 3584 2469 3576
- Q 2541 3569 2628 3553
- L 2631 2963
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-71" d="M 947 1747
- Q 947 1113 1208 752
- Q 1469 391 1925 391
- Q 2381 391 2643 752
- Q 2906 1113 2906 1747
- Q 2906 2381 2643 2742
- Q 2381 3103 1925 3103
- Q 1469 3103 1208 2742
- Q 947 2381 947 1747
- z
- M 2906 525
- Q 2725 213 2448 61
- Q 2172 -91 1784 -91
- Q 1150 -91 751 415
- Q 353 922 353 1747
- Q 353 2572 751 3078
- Q 1150 3584 1784 3584
- Q 2172 3584 2448 3432
- Q 2725 3281 2906 2969
- L 2906 3500
- L 3481 3500
- L 3481 -1331
- L 2906 -1331
- L 2906 525
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-75" d="M 544 1381
- L 544 3500
- L 1119 3500
- L 1119 1403
- Q 1119 906 1312 657
- Q 1506 409 1894 409
- Q 2359 409 2629 706
- Q 2900 1003 2900 1516
- L 2900 3500
- L 3475 3500
- L 3475 0
- L 2900 0
- L 2900 538
- Q 2691 219 2414 64
- Q 2138 -91 1772 -91
- Q 1169 -91 856 284
- Q 544 659 544 1381
- z
- M 1991 3584
- L 1991 3584
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-63" d="M 3122 3366
- L 3122 2828
- Q 2878 2963 2633 3030
- Q 2388 3097 2138 3097
- Q 1578 3097 1268 2742
- Q 959 2388 959 1747
- Q 959 1106 1268 751
- Q 1578 397 2138 397
- Q 2388 397 2633 464
- Q 2878 531 3122 666
- L 3122 134
- Q 2881 22 2623 -34
- Q 2366 -91 2075 -91
- Q 1284 -91 818 406
- Q 353 903 353 1747
- Q 353 2603 823 3093
- Q 1294 3584 2113 3584
- Q 2378 3584 2631 3529
- Q 2884 3475 3122 3366
- z
- " transform="scale(0.015625)"/>
- </defs>
- <use xlink:href="#DejaVuSans-46"/>
- <use xlink:href="#DejaVuSans-72" x="50.269531"/>
- <use xlink:href="#DejaVuSans-65" x="89.132812"/>
- <use xlink:href="#DejaVuSans-71" x="150.65625"/>
- <use xlink:href="#DejaVuSans-75" x="214.132812"/>
- <use xlink:href="#DejaVuSans-65" x="277.511719"/>
- <use xlink:href="#DejaVuSans-6e" x="339.035156"/>
- <use xlink:href="#DejaVuSans-63" x="402.414062"/>
- <use xlink:href="#DejaVuSans-79" x="457.394531"/>
- </g>
- </g>
- </g>
- <g id="line2d_13">
- <path d="M 36.58125 259.221519
- L 39.44107 259.172957
- L 43.373322 259.361193
- L 48.378007 259.580894
- L 50.880349 259.480944
- L 53.382691 259.152575
- L 55.885034 258.57295
- L 58.387376 257.764494
- L 61.962151 256.354768
- L 66.251881 254.684834
- L 68.754223 253.953008
- L 70.899088 253.56373
- L 73.043953 253.430922
- L 75.188818 253.558353
- L 77.333682 253.91853
- L 80.193502 254.661363
- L 86.628097 256.479675
- L 88.772962 256.84109
- L 90.917827 256.987058
- L 93.062691 256.903286
- L 95.207556 256.607312
- L 98.067376 255.966889
- L 104.859448 254.321894
- L 107.004313 254.067019
- L 109.149178 254.033707
- L 111.294043 254.236106
- L 113.438908 254.657872
- L 116.298727 255.482257
- L 124.520709 258.06752
- L 127.023052 258.504173
- L 129.167917 258.669646
- L 131.670259 258.630793
- L 134.530079 258.350665
- L 142.752061 257.381726
- L 145.254403 257.383823
- L 147.756745 257.605478
- L 150.616565 258.105699
- L 154.548818 259.071174
- L 159.91098 260.378545
- L 162.7708 260.846802
- L 165.630619 261.081558
- L 168.490439 261.092625
- L 172.422691 260.859144
- L 178.857286 260.461486
- L 182.074583 260.507398
- L 185.291881 260.779326
- L 189.224133 261.354752
- L 197.446115 262.638503
- L 201.02089 262.919178
- L 204.595664 262.972386
- L 209.600349 262.798505
- L 215.677466 262.617384
- L 219.609718 262.717668
- L 223.899448 263.049811
- L 236.41116 264.190053
- L 241.058367 264.274449
- L 249.995304 264.122131
- L 255.714944 264.175304
- L 261.792061 264.472014
- L 272.158908 265.000914
- L 278.236025 265.047622
- L 293.607556 265.030181
- L 315.77116 265.49986
- L 330.785214 265.518213
- L 352.233863 265.771312
- L 370.107736 265.819582
- L 389.41152 265.934073
- L 393.70125 265.928122
- L 393.70125 265.928122
- " clip-path="url(#pcd3f01090e)" style="fill: none; stroke: #1e90ff; stroke-opacity: 0.5; stroke-width: 2; stroke-linecap: square"/>
- </g>
- <g id="line2d_14">
- <path d="M 36.938727 12.672
- L 37.296205 105.605034
- L 37.653682 143.40788
- L 38.01116 164.792477
- L 38.726115 188.908156
- L 39.44107 202.571088
- L 40.156025 211.560467
- L 40.87098 218.010316
- L 41.585935 222.90854
- L 42.658367 228.433852
- L 43.7308 232.565252
- L 44.803232 235.795585
- L 45.875664 238.405526
- L 47.305574 241.209644
- L 48.735484 243.465729
- L 50.165394 245.328753
- L 51.952782 247.254227
- L 53.740169 248.84823
- L 55.885034 250.439074
- L 58.029899 251.767202
- L 60.532241 253.068262
- L 63.392061 254.308935
- L 66.609358 255.470165
- L 70.54161 256.640166
- L 74.83134 257.686425
- L 79.836025 258.685458
- L 85.913142 259.665863
- L 93.062691 260.585476
- L 101.642151 261.453976
- L 112.008998 262.265868
- L 124.520709 263.009354
- L 139.534764 263.672374
- L 158.48107 264.275077
- L 182.074583 264.793349
- L 212.817646 265.23382
- L 253.927556 265.586265
- L 312.553863 265.848904
- L 393.70125 266.006161
- L 393.70125 266.006161
- " clip-path="url(#pcd3f01090e)" style="fill: none; stroke: #ff8c00; stroke-opacity: 0.5; stroke-width: 2; stroke-linecap: square"/>
- </g>
- <g id="line2d_15">
- <path d="M 157.408637 266.112
- L 157.408637 259.812627
- " clip-path="url(#pcd3f01090e)" style="fill: none; stroke: #1e90ff; stroke-width: 1.5; stroke-linecap: square"/>
- </g>
- <g id="patch_4">
- <path d="M 36.58125 266.112
- L 36.58125 -0
- " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
- </g>
- <g id="patch_5">
- <path d="M 393.70125 266.112
- L 393.70125 -0
- " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
- </g>
- <g id="patch_6">
- <path d="M 36.58125 266.112
- L 393.70125 266.112
- " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
- </g>
- <g id="patch_7">
- <path d="M 36.58125 -0
- L 393.70125 -0
- " style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
- </g>
- <g id="legend_1">
- <g id="patch_8">
- <path d="M 295.559062 37.35625
- L 386.70125 37.35625
- Q 388.70125 37.35625 388.70125 35.35625
- L 388.70125 7
- Q 388.70125 5 386.70125 5
- L 295.559062 5
- Q 293.559062 5 293.559062 7
- L 293.559062 35.35625
- Q 293.559062 37.35625 295.559062 37.35625
- z
- " style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/>
- </g>
- <g id="line2d_16">
- <path d="M 297.559062 13.098437
- L 307.559062 13.098437
- L 317.559062 13.098437
- " style="fill: none; stroke: #1e90ff; stroke-opacity: 0.5; stroke-width: 2; stroke-linecap: square"/>
- </g>
- <g id="text_15">
- <!-- background -->
- <g transform="translate(325.559062 16.598437) scale(0.1 -0.1)">
- <defs>
- <path id="DejaVuSans-62" d="M 3116 1747
- Q 3116 2381 2855 2742
- Q 2594 3103 2138 3103
- Q 1681 3103 1420 2742
- Q 1159 2381 1159 1747
- Q 1159 1113 1420 752
- Q 1681 391 2138 391
- Q 2594 391 2855 752
- Q 3116 1113 3116 1747
- z
- M 1159 2969
- Q 1341 3281 1617 3432
- Q 1894 3584 2278 3584
- Q 2916 3584 3314 3078
- Q 3713 2572 3713 1747
- Q 3713 922 3314 415
- Q 2916 -91 2278 -91
- Q 1894 -91 1617 61
- Q 1341 213 1159 525
- L 1159 0
- L 581 0
- L 581 4863
- L 1159 4863
- L 1159 2969
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-67" d="M 2906 1791
- Q 2906 2416 2648 2759
- Q 2391 3103 1925 3103
- Q 1463 3103 1205 2759
- Q 947 2416 947 1791
- Q 947 1169 1205 825
- Q 1463 481 1925 481
- Q 2391 481 2648 825
- Q 2906 1169 2906 1791
- z
- M 3481 434
- Q 3481 -459 3084 -895
- Q 2688 -1331 1869 -1331
- Q 1566 -1331 1297 -1286
- Q 1028 -1241 775 -1147
- L 775 -588
- Q 1028 -725 1275 -790
- Q 1522 -856 1778 -856
- Q 2344 -856 2625 -561
- Q 2906 -266 2906 331
- L 2906 616
- Q 2728 306 2450 153
- Q 2172 0 1784 0
- Q 1141 0 747 490
- Q 353 981 353 1791
- Q 353 2603 747 3093
- Q 1141 3584 1784 3584
- Q 2172 3584 2450 3431
- Q 2728 3278 2906 2969
- L 2906 3500
- L 3481 3500
- L 3481 434
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-6f" d="M 1959 3097
- Q 1497 3097 1228 2736
- Q 959 2375 959 1747
- Q 959 1119 1226 758
- Q 1494 397 1959 397
- Q 2419 397 2687 759
- Q 2956 1122 2956 1747
- Q 2956 2369 2687 2733
- Q 2419 3097 1959 3097
- z
- M 1959 3584
- Q 2709 3584 3137 3096
- Q 3566 2609 3566 1747
- Q 3566 888 3137 398
- Q 2709 -91 1959 -91
- Q 1206 -91 779 398
- Q 353 888 353 1747
- Q 353 2609 779 3096
- Q 1206 3584 1959 3584
- z
- " transform="scale(0.015625)"/>
- <path id="DejaVuSans-64" d="M 2906 2969
- L 2906 4863
- L 3481 4863
- L 3481 0
- L 2906 0
- L 2906 525
- Q 2725 213 2448 61
- Q 2172 -91 1784 -91
- Q 1150 -91 751 415
- Q 353 922 353 1747
- Q 353 2572 751 3078
- Q 1150 3584 1784 3584
- Q 2172 3584 2448 3432
- Q 2725 3281 2906 2969
- z
- M 947 1747
- Q 947 1113 1208 752
- Q 1469 391 1925 391
- Q 2381 391 2643 752
- Q 2906 1113 2906 1747
- Q 2906 2381 2643 2742
- Q 2381 3103 1925 3103
- Q 1469 3103 1208 2742
- Q 947 2381 947 1747
- z
- " transform="scale(0.015625)"/>
- </defs>
- <use xlink:href="#DejaVuSans-62"/>
- <use xlink:href="#DejaVuSans-61" x="63.476562"/>
- <use xlink:href="#DejaVuSans-63" x="124.755859"/>
- <use xlink:href="#DejaVuSans-6b" x="179.736328"/>
- <use xlink:href="#DejaVuSans-67" x="237.646484"/>
- <use xlink:href="#DejaVuSans-72" x="301.123047"/>
- <use xlink:href="#DejaVuSans-6f" x="339.986328"/>
- <use xlink:href="#DejaVuSans-75" x="401.167969"/>
- <use xlink:href="#DejaVuSans-6e" x="464.546875"/>
- <use xlink:href="#DejaVuSans-64" x="527.925781"/>
- </g>
- </g>
- <g id="line2d_17">
- <path d="M 297.559062 27.776562
- L 307.559062 27.776562
- L 317.559062 27.776562
- " style="fill: none; stroke: #ff8c00; stroke-opacity: 0.5; stroke-width: 2; stroke-linecap: square"/>
- </g>
- <g id="text_16">
- <!-- chi2 -->
- <g transform="translate(325.559062 31.276562) scale(0.1 -0.1)">
- <use xlink:href="#DejaVuSans-63"/>
- <use xlink:href="#DejaVuSans-68" x="54.980469"/>
- <use xlink:href="#DejaVuSans-69" x="118.359375"/>
- <use xlink:href="#DejaVuSans-32" x="146.142578"/>
- </g>
- </g>
- </g>
- </g>
- </g>
- <defs>
- <clipPath id="pcd3f01090e">
- <rect x="36.58125" y="-0" width="357.12" height="266.112"/>
- </clipPath>
- </defs>
- </svg>
|