2019-08-15 11:05:19 -05:00

2062 lines
96 KiB
Plaintext

{
"cells": [
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Requirement already satisfied: pandas in c:\\programdata\\anaconda3\\lib\\site-packages (0.24.2)\n",
"Requirement already satisfied: pytz>=2011k in c:\\programdata\\anaconda3\\lib\\site-packages (from pandas) (2018.9)\n",
"Requirement already satisfied: python-dateutil>=2.5.0 in c:\\programdata\\anaconda3\\lib\\site-packages (from pandas) (2.8.0)\n",
"Requirement already satisfied: numpy>=1.12.0 in c:\\programdata\\anaconda3\\lib\\site-packages (from pandas) (1.16.2)\n",
"Requirement already satisfied: six>=1.5 in c:\\programdata\\anaconda3\\lib\\site-packages (from python-dateutil>=2.5.0->pandas) (1.12.0)\n",
"Requirement already satisfied: xlrd in c:\\programdata\\anaconda3\\lib\\site-packages (1.2.0)\n",
"Requirement already satisfied: sklearn in c:\\programdata\\anaconda3\\lib\\site-packages (0.0)\n",
"Requirement already satisfied: scikit-learn in c:\\programdata\\anaconda3\\lib\\site-packages (from sklearn) (0.21.2)\n",
"Requirement already satisfied: scipy>=0.17.0 in c:\\programdata\\anaconda3\\lib\\site-packages (from scikit-learn->sklearn) (1.2.1)\n",
"Requirement already satisfied: joblib>=0.11 in c:\\programdata\\anaconda3\\lib\\site-packages (from scikit-learn->sklearn) (0.13.2)\n",
"Requirement already satisfied: numpy>=1.11.0 in c:\\programdata\\anaconda3\\lib\\site-packages (from scikit-learn->sklearn) (1.16.2)\n",
"Requirement already satisfied: imblearn in c:\\programdata\\anaconda3\\lib\\site-packages (0.0)\n",
"Requirement already satisfied: imbalanced-learn in c:\\programdata\\anaconda3\\lib\\site-packages (from imblearn) (0.5.0)\n",
"Requirement already satisfied: joblib>=0.11 in c:\\programdata\\anaconda3\\lib\\site-packages (from imbalanced-learn->imblearn) (0.13.2)\n",
"Requirement already satisfied: scipy>=0.17 in c:\\programdata\\anaconda3\\lib\\site-packages (from imbalanced-learn->imblearn) (1.2.1)\n",
"Requirement already satisfied: numpy>=1.11 in c:\\programdata\\anaconda3\\lib\\site-packages (from imbalanced-learn->imblearn) (1.16.2)\n",
"Requirement already satisfied: scikit-learn>=0.21 in c:\\programdata\\anaconda3\\lib\\site-packages (from imbalanced-learn->imblearn) (0.21.2)\n"
]
}
],
"source": [
"!pip install pandas\n",
"!pip install xlrd\n",
"!pip install sklearn\n",
"!pip install imblearn"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import xlrd\n",
"book = xlrd.open_workbook(\"Datasheets info.xlsx\")\n",
"sheetMQ2 = book.sheet_by_name(\"MQ2 - Pololulu\")\n",
"sheetMQ3 = book.sheet_by_name(\"MQ3 - Sparkfun\")\n",
"sheetMQ4 = book.sheet_by_name(\"MQ4 - Sparkfun\")\n",
"sheetMQ5 = book.sheet_by_name(\"MQ5 - Sparkfun\")\n",
"sheetMQ6 = book.sheet_by_name(\"MQ6 - Sparkfun\")\n",
"sheetMQ7 = book.sheet_by_name(\"MQ7 - Sparkfun\")\n",
"sheetMQ8 = book.sheet_by_name(\"MQ8 - Sparkfun\")\n",
"sheetMQ9 = book.sheet_by_name(\"MQ9 - Haoyuelectronics\")\n",
"sheetMQ131 = book.sheet_by_name(\"MQ131- Sensorsportal\")\n",
"sheetMQ135 = book.sheet_by_name(\"MQ135 - HANWEI\")\n",
"sheetMQ303A = book.sheet_by_name(\"MQ303A - HANWEI\")\n",
"sheetMQ309A = book.sheet_by_name(\"MQ309A - HANWEI\")"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0.1 \t \t \t \t \t \t \n",
"0.2 \t \t \t \t \t \t \n",
"0.3 \t \t \t \t \t \t \n",
"0.4 \t \t \t \t \t \t \n",
"0.5 \t \t \t \t \t \t \n",
"0.6 \t \t \t \t \t 200.0 \t 200.0\n",
"0.7 \t \t \t 200.0 \t \t \t 100.0\n",
"0.8 \t 200.0 \t \t \t 200.0 \t 100.0 \t \n",
"0.9 \t \t \t 100.0 \t \t \t \n",
"1.0 \t 100.0 \t 200.0 \t \t 100.0 \t 10.0 \t 10.0\n",
"2.0 \t 10.0 \t \t 10.0 \t \t \t \n",
"3.0 \t \t 10.0 \t \t 10.0 \t \t \n",
"4.0 \t \t \t \t \t \t \n",
"5.0 \t \t \t \t \t \t \n",
"6.0 \t \t \t \t \t \t \n",
"7.0 \t \t \t \t \t \t \n",
"8.0 \t \t \t \t \t \t \n",
"9.0 \t \t \t \t \t \t \n",
"10.0 \t \t \t \t \t \t \n"
]
}
],
"source": [
"for row_index in range(1,20): #reading first columns\n",
" RsR0, CO2, CO, Alcohol, NH4, Tolueno, Acetona = sheetMQ135.row_values(row_index, start_colx=0, end_colx=7)\n",
" print(RsR0, \"\t\", CO2, \"\t\", CO, \"\t\", Alcohol, \"\t\", NH4, \"\t\", Tolueno, \"\t\", Acetona)\n",
" "
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {},
"outputs": [],
"source": [
"x_MQ135 = sheetMQ135.col_values(0)[2:]\n",
"MQ135_CO2 = sheetMQ135.col_values(1)[2:]\n",
"MQ135_CO = sheetMQ135.col_values(2)[2:]\n",
"MQ135_Alcohol = sheetMQ135.col_values(3)[2:]\n",
"MQ135_NH4 = sheetMQ135.col_values(4)[2:]\n",
"MQ135_Tolueno = sheetMQ135.col_values(5)[2:]\n",
"MQ135_Acetona = sheetMQ135.col_values(6)[2:]"
]
},
{
"cell_type": "code",
"execution_count": 33,
"metadata": {},
"outputs": [],
"source": [
"def zero_to_nan(values):\n",
" \"\"\"Replace every 0 with 'nan' and return a copy.\"\"\"\n",
" return [float('nan') if x==0 else x for x in values]"
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {},
"outputs": [],
"source": [
"MQ135_CO2 =zero_to_nan(MQ135_CO2)\n",
"MQ135_CO =zero_to_nan(MQ135_CO)\n",
"MQ135_Alcohol =zero_to_nan(MQ135_Alcohol)\n",
"MQ135_NH4 =zero_to_nan(MQ135_NH4)\n",
"MQ135_Tolueno =zero_to_nan(MQ135_Tolueno)\n",
"MQ135_Acetona =zero_to_nan(MQ135_Acetona)"
]
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {
"scrolled": false
},
"outputs": [],
"source": [
"import pandas as pd\n",
"import numpy as np\n",
"from sklearn.datasets import load_iris\n",
"#from sklearn.cross_validation import train_test_split\n",
"from sklearn.tree import DecisionTreeClassifier\n",
"from sklearn import datasets\n",
"from sklearn import linear_model\n",
"\n",
"dataCO2 = {'RsRo': x_MQ135, 'CO2': MQ135_CO2}\n",
"dataCO = {'RsRo': x_MQ135, 'CO': MQ135_CO}\n",
"dataAlcohol = {'RsRo': x_MQ135, 'Alcohol': MQ135_Alcohol}\n",
"dataNH4 = {'RsRo': x_MQ135, 'NH4': MQ135_NH4}\n",
"dataTolueno = {'RsRo': x_MQ135, 'Tolueno': MQ135_Tolueno}\n",
"dataAcetona = {'RsRo': x_MQ135, 'Acetona': MQ135_Acetona}\n",
"\n",
"dfMQ135_CO2 = pd.DataFrame(dataCO2)\n",
"dfMQ135_CO = pd.DataFrame(dataCO)\n",
"dfMQ135_Alcohol = pd.DataFrame(dataAlcohol)\n",
"dfMQ135_NH4 = pd.DataFrame(dataNH4)\n",
"dfMQ135_Tolueno = pd.DataFrame(dataTolueno)\n",
"dfMQ135_Acetona = pd.DataFrame(dataAcetona)\n",
"\n",
"dfMQ135_CO2['CO2'] = pd.to_numeric(dfMQ135_CO2['CO2'])\n",
"dfMQ135_CO['CO'] = pd.to_numeric(dfMQ135_CO['CO'])\n",
"dfMQ135_Alcohol['Alcohol'] = pd.to_numeric(dfMQ135_Alcohol['Alcohol'])\n",
"dfMQ135_NH4['NH4'] = pd.to_numeric(dfMQ135_NH4['NH4'])\n",
"dfMQ135_Tolueno['Tolueno'] = pd.to_numeric(dfMQ135_Tolueno['Tolueno'])\n",
"dfMQ135_Acetona['Acetona'] = pd.to_numeric(dfMQ135_Acetona['Acetona'])\n",
"\n",
"dfMQ135_CO2['CO2'] = dfMQ135_CO2['CO2'].replace('',None, regex=True)\n",
"dfMQ135_CO['CO'] = dfMQ135_CO['CO'].replace('',None, regex=True)\n",
"dfMQ135_Alcohol['Alcohol'] = dfMQ135_Alcohol['Alcohol'].replace('',None, regex=True)\n",
"dfMQ135_NH4['NH4'] = dfMQ135_NH4['NH4'].replace('',None, regex=True)\n",
"dfMQ135_Tolueno['Tolueno'] = dfMQ135_Tolueno['Tolueno'].replace('',None, regex=True)\n",
"dfMQ135_Acetona['Acetona'] = dfMQ135_Acetona['Acetona'].replace('',None, regex=True)\n",
"\n",
"#Global X_Predict variable\n",
"X_Predict = dfMQ135_CO2.RsRo.apply(lambda x: [x]).tolist()"
]
},
{
"cell_type": "code",
"execution_count": 36,
"metadata": {},
"outputs": [],
"source": [
"#Model and train CO2\n",
"dataset2TrainCO2 = dfMQ135_CO2.copy()\n",
"dataset2TrainCO2.dropna(inplace=True)\n",
"X_trainCO2 = dataset2TrainCO2.RsRo.apply(lambda x: [x]).tolist()\n",
"y_trainCO2 = dataset2TrainCO2['CO2'].tolist()\n",
"model = linear_model.Lasso(alpha=0.1)\n",
"model.fit(X_trainCO2, y_trainCO2)\n",
"#Predict\n",
"CO2_Predicted = model.predict(X_Predict)\n",
"#save into MQ2\n",
"MQ135_CO2 = CO2_Predicted"
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {},
"outputs": [],
"source": [
"#Model and train CO\n",
"dataset2TrainCO = dfMQ135_CO.copy()\n",
"dataset2TrainCO.dropna(inplace=True)\n",
"X_trainCO = dataset2TrainCO.RsRo.apply(lambda x: [x]).tolist()\n",
"y_trainCO = dataset2TrainCO['CO'].tolist()\n",
"model = linear_model.Lasso(alpha=0.1)\n",
"model.fit(X_trainCO, y_trainCO)\n",
"#Predict\n",
"CO_Predicted = model.predict(X_Predict)\n",
"#save into MQ2\n",
"MQ135_CO = CO_Predicted"
]
},
{
"cell_type": "code",
"execution_count": 38,
"metadata": {},
"outputs": [],
"source": [
"#Model and train Alcohol\n",
"dataset2TrainAlcohol = dfMQ135_Alcohol.copy()\n",
"dataset2TrainAlcohol.dropna(inplace=True)\n",
"X_trainAlcohol = dataset2TrainAlcohol.RsRo.apply(lambda x: [x]).tolist()\n",
"y_trainAlcohol = dataset2TrainAlcohol['Alcohol'].tolist()\n",
"model = linear_model.Lasso(alpha=0.1)\n",
"model.fit(X_trainAlcohol, y_trainAlcohol)\n",
"#Predict\n",
"Alcohol_Predicted = model.predict(X_Predict)\n",
"#save into MQ2\n",
"MQ135_Alcohol = Alcohol_Predicted"
]
},
{
"cell_type": "code",
"execution_count": 39,
"metadata": {},
"outputs": [],
"source": [
"#Model and train NH4\n",
"dataset2TrainNH4 = dfMQ135_NH4.copy()\n",
"dataset2TrainNH4.dropna(inplace=True)\n",
"X_trainNH4 = dataset2TrainNH4.RsRo.apply(lambda x: [x]).tolist()\n",
"y_trainNH4 = dataset2TrainNH4['NH4'].tolist()\n",
"model = linear_model.Lasso(alpha=0.1)\n",
"model.fit(X_trainNH4, y_trainNH4)\n",
"#Predict\n",
"NH4_Predicted = model.predict(X_Predict)\n",
"#save into MQ2\n",
"MQ135_NH4 = NH4_Predicted"
]
},
{
"cell_type": "code",
"execution_count": 41,
"metadata": {},
"outputs": [],
"source": [
"#Model and train Tolueno\n",
"dataset2TrainTolueno = dfMQ135_Tolueno.copy()\n",
"dataset2TrainTolueno.dropna(inplace=True)\n",
"X_trainTolueno = dataset2TrainTolueno.RsRo.apply(lambda x: [x]).tolist()\n",
"y_trainTolueno = dataset2TrainTolueno['Tolueno'].tolist()\n",
"model = linear_model.Lasso(alpha=0.1)\n",
"model.fit(X_trainTolueno, y_trainTolueno)\n",
"#Predict\n",
"Tolueno_Predicted = model.predict(X_Predict)\n",
"#save into MQ2\n",
"MQ135_Tolueno = Tolueno_Predicted"
]
},
{
"cell_type": "code",
"execution_count": 44,
"metadata": {},
"outputs": [],
"source": [
"#Model and train Acetona\n",
"dataset2TrainAcetona = dfMQ135_Acetona.copy()\n",
"dataset2TrainAcetona.dropna(inplace=True)\n",
"X_trainAcetona = dataset2TrainAcetona.RsRo.apply(lambda x: [x]).tolist()\n",
"y_trainAcetona = dataset2TrainAcetona['Acetona'].tolist()\n",
"model = linear_model.Lasso(alpha=0.1)\n",
"model.fit(X_trainAcetona, y_trainAcetona)\n",
"#Predict\n",
"Acetona_Predicted = model.predict(X_Predict)\n",
"#save into MQ2\n",
"MQ135_Acetona = Acetona_Predicted"
]
},
{
"cell_type": "code",
"execution_count": 45,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\r\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\r\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\r\n",
"<!-- Created with matplotlib (https://matplotlib.org/) -->\r\n",
"<svg height=\"383.33625pt\" version=\"1.1\" viewBox=\"0 0 558.378125 383.33625\" width=\"558.378125pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\r\n",
" <defs>\r\n",
" <style type=\"text/css\">\r\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\r\n",
" </style>\r\n",
" </defs>\r\n",
" <g id=\"figure_1\">\r\n",
" <g id=\"patch_1\">\r\n",
" <path d=\"M 0 383.33625 \r\n",
"L 558.378125 383.33625 \r\n",
"L 558.378125 0 \r\n",
"L 0 0 \r\n",
"z\r\n",
"\" style=\"fill:none;\"/>\r\n",
" </g>\r\n",
" <g id=\"axes_1\">\r\n",
" <g id=\"patch_2\">\r\n",
" <path d=\"M 45.478125 345.78 \r\n",
"L 547.678125 345.78 \r\n",
"L 547.678125 46.8 \r\n",
"L 45.478125 46.8 \r\n",
"z\r\n",
"\" style=\"fill:#ffffff;\"/>\r\n",
" </g>\r\n",
" <g id=\"matplotlib.axis_1\">\r\n",
" <g id=\"xtick_1\">\r\n",
" <g id=\"line2d_1\">\r\n",
" <defs>\r\n",
" <path d=\"M 0 0 \r\n",
"L 0 3.5 \r\n",
"\" id=\"m941a033c69\" style=\"stroke:#000000;stroke-width:0.8;\"/>\r\n",
" </defs>\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"187.986384\" xlink:href=\"#m941a033c69\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_1\">\r\n",
" <!-- $\\mathdefault{10^{1}}$ -->\r\n",
" <defs>\r\n",
" <path d=\"M 12.40625 8.296875 \r\n",
"L 28.515625 8.296875 \r\n",
"L 28.515625 63.921875 \r\n",
"L 10.984375 60.40625 \r\n",
"L 10.984375 69.390625 \r\n",
"L 28.421875 72.90625 \r\n",
"L 38.28125 72.90625 \r\n",
"L 38.28125 8.296875 \r\n",
"L 54.390625 8.296875 \r\n",
"L 54.390625 0 \r\n",
"L 12.40625 0 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-49\"/>\r\n",
" <path d=\"M 31.78125 66.40625 \r\n",
"Q 24.171875 66.40625 20.328125 58.90625 \r\n",
"Q 16.5 51.421875 16.5 36.375 \r\n",
"Q 16.5 21.390625 20.328125 13.890625 \r\n",
"Q 24.171875 6.390625 31.78125 6.390625 \r\n",
"Q 39.453125 6.390625 43.28125 13.890625 \r\n",
"Q 47.125 21.390625 47.125 36.375 \r\n",
"Q 47.125 51.421875 43.28125 58.90625 \r\n",
"Q 39.453125 66.40625 31.78125 66.40625 \r\n",
"z\r\n",
"M 31.78125 74.21875 \r\n",
"Q 44.046875 74.21875 50.515625 64.515625 \r\n",
"Q 56.984375 54.828125 56.984375 36.375 \r\n",
"Q 56.984375 17.96875 50.515625 8.265625 \r\n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \r\n",
"Q 19.53125 -1.421875 13.0625 8.265625 \r\n",
"Q 6.59375 17.96875 6.59375 36.375 \r\n",
"Q 6.59375 54.828125 13.0625 64.515625 \r\n",
"Q 19.53125 74.21875 31.78125 74.21875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-48\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(179.186384 360.378437)scale(0.1 -0.1)\">\r\n",
" <use transform=\"translate(0 0.684375)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" <use transform=\"translate(63.623047 0.684375)\" xlink:href=\"#DejaVuSans-48\"/>\r\n",
" <use transform=\"translate(128.203125 38.965625)scale(0.7)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_2\">\r\n",
" <g id=\"line2d_2\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"400.293998\" xlink:href=\"#m941a033c69\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_2\">\r\n",
" <!-- $\\mathdefault{10^{2}}$ -->\r\n",
" <defs>\r\n",
" <path d=\"M 19.1875 8.296875 \r\n",
"L 53.609375 8.296875 \r\n",
"L 53.609375 0 \r\n",
"L 7.328125 0 \r\n",
"L 7.328125 8.296875 \r\n",
"Q 12.9375 14.109375 22.625 23.890625 \r\n",
"Q 32.328125 33.6875 34.8125 36.53125 \r\n",
"Q 39.546875 41.84375 41.421875 45.53125 \r\n",
"Q 43.3125 49.21875 43.3125 52.78125 \r\n",
"Q 43.3125 58.59375 39.234375 62.25 \r\n",
"Q 35.15625 65.921875 28.609375 65.921875 \r\n",
"Q 23.96875 65.921875 18.8125 64.3125 \r\n",
"Q 13.671875 62.703125 7.8125 59.421875 \r\n",
"L 7.8125 69.390625 \r\n",
"Q 13.765625 71.78125 18.9375 73 \r\n",
"Q 24.125 74.21875 28.421875 74.21875 \r\n",
"Q 39.75 74.21875 46.484375 68.546875 \r\n",
"Q 53.21875 62.890625 53.21875 53.421875 \r\n",
"Q 53.21875 48.921875 51.53125 44.890625 \r\n",
"Q 49.859375 40.875 45.40625 35.40625 \r\n",
"Q 44.1875 33.984375 37.640625 27.21875 \r\n",
"Q 31.109375 20.453125 19.1875 8.296875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-50\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(391.493998 360.378437)scale(0.1 -0.1)\">\r\n",
" <use transform=\"translate(0 0.765625)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" <use transform=\"translate(63.623047 0.765625)\" xlink:href=\"#DejaVuSans-48\"/>\r\n",
" <use transform=\"translate(128.203125 39.046875)scale(0.7)\" xlink:href=\"#DejaVuSans-50\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_3\">\r\n",
" <g id=\"line2d_3\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 76.975245 345.78 \r\n",
"L 76.975245 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_4\">\r\n",
" <defs>\r\n",
" <path d=\"M 0 0 \r\n",
"L 0 2 \r\n",
"\" id=\"m1f00cad25d\" style=\"stroke:#000000;stroke-width:0.6;\"/>\r\n",
" </defs>\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"76.975245\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_4\">\r\n",
" <g id=\"line2d_5\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 103.50069 345.78 \r\n",
"L 103.50069 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_6\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"103.50069\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_5\">\r\n",
" <g id=\"line2d_7\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 124.075424 345.78 \r\n",
"L 124.075424 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_8\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"124.075424\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_6\">\r\n",
" <g id=\"line2d_9\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 140.886205 345.78 \r\n",
"L 140.886205 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_10\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"140.886205\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_7\">\r\n",
" <g id=\"line2d_11\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 155.099519 345.78 \r\n",
"L 155.099519 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_12\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"155.099519\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_8\">\r\n",
" <g id=\"line2d_13\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 167.41165 345.78 \r\n",
"L 167.41165 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_14\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"167.41165\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_9\">\r\n",
" <g id=\"line2d_15\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 178.27172 345.78 \r\n",
"L 178.27172 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_16\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"178.27172\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_10\">\r\n",
" <g id=\"line2d_17\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 251.897344 345.78 \r\n",
"L 251.897344 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_18\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"251.897344\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_11\">\r\n",
" <g id=\"line2d_19\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 289.282859 345.78 \r\n",
"L 289.282859 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_20\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"289.282859\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_12\">\r\n",
" <g id=\"line2d_21\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 315.808304 345.78 \r\n",
"L 315.808304 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_22\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"315.808304\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_13\">\r\n",
" <g id=\"line2d_23\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 336.383038 345.78 \r\n",
"L 336.383038 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_24\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"336.383038\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_14\">\r\n",
" <g id=\"line2d_25\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 353.193819 345.78 \r\n",
"L 353.193819 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_26\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"353.193819\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_15\">\r\n",
" <g id=\"line2d_27\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 367.407132 345.78 \r\n",
"L 367.407132 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_28\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"367.407132\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_16\">\r\n",
" <g id=\"line2d_29\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 379.719264 345.78 \r\n",
"L 379.719264 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_30\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"379.719264\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_17\">\r\n",
" <g id=\"line2d_31\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 390.579334 345.78 \r\n",
"L 390.579334 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_32\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"390.579334\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_18\">\r\n",
" <g id=\"line2d_33\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 464.204958 345.78 \r\n",
"L 464.204958 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_34\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"464.204958\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_19\">\r\n",
" <g id=\"line2d_35\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 501.590473 345.78 \r\n",
"L 501.590473 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_36\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"501.590473\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_20\">\r\n",
" <g id=\"line2d_37\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 528.115918 345.78 \r\n",
"L 528.115918 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_38\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"528.115918\" xlink:href=\"#m1f00cad25d\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_3\">\r\n",
" <!-- PPM Concentration -->\r\n",
" <defs>\r\n",
" <path d=\"M 19.671875 64.796875 \r\n",
"L 19.671875 37.40625 \r\n",
"L 32.078125 37.40625 \r\n",
"Q 38.96875 37.40625 42.71875 40.96875 \r\n",
"Q 46.484375 44.53125 46.484375 51.125 \r\n",
"Q 46.484375 57.671875 42.71875 61.234375 \r\n",
"Q 38.96875 64.796875 32.078125 64.796875 \r\n",
"z\r\n",
"M 9.8125 72.90625 \r\n",
"L 32.078125 72.90625 \r\n",
"Q 44.34375 72.90625 50.609375 67.359375 \r\n",
"Q 56.890625 61.8125 56.890625 51.125 \r\n",
"Q 56.890625 40.328125 50.609375 34.8125 \r\n",
"Q 44.34375 29.296875 32.078125 29.296875 \r\n",
"L 19.671875 29.296875 \r\n",
"L 19.671875 0 \r\n",
"L 9.8125 0 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-80\"/>\r\n",
" <path d=\"M 9.8125 72.90625 \r\n",
"L 24.515625 72.90625 \r\n",
"L 43.109375 23.296875 \r\n",
"L 61.8125 72.90625 \r\n",
"L 76.515625 72.90625 \r\n",
"L 76.515625 0 \r\n",
"L 66.890625 0 \r\n",
"L 66.890625 64.015625 \r\n",
"L 48.09375 14.015625 \r\n",
"L 38.1875 14.015625 \r\n",
"L 19.390625 64.015625 \r\n",
"L 19.390625 0 \r\n",
"L 9.8125 0 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-77\"/>\r\n",
" <path id=\"DejaVuSans-32\"/>\r\n",
" <path d=\"M 64.40625 67.28125 \r\n",
"L 64.40625 56.890625 \r\n",
"Q 59.421875 61.53125 53.78125 63.8125 \r\n",
"Q 48.140625 66.109375 41.796875 66.109375 \r\n",
"Q 29.296875 66.109375 22.65625 58.46875 \r\n",
"Q 16.015625 50.828125 16.015625 36.375 \r\n",
"Q 16.015625 21.96875 22.65625 14.328125 \r\n",
"Q 29.296875 6.6875 41.796875 6.6875 \r\n",
"Q 48.140625 6.6875 53.78125 8.984375 \r\n",
"Q 59.421875 11.28125 64.40625 15.921875 \r\n",
"L 64.40625 5.609375 \r\n",
"Q 59.234375 2.09375 53.4375 0.328125 \r\n",
"Q 47.65625 -1.421875 41.21875 -1.421875 \r\n",
"Q 24.65625 -1.421875 15.125 8.703125 \r\n",
"Q 5.609375 18.84375 5.609375 36.375 \r\n",
"Q 5.609375 53.953125 15.125 64.078125 \r\n",
"Q 24.65625 74.21875 41.21875 74.21875 \r\n",
"Q 47.75 74.21875 53.53125 72.484375 \r\n",
"Q 59.328125 70.75 64.40625 67.28125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-67\"/>\r\n",
" <path d=\"M 30.609375 48.390625 \r\n",
"Q 23.390625 48.390625 19.1875 42.75 \r\n",
"Q 14.984375 37.109375 14.984375 27.296875 \r\n",
"Q 14.984375 17.484375 19.15625 11.84375 \r\n",
"Q 23.34375 6.203125 30.609375 6.203125 \r\n",
"Q 37.796875 6.203125 41.984375 11.859375 \r\n",
"Q 46.1875 17.53125 46.1875 27.296875 \r\n",
"Q 46.1875 37.015625 41.984375 42.703125 \r\n",
"Q 37.796875 48.390625 30.609375 48.390625 \r\n",
"z\r\n",
"M 30.609375 56 \r\n",
"Q 42.328125 56 49.015625 48.375 \r\n",
"Q 55.71875 40.765625 55.71875 27.296875 \r\n",
"Q 55.71875 13.875 49.015625 6.21875 \r\n",
"Q 42.328125 -1.421875 30.609375 -1.421875 \r\n",
"Q 18.84375 -1.421875 12.171875 6.21875 \r\n",
"Q 5.515625 13.875 5.515625 27.296875 \r\n",
"Q 5.515625 40.765625 12.171875 48.375 \r\n",
"Q 18.84375 56 30.609375 56 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-111\"/>\r\n",
" <path d=\"M 54.890625 33.015625 \r\n",
"L 54.890625 0 \r\n",
"L 45.90625 0 \r\n",
"L 45.90625 32.71875 \r\n",
"Q 45.90625 40.484375 42.875 44.328125 \r\n",
"Q 39.84375 48.1875 33.796875 48.1875 \r\n",
"Q 26.515625 48.1875 22.3125 43.546875 \r\n",
"Q 18.109375 38.921875 18.109375 30.90625 \r\n",
"L 18.109375 0 \r\n",
"L 9.078125 0 \r\n",
"L 9.078125 54.6875 \r\n",
"L 18.109375 54.6875 \r\n",
"L 18.109375 46.1875 \r\n",
"Q 21.34375 51.125 25.703125 53.5625 \r\n",
"Q 30.078125 56 35.796875 56 \r\n",
"Q 45.21875 56 50.046875 50.171875 \r\n",
"Q 54.890625 44.34375 54.890625 33.015625 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-110\"/>\r\n",
" <path d=\"M 48.78125 52.59375 \r\n",
"L 48.78125 44.1875 \r\n",
"Q 44.96875 46.296875 41.140625 47.34375 \r\n",
"Q 37.3125 48.390625 33.40625 48.390625 \r\n",
"Q 24.65625 48.390625 19.8125 42.84375 \r\n",
"Q 14.984375 37.3125 14.984375 27.296875 \r\n",
"Q 14.984375 17.28125 19.8125 11.734375 \r\n",
"Q 24.65625 6.203125 33.40625 6.203125 \r\n",
"Q 37.3125 6.203125 41.140625 7.25 \r\n",
"Q 44.96875 8.296875 48.78125 10.40625 \r\n",
"L 48.78125 2.09375 \r\n",
"Q 45.015625 0.34375 40.984375 -0.53125 \r\n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \r\n",
"Q 20.0625 -1.421875 12.78125 6.34375 \r\n",
"Q 5.515625 14.109375 5.515625 27.296875 \r\n",
"Q 5.515625 40.671875 12.859375 48.328125 \r\n",
"Q 20.21875 56 33.015625 56 \r\n",
"Q 37.15625 56 41.109375 55.140625 \r\n",
"Q 45.0625 54.296875 48.78125 52.59375 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-99\"/>\r\n",
" <path d=\"M 56.203125 29.59375 \r\n",
"L 56.203125 25.203125 \r\n",
"L 14.890625 25.203125 \r\n",
"Q 15.484375 15.921875 20.484375 11.0625 \r\n",
"Q 25.484375 6.203125 34.421875 6.203125 \r\n",
"Q 39.59375 6.203125 44.453125 7.46875 \r\n",
"Q 49.3125 8.734375 54.109375 11.28125 \r\n",
"L 54.109375 2.78125 \r\n",
"Q 49.265625 0.734375 44.1875 -0.34375 \r\n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \r\n",
"Q 20.796875 -1.421875 13.15625 6.1875 \r\n",
"Q 5.515625 13.8125 5.515625 26.8125 \r\n",
"Q 5.515625 40.234375 12.765625 48.109375 \r\n",
"Q 20.015625 56 32.328125 56 \r\n",
"Q 43.359375 56 49.78125 48.890625 \r\n",
"Q 56.203125 41.796875 56.203125 29.59375 \r\n",
"z\r\n",
"M 47.21875 32.234375 \r\n",
"Q 47.125 39.59375 43.09375 43.984375 \r\n",
"Q 39.0625 48.390625 32.421875 48.390625 \r\n",
"Q 24.90625 48.390625 20.390625 44.140625 \r\n",
"Q 15.875 39.890625 15.1875 32.171875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-101\"/>\r\n",
" <path d=\"M 18.3125 70.21875 \r\n",
"L 18.3125 54.6875 \r\n",
"L 36.8125 54.6875 \r\n",
"L 36.8125 47.703125 \r\n",
"L 18.3125 47.703125 \r\n",
"L 18.3125 18.015625 \r\n",
"Q 18.3125 11.328125 20.140625 9.421875 \r\n",
"Q 21.96875 7.515625 27.59375 7.515625 \r\n",
"L 36.8125 7.515625 \r\n",
"L 36.8125 0 \r\n",
"L 27.59375 0 \r\n",
"Q 17.1875 0 13.234375 3.875 \r\n",
"Q 9.28125 7.765625 9.28125 18.015625 \r\n",
"L 9.28125 47.703125 \r\n",
"L 2.6875 47.703125 \r\n",
"L 2.6875 54.6875 \r\n",
"L 9.28125 54.6875 \r\n",
"L 9.28125 70.21875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-116\"/>\r\n",
" <path d=\"M 41.109375 46.296875 \r\n",
"Q 39.59375 47.171875 37.8125 47.578125 \r\n",
"Q 36.03125 48 33.890625 48 \r\n",
"Q 26.265625 48 22.1875 43.046875 \r\n",
"Q 18.109375 38.09375 18.109375 28.8125 \r\n",
"L 18.109375 0 \r\n",
"L 9.078125 0 \r\n",
"L 9.078125 54.6875 \r\n",
"L 18.109375 54.6875 \r\n",
"L 18.109375 46.1875 \r\n",
"Q 20.953125 51.171875 25.484375 53.578125 \r\n",
"Q 30.03125 56 36.53125 56 \r\n",
"Q 37.453125 56 38.578125 55.875 \r\n",
"Q 39.703125 55.765625 41.0625 55.515625 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-114\"/>\r\n",
" <path d=\"M 34.28125 27.484375 \r\n",
"Q 23.390625 27.484375 19.1875 25 \r\n",
"Q 14.984375 22.515625 14.984375 16.5 \r\n",
"Q 14.984375 11.71875 18.140625 8.90625 \r\n",
"Q 21.296875 6.109375 26.703125 6.109375 \r\n",
"Q 34.1875 6.109375 38.703125 11.40625 \r\n",
"Q 43.21875 16.703125 43.21875 25.484375 \r\n",
"L 43.21875 27.484375 \r\n",
"z\r\n",
"M 52.203125 31.203125 \r\n",
"L 52.203125 0 \r\n",
"L 43.21875 0 \r\n",
"L 43.21875 8.296875 \r\n",
"Q 40.140625 3.328125 35.546875 0.953125 \r\n",
"Q 30.953125 -1.421875 24.3125 -1.421875 \r\n",
"Q 15.921875 -1.421875 10.953125 3.296875 \r\n",
"Q 6 8.015625 6 15.921875 \r\n",
"Q 6 25.140625 12.171875 29.828125 \r\n",
"Q 18.359375 34.515625 30.609375 34.515625 \r\n",
"L 43.21875 34.515625 \r\n",
"L 43.21875 35.40625 \r\n",
"Q 43.21875 41.609375 39.140625 45 \r\n",
"Q 35.0625 48.390625 27.6875 48.390625 \r\n",
"Q 23 48.390625 18.546875 47.265625 \r\n",
"Q 14.109375 46.140625 10.015625 43.890625 \r\n",
"L 10.015625 52.203125 \r\n",
"Q 14.9375 54.109375 19.578125 55.046875 \r\n",
"Q 24.21875 56 28.609375 56 \r\n",
"Q 40.484375 56 46.34375 49.84375 \r\n",
"Q 52.203125 43.703125 52.203125 31.203125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-97\"/>\r\n",
" <path d=\"M 9.421875 54.6875 \r\n",
"L 18.40625 54.6875 \r\n",
"L 18.40625 0 \r\n",
"L 9.421875 0 \r\n",
"z\r\n",
"M 9.421875 75.984375 \r\n",
"L 18.40625 75.984375 \r\n",
"L 18.40625 64.59375 \r\n",
"L 9.421875 64.59375 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-105\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(249.274219 374.056562)scale(0.1 -0.1)\">\r\n",
" <use xlink:href=\"#DejaVuSans-80\"/>\r\n",
" <use x=\"60.302734\" xlink:href=\"#DejaVuSans-80\"/>\r\n",
" <use x=\"120.605469\" xlink:href=\"#DejaVuSans-77\"/>\r\n",
" <use x=\"206.884766\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"238.671875\" xlink:href=\"#DejaVuSans-67\"/>\r\n",
" <use x=\"308.496094\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" <use x=\"369.677734\" xlink:href=\"#DejaVuSans-110\"/>\r\n",
" <use x=\"433.056641\" xlink:href=\"#DejaVuSans-99\"/>\r\n",
" <use x=\"488.037109\" xlink:href=\"#DejaVuSans-101\"/>\r\n",
" <use x=\"549.560547\" xlink:href=\"#DejaVuSans-110\"/>\r\n",
" <use x=\"612.939453\" xlink:href=\"#DejaVuSans-116\"/>\r\n",
" <use x=\"652.148438\" xlink:href=\"#DejaVuSans-114\"/>\r\n",
" <use x=\"693.261719\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
" <use x=\"754.541016\" xlink:href=\"#DejaVuSans-116\"/>\r\n",
" <use x=\"793.75\" xlink:href=\"#DejaVuSans-105\"/>\r\n",
" <use x=\"821.533203\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" <use x=\"882.714844\" xlink:href=\"#DejaVuSans-110\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"matplotlib.axis_2\">\r\n",
" <g id=\"ytick_1\">\r\n",
" <g id=\"line2d_39\">\r\n",
" <defs>\r\n",
" <path d=\"M 0 0 \r\n",
"L -3.5 0 \r\n",
"\" id=\"m74d0114920\" style=\"stroke:#000000;stroke-width:0.8;\"/>\r\n",
" </defs>\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"45.478125\" xlink:href=\"#m74d0114920\" y=\"220.369281\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_4\">\r\n",
" <!-- $\\mathdefault{10^{0}}$ -->\r\n",
" <g transform=\"translate(20.878125 224.1685)scale(0.1 -0.1)\">\r\n",
" <use transform=\"translate(0 0.765625)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" <use transform=\"translate(63.623047 0.765625)\" xlink:href=\"#DejaVuSans-48\"/>\r\n",
" <use transform=\"translate(128.203125 39.046875)scale(0.7)\" xlink:href=\"#DejaVuSans-48\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_2\">\r\n",
" <g id=\"line2d_40\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"45.478125\" xlink:href=\"#m74d0114920\" y=\"60.39\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_5\">\r\n",
" <!-- $\\mathdefault{10^{1}}$ -->\r\n",
" <g transform=\"translate(20.878125 64.189219)scale(0.1 -0.1)\">\r\n",
" <use transform=\"translate(0 0.684375)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" <use transform=\"translate(63.623047 0.684375)\" xlink:href=\"#DejaVuSans-48\"/>\r\n",
" <use transform=\"translate(128.203125 38.965625)scale(0.7)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_3\">\r\n",
" <g id=\"line2d_41\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 45.478125 332.19 \r\n",
"L 547.678125 332.19 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_42\">\r\n",
" <defs>\r\n",
" <path d=\"M 0 0 \r\n",
"L -2 0 \r\n",
"\" id=\"mb139828a4a\" style=\"stroke:#000000;stroke-width:0.6;\"/>\r\n",
" </defs>\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"45.478125\" xlink:href=\"#mb139828a4a\" y=\"332.19\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_4\">\r\n",
" <g id=\"line2d_43\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 45.478125 304.019047 \r\n",
"L 547.678125 304.019047 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_44\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"45.478125\" xlink:href=\"#mb139828a4a\" y=\"304.019047\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_5\">\r\n",
" <g id=\"line2d_45\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 45.478125 284.031438 \r\n",
"L 547.678125 284.031438 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_46\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"45.478125\" xlink:href=\"#mb139828a4a\" y=\"284.031438\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_6\">\r\n",
" <g id=\"line2d_47\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 45.478125 268.527843 \r\n",
"L 547.678125 268.527843 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_48\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"45.478125\" xlink:href=\"#mb139828a4a\" y=\"268.527843\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_7\">\r\n",
" <g id=\"line2d_49\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 45.478125 255.860485 \r\n",
"L 547.678125 255.860485 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_50\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"45.478125\" xlink:href=\"#mb139828a4a\" y=\"255.860485\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_8\">\r\n",
" <g id=\"line2d_51\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 45.478125 245.150385 \r\n",
"L 547.678125 245.150385 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_52\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"45.478125\" xlink:href=\"#mb139828a4a\" y=\"245.150385\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_9\">\r\n",
" <g id=\"line2d_53\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 45.478125 235.872875 \r\n",
"L 547.678125 235.872875 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_54\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"45.478125\" xlink:href=\"#mb139828a4a\" y=\"235.872875\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_10\">\r\n",
" <g id=\"line2d_55\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 45.478125 227.689532 \r\n",
"L 547.678125 227.689532 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_56\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"45.478125\" xlink:href=\"#mb139828a4a\" y=\"227.689532\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_11\">\r\n",
" <g id=\"line2d_57\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 45.478125 172.210719 \r\n",
"L 547.678125 172.210719 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_58\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"45.478125\" xlink:href=\"#mb139828a4a\" y=\"172.210719\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_12\">\r\n",
" <g id=\"line2d_59\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 45.478125 144.039766 \r\n",
"L 547.678125 144.039766 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_60\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"45.478125\" xlink:href=\"#mb139828a4a\" y=\"144.039766\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_13\">\r\n",
" <g id=\"line2d_61\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 45.478125 124.052157 \r\n",
"L 547.678125 124.052157 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_62\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"45.478125\" xlink:href=\"#mb139828a4a\" y=\"124.052157\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_14\">\r\n",
" <g id=\"line2d_63\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 45.478125 108.548562 \r\n",
"L 547.678125 108.548562 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_64\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"45.478125\" xlink:href=\"#mb139828a4a\" y=\"108.548562\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_15\">\r\n",
" <g id=\"line2d_65\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 45.478125 95.881203 \r\n",
"L 547.678125 95.881203 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_66\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"45.478125\" xlink:href=\"#mb139828a4a\" y=\"95.881203\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_16\">\r\n",
" <g id=\"line2d_67\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 45.478125 85.171104 \r\n",
"L 547.678125 85.171104 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_68\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"45.478125\" xlink:href=\"#mb139828a4a\" y=\"85.171104\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_17\">\r\n",
" <g id=\"line2d_69\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 45.478125 75.893594 \r\n",
"L 547.678125 75.893594 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_70\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"45.478125\" xlink:href=\"#mb139828a4a\" y=\"75.893594\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_18\">\r\n",
" <g id=\"line2d_71\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 45.478125 67.71025 \r\n",
"L 547.678125 67.71025 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_72\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"45.478125\" xlink:href=\"#mb139828a4a\" y=\"67.71025\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_6\">\r\n",
" <!-- Rs/Ro -->\r\n",
" <defs>\r\n",
" <path d=\"M 44.390625 34.1875 \r\n",
"Q 47.5625 33.109375 50.5625 29.59375 \r\n",
"Q 53.5625 26.078125 56.59375 19.921875 \r\n",
"L 66.609375 0 \r\n",
"L 56 0 \r\n",
"L 46.6875 18.703125 \r\n",
"Q 43.0625 26.03125 39.671875 28.421875 \r\n",
"Q 36.28125 30.8125 30.421875 30.8125 \r\n",
"L 19.671875 30.8125 \r\n",
"L 19.671875 0 \r\n",
"L 9.8125 0 \r\n",
"L 9.8125 72.90625 \r\n",
"L 32.078125 72.90625 \r\n",
"Q 44.578125 72.90625 50.734375 67.671875 \r\n",
"Q 56.890625 62.453125 56.890625 51.90625 \r\n",
"Q 56.890625 45.015625 53.6875 40.46875 \r\n",
"Q 50.484375 35.9375 44.390625 34.1875 \r\n",
"z\r\n",
"M 19.671875 64.796875 \r\n",
"L 19.671875 38.921875 \r\n",
"L 32.078125 38.921875 \r\n",
"Q 39.203125 38.921875 42.84375 42.21875 \r\n",
"Q 46.484375 45.515625 46.484375 51.90625 \r\n",
"Q 46.484375 58.296875 42.84375 61.546875 \r\n",
"Q 39.203125 64.796875 32.078125 64.796875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-82\"/>\r\n",
" <path d=\"M 44.28125 53.078125 \r\n",
"L 44.28125 44.578125 \r\n",
"Q 40.484375 46.53125 36.375 47.5 \r\n",
"Q 32.28125 48.484375 27.875 48.484375 \r\n",
"Q 21.1875 48.484375 17.84375 46.4375 \r\n",
"Q 14.5 44.390625 14.5 40.28125 \r\n",
"Q 14.5 37.15625 16.890625 35.375 \r\n",
"Q 19.28125 33.59375 26.515625 31.984375 \r\n",
"L 29.59375 31.296875 \r\n",
"Q 39.15625 29.25 43.1875 25.515625 \r\n",
"Q 47.21875 21.78125 47.21875 15.09375 \r\n",
"Q 47.21875 7.46875 41.1875 3.015625 \r\n",
"Q 35.15625 -1.421875 24.609375 -1.421875 \r\n",
"Q 20.21875 -1.421875 15.453125 -0.5625 \r\n",
"Q 10.6875 0.296875 5.421875 2 \r\n",
"L 5.421875 11.28125 \r\n",
"Q 10.40625 8.6875 15.234375 7.390625 \r\n",
"Q 20.0625 6.109375 24.8125 6.109375 \r\n",
"Q 31.15625 6.109375 34.5625 8.28125 \r\n",
"Q 37.984375 10.453125 37.984375 14.40625 \r\n",
"Q 37.984375 18.0625 35.515625 20.015625 \r\n",
"Q 33.0625 21.96875 24.703125 23.78125 \r\n",
"L 21.578125 24.515625 \r\n",
"Q 13.234375 26.265625 9.515625 29.90625 \r\n",
"Q 5.8125 33.546875 5.8125 39.890625 \r\n",
"Q 5.8125 47.609375 11.28125 51.796875 \r\n",
"Q 16.75 56 26.8125 56 \r\n",
"Q 31.78125 56 36.171875 55.265625 \r\n",
"Q 40.578125 54.546875 44.28125 53.078125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-115\"/>\r\n",
" <path d=\"M 25.390625 72.90625 \r\n",
"L 33.6875 72.90625 \r\n",
"L 8.296875 -9.28125 \r\n",
"L 0 -9.28125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-47\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(14.798438 210.58375)rotate(-90)scale(0.1 -0.1)\">\r\n",
" <use xlink:href=\"#DejaVuSans-82\"/>\r\n",
" <use x=\"69.482422\" xlink:href=\"#DejaVuSans-115\"/>\r\n",
" <use x=\"121.582031\" xlink:href=\"#DejaVuSans-47\"/>\r\n",
" <use x=\"155.273438\" xlink:href=\"#DejaVuSans-82\"/>\r\n",
" <use x=\"224.693359\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_73\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 484.158947 332.19 \r\n",
"L 478.968469 304.019047 \r\n",
"L 473.46828 284.031438 \r\n",
"L 467.619061 268.527843 \r\n",
"L 461.373496 255.860485 \r\n",
"L 454.673941 245.150385 \r\n",
"L 447.449185 235.872875 \r\n",
"L 439.609826 227.689532 \r\n",
"L 431.041491 220.369281 \r\n",
"L 95.139279 172.210719 \r\n",
"L -1 172.197969 \r\n",
"\" style=\"fill:none;stroke:#1f77b4;stroke-linecap:square;\"/>\r\n",
" <defs>\r\n",
" <path d=\"M 0 3 \r\n",
"C 0.795609 3 1.55874 2.683901 2.12132 2.12132 \r\n",
"C 2.683901 1.55874 3 0.795609 3 0 \r\n",
"C 3 -0.795609 2.683901 -1.55874 2.12132 -2.12132 \r\n",
"C 1.55874 -2.683901 0.795609 -3 0 -3 \r\n",
"C -0.795609 -3 -1.55874 -2.683901 -2.12132 -2.12132 \r\n",
"C -2.683901 -1.55874 -3 -0.795609 -3 0 \r\n",
"C -3 0.795609 -2.683901 1.55874 -2.12132 2.12132 \r\n",
"C -1.55874 2.683901 -0.795609 3 0 3 \r\n",
"z\r\n",
"\" id=\"m23caf46cd0\" style=\"stroke:#1f77b4;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#p1a69472f64)\">\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"484.158947\" xlink:href=\"#m23caf46cd0\" y=\"332.19\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"478.968469\" xlink:href=\"#m23caf46cd0\" y=\"304.019047\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"473.46828\" xlink:href=\"#m23caf46cd0\" y=\"284.031438\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"467.619061\" xlink:href=\"#m23caf46cd0\" y=\"268.527843\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"461.373496\" xlink:href=\"#m23caf46cd0\" y=\"255.860485\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"454.673941\" xlink:href=\"#m23caf46cd0\" y=\"245.150385\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"447.449185\" xlink:href=\"#m23caf46cd0\" y=\"235.872875\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"439.609826\" xlink:href=\"#m23caf46cd0\" y=\"227.689532\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"431.041491\" xlink:href=\"#m23caf46cd0\" y=\"220.369281\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"95.139279\" xlink:href=\"#m23caf46cd0\" y=\"172.210719\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"-1\" xlink:href=\"#m23caf46cd0\" y=\"172.197969\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_74\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 493.8422 332.19 \r\n",
"L 490.613922 304.019047 \r\n",
"L 487.2685 284.031438 \r\n",
"L 483.797112 268.527843 \r\n",
"L 480.189899 255.860485 \r\n",
"L 476.435799 245.150385 \r\n",
"L 472.522339 235.872875 \r\n",
"L 468.435387 227.689532 \r\n",
"L 464.158844 220.369281 \r\n",
"L 404.792647 172.210719 \r\n",
"L 188.903845 144.039766 \r\n",
"L -1 144.021905 \r\n",
"\" style=\"fill:none;stroke:#ff7f0e;stroke-linecap:square;\"/>\r\n",
" <defs>\r\n",
" <path d=\"M 0 3 \r\n",
"C 0.795609 3 1.55874 2.683901 2.12132 2.12132 \r\n",
"C 2.683901 1.55874 3 0.795609 3 0 \r\n",
"C 3 -0.795609 2.683901 -1.55874 2.12132 -2.12132 \r\n",
"C 1.55874 -2.683901 0.795609 -3 0 -3 \r\n",
"C -0.795609 -3 -1.55874 -2.683901 -2.12132 -2.12132 \r\n",
"C -2.683901 -1.55874 -3 -0.795609 -3 0 \r\n",
"C -3 0.795609 -2.683901 1.55874 -2.12132 2.12132 \r\n",
"C -1.55874 2.683901 -0.795609 3 0 3 \r\n",
"z\r\n",
"\" id=\"m5d84c5973c\" style=\"stroke:#ff7f0e;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#p1a69472f64)\">\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"493.8422\" xlink:href=\"#m5d84c5973c\" y=\"332.19\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"490.613922\" xlink:href=\"#m5d84c5973c\" y=\"304.019047\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"487.2685\" xlink:href=\"#m5d84c5973c\" y=\"284.031438\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"483.797112\" xlink:href=\"#m5d84c5973c\" y=\"268.527843\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"480.189899\" xlink:href=\"#m5d84c5973c\" y=\"255.860485\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"476.435799\" xlink:href=\"#m5d84c5973c\" y=\"245.150385\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"472.522339\" xlink:href=\"#m5d84c5973c\" y=\"235.872875\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"468.435387\" xlink:href=\"#m5d84c5973c\" y=\"227.689532\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"464.158844\" xlink:href=\"#m5d84c5973c\" y=\"220.369281\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"404.792647\" xlink:href=\"#m5d84c5973c\" y=\"172.210719\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"188.903845\" xlink:href=\"#m5d84c5973c\" y=\"144.039766\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"-1\" xlink:href=\"#m5d84c5973c\" y=\"144.021905\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_75\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 476.09076 332.19 \r\n",
"L 470.915506 304.019047 \r\n",
"L 465.432411 284.031438 \r\n",
"L 459.60252 268.527843 \r\n",
"L 453.378988 255.860485 \r\n",
"L 446.70478 245.150385 \r\n",
"L 439.509494 235.872875 \r\n",
"L 431.704824 227.689532 \r\n",
"L 423.177917 220.369281 \r\n",
"L 103.186537 172.210719 \r\n",
"L -1 172.196903 \r\n",
"\" style=\"fill:none;stroke:#2ca02c;stroke-linecap:square;\"/>\r\n",
" <defs>\r\n",
" <path d=\"M 0 3 \r\n",
"C 0.795609 3 1.55874 2.683901 2.12132 2.12132 \r\n",
"C 2.683901 1.55874 3 0.795609 3 0 \r\n",
"C 3 -0.795609 2.683901 -1.55874 2.12132 -2.12132 \r\n",
"C 1.55874 -2.683901 0.795609 -3 0 -3 \r\n",
"C -0.795609 -3 -1.55874 -2.683901 -2.12132 -2.12132 \r\n",
"C -2.683901 -1.55874 -3 -0.795609 -3 0 \r\n",
"C -3 0.795609 -2.683901 1.55874 -2.12132 2.12132 \r\n",
"C -1.55874 2.683901 -0.795609 3 0 3 \r\n",
"z\r\n",
"\" id=\"m6c48325186\" style=\"stroke:#2ca02c;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#p1a69472f64)\">\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"476.09076\" xlink:href=\"#m6c48325186\" y=\"332.19\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"470.915506\" xlink:href=\"#m6c48325186\" y=\"304.019047\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"465.432411\" xlink:href=\"#m6c48325186\" y=\"284.031438\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"459.60252\" xlink:href=\"#m6c48325186\" y=\"268.527843\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"453.378988\" xlink:href=\"#m6c48325186\" y=\"255.860485\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"446.70478\" xlink:href=\"#m6c48325186\" y=\"245.150385\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"439.509494\" xlink:href=\"#m6c48325186\" y=\"235.872875\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"431.704824\" xlink:href=\"#m6c48325186\" y=\"227.689532\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"423.177917\" xlink:href=\"#m6c48325186\" y=\"220.369281\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"103.186537\" xlink:href=\"#m6c48325186\" y=\"172.210719\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"-1\" xlink:href=\"#m6c48325186\" y=\"172.196903\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_76\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 464.492128 332.19 \r\n",
"L 461.241687 304.019047 \r\n",
"L 457.872458 284.031438 \r\n",
"L 454.375429 268.527843 \r\n",
"L 450.740522 255.860485 \r\n",
"L 446.956416 245.150385 \r\n",
"L 443.010337 235.872875 \r\n",
"L 438.887796 227.689532 \r\n",
"L 434.57227 220.369281 \r\n",
"L 374.425205 172.210719 \r\n",
"L 141.541483 144.039766 \r\n",
"L -1 144.026357 \r\n",
"\" style=\"fill:none;stroke:#d62728;stroke-linecap:square;\"/>\r\n",
" <defs>\r\n",
" <path d=\"M 0 3 \r\n",
"C 0.795609 3 1.55874 2.683901 2.12132 2.12132 \r\n",
"C 2.683901 1.55874 3 0.795609 3 0 \r\n",
"C 3 -0.795609 2.683901 -1.55874 2.12132 -2.12132 \r\n",
"C 1.55874 -2.683901 0.795609 -3 0 -3 \r\n",
"C -0.795609 -3 -1.55874 -2.683901 -2.12132 -2.12132 \r\n",
"C -2.683901 -1.55874 -3 -0.795609 -3 0 \r\n",
"C -3 0.795609 -2.683901 1.55874 -2.12132 2.12132 \r\n",
"C -1.55874 2.683901 -0.795609 3 0 3 \r\n",
"z\r\n",
"\" id=\"m036f968789\" style=\"stroke:#d62728;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#p1a69472f64)\">\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"464.492128\" xlink:href=\"#m036f968789\" y=\"332.19\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"461.241687\" xlink:href=\"#m036f968789\" y=\"304.019047\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"457.872458\" xlink:href=\"#m036f968789\" y=\"284.031438\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"454.375429\" xlink:href=\"#m036f968789\" y=\"268.527843\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"450.740522\" xlink:href=\"#m036f968789\" y=\"255.860485\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"446.956416\" xlink:href=\"#m036f968789\" y=\"245.150385\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"443.010337\" xlink:href=\"#m036f968789\" y=\"235.872875\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"438.887796\" xlink:href=\"#m036f968789\" y=\"227.689532\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"434.57227\" xlink:href=\"#m036f968789\" y=\"220.369281\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"374.425205\" xlink:href=\"#m036f968789\" y=\"172.210719\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"141.541483\" xlink:href=\"#m036f968789\" y=\"144.039766\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"-1\" xlink:href=\"#m036f968789\" y=\"144.026357\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_77\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 524.850852 332.19 \r\n",
"L 512.848097 304.019047 \r\n",
"L 499.045677 284.031438 \r\n",
"L 482.807088 268.527843 \r\n",
"L 463.08404 255.860485 \r\n",
"L 437.960818 245.150385 \r\n",
"L 403.317351 235.872875 \r\n",
"L 347.174783 227.689532 \r\n",
"L 179.121533 220.369281 \r\n",
"L -1 220.328463 \r\n",
"\" style=\"fill:none;stroke:#9467bd;stroke-linecap:square;\"/>\r\n",
" <defs>\r\n",
" <path d=\"M 0 3 \r\n",
"C 0.795609 3 1.55874 2.683901 2.12132 2.12132 \r\n",
"C 2.683901 1.55874 3 0.795609 3 0 \r\n",
"C 3 -0.795609 2.683901 -1.55874 2.12132 -2.12132 \r\n",
"C 1.55874 -2.683901 0.795609 -3 0 -3 \r\n",
"C -0.795609 -3 -1.55874 -2.683901 -2.12132 -2.12132 \r\n",
"C -2.683901 -1.55874 -3 -0.795609 -3 0 \r\n",
"C -3 0.795609 -2.683901 1.55874 -2.12132 2.12132 \r\n",
"C -1.55874 2.683901 -0.795609 3 0 3 \r\n",
"z\r\n",
"\" id=\"mf68696d7ec\" style=\"stroke:#9467bd;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#p1a69472f64)\">\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"524.850852\" xlink:href=\"#mf68696d7ec\" y=\"332.19\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"512.848097\" xlink:href=\"#mf68696d7ec\" y=\"304.019047\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"499.045677\" xlink:href=\"#mf68696d7ec\" y=\"284.031438\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"482.807088\" xlink:href=\"#mf68696d7ec\" y=\"268.527843\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"463.08404\" xlink:href=\"#mf68696d7ec\" y=\"255.860485\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"437.960818\" xlink:href=\"#mf68696d7ec\" y=\"245.150385\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"403.317351\" xlink:href=\"#mf68696d7ec\" y=\"235.872875\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"347.174783\" xlink:href=\"#mf68696d7ec\" y=\"227.689532\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"179.121533\" xlink:href=\"#mf68696d7ec\" y=\"220.369281\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"-1\" xlink:href=\"#mf68696d7ec\" y=\"220.328463\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_78\">\r\n",
" <path clip-path=\"url(#p1a69472f64)\" d=\"M 515.183634 332.19 \r\n",
"L 502.974908 304.019047 \r\n",
"L 488.89929 284.031438 \r\n",
"L 472.280936 268.527843 \r\n",
"L 451.994093 255.860485 \r\n",
"L 425.946478 245.150385 \r\n",
"L 389.509256 235.872875 \r\n",
"L 328.386026 227.689532 \r\n",
"L 68.305398 220.369281 \r\n",
"L -1 220.353567 \r\n",
"\" style=\"fill:none;stroke:#8c564b;stroke-linecap:square;\"/>\r\n",
" <defs>\r\n",
" <path d=\"M 0 3 \r\n",
"C 0.795609 3 1.55874 2.683901 2.12132 2.12132 \r\n",
"C 2.683901 1.55874 3 0.795609 3 0 \r\n",
"C 3 -0.795609 2.683901 -1.55874 2.12132 -2.12132 \r\n",
"C 1.55874 -2.683901 0.795609 -3 0 -3 \r\n",
"C -0.795609 -3 -1.55874 -2.683901 -2.12132 -2.12132 \r\n",
"C -2.683901 -1.55874 -3 -0.795609 -3 0 \r\n",
"C -3 0.795609 -2.683901 1.55874 -2.12132 2.12132 \r\n",
"C -1.55874 2.683901 -0.795609 3 0 3 \r\n",
"z\r\n",
"\" id=\"mbc6d40a4f5\" style=\"stroke:#8c564b;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#p1a69472f64)\">\r\n",
" <use style=\"fill:#8c564b;stroke:#8c564b;\" x=\"515.183634\" xlink:href=\"#mbc6d40a4f5\" y=\"332.19\"/>\r\n",
" <use style=\"fill:#8c564b;stroke:#8c564b;\" x=\"502.974908\" xlink:href=\"#mbc6d40a4f5\" y=\"304.019047\"/>\r\n",
" <use style=\"fill:#8c564b;stroke:#8c564b;\" x=\"488.89929\" xlink:href=\"#mbc6d40a4f5\" y=\"284.031438\"/>\r\n",
" <use style=\"fill:#8c564b;stroke:#8c564b;\" x=\"472.280936\" xlink:href=\"#mbc6d40a4f5\" y=\"268.527843\"/>\r\n",
" <use style=\"fill:#8c564b;stroke:#8c564b;\" x=\"451.994093\" xlink:href=\"#mbc6d40a4f5\" y=\"255.860485\"/>\r\n",
" <use style=\"fill:#8c564b;stroke:#8c564b;\" x=\"425.946478\" xlink:href=\"#mbc6d40a4f5\" y=\"245.150385\"/>\r\n",
" <use style=\"fill:#8c564b;stroke:#8c564b;\" x=\"389.509256\" xlink:href=\"#mbc6d40a4f5\" y=\"235.872875\"/>\r\n",
" <use style=\"fill:#8c564b;stroke:#8c564b;\" x=\"328.386026\" xlink:href=\"#mbc6d40a4f5\" y=\"227.689532\"/>\r\n",
" <use style=\"fill:#8c564b;stroke:#8c564b;\" x=\"68.305398\" xlink:href=\"#mbc6d40a4f5\" y=\"220.369281\"/>\r\n",
" <use style=\"fill:#8c564b;stroke:#8c564b;\" x=\"-1\" xlink:href=\"#mbc6d40a4f5\" y=\"220.353567\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"patch_3\">\r\n",
" <path d=\"M 45.478125 345.78 \r\n",
"L 45.478125 46.8 \r\n",
"\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_4\">\r\n",
" <path d=\"M 547.678125 345.78 \r\n",
"L 547.678125 46.8 \r\n",
"\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_5\">\r\n",
" <path d=\"M 45.478125 345.78 \r\n",
"L 547.678125 345.78 \r\n",
"\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_6\">\r\n",
" <path d=\"M 45.478125 46.8 \r\n",
"L 547.678125 46.8 \r\n",
"\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"legend_1\">\r\n",
" <g id=\"patch_7\">\r\n",
" <path d=\"M 467.682813 142.86875 \r\n",
"L 540.678125 142.86875 \r\n",
"Q 542.678125 142.86875 542.678125 140.86875 \r\n",
"L 542.678125 53.8 \r\n",
"Q 542.678125 51.8 540.678125 51.8 \r\n",
"L 467.682813 51.8 \r\n",
"Q 465.682813 51.8 465.682813 53.8 \r\n",
"L 465.682813 140.86875 \r\n",
"Q 465.682813 142.86875 467.682813 142.86875 \r\n",
"z\r\n",
"\" style=\"fill:#ffffff;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_79\">\r\n",
" <path d=\"M 469.682813 59.898437 \r\n",
"L 489.682813 59.898437 \r\n",
"\" style=\"fill:none;stroke:#1f77b4;stroke-linecap:square;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_80\">\r\n",
" <g>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"479.682813\" xlink:href=\"#m23caf46cd0\" y=\"59.898437\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_7\">\r\n",
" <!-- CO2 -->\r\n",
" <defs>\r\n",
" <path d=\"M 39.40625 66.21875 \r\n",
"Q 28.65625 66.21875 22.328125 58.203125 \r\n",
"Q 16.015625 50.203125 16.015625 36.375 \r\n",
"Q 16.015625 22.609375 22.328125 14.59375 \r\n",
"Q 28.65625 6.59375 39.40625 6.59375 \r\n",
"Q 50.140625 6.59375 56.421875 14.59375 \r\n",
"Q 62.703125 22.609375 62.703125 36.375 \r\n",
"Q 62.703125 50.203125 56.421875 58.203125 \r\n",
"Q 50.140625 66.21875 39.40625 66.21875 \r\n",
"z\r\n",
"M 39.40625 74.21875 \r\n",
"Q 54.734375 74.21875 63.90625 63.9375 \r\n",
"Q 73.09375 53.65625 73.09375 36.375 \r\n",
"Q 73.09375 19.140625 63.90625 8.859375 \r\n",
"Q 54.734375 -1.421875 39.40625 -1.421875 \r\n",
"Q 24.03125 -1.421875 14.8125 8.828125 \r\n",
"Q 5.609375 19.09375 5.609375 36.375 \r\n",
"Q 5.609375 53.65625 14.8125 63.9375 \r\n",
"Q 24.03125 74.21875 39.40625 74.21875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-79\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(497.682813 63.398437)scale(0.1 -0.1)\">\r\n",
" <use xlink:href=\"#DejaVuSans-67\"/>\r\n",
" <use x=\"69.824219\" xlink:href=\"#DejaVuSans-79\"/>\r\n",
" <use x=\"148.535156\" xlink:href=\"#DejaVuSans-50\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_81\">\r\n",
" <path d=\"M 469.682813 74.576562 \r\n",
"L 489.682813 74.576562 \r\n",
"\" style=\"fill:none;stroke:#ff7f0e;stroke-linecap:square;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_82\">\r\n",
" <g>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"479.682813\" xlink:href=\"#m5d84c5973c\" y=\"74.576562\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_8\">\r\n",
" <!-- CO -->\r\n",
" <g transform=\"translate(497.682813 78.076562)scale(0.1 -0.1)\">\r\n",
" <use xlink:href=\"#DejaVuSans-67\"/>\r\n",
" <use x=\"69.824219\" xlink:href=\"#DejaVuSans-79\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_83\">\r\n",
" <path d=\"M 469.682813 89.254687 \r\n",
"L 489.682813 89.254687 \r\n",
"\" style=\"fill:none;stroke:#2ca02c;stroke-linecap:square;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_84\">\r\n",
" <g>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"479.682813\" xlink:href=\"#m6c48325186\" y=\"89.254687\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_9\">\r\n",
" <!-- Alcohol -->\r\n",
" <defs>\r\n",
" <path d=\"M 34.1875 63.1875 \r\n",
"L 20.796875 26.90625 \r\n",
"L 47.609375 26.90625 \r\n",
"z\r\n",
"M 28.609375 72.90625 \r\n",
"L 39.796875 72.90625 \r\n",
"L 67.578125 0 \r\n",
"L 57.328125 0 \r\n",
"L 50.6875 18.703125 \r\n",
"L 17.828125 18.703125 \r\n",
"L 11.1875 0 \r\n",
"L 0.78125 0 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-65\"/>\r\n",
" <path d=\"M 9.421875 75.984375 \r\n",
"L 18.40625 75.984375 \r\n",
"L 18.40625 0 \r\n",
"L 9.421875 0 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-108\"/>\r\n",
" <path d=\"M 54.890625 33.015625 \r\n",
"L 54.890625 0 \r\n",
"L 45.90625 0 \r\n",
"L 45.90625 32.71875 \r\n",
"Q 45.90625 40.484375 42.875 44.328125 \r\n",
"Q 39.84375 48.1875 33.796875 48.1875 \r\n",
"Q 26.515625 48.1875 22.3125 43.546875 \r\n",
"Q 18.109375 38.921875 18.109375 30.90625 \r\n",
"L 18.109375 0 \r\n",
"L 9.078125 0 \r\n",
"L 9.078125 75.984375 \r\n",
"L 18.109375 75.984375 \r\n",
"L 18.109375 46.1875 \r\n",
"Q 21.34375 51.125 25.703125 53.5625 \r\n",
"Q 30.078125 56 35.796875 56 \r\n",
"Q 45.21875 56 50.046875 50.171875 \r\n",
"Q 54.890625 44.34375 54.890625 33.015625 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-104\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(497.682813 92.754687)scale(0.1 -0.1)\">\r\n",
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n",
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-108\"/>\r\n",
" <use x=\"96.191406\" xlink:href=\"#DejaVuSans-99\"/>\r\n",
" <use x=\"151.171875\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" <use x=\"212.353516\" xlink:href=\"#DejaVuSans-104\"/>\r\n",
" <use x=\"275.732422\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" <use x=\"336.914062\" xlink:href=\"#DejaVuSans-108\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_85\">\r\n",
" <path d=\"M 469.682813 103.932812 \r\n",
"L 489.682813 103.932812 \r\n",
"\" style=\"fill:none;stroke:#d62728;stroke-linecap:square;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_86\">\r\n",
" <g>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"479.682813\" xlink:href=\"#m036f968789\" y=\"103.932812\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_10\">\r\n",
" <!-- NH4 -->\r\n",
" <defs>\r\n",
" <path d=\"M 9.8125 72.90625 \r\n",
"L 23.09375 72.90625 \r\n",
"L 55.421875 11.921875 \r\n",
"L 55.421875 72.90625 \r\n",
"L 64.984375 72.90625 \r\n",
"L 64.984375 0 \r\n",
"L 51.703125 0 \r\n",
"L 19.390625 60.984375 \r\n",
"L 19.390625 0 \r\n",
"L 9.8125 0 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-78\"/>\r\n",
" <path d=\"M 9.8125 72.90625 \r\n",
"L 19.671875 72.90625 \r\n",
"L 19.671875 43.015625 \r\n",
"L 55.515625 43.015625 \r\n",
"L 55.515625 72.90625 \r\n",
"L 65.375 72.90625 \r\n",
"L 65.375 0 \r\n",
"L 55.515625 0 \r\n",
"L 55.515625 34.71875 \r\n",
"L 19.671875 34.71875 \r\n",
"L 19.671875 0 \r\n",
"L 9.8125 0 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-72\"/>\r\n",
" <path d=\"M 37.796875 64.3125 \r\n",
"L 12.890625 25.390625 \r\n",
"L 37.796875 25.390625 \r\n",
"z\r\n",
"M 35.203125 72.90625 \r\n",
"L 47.609375 72.90625 \r\n",
"L 47.609375 25.390625 \r\n",
"L 58.015625 25.390625 \r\n",
"L 58.015625 17.1875 \r\n",
"L 47.609375 17.1875 \r\n",
"L 47.609375 0 \r\n",
"L 37.796875 0 \r\n",
"L 37.796875 17.1875 \r\n",
"L 4.890625 17.1875 \r\n",
"L 4.890625 26.703125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-52\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(497.682813 107.432812)scale(0.1 -0.1)\">\r\n",
" <use xlink:href=\"#DejaVuSans-78\"/>\r\n",
" <use x=\"74.804688\" xlink:href=\"#DejaVuSans-72\"/>\r\n",
" <use x=\"150\" xlink:href=\"#DejaVuSans-52\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_87\">\r\n",
" <path d=\"M 469.682813 118.610937 \r\n",
"L 489.682813 118.610937 \r\n",
"\" style=\"fill:none;stroke:#9467bd;stroke-linecap:square;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_88\">\r\n",
" <g>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"479.682813\" xlink:href=\"#mf68696d7ec\" y=\"118.610937\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_11\">\r\n",
" <!-- Tolueno -->\r\n",
" <defs>\r\n",
" <path d=\"M -0.296875 72.90625 \r\n",
"L 61.375 72.90625 \r\n",
"L 61.375 64.59375 \r\n",
"L 35.5 64.59375 \r\n",
"L 35.5 0 \r\n",
"L 25.59375 0 \r\n",
"L 25.59375 64.59375 \r\n",
"L -0.296875 64.59375 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-84\"/>\r\n",
" <path d=\"M 8.5 21.578125 \r\n",
"L 8.5 54.6875 \r\n",
"L 17.484375 54.6875 \r\n",
"L 17.484375 21.921875 \r\n",
"Q 17.484375 14.15625 20.5 10.265625 \r\n",
"Q 23.53125 6.390625 29.59375 6.390625 \r\n",
"Q 36.859375 6.390625 41.078125 11.03125 \r\n",
"Q 45.3125 15.671875 45.3125 23.6875 \r\n",
"L 45.3125 54.6875 \r\n",
"L 54.296875 54.6875 \r\n",
"L 54.296875 0 \r\n",
"L 45.3125 0 \r\n",
"L 45.3125 8.40625 \r\n",
"Q 42.046875 3.421875 37.71875 1 \r\n",
"Q 33.40625 -1.421875 27.6875 -1.421875 \r\n",
"Q 18.265625 -1.421875 13.375 4.4375 \r\n",
"Q 8.5 10.296875 8.5 21.578125 \r\n",
"z\r\n",
"M 31.109375 56 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-117\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(497.682813 122.110937)scale(0.1 -0.1)\">\r\n",
" <use xlink:href=\"#DejaVuSans-84\"/>\r\n",
" <use x=\"60.818359\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" <use x=\"122\" xlink:href=\"#DejaVuSans-108\"/>\r\n",
" <use x=\"149.783203\" xlink:href=\"#DejaVuSans-117\"/>\r\n",
" <use x=\"213.162109\" xlink:href=\"#DejaVuSans-101\"/>\r\n",
" <use x=\"274.685547\" xlink:href=\"#DejaVuSans-110\"/>\r\n",
" <use x=\"338.064453\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_89\">\r\n",
" <path d=\"M 469.682813 133.289062 \r\n",
"L 489.682813 133.289062 \r\n",
"\" style=\"fill:none;stroke:#8c564b;stroke-linecap:square;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_90\">\r\n",
" <g>\r\n",
" <use style=\"fill:#8c564b;stroke:#8c564b;\" x=\"479.682813\" xlink:href=\"#mbc6d40a4f5\" y=\"133.289062\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_12\">\r\n",
" <!-- Acetona -->\r\n",
" <g transform=\"translate(497.682813 136.789062)scale(0.1 -0.1)\">\r\n",
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n",
" <use x=\"68.392578\" xlink:href=\"#DejaVuSans-99\"/>\r\n",
" <use x=\"123.373047\" xlink:href=\"#DejaVuSans-101\"/>\r\n",
" <use x=\"184.896484\" xlink:href=\"#DejaVuSans-116\"/>\r\n",
" <use x=\"224.105469\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" <use x=\"285.287109\" xlink:href=\"#DejaVuSans-110\"/>\r\n",
" <use x=\"348.666016\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_13\">\r\n",
" <!-- Calibration plot for MQ-135 data -->\r\n",
" <defs>\r\n",
" <path d=\"M 48.6875 27.296875 \r\n",
"Q 48.6875 37.203125 44.609375 42.84375 \r\n",
"Q 40.53125 48.484375 33.40625 48.484375 \r\n",
"Q 26.265625 48.484375 22.1875 42.84375 \r\n",
"Q 18.109375 37.203125 18.109375 27.296875 \r\n",
"Q 18.109375 17.390625 22.1875 11.75 \r\n",
"Q 26.265625 6.109375 33.40625 6.109375 \r\n",
"Q 40.53125 6.109375 44.609375 11.75 \r\n",
"Q 48.6875 17.390625 48.6875 27.296875 \r\n",
"z\r\n",
"M 18.109375 46.390625 \r\n",
"Q 20.953125 51.265625 25.265625 53.625 \r\n",
"Q 29.59375 56 35.59375 56 \r\n",
"Q 45.5625 56 51.78125 48.09375 \r\n",
"Q 58.015625 40.1875 58.015625 27.296875 \r\n",
"Q 58.015625 14.40625 51.78125 6.484375 \r\n",
"Q 45.5625 -1.421875 35.59375 -1.421875 \r\n",
"Q 29.59375 -1.421875 25.265625 0.953125 \r\n",
"Q 20.953125 3.328125 18.109375 8.203125 \r\n",
"L 18.109375 0 \r\n",
"L 9.078125 0 \r\n",
"L 9.078125 75.984375 \r\n",
"L 18.109375 75.984375 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-98\"/>\r\n",
" <path d=\"M 18.109375 8.203125 \r\n",
"L 18.109375 -20.796875 \r\n",
"L 9.078125 -20.796875 \r\n",
"L 9.078125 54.6875 \r\n",
"L 18.109375 54.6875 \r\n",
"L 18.109375 46.390625 \r\n",
"Q 20.953125 51.265625 25.265625 53.625 \r\n",
"Q 29.59375 56 35.59375 56 \r\n",
"Q 45.5625 56 51.78125 48.09375 \r\n",
"Q 58.015625 40.1875 58.015625 27.296875 \r\n",
"Q 58.015625 14.40625 51.78125 6.484375 \r\n",
"Q 45.5625 -1.421875 35.59375 -1.421875 \r\n",
"Q 29.59375 -1.421875 25.265625 0.953125 \r\n",
"Q 20.953125 3.328125 18.109375 8.203125 \r\n",
"z\r\n",
"M 48.6875 27.296875 \r\n",
"Q 48.6875 37.203125 44.609375 42.84375 \r\n",
"Q 40.53125 48.484375 33.40625 48.484375 \r\n",
"Q 26.265625 48.484375 22.1875 42.84375 \r\n",
"Q 18.109375 37.203125 18.109375 27.296875 \r\n",
"Q 18.109375 17.390625 22.1875 11.75 \r\n",
"Q 26.265625 6.109375 33.40625 6.109375 \r\n",
"Q 40.53125 6.109375 44.609375 11.75 \r\n",
"Q 48.6875 17.390625 48.6875 27.296875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-112\"/>\r\n",
" <path d=\"M 37.109375 75.984375 \r\n",
"L 37.109375 68.5 \r\n",
"L 28.515625 68.5 \r\n",
"Q 23.6875 68.5 21.796875 66.546875 \r\n",
"Q 19.921875 64.59375 19.921875 59.515625 \r\n",
"L 19.921875 54.6875 \r\n",
"L 34.71875 54.6875 \r\n",
"L 34.71875 47.703125 \r\n",
"L 19.921875 47.703125 \r\n",
"L 19.921875 0 \r\n",
"L 10.890625 0 \r\n",
"L 10.890625 47.703125 \r\n",
"L 2.296875 47.703125 \r\n",
"L 2.296875 54.6875 \r\n",
"L 10.890625 54.6875 \r\n",
"L 10.890625 58.5 \r\n",
"Q 10.890625 67.625 15.140625 71.796875 \r\n",
"Q 19.390625 75.984375 28.609375 75.984375 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-102\"/>\r\n",
" <path d=\"M 39.40625 66.21875 \r\n",
"Q 28.65625 66.21875 22.328125 58.203125 \r\n",
"Q 16.015625 50.203125 16.015625 36.375 \r\n",
"Q 16.015625 22.609375 22.328125 14.59375 \r\n",
"Q 28.65625 6.59375 39.40625 6.59375 \r\n",
"Q 50.140625 6.59375 56.421875 14.59375 \r\n",
"Q 62.703125 22.609375 62.703125 36.375 \r\n",
"Q 62.703125 50.203125 56.421875 58.203125 \r\n",
"Q 50.140625 66.21875 39.40625 66.21875 \r\n",
"z\r\n",
"M 53.21875 1.3125 \r\n",
"L 66.21875 -12.890625 \r\n",
"L 54.296875 -12.890625 \r\n",
"L 43.5 -1.21875 \r\n",
"Q 41.890625 -1.3125 41.03125 -1.359375 \r\n",
"Q 40.1875 -1.421875 39.40625 -1.421875 \r\n",
"Q 24.03125 -1.421875 14.8125 8.859375 \r\n",
"Q 5.609375 19.140625 5.609375 36.375 \r\n",
"Q 5.609375 53.65625 14.8125 63.9375 \r\n",
"Q 24.03125 74.21875 39.40625 74.21875 \r\n",
"Q 54.734375 74.21875 63.90625 63.9375 \r\n",
"Q 73.09375 53.65625 73.09375 36.375 \r\n",
"Q 73.09375 23.6875 67.984375 14.640625 \r\n",
"Q 62.890625 5.609375 53.21875 1.3125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-81\"/>\r\n",
" <path d=\"M 4.890625 31.390625 \r\n",
"L 31.203125 31.390625 \r\n",
"L 31.203125 23.390625 \r\n",
"L 4.890625 23.390625 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-45\"/>\r\n",
" <path d=\"M 40.578125 39.3125 \r\n",
"Q 47.65625 37.796875 51.625 33 \r\n",
"Q 55.609375 28.21875 55.609375 21.1875 \r\n",
"Q 55.609375 10.40625 48.1875 4.484375 \r\n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \r\n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \r\n",
"Q 12.796875 0.390625 7.625 2.203125 \r\n",
"L 7.625 11.71875 \r\n",
"Q 11.71875 9.328125 16.59375 8.109375 \r\n",
"Q 21.484375 6.890625 26.8125 6.890625 \r\n",
"Q 36.078125 6.890625 40.9375 10.546875 \r\n",
"Q 45.796875 14.203125 45.796875 21.1875 \r\n",
"Q 45.796875 27.640625 41.28125 31.265625 \r\n",
"Q 36.765625 34.90625 28.71875 34.90625 \r\n",
"L 20.21875 34.90625 \r\n",
"L 20.21875 43.015625 \r\n",
"L 29.109375 43.015625 \r\n",
"Q 36.375 43.015625 40.234375 45.921875 \r\n",
"Q 44.09375 48.828125 44.09375 54.296875 \r\n",
"Q 44.09375 59.90625 40.109375 62.90625 \r\n",
"Q 36.140625 65.921875 28.71875 65.921875 \r\n",
"Q 24.65625 65.921875 20.015625 65.03125 \r\n",
"Q 15.375 64.15625 9.8125 62.3125 \r\n",
"L 9.8125 71.09375 \r\n",
"Q 15.4375 72.65625 20.34375 73.4375 \r\n",
"Q 25.25 74.21875 29.59375 74.21875 \r\n",
"Q 40.828125 74.21875 47.359375 69.109375 \r\n",
"Q 53.90625 64.015625 53.90625 55.328125 \r\n",
"Q 53.90625 49.265625 50.4375 45.09375 \r\n",
"Q 46.96875 40.921875 40.578125 39.3125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-51\"/>\r\n",
" <path d=\"M 10.796875 72.90625 \r\n",
"L 49.515625 72.90625 \r\n",
"L 49.515625 64.59375 \r\n",
"L 19.828125 64.59375 \r\n",
"L 19.828125 46.734375 \r\n",
"Q 21.96875 47.46875 24.109375 47.828125 \r\n",
"Q 26.265625 48.1875 28.421875 48.1875 \r\n",
"Q 40.625 48.1875 47.75 41.5 \r\n",
"Q 54.890625 34.8125 54.890625 23.390625 \r\n",
"Q 54.890625 11.625 47.5625 5.09375 \r\n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \r\n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \r\n",
"Q 12.796875 0.140625 7.71875 1.703125 \r\n",
"L 7.71875 11.625 \r\n",
"Q 12.109375 9.234375 16.796875 8.0625 \r\n",
"Q 21.484375 6.890625 26.703125 6.890625 \r\n",
"Q 35.15625 6.890625 40.078125 11.328125 \r\n",
"Q 45.015625 15.765625 45.015625 23.390625 \r\n",
"Q 45.015625 31 40.078125 35.4375 \r\n",
"Q 35.15625 39.890625 26.703125 39.890625 \r\n",
"Q 22.75 39.890625 18.8125 39.015625 \r\n",
"Q 14.890625 38.140625 10.796875 36.28125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-53\"/>\r\n",
" <path d=\"M 45.40625 46.390625 \r\n",
"L 45.40625 75.984375 \r\n",
"L 54.390625 75.984375 \r\n",
"L 54.390625 0 \r\n",
"L 45.40625 0 \r\n",
"L 45.40625 8.203125 \r\n",
"Q 42.578125 3.328125 38.25 0.953125 \r\n",
"Q 33.9375 -1.421875 27.875 -1.421875 \r\n",
"Q 17.96875 -1.421875 11.734375 6.484375 \r\n",
"Q 5.515625 14.40625 5.515625 27.296875 \r\n",
"Q 5.515625 40.1875 11.734375 48.09375 \r\n",
"Q 17.96875 56 27.875 56 \r\n",
"Q 33.9375 56 38.25 53.625 \r\n",
"Q 42.578125 51.265625 45.40625 46.390625 \r\n",
"z\r\n",
"M 14.796875 27.296875 \r\n",
"Q 14.796875 17.390625 18.875 11.75 \r\n",
"Q 22.953125 6.109375 30.078125 6.109375 \r\n",
"Q 37.203125 6.109375 41.296875 11.75 \r\n",
"Q 45.40625 17.390625 45.40625 27.296875 \r\n",
"Q 45.40625 37.203125 41.296875 42.84375 \r\n",
"Q 37.203125 48.484375 30.078125 48.484375 \r\n",
"Q 22.953125 48.484375 18.875 42.84375 \r\n",
"Q 14.796875 37.203125 14.796875 27.296875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-100\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(191.421562 16.318125)scale(0.12 -0.12)\">\r\n",
" <use xlink:href=\"#DejaVuSans-67\"/>\r\n",
" <use x=\"69.824219\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
" <use x=\"131.103516\" xlink:href=\"#DejaVuSans-108\"/>\r\n",
" <use x=\"158.886719\" xlink:href=\"#DejaVuSans-105\"/>\r\n",
" <use x=\"186.669922\" xlink:href=\"#DejaVuSans-98\"/>\r\n",
" <use x=\"250.146484\" xlink:href=\"#DejaVuSans-114\"/>\r\n",
" <use x=\"291.259766\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
" <use x=\"352.539062\" xlink:href=\"#DejaVuSans-116\"/>\r\n",
" <use x=\"391.748047\" xlink:href=\"#DejaVuSans-105\"/>\r\n",
" <use x=\"419.53125\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" <use x=\"480.712891\" xlink:href=\"#DejaVuSans-110\"/>\r\n",
" <use x=\"544.091797\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"575.878906\" xlink:href=\"#DejaVuSans-112\"/>\r\n",
" <use x=\"639.355469\" xlink:href=\"#DejaVuSans-108\"/>\r\n",
" <use x=\"667.138672\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" <use x=\"728.320312\" xlink:href=\"#DejaVuSans-116\"/>\r\n",
" <use x=\"767.529297\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"799.316406\" xlink:href=\"#DejaVuSans-102\"/>\r\n",
" <use x=\"834.521484\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" <use x=\"895.703125\" xlink:href=\"#DejaVuSans-114\"/>\r\n",
" <use x=\"936.816406\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"968.603516\" xlink:href=\"#DejaVuSans-77\"/>\r\n",
" <use x=\"1054.882812\" xlink:href=\"#DejaVuSans-81\"/>\r\n",
" <use x=\"1133.625\" xlink:href=\"#DejaVuSans-45\"/>\r\n",
" <use x=\"1169.708984\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" <use x=\"1233.332031\" xlink:href=\"#DejaVuSans-51\"/>\r\n",
" <use x=\"1296.955078\" xlink:href=\"#DejaVuSans-53\"/>\r\n",
" <use x=\"1360.578125\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"1392.365234\" xlink:href=\"#DejaVuSans-100\"/>\r\n",
" <use x=\"1455.841797\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
" <use x=\"1517.121094\" xlink:href=\"#DejaVuSans-116\"/>\r\n",
" <use x=\"1556.330078\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <defs>\r\n",
" <clipPath id=\"p1a69472f64\">\r\n",
" <rect height=\"298.98\" width=\"502.2\" x=\"45.478125\" y=\"46.8\"/>\r\n",
" </clipPath>\r\n",
" </defs>\r\n",
"</svg>\r\n"
],
"text/plain": [
"<Figure size 1800x1100 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"%config InlineBackend.figure_formats = ['svg']\n",
"%matplotlib inline\n",
"import matplotlib.pyplot as plt\n",
"import matplotlib.lines as mlines\n",
"import matplotlib.transforms as mtransforms\n",
"\n",
"fig, ax = plt.subplots()\n",
"\n",
"fig.set_size_inches(9, 5.5, forward=True)\n",
"fig.set_dpi(200)\n",
"\n",
"# only these two lines are calibration curves\n",
"plt.plot(MQ135_CO2, x_MQ135, marker='o', linewidth=1, label='CO2')\n",
"plt.plot(MQ135_CO, x_MQ135, marker='o', linewidth=1, label='CO')\n",
"plt.plot(MQ135_Alcohol, x_MQ135, marker='o', linewidth=1, label='Alcohol')\n",
"plt.plot(MQ135_NH4, x_MQ135, marker='o', linewidth=1, label='NH4')\n",
"plt.plot(MQ135_Tolueno, x_MQ135, marker='o', linewidth=1, label='Tolueno')\n",
"plt.plot(MQ135_Acetona, x_MQ135, marker='o', linewidth=1, label='Acetona')\n",
"\n",
"# reference line, legends, and axis labels\n",
"#line = mlines.Line2D([0, 1], [0, 1], color='black')\n",
"#transform = ax.transAxes\n",
"#line.set_transform(transform)\n",
"#ax.add_line(line)\n",
"plt.yscale('log')\n",
"plt.xscale('log')\n",
"plt.legend()\n",
"\n",
"plt.grid(b=True, which='minor', color='lightgrey', linestyle='--')\n",
"\n",
"fig.suptitle('Calibration plot for MQ-135 data')\n",
"ax.set_xlabel('PPM Concentration')\n",
"ax.set_ylabel('Rs/Ro')\n",
"\n",
"\n",
"#Save image\n",
"plt.savefig('MQ135.svg', format = 'svg', dpi = 1200)\n",
"plt.savefig('MQ135.png')\n",
"plt.savefig('MQ135.eps', format = 'eps', dpi = 1200)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.3"
}
},
"nbformat": 4,
"nbformat_minor": 2
}