Skip to content

Instantly share code, notes, and snippets.

@jgoad
Last active August 29, 2015 14:13
Show Gist options
  • Save jgoad/d50aff8561f2ddac6d4e to your computer and use it in GitHub Desktop.
Save jgoad/d50aff8561f2ddac6d4e to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"metadata": {
"name": "",
"signature": "sha256:cb449d735bb86096ac3e76f416858ba788dca6e5ac63d107b530d3fd9d5570d0"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "code",
"collapsed": false,
"input": [
"import numpy as np\n",
"import pandas as pd\n",
"import matplotlib.pyplot as plt\n",
"import scipy.optimize as optimization\n",
"import os\n",
"from scipy.signal import argrelextrema\n",
"from IPython.html.widgets import interact\n",
"from IPython.html import widgets\n",
"%matplotlib inline\n",
"%config InlineBackend.figure_format = 'svg' "
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 1
},
{
"cell_type": "code",
"collapsed": true,
"input": [
"def smooth(x,window_len=11,window='hanning'):\n",
" \"\"\"smooth the data using a window with requested size.\n",
" \n",
" This method is based on the convolution of a scaled window with the signal.\n",
" The signal is prepared by introducing reflected copies of the signal \n",
" (with the window size) in both ends so that transient parts are minimized\n",
" in the begining and end part of the output signal.\n",
" \n",
" input:\n",
" x: the input signal \n",
" window_len: the dimension of the smoothing window; should be an odd integer\n",
" window: the type of window from 'flat', 'hanning', 'hamming', 'bartlett', 'blackman'\n",
" flat window will produce a moving average smoothing.\n",
"\n",
" output:\n",
" the smoothed signal\n",
" \n",
" example:\n",
"\n",
" t=linspace(-2,2,0.1)\n",
" x=sin(t)+randn(len(t))*0.1\n",
" y=smooth(x)\n",
" \n",
" see also: \n",
" \n",
" numpy.hanning, numpy.hamming, numpy.bartlett, numpy.blackman, numpy.convolve\n",
" scipy.signal.lfilter\n",
" \n",
" TODO: the window parameter could be the window itself if an array instead of a string\n",
" NOTE: length(output) != length(input), to correct this: return y[(window_len/2-1):-(window_len/2)] instead of just y.\n",
" \"\"\"\n",
"\n",
" if x.ndim != 1:\n",
" raise ValueError, \"smooth only accepts 1 dimension arrays.\"\n",
"\n",
" if x.size < window_len:\n",
" raise ValueError, \"Input vector needs to be bigger than window size.\"\n",
"\n",
"\n",
" if window_len<3:\n",
" return x\n",
"\n",
"\n",
" if not window in ['flat', 'hanning', 'hamming', 'bartlett', 'blackman']:\n",
" raise ValueError, \"Window is on of 'flat', 'hanning', 'hamming', 'bartlett', 'blackman'\"\n",
"\n",
"\n",
" s=np.r_[x[window_len-1:0:-1],x,x[-1:-window_len:-1]]\n",
" #print(len(s))\n",
" if window == 'flat': #moving average\n",
" w=np.ones(window_len,'d')\n",
" else:\n",
" w=eval('np.'+window+'(window_len)')\n",
"\n",
" y=np.convolve(w/w.sum(),s,mode='valid')\n",
" return y"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 5
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"folder_path = '/Users/jgoad-admin/Desktop/ZeemanData/'\n",
"I = np.array([0,2.12,2.63,3.12,3.61,4.10,4.60,5.10,5.60,6.20,6.80,7.30])\n",
"os.listdir(folder_path)[1:]"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 6,
"text": [
"['0.xlsx',\n",
" '212.xlsx',\n",
" '263.xlsx',\n",
" '312.xlsx',\n",
" '361.xlsx',\n",
" '410.xlsx',\n",
" '460.xlsx',\n",
" '510.xlsx',\n",
" '560.xlsx',\n",
" '620.xlsx',\n",
" '680.xlsx',\n",
" '730.xlsx',\n",
" 'magnet_calibration.xlsx']"
]
}
],
"prompt_number": 6
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"calib = pd.read_excel(folder_path+'magnet_calibration.xlsx', index_col=False)\n",
"data = []\n",
"files = []\n",
"for file_name in os.listdir(folder_path)[1:-1]:\n",
" print folder_path+file_name\n",
" run = pd.read_excel(folder_path+file_name, index_col=False)\n",
" run.columns = ['alpha','intensity']\n",
" data.append(run)\n",
" files.append(file_name)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"/Users/jgoad-admin/Desktop/ZeemanData/0.xlsx\n",
"/Users/jgoad-admin/Desktop/ZeemanData/212.xlsx\n",
"/Users/jgoad-admin/Desktop/ZeemanData/263.xlsx\n",
"/Users/jgoad-admin/Desktop/ZeemanData/312.xlsx\n",
"/Users/jgoad-admin/Desktop/ZeemanData/361.xlsx\n",
"/Users/jgoad-admin/Desktop/ZeemanData/410.xlsx\n",
"/Users/jgoad-admin/Desktop/ZeemanData/460.xlsx\n",
"/Users/jgoad-admin/Desktop/ZeemanData/510.xlsx\n",
"/Users/jgoad-admin/Desktop/ZeemanData/560.xlsx\n",
"/Users/jgoad-admin/Desktop/ZeemanData/620.xlsx\n",
"/Users/jgoad-admin/Desktop/ZeemanData/680.xlsx\n",
"/Users/jgoad-admin/Desktop/ZeemanData/730.xlsx\n"
]
}
],
"prompt_number": 7
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"def interfunc(thresh,run,smoothing,smoothing_type,window_size): \n",
" \n",
" #run = 11\n",
" smoothing_process = ['flat', 'hanning', 'hamming', 'bartlett', 'blackman']\n",
" #'flat', 'hanning', 'hamming', 'bartlett', 'blackman'\n",
" run_data = data[run]#[data[run].alpha >= -2.2]\n",
" run_data = run_data#[run_data.alpha <= 2.2]\n",
" maxima_loc = argrelextrema(smooth(run_data.intensity*-1, smoothing, window =smoothing_process[smoothing_type]), \n",
" np.less,order = window_size)[0]\n",
"\n",
" #picks out maxima datapoints\n",
" maxima = run_data.loc[maxima_loc]\n",
"\n",
" #resets the index\n",
" #maxima.index = np.arange(0,len(maxima))\n",
"\n",
" splitting1 = maxima.shift(1) - maxima\n",
" splitting2 = maxima.shift(-1) - maxima\n",
" \n",
"\n",
" mu = (splitting1.dropna().mean().alpha + splitting1.dropna().mean().alpha)/2.0\n",
" sig = (splitting1.dropna().std().alpha + splitting1.dropna().std().alpha)/2.0\n",
" \n",
" df1 = maxima[splitting1.alpha >= (mu - thresh*sig)]\n",
" df2 = maxima[splitting2.alpha >= (mu - thresh*sig)]\n",
" df3 = df1[splitting1.alpha <= (mu + thresh*sig)]\n",
" df4 = df2[splitting2.alpha <= (mu + thresh*sig)]\n",
"\n",
" df7 = pd.concat([df4,df3], axis = 0).drop_duplicates()\n",
" \n",
" x_axis = (-2.5,2.5)\n",
"\n",
" plt.subplot(2, 1, 1)\n",
" plt.xlim(x_axis[0],x_axis[1])\n",
" plt.plot(run_data.alpha,run_data.intensity,label = 'Data')\n",
" plt.scatter(df7.alpha,df7.intensity)\n",
" #for point in df7.values:\n",
" # plt.annotate('(%(x)2.2f, %(y)2.2f)' % {\"x\": float(point[0]), \"y\": float(point[1])}, xy=point, textcoords='data')\n",
" \n",
" plt.subplot(2, 1, 2)\n",
" plt.xlim(x_axis[0],x_axis[1])\n",
" plt.plot(run_data.alpha,run_data.intensity,label = 'Data')\n",
" \n",
"\n",
"interact(interfunc, thresh=widgets.FloatSlider(min=0.01, max=10, value=3.51),run = widgets.IntSlider(min=0, max=11, value=0),\n",
" smoothing = widgets.IntSlider(min=3, max=50, value=4),smoothing_type = widgets.IntSlider(min=0, max=4, value=2),\n",
" window_size = widgets.IntSlider(min=1, max=50, value=1))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "display_data",
"svg": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Created with matplotlib (http://matplotlib.org/) -->\n",
"<svg height=\"256pt\" version=\"1.1\" viewBox=\"0 0 372 256\" width=\"372pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"\n",
"M0 256.117\n",
"L372.581 256.117\n",
"L372.581 0\n",
"L0 0\n",
"z\n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"\n",
"M30.5813 113.494\n",
"L365.381 113.494\n",
"L365.381 12.0391\n",
"L30.5813 12.0391\n",
"z\n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"PathCollection_1\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 2.23607\n",
"C0.593012 2.23607 1.16182 2.00046 1.58114 1.58114\n",
"C2.00046 1.16182 2.23607 0.593012 2.23607 0\n",
"C2.23607 -0.593012 2.00046 -1.16182 1.58114 -1.58114\n",
"C1.16182 -2.00046 0.593012 -2.23607 0 -2.23607\n",
"C-0.593012 -2.23607 -1.16182 -2.00046 -1.58114 -1.58114\n",
"C-2.00046 -1.16182 -2.23607 -0.593012 -2.23607 0\n",
"C-2.23607 0.593012 -2.00046 1.16182 -1.58114 1.58114\n",
"C-1.16182 2.00046 -0.593012 2.23607 0 2.23607\n",
"z\n",
"\" id=\"C0_0_919e3f95db\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"465.75429\" xlink:href=\"#C0_0_919e3f95db\" y=\"91.6808806818\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"460.06269\" xlink:href=\"#C0_0_919e3f95db\" y=\"91.6808806818\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"441.91653\" xlink:href=\"#C0_0_919e3f95db\" y=\"86.6081534091\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"434.41701\" xlink:href=\"#C0_0_919e3f95db\" y=\"84.4522443182\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"427.98885\" xlink:href=\"#C0_0_919e3f95db\" y=\"82.5499715909\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"420.89109\" xlink:href=\"#C0_0_919e3f95db\" y=\"78.3649715909\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"413.72637\" xlink:href=\"#C0_0_919e3f95db\" y=\"76.4626988636\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"406.22685\" xlink:href=\"#C0_0_919e3f95db\" y=\"72.0240625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"398.05773\" xlink:href=\"#C0_0_919e3f95db\" y=\"66.5708806818\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"391.96437\" xlink:href=\"#C0_0_919e3f95db\" y=\"64.4149715909\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"389.82165\" xlink:href=\"#C0_0_919e3f95db\" y=\"63.2736079545\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"381.25077\" xlink:href=\"#C0_0_919e3f95db\" y=\"50.3381534091\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"374.15301\" xlink:href=\"#C0_0_919e3f95db\" y=\"48.0554261364\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"372.01029\" xlink:href=\"#C0_0_919e3f95db\" y=\"42.9826988636\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"364.84557\" xlink:href=\"#C0_0_919e3f95db\" y=\"34.9931534091\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"362.36805\" xlink:href=\"#C0_0_919e3f95db\" y=\"32.0763352273\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"354.46677\" xlink:href=\"#C0_0_919e3f95db\" y=\"31.5690625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"351.65445\" xlink:href=\"#C0_0_919e3f95db\" y=\"26.6231534091\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"343.75317\" xlink:href=\"#C0_0_919e3f95db\" y=\"28.0181534091\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"340.53909\" xlink:href=\"#C0_0_919e3f95db\" y=\"28.6522443182\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"331.63341\" xlink:href=\"#C0_0_919e3f95db\" y=\"26.1158806818\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"328.41933\" xlink:href=\"#C0_0_919e3f95db\" y=\"23.3258806818\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"318.77709\" xlink:href=\"#C0_0_919e3f95db\" y=\"29.5399715909\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"304.11285\" xlink:href=\"#C0_0_919e3f95db\" y=\"25.8622443182\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"286.90413\" xlink:href=\"#C0_0_919e3f95db\" y=\"31.1886079545\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"265.81173\" xlink:href=\"#C0_0_919e3f95db\" y=\"30.1740625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"232.53261\" xlink:href=\"#C0_0_919e3f95db\" y=\"31.9495170455\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"224.29653\" xlink:href=\"#C0_0_919e3f95db\" y=\"42.3486079545\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"193.16013\" xlink:href=\"#C0_0_919e3f95db\" y=\"45.3922443182\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"184.18749\" xlink:href=\"#C0_0_919e3f95db\" y=\"41.5876988636\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"136.57893\" xlink:href=\"#C0_0_919e3f95db\" y=\"53.3817897727\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"112.94205\" xlink:href=\"#C0_0_919e3f95db\" y=\"55.5376988636\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"94.32717\" xlink:href=\"#C0_0_919e3f95db\" y=\"53.6354261364\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"78.59157\" xlink:href=\"#C0_0_919e3f95db\" y=\"56.1717897727\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"75.04269\" xlink:href=\"#C0_0_919e3f95db\" y=\"53.7622443182\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"64.66389\" xlink:href=\"#C0_0_919e3f95db\" y=\"56.6790625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"37.47813\" xlink:href=\"#C0_0_919e3f95db\" y=\"65.4295170455\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"29.24205\" xlink:href=\"#C0_0_919e3f95db\" y=\"71.6436079545\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"26.69757\" xlink:href=\"#C0_0_919e3f95db\" y=\"71.6436079545\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"16.31877\" xlink:href=\"#C0_0_919e3f95db\" y=\"77.6040625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"6.67653\" xlink:href=\"#C0_0_919e3f95db\" y=\"82.5499715909\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"-2.22915\" xlink:href=\"#C0_0_919e3f95db\" y=\"84.9595170455\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"-8.65731\" xlink:href=\"#C0_0_919e3f95db\" y=\"87.6226988636\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"-11.20179\" xlink:href=\"#C0_0_919e3f95db\" y=\"87.6226988636\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"-19.03611\" xlink:href=\"#C0_0_919e3f95db\" y=\"89.2713352273\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"-27.60699\" xlink:href=\"#C0_0_919e3f95db\" y=\"91.1736079545\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"-35.44131\" xlink:href=\"#C0_0_919e3f95db\" y=\"92.3149715909\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"-64.76979\" xlink:href=\"#C0_0_919e3f95db\" y=\"94.7245170455\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"453.96933\" xlink:href=\"#C0_0_919e3f95db\" y=\"89.6517897727\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"314.82645\" xlink:href=\"#C0_0_919e3f95db\" y=\"28.3986079545\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"299.82741\" xlink:href=\"#C0_0_919e3f95db\" y=\"25.7354261364\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"281.54733\" xlink:href=\"#C0_0_919e3f95db\" y=\"27.0036079545\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"258.31221\" xlink:href=\"#C0_0_919e3f95db\" y=\"31.8226988636\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"213.91773\" xlink:href=\"#C0_0_919e3f95db\" y=\"33.0908806818\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"181.70997\" xlink:href=\"#C0_0_919e3f95db\" y=\"41.2072443182\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"163.42989\" xlink:href=\"#C0_0_919e3f95db\" y=\"46.6604261364\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"130.15077\" xlink:href=\"#C0_0_919e3f95db\" y=\"49.9576988636\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"108.32181\" xlink:href=\"#C0_0_919e3f95db\" y=\"53.6354261364\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"90.37653\" xlink:href=\"#C0_0_919e3f95db\" y=\"52.1136079545\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"61.38285\" xlink:href=\"#C0_0_919e3f95db\" y=\"56.1717897727\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"48.86133\" xlink:href=\"#C0_0_919e3f95db\" y=\"58.7081534091\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"-42.94083\" xlink:href=\"#C0_0_919e3f95db\" y=\"93.0758806818\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0e12a04d22)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"-71.53275\" xlink:href=\"#C0_0_919e3f95db\" y=\"95.8658806818\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_1\">\n",
" <path clip-path=\"url(#p0e12a04d22)\" d=\"\n",
"M373.581 47.6027\n",
"L373.416 47.0409\n",
"L373.082 44.5045\n",
"L372.68 42.4754\n",
"L372.345 41.9682\n",
"L372.01 42.9827\n",
"L371.274 47.1677\n",
"L370.939 49.1968\n",
"L370.202 51.7332\n",
"L369.868 52.2404\n",
"L369.466 52.4941\n",
"L369.131 52.3672\n",
"L368.796 51.9868\n",
"L368.06 50.465\n",
"L367.323 48.4359\n",
"L366.988 46.4068\n",
"L366.252 39.305\n",
"L365.917 35.7541\n",
"L365.582 33.725\n",
"L365.18 33.725\n",
"L364.511 36.515\n",
"L364.109 37.2759\n",
"L363.774 36.6418\n",
"L363.038 32.0763\n",
"L362.703 31.0618\n",
"L362.368 32.0763\n",
"L361.966 34.6127\n",
"L361.297 40.4463\n",
"L360.56 44.885\n",
"L360.225 46.4068\n",
"L359.824 47.4213\n",
"L359.489 47.9286\n",
"L358.752 48.4359\n",
"L358.417 48.5627\n",
"L358.083 48.5627\n",
"L357.681 48.3091\n",
"L357.346 47.4213\n",
"L356.609 43.6168\n",
"L355.538 32.5836\n",
"L355.203 30.8082\n",
"L354.869 30.6813\n",
"L354.467 31.5691\n",
"L354.132 32.5836\n",
"L353.797 33.0909\n",
"L353.395 32.2032\n",
"L352.726 26.75\n",
"L352.324 25.1013\n",
"L351.989 25.1013\n",
"L351.253 28.9059\n",
"L350.583 33.5982\n",
"L349.847 36.7686\n",
"L349.512 37.7832\n",
"L348.775 38.9245\n",
"L348.44 39.0513\n",
"L348.039 39.4318\n",
"L347.704 39.4318\n",
"L346.967 39.6854\n",
"L346.632 39.6854\n",
"L346.298 39.305\n",
"L345.896 37.91\n",
"L345.226 32.33\n",
"L344.49 27.0036\n",
"L344.155 26.8768\n",
"L343.753 28.0182\n",
"L343.084 31.3154\n",
"L342.682 32.33\n",
"L342.347 32.33\n",
"L341.276 27.0036\n",
"L340.941 27.0036\n",
"L340.539 28.6522\n",
"L338.798 41.0804\n",
"L338.062 43.3632\n",
"L337.727 43.9972\n",
"L336.99 45.0118\n",
"L336.655 44.885\n",
"L336.254 44.5045\n",
"L335.182 42.8559\n",
"L334.513 40.5732\n",
"L334.111 38.5441\n",
"L332.705 25.8622\n",
"L332.37 24.8477\n",
"L331.968 24.9745\n",
"L330.897 28.3986\n",
"L330.562 28.6522\n",
"L330.227 27.7645\n",
"L329.825 25.9891\n",
"L329.156 22.1845\n",
"L328.754 22.0577\n",
"L328.419 23.3259\n",
"L326.611 36.0077\n",
"L325.942 39.0513\n",
"L324.87 41.5877\n",
"L323.799 42.9827\n",
"L322.661 43.2363\n",
"L322.326 43.1095\n",
"L321.991 42.7291\n",
"L321.589 41.9682\n",
"L320.92 38.4172\n",
"L319.848 29.9204\n",
"L319.447 28.7791\n",
"L319.112 28.6522\n",
"L318.777 29.54\n",
"L317.706 33.3445\n",
"L317.304 33.8518\n",
"L316.969 33.3445\n",
"L316.233 29.7936\n",
"L315.898 27.7645\n",
"L315.563 26.75\n",
"L315.161 26.8768\n",
"L314.492 30.4277\n",
"L313.019 38.9245\n",
"L312.349 41.0804\n",
"L311.612 42.3486\n",
"L310.206 42.8559\n",
"L309.47 42.8559\n",
"L308.733 42.4754\n",
"L307.662 40.9536\n",
"L307.327 40.0659\n",
"L306.59 36.8954\n",
"L305.184 26.6232\n",
"L304.849 25.4818\n",
"L304.448 25.2282\n",
"L304.113 25.8622\n",
"L303.041 29.9204\n",
"L302.64 30.935\n",
"L302.305 31.4422\n",
"L301.97 31.0618\n",
"L301.568 30.0472\n",
"L300.899 26.6232\n",
"L300.497 25.355\n",
"L300.162 25.1013\n",
"L299.827 25.7354\n",
"L299.426 27.5109\n",
"L298.019 37.2759\n",
"L297.283 40.9536\n",
"L296.613 43.6168\n",
"L295.542 45.8995\n",
"L294.805 46.7872\n",
"L293.399 47.8018\n",
"L292.663 47.9286\n",
"L292.328 47.9286\n",
"L291.591 47.5482\n",
"L290.855 46.5336\n",
"L290.185 44.5045\n",
"L289.783 42.9827\n",
"L288.712 35.8809\n",
"L288.377 33.3445\n",
"L287.641 30.6813\n",
"L287.306 30.5545\n",
"L286.904 31.1886\n",
"L285.498 35.3736\n",
"L285.163 36.0077\n",
"L284.761 36.0077\n",
"L284.427 35.6272\n",
"L283.69 33.2177\n",
"L282.619 27.2572\n",
"L282.284 26.2427\n",
"L281.949 26.1159\n",
"L281.547 27.0036\n",
"L281.213 28.3986\n",
"L279.806 36.3882\n",
"L279.07 39.1782\n",
"L278.735 40.0659\n",
"L276.927 42.7291\n",
"L276.592 43.1095\n",
"L275.856 43.49\n",
"L272.24 44.7582\n",
"L271.905 44.7582\n",
"L271.57 44.6313\n",
"L271.169 44.6313\n",
"L270.834 44.5045\n",
"L270.499 43.9972\n",
"L270.097 43.6168\n",
"L269.762 43.1095\n",
"L269.026 41.2072\n",
"L268.356 38.0368\n",
"L267.62 34.1054\n",
"L267.285 32.33\n",
"L266.548 29.9204\n",
"L266.213 29.7936\n",
"L265.812 30.1741\n",
"L264.74 33.4713\n",
"L264.071 36.2613\n",
"L262.598 39.9391\n",
"L262.263 40.4463\n",
"L261.861 40.3195\n",
"L260.79 37.2759\n",
"L260.12 34.3591\n",
"L259.049 31.3154\n",
"L258.647 31.1886\n",
"L258.312 31.8227\n",
"L257.576 34.1054\n",
"L255.835 42.4754\n",
"L254.763 46.28\n",
"L253.692 48.8163\n",
"L252.955 50.0845\n",
"L252.219 51.6063\n",
"L251.884 52.1136\n",
"L251.482 52.3672\n",
"L250.813 52.3672\n",
"L250.411 52.4941\n",
"L249.741 53.3818\n",
"L249.005 54.1427\n",
"L247.599 55.2841\n",
"L246.527 56.5522\n",
"L245.791 56.6791\n",
"L245.456 56.5522\n",
"L245.054 56.5522\n",
"L244.385 55.5377\n",
"L243.648 53.7622\n",
"L242.911 52.1136\n",
"L242.175 51.0991\n",
"L241.84 50.9722\n",
"L240.769 50.0845\n",
"L239.363 48.4359\n",
"L238.626 47.1677\n",
"L236.818 41.5877\n",
"L234.675 33.5982\n",
"L234.006 32.2032\n",
"L233.269 31.5691\n",
"L232.934 31.8227\n",
"L232.533 31.9495\n",
"L231.461 33.725\n",
"L230.725 35.2468\n",
"L230.055 36.7686\n",
"L229.653 37.4027\n",
"L228.984 39.1782\n",
"L227.912 40.5732\n",
"L226.841 42.9827\n",
"L226.439 42.9827\n",
"L226.104 42.4754\n",
"L225.368 42.2218\n",
"L224.698 42.2218\n",
"L223.962 42.3486\n",
"L223.627 42.3486\n",
"L222.154 41.4609\n",
"L221.819 40.9536\n",
"L221.417 40.7\n",
"L220.748 39.8122\n",
"L220.011 38.7977\n",
"L218.605 36.2613\n",
"L217.534 34.6127\n",
"L216.06 33.3445\n",
"L215.726 33.3445\n",
"L214.654 32.9641\n",
"L214.319 33.0909\n",
"L213.918 33.0909\n",
"L213.181 33.4713\n",
"L212.512 34.1054\n",
"L212.11 34.4859\n",
"L210.369 37.1491\n",
"L209.632 37.6563\n",
"L206.753 40.8268\n",
"L206.083 41.4609\n",
"L204.61 42.7291\n",
"L204.275 42.9827\n",
"L203.874 43.1095\n",
"L203.204 43.49\n",
"L202.468 43.8704\n",
"L198.182 45.3922\n",
"L196.776 45.3922\n",
"L196.039 45.5191\n",
"L195.638 45.5191\n",
"L195.303 45.3922\n",
"L194.968 45.5191\n",
"L194.566 45.5191\n",
"L193.897 45.2654\n",
"L193.495 45.2654\n",
"L193.16 45.3922\n",
"L192.825 45.8995\n",
"L192.424 46.1532\n",
"L192.089 46.0263\n",
"L191.754 45.2654\n",
"L190.683 43.9972\n",
"L189.946 43.7436\n",
"L189.611 43.49\n",
"L189.209 43.3632\n",
"L188.54 42.9827\n",
"L187.402 42.3486\n",
"L187.067 42.2218\n",
"L186.732 41.9682\n",
"L185.661 41.7145\n",
"L185.259 41.3341\n",
"L184.589 41.3341\n",
"L183.853 41.7145\n",
"L183.518 41.7145\n",
"L183.116 41.3341\n",
"L182.447 41.0804\n",
"L181.375 41.4609\n",
"L180.973 41.7145\n",
"L179.902 42.8559\n",
"L179.165 43.49\n",
"L178.496 44.3777\n",
"L178.094 44.885\n",
"L177.759 45.5191\n",
"L177.425 45.8995\n",
"L176.353 47.4213\n",
"L175.617 48.3091\n",
"L174.545 49.1968\n",
"L174.21 49.5772\n",
"L173.809 49.7041\n",
"L173.474 50.0845\n",
"L172.068 50.5918\n",
"L171.666 50.5918\n",
"L171.331 50.7186\n",
"L170.929 50.7186\n",
"L170.595 50.8454\n",
"L170.26 50.8454\n",
"L168.452 50.2113\n",
"L168.117 49.8309\n",
"L167.715 49.5772\n",
"L167.381 49.07\n",
"L167.046 48.9432\n",
"L165.573 47.4213\n",
"L165.238 46.9141\n",
"L164.166 46.5336\n",
"L163.832 46.5336\n",
"L163.43 46.6604\n",
"L163.095 47.0409\n",
"L162.76 47.675\n",
"L162.359 48.1822\n",
"L161.622 49.5772\n",
"L160.551 52.4941\n",
"L158.81 56.2986\n",
"L157.337 58.3277\n",
"L156.667 59.3422\n",
"L156.265 59.7227\n",
"L155.596 60.6104\n",
"L154.524 61.8786\n",
"L153.788 62.2591\n",
"L153.386 62.3859\n",
"L152.716 62.7663\n",
"L151.98 63.2736\n",
"L151.645 63.2736\n",
"L149.837 64.2882\n",
"L148.766 64.2882\n",
"L148.431 64.415\n",
"L148.029 64.415\n",
"L147.694 64.5418\n",
"L147.359 64.5418\n",
"L146.623 64.6686\n",
"L145.15 64.6686\n",
"L144.815 64.5418\n",
"L144.48 64.1613\n",
"L144.078 63.9077\n",
"L142.337 61.8786\n",
"L141.601 60.6104\n",
"L139.793 56.2986\n",
"L139.458 55.4109\n",
"L139.123 54.9036\n",
"L138.387 54.1427\n",
"L137.315 52.6209\n",
"L136.914 52.8745\n",
"L135.842 54.3963\n",
"L135.173 55.1572\n",
"L134.436 55.1572\n",
"L134.101 55.0304\n",
"L133.7 54.65\n",
"L133.365 54.1427\n",
"L133.03 53.3818\n",
"L131.959 51.6063\n",
"L131.222 50.3382\n",
"L130.887 49.9577\n",
"L130.486 49.8309\n",
"L130.151 49.9577\n",
"L129.079 51.7332\n",
"L128.343 53.7622\n",
"L128.008 55.0304\n",
"L127.271 56.6791\n",
"L126.937 57.3132\n",
"L126.2 58.2009\n",
"L125.129 59.0886\n",
"L124.794 59.4691\n",
"L124.392 59.7227\n",
"L124.057 60.23\n",
"L123.723 60.4836\n",
"L122.986 61.2445\n",
"L122.651 61.625\n",
"L121.915 61.8786\n",
"L121.58 62.1322\n",
"L120.843 62.3859\n",
"L120.509 62.7663\n",
"L119.772 62.7663\n",
"L119.37 62.8932\n",
"L119.035 63.1468\n",
"L118.299 63.1468\n",
"L117.629 62.2591\n",
"L114.75 55.9182\n",
"L114.415 55.5377\n",
"L113.679 55.1572\n",
"L113.344 55.1572\n",
"L112.942 55.5377\n",
"L112.272 56.6791\n",
"L111.871 57.0595\n",
"L111.536 57.1863\n",
"L111.134 57.1863\n",
"L110.799 56.8059\n",
"L109.728 54.65\n",
"L109.393 53.8891\n",
"L108.657 53.5086\n",
"L108.322 53.6354\n",
"L107.92 54.1427\n",
"L107.585 54.7768\n",
"L106.179 58.835\n",
"L105.443 60.23\n",
"L105.108 60.7372\n",
"L104.706 61.1177\n",
"L104.371 61.1177\n",
"L103.635 61.3713\n",
"L102.563 62.5127\n",
"L102.228 62.5127\n",
"L101.157 62.2591\n",
"L100.421 62.2591\n",
"L99.3492 61.3713\n",
"L99.0144 60.8641\n",
"L98.6126 60.4836\n",
"L97.943 59.0886\n",
"L97.5413 58.2009\n",
"L96.4699 55.2841\n",
"L95.8003 54.1427\n",
"L95.3985 53.6354\n",
"L95.0637 53.5086\n",
"L94.7289 53.5086\n",
"L94.3272 53.6354\n",
"L93.9924 54.1427\n",
"L93.6576 54.3963\n",
"L92.921 54.5232\n",
"L92.5193 54.0159\n",
"L91.8497 52.7477\n",
"L91.1131 51.6063\n",
"L90.7783 51.6063\n",
"L90.3765 52.1136\n",
"L89.3052 55.1572\n",
"L88.6356 57.44\n",
"L87.5642 59.5959\n",
"L86.8277 59.8495\n",
"L86.4929 60.23\n",
"L86.0911 60.4836\n",
"L85.4215 61.4982\n",
"L83.9484 62.7663\n",
"L83.2788 62.7663\n",
"L81.8056 60.7372\n",
"L81.0691 58.835\n",
"L80.3995 57.1863\n",
"L79.9977 56.4254\n",
"L79.3281 55.9182\n",
"L78.5916 56.1718\n",
"L77.855 57.1863\n",
"L77.5202 57.44\n",
"L77.1854 56.9327\n",
"L76.114 53.7622\n",
"L75.7123 53.1282\n",
"L75.3775 53.1282\n",
"L75.0427 53.7622\n",
"L73.2348 58.2009\n",
"L72.4982 58.9618\n",
"L72.1634 58.9618\n",
"L71.4269 59.2154\n",
"L70.6903 59.8495\n",
"L69.6189 60.9909\n",
"L69.2841 61.1177\n",
"L68.9493 61.1177\n",
"L68.2128 60.7372\n",
"L67.1414 59.0886\n",
"L66.8066 58.2009\n",
"L65.7353 56.6791\n",
"L64.6639 56.6791\n",
"L64.2621 56.8059\n",
"L63.9273 57.0595\n",
"L63.5925 57.0595\n",
"L63.1908 56.9327\n",
"L62.856 56.6791\n",
"L62.1194 55.6645\n",
"L61.7846 55.6645\n",
"L61.3828 56.1718\n",
"L60.7133 57.9472\n",
"L59.6419 61.2445\n",
"L58.9053 62.0054\n",
"L57.834 62.5127\n",
"L56.4278 64.0345\n",
"L56.026 64.0345\n",
"L55.6912 63.9077\n",
"L55.3564 63.6541\n",
"L54.6199 62.6395\n",
"L54.2851 61.8786\n",
"L53.8833 61.2445\n",
"L53.2137 59.9763\n",
"L52.4772 59.3422\n",
"L52.1424 59.2154\n",
"L51.071 59.2154\n",
"L50.6692 58.9618\n",
"L49.5979 57.6936\n",
"L49.2631 58.0741\n",
"L48.8613 58.7082\n",
"L47.79 61.7518\n",
"L47.1204 63.1468\n",
"L46.3838 64.1613\n",
"L46.049 64.2882\n",
"L44.5759 66.3172\n",
"L43.9063 67.3318\n",
"L43.1697 67.3318\n",
"L42.4332 66.8245\n",
"L41.7636 65.81\n",
"L41.3618 65.4295\n",
"L41.027 65.3027\n",
"L40.2904 65.3027\n",
"L39.9557 65.4295\n",
"L39.6208 65.81\n",
"L38.8843 65.9368\n",
"L38.1477 65.4295\n",
"L37.8129 65.3027\n",
"L37.4781 65.4295\n",
"L36.7416 67.205\n",
"L35.6702 69.6145\n",
"L33.8623 71.39\n",
"L33.1257 72.4045\n",
"L32.4561 72.6582\n",
"L31.7196 72.6582\n",
"L30.983 72.2777\n",
"L30.6482 71.8972\n",
"L29.9117 71.6436\n",
"L29.2421 71.6436\n",
"L28.8403 72.0241\n",
"L28.5055 72.0241\n",
"L27.0993 71.39\n",
"L26.6976 71.6436\n",
"L24.9566 74.8141\n",
"L24.22 75.0677\n",
"L23.4835 75.9554\n",
"L22.4121 77.4772\n",
"L21.6756 77.9845\n",
"L18.1267 77.9845\n",
"L17.3901 77.3504\n",
"L17.0553 76.97\n",
"L16.7205 77.0968\n",
"L14.9126 79.3795\n",
"L14.5778 79.5063\n",
"L14.176 79.5063\n",
"L13.5065 80.3941\n",
"L12.7699 81.4086\n",
"L12.4351 82.0427\n",
"L9.89061 82.0427\n",
"L8.48445 82.55\n",
"L8.14965 82.55\n",
"L7.74789 82.1695\n",
"L7.41309 82.0427\n",
"L7.07829 82.1695\n",
"L6.67653 82.55\n",
"L6.00693 83.6913\n",
"L5.60517 84.0718\n",
"L4.93557 84.0718\n",
"L4.19901 84.5791\n",
"L3.46245 85.5936\n",
"L2.79285 85.9741\n",
"L2.05629 86.1009\n",
"L1.65453 86.1009\n",
"L1.31973 85.9741\n",
"L0.98493 85.9741\n",
"L0.58317 85.7204\n",
"L0.24837 85.7204\n",
"L-0.08643 85.5936\n",
"L-0.48819 85.5936\n",
"L-0.82299 85.4668\n",
"L-1 85.2656\n",
"L-1 85.2656\" style=\"fill:none;stroke:#0000ff;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L0 -4\" id=\"m93b0483c22\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"64.06125\" xlink:href=\"#m93b0483c22\" y=\"113.493607955\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_3\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L0 4\" id=\"m741efc42ff\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"64.06125\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- \u22122 -->\n",
" <defs>\n",
" <path d=\"\n",
"M10.5938 35.5\n",
"L73.1875 35.5\n",
"L73.1875 27.2031\n",
"L10.5938 27.2031\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2212\"/>\n",
" <path d=\"\n",
"M19.1875 8.29688\n",
"L53.6094 8.29688\n",
"L53.6094 0\n",
"L7.32812 0\n",
"L7.32812 8.29688\n",
"Q12.9375 14.1094 22.625 23.8906\n",
"Q32.3281 33.6875 34.8125 36.5312\n",
"Q39.5469 41.8438 41.4219 45.5312\n",
"Q43.3125 49.2188 43.3125 52.7812\n",
"Q43.3125 58.5938 39.2344 62.25\n",
"Q35.1562 65.9219 28.6094 65.9219\n",
"Q23.9688 65.9219 18.8125 64.3125\n",
"Q13.6719 62.7031 7.8125 59.4219\n",
"L7.8125 69.3906\n",
"Q13.7656 71.7812 18.9375 73\n",
"Q24.125 74.2188 28.4219 74.2188\n",
"Q39.75 74.2188 46.4844 68.5469\n",
"Q53.2188 62.8906 53.2188 53.4219\n",
"Q53.2188 48.9219 51.5312 44.8906\n",
"Q49.8594 40.875 45.4062 35.4062\n",
"Q44.1875 33.9844 37.6406 27.2188\n",
"Q31.1094 20.4531 19.1875 8.29688\" id=\"BitstreamVeraSans-Roman-32\"/>\n",
" </defs>\n",
" <g transform=\"translate(57.720625 125.092045455)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"131.02125\" xlink:href=\"#m93b0483c22\" y=\"113.493607955\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_5\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"131.02125\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- \u22121 -->\n",
" <defs>\n",
" <path d=\"\n",
"M12.4062 8.29688\n",
"L28.5156 8.29688\n",
"L28.5156 63.9219\n",
"L10.9844 60.4062\n",
"L10.9844 69.3906\n",
"L28.4219 72.9062\n",
"L38.2812 72.9062\n",
"L38.2812 8.29688\n",
"L54.3906 8.29688\n",
"L54.3906 0\n",
"L12.4062 0\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-31\"/>\n",
" </defs>\n",
" <g transform=\"translate(124.6415625 125.092045455)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"197.98125\" xlink:href=\"#m93b0483c22\" y=\"113.493607955\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_7\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"197.98125\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- 0 -->\n",
" <defs>\n",
" <path d=\"\n",
"M31.7812 66.4062\n",
"Q24.1719 66.4062 20.3281 58.9062\n",
"Q16.5 51.4219 16.5 36.375\n",
"Q16.5 21.3906 20.3281 13.8906\n",
"Q24.1719 6.39062 31.7812 6.39062\n",
"Q39.4531 6.39062 43.2812 13.8906\n",
"Q47.125 21.3906 47.125 36.375\n",
"Q47.125 51.4219 43.2812 58.9062\n",
"Q39.4531 66.4062 31.7812 66.4062\n",
"M31.7812 74.2188\n",
"Q44.0469 74.2188 50.5156 64.5156\n",
"Q56.9844 54.8281 56.9844 36.375\n",
"Q56.9844 17.9688 50.5156 8.26562\n",
"Q44.0469 -1.42188 31.7812 -1.42188\n",
"Q19.5312 -1.42188 13.0625 8.26562\n",
"Q6.59375 17.9688 6.59375 36.375\n",
"Q6.59375 54.8281 13.0625 64.5156\n",
"Q19.5312 74.2188 31.7812 74.2188\" id=\"BitstreamVeraSans-Roman-30\"/>\n",
" </defs>\n",
" <g transform=\"translate(195.46171875 125.092045455)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"264.94125\" xlink:href=\"#m93b0483c22\" y=\"113.493607955\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_9\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"264.94125\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(262.7709375 125.092045455)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_10\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"331.90125\" xlink:href=\"#m93b0483c22\" y=\"113.493607955\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_11\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"331.90125\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- 2 -->\n",
" <g transform=\"translate(329.5871875 125.092045455)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_12\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L4 0\" id=\"m728421d6d4\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"113.493607955\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_13\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L-4 0\" id=\"mcb0005524f\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"113.493607955\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" <!-- \u221210 -->\n",
" <g transform=\"translate(7.2 116.252982955)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_14\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"100.811789773\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_15\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"100.811789773\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_7\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(21.5421875 103.571164773)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_16\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"88.1299715909\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_17\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"88.1299715909\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_8\">\n",
" <!-- 10 -->\n",
" <g transform=\"translate(15.61875 90.8893465909)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_18\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"75.4481534091\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_19\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"75.4481534091\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_9\">\n",
" <!-- 20 -->\n",
" <g transform=\"translate(15.253125 78.2075284091)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_20\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"62.7663352273\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_21\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"62.7663352273\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_10\">\n",
" <!-- 30 -->\n",
" <defs>\n",
" <path d=\"\n",
"M40.5781 39.3125\n",
"Q47.6562 37.7969 51.625 33\n",
"Q55.6094 28.2188 55.6094 21.1875\n",
"Q55.6094 10.4062 48.1875 4.48438\n",
"Q40.7656 -1.42188 27.0938 -1.42188\n",
"Q22.5156 -1.42188 17.6562 -0.515625\n",
"Q12.7969 0.390625 7.625 2.20312\n",
"L7.625 11.7188\n",
"Q11.7188 9.32812 16.5938 8.10938\n",
"Q21.4844 6.89062 26.8125 6.89062\n",
"Q36.0781 6.89062 40.9375 10.5469\n",
"Q45.7969 14.2031 45.7969 21.1875\n",
"Q45.7969 27.6406 41.2812 31.2656\n",
"Q36.7656 34.9062 28.7188 34.9062\n",
"L20.2188 34.9062\n",
"L20.2188 43.0156\n",
"L29.1094 43.0156\n",
"Q36.375 43.0156 40.2344 45.9219\n",
"Q44.0938 48.8281 44.0938 54.2969\n",
"Q44.0938 59.9062 40.1094 62.9062\n",
"Q36.1406 65.9219 28.7188 65.9219\n",
"Q24.6562 65.9219 20.0156 65.0312\n",
"Q15.375 64.1562 9.8125 62.3125\n",
"L9.8125 71.0938\n",
"Q15.4375 72.6562 20.3438 73.4375\n",
"Q25.25 74.2188 29.5938 74.2188\n",
"Q40.8281 74.2188 47.3594 69.1094\n",
"Q53.9062 64.0156 53.9062 55.3281\n",
"Q53.9062 49.2656 50.4375 45.0938\n",
"Q46.9688 40.9219 40.5781 39.3125\" id=\"BitstreamVeraSans-Roman-33\"/>\n",
" </defs>\n",
" <g transform=\"translate(15.2828125 65.5257102273)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_6\">\n",
" <g id=\"line2d_22\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"50.0845170455\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_23\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"50.0845170455\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_11\">\n",
" <!-- 40 -->\n",
" <defs>\n",
" <path d=\"\n",
"M37.7969 64.3125\n",
"L12.8906 25.3906\n",
"L37.7969 25.3906\n",
"z\n",
"\n",
"M35.2031 72.9062\n",
"L47.6094 72.9062\n",
"L47.6094 25.3906\n",
"L58.0156 25.3906\n",
"L58.0156 17.1875\n",
"L47.6094 17.1875\n",
"L47.6094 0\n",
"L37.7969 0\n",
"L37.7969 17.1875\n",
"L4.89062 17.1875\n",
"L4.89062 26.7031\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-34\"/>\n",
" </defs>\n",
" <g transform=\"translate(15.009375 52.8438920455)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_7\">\n",
" <g id=\"line2d_24\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"37.4026988636\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_25\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"37.4026988636\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_12\">\n",
" <!-- 50 -->\n",
" <defs>\n",
" <path d=\"\n",
"M10.7969 72.9062\n",
"L49.5156 72.9062\n",
"L49.5156 64.5938\n",
"L19.8281 64.5938\n",
"L19.8281 46.7344\n",
"Q21.9688 47.4688 24.1094 47.8281\n",
"Q26.2656 48.1875 28.4219 48.1875\n",
"Q40.625 48.1875 47.75 41.5\n",
"Q54.8906 34.8125 54.8906 23.3906\n",
"Q54.8906 11.625 47.5625 5.09375\n",
"Q40.2344 -1.42188 26.9062 -1.42188\n",
"Q22.3125 -1.42188 17.5469 -0.640625\n",
"Q12.7969 0.140625 7.71875 1.70312\n",
"L7.71875 11.625\n",
"Q12.1094 9.23438 16.7969 8.0625\n",
"Q21.4844 6.89062 26.7031 6.89062\n",
"Q35.1562 6.89062 40.0781 11.3281\n",
"Q45.0156 15.7656 45.0156 23.3906\n",
"Q45.0156 31 40.0781 35.4375\n",
"Q35.1562 39.8906 26.7031 39.8906\n",
"Q22.75 39.8906 18.8125 39.0156\n",
"Q14.8906 38.1406 10.7969 36.2812\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-35\"/>\n",
" </defs>\n",
" <g transform=\"translate(15.2921875 40.1620738636)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_8\">\n",
" <g id=\"line2d_26\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"24.7208806818\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_27\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"24.7208806818\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_13\">\n",
" <!-- 60 -->\n",
" <defs>\n",
" <path d=\"\n",
"M33.0156 40.375\n",
"Q26.375 40.375 22.4844 35.8281\n",
"Q18.6094 31.2969 18.6094 23.3906\n",
"Q18.6094 15.5312 22.4844 10.9531\n",
"Q26.375 6.39062 33.0156 6.39062\n",
"Q39.6562 6.39062 43.5312 10.9531\n",
"Q47.4062 15.5312 47.4062 23.3906\n",
"Q47.4062 31.2969 43.5312 35.8281\n",
"Q39.6562 40.375 33.0156 40.375\n",
"M52.5938 71.2969\n",
"L52.5938 62.3125\n",
"Q48.875 64.0625 45.0938 64.9844\n",
"Q41.3125 65.9219 37.5938 65.9219\n",
"Q27.8281 65.9219 22.6719 59.3281\n",
"Q17.5312 52.7344 16.7969 39.4062\n",
"Q19.6719 43.6562 24.0156 45.9219\n",
"Q28.375 48.1875 33.5938 48.1875\n",
"Q44.5781 48.1875 50.9531 41.5156\n",
"Q57.3281 34.8594 57.3281 23.3906\n",
"Q57.3281 12.1562 50.6875 5.35938\n",
"Q44.0469 -1.42188 33.0156 -1.42188\n",
"Q20.3594 -1.42188 13.6719 8.26562\n",
"Q6.98438 17.9688 6.98438 36.375\n",
"Q6.98438 53.6562 15.1875 63.9375\n",
"Q23.3906 74.2188 37.2031 74.2188\n",
"Q40.9219 74.2188 44.7031 73.4844\n",
"Q48.4844 72.75 52.5938 71.2969\" id=\"BitstreamVeraSans-Roman-36\"/>\n",
" </defs>\n",
" <g transform=\"translate(15.21875 27.4802556818)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_9\">\n",
" <g id=\"line2d_28\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_29\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_14\">\n",
" <!-- 70 -->\n",
" <defs>\n",
" <path d=\"\n",
"M8.20312 72.9062\n",
"L55.0781 72.9062\n",
"L55.0781 68.7031\n",
"L28.6094 0\n",
"L18.3125 0\n",
"L43.2188 64.5938\n",
"L8.20312 64.5938\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-37\"/>\n",
" </defs>\n",
" <g transform=\"translate(15.340625 14.7984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-37\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"\n",
"M30.5812 12.0391\n",
"L365.381 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"\n",
"M365.381 113.494\n",
"L365.381 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"\n",
"M30.5812 113.494\n",
"L365.381 113.494\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"\n",
"M30.5813 113.494\n",
"L30.5813 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"axes_2\">\n",
" <g id=\"patch_7\">\n",
" <path d=\"\n",
"M30.5813 235.239\n",
"L365.381 235.239\n",
"L365.381 133.785\n",
"L30.5813 133.785\n",
"z\n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"line2d_30\">\n",
" <path clip-path=\"url(#pf3fa054ccc)\" d=\"\n",
"M373.581 174.429\n",
"L373.416 173.787\n",
"L373.082 170.888\n",
"L372.68 168.569\n",
"L372.345 167.989\n",
"L372.01 169.149\n",
"L371.274 173.932\n",
"L370.939 176.25\n",
"L370.202 179.149\n",
"L369.868 179.729\n",
"L369.466 180.019\n",
"L369.131 179.874\n",
"L368.796 179.439\n",
"L368.06 177.7\n",
"L367.323 175.381\n",
"L366.988 173.062\n",
"L366.252 164.946\n",
"L365.917 160.887\n",
"L365.582 158.568\n",
"L365.18 158.568\n",
"L364.511 161.757\n",
"L364.109 162.627\n",
"L363.774 161.902\n",
"L363.038 156.684\n",
"L362.703 155.525\n",
"L362.368 156.684\n",
"L361.966 159.583\n",
"L361.297 166.25\n",
"L360.56 171.323\n",
"L360.225 173.062\n",
"L359.824 174.221\n",
"L359.489 174.801\n",
"L358.752 175.381\n",
"L358.417 175.526\n",
"L358.083 175.526\n",
"L357.681 175.236\n",
"L357.346 174.221\n",
"L356.609 169.873\n",
"L355.538 157.264\n",
"L355.203 155.235\n",
"L354.869 155.09\n",
"L354.467 156.105\n",
"L354.132 157.264\n",
"L353.797 157.844\n",
"L353.395 156.829\n",
"L352.726 150.597\n",
"L352.324 148.713\n",
"L351.989 148.713\n",
"L351.253 153.061\n",
"L350.583 158.423\n",
"L349.847 162.047\n",
"L349.512 163.206\n",
"L348.775 164.511\n",
"L348.44 164.656\n",
"L348.039 165.09\n",
"L347.704 165.09\n",
"L346.967 165.38\n",
"L346.632 165.38\n",
"L346.298 164.946\n",
"L345.896 163.351\n",
"L345.226 156.974\n",
"L344.49 150.887\n",
"L344.155 150.742\n",
"L343.753 152.046\n",
"L343.084 155.815\n",
"L342.682 156.974\n",
"L342.347 156.974\n",
"L341.276 150.887\n",
"L340.941 150.887\n",
"L340.539 152.771\n",
"L338.798 166.975\n",
"L338.062 169.583\n",
"L337.727 170.308\n",
"L336.99 171.468\n",
"L336.655 171.323\n",
"L336.254 170.888\n",
"L335.182 169.004\n",
"L334.513 166.395\n",
"L334.111 164.076\n",
"L332.705 149.582\n",
"L332.37 148.423\n",
"L331.968 148.568\n",
"L330.897 152.481\n",
"L330.562 152.771\n",
"L330.227 151.756\n",
"L329.825 149.727\n",
"L329.156 145.379\n",
"L328.754 145.234\n",
"L328.419 146.684\n",
"L326.611 161.177\n",
"L325.942 164.656\n",
"L324.87 167.554\n",
"L323.799 169.149\n",
"L323.063 169.439\n",
"L322.661 169.439\n",
"L322.326 169.294\n",
"L321.991 168.859\n",
"L321.589 167.989\n",
"L320.92 163.931\n",
"L319.848 154.22\n",
"L319.447 152.916\n",
"L319.112 152.771\n",
"L318.777 153.786\n",
"L317.706 158.134\n",
"L317.304 158.713\n",
"L316.969 158.134\n",
"L316.233 154.075\n",
"L315.898 151.756\n",
"L315.563 150.597\n",
"L315.161 150.742\n",
"L314.492 154.8\n",
"L313.019 164.511\n",
"L312.349 166.975\n",
"L311.612 168.424\n",
"L310.206 169.004\n",
"L309.47 169.004\n",
"L308.733 168.569\n",
"L307.662 166.83\n",
"L307.327 165.815\n",
"L306.59 162.192\n",
"L305.184 150.452\n",
"L304.849 149.148\n",
"L304.448 148.858\n",
"L304.113 149.582\n",
"L303.041 154.22\n",
"L302.64 155.38\n",
"L302.305 155.96\n",
"L301.97 155.525\n",
"L301.568 154.365\n",
"L300.899 150.452\n",
"L300.497 149.003\n",
"L300.162 148.713\n",
"L299.827 149.438\n",
"L299.426 151.467\n",
"L298.019 162.627\n",
"L297.283 166.83\n",
"L296.613 169.873\n",
"L295.542 172.482\n",
"L294.805 173.497\n",
"L293.399 174.656\n",
"L292.997 174.801\n",
"L292.328 174.801\n",
"L291.591 174.366\n",
"L290.855 173.207\n",
"L290.185 170.888\n",
"L289.783 169.149\n",
"L288.712 161.032\n",
"L288.377 158.134\n",
"L287.641 155.09\n",
"L287.306 154.945\n",
"L286.904 155.67\n",
"L285.498 160.453\n",
"L285.163 161.177\n",
"L284.761 161.177\n",
"L284.427 160.742\n",
"L283.69 157.989\n",
"L282.619 151.177\n",
"L282.284 150.017\n",
"L281.949 149.872\n",
"L281.547 150.887\n",
"L281.213 152.481\n",
"L279.806 161.612\n",
"L279.07 164.801\n",
"L278.735 165.815\n",
"L276.927 168.859\n",
"L276.592 169.294\n",
"L275.856 169.728\n",
"L272.24 171.178\n",
"L271.905 171.178\n",
"L271.57 171.033\n",
"L271.169 171.033\n",
"L270.834 170.888\n",
"L270.499 170.308\n",
"L270.097 169.873\n",
"L269.762 169.294\n",
"L269.026 167.12\n",
"L268.356 163.496\n",
"L267.62 159.003\n",
"L267.285 156.974\n",
"L266.548 154.22\n",
"L266.213 154.075\n",
"L265.812 154.51\n",
"L264.74 158.279\n",
"L264.071 161.467\n",
"L262.598 165.67\n",
"L262.263 166.25\n",
"L261.861 166.105\n",
"L260.79 162.627\n",
"L260.12 159.293\n",
"L259.049 155.815\n",
"L258.647 155.67\n",
"L258.312 156.394\n",
"L257.576 159.003\n",
"L255.835 168.569\n",
"L254.763 172.917\n",
"L253.692 175.816\n",
"L252.955 177.265\n",
"L252.219 179.004\n",
"L251.884 179.584\n",
"L251.482 179.874\n",
"L250.813 179.874\n",
"L250.411 180.019\n",
"L249.741 181.033\n",
"L249.005 181.903\n",
"L247.599 183.207\n",
"L246.527 184.657\n",
"L246.125 184.802\n",
"L245.791 184.802\n",
"L245.456 184.657\n",
"L245.054 184.657\n",
"L244.385 183.497\n",
"L243.648 181.468\n",
"L242.911 179.584\n",
"L242.175 178.425\n",
"L241.84 178.28\n",
"L240.769 177.265\n",
"L239.363 175.381\n",
"L238.626 173.932\n",
"L236.818 167.554\n",
"L234.675 158.423\n",
"L234.006 156.829\n",
"L233.269 156.105\n",
"L232.934 156.394\n",
"L232.533 156.539\n",
"L231.461 158.568\n",
"L230.725 160.308\n",
"L230.055 162.047\n",
"L229.653 162.772\n",
"L228.984 164.801\n",
"L227.912 166.395\n",
"L226.841 169.149\n",
"L226.439 169.149\n",
"L226.104 168.569\n",
"L225.368 168.279\n",
"L224.698 168.279\n",
"L224.297 168.424\n",
"L223.627 168.424\n",
"L222.154 167.409\n",
"L221.819 166.83\n",
"L221.417 166.54\n",
"L220.748 165.525\n",
"L220.011 164.366\n",
"L218.605 161.467\n",
"L217.534 159.583\n",
"L216.06 158.134\n",
"L215.726 158.134\n",
"L214.654 157.699\n",
"L214.319 157.844\n",
"L213.918 157.844\n",
"L213.181 158.279\n",
"L212.512 159.003\n",
"L212.11 159.438\n",
"L210.369 162.482\n",
"L209.632 163.061\n",
"L206.753 166.685\n",
"L206.083 167.409\n",
"L204.61 168.859\n",
"L204.275 169.149\n",
"L203.874 169.294\n",
"L203.204 169.728\n",
"L202.468 170.163\n",
"L198.182 171.902\n",
"L196.776 171.902\n",
"L196.374 172.047\n",
"L195.638 172.047\n",
"L195.303 171.902\n",
"L194.968 172.047\n",
"L194.566 172.047\n",
"L193.897 171.758\n",
"L193.495 171.758\n",
"L193.16 171.902\n",
"L192.825 172.482\n",
"L192.424 172.772\n",
"L192.089 172.627\n",
"L191.754 171.758\n",
"L190.683 170.308\n",
"L189.946 170.018\n",
"L189.611 169.728\n",
"L189.209 169.583\n",
"L188.54 169.149\n",
"L187.402 168.424\n",
"L187.067 168.279\n",
"L186.732 167.989\n",
"L185.661 167.699\n",
"L185.259 167.265\n",
"L184.589 167.265\n",
"L183.853 167.699\n",
"L183.518 167.699\n",
"L183.116 167.265\n",
"L182.447 166.975\n",
"L182.045 167.12\n",
"L181.71 167.12\n",
"L180.304 168.424\n",
"L179.567 169.294\n",
"L178.831 170.163\n",
"L177.023 173.207\n",
"L176.353 174.221\n",
"L175.617 175.236\n",
"L174.545 176.25\n",
"L174.21 176.685\n",
"L173.809 176.83\n",
"L173.474 177.265\n",
"L172.068 177.845\n",
"L171.666 177.845\n",
"L171.331 177.99\n",
"L170.929 177.99\n",
"L170.595 178.135\n",
"L170.26 178.135\n",
"L168.452 177.41\n",
"L168.117 176.975\n",
"L167.715 176.685\n",
"L167.381 176.106\n",
"L167.046 175.961\n",
"L165.573 174.221\n",
"L165.238 173.642\n",
"L164.166 173.207\n",
"L163.832 173.207\n",
"L163.43 173.352\n",
"L163.095 173.787\n",
"L162.76 174.511\n",
"L162.359 175.091\n",
"L161.622 176.685\n",
"L160.551 180.019\n",
"L158.81 184.367\n",
"L157.337 186.686\n",
"L156.667 187.845\n",
"L156.265 188.28\n",
"L155.596 189.295\n",
"L154.524 190.744\n",
"L153.788 191.179\n",
"L153.386 191.324\n",
"L152.716 191.759\n",
"L151.98 192.338\n",
"L151.645 192.338\n",
"L150.172 193.498\n",
"L148.766 193.498\n",
"L148.431 193.643\n",
"L148.029 193.643\n",
"L147.694 193.788\n",
"L147.359 193.788\n",
"L146.958 193.933\n",
"L145.15 193.933\n",
"L144.815 193.788\n",
"L144.48 193.353\n",
"L144.078 193.063\n",
"L142.337 190.744\n",
"L141.601 189.295\n",
"L139.793 184.367\n",
"L139.458 183.352\n",
"L139.123 182.773\n",
"L138.387 181.903\n",
"L137.315 180.164\n",
"L136.914 180.454\n",
"L135.842 182.193\n",
"L135.173 183.062\n",
"L134.436 183.062\n",
"L134.101 182.918\n",
"L133.7 182.483\n",
"L133.365 181.903\n",
"L133.03 181.033\n",
"L131.959 179.004\n",
"L131.222 177.555\n",
"L130.887 177.12\n",
"L130.486 176.975\n",
"L130.151 177.12\n",
"L129.079 179.149\n",
"L128.343 181.468\n",
"L128.008 182.918\n",
"L127.271 184.802\n",
"L126.937 185.526\n",
"L126.2 186.541\n",
"L125.129 187.555\n",
"L124.794 187.99\n",
"L124.392 188.28\n",
"L124.057 188.86\n",
"L123.723 189.15\n",
"L122.986 190.019\n",
"L122.651 190.454\n",
"L121.915 190.744\n",
"L121.58 191.034\n",
"L120.843 191.324\n",
"L120.509 191.759\n",
"L119.772 191.759\n",
"L119.37 191.903\n",
"L119.035 192.193\n",
"L118.299 192.193\n",
"L117.629 191.179\n",
"L114.75 183.932\n",
"L114.415 183.497\n",
"L113.679 183.062\n",
"L113.344 183.062\n",
"L112.942 183.497\n",
"L112.272 184.802\n",
"L111.871 185.236\n",
"L111.536 185.381\n",
"L111.134 185.381\n",
"L110.799 184.947\n",
"L109.728 182.483\n",
"L109.393 181.613\n",
"L108.657 181.178\n",
"L108.322 181.323\n",
"L107.92 181.903\n",
"L107.585 182.628\n",
"L106.179 187.266\n",
"L105.443 188.86\n",
"L105.108 189.44\n",
"L104.706 189.874\n",
"L104.371 189.874\n",
"L103.635 190.164\n",
"L102.563 191.469\n",
"L102.228 191.469\n",
"L101.827 191.324\n",
"L101.492 191.324\n",
"L101.157 191.179\n",
"L100.421 191.179\n",
"L99.3492 190.164\n",
"L99.0144 189.585\n",
"L98.6126 189.15\n",
"L97.943 187.555\n",
"L97.5413 186.541\n",
"L96.4699 183.207\n",
"L95.8003 181.903\n",
"L95.3985 181.323\n",
"L95.0637 181.178\n",
"L94.7289 181.178\n",
"L94.3272 181.323\n",
"L93.9924 181.903\n",
"L93.6576 182.193\n",
"L93.2558 182.338\n",
"L92.921 182.338\n",
"L92.5193 181.758\n",
"L91.8497 180.309\n",
"L91.1131 179.004\n",
"L90.7783 179.004\n",
"L90.3765 179.584\n",
"L89.3052 183.062\n",
"L88.6356 185.671\n",
"L87.5642 188.135\n",
"L86.8277 188.425\n",
"L86.4929 188.86\n",
"L86.0911 189.15\n",
"L85.4215 190.309\n",
"L83.9484 191.759\n",
"L83.2788 191.759\n",
"L81.8056 189.44\n",
"L81.0691 187.266\n",
"L80.3995 185.381\n",
"L79.9977 184.512\n",
"L79.3281 183.932\n",
"L78.5916 184.222\n",
"L77.855 185.381\n",
"L77.5202 185.671\n",
"L77.1854 185.092\n",
"L76.114 181.468\n",
"L75.7123 180.743\n",
"L75.3775 180.743\n",
"L75.0427 181.468\n",
"L73.2348 186.541\n",
"L72.4982 187.41\n",
"L72.1634 187.41\n",
"L71.4269 187.7\n",
"L70.6903 188.425\n",
"L69.6189 189.729\n",
"L69.2841 189.874\n",
"L68.9493 189.874\n",
"L68.2128 189.44\n",
"L67.1414 187.555\n",
"L66.8066 186.541\n",
"L65.7353 184.802\n",
"L64.6639 184.802\n",
"L64.2621 184.947\n",
"L63.9273 185.236\n",
"L63.5925 185.236\n",
"L63.1908 185.092\n",
"L62.856 184.802\n",
"L62.1194 183.642\n",
"L61.7846 183.642\n",
"L61.3828 184.222\n",
"L60.7133 186.251\n",
"L59.6419 190.019\n",
"L58.9053 190.889\n",
"L57.834 191.469\n",
"L56.4278 193.208\n",
"L56.026 193.208\n",
"L55.6912 193.063\n",
"L55.3564 192.773\n",
"L54.6199 191.614\n",
"L54.2851 190.744\n",
"L53.8833 190.019\n",
"L53.2137 188.57\n",
"L52.4772 187.845\n",
"L52.1424 187.7\n",
"L51.071 187.7\n",
"L50.6692 187.41\n",
"L49.5979 185.961\n",
"L49.2631 186.396\n",
"L48.8613 187.121\n",
"L47.79 190.599\n",
"L47.1204 192.193\n",
"L46.3838 193.353\n",
"L46.049 193.498\n",
"L44.5759 195.817\n",
"L43.9063 196.976\n",
"L43.1697 196.976\n",
"L42.4332 196.396\n",
"L41.7636 195.237\n",
"L41.3618 194.802\n",
"L41.027 194.657\n",
"L40.2904 194.657\n",
"L39.9557 194.802\n",
"L39.6208 195.237\n",
"L39.2191 195.382\n",
"L38.8843 195.382\n",
"L38.1477 194.802\n",
"L37.8129 194.657\n",
"L37.4781 194.802\n",
"L36.7416 196.831\n",
"L35.6702 199.585\n",
"L33.8623 201.614\n",
"L33.1257 202.774\n",
"L32.4561 203.063\n",
"L31.7196 203.063\n",
"L30.983 202.629\n",
"L30.6482 202.194\n",
"L29.9117 201.904\n",
"L29.2421 201.904\n",
"L28.8403 202.339\n",
"L28.5055 202.339\n",
"L27.0993 201.614\n",
"L26.6976 201.904\n",
"L24.9566 205.527\n",
"L24.22 205.817\n",
"L23.4835 206.832\n",
"L22.4121 208.571\n",
"L21.6756 209.151\n",
"L18.1267 209.151\n",
"L17.3901 208.426\n",
"L17.0553 207.991\n",
"L16.7205 208.136\n",
"L14.9126 210.745\n",
"L14.5778 210.89\n",
"L14.176 210.89\n",
"L13.5065 211.905\n",
"L12.7699 213.064\n",
"L12.4351 213.789\n",
"L9.89061 213.789\n",
"L8.48445 214.368\n",
"L8.14965 214.368\n",
"L7.74789 213.934\n",
"L7.41309 213.789\n",
"L7.07829 213.934\n",
"L6.67653 214.368\n",
"L6.00693 215.673\n",
"L5.60517 216.108\n",
"L4.93557 216.108\n",
"L4.19901 216.687\n",
"L3.46245 217.847\n",
"L2.79285 218.282\n",
"L2.39109 218.427\n",
"L1.65453 218.427\n",
"L1.31973 218.282\n",
"L0.98493 218.282\n",
"L0.58317 217.992\n",
"L0.24837 217.992\n",
"L-0.08643 217.847\n",
"L-0.48819 217.847\n",
"L-0.82299 217.702\n",
"L-1 217.472\n",
"L-1 217.472\" style=\"fill:none;stroke:#0000ff;stroke-linecap:square;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_3\">\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_31\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"64.06125\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_32\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"64.06125\" xlink:href=\"#m741efc42ff\" y=\"133.784517045\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_15\">\n",
" <!-- \u22122 -->\n",
" <g transform=\"translate(57.720625 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_7\">\n",
" <g id=\"line2d_33\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"131.02125\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_34\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"131.02125\" xlink:href=\"#m741efc42ff\" y=\"133.784517045\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_16\">\n",
" <!-- \u22121 -->\n",
" <g transform=\"translate(124.6415625 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_8\">\n",
" <g id=\"line2d_35\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"197.98125\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_36\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"197.98125\" xlink:href=\"#m741efc42ff\" y=\"133.784517045\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_17\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(195.46171875 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_9\">\n",
" <g id=\"line2d_37\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"264.94125\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_38\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"264.94125\" xlink:href=\"#m741efc42ff\" y=\"133.784517045\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_18\">\n",
" <!-- 1 -->\n",
" <g transform=\"translate(262.7709375 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_10\">\n",
" <g id=\"line2d_39\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"331.90125\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_40\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"331.90125\" xlink:href=\"#m741efc42ff\" y=\"133.784517045\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_19\">\n",
" <!-- 2 -->\n",
" <g transform=\"translate(329.5871875 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_4\">\n",
" <g id=\"ytick_10\">\n",
" <g id=\"line2d_41\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_42\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_20\">\n",
" <!-- 0 -->\n",
" <g transform=\"translate(21.5421875 237.9984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_11\">\n",
" <g id=\"line2d_43\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"220.745556006\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_44\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"220.745556006\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_21\">\n",
" <!-- 10 -->\n",
" <g transform=\"translate(15.61875 223.504931006)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_12\">\n",
" <g id=\"line2d_45\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"206.252049513\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_46\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"206.252049513\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_22\">\n",
" <!-- 20 -->\n",
" <g transform=\"translate(15.253125 209.011424513)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_13\">\n",
" <g id=\"line2d_47\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"191.758543019\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_48\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"191.758543019\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_23\">\n",
" <!-- 30 -->\n",
" <g transform=\"translate(15.2828125 194.517918019)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_14\">\n",
" <g id=\"line2d_49\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"177.265036526\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_50\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"177.265036526\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_24\">\n",
" <!-- 40 -->\n",
" <g transform=\"translate(15.009375 180.024411526)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_15\">\n",
" <g id=\"line2d_51\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"162.771530032\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_52\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"162.771530032\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_25\">\n",
" <!-- 50 -->\n",
" <g transform=\"translate(15.2921875 165.530905032)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_16\">\n",
" <g id=\"line2d_53\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"148.278023539\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_54\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"148.278023539\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_26\">\n",
" <!-- 60 -->\n",
" <g transform=\"translate(15.21875 151.037398539)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_17\">\n",
" <g id=\"line2d_55\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"30.58125\" xlink:href=\"#m728421d6d4\" y=\"133.784517045\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_56\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"365.38125\" xlink:href=\"#mcb0005524f\" y=\"133.784517045\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_27\">\n",
" <!-- 70 -->\n",
" <g transform=\"translate(15.340625 136.543892045)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-37\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path d=\"\n",
"M30.5812 133.785\n",
"L365.381 133.785\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_9\">\n",
" <path d=\"\n",
"M365.381 235.239\n",
"L365.381 133.785\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_10\">\n",
" <path d=\"\n",
"M30.5812 235.239\n",
"L365.381 235.239\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_11\">\n",
" <path d=\"\n",
"M30.5813 235.239\n",
"L30.5813 133.785\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p0e12a04d22\">\n",
" <rect height=\"101.454545455\" width=\"334.8\" x=\"30.58125\" y=\"12.0390625\"/>\n",
" </clipPath>\n",
" <clipPath id=\"pf3fa054ccc\">\n",
" <rect height=\"101.454545455\" width=\"334.8\" x=\"30.58125\" y=\"133.784517045\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text": [
"<matplotlib.figure.Figure at 0x110886490>"
]
}
],
"prompt_number": 234
},
{
"cell_type": "code",
"collapsed": true,
"input": [
"maxima_by_I = []\n",
"for run_data in data:\n",
" \n",
" thresh = 3.51\n",
" smoothing = 4\n",
" smoothing_process = ['flat', 'hanning', 'hamming', 'bartlett', 'blackman']\n",
" smoothing_type = 2\n",
" window_size = 1\n",
"\n",
" maxima_loc = argrelextrema(smooth(run_data.intensity*-1, smoothing, window =smoothing_process[smoothing_type]), \n",
" np.less,order = window_size)[0]\n",
"\n",
" #picks out maxima datapoints\n",
" maxima = run_data.loc[maxima_loc]\n",
"\n",
" #resets the index\n",
" #maxima.index = np.arange(0,len(maxima))\n",
"\n",
" #thresh = 1\n",
" splitting1 = maxima.shift(1) - maxima\n",
" splitting2 = maxima.shift(-1) - maxima\n",
"\n",
"\n",
" mu = (splitting1.dropna().mean().alpha + splitting1.dropna().mean().alpha)/2.0\n",
" sig = (splitting1.dropna().std().alpha + splitting1.dropna().std().alpha)/2.0\n",
"\n",
" df1 = maxima[splitting1.alpha >= (mu - thresh*sig)]\n",
" df2 = maxima[splitting2.alpha >= (mu - thresh*sig)]\n",
" df3 = df1[splitting1.alpha <= (mu + thresh*sig)]\n",
" df4 = df2[splitting2.alpha <= (mu + thresh*sig)]\n",
"\n",
" df7 = pd.concat([df4,df3], axis = 0).drop_duplicates()\n",
" maxima_by_I.append(df7)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 94
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"maxima_by_I[0].values[0]"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 206,
"text": [
"array([ 3.994, 9.2 ])"
]
}
],
"prompt_number": 206
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"def interfunc2(run):\n",
" diff = (maxima_by_I[run].shift(1)-maxima_by_I[run])\n",
" diff = diff[diff.alpha < 1.3]\n",
" diff = diff[diff.alpha >0]\n",
" plt.scatter(maxima_by_I[run].alpha.loc[diff.index],diff.alpha)\n",
" plt.xlim(-6,6)\n",
" plt.show()\n",
"interact(interfunc2,run = widgets.IntSlider(min=0, max=11, value=0))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "display_data",
"svg": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Created with matplotlib (http://matplotlib.org/) -->\n",
"<svg height=\"256pt\" version=\"1.1\" viewBox=\"0 0 376 256\" width=\"376pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"\n",
"M0 256.117\n",
"L376.659 256.117\n",
"L376.659 0\n",
"L0 0\n",
"z\n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"\n",
"M32.1422 235.239\n",
"L366.942 235.239\n",
"L366.942 12.0391\n",
"L32.1422 12.0391\n",
"z\n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"PathCollection_1\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 2.23607\n",
"C0.593012 2.23607 1.16182 2.00046 1.58114 1.58114\n",
"C2.00046 1.16182 2.23607 0.593012 2.23607 0\n",
"C2.23607 -0.593012 2.00046 -1.16182 1.58114 -1.58114\n",
"C1.16182 -2.00046 0.593012 -2.23607 0 -2.23607\n",
"C-0.593012 -2.23607 -1.16182 -2.00046 -1.58114 -1.58114\n",
"C-2.00046 -1.16182 -2.23607 -0.593012 -2.23607 0\n",
"C-2.23607 0.593012 -2.00046 1.16182 -1.58114 1.58114\n",
"C-1.16182 2.00046 -0.593012 2.23607 0 2.23607\n",
"z\n",
"\" id=\"C0_0_919e3f95db\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"300.7354875\" xlink:href=\"#C0_0_919e3f95db\" y=\"78.0070625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"295.0717875\" xlink:href=\"#C0_0_919e3f95db\" y=\"159.3510625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"292.1143875\" xlink:href=\"#C0_0_919e3f95db\" y=\"207.4630625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"289.1569875\" xlink:href=\"#C0_0_919e3f95db\" y=\"207.4630625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"286.0321875\" xlink:href=\"#C0_0_919e3f95db\" y=\"204.4870625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"282.7399875\" xlink:href=\"#C0_0_919e3f95db\" y=\"201.5110625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"279.3361875\" xlink:href=\"#C0_0_919e3f95db\" y=\"199.5270625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"275.6254875\" xlink:href=\"#C0_0_919e3f95db\" y=\"194.0710625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"271.8868875\" xlink:href=\"#C0_0_919e3f95db\" y=\"193.5750625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"267.7297875\" xlink:href=\"#C0_0_919e3f95db\" y=\"186.1350625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"263.4052875\" xlink:href=\"#C0_0_919e3f95db\" y=\"183.1590625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"258.8017875\" xlink:href=\"#C0_0_919e3f95db\" y=\"178.1990625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"253.7518875\" xlink:href=\"#C0_0_919e3f95db\" y=\"170.2630625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"248.0881875\" xlink:href=\"#C0_0_919e3f95db\" y=\"159.3510625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"241.6711875\" xlink:href=\"#C0_0_919e3f95db\" y=\"145.9590625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"234.0823875\" xlink:href=\"#C0_0_919e3f95db\" y=\"125.1270625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"224.3731875\" xlink:href=\"#C0_0_919e3f95db\" y=\"87.4310625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"211.8460875\" xlink:href=\"#C0_0_919e3f95db\" y=\"37.3350625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"205.8754875\" xlink:href=\"#C0_0_919e3f95db\" y=\"153.8950625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"156.6598875\" xlink:href=\"#C0_0_919e3f95db\" y=\"122.1510625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"148.4572875\" xlink:href=\"#C0_0_919e3f95db\" y=\"114.2150625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"144.2722875\" xlink:href=\"#C0_0_919e3f95db\" y=\"185.6390625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"138.7759875\" xlink:href=\"#C0_0_919e3f95db\" y=\"162.3270625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"129.5131875\" xlink:href=\"#C0_0_919e3f95db\" y=\"95.3670625\"/>\n",
" </g>\n",
" <g clip-path=\"url(#p0aa66a4498)\">\n",
" <use style=\"fill:#0000ff;stroke:#000000;\" x=\"117.2929875\" xlink:href=\"#C0_0_919e3f95db\" y=\"42.7910625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L0 -4\" id=\"m93b0483c22\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"32.1421875\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_2\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L0 4\" id=\"m741efc42ff\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"32.1421875\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_1\">\n",
" <!-- \u22126 -->\n",
" <defs>\n",
" <path d=\"\n",
"M10.5938 35.5\n",
"L73.1875 35.5\n",
"L73.1875 27.2031\n",
"L10.5938 27.2031\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2212\"/>\n",
" <path d=\"\n",
"M33.0156 40.375\n",
"Q26.375 40.375 22.4844 35.8281\n",
"Q18.6094 31.2969 18.6094 23.3906\n",
"Q18.6094 15.5312 22.4844 10.9531\n",
"Q26.375 6.39062 33.0156 6.39062\n",
"Q39.6562 6.39062 43.5312 10.9531\n",
"Q47.4062 15.5312 47.4062 23.3906\n",
"Q47.4062 31.2969 43.5312 35.8281\n",
"Q39.6562 40.375 33.0156 40.375\n",
"M52.5938 71.2969\n",
"L52.5938 62.3125\n",
"Q48.875 64.0625 45.0938 64.9844\n",
"Q41.3125 65.9219 37.5938 65.9219\n",
"Q27.8281 65.9219 22.6719 59.3281\n",
"Q17.5312 52.7344 16.7969 39.4062\n",
"Q19.6719 43.6562 24.0156 45.9219\n",
"Q28.375 48.1875 33.5938 48.1875\n",
"Q44.5781 48.1875 50.9531 41.5156\n",
"Q57.3281 34.8594 57.3281 23.3906\n",
"Q57.3281 12.1562 50.6875 5.35938\n",
"Q44.0469 -1.42188 33.0156 -1.42188\n",
"Q20.3594 -1.42188 13.6719 8.26562\n",
"Q6.98438 17.9688 6.98438 36.375\n",
"Q6.98438 53.6562 15.1875 63.9375\n",
"Q23.3906 74.2188 37.2031 74.2188\n",
"Q40.9219 74.2188 44.7031 73.4844\n",
"Q48.4844 72.75 52.5938 71.2969\" id=\"BitstreamVeraSans-Roman-36\"/>\n",
" </defs>\n",
" <g transform=\"translate(25.615625 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"87.9421875\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_4\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"87.9421875\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_2\">\n",
" <!-- \u22124 -->\n",
" <defs>\n",
" <path d=\"\n",
"M37.7969 64.3125\n",
"L12.8906 25.3906\n",
"L37.7969 25.3906\n",
"z\n",
"\n",
"M35.2031 72.9062\n",
"L47.6094 72.9062\n",
"L47.6094 25.3906\n",
"L58.0156 25.3906\n",
"L58.0156 17.1875\n",
"L47.6094 17.1875\n",
"L47.6094 0\n",
"L37.7969 0\n",
"L37.7969 17.1875\n",
"L4.89062 17.1875\n",
"L4.89062 26.7031\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-34\"/>\n",
" </defs>\n",
" <g transform=\"translate(81.38125 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"143.7421875\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_6\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"143.7421875\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_3\">\n",
" <!-- \u22122 -->\n",
" <defs>\n",
" <path d=\"\n",
"M19.1875 8.29688\n",
"L53.6094 8.29688\n",
"L53.6094 0\n",
"L7.32812 0\n",
"L7.32812 8.29688\n",
"Q12.9375 14.1094 22.625 23.8906\n",
"Q32.3281 33.6875 34.8125 36.5312\n",
"Q39.5469 41.8438 41.4219 45.5312\n",
"Q43.3125 49.2188 43.3125 52.7812\n",
"Q43.3125 58.5938 39.2344 62.25\n",
"Q35.1562 65.9219 28.6094 65.9219\n",
"Q23.9688 65.9219 18.8125 64.3125\n",
"Q13.6719 62.7031 7.8125 59.4219\n",
"L7.8125 69.3906\n",
"Q13.7656 71.7812 18.9375 73\n",
"Q24.125 74.2188 28.4219 74.2188\n",
"Q39.75 74.2188 46.4844 68.5469\n",
"Q53.2188 62.8906 53.2188 53.4219\n",
"Q53.2188 48.9219 51.5312 44.8906\n",
"Q49.8594 40.875 45.4062 35.4062\n",
"Q44.1875 33.9844 37.6406 27.2188\n",
"Q31.1094 20.4531 19.1875 8.29688\" id=\"BitstreamVeraSans-Roman-32\"/>\n",
" </defs>\n",
" <g transform=\"translate(137.4015625 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_7\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"199.5421875\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_8\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"199.5421875\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_4\">\n",
" <!-- 0 -->\n",
" <defs>\n",
" <path d=\"\n",
"M31.7812 66.4062\n",
"Q24.1719 66.4062 20.3281 58.9062\n",
"Q16.5 51.4219 16.5 36.375\n",
"Q16.5 21.3906 20.3281 13.8906\n",
"Q24.1719 6.39062 31.7812 6.39062\n",
"Q39.4531 6.39062 43.2812 13.8906\n",
"Q47.125 21.3906 47.125 36.375\n",
"Q47.125 51.4219 43.2812 58.9062\n",
"Q39.4531 66.4062 31.7812 66.4062\n",
"M31.7812 74.2188\n",
"Q44.0469 74.2188 50.5156 64.5156\n",
"Q56.9844 54.8281 56.9844 36.375\n",
"Q56.9844 17.9688 50.5156 8.26562\n",
"Q44.0469 -1.42188 31.7812 -1.42188\n",
"Q19.5312 -1.42188 13.0625 8.26562\n",
"Q6.59375 17.9688 6.59375 36.375\n",
"Q6.59375 54.8281 13.0625 64.5156\n",
"Q19.5312 74.2188 31.7812 74.2188\" id=\"BitstreamVeraSans-Roman-30\"/>\n",
" </defs>\n",
" <g transform=\"translate(197.02265625 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_9\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"255.3421875\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_10\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"255.3421875\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_5\">\n",
" <!-- 2 -->\n",
" <g transform=\"translate(253.028125 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_11\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"311.1421875\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_12\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"311.1421875\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_6\">\n",
" <!-- 4 -->\n",
" <g transform=\"translate(308.4859375 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_7\">\n",
" <g id=\"line2d_13\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"366.9421875\" xlink:href=\"#m93b0483c22\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_14\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"366.9421875\" xlink:href=\"#m741efc42ff\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_7\">\n",
" <!-- 6 -->\n",
" <g transform=\"translate(364.425 246.8375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_15\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L4 0\" id=\"m728421d6d4\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"32.1421875\" xlink:href=\"#m728421d6d4\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_16\">\n",
" <defs>\n",
" <path d=\"\n",
"M0 0\n",
"L-4 0\" id=\"mcb0005524f\" style=\"stroke:#000000;stroke-width:0.5;\"/>\n",
" </defs>\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"366.9421875\" xlink:href=\"#mcb0005524f\" y=\"235.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_8\">\n",
" <!-- 0.05 -->\n",
" <defs>\n",
" <path d=\"\n",
"M10.6875 12.4062\n",
"L21 12.4062\n",
"L21 0\n",
"L10.6875 0\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2e\"/>\n",
" <path d=\"\n",
"M10.7969 72.9062\n",
"L49.5156 72.9062\n",
"L49.5156 64.5938\n",
"L19.8281 64.5938\n",
"L19.8281 46.7344\n",
"Q21.9688 47.4688 24.1094 47.8281\n",
"Q26.2656 48.1875 28.4219 48.1875\n",
"Q40.625 48.1875 47.75 41.5\n",
"Q54.8906 34.8125 54.8906 23.3906\n",
"Q54.8906 11.625 47.5625 5.09375\n",
"Q40.2344 -1.42188 26.9062 -1.42188\n",
"Q22.3125 -1.42188 17.5469 -0.640625\n",
"Q12.7969 0.140625 7.71875 1.70312\n",
"L7.71875 11.625\n",
"Q12.1094 9.23438 16.7969 8.0625\n",
"Q21.4844 6.89062 26.7031 6.89062\n",
"Q35.1562 6.89062 40.0781 11.3281\n",
"Q45.0156 15.7656 45.0156 23.3906\n",
"Q45.0156 31 40.0781 35.4375\n",
"Q35.1562 39.8906 26.7031 39.8906\n",
"Q22.75 39.8906 18.8125 39.0156\n",
"Q14.8906 38.1406 10.7969 36.2812\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-35\"/>\n",
" </defs>\n",
" <g transform=\"translate(7.409375 237.9984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_17\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"32.1421875\" xlink:href=\"#m728421d6d4\" y=\"210.4390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_18\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"366.9421875\" xlink:href=\"#mcb0005524f\" y=\"210.4390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_9\">\n",
" <!-- 0.10 -->\n",
" <defs>\n",
" <path d=\"\n",
"M12.4062 8.29688\n",
"L28.5156 8.29688\n",
"L28.5156 63.9219\n",
"L10.9844 60.4062\n",
"L10.9844 69.3906\n",
"L28.4219 72.9062\n",
"L38.2812 72.9062\n",
"L38.2812 8.29688\n",
"L54.3906 8.29688\n",
"L54.3906 0\n",
"L12.4062 0\n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-31\"/>\n",
" </defs>\n",
" <g transform=\"translate(7.2 213.1984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_19\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"32.1421875\" xlink:href=\"#m728421d6d4\" y=\"185.6390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_20\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"366.9421875\" xlink:href=\"#mcb0005524f\" y=\"185.6390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_10\">\n",
" <!-- 0.15 -->\n",
" <g transform=\"translate(7.409375 188.3984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_21\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"32.1421875\" xlink:href=\"#m728421d6d4\" y=\"160.8390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_22\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"366.9421875\" xlink:href=\"#mcb0005524f\" y=\"160.8390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_11\">\n",
" <!-- 0.20 -->\n",
" <g transform=\"translate(7.2 163.5984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_23\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"32.1421875\" xlink:href=\"#m728421d6d4\" y=\"136.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_24\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"366.9421875\" xlink:href=\"#mcb0005524f\" y=\"136.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_12\">\n",
" <!-- 0.25 -->\n",
" <g transform=\"translate(7.409375 138.7984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_6\">\n",
" <g id=\"line2d_25\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"32.1421875\" xlink:href=\"#m728421d6d4\" y=\"111.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_26\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"366.9421875\" xlink:href=\"#mcb0005524f\" y=\"111.2390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_13\">\n",
" <!-- 0.30 -->\n",
" <defs>\n",
" <path d=\"\n",
"M40.5781 39.3125\n",
"Q47.6562 37.7969 51.625 33\n",
"Q55.6094 28.2188 55.6094 21.1875\n",
"Q55.6094 10.4062 48.1875 4.48438\n",
"Q40.7656 -1.42188 27.0938 -1.42188\n",
"Q22.5156 -1.42188 17.6562 -0.515625\n",
"Q12.7969 0.390625 7.625 2.20312\n",
"L7.625 11.7188\n",
"Q11.7188 9.32812 16.5938 8.10938\n",
"Q21.4844 6.89062 26.8125 6.89062\n",
"Q36.0781 6.89062 40.9375 10.5469\n",
"Q45.7969 14.2031 45.7969 21.1875\n",
"Q45.7969 27.6406 41.2812 31.2656\n",
"Q36.7656 34.9062 28.7188 34.9062\n",
"L20.2188 34.9062\n",
"L20.2188 43.0156\n",
"L29.1094 43.0156\n",
"Q36.375 43.0156 40.2344 45.9219\n",
"Q44.0938 48.8281 44.0938 54.2969\n",
"Q44.0938 59.9062 40.1094 62.9062\n",
"Q36.1406 65.9219 28.7188 65.9219\n",
"Q24.6562 65.9219 20.0156 65.0312\n",
"Q15.375 64.1562 9.8125 62.3125\n",
"L9.8125 71.0938\n",
"Q15.4375 72.6562 20.3438 73.4375\n",
"Q25.25 74.2188 29.5938 74.2188\n",
"Q40.8281 74.2188 47.3594 69.1094\n",
"Q53.9062 64.0156 53.9062 55.3281\n",
"Q53.9062 49.2656 50.4375 45.0938\n",
"Q46.9688 40.9219 40.5781 39.3125\" id=\"BitstreamVeraSans-Roman-33\"/>\n",
" </defs>\n",
" <g transform=\"translate(7.2 113.9984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_7\">\n",
" <g id=\"line2d_27\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"32.1421875\" xlink:href=\"#m728421d6d4\" y=\"86.4390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_28\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"366.9421875\" xlink:href=\"#mcb0005524f\" y=\"86.4390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_14\">\n",
" <!-- 0.35 -->\n",
" <g transform=\"translate(7.409375 89.1984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_8\">\n",
" <g id=\"line2d_29\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"32.1421875\" xlink:href=\"#m728421d6d4\" y=\"61.6390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_30\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"366.9421875\" xlink:href=\"#mcb0005524f\" y=\"61.6390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_15\">\n",
" <!-- 0.40 -->\n",
" <g transform=\"translate(7.2 64.3984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_9\">\n",
" <g id=\"line2d_31\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"32.1421875\" xlink:href=\"#m728421d6d4\" y=\"36.8390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_32\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"366.9421875\" xlink:href=\"#mcb0005524f\" y=\"36.8390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_16\">\n",
" <!-- 0.45 -->\n",
" <g transform=\"translate(7.409375 39.5984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_10\">\n",
" <g id=\"line2d_33\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"32.1421875\" xlink:href=\"#m728421d6d4\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_34\">\n",
" <g>\n",
" <use style=\"stroke:#000000;stroke-width:0.5;\" x=\"366.9421875\" xlink:href=\"#mcb0005524f\" y=\"12.0390625\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_17\">\n",
" <!-- 0.50 -->\n",
" <g transform=\"translate(7.2 14.7984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"\n",
"M32.1422 12.0391\n",
"L366.942 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"\n",
"M366.942 235.239\n",
"L366.942 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"\n",
"M32.1422 235.239\n",
"L366.942 235.239\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"\n",
"M32.1422 235.239\n",
"L32.1422 12.0391\" style=\"fill:none;stroke:#000000;\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p0aa66a4498\">\n",
" <rect height=\"223.2\" width=\"334.8\" x=\"32.1421875\" y=\"12.0390625\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text": [
"<matplotlib.figure.Figure at 0x10ecce850>"
]
}
],
"prompt_number": 122
}
],
"metadata": {}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment