项目文件夹

文件
2026-07-13 13:22:52 +08:00

6334 行
2.0 MiB
Plaintext

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Using custom functions and tokenizers"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"This notebook demonstrates how to use the `Partition` explainer for a multiclass text classification scenario where we are using a custom python function as our model."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"Using custom data configuration default\n",
"Reusing dataset emotion (/home/slundberg/.cache/huggingface/datasets/emotion/default/0.0.0/aa34462255cd487d04be8387a2d572588f6ceee23f784f37365aa714afeb8fe6)\n"
]
}
],
"source": [
"import datasets\n",
"import numpy as np\n",
"import pandas as pd\n",
"import scipy as sp\n",
"import torch\n",
"import transformers\n",
"\n",
"import shap\n",
"\n",
"# load the emotion dataset\n",
"dataset = datasets.load_dataset(\"emotion\", split=\"train\")\n",
"data = pd.DataFrame({\"text\": dataset[\"text\"], \"emotion\": dataset[\"label\"]})"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Define our model\n",
"\n",
"While here we are using the transformers package, any python function that takes in a list of strings and outputs scores will work."
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"# load the model and tokenizer\n",
"tokenizer = transformers.AutoTokenizer.from_pretrained(\"nateraw/bert-base-uncased-emotion\", use_fast=True)\n",
"model = transformers.AutoModelForSequenceClassification.from_pretrained(\"nateraw/bert-base-uncased-emotion\").cuda()\n",
"labels = sorted(model.config.label2id, key=model.config.label2id.get)\n",
"\n",
"\n",
"# this defines an explicit python function that takes a list of strings and outputs scores for each class\n",
"def f(x):\n",
" tv = torch.tensor([tokenizer.encode(v, padding=\"max_length\", max_length=128, truncation=True) for v in x]).cuda()\n",
" attention_mask = (tv != 0).type(torch.int64).cuda()\n",
" outputs = model(tv, attention_mask=attention_mask)[0].detach().cpu().numpy()\n",
" scores = (np.exp(outputs).T / np.exp(outputs).sum(-1)).T\n",
" val = sp.special.logit(scores)\n",
" return val"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Create an explainer\n",
"\n",
"In order to build an `Explainer` we need both a model and a masker (the masker specifies how to hide portions of the input). Since we are using a custom function as our model, there is no way for SHAP to auto-infer a masker for us. So we need to provide one, either implicitly by passing a transformers tokenizer, or explicitly by building a `shap.maskers.Text` object"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"method = \"custom tokenizer\"\n",
"\n",
"# build an explainer by passing a transformers tokenizer\n",
"if method == \"transformers tokenizer\":\n",
" explainer = shap.Explainer(f, tokenizer, output_names=labels)\n",
"\n",
"# build an explainer by explicitly creating a masker\n",
"elif method == \"default masker\":\n",
" masker = shap.maskers.Text(r\"\\W\") # this will create a basic whitespace tokenizer\n",
" explainer = shap.Explainer(f, masker, output_names=labels)\n",
"\n",
"# build a fully custom tokenizer\n",
"elif method == \"custom tokenizer\":\n",
" import re\n",
"\n",
" def custom_tokenizer(s, return_offsets_mapping=True):\n",
" \"\"\"Custom tokenizers conform to a subset of the transformers API.\"\"\"\n",
" pos = 0\n",
" offset_ranges = []\n",
" input_ids = []\n",
" for m in re.finditer(r\"\\W\", s):\n",
" start, end = m.span(0)\n",
" offset_ranges.append((pos, start))\n",
" input_ids.append(s[pos:start])\n",
" pos = end\n",
" if pos != len(s):\n",
" offset_ranges.append((pos, len(s)))\n",
" input_ids.append(s[pos:])\n",
" out = {}\n",
" out[\"input_ids\"] = input_ids\n",
" if return_offsets_mapping:\n",
" out[\"offset_mapping\"] = offset_ranges\n",
" return out\n",
"\n",
" masker = shap.maskers.Text(custom_tokenizer)\n",
" explainer = shap.Explainer(f, masker, output_names=labels)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Compute SHAP values\n",
"\n",
"Explainers have the same method signature as the models they are explaining, so we just pass a list of strings for which to explain the classifications."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"shap_values = explainer(data[\"text\"][:3])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Visualize the impact on all the output classes\n",
"\n",
"In the plots below, when you hover your mouse over an output class you get the explanation for that output class. When you click an output class name then that class remains the focus of the explanation visualization until you click another class.\n",
"\n",
"The base value is what the model outputs when the entire input text is masked, while $f_{output class}(inputs)$ is the output of the model for the full original input. The SHAP values explain in an addive way how the impact of unmasking each word changes the model output from the base value (where the entire input is masked) to the final prediction value."
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"<br>\n",
"<hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
"<div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[0]</div>\n",
"</div>\n",
" "
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<div align='center'>\n",
"<script>\n",
" document._hover_esitufnolwurooqymgga = '_tp_esitufnolwurooqymgga_output_0';\n",
" document._zoom_esitufnolwurooqymgga = undefined;\n",
" function _output_onclick_esitufnolwurooqymgga(i) {\n",
" var next_id = undefined;\n",
" \n",
" if (document._zoom_esitufnolwurooqymgga !== undefined) {\n",
" document.getElementById(document._zoom_esitufnolwurooqymgga+ '_zoom').style.display = 'none';\n",
" \n",
" if (document._zoom_esitufnolwurooqymgga === '_tp_esitufnolwurooqymgga_output_' + i) {\n",
" document.getElementById(document._zoom_esitufnolwurooqymgga).style.display = 'block';\n",
" document.getElementById(document._zoom_esitufnolwurooqymgga+'_name').style.background = '#dddddd';\n",
" } else {\n",
" document.getElementById(document._zoom_esitufnolwurooqymgga).style.display = 'none';\n",
" document.getElementById(document._zoom_esitufnolwurooqymgga+'_name').style.background = '#ffffff';\n",
" }\n",
" }\n",
" if (document._zoom_esitufnolwurooqymgga !== '_tp_esitufnolwurooqymgga_output_' + i) {\n",
" next_id = '_tp_esitufnolwurooqymgga_output_' + i;\n",
" document.getElementById(next_id).style.display = 'none';\n",
" document.getElementById(next_id + '_zoom').style.display = 'block';\n",
" document.getElementById(next_id+'_name').style.background = '#bbbbbb';\n",
" }\n",
" document._zoom_esitufnolwurooqymgga = next_id;\n",
" }\n",
" function _output_onmouseover_esitufnolwurooqymgga(i, el) {\n",
" if (document._zoom_esitufnolwurooqymgga !== undefined) { return; }\n",
" if (document._hover_esitufnolwurooqymgga !== undefined) {\n",
" document.getElementById(document._hover_esitufnolwurooqymgga + '_name').style.background = '#ffffff';\n",
" document.getElementById(document._hover_esitufnolwurooqymgga).style.display = 'none';\n",
" }\n",
" document.getElementById('_tp_esitufnolwurooqymgga_output_' + i).style.display = 'block';\n",
" el.style.background = '#dddddd';\n",
" document._hover_esitufnolwurooqymgga = '_tp_esitufnolwurooqymgga_output_' + i;\n",
" }\n",
"</script>\n",
"<div style=\"color: rgb(120,120,120); font-size: 12px;\">outputs</div>\n",
"<div style=\"display: inline; background: #dddddd; border-radius: 3px; padding: 0px\" id=\"_tp_esitufnolwurooqymgga_output_0_name\"\n",
" onclick=\"_output_onclick_esitufnolwurooqymgga(0)\"\n",
" onmouseover=\"_output_onmouseover_esitufnolwurooqymgga(0, this);\">sadness</div>\n",
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_esitufnolwurooqymgga_output_1_name\"\n",
" onclick=\"_output_onclick_esitufnolwurooqymgga(1)\"\n",
" onmouseover=\"_output_onmouseover_esitufnolwurooqymgga(1, this);\">joy</div>\n",
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_esitufnolwurooqymgga_output_2_name\"\n",
" onclick=\"_output_onclick_esitufnolwurooqymgga(2)\"\n",
" onmouseover=\"_output_onmouseover_esitufnolwurooqymgga(2, this);\">love</div>\n",
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_esitufnolwurooqymgga_output_3_name\"\n",
" onclick=\"_output_onclick_esitufnolwurooqymgga(3)\"\n",
" onmouseover=\"_output_onmouseover_esitufnolwurooqymgga(3, this);\">anger</div>\n",
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_esitufnolwurooqymgga_output_4_name\"\n",
" onclick=\"_output_onclick_esitufnolwurooqymgga(4)\"\n",
" onmouseover=\"_output_onmouseover_esitufnolwurooqymgga(4, this);\">fear</div>\n",
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_esitufnolwurooqymgga_output_5_name\"\n",
" onclick=\"_output_onclick_esitufnolwurooqymgga(5)\"\n",
" onmouseover=\"_output_onmouseover_esitufnolwurooqymgga(5, this);\">surprise</div><br><br><div id='_tp_esitufnolwurooqymgga_output_0' style='display: block';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"47.359070267296794%\" y1=\"33\" x2=\"47.359070267296794%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"47.359070267296794%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.84234</text><text x=\"47.359070267296794%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.84234</text><text x=\"47.359070267296794%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"79.6025571514918%\" y1=\"33\" x2=\"79.6025571514918%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"79.6025571514918%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5.62544</text><text x=\"79.6025571514918%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5.62544</text><text x=\"79.6025571514918%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"46.111081642370266%\" width=\"33.49147550912153%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"51.366224625687984%\" x2=\"79.6025571514918%\" y1=\"60\" y2=\"60\" id=\"_fb_tvpkqbadjqotbjagqcic_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"65.48439088858989%\" y=\"71\" font-size=\"12px\" id=\"_fs_tvpkqbadjqotbjagqcic_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">6.54</text><svg x=\"51.366224625687984%\" y=\"40\" height=\"20\" width=\"28.23633252580381%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"46.111081642370266%\" x2=\"51.366224625687984%\" y1=\"60\" y2=\"60\" id=\"_fb_tvpkqbadjqotbjagqcic_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"48.73865313402912%\" y=\"71\" font-size=\"12px\" id=\"_fs_tvpkqbadjqotbjagqcic_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.217</text><svg x=\"46.111081642370266%\" y=\"40\" height=\"20\" width=\"5.255142983317718%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"51.366224625687984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"51.366224625687984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"51.366224625687984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"51.366224625687984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"51.366224625687984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"51.366224625687984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"51.366224625687984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"51.366224625687984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"79.6025571514918%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"46.111081642370266%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"79.6025571514918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"51.366224625687984%\" y=\"40\" height=\"20\" width=\"28.23633252580381%\" onmouseover=\"document.getElementById('_tp_tvpkqbadjqotbjagqcic_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_tvpkqbadjqotbjagqcic_ind_3').style.opacity = 1;document.getElementById('_fb_tvpkqbadjqotbjagqcic_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tvpkqbadjqotbjagqcic_ind_3').style.textDecoration = 'none';document.getElementById('_fs_tvpkqbadjqotbjagqcic_ind_3').style.opacity = 0;document.getElementById('_fb_tvpkqbadjqotbjagqcic_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"46.111081642370266%\" y=\"40\" height=\"20\" width=\"5.255142983317718%\" onmouseover=\"document.getElementById('_tp_tvpkqbadjqotbjagqcic_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_tvpkqbadjqotbjagqcic_ind_2').style.opacity = 1;document.getElementById('_fb_tvpkqbadjqotbjagqcic_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tvpkqbadjqotbjagqcic_ind_2').style.textDecoration = 'none';document.getElementById('_fs_tvpkqbadjqotbjagqcic_ind_2').style.opacity = 0;document.getElementById('_fb_tvpkqbadjqotbjagqcic_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"79.6025571514918%\" width=\"1.24798862492653%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"79.6025571514918%\" x2=\"80.45210833899095%\" y1=\"60\" y2=\"60\" id=\"_fb_tvpkqbadjqotbjagqcic_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"80.02733274524138%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tvpkqbadjqotbjagqcic_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.197</text><svg x=\"79.6025571514918%\" y=\"40\" height=\"20\" width=\"0.8495511874991593%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"80.45210833899095%\" x2=\"80.85054577641831%\" y1=\"60\" y2=\"60\" id=\"_fb_tvpkqbadjqotbjagqcic_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"80.65132705770463%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tvpkqbadjqotbjagqcic_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.092</text><svg x=\"80.45210833899095%\" y=\"40\" height=\"20\" width=\"0.3984374374273614%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didnt</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"80.45210833899095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"80.45210833899095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"80.45210833899095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"80.45210833899095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"80.45210833899095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"80.45210833899095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"80.45210833899095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"80.45210833899095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"79.6025571514918%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"80.85054577641831%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"80.45210833899095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"79.6025571514918%\" y=\"40\" height=\"20\" width=\"0.8495511874991593%\" onmouseover=\"document.getElementById('_tp_tvpkqbadjqotbjagqcic_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_tvpkqbadjqotbjagqcic_ind_0').style.opacity = 1;document.getElementById('_fb_tvpkqbadjqotbjagqcic_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tvpkqbadjqotbjagqcic_ind_0').style.textDecoration = 'none';document.getElementById('_fs_tvpkqbadjqotbjagqcic_ind_0').style.opacity = 0;document.getElementById('_fb_tvpkqbadjqotbjagqcic_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"80.45210833899095%\" y=\"40\" height=\"20\" width=\"0.3984374374273614%\" onmouseover=\"document.getElementById('_tp_tvpkqbadjqotbjagqcic_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_tvpkqbadjqotbjagqcic_ind_1').style.opacity = 1;document.getElementById('_fb_tvpkqbadjqotbjagqcic_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tvpkqbadjqotbjagqcic_ind_1').style.textDecoration = 'none';document.getElementById('_fs_tvpkqbadjqotbjagqcic_ind_1').style.opacity = 0;document.getElementById('_fb_tvpkqbadjqotbjagqcic_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.197</div\n",
" ><div id='_tp_tvpkqbadjqotbjagqcic_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tvpkqbadjqotbjagqcic_ind_0').style.opacity = 1; document.getElementById('_fs_tvpkqbadjqotbjagqcic_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tvpkqbadjqotbjagqcic_ind_0').style.opacity = 0; document.getElementById('_fs_tvpkqbadjqotbjagqcic_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.092</div\n",
" ><div id='_tp_tvpkqbadjqotbjagqcic_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tvpkqbadjqotbjagqcic_ind_1').style.opacity = 1; document.getElementById('_fs_tvpkqbadjqotbjagqcic_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tvpkqbadjqotbjagqcic_ind_1').style.opacity = 0; document.getElementById('_fs_tvpkqbadjqotbjagqcic_ind_1').style.opacity = 0;\"\n",
" >didnt </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.217</div\n",
" ><div id='_tp_tvpkqbadjqotbjagqcic_ind_2'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.14866310160427795); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tvpkqbadjqotbjagqcic_ind_2').style.opacity = 1; document.getElementById('_fs_tvpkqbadjqotbjagqcic_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tvpkqbadjqotbjagqcic_ind_2').style.opacity = 0; document.getElementById('_fs_tvpkqbadjqotbjagqcic_ind_2').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>6.54</div\n",
" ><div id='_tp_tvpkqbadjqotbjagqcic_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.8029312735195088); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tvpkqbadjqotbjagqcic_ind_3').style.opacity = 1; document.getElementById('_fs_tvpkqbadjqotbjagqcic_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tvpkqbadjqotbjagqcic_ind_3').style.opacity = 0; document.getElementById('_fs_tvpkqbadjqotbjagqcic_ind_3').style.opacity = 0;\"\n",
" >humiliated</div></div></div></div><div id='_tp_esitufnolwurooqymgga_output_0_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"51.1232277510973%\" y1=\"33\" x2=\"51.1232277510973%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"51.1232277510973%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"40.765942326827414%\" y1=\"33\" x2=\"40.765942326827414%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"40.765942326827414%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">1</text><line x1=\"30.408656902557524%\" y1=\"33\" x2=\"30.408656902557524%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"30.408656902557524%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"20.051371478287635%\" y1=\"33\" x2=\"20.051371478287635%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"20.051371478287635%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"9.694086054017745%\" y1=\"33\" x2=\"9.694086054017745%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"9.694086054017745%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"61.4805131753672%\" y1=\"33\" x2=\"61.4805131753672%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"61.4805131753672%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">3</text><line x1=\"71.83779859963708%\" y1=\"33\" x2=\"71.83779859963708%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"71.83779859963708%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4</text><line x1=\"82.19508402390697%\" y1=\"33\" x2=\"82.19508402390697%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"82.19508402390697%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"92.55236944817688%\" y1=\"33\" x2=\"92.55236944817688%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"92.55236944817688%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">6</text><line x1=\"11.327019455501468%\" y1=\"33\" x2=\"11.327019455501468%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"11.327019455501468%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.84234</text><text x=\"11.327019455501468%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.84234</text><text x=\"11.327019455501468%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"88.67298044092568%\" y1=\"33\" x2=\"88.67298044092568%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"88.67298044092568%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5.62544</text><text x=\"88.67298044092568%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5.62544</text><text x=\"88.67298044092568%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"8.333333324702263%\" width=\"80.33964711622342%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"20.939416705831782%\" x2=\"88.67298044092568%\" y1=\"60\" y2=\"60\" id=\"_fb_yoctwfzovqitukixobvs_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"54.80619857337874%\" y=\"71\" font-size=\"12px\" id=\"_fs_yoctwfzovqitukixobvs_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">6.54</text><svg x=\"20.939416705831782%\" y=\"40\" height=\"20\" width=\"67.7335637350939%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"8.333333324702263%\" x2=\"20.939416705831782%\" y1=\"60\" y2=\"60\" id=\"_fb_yoctwfzovqitukixobvs_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"14.636375015267022%\" y=\"71\" font-size=\"12px\" id=\"_fs_yoctwfzovqitukixobvs_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.217</text><svg x=\"8.333333324702263%\" y=\"40\" height=\"20\" width=\"12.606083381129519%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"20.939416705831782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"20.939416705831782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"20.939416705831782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"20.939416705831782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"20.939416705831782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"20.939416705831782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"20.939416705831782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"20.939416705831782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"88.67298044092568%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333324702263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"88.67298044092568%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"20.939416705831782%\" y=\"40\" height=\"20\" width=\"67.7335637350939%\" onmouseover=\"document.getElementById('_tp_yoctwfzovqitukixobvs_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_yoctwfzovqitukixobvs_ind_3').style.opacity = 1;document.getElementById('_fb_yoctwfzovqitukixobvs_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yoctwfzovqitukixobvs_ind_3').style.textDecoration = 'none';document.getElementById('_fs_yoctwfzovqitukixobvs_ind_3').style.opacity = 0;document.getElementById('_fb_yoctwfzovqitukixobvs_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333324702263%\" y=\"40\" height=\"20\" width=\"12.606083381129519%\" onmouseover=\"document.getElementById('_tp_yoctwfzovqitukixobvs_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_yoctwfzovqitukixobvs_ind_2').style.opacity = 1;document.getElementById('_fb_yoctwfzovqitukixobvs_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yoctwfzovqitukixobvs_ind_2').style.textDecoration = 'none';document.getElementById('_fs_yoctwfzovqitukixobvs_ind_2').style.opacity = 0;document.getElementById('_fb_yoctwfzovqitukixobvs_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"88.67298044092568%\" width=\"2.9936861307992038%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"88.67298044092568%\" x2=\"90.7108913293923%\" y1=\"60\" y2=\"60\" id=\"_fb_yoctwfzovqitukixobvs_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.69193588515898%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yoctwfzovqitukixobvs_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.197</text><svg x=\"88.67298044092568%\" y=\"40\" height=\"20\" width=\"2.0379108884666124%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"90.7108913293923%\" x2=\"91.66666657172489%\" y1=\"60\" y2=\"60\" id=\"_fb_yoctwfzovqitukixobvs_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.1887789505586%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yoctwfzovqitukixobvs_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.092</text><svg x=\"90.7108913293923%\" y=\"40\" height=\"20\" width=\"0.9557752423325923%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didnt</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"90.7108913293923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.7108913293923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.7108913293923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.7108913293923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.7108913293923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.7108913293923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.7108913293923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.7108913293923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"88.67298044092568%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666657172489%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"90.7108913293923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.67298044092568%\" y=\"40\" height=\"20\" width=\"2.0379108884666124%\" onmouseover=\"document.getElementById('_tp_yoctwfzovqitukixobvs_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_yoctwfzovqitukixobvs_ind_0').style.opacity = 1;document.getElementById('_fb_yoctwfzovqitukixobvs_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yoctwfzovqitukixobvs_ind_0').style.textDecoration = 'none';document.getElementById('_fs_yoctwfzovqitukixobvs_ind_0').style.opacity = 0;document.getElementById('_fb_yoctwfzovqitukixobvs_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"90.7108913293923%\" y=\"40\" height=\"20\" width=\"0.9557752423325923%\" onmouseover=\"document.getElementById('_tp_yoctwfzovqitukixobvs_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_yoctwfzovqitukixobvs_ind_1').style.opacity = 1;document.getElementById('_fb_yoctwfzovqitukixobvs_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yoctwfzovqitukixobvs_ind_1').style.textDecoration = 'none';document.getElementById('_fs_yoctwfzovqitukixobvs_ind_1').style.opacity = 0;document.getElementById('_fb_yoctwfzovqitukixobvs_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.197</div\n",
" ><div id='_tp_yoctwfzovqitukixobvs_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yoctwfzovqitukixobvs_ind_0').style.opacity = 1; document.getElementById('_fs_yoctwfzovqitukixobvs_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yoctwfzovqitukixobvs_ind_0').style.opacity = 0; document.getElementById('_fs_yoctwfzovqitukixobvs_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.092</div\n",
" ><div id='_tp_yoctwfzovqitukixobvs_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yoctwfzovqitukixobvs_ind_1').style.opacity = 1; document.getElementById('_fs_yoctwfzovqitukixobvs_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yoctwfzovqitukixobvs_ind_1').style.opacity = 0; document.getElementById('_fs_yoctwfzovqitukixobvs_ind_1').style.opacity = 0;\"\n",
" >didnt </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.217</div\n",
" ><div id='_tp_yoctwfzovqitukixobvs_ind_2'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.18019409784115661); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yoctwfzovqitukixobvs_ind_2').style.opacity = 1; document.getElementById('_fs_yoctwfzovqitukixobvs_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yoctwfzovqitukixobvs_ind_2').style.opacity = 0; document.getElementById('_fs_yoctwfzovqitukixobvs_ind_2').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>6.54</div\n",
" ><div id='_tp_yoctwfzovqitukixobvs_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yoctwfzovqitukixobvs_ind_3').style.opacity = 1; document.getElementById('_fs_yoctwfzovqitukixobvs_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yoctwfzovqitukixobvs_ind_3').style.opacity = 0; document.getElementById('_fs_yoctwfzovqitukixobvs_ind_3').style.opacity = 0;\"\n",
" >humiliated</div></div></div></div><div id='_tp_esitufnolwurooqymgga_output_1' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"54.04331756319791%\" y1=\"33\" x2=\"54.04331756319791%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"54.04331756319791%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.294228</text><text x=\"54.04331756319791%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.294228</text><text x=\"54.04331756319791%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"23.830474100296698%\" y1=\"33\" x2=\"23.830474100296698%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"23.830474100296698%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.2917</text><text x=\"23.830474100296698%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.2917</text><text x=\"23.830474100296698%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"21.578638200963653%\" width=\"2.251835899333044%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"21.578638200963653%\" x2=\"23.830474100296698%\" y1=\"60\" y2=\"60\" id=\"_fb_zxlwhfnzhtirhytfwwms_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"22.704556150630175%\" y=\"71\" font-size=\"12px\" id=\"_fs_zxlwhfnzhtirhytfwwms_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.522</text><svg x=\"21.578638200963653%\" y=\"40\" height=\"20\" width=\"2.251835899333045%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><rect transform=\"translate(-8,0)\" x=\"23.830474100296698%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"21.578638200963653%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"21.578638200963653%\" y=\"40\" height=\"20\" width=\"2.251835899333045%\" onmouseover=\"document.getElementById('_tp_zxlwhfnzhtirhytfwwms_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_zxlwhfnzhtirhytfwwms_ind_2').style.opacity = 1;document.getElementById('_fb_zxlwhfnzhtirhytfwwms_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zxlwhfnzhtirhytfwwms_ind_2').style.textDecoration = 'none';document.getElementById('_fs_zxlwhfnzhtirhytfwwms_ind_2').style.opacity = 0;document.getElementById('_fb_zxlwhfnzhtirhytfwwms_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"23.830474100296698%\" width=\"32.46467936223426%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"23.830474100296698%\" x2=\"51.00426501587751%\" y1=\"60\" y2=\"60\" id=\"_fb_zxlwhfnzhtirhytfwwms_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.4173695580871%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zxlwhfnzhtirhytfwwms_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-6.294</text><svg x=\"23.830474100296698%\" y=\"40\" height=\"20\" width=\"27.17379091558081%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"51.00426501587751%\" x2=\"55.112067895681875%\" y1=\"60\" y2=\"60\" id=\"_fb_zxlwhfnzhtirhytfwwms_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"53.05816645577969%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zxlwhfnzhtirhytfwwms_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.951</text><svg x=\"51.00426501587751%\" y=\"40\" height=\"20\" width=\"4.1078028798043675%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didnt</text> </svg></svg><line x1=\"55.112067895681875%\" x2=\"56.295153462530955%\" y1=\"60\" y2=\"60\" id=\"_fb_zxlwhfnzhtirhytfwwms_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"55.70361067910642%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zxlwhfnzhtirhytfwwms_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.274</text><svg x=\"55.112067895681875%\" y=\"40\" height=\"20\" width=\"1.1830855668490798%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"51.00426501587751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"51.00426501587751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"51.00426501587751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"51.00426501587751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"51.00426501587751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"51.00426501587751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"51.00426501587751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"51.00426501587751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"55.112067895681875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"55.112067895681875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"55.112067895681875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"55.112067895681875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"55.112067895681875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"55.112067895681875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"55.112067895681875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"55.112067895681875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"23.830474100296698%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"56.295153462530955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"51.00426501587751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"23.830474100296698%\" y=\"40\" height=\"20\" width=\"27.17379091558081%\" onmouseover=\"document.getElementById('_tp_zxlwhfnzhtirhytfwwms_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_zxlwhfnzhtirhytfwwms_ind_3').style.opacity = 1;document.getElementById('_fb_zxlwhfnzhtirhytfwwms_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zxlwhfnzhtirhytfwwms_ind_3').style.textDecoration = 'none';document.getElementById('_fs_zxlwhfnzhtirhytfwwms_ind_3').style.opacity = 0;document.getElementById('_fb_zxlwhfnzhtirhytfwwms_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"55.112067895681875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"51.00426501587751%\" y=\"40\" height=\"20\" width=\"4.1078028798043675%\" onmouseover=\"document.getElementById('_tp_zxlwhfnzhtirhytfwwms_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_zxlwhfnzhtirhytfwwms_ind_1').style.opacity = 1;document.getElementById('_fb_zxlwhfnzhtirhytfwwms_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zxlwhfnzhtirhytfwwms_ind_1').style.textDecoration = 'none';document.getElementById('_fs_zxlwhfnzhtirhytfwwms_ind_1').style.opacity = 0;document.getElementById('_fb_zxlwhfnzhtirhytfwwms_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"55.112067895681875%\" y=\"40\" height=\"20\" width=\"1.1830855668490798%\" onmouseover=\"document.getElementById('_tp_zxlwhfnzhtirhytfwwms_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_zxlwhfnzhtirhytfwwms_ind_0').style.opacity = 1;document.getElementById('_fb_zxlwhfnzhtirhytfwwms_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zxlwhfnzhtirhytfwwms_ind_0').style.textDecoration = 'none';document.getElementById('_fs_zxlwhfnzhtirhytfwwms_ind_0').style.opacity = 0;document.getElementById('_fb_zxlwhfnzhtirhytfwwms_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.274</div\n",
" ><div id='_tp_zxlwhfnzhtirhytfwwms_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zxlwhfnzhtirhytfwwms_ind_0').style.opacity = 1; document.getElementById('_fs_zxlwhfnzhtirhytfwwms_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zxlwhfnzhtirhytfwwms_ind_0').style.opacity = 0; document.getElementById('_fs_zxlwhfnzhtirhytfwwms_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.951</div\n",
" ><div id='_tp_zxlwhfnzhtirhytfwwms_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10924935630817977); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zxlwhfnzhtirhytfwwms_ind_1').style.opacity = 1; document.getElementById('_fs_zxlwhfnzhtirhytfwwms_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zxlwhfnzhtirhytfwwms_ind_1').style.opacity = 0; document.getElementById('_fs_zxlwhfnzhtirhytfwwms_ind_1').style.opacity = 0;\"\n",
" >didnt </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.522</div\n",
" ><div id='_tp_zxlwhfnzhtirhytfwwms_ind_2'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06195286195286207); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zxlwhfnzhtirhytfwwms_ind_2').style.opacity = 1; document.getElementById('_fs_zxlwhfnzhtirhytfwwms_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zxlwhfnzhtirhytfwwms_ind_2').style.opacity = 0; document.getElementById('_fs_zxlwhfnzhtirhytfwwms_ind_2').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-6.294</div\n",
" ><div id='_tp_zxlwhfnzhtirhytfwwms_ind_3'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.7714002772826302); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zxlwhfnzhtirhytfwwms_ind_3').style.opacity = 1; document.getElementById('_fs_zxlwhfnzhtirhytfwwms_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zxlwhfnzhtirhytfwwms_ind_3').style.opacity = 0; document.getElementById('_fs_zxlwhfnzhtirhytfwwms_ind_3').style.opacity = 0;\"\n",
" >humiliated</div></div></div></div><div id='_tp_esitufnolwurooqymgga_output_1_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"47.85426461398255%\" y1=\"33\" x2=\"47.85426461398255%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"47.85426461398255%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"37.490132649372676%\" y1=\"33\" x2=\"37.490132649372676%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.490132649372676%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"27.126000684762804%\" y1=\"33\" x2=\"27.126000684762804%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"27.126000684762804%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"16.761868720152933%\" y1=\"33\" x2=\"16.761868720152933%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"16.761868720152933%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"58.21839657859243%\" y1=\"33\" x2=\"58.21839657859243%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"58.21839657859243%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"68.5825285432023%\" y1=\"33\" x2=\"68.5825285432023%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"68.5825285432023%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"78.94666050781218%\" y1=\"33\" x2=\"78.94666050781218%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"78.94666050781218%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"89.31079247242205%\" y1=\"33\" x2=\"89.31079247242205%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.31079247242205%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"86.26137200212504%\" y1=\"33\" x2=\"86.26137200212504%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"86.26137200212504%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.294228</text><text x=\"86.26137200212504%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.294228</text><text x=\"86.26137200212504%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"13.738627894233636%\" y1=\"33\" x2=\"13.738627894233636%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.738627894233636%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.2917</text><text x=\"13.738627894233636%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.2917</text><text x=\"13.738627894233636%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"8.333333324696554%\" width=\"5.405294569537081%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.333333324696554%\" x2=\"13.738627894233636%\" y1=\"60\" y2=\"60\" id=\"_fb_jgikudmntzzfellcytwq_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.035980609465096%\" y=\"71\" font-size=\"12px\" id=\"_fs_jgikudmntzzfellcytwq_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.522</text><svg x=\"8.333333324696554%\" y=\"40\" height=\"20\" width=\"5.405294569537082%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><rect transform=\"translate(-8,0)\" x=\"13.738627894233636%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333324696554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"8.333333324696554%\" y=\"40\" height=\"20\" width=\"5.405294569537082%\" onmouseover=\"document.getElementById('_tp_jgikudmntzzfellcytwq_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_jgikudmntzzfellcytwq_ind_2').style.opacity = 1;document.getElementById('_fb_jgikudmntzzfellcytwq_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jgikudmntzzfellcytwq_ind_2').style.textDecoration = 'none';document.getElementById('_fs_jgikudmntzzfellcytwq_ind_2').style.opacity = 0;document.getElementById('_fb_jgikudmntzzfellcytwq_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"13.738627894233636%\" width=\"77.92803867742849%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"13.738627894233636%\" x2=\"78.9664468988197%\" y1=\"60\" y2=\"60\" id=\"_fb_jgikudmntzzfellcytwq_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.352537396526664%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jgikudmntzzfellcytwq_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-6.294</text><svg x=\"13.738627894233636%\" y=\"40\" height=\"20\" width=\"65.22781900458607%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"78.9664468988197%\" x2=\"88.82679445145962%\" y1=\"60\" y2=\"60\" id=\"_fb_jgikudmntzzfellcytwq_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"83.89662067513966%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jgikudmntzzfellcytwq_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.951</text><svg x=\"78.9664468988197%\" y=\"40\" height=\"20\" width=\"9.860347552639922%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didnt</text> </svg></svg><line x1=\"88.82679445145962%\" x2=\"91.66666657166212%\" y1=\"60\" y2=\"60\" id=\"_fb_jgikudmntzzfellcytwq_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.24673051156087%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jgikudmntzzfellcytwq_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.274</text><svg x=\"88.82679445145962%\" y=\"40\" height=\"20\" width=\"2.8398721202025%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"78.9664468988197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"78.9664468988197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"78.9664468988197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"78.9664468988197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"78.9664468988197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"78.9664468988197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"78.9664468988197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"78.9664468988197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.82679445145962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.82679445145962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.82679445145962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.82679445145962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.82679445145962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.82679445145962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.82679445145962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.82679445145962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"13.738627894233636%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666657166212%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"78.9664468988197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"13.738627894233636%\" y=\"40\" height=\"20\" width=\"65.22781900458607%\" onmouseover=\"document.getElementById('_tp_jgikudmntzzfellcytwq_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_jgikudmntzzfellcytwq_ind_3').style.opacity = 1;document.getElementById('_fb_jgikudmntzzfellcytwq_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jgikudmntzzfellcytwq_ind_3').style.textDecoration = 'none';document.getElementById('_fs_jgikudmntzzfellcytwq_ind_3').style.opacity = 0;document.getElementById('_fb_jgikudmntzzfellcytwq_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.82679445145962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"78.9664468988197%\" y=\"40\" height=\"20\" width=\"9.860347552639922%\" onmouseover=\"document.getElementById('_tp_jgikudmntzzfellcytwq_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_jgikudmntzzfellcytwq_ind_1').style.opacity = 1;document.getElementById('_fb_jgikudmntzzfellcytwq_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jgikudmntzzfellcytwq_ind_1').style.textDecoration = 'none';document.getElementById('_fs_jgikudmntzzfellcytwq_ind_1').style.opacity = 0;document.getElementById('_fb_jgikudmntzzfellcytwq_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"88.82679445145962%\" y=\"40\" height=\"20\" width=\"2.8398721202025%\" onmouseover=\"document.getElementById('_tp_jgikudmntzzfellcytwq_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_jgikudmntzzfellcytwq_ind_0').style.opacity = 1;document.getElementById('_fb_jgikudmntzzfellcytwq_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jgikudmntzzfellcytwq_ind_0').style.textDecoration = 'none';document.getElementById('_fs_jgikudmntzzfellcytwq_ind_0').style.opacity = 0;document.getElementById('_fb_jgikudmntzzfellcytwq_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.274</div\n",
" ><div id='_tp_jgikudmntzzfellcytwq_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jgikudmntzzfellcytwq_ind_0').style.opacity = 1; document.getElementById('_fs_jgikudmntzzfellcytwq_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jgikudmntzzfellcytwq_ind_0').style.opacity = 0; document.getElementById('_fs_jgikudmntzzfellcytwq_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.951</div\n",
" ><div id='_tp_jgikudmntzzfellcytwq_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.14866310160427798); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jgikudmntzzfellcytwq_ind_1').style.opacity = 1; document.getElementById('_fs_jgikudmntzzfellcytwq_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jgikudmntzzfellcytwq_ind_1').style.opacity = 0; document.getElementById('_fs_jgikudmntzzfellcytwq_ind_1').style.opacity = 0;\"\n",
" >didnt </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.522</div\n",
" ><div id='_tp_jgikudmntzzfellcytwq_ind_2'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.07771836007130124); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jgikudmntzzfellcytwq_ind_2').style.opacity = 1; document.getElementById('_fs_jgikudmntzzfellcytwq_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jgikudmntzzfellcytwq_ind_2').style.opacity = 0; document.getElementById('_fs_jgikudmntzzfellcytwq_ind_2').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-6.294</div\n",
" ><div id='_tp_jgikudmntzzfellcytwq_ind_3'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jgikudmntzzfellcytwq_ind_3').style.opacity = 1; document.getElementById('_fs_jgikudmntzzfellcytwq_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jgikudmntzzfellcytwq_ind_3').style.opacity = 0; document.getElementById('_fs_jgikudmntzzfellcytwq_ind_3').style.opacity = 0;\"\n",
" >humiliated</div></div></div></div><div id='_tp_esitufnolwurooqymgga_output_2' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"39.57816809931714%\" y1=\"33\" x2=\"39.57816809931714%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"39.57816809931714%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3.64444</text><text x=\"39.57816809931714%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3.64444</text><text x=\"39.57816809931714%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"23.624436731061888%\" y1=\"33\" x2=\"23.624436731061888%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"23.624436731061888%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.33942</text><text x=\"23.624436731061888%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.33942</text><text x=\"23.624436731061888%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"23.624436731061888%\" width=\"0.0%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><rect transform=\"translate(-8,0)\" x=\"23.624436731061888%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"23.624436731061888%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"23.624436731061888%\" width=\"15.953731368255253%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"23.624436731061888%\" x2=\"35.073389036372845%\" y1=\"60\" y2=\"60\" id=\"_fb_fevomnzkhzvebokrofqw_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"29.348912883717368%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fevomnzkhzvebokrofqw_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-2.652</text><svg x=\"23.624436731061888%\" y=\"40\" height=\"20\" width=\"11.448952305310957%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"35.073389036372845%\" x2=\"36.91854246489581%\" y1=\"60\" y2=\"60\" id=\"_fb_fevomnzkhzvebokrofqw_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"35.995965750634326%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fevomnzkhzvebokrofqw_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.427</text><svg x=\"35.073389036372845%\" y=\"40\" height=\"20\" width=\"1.8451534285229627%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didnt</text> </svg></svg><line x1=\"36.91854246489581%\" x2=\"38.53140355744406%\" y1=\"60\" y2=\"60\" id=\"_fb_fevomnzkhzvebokrofqw_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.724973011169936%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fevomnzkhzvebokrofqw_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.374</text><svg x=\"36.91854246489581%\" y=\"40\" height=\"20\" width=\"1.6128610925482505%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"38.53140355744406%\" x2=\"39.57816809931714%\" y1=\"60\" y2=\"60\" id=\"_fb_fevomnzkhzvebokrofqw_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.0547858283806%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fevomnzkhzvebokrofqw_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.242</text><svg x=\"38.53140355744406%\" y=\"40\" height=\"20\" width=\"1.046764541873081%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"35.073389036372845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"35.073389036372845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"35.073389036372845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"35.073389036372845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.073389036372845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.073389036372845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.073389036372845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.073389036372845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.91854246489581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.91854246489581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.91854246489581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.91854246489581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.91854246489581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.91854246489581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.91854246489581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.91854246489581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.53140355744406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.53140355744406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.53140355744406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.53140355744406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.53140355744406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.53140355744406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.53140355744406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.53140355744406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"23.624436731061888%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"39.57816809931714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"35.073389036372845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"23.624436731061888%\" y=\"40\" height=\"20\" width=\"11.448952305310957%\" onmouseover=\"document.getElementById('_tp_fevomnzkhzvebokrofqw_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_fevomnzkhzvebokrofqw_ind_3').style.opacity = 1;document.getElementById('_fb_fevomnzkhzvebokrofqw_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fevomnzkhzvebokrofqw_ind_3').style.textDecoration = 'none';document.getElementById('_fs_fevomnzkhzvebokrofqw_ind_3').style.opacity = 0;document.getElementById('_fb_fevomnzkhzvebokrofqw_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"36.91854246489581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"35.073389036372845%\" y=\"40\" height=\"20\" width=\"1.8451534285229627%\" onmouseover=\"document.getElementById('_tp_fevomnzkhzvebokrofqw_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_fevomnzkhzvebokrofqw_ind_1').style.opacity = 1;document.getElementById('_fb_fevomnzkhzvebokrofqw_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fevomnzkhzvebokrofqw_ind_1').style.textDecoration = 'none';document.getElementById('_fs_fevomnzkhzvebokrofqw_ind_1').style.opacity = 0;document.getElementById('_fb_fevomnzkhzvebokrofqw_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"38.53140355744406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"36.91854246489581%\" y=\"40\" height=\"20\" width=\"1.6128610925482505%\" onmouseover=\"document.getElementById('_tp_fevomnzkhzvebokrofqw_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_fevomnzkhzvebokrofqw_ind_2').style.opacity = 1;document.getElementById('_fb_fevomnzkhzvebokrofqw_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fevomnzkhzvebokrofqw_ind_2').style.textDecoration = 'none';document.getElementById('_fs_fevomnzkhzvebokrofqw_ind_2').style.opacity = 0;document.getElementById('_fb_fevomnzkhzvebokrofqw_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"38.53140355744406%\" y=\"40\" height=\"20\" width=\"1.046764541873081%\" onmouseover=\"document.getElementById('_tp_fevomnzkhzvebokrofqw_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_fevomnzkhzvebokrofqw_ind_0').style.opacity = 1;document.getElementById('_fb_fevomnzkhzvebokrofqw_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fevomnzkhzvebokrofqw_ind_0').style.textDecoration = 'none';document.getElementById('_fs_fevomnzkhzvebokrofqw_ind_0').style.opacity = 0;document.getElementById('_fb_fevomnzkhzvebokrofqw_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.242</div\n",
" ><div id='_tp_fevomnzkhzvebokrofqw_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fevomnzkhzvebokrofqw_ind_0').style.opacity = 1; document.getElementById('_fs_fevomnzkhzvebokrofqw_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fevomnzkhzvebokrofqw_ind_0').style.opacity = 0; document.getElementById('_fs_fevomnzkhzvebokrofqw_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.427</div\n",
" ><div id='_tp_fevomnzkhzvebokrofqw_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fevomnzkhzvebokrofqw_ind_1').style.opacity = 1; document.getElementById('_fs_fevomnzkhzvebokrofqw_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fevomnzkhzvebokrofqw_ind_1').style.opacity = 0; document.getElementById('_fs_fevomnzkhzvebokrofqw_ind_1').style.opacity = 0;\"\n",
" >didnt </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.374</div\n",
" ><div id='_tp_fevomnzkhzvebokrofqw_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fevomnzkhzvebokrofqw_ind_2').style.opacity = 1; document.getElementById('_fs_fevomnzkhzvebokrofqw_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fevomnzkhzvebokrofqw_ind_2').style.opacity = 0; document.getElementById('_fs_fevomnzkhzvebokrofqw_ind_2').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-2.652</div\n",
" ><div id='_tp_fevomnzkhzvebokrofqw_ind_3'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.3220835809071103); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fevomnzkhzvebokrofqw_ind_3').style.opacity = 1; document.getElementById('_fs_fevomnzkhzvebokrofqw_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fevomnzkhzvebokrofqw_ind_3').style.opacity = 0; document.getElementById('_fs_fevomnzkhzvebokrofqw_ind_3').style.opacity = 0;\"\n",
" >humiliated</div></div></div></div><div id='_tp_esitufnolwurooqymgga_output_2_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"61.09461138881099%\" y1=\"33\" x2=\"61.09461138881099%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"61.09461138881099%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"38.54148342279474%\" y1=\"33\" x2=\"38.54148342279474%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.54148342279474%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"15.988355456778496%\" y1=\"33\" x2=\"15.988355456778496%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"15.988355456778496%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"83.64773935482724%\" y1=\"33\" x2=\"83.64773935482724%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.64773935482724%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"91.66666645992966%\" y1=\"33\" x2=\"91.66666645992966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"91.66666645992966%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3.64444</text><text x=\"91.66666645992966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3.64444</text><text x=\"91.66666645992966%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"8.33333331453906%\" y1=\"33\" x2=\"8.33333331453906%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.33333331453906%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.33942</text><text x=\"8.33333331453906%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.33942</text><text x=\"8.33333331453906%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"8.33333331453906%\" width=\"0.0%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><rect transform=\"translate(-8,0)\" x=\"8.33333331453906%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.33333331453906%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"8.33333331453906%\" width=\"83.3333331453906%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.33333331453906%\" x2=\"68.13623049272482%\" y1=\"60\" y2=\"60\" id=\"_fb_acsnnxabtdreohpsaweh_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.23478190363194%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_acsnnxabtdreohpsaweh_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-2.652</text><svg x=\"8.33333331453906%\" y=\"40\" height=\"20\" width=\"59.80289717818576%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"68.13623049272482%\" x2=\"77.7742757759381%\" y1=\"60\" y2=\"60\" id=\"_fb_acsnnxabtdreohpsaweh_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"72.95525313433146%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_acsnnxabtdreohpsaweh_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.427</text><svg x=\"68.13623049272482%\" y=\"40\" height=\"20\" width=\"9.638045283213273%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didnt</text> </svg></svg><line x1=\"77.7742757759381%\" x2=\"86.19895635003884%\" y1=\"60\" y2=\"60\" id=\"_fb_acsnnxabtdreohpsaweh_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"81.98661606298847%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_acsnnxabtdreohpsaweh_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.374</text><svg x=\"77.7742757759381%\" y=\"40\" height=\"20\" width=\"8.424680574100748%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"86.19895635003884%\" x2=\"91.66666645992966%\" y1=\"60\" y2=\"60\" id=\"_fb_acsnnxabtdreohpsaweh_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.93281140498425%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_acsnnxabtdreohpsaweh_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.242</text><svg x=\"86.19895635003884%\" y=\"40\" height=\"20\" width=\"5.467710109890817%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"68.13623049272482%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"68.13623049272482%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"68.13623049272482%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"68.13623049272482%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"68.13623049272482%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"68.13623049272482%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"68.13623049272482%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"68.13623049272482%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"77.7742757759381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"77.7742757759381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"77.7742757759381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"77.7742757759381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"77.7742757759381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"77.7742757759381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"77.7742757759381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"77.7742757759381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.19895635003884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.19895635003884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.19895635003884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.19895635003884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.19895635003884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.19895635003884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.19895635003884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.19895635003884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"8.33333331453906%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666645992966%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"68.13623049272482%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"8.33333331453906%\" y=\"40\" height=\"20\" width=\"59.80289717818576%\" onmouseover=\"document.getElementById('_tp_acsnnxabtdreohpsaweh_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_acsnnxabtdreohpsaweh_ind_3').style.opacity = 1;document.getElementById('_fb_acsnnxabtdreohpsaweh_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_acsnnxabtdreohpsaweh_ind_3').style.textDecoration = 'none';document.getElementById('_fs_acsnnxabtdreohpsaweh_ind_3').style.opacity = 0;document.getElementById('_fb_acsnnxabtdreohpsaweh_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"77.7742757759381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"68.13623049272482%\" y=\"40\" height=\"20\" width=\"9.638045283213273%\" onmouseover=\"document.getElementById('_tp_acsnnxabtdreohpsaweh_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_acsnnxabtdreohpsaweh_ind_1').style.opacity = 1;document.getElementById('_fb_acsnnxabtdreohpsaweh_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_acsnnxabtdreohpsaweh_ind_1').style.textDecoration = 'none';document.getElementById('_fs_acsnnxabtdreohpsaweh_ind_1').style.opacity = 0;document.getElementById('_fb_acsnnxabtdreohpsaweh_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.19895635003884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"77.7742757759381%\" y=\"40\" height=\"20\" width=\"8.424680574100748%\" onmouseover=\"document.getElementById('_tp_acsnnxabtdreohpsaweh_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_acsnnxabtdreohpsaweh_ind_2').style.opacity = 1;document.getElementById('_fb_acsnnxabtdreohpsaweh_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_acsnnxabtdreohpsaweh_ind_2').style.textDecoration = 'none';document.getElementById('_fs_acsnnxabtdreohpsaweh_ind_2').style.opacity = 0;document.getElementById('_fb_acsnnxabtdreohpsaweh_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"86.19895635003884%\" y=\"40\" height=\"20\" width=\"5.467710109890817%\" onmouseover=\"document.getElementById('_tp_acsnnxabtdreohpsaweh_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_acsnnxabtdreohpsaweh_ind_0').style.opacity = 1;document.getElementById('_fb_acsnnxabtdreohpsaweh_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_acsnnxabtdreohpsaweh_ind_0').style.textDecoration = 'none';document.getElementById('_fs_acsnnxabtdreohpsaweh_ind_0').style.opacity = 0;document.getElementById('_fb_acsnnxabtdreohpsaweh_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.242</div\n",
" ><div id='_tp_acsnnxabtdreohpsaweh_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.08560110913052085); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_acsnnxabtdreohpsaweh_ind_0').style.opacity = 1; document.getElementById('_fs_acsnnxabtdreohpsaweh_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_acsnnxabtdreohpsaweh_ind_0').style.opacity = 0; document.getElementById('_fs_acsnnxabtdreohpsaweh_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.427</div\n",
" ><div id='_tp_acsnnxabtdreohpsaweh_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1565458506634977); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_acsnnxabtdreohpsaweh_ind_1').style.opacity = 1; document.getElementById('_fs_acsnnxabtdreohpsaweh_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_acsnnxabtdreohpsaweh_ind_1').style.opacity = 0; document.getElementById('_fs_acsnnxabtdreohpsaweh_ind_1').style.opacity = 0;\"\n",
" >didnt </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.374</div\n",
" ><div id='_tp_acsnnxabtdreohpsaweh_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.14078035254505836); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_acsnnxabtdreohpsaweh_ind_2').style.opacity = 1; document.getElementById('_fs_acsnnxabtdreohpsaweh_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_acsnnxabtdreohpsaweh_ind_2').style.opacity = 0; document.getElementById('_fs_acsnnxabtdreohpsaweh_ind_2').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-2.652</div\n",
" ><div id='_tp_acsnnxabtdreohpsaweh_ind_3'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_acsnnxabtdreohpsaweh_ind_3').style.opacity = 1; document.getElementById('_fs_acsnnxabtdreohpsaweh_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_acsnnxabtdreohpsaweh_ind_3').style.opacity = 0; document.getElementById('_fs_acsnnxabtdreohpsaweh_ind_3').style.opacity = 0;\"\n",
" >humiliated</div></div></div></div><div id='_tp_esitufnolwurooqymgga_output_3' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"52.41530039676885%\" y1=\"33\" x2=\"52.41530039676885%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"52.41530039676885%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.671287</text><text x=\"52.41530039676885%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.671287</text><text x=\"52.41530039676885%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"26.398625164854263%\" y1=\"33\" x2=\"26.398625164854263%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"26.398625164854263%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.6969</text><text x=\"26.398625164854263%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.6969</text><text x=\"26.398625164854263%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"22.548865303196678%\" width=\"3.8497598616575863%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"23.87557669270688%\" x2=\"26.398625164854263%\" y1=\"60\" y2=\"60\" id=\"_fb_fmkwsinlegojbcycecns_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"25.13710092878057%\" y=\"71\" font-size=\"12px\" id=\"_fs_fmkwsinlegojbcycecns_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.584</text><svg x=\"23.87557669270688%\" y=\"40\" height=\"20\" width=\"2.5230484721473836%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didnt</text> </svg></svg><line x1=\"22.548865303196678%\" x2=\"23.87557669270688%\" y1=\"60\" y2=\"60\" id=\"_fb_fmkwsinlegojbcycecns_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"23.21222099795178%\" y=\"71\" font-size=\"12px\" id=\"_fs_fmkwsinlegojbcycecns_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.307</text><svg x=\"22.548865303196678%\" y=\"40\" height=\"20\" width=\"1.3267113895102014%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"23.87557669270688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"23.87557669270688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"23.87557669270688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"23.87557669270688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"23.87557669270688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"23.87557669270688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"23.87557669270688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"23.87557669270688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"26.398625164854263%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"22.548865303196678%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"26.398625164854263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"23.87557669270688%\" y=\"40\" height=\"20\" width=\"2.5230484721473836%\" onmouseover=\"document.getElementById('_tp_fmkwsinlegojbcycecns_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_fmkwsinlegojbcycecns_ind_1').style.opacity = 1;document.getElementById('_fb_fmkwsinlegojbcycecns_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmkwsinlegojbcycecns_ind_1').style.textDecoration = 'none';document.getElementById('_fs_fmkwsinlegojbcycecns_ind_1').style.opacity = 0;document.getElementById('_fb_fmkwsinlegojbcycecns_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"22.548865303196678%\" y=\"40\" height=\"20\" width=\"1.3267113895102014%\" onmouseover=\"document.getElementById('_tp_fmkwsinlegojbcycecns_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_fmkwsinlegojbcycecns_ind_0').style.opacity = 1;document.getElementById('_fb_fmkwsinlegojbcycecns_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmkwsinlegojbcycecns_ind_0').style.textDecoration = 'none';document.getElementById('_fs_fmkwsinlegojbcycecns_ind_0').style.opacity = 0;document.getElementById('_fb_fmkwsinlegojbcycecns_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"26.398625164854263%\" width=\"29.86643509357218%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"26.398625164854263%\" x2=\"42.002206884420936%\" y1=\"60\" y2=\"60\" id=\"_fb_fmkwsinlegojbcycecns_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"34.2004160246376%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fmkwsinlegojbcycecns_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-3.614</text><svg x=\"26.398625164854263%\" y=\"40\" height=\"20\" width=\"15.603581719566673%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"42.002206884420936%\" x2=\"56.26506025842644%\" y1=\"60\" y2=\"60\" id=\"_fb_fmkwsinlegojbcycecns_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"49.13363357142369%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fmkwsinlegojbcycecns_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-3.303</text><svg x=\"42.002206884420936%\" y=\"40\" height=\"20\" width=\"14.262853374005502%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"42.002206884420936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.002206884420936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.002206884420936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.002206884420936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.002206884420936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.002206884420936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.002206884420936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.002206884420936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"26.398625164854263%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"56.26506025842644%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"42.002206884420936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"26.398625164854263%\" y=\"40\" height=\"20\" width=\"15.603581719566673%\" onmouseover=\"document.getElementById('_tp_fmkwsinlegojbcycecns_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_fmkwsinlegojbcycecns_ind_3').style.opacity = 1;document.getElementById('_fb_fmkwsinlegojbcycecns_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmkwsinlegojbcycecns_ind_3').style.textDecoration = 'none';document.getElementById('_fs_fmkwsinlegojbcycecns_ind_3').style.opacity = 0;document.getElementById('_fb_fmkwsinlegojbcycecns_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"42.002206884420936%\" y=\"40\" height=\"20\" width=\"14.262853374005502%\" onmouseover=\"document.getElementById('_tp_fmkwsinlegojbcycecns_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_fmkwsinlegojbcycecns_ind_2').style.opacity = 1;document.getElementById('_fb_fmkwsinlegojbcycecns_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmkwsinlegojbcycecns_ind_2').style.textDecoration = 'none';document.getElementById('_fs_fmkwsinlegojbcycecns_ind_2').style.opacity = 0;document.getElementById('_fb_fmkwsinlegojbcycecns_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.307</div\n",
" ><div id='_tp_fmkwsinlegojbcycecns_ind_0'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fmkwsinlegojbcycecns_ind_0').style.opacity = 1; document.getElementById('_fs_fmkwsinlegojbcycecns_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fmkwsinlegojbcycecns_ind_0').style.opacity = 0; document.getElementById('_fs_fmkwsinlegojbcycecns_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.584</div\n",
" ><div id='_tp_fmkwsinlegojbcycecns_ind_1'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06983561101208159); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fmkwsinlegojbcycecns_ind_1').style.opacity = 1; document.getElementById('_fs_fmkwsinlegojbcycecns_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fmkwsinlegojbcycecns_ind_1').style.opacity = 0; document.getElementById('_fs_fmkwsinlegojbcycecns_ind_1').style.opacity = 0;\"\n",
" >didnt </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-3.303</div\n",
" ><div id='_tp_fmkwsinlegojbcycecns_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.40091107149930677); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fmkwsinlegojbcycecns_ind_2').style.opacity = 1; document.getElementById('_fs_fmkwsinlegojbcycecns_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fmkwsinlegojbcycecns_ind_2').style.opacity = 0; document.getElementById('_fs_fmkwsinlegojbcycecns_ind_2').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-3.614</div\n",
" ><div id='_tp_fmkwsinlegojbcycecns_ind_3'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.440324816795405); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fmkwsinlegojbcycecns_ind_3').style.opacity = 1; document.getElementById('_fs_fmkwsinlegojbcycecns_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fmkwsinlegojbcycecns_ind_3').style.opacity = 0; document.getElementById('_fs_fmkwsinlegojbcycecns_ind_3').style.opacity = 0;\"\n",
" >humiliated</div></div></div></div><div id='_tp_esitufnolwurooqymgga_output_3_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"46.62878028976429%\" y1=\"33\" x2=\"46.62878028976429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"46.62878028976429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"35.95715657928974%\" y1=\"33\" x2=\"35.95715657928974%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"35.95715657928974%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"25.285532868815185%\" y1=\"33\" x2=\"25.285532868815185%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.285532868815185%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"14.613909158340633%\" y1=\"33\" x2=\"14.613909158340633%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"14.613909158340633%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"57.30040400023885%\" y1=\"33\" x2=\"57.30040400023885%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"57.30040400023885%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"67.9720277107134%\" y1=\"33\" x2=\"67.9720277107134%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"67.9720277107134%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"78.64365142118795%\" y1=\"33\" x2=\"78.64365142118795%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"78.64365142118795%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"89.31527513166252%\" y1=\"33\" x2=\"89.31527513166252%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.31527513166252%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"82.15155604440756%\" y1=\"33\" x2=\"82.15155604440756%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"82.15155604440756%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.671287</text><text x=\"82.15155604440756%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.671287</text><text x=\"82.15155604440756%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"17.8484438488762%\" y1=\"33\" x2=\"17.8484438488762%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"17.8484438488762%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.6969</text><text x=\"17.8484438488762%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.6969</text><text x=\"17.8484438488762%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"8.33333332444031%\" width=\"9.515110524435888%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"11.612448375471589%\" x2=\"17.8484438488762%\" y1=\"60\" y2=\"60\" id=\"_fb_jktbfbknbllqiyhyvedp_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"14.730446112173894%\" y=\"71\" font-size=\"12px\" id=\"_fs_jktbfbknbllqiyhyvedp_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.584</text><svg x=\"11.612448375471589%\" y=\"40\" height=\"20\" width=\"6.235995473404612%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didnt</text> </svg></svg><line x1=\"8.33333332444031%\" x2=\"11.612448375471589%\" y1=\"60\" y2=\"60\" id=\"_fb_jktbfbknbllqiyhyvedp_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.972890849955949%\" y=\"71\" font-size=\"12px\" id=\"_fs_jktbfbknbllqiyhyvedp_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.307</text><svg x=\"8.33333332444031%\" y=\"40\" height=\"20\" width=\"3.279115051031278%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"11.612448375471589%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.612448375471589%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.612448375471589%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.612448375471589%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.612448375471589%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.612448375471589%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.612448375471589%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.612448375471589%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"17.8484438488762%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.33333332444031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"17.8484438488762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.612448375471589%\" y=\"40\" height=\"20\" width=\"6.235995473404612%\" onmouseover=\"document.getElementById('_tp_jktbfbknbllqiyhyvedp_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_jktbfbknbllqiyhyvedp_ind_1').style.opacity = 1;document.getElementById('_fb_jktbfbknbllqiyhyvedp_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jktbfbknbllqiyhyvedp_ind_1').style.textDecoration = 'none';document.getElementById('_fs_jktbfbknbllqiyhyvedp_ind_1').style.opacity = 0;document.getElementById('_fb_jktbfbknbllqiyhyvedp_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.33333332444031%\" y=\"40\" height=\"20\" width=\"3.279115051031278%\" onmouseover=\"document.getElementById('_tp_jktbfbknbllqiyhyvedp_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_jktbfbknbllqiyhyvedp_ind_0').style.opacity = 1;document.getElementById('_fb_jktbfbknbllqiyhyvedp_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jktbfbknbllqiyhyvedp_ind_0').style.textDecoration = 'none';document.getElementById('_fs_jktbfbknbllqiyhyvedp_ind_0').style.opacity = 0;document.getElementById('_fb_jktbfbknbllqiyhyvedp_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"17.8484438488762%\" width=\"73.81822271996725%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"17.8484438488762%\" x2=\"56.41443496885682%\" y1=\"60\" y2=\"60\" id=\"_fb_jktbfbknbllqiyhyvedp_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.13143940886651%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jktbfbknbllqiyhyvedp_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-3.614</text><svg x=\"17.8484438488762%\" y=\"40\" height=\"20\" width=\"38.565991119980616%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"56.41443496885682%\" x2=\"91.66666656884345%\" y1=\"60\" y2=\"60\" id=\"_fb_jktbfbknbllqiyhyvedp_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"74.04055076885014%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jktbfbknbllqiyhyvedp_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-3.303</text><svg x=\"56.41443496885682%\" y=\"40\" height=\"20\" width=\"35.25223159998664%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"56.41443496885682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"56.41443496885682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"56.41443496885682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"56.41443496885682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"56.41443496885682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"56.41443496885682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"56.41443496885682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"56.41443496885682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"17.8484438488762%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666656884345%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"56.41443496885682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"17.8484438488762%\" y=\"40\" height=\"20\" width=\"38.565991119980616%\" onmouseover=\"document.getElementById('_tp_jktbfbknbllqiyhyvedp_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_jktbfbknbllqiyhyvedp_ind_3').style.opacity = 1;document.getElementById('_fb_jktbfbknbllqiyhyvedp_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jktbfbknbllqiyhyvedp_ind_3').style.textDecoration = 'none';document.getElementById('_fs_jktbfbknbllqiyhyvedp_ind_3').style.opacity = 0;document.getElementById('_fb_jktbfbknbllqiyhyvedp_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"56.41443496885682%\" y=\"40\" height=\"20\" width=\"35.25223159998664%\" onmouseover=\"document.getElementById('_tp_jktbfbknbllqiyhyvedp_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_jktbfbknbllqiyhyvedp_ind_2').style.opacity = 1;document.getElementById('_fb_jktbfbknbllqiyhyvedp_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jktbfbknbllqiyhyvedp_ind_2').style.textDecoration = 'none';document.getElementById('_fs_jktbfbknbllqiyhyvedp_ind_2').style.opacity = 0;document.getElementById('_fb_jktbfbknbllqiyhyvedp_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.307</div\n",
" ><div id='_tp_jktbfbknbllqiyhyvedp_ind_0'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.07771836007130124); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jktbfbknbllqiyhyvedp_ind_0').style.opacity = 1; document.getElementById('_fs_jktbfbknbllqiyhyvedp_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jktbfbknbllqiyhyvedp_ind_0').style.opacity = 0; document.getElementById('_fs_jktbfbknbllqiyhyvedp_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.584</div\n",
" ><div id='_tp_jktbfbknbllqiyhyvedp_ind_1'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.15654585066349747); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jktbfbknbllqiyhyvedp_ind_1').style.opacity = 1; document.getElementById('_fs_jktbfbknbllqiyhyvedp_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jktbfbknbllqiyhyvedp_ind_1').style.opacity = 0; document.getElementById('_fs_jktbfbknbllqiyhyvedp_ind_1').style.opacity = 0;\"\n",
" >didnt </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-3.303</div\n",
" ><div id='_tp_jktbfbknbllqiyhyvedp_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.9211725094078036); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jktbfbknbllqiyhyvedp_ind_2').style.opacity = 1; document.getElementById('_fs_jktbfbknbllqiyhyvedp_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jktbfbknbllqiyhyvedp_ind_2').style.opacity = 0; document.getElementById('_fs_jktbfbknbllqiyhyvedp_ind_2').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-3.614</div\n",
" ><div id='_tp_jktbfbknbllqiyhyvedp_ind_3'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jktbfbknbllqiyhyvedp_ind_3').style.opacity = 1; document.getElementById('_fs_jktbfbknbllqiyhyvedp_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jktbfbknbllqiyhyvedp_ind_3').style.opacity = 0; document.getElementById('_fs_jktbfbknbllqiyhyvedp_ind_3').style.opacity = 0;\"\n",
" >humiliated</div></div></div></div><div id='_tp_esitufnolwurooqymgga_output_4' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"43.39125634602455%\" y1=\"33\" x2=\"43.39125634602455%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"43.39125634602455%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.76131</text><text x=\"43.39125634602455%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.76131</text><text x=\"43.39125634602455%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"23.609460804768467%\" y1=\"33\" x2=\"23.609460804768467%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"23.609460804768467%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.34289</text><text x=\"23.609460804768467%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.34289</text><text x=\"23.609460804768467%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"23.473537133899505%\" width=\"0.13592367086896046%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"23.473537133899505%\" x2=\"23.609460804768467%\" y1=\"60\" y2=\"60\" id=\"_fb_fxnwrunlgpkkwbktmdhd_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"23.541498969333986%\" y=\"71\" font-size=\"12px\" id=\"_fs_fxnwrunlgpkkwbktmdhd_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.031</text><svg x=\"23.473537133899505%\" y=\"40\" height=\"20\" width=\"0.13592367086896218%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didnt</text> </svg></svg><rect transform=\"translate(-8,0)\" x=\"23.609460804768467%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"23.473537133899505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"23.473537133899505%\" y=\"40\" height=\"20\" width=\"0.13592367086896218%\" onmouseover=\"document.getElementById('_tp_fxnwrunlgpkkwbktmdhd_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_fxnwrunlgpkkwbktmdhd_ind_1').style.opacity = 1;document.getElementById('_fb_fxnwrunlgpkkwbktmdhd_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fxnwrunlgpkkwbktmdhd_ind_1').style.textDecoration = 'none';document.getElementById('_fs_fxnwrunlgpkkwbktmdhd_ind_1').style.opacity = 0;document.getElementById('_fb_fxnwrunlgpkkwbktmdhd_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"23.609460804768467%\" width=\"19.91771921212504%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"23.609460804768467%\" x2=\"39.8375546324353%\" y1=\"60\" y2=\"60\" id=\"_fb_fxnwrunlgpkkwbktmdhd_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"31.723507718601883%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fxnwrunlgpkkwbktmdhd_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-3.759</text><svg x=\"23.609460804768467%\" y=\"40\" height=\"20\" width=\"16.228093827666832%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"39.8375546324353%\" x2=\"43.348567029594456%\" y1=\"60\" y2=\"60\" id=\"_fb_fxnwrunlgpkkwbktmdhd_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.59306083101488%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fxnwrunlgpkkwbktmdhd_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.813</text><svg x=\"39.8375546324353%\" y=\"40\" height=\"20\" width=\"3.5110123971591563%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"43.348567029594456%\" x2=\"43.5271800168935%\" y1=\"60\" y2=\"60\" id=\"_fb_fxnwrunlgpkkwbktmdhd_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.43787352324398%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fxnwrunlgpkkwbktmdhd_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.041</text><svg x=\"43.348567029594456%\" y=\"40\" height=\"20\" width=\"0.17861298729904718%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"39.8375546324353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.8375546324353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.8375546324353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.8375546324353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.8375546324353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.8375546324353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.8375546324353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.8375546324353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.348567029594456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.348567029594456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.348567029594456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.348567029594456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.348567029594456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.348567029594456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.348567029594456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.348567029594456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"23.609460804768467%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"43.5271800168935%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"39.8375546324353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"23.609460804768467%\" y=\"40\" height=\"20\" width=\"16.228093827666832%\" onmouseover=\"document.getElementById('_tp_fxnwrunlgpkkwbktmdhd_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_fxnwrunlgpkkwbktmdhd_ind_3').style.opacity = 1;document.getElementById('_fb_fxnwrunlgpkkwbktmdhd_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fxnwrunlgpkkwbktmdhd_ind_3').style.textDecoration = 'none';document.getElementById('_fs_fxnwrunlgpkkwbktmdhd_ind_3').style.opacity = 0;document.getElementById('_fb_fxnwrunlgpkkwbktmdhd_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.348567029594456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.8375546324353%\" y=\"40\" height=\"20\" width=\"3.5110123971591563%\" onmouseover=\"document.getElementById('_tp_fxnwrunlgpkkwbktmdhd_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_fxnwrunlgpkkwbktmdhd_ind_2').style.opacity = 1;document.getElementById('_fb_fxnwrunlgpkkwbktmdhd_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fxnwrunlgpkkwbktmdhd_ind_2').style.textDecoration = 'none';document.getElementById('_fs_fxnwrunlgpkkwbktmdhd_ind_2').style.opacity = 0;document.getElementById('_fb_fxnwrunlgpkkwbktmdhd_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"43.348567029594456%\" y=\"40\" height=\"20\" width=\"0.17861298729904718%\" onmouseover=\"document.getElementById('_tp_fxnwrunlgpkkwbktmdhd_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_fxnwrunlgpkkwbktmdhd_ind_0').style.opacity = 1;document.getElementById('_fb_fxnwrunlgpkkwbktmdhd_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fxnwrunlgpkkwbktmdhd_ind_0').style.textDecoration = 'none';document.getElementById('_fs_fxnwrunlgpkkwbktmdhd_ind_0').style.opacity = 0;document.getElementById('_fb_fxnwrunlgpkkwbktmdhd_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.041</div\n",
" ><div id='_tp_fxnwrunlgpkkwbktmdhd_ind_0'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fxnwrunlgpkkwbktmdhd_ind_0').style.opacity = 1; document.getElementById('_fs_fxnwrunlgpkkwbktmdhd_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fxnwrunlgpkkwbktmdhd_ind_0').style.opacity = 0; document.getElementById('_fs_fxnwrunlgpkkwbktmdhd_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.031</div\n",
" ><div id='_tp_fxnwrunlgpkkwbktmdhd_ind_1'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fxnwrunlgpkkwbktmdhd_ind_1').style.opacity = 1; document.getElementById('_fs_fxnwrunlgpkkwbktmdhd_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fxnwrunlgpkkwbktmdhd_ind_1').style.opacity = 0; document.getElementById('_fs_fxnwrunlgpkkwbktmdhd_ind_1').style.opacity = 0;\"\n",
" >didnt </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.813</div\n",
" ><div id='_tp_fxnwrunlgpkkwbktmdhd_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.09348385818974048); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fxnwrunlgpkkwbktmdhd_ind_2').style.opacity = 1; document.getElementById('_fs_fxnwrunlgpkkwbktmdhd_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fxnwrunlgpkkwbktmdhd_ind_2').style.opacity = 0; document.getElementById('_fs_fxnwrunlgpkkwbktmdhd_ind_2').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-3.759</div\n",
" ><div id='_tp_fxnwrunlgpkkwbktmdhd_ind_3'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.46397306397306387); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fxnwrunlgpkkwbktmdhd_ind_3').style.opacity = 1; document.getElementById('_fs_fxnwrunlgpkkwbktmdhd_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fxnwrunlgpkkwbktmdhd_ind_3').style.opacity = 0; document.getElementById('_fs_fxnwrunlgpkkwbktmdhd_ind_3').style.opacity = 0;\"\n",
" >humiliated</div></div></div></div><div id='_tp_esitufnolwurooqymgga_output_4_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.93478128587204%\" y1=\"33\" x2=\"50.93478128587204%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.93478128587204%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"32.99257760004011%\" y1=\"33\" x2=\"32.99257760004011%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"32.99257760004011%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"15.050373914208171%\" y1=\"33\" x2=\"15.050373914208171%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"15.050373914208171%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"68.87698497170398%\" y1=\"33\" x2=\"68.87698497170398%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"68.87698497170398%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"86.81918865753592%\" y1=\"33\" x2=\"86.81918865753592%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"86.81918865753592%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"91.10183283989485%\" y1=\"33\" x2=\"91.10183283989485%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"91.10183283989485%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.76131</text><text x=\"91.10183283989485%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.76131</text><text x=\"91.10183283989485%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"8.898166980683113%\" y1=\"33\" x2=\"8.898166980683113%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.898166980683113%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.34289</text><text x=\"8.898166980683113%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.34289</text><text x=\"8.898166980683113%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"8.333333318381495%\" width=\"0.5648336623016184%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.333333318381495%\" x2=\"8.898166980683113%\" y1=\"60\" y2=\"60\" id=\"_fb_eqvvaknlthgvlgenmozt_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.615750149532303%\" y=\"71\" font-size=\"12px\" id=\"_fs_eqvvaknlthgvlgenmozt_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.031</text><svg x=\"8.333333318381495%\" y=\"40\" height=\"20\" width=\"0.5648336623016181%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didnt</text> </svg></svg><rect transform=\"translate(-8,0)\" x=\"8.898166980683113%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333318381495%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"8.333333318381495%\" y=\"40\" height=\"20\" width=\"0.5648336623016181%\" onmouseover=\"document.getElementById('_tp_eqvvaknlthgvlgenmozt_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_eqvvaknlthgvlgenmozt_ind_1').style.opacity = 1;document.getElementById('_fb_eqvvaknlthgvlgenmozt_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_eqvvaknlthgvlgenmozt_ind_1').style.textDecoration = 'none';document.getElementById('_fs_eqvvaknlthgvlgenmozt_ind_1').style.opacity = 0;document.getElementById('_fb_eqvvaknlthgvlgenmozt_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.898166980683113%\" width=\"82.76849952151336%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.898166980683113%\" x2=\"76.33435090844176%\" y1=\"60\" y2=\"60\" id=\"_fb_eqvvaknlthgvlgenmozt_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.61625894456244%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_eqvvaknlthgvlgenmozt_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-3.759</text><svg x=\"8.898166980683113%\" y=\"40\" height=\"20\" width=\"67.43618392775865%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"76.33435090844176%\" x2=\"90.9244364910013%\" y1=\"60\" y2=\"60\" id=\"_fb_eqvvaknlthgvlgenmozt_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"83.62939369972153%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_eqvvaknlthgvlgenmozt_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.813</text><svg x=\"76.33435090844176%\" y=\"40\" height=\"20\" width=\"14.590085582559539%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"90.9244364910013%\" x2=\"91.66666650219648%\" y1=\"60\" y2=\"60\" id=\"_fb_eqvvaknlthgvlgenmozt_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.29555149659889%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_eqvvaknlthgvlgenmozt_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.041</text><svg x=\"90.9244364910013%\" y=\"40\" height=\"20\" width=\"0.7422300111951756%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"76.33435090844176%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"76.33435090844176%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"76.33435090844176%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"76.33435090844176%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"76.33435090844176%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"76.33435090844176%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"76.33435090844176%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"76.33435090844176%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.9244364910013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.9244364910013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.9244364910013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.9244364910013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.9244364910013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.9244364910013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.9244364910013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.9244364910013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"8.898166980683113%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666650219648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"76.33435090844176%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"8.898166980683113%\" y=\"40\" height=\"20\" width=\"67.43618392775865%\" onmouseover=\"document.getElementById('_tp_eqvvaknlthgvlgenmozt_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_eqvvaknlthgvlgenmozt_ind_3').style.opacity = 1;document.getElementById('_fb_eqvvaknlthgvlgenmozt_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_eqvvaknlthgvlgenmozt_ind_3').style.textDecoration = 'none';document.getElementById('_fs_eqvvaknlthgvlgenmozt_ind_3').style.opacity = 0;document.getElementById('_fb_eqvvaknlthgvlgenmozt_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.9244364910013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"76.33435090844176%\" y=\"40\" height=\"20\" width=\"14.590085582559539%\" onmouseover=\"document.getElementById('_tp_eqvvaknlthgvlgenmozt_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_eqvvaknlthgvlgenmozt_ind_2').style.opacity = 1;document.getElementById('_fb_eqvvaknlthgvlgenmozt_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_eqvvaknlthgvlgenmozt_ind_2').style.textDecoration = 'none';document.getElementById('_fs_eqvvaknlthgvlgenmozt_ind_2').style.opacity = 0;document.getElementById('_fb_eqvvaknlthgvlgenmozt_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"90.9244364910013%\" y=\"40\" height=\"20\" width=\"0.7422300111951756%\" onmouseover=\"document.getElementById('_tp_eqvvaknlthgvlgenmozt_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_eqvvaknlthgvlgenmozt_ind_0').style.opacity = 1;document.getElementById('_fb_eqvvaknlthgvlgenmozt_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_eqvvaknlthgvlgenmozt_ind_0').style.textDecoration = 'none';document.getElementById('_fs_eqvvaknlthgvlgenmozt_ind_0').style.opacity = 0;document.getElementById('_fb_eqvvaknlthgvlgenmozt_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.041</div\n",
" ><div id='_tp_eqvvaknlthgvlgenmozt_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_eqvvaknlthgvlgenmozt_ind_0').style.opacity = 1; document.getElementById('_fs_eqvvaknlthgvlgenmozt_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_eqvvaknlthgvlgenmozt_ind_0').style.opacity = 0; document.getElementById('_fs_eqvvaknlthgvlgenmozt_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.031</div\n",
" ><div id='_tp_eqvvaknlthgvlgenmozt_ind_1'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_eqvvaknlthgvlgenmozt_ind_1').style.opacity = 1; document.getElementById('_fs_eqvvaknlthgvlgenmozt_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_eqvvaknlthgvlgenmozt_ind_1').style.opacity = 0; document.getElementById('_fs_eqvvaknlthgvlgenmozt_ind_1').style.opacity = 0;\"\n",
" >didnt </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.813</div\n",
" ><div id='_tp_eqvvaknlthgvlgenmozt_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.21172509407803525); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_eqvvaknlthgvlgenmozt_ind_2').style.opacity = 1; document.getElementById('_fs_eqvvaknlthgvlgenmozt_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_eqvvaknlthgvlgenmozt_ind_2').style.opacity = 0; document.getElementById('_fs_eqvvaknlthgvlgenmozt_ind_2').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-3.759</div\n",
" ><div id='_tp_eqvvaknlthgvlgenmozt_ind_3'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_eqvvaknlthgvlgenmozt_ind_3').style.opacity = 1; document.getElementById('_fs_eqvvaknlthgvlgenmozt_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_eqvvaknlthgvlgenmozt_ind_3').style.opacity = 0; document.getElementById('_fs_eqvvaknlthgvlgenmozt_ind_3').style.opacity = 0;\"\n",
" >humiliated</div></div></div></div><div id='_tp_esitufnolwurooqymgga_output_5' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"36.66153439463859%\" y1=\"33\" x2=\"36.66153439463859%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"36.66153439463859%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4.31995</text><text x=\"36.66153439463859%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4.31995</text><text x=\"36.66153439463859%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"21.338561494722548%\" y1=\"33\" x2=\"21.338561494722548%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"21.338561494722548%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.86884</text><text x=\"21.338561494722548%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.86884</text><text x=\"21.338561494722548%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"21.338561494722548%\" width=\"0.0%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><rect transform=\"translate(-8,0)\" x=\"21.338561494722548%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"21.338561494722548%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"21.338561494722548%\" width=\"15.322972899916042%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"21.338561494722548%\" x2=\"33.32441614740366%\" y1=\"60\" y2=\"60\" id=\"_fb_lzeepxowgcbgixxafblv_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"27.331488821063104%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_lzeepxowgcbgixxafblv_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-2.776</text><svg x=\"21.338561494722548%\" y=\"40\" height=\"20\" width=\"11.985854652681112%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"33.32441614740366%\" x2=\"35.055892330624445%\" y1=\"60\" y2=\"60\" id=\"_fb_lzeepxowgcbgixxafblv_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"34.19015423901405%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_lzeepxowgcbgixxafblv_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.401</text><svg x=\"33.32441614740366%\" y=\"40\" height=\"20\" width=\"1.731476183220785%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"35.055892330624445%\" x2=\"36.61202057289078%\" y1=\"60\" y2=\"60\" id=\"_fb_lzeepxowgcbgixxafblv_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"35.833956451757615%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_lzeepxowgcbgixxafblv_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.36</text><svg x=\"35.055892330624445%\" y=\"40\" height=\"20\" width=\"1.5561282422663325%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didnt</text> </svg></svg><line x1=\"36.61202057289078%\" x2=\"36.66153439463859%\" y1=\"60\" y2=\"60\" id=\"_fb_lzeepxowgcbgixxafblv_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"36.63677748376469%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_lzeepxowgcbgixxafblv_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.011</text><svg x=\"36.61202057289078%\" y=\"40\" height=\"20\" width=\"0.04951382174781571%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"33.32441614740366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"33.32441614740366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"33.32441614740366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"33.32441614740366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.32441614740366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.32441614740366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.32441614740366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.32441614740366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.055892330624445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"35.055892330624445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"35.055892330624445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"35.055892330624445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.055892330624445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.055892330624445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.055892330624445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.055892330624445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.61202057289078%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.61202057289078%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.61202057289078%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.61202057289078%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.61202057289078%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.61202057289078%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.61202057289078%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.61202057289078%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"21.338561494722548%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"36.66153439463859%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"33.32441614740366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"21.338561494722548%\" y=\"40\" height=\"20\" width=\"11.985854652681112%\" onmouseover=\"document.getElementById('_tp_lzeepxowgcbgixxafblv_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_lzeepxowgcbgixxafblv_ind_3').style.opacity = 1;document.getElementById('_fb_lzeepxowgcbgixxafblv_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_lzeepxowgcbgixxafblv_ind_3').style.textDecoration = 'none';document.getElementById('_fs_lzeepxowgcbgixxafblv_ind_3').style.opacity = 0;document.getElementById('_fb_lzeepxowgcbgixxafblv_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"35.055892330624445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"33.32441614740366%\" y=\"40\" height=\"20\" width=\"1.731476183220785%\" onmouseover=\"document.getElementById('_tp_lzeepxowgcbgixxafblv_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_lzeepxowgcbgixxafblv_ind_2').style.opacity = 1;document.getElementById('_fb_lzeepxowgcbgixxafblv_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_lzeepxowgcbgixxafblv_ind_2').style.textDecoration = 'none';document.getElementById('_fs_lzeepxowgcbgixxafblv_ind_2').style.opacity = 0;document.getElementById('_fb_lzeepxowgcbgixxafblv_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"36.61202057289078%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"35.055892330624445%\" y=\"40\" height=\"20\" width=\"1.5561282422663325%\" onmouseover=\"document.getElementById('_tp_lzeepxowgcbgixxafblv_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_lzeepxowgcbgixxafblv_ind_1').style.opacity = 1;document.getElementById('_fb_lzeepxowgcbgixxafblv_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_lzeepxowgcbgixxafblv_ind_1').style.textDecoration = 'none';document.getElementById('_fs_lzeepxowgcbgixxafblv_ind_1').style.opacity = 0;document.getElementById('_fb_lzeepxowgcbgixxafblv_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"36.61202057289078%\" y=\"40\" height=\"20\" width=\"0.04951382174781571%\" onmouseover=\"document.getElementById('_tp_lzeepxowgcbgixxafblv_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_lzeepxowgcbgixxafblv_ind_0').style.opacity = 1;document.getElementById('_fb_lzeepxowgcbgixxafblv_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_lzeepxowgcbgixxafblv_ind_0').style.textDecoration = 'none';document.getElementById('_fs_lzeepxowgcbgixxafblv_ind_0').style.opacity = 0;document.getElementById('_fb_lzeepxowgcbgixxafblv_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.011</div\n",
" ><div id='_tp_lzeepxowgcbgixxafblv_ind_0'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_lzeepxowgcbgixxafblv_ind_0').style.opacity = 1; document.getElementById('_fs_lzeepxowgcbgixxafblv_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_lzeepxowgcbgixxafblv_ind_0').style.opacity = 0; document.getElementById('_fs_lzeepxowgcbgixxafblv_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.36</div\n",
" ><div id='_tp_lzeepxowgcbgixxafblv_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_lzeepxowgcbgixxafblv_ind_1').style.opacity = 1; document.getElementById('_fs_lzeepxowgcbgixxafblv_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_lzeepxowgcbgixxafblv_ind_1').style.opacity = 0; document.getElementById('_fs_lzeepxowgcbgixxafblv_ind_1').style.opacity = 0;\"\n",
" >didnt </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.401</div\n",
" ><div id='_tp_lzeepxowgcbgixxafblv_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_lzeepxowgcbgixxafblv_ind_2').style.opacity = 1; document.getElementById('_fs_lzeepxowgcbgixxafblv_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_lzeepxowgcbgixxafblv_ind_2').style.opacity = 0; document.getElementById('_fs_lzeepxowgcbgixxafblv_ind_2').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-2.776</div\n",
" ><div id='_tp_lzeepxowgcbgixxafblv_ind_3'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.33784907902554956); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_lzeepxowgcbgixxafblv_ind_3').style.opacity = 1; document.getElementById('_fs_lzeepxowgcbgixxafblv_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_lzeepxowgcbgixxafblv_ind_3').style.opacity = 0; document.getElementById('_fs_lzeepxowgcbgixxafblv_ind_3').style.opacity = 0;\"\n",
" >humiliated</div></div></div></div><div id='_tp_esitufnolwurooqymgga_output_5_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"52.216613594119124%\" y1=\"33\" x2=\"52.216613594119124%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"52.216613594119124%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"28.735103354531358%\" y1=\"33\" x2=\"28.735103354531358%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"28.735103354531358%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"75.69812383370689%\" y1=\"33\" x2=\"75.69812383370689%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"75.69812383370689%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"91.66666645141949%\" y1=\"33\" x2=\"91.66666645141949%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"91.66666645141949%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4.31995</text><text x=\"91.66666645141949%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4.31995</text><text x=\"91.66666645141949%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"8.333333313765408%\" y1=\"33\" x2=\"8.333333313765408%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.333333313765408%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.86884</text><text x=\"8.333333313765408%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.86884</text><text x=\"8.333333313765408%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"8.333333313765408%\" width=\"0.0%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><rect transform=\"translate(-8,0)\" x=\"8.333333313765408%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333313765408%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"8.333333313765408%\" width=\"83.33333313765408%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.333333313765408%\" x2=\"73.51789150852989%\" y1=\"60\" y2=\"60\" id=\"_fb_qpvkpuzhphldpexytnle_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.92561241114765%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qpvkpuzhphldpexytnle_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-2.776</text><svg x=\"8.333333313765408%\" y=\"40\" height=\"20\" width=\"65.18455819476448%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"73.51789150852989%\" x2=\"82.93445071924559%\" y1=\"60\" y2=\"60\" id=\"_fb_qpvkpuzhphldpexytnle_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"78.22617111388774%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qpvkpuzhphldpexytnle_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.401</text><svg x=\"73.51789150852989%\" y=\"40\" height=\"20\" width=\"9.416559210715704%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"82.93445071924559%\" x2=\"91.39738764830605%\" y1=\"60\" y2=\"60\" id=\"_fb_qpvkpuzhphldpexytnle_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.16591918377583%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qpvkpuzhphldpexytnle_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.36</text><svg x=\"82.93445071924559%\" y=\"40\" height=\"20\" width=\"8.462936929060461%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didnt</text> </svg></svg><line x1=\"91.39738764830605%\" x2=\"91.66666645141949%\" y1=\"60\" y2=\"60\" id=\"_fb_qpvkpuzhphldpexytnle_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.53202704986276%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qpvkpuzhphldpexytnle_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.011</text><svg x=\"91.39738764830605%\" y=\"40\" height=\"20\" width=\"0.269278803113437%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"73.51789150852989%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"73.51789150852989%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"73.51789150852989%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"73.51789150852989%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"73.51789150852989%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"73.51789150852989%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"73.51789150852989%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"73.51789150852989%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"82.93445071924559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.93445071924559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.93445071924559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.93445071924559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.93445071924559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.93445071924559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.93445071924559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.93445071924559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.39738764830605%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.39738764830605%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.39738764830605%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.39738764830605%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.39738764830605%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.39738764830605%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.39738764830605%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.39738764830605%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"8.333333313765408%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666645141949%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"73.51789150852989%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"8.333333313765408%\" y=\"40\" height=\"20\" width=\"65.18455819476448%\" onmouseover=\"document.getElementById('_tp_qpvkpuzhphldpexytnle_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_qpvkpuzhphldpexytnle_ind_3').style.opacity = 1;document.getElementById('_fb_qpvkpuzhphldpexytnle_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qpvkpuzhphldpexytnle_ind_3').style.textDecoration = 'none';document.getElementById('_fs_qpvkpuzhphldpexytnle_ind_3').style.opacity = 0;document.getElementById('_fb_qpvkpuzhphldpexytnle_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"82.93445071924559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"73.51789150852989%\" y=\"40\" height=\"20\" width=\"9.416559210715704%\" onmouseover=\"document.getElementById('_tp_qpvkpuzhphldpexytnle_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_qpvkpuzhphldpexytnle_ind_2').style.opacity = 1;document.getElementById('_fb_qpvkpuzhphldpexytnle_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qpvkpuzhphldpexytnle_ind_2').style.textDecoration = 'none';document.getElementById('_fs_qpvkpuzhphldpexytnle_ind_2').style.opacity = 0;document.getElementById('_fb_qpvkpuzhphldpexytnle_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.39738764830605%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.93445071924559%\" y=\"40\" height=\"20\" width=\"8.462936929060461%\" onmouseover=\"document.getElementById('_tp_qpvkpuzhphldpexytnle_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_qpvkpuzhphldpexytnle_ind_1').style.opacity = 1;document.getElementById('_fb_qpvkpuzhphldpexytnle_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qpvkpuzhphldpexytnle_ind_1').style.textDecoration = 'none';document.getElementById('_fs_qpvkpuzhphldpexytnle_ind_1').style.opacity = 0;document.getElementById('_fb_qpvkpuzhphldpexytnle_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.39738764830605%\" y=\"40\" height=\"20\" width=\"0.269278803113437%\" onmouseover=\"document.getElementById('_tp_qpvkpuzhphldpexytnle_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_qpvkpuzhphldpexytnle_ind_0').style.opacity = 1;document.getElementById('_fb_qpvkpuzhphldpexytnle_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qpvkpuzhphldpexytnle_ind_0').style.textDecoration = 'none';document.getElementById('_fs_qpvkpuzhphldpexytnle_ind_0').style.opacity = 0;document.getElementById('_fb_qpvkpuzhphldpexytnle_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.011</div\n",
" ><div id='_tp_qpvkpuzhphldpexytnle_ind_0'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qpvkpuzhphldpexytnle_ind_0').style.opacity = 1; document.getElementById('_fs_qpvkpuzhphldpexytnle_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qpvkpuzhphldpexytnle_ind_0').style.opacity = 0; document.getElementById('_fs_qpvkpuzhphldpexytnle_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.36</div\n",
" ><div id='_tp_qpvkpuzhphldpexytnle_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.12501485442661905); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qpvkpuzhphldpexytnle_ind_1').style.opacity = 1; document.getElementById('_fs_qpvkpuzhphldpexytnle_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qpvkpuzhphldpexytnle_ind_1').style.opacity = 0; document.getElementById('_fs_qpvkpuzhphldpexytnle_ind_1').style.opacity = 0;\"\n",
" >didnt </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.401</div\n",
" ><div id='_tp_qpvkpuzhphldpexytnle_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.14078035254505836); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qpvkpuzhphldpexytnle_ind_2').style.opacity = 1; document.getElementById('_fs_qpvkpuzhphldpexytnle_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qpvkpuzhphldpexytnle_ind_2').style.opacity = 0; document.getElementById('_fs_qpvkpuzhphldpexytnle_ind_2').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-2.776</div\n",
" ><div id='_tp_qpvkpuzhphldpexytnle_ind_3'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_qpvkpuzhphldpexytnle_ind_3').style.opacity = 1; document.getElementById('_fs_qpvkpuzhphldpexytnle_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_qpvkpuzhphldpexytnle_ind_3').style.opacity = 0; document.getElementById('_fs_qpvkpuzhphldpexytnle_ind_3').style.opacity = 0;\"\n",
" >humiliated</div></div></div></div></div>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"\n",
"<br>\n",
"<hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
"<div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[1]</div>\n",
"</div>\n",
" "
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<div align='center'>\n",
"<script>\n",
" document._hover_mjmwmdjkdcajvzkuexbb = '_tp_mjmwmdjkdcajvzkuexbb_output_0';\n",
" document._zoom_mjmwmdjkdcajvzkuexbb = undefined;\n",
" function _output_onclick_mjmwmdjkdcajvzkuexbb(i) {\n",
" var next_id = undefined;\n",
" \n",
" if (document._zoom_mjmwmdjkdcajvzkuexbb !== undefined) {\n",
" document.getElementById(document._zoom_mjmwmdjkdcajvzkuexbb+ '_zoom').style.display = 'none';\n",
" \n",
" if (document._zoom_mjmwmdjkdcajvzkuexbb === '_tp_mjmwmdjkdcajvzkuexbb_output_' + i) {\n",
" document.getElementById(document._zoom_mjmwmdjkdcajvzkuexbb).style.display = 'block';\n",
" document.getElementById(document._zoom_mjmwmdjkdcajvzkuexbb+'_name').style.background = '#dddddd';\n",
" } else {\n",
" document.getElementById(document._zoom_mjmwmdjkdcajvzkuexbb).style.display = 'none';\n",
" document.getElementById(document._zoom_mjmwmdjkdcajvzkuexbb+'_name').style.background = '#ffffff';\n",
" }\n",
" }\n",
" if (document._zoom_mjmwmdjkdcajvzkuexbb !== '_tp_mjmwmdjkdcajvzkuexbb_output_' + i) {\n",
" next_id = '_tp_mjmwmdjkdcajvzkuexbb_output_' + i;\n",
" document.getElementById(next_id).style.display = 'none';\n",
" document.getElementById(next_id + '_zoom').style.display = 'block';\n",
" document.getElementById(next_id+'_name').style.background = '#bbbbbb';\n",
" }\n",
" document._zoom_mjmwmdjkdcajvzkuexbb = next_id;\n",
" }\n",
" function _output_onmouseover_mjmwmdjkdcajvzkuexbb(i, el) {\n",
" if (document._zoom_mjmwmdjkdcajvzkuexbb !== undefined) { return; }\n",
" if (document._hover_mjmwmdjkdcajvzkuexbb !== undefined) {\n",
" document.getElementById(document._hover_mjmwmdjkdcajvzkuexbb + '_name').style.background = '#ffffff';\n",
" document.getElementById(document._hover_mjmwmdjkdcajvzkuexbb).style.display = 'none';\n",
" }\n",
" document.getElementById('_tp_mjmwmdjkdcajvzkuexbb_output_' + i).style.display = 'block';\n",
" el.style.background = '#dddddd';\n",
" document._hover_mjmwmdjkdcajvzkuexbb = '_tp_mjmwmdjkdcajvzkuexbb_output_' + i;\n",
" }\n",
"</script>\n",
"<div style=\"color: rgb(120,120,120); font-size: 12px;\">outputs</div>\n",
"<div style=\"display: inline; background: #dddddd; border-radius: 3px; padding: 0px\" id=\"_tp_mjmwmdjkdcajvzkuexbb_output_0_name\"\n",
" onclick=\"_output_onclick_mjmwmdjkdcajvzkuexbb(0)\"\n",
" onmouseover=\"_output_onmouseover_mjmwmdjkdcajvzkuexbb(0, this);\">sadness</div>\n",
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_mjmwmdjkdcajvzkuexbb_output_1_name\"\n",
" onclick=\"_output_onclick_mjmwmdjkdcajvzkuexbb(1)\"\n",
" onmouseover=\"_output_onmouseover_mjmwmdjkdcajvzkuexbb(1, this);\">joy</div>\n",
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_mjmwmdjkdcajvzkuexbb_output_2_name\"\n",
" onclick=\"_output_onclick_mjmwmdjkdcajvzkuexbb(2)\"\n",
" onmouseover=\"_output_onmouseover_mjmwmdjkdcajvzkuexbb(2, this);\">love</div>\n",
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_mjmwmdjkdcajvzkuexbb_output_3_name\"\n",
" onclick=\"_output_onclick_mjmwmdjkdcajvzkuexbb(3)\"\n",
" onmouseover=\"_output_onmouseover_mjmwmdjkdcajvzkuexbb(3, this);\">anger</div>\n",
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_mjmwmdjkdcajvzkuexbb_output_4_name\"\n",
" onclick=\"_output_onclick_mjmwmdjkdcajvzkuexbb(4)\"\n",
" onmouseover=\"_output_onmouseover_mjmwmdjkdcajvzkuexbb(4, this);\">fear</div>\n",
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_mjmwmdjkdcajvzkuexbb_output_5_name\"\n",
" onclick=\"_output_onclick_mjmwmdjkdcajvzkuexbb(5)\"\n",
" onmouseover=\"_output_onmouseover_mjmwmdjkdcajvzkuexbb(5, this);\">surprise</div><br><br><div id='_tp_mjmwmdjkdcajvzkuexbb_output_0' style='display: block';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"47.359070267296794%\" y1=\"33\" x2=\"47.359070267296794%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"47.359070267296794%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.84234</text><text x=\"47.359070267296794%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.84234</text><text x=\"47.359070267296794%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"78.430018711177%\" y1=\"33\" x2=\"78.430018711177%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"78.430018711177%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5.35388</text><text x=\"78.430018711177%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5.35388</text><text x=\"78.430018711177%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"31.97333159958163%\" width=\"46.45668711159537%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"43.28238949167464%\" x2=\"78.430018711177%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"60.85620410142582%\" y=\"71\" font-size=\"12px\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">8.14</text><svg x=\"43.28238949167464%\" y=\"40\" height=\"20\" width=\"35.147629219502356%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"35.083743855357596%\" x2=\"43.28238949167464%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"39.18306667351612%\" y=\"71\" font-size=\"12px\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.899</text><svg x=\"35.083743855357596%\" y=\"40\" height=\"20\" width=\"8.198645636317046%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"33.83576517071758%\" x2=\"35.083743855357596%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"34.45975451303759%\" y=\"71\" font-size=\"12px\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.289</text><svg x=\"33.83576517071758%\" y=\"40\" height=\"20\" width=\"1.2479786846400174%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"32.59728962517372%\" x2=\"33.83576517071758%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"33.216527397945654%\" y=\"71\" font-size=\"12px\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.287</text><svg x=\"32.59728962517372%\" y=\"40\" height=\"20\" width=\"1.2384755455438565%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"31.97333159958163%\" x2=\"32.59728962517372%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"32.28531061237768%\" y=\"71\" font-size=\"12px\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.145</text><svg x=\"31.97333159958163%\" y=\"40\" height=\"20\" width=\"0.623958025592092%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"43.28238949167464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.28238949167464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"43.28238949167464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"43.28238949167464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.28238949167464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"43.28238949167464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.28238949167464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.28238949167464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.083743855357596%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.083743855357596%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"35.083743855357596%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"35.083743855357596%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.083743855357596%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"35.083743855357596%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.083743855357596%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.083743855357596%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.83576517071758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.83576517071758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"33.83576517071758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"33.83576517071758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"33.83576517071758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"33.83576517071758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.83576517071758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.83576517071758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"32.59728962517372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"32.59728962517372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"32.59728962517372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"32.59728962517372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"32.59728962517372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"32.59728962517372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"32.59728962517372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"32.59728962517372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"78.430018711177%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"31.97333159958163%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"78.430018711177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"43.28238949167464%\" y=\"40\" height=\"20\" width=\"35.147629219502356%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_6').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_6').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_6').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"43.28238949167464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"35.083743855357596%\" y=\"40\" height=\"20\" width=\"8.198645636317046%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_4').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_4').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_4').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"35.083743855357596%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"33.83576517071758%\" y=\"40\" height=\"20\" width=\"1.2479786846400174%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_9').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_9').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_9').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"33.83576517071758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"32.59728962517372%\" y=\"40\" height=\"20\" width=\"1.2384755455438565%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_7').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_7').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_7').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"31.97333159958163%\" y=\"40\" height=\"20\" width=\"0.623958025592092%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_3').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_3').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_3').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"78.430018711177%\" width=\"15.385738667715168%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"78.430018711177%\" x2=\"86.99738668165054%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"82.71370269641378%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.984</text><svg x=\"78.430018711177%\" y=\"40\" height=\"20\" width=\"8.56736797047354%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"86.99738668165054%\" x2=\"88.40530074823664%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.70134371494359%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.326</text><svg x=\"86.99738668165054%\" y=\"40\" height=\"20\" width=\"1.4079140665861019%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"88.40530074823664%\" x2=\"89.19255854064619%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.79892964444142%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.182</text><svg x=\"88.40530074823664%\" y=\"40\" height=\"20\" width=\"0.7872577924095481%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"89.19255854064619%\" x2=\"89.86993769264895%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.53124811664756%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.157</text><svg x=\"89.19255854064619%\" y=\"40\" height=\"20\" width=\"0.6773791520027572%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"89.86993769264895%\" x2=\"90.52493307263416%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.19743538264154%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.152</text><svg x=\"89.86993769264895%\" y=\"40\" height=\"20\" width=\"0.6549953799852091%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"90.52493307263416%\" x2=\"91.15910041586496%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.84201674424955%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.147</text><svg x=\"90.52493307263416%\" y=\"40\" height=\"20\" width=\"0.6341673432307999%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"91.15910041586496%\" x2=\"91.78227698695832%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.47068870141163%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.144</text><svg x=\"91.15910041586496%\" y=\"40\" height=\"20\" width=\"0.6231765710933672%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"91.78227698695832%\" x2=\"92.29280292881315%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"92.03753995788574%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.118</text><svg x=\"91.78227698695832%\" y=\"40\" height=\"20\" width=\"0.5105259418548229%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"92.29280292881315%\" x2=\"92.64086807690035%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"92.46683550285675%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.081</text><svg x=\"92.29280292881315%\" y=\"40\" height=\"20\" width=\"0.34806514808720124%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"92.64086807690035%\" x2=\"92.92454474562581%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"92.78270641126308%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.066</text><svg x=\"92.64086807690035%\" y=\"40\" height=\"20\" width=\"0.2836766687254624%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"92.92454474562581%\" x2=\"93.18512205429661%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.05483339996121%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.06</text><svg x=\"92.92454474562581%\" y=\"40\" height=\"20\" width=\"0.2605773086708041%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"93.18512205429661%\" x2=\"93.42502739514522%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.30507472472092%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.056</text><svg x=\"93.18512205429661%\" y=\"40\" height=\"20\" width=\"0.23990534084860826%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"93.42502739514522%\" x2=\"93.59085373187582%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.50794056351052%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.038</text><svg x=\"93.42502739514522%\" y=\"40\" height=\"20\" width=\"0.16582633673060343%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"93.59085373187582%\" x2=\"93.73294414418405%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.66189893802994%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.033</text><svg x=\"93.59085373187582%\" y=\"40\" height=\"20\" width=\"0.14209041230822095%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"93.73294414418405%\" x2=\"93.78482230650872%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_16\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.75888322534638%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.012</text><svg x=\"93.73294414418405%\" y=\"40\" height=\"20\" width=\"0.051878162324669574%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"93.78482230650872%\" x2=\"93.81575737889216%\" y1=\"60\" y2=\"60\" id=\"_fb_vlgpebjxuphicvbvnrpw_ind_18\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.80028984270044%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vlgpebjxuphicvbvnrpw_ind_18\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.007</text><svg x=\"93.78482230650872%\" y=\"40\" height=\"20\" width=\"0.03093507238344273%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"86.99738668165054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.99738668165054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.99738668165054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.99738668165054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.99738668165054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.99738668165054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.99738668165054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.99738668165054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.40530074823664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.40530074823664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.40530074823664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.40530074823664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.40530074823664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.40530074823664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.40530074823664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.40530074823664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.19255854064619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.19255854064619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.19255854064619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.19255854064619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.19255854064619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.19255854064619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.19255854064619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.19255854064619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.86993769264895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.86993769264895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.86993769264895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.86993769264895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.86993769264895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.86993769264895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.86993769264895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.86993769264895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.52493307263416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.52493307263416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.52493307263416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.52493307263416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.52493307263416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.52493307263416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.52493307263416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.52493307263416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.15910041586496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.15910041586496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.15910041586496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.15910041586496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.15910041586496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.15910041586496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.15910041586496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.15910041586496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.78227698695832%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.78227698695832%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.78227698695832%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.78227698695832%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.78227698695832%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.78227698695832%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.78227698695832%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.78227698695832%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"92.29280292881315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"92.29280292881315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"92.29280292881315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"92.29280292881315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"92.29280292881315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"92.29280292881315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"92.29280292881315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"92.29280292881315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"92.64086807690035%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"92.64086807690035%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"92.64086807690035%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"92.64086807690035%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"92.64086807690035%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"92.64086807690035%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"92.64086807690035%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"92.64086807690035%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"92.92454474562581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"92.92454474562581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"92.92454474562581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"92.92454474562581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"92.92454474562581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"92.92454474562581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"92.92454474562581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"92.92454474562581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"93.18512205429661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"93.18512205429661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"93.18512205429661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"93.18512205429661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"93.18512205429661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"93.18512205429661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"93.18512205429661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"93.18512205429661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"93.42502739514522%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"93.42502739514522%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"93.42502739514522%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"93.42502739514522%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"93.42502739514522%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"93.42502739514522%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"93.42502739514522%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"93.42502739514522%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"93.59085373187582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"93.59085373187582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"93.59085373187582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"93.59085373187582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"93.59085373187582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"93.59085373187582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"93.59085373187582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"93.59085373187582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"93.73294414418405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"93.73294414418405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"93.73294414418405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"93.73294414418405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"93.73294414418405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"93.73294414418405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"93.73294414418405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"93.73294414418405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"93.78482230650872%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"93.78482230650872%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"93.78482230650872%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"93.78482230650872%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"93.78482230650872%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"93.78482230650872%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"93.78482230650872%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"93.78482230650872%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"78.430018711177%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"93.81575737889216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"86.99738668165054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"78.430018711177%\" y=\"40\" height=\"20\" width=\"8.56736797047354%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_10').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_10').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_10').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.40530074823664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.99738668165054%\" y=\"40\" height=\"20\" width=\"1.4079140665861019%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_5').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_5').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_5').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.19255854064619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.40530074823664%\" y=\"40\" height=\"20\" width=\"0.7872577924095481%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_20').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_20').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_20').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.86993769264895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.19255854064619%\" y=\"40\" height=\"20\" width=\"0.6773791520027572%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_17').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_17').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_17').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.52493307263416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.86993769264895%\" y=\"40\" height=\"20\" width=\"0.6549953799852091%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_11').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_11').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_11').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.15910041586496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.52493307263416%\" y=\"40\" height=\"20\" width=\"0.6341673432307999%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_1').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_1').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_1').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.78227698695832%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.15910041586496%\" y=\"40\" height=\"20\" width=\"0.6231765710933672%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_15').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_15').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_15').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"92.29280292881315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.78227698695832%\" y=\"40\" height=\"20\" width=\"0.5105259418548229%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_0').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_0').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_0').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"92.64086807690035%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"92.29280292881315%\" y=\"40\" height=\"20\" width=\"0.34806514808720124%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_8').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_8').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_8').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"92.92454474562581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"92.64086807690035%\" y=\"40\" height=\"20\" width=\"0.2836766687254624%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_14').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_14').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_14').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"93.18512205429661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"92.92454474562581%\" y=\"40\" height=\"20\" width=\"0.2605773086708041%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_2').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_2').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_2').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"93.42502739514522%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"93.18512205429661%\" y=\"40\" height=\"20\" width=\"0.23990534084860826%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_13').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_13').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_13').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"93.59085373187582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"93.42502739514522%\" y=\"40\" height=\"20\" width=\"0.16582633673060343%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_19').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_19').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_19').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"93.73294414418405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"93.59085373187582%\" y=\"40\" height=\"20\" width=\"0.14209041230822095%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_12').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_12').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_12').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"93.78482230650872%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"93.73294414418405%\" y=\"40\" height=\"20\" width=\"0.051878162324669574%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_16').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_16').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_16').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"93.78482230650872%\" y=\"40\" height=\"20\" width=\"0.03093507238344273%\" onmouseover=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_18').style.opacity = 1;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vlgpebjxuphicvbvnrpw_ind_18').style.textDecoration = 'none';document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_18').style.opacity = 0;document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.118</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_0').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_0').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.147</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_1').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_1').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_1').style.opacity = 0;\"\n",
" >can </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.06</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_2'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_2').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_2').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_2').style.opacity = 0;\"\n",
" >go </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.145</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_3').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_3').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_3').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.899</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_4'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.22749059219647458); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_4').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_4').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_4').style.opacity = 0;\"\n",
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.326</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_5').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_5').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_5').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>8.14</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_6'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_6').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_6').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_6').style.opacity = 0;\"\n",
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.287</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_7'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_7').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_7').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_7').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.081</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_8'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_8').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_8').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_8').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.289</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_9'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_9').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_9').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_9').style.opacity = 0;\"\n",
" >damned </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.984</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_10'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.2432560903149138); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_10').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_10').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_10').style.opacity = 0;\"\n",
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.152</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_11'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_11').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_11').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_11').style.opacity = 0;\"\n",
" >just </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.033</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_12'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_12').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_12').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_12').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.056</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_13'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_13').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_13').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_13').style.opacity = 0;\"\n",
" >being </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.066</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_14'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_14').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_14').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_14').style.opacity = 0;\"\n",
" >around </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.144</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_15'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_15').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_15').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_15').style.opacity = 0;\"\n",
" >someone </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.012</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_16'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_16').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_16').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_16').style.opacity = 0;\"\n",
" >who </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.157</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_17'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_17').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_17').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_17').style.opacity = 0;\"\n",
" >cares </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.007</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_18'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_18').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_18').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_18').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.038</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_19'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_19').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_19').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_19').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.182</div\n",
" ><div id='_tp_vlgpebjxuphicvbvnrpw_ind_20'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_20').style.opacity = 1; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_vlgpebjxuphicvbvnrpw_ind_20').style.opacity = 0; document.getElementById('_fs_vlgpebjxuphicvbvnrpw_ind_20').style.opacity = 0;\"\n",
" >awake</div></div></div></div><div id='_tp_mjmwmdjkdcajvzkuexbb_output_0_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"51.420967845325826%\" y1=\"33\" x2=\"51.420967845325826%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"51.420967845325826%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"39.784731357131065%\" y1=\"33\" x2=\"39.784731357131065%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"39.784731357131065%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"28.1484948689363%\" y1=\"33\" x2=\"28.1484948689363%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"28.1484948689363%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"16.512258380741542%\" y1=\"33\" x2=\"16.512258380741542%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"16.512258380741542%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"63.05720433352059%\" y1=\"33\" x2=\"63.05720433352059%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.05720433352059%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4</text><line x1=\"74.69344082171534%\" y1=\"33\" x2=\"74.69344082171534%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"74.69344082171534%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">6</text><line x1=\"86.32967730991011%\" y1=\"33\" x2=\"86.32967730991011%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"86.32967730991011%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"29.06578151552287%\" y1=\"33\" x2=\"29.06578151552287%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"29.06578151552287%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.84234</text><text x=\"29.06578151552287%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.84234</text><text x=\"29.06578151552287%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"70.93421842629594%\" y1=\"33\" x2=\"70.93421842629594%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"70.93421842629594%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5.35388</text><text x=\"70.93421842629594%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5.35388</text><text x=\"70.93421842629594%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"8.3333333284849%\" width=\"62.600885097811044%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"23.572410363117125%\" x2=\"70.93421842629594%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"47.253314394706535%\" y=\"71\" font-size=\"12px\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">8.14</text><svg x=\"23.572410363117125%\" y=\"40\" height=\"20\" width=\"47.36180806317881%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"12.524647267055748%\" x2=\"23.572410363117125%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"18.048528815086435%\" y=\"71\" font-size=\"12px\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.899</text><svg x=\"12.524647267055748%\" y=\"40\" height=\"20\" width=\"11.047763096061377%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"10.84298257895604%\" x2=\"12.524647267055748%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.683814923005894%\" y=\"71\" font-size=\"12px\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.289</text><svg x=\"10.84298257895604%\" y=\"40\" height=\"20\" width=\"1.6816646880997084%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"9.174123472907365%\" x2=\"10.84298257895604%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.008553025931702%\" y=\"71\" font-size=\"12px\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.287</text><svg x=\"9.174123472907365%\" y=\"40\" height=\"20\" width=\"1.668859106048675%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"8.3333333284849%\" x2=\"9.174123472907365%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.753728400696133%\" y=\"71\" font-size=\"12px\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.145</text><svg x=\"8.3333333284849%\" y=\"40\" height=\"20\" width=\"0.8407901444224652%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"23.572410363117125%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"23.572410363117125%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"23.572410363117125%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"23.572410363117125%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"23.572410363117125%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"23.572410363117125%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"23.572410363117125%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"23.572410363117125%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.524647267055748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.524647267055748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.524647267055748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.524647267055748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.524647267055748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.524647267055748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.524647267055748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.524647267055748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.84298257895604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.84298257895604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.84298257895604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.84298257895604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.84298257895604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.84298257895604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.84298257895604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.84298257895604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.174123472907365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.174123472907365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.174123472907365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.174123472907365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.174123472907365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.174123472907365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.174123472907365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.174123472907365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"70.93421842629594%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.3333333284849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"70.93421842629594%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"23.572410363117125%\" y=\"40\" height=\"20\" width=\"47.36180806317881%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_6').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_6').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_6').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"23.572410363117125%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.524647267055748%\" y=\"40\" height=\"20\" width=\"11.047763096061377%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_4').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_4').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_4').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.524647267055748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.84298257895604%\" y=\"40\" height=\"20\" width=\"1.6816646880997084%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_9').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_9').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_9').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.84298257895604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.174123472907365%\" y=\"40\" height=\"20\" width=\"1.668859106048675%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_7').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_7').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_7').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.3333333284849%\" y=\"40\" height=\"20\" width=\"0.8407901444224652%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_3').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_3').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_3').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"70.93421842629594%\" width=\"20.732448187037967%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"70.93421842629594%\" x2=\"82.47883882985495%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"76.70652862807545%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.984</text><svg x=\"70.93421842629594%\" y=\"40\" height=\"20\" width=\"11.544620403559009%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"82.47883882985495%\" x2=\"84.37601816376296%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"83.42742849680896%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.326</text><svg x=\"82.47883882985495%\" y=\"40\" height=\"20\" width=\"1.8971793339080136%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"84.37601816376296%\" x2=\"85.43685649876093%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"84.90643733126194%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.182</text><svg x=\"84.37601816376296%\" y=\"40\" height=\"20\" width=\"1.0608383349979675%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"85.43685649876093%\" x2=\"86.34963218507528%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"85.8932443419181%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.157</text><svg x=\"85.43685649876093%\" y=\"40\" height=\"20\" width=\"0.9127756863143475%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"86.34963218507528%\" x2=\"87.2322454980641%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.7909388415697%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.152</text><svg x=\"86.34963218507528%\" y=\"40\" height=\"20\" width=\"0.8826133129888234%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"87.2322454980641%\" x2=\"88.08679280771217%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.65951915288814%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.147</text><svg x=\"87.2322454980641%\" y=\"40\" height=\"20\" width=\"0.8545473096480691%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"88.08679280771217%\" x2=\"88.92652993380024%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.5066613707562%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.144</text><svg x=\"88.08679280771217%\" y=\"40\" height=\"20\" width=\"0.8397371260880675%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"88.92652993380024%\" x2=\"89.61446912646662%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.27049953013343%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.118</text><svg x=\"88.92652993380024%\" y=\"40\" height=\"20\" width=\"0.6879391926663772%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"89.61446912646662%\" x2=\"90.0834906537576%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.8489798901121%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.081</text><svg x=\"89.61446912646662%\" y=\"40\" height=\"20\" width=\"0.4690215272909768%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"90.0834906537576%\" x2=\"90.46574801320197%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.27461933347979%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.066</text><svg x=\"90.0834906537576%\" y=\"40\" height=\"20\" width=\"0.382257359444381%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"90.46574801320197%\" x2=\"90.81687873675128%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.64131337497662%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.06</text><svg x=\"90.46574801320197%\" y=\"40\" height=\"20\" width=\"0.3511307235493035%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"90.81687873675128%\" x2=\"91.14015376152304%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.97851624913716%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.056</text><svg x=\"90.81687873675128%\" y=\"40\" height=\"20\" width=\"0.3232750247717604%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"91.14015376152304%\" x2=\"91.36360653220655%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.25188014686479%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.038</text><svg x=\"91.14015376152304%\" y=\"40\" height=\"20\" width=\"0.2234527706835081%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"91.36360653220655%\" x2=\"91.55507488966909%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.45934071093782%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.033</text><svg x=\"91.36360653220655%\" y=\"40\" height=\"20\" width=\"0.19146835746253998%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"91.55507488966909%\" x2=\"91.62498127087468%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_16\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.59002808027188%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.012</text><svg x=\"91.55507488966909%\" y=\"40\" height=\"20\" width=\"0.06990638120559822%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"91.62498127087468%\" x2=\"91.66666661333392%\" y1=\"60\" y2=\"60\" id=\"_fb_kunlcmunydfsvztpqwsa_ind_18\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.6458239421043%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kunlcmunydfsvztpqwsa_ind_18\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.007</text><svg x=\"91.62498127087468%\" y=\"40\" height=\"20\" width=\"0.04168534245923183%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"82.47883882985495%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.47883882985495%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.47883882985495%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.47883882985495%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.47883882985495%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.47883882985495%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.47883882985495%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.47883882985495%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"84.37601816376296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"84.37601816376296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"84.37601816376296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"84.37601816376296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"84.37601816376296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"84.37601816376296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"84.37601816376296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"84.37601816376296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.43685649876093%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.43685649876093%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.43685649876093%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.43685649876093%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.43685649876093%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.43685649876093%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.43685649876093%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.43685649876093%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.34963218507528%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.34963218507528%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.34963218507528%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.34963218507528%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.34963218507528%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.34963218507528%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.34963218507528%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.34963218507528%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.2322454980641%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.2322454980641%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.2322454980641%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.2322454980641%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.2322454980641%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.2322454980641%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.2322454980641%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.2322454980641%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.08679280771217%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.08679280771217%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.08679280771217%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.08679280771217%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.08679280771217%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.08679280771217%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.08679280771217%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.08679280771217%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.92652993380024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.92652993380024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.92652993380024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.92652993380024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.92652993380024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.92652993380024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.92652993380024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.92652993380024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.61446912646662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.61446912646662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.61446912646662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.61446912646662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.61446912646662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.61446912646662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.61446912646662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.61446912646662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.0834906537576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.0834906537576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.0834906537576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.0834906537576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.0834906537576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.0834906537576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.0834906537576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.0834906537576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.46574801320197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.46574801320197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.46574801320197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.46574801320197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.46574801320197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.46574801320197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.46574801320197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.46574801320197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.81687873675128%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.81687873675128%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.81687873675128%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.81687873675128%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.81687873675128%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.81687873675128%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.81687873675128%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.81687873675128%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.14015376152304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.14015376152304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.14015376152304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.14015376152304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.14015376152304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.14015376152304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.14015376152304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.14015376152304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.36360653220655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.36360653220655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.36360653220655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.36360653220655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.36360653220655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.36360653220655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.36360653220655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.36360653220655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.55507488966909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.55507488966909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.55507488966909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.55507488966909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.55507488966909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.55507488966909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.55507488966909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.55507488966909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.62498127087468%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.62498127087468%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.62498127087468%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.62498127087468%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.62498127087468%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.62498127087468%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.62498127087468%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.62498127087468%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"70.93421842629594%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666661333392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"82.47883882985495%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"70.93421842629594%\" y=\"40\" height=\"20\" width=\"11.544620403559009%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_10').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_10').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_10').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"84.37601816376296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.47883882985495%\" y=\"40\" height=\"20\" width=\"1.8971793339080136%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_5').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_5').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_5').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.43685649876093%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.37601816376296%\" y=\"40\" height=\"20\" width=\"1.0608383349979675%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_20').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_20').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_20').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.34963218507528%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.43685649876093%\" y=\"40\" height=\"20\" width=\"0.9127756863143475%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_17').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_17').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_17').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.2322454980641%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.34963218507528%\" y=\"40\" height=\"20\" width=\"0.8826133129888234%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_11').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_11').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_11').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.08679280771217%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.2322454980641%\" y=\"40\" height=\"20\" width=\"0.8545473096480691%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_1').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_1').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_1').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.92652993380024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.08679280771217%\" y=\"40\" height=\"20\" width=\"0.8397371260880675%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_15').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_15').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_15').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.61446912646662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.92652993380024%\" y=\"40\" height=\"20\" width=\"0.6879391926663772%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_0').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_0').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_0').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.0834906537576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.61446912646662%\" y=\"40\" height=\"20\" width=\"0.4690215272909768%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_8').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_8').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_8').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.46574801320197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.0834906537576%\" y=\"40\" height=\"20\" width=\"0.382257359444381%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_14').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_14').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_14').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.81687873675128%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.46574801320197%\" y=\"40\" height=\"20\" width=\"0.3511307235493035%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_2').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_2').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_2').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.14015376152304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.81687873675128%\" y=\"40\" height=\"20\" width=\"0.3232750247717604%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_13').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_13').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_13').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.36360653220655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.14015376152304%\" y=\"40\" height=\"20\" width=\"0.2234527706835081%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_19').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_19').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_19').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.55507488966909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.36360653220655%\" y=\"40\" height=\"20\" width=\"0.19146835746253998%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_12').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_12').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_12').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.62498127087468%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.55507488966909%\" y=\"40\" height=\"20\" width=\"0.06990638120559822%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_16').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_16').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_16').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.62498127087468%\" y=\"40\" height=\"20\" width=\"0.04168534245923183%\" onmouseover=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_18').style.opacity = 1;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kunlcmunydfsvztpqwsa_ind_18').style.textDecoration = 'none';document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_18').style.opacity = 0;document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.118</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_0').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_0').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.147</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_1').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_1').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_1').style.opacity = 0;\"\n",
" >can </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.06</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_2'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_2').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_2').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_2').style.opacity = 0;\"\n",
" >go </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.145</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_3').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_3').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_3').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.899</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_4'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.22749059219647458); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_4').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_4').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_4').style.opacity = 0;\"\n",
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.326</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_5').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_5').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_5').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>8.14</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_6'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_6').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_6').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_6').style.opacity = 0;\"\n",
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.287</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_7'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_7').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_7').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_7').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.081</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_8'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_8').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_8').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_8').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.289</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_9'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_9').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_9').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_9').style.opacity = 0;\"\n",
" >damned </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.984</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_10'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.2432560903149138); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_10').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_10').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_10').style.opacity = 0;\"\n",
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.152</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_11'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_11').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_11').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_11').style.opacity = 0;\"\n",
" >just </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.033</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_12'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_12').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_12').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_12').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.056</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_13'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_13').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_13').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_13').style.opacity = 0;\"\n",
" >being </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.066</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_14'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_14').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_14').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_14').style.opacity = 0;\"\n",
" >around </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.144</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_15'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_15').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_15').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_15').style.opacity = 0;\"\n",
" >someone </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.012</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_16'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_16').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_16').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_16').style.opacity = 0;\"\n",
" >who </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.157</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_17'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_17').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_17').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_17').style.opacity = 0;\"\n",
" >cares </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.007</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_18'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_18').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_18').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_18').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.038</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_19'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_19').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_19').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_19').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.182</div\n",
" ><div id='_tp_kunlcmunydfsvztpqwsa_ind_20'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_20').style.opacity = 1; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kunlcmunydfsvztpqwsa_ind_20').style.opacity = 0; document.getElementById('_fs_kunlcmunydfsvztpqwsa_ind_20').style.opacity = 0;\"\n",
" >awake</div></div></div></div><div id='_tp_mjmwmdjkdcajvzkuexbb_output_1' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"54.04331756319791%\" y1=\"33\" x2=\"54.04331756319791%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"54.04331756319791%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.294228</text><text x=\"54.04331756319791%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.294228</text><text x=\"54.04331756319791%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"26.249786198737926%\" y1=\"33\" x2=\"26.249786198737926%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"26.249786198737926%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.73138</text><text x=\"26.249786198737926%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.73138</text><text x=\"26.249786198737926%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"6.691091980161322%\" width=\"19.558694218576605%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"13.66391013352166%\" x2=\"26.249786198737926%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"19.956848166129795%\" y=\"71\" font-size=\"12px\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">2.915</text><svg x=\"13.66391013352166%\" y=\"40\" height=\"20\" width=\"12.585876065216265%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"11.916972403614317%\" x2=\"13.66391013352166%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"12.790441268567989%\" y=\"71\" font-size=\"12px\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.405</text><svg x=\"11.916972403614317%\" y=\"40\" height=\"20\" width=\"1.7469377299073443%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"10.753823617457918%\" x2=\"11.916972403614317%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_17\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.335398010536117%\" y=\"71\" font-size=\"12px\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_17\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.269</text><svg x=\"10.753823617457918%\" y=\"40\" height=\"20\" width=\"1.1631487861563983%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"9.797785309153666%\" x2=\"10.753823617457918%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_20\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.275804463305793%\" y=\"71\" font-size=\"12px\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_20\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.221</text><svg x=\"9.797785309153666%\" y=\"40\" height=\"20\" width=\"0.9560383083042527%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"8.906466856269613%\" x2=\"9.797785309153666%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.352126082711639%\" y=\"71\" font-size=\"12px\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.206</text><svg x=\"8.906466856269613%\" y=\"40\" height=\"20\" width=\"0.8913184528840521%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"8.26405144971843%\" x2=\"8.906466856269613%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.585259152994022%\" y=\"71\" font-size=\"12px\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.149</text><svg x=\"8.26405144971843%\" y=\"40\" height=\"20\" width=\"0.6424154065511836%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"7.696716976494511%\" x2=\"8.26405144971843%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_13\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"7.98038421310647%\" y=\"71\" font-size=\"12px\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_13\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.131</text><svg x=\"7.696716976494511%\" y=\"40\" height=\"20\" width=\"0.5673344732239185%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"7.262017848343614%\" x2=\"7.696716976494511%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"7.479367412419062%\" y=\"71\" font-size=\"12px\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.101</text><svg x=\"7.262017848343614%\" y=\"40\" height=\"20\" width=\"0.4346991281508972%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"6.8540587021424555%\" x2=\"7.262017848343614%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"7.058038275243035%\" y=\"71\" font-size=\"12px\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.094</text><svg x=\"6.8540587021424555%\" y=\"40\" height=\"20\" width=\"0.4079591462011587%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"6.691091980161322%\" x2=\"6.8540587021424555%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"6.772575341151889%\" y=\"71\" font-size=\"12px\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.038</text><svg x=\"6.691091980161322%\" y=\"40\" height=\"20\" width=\"0.1629667219811335%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"13.66391013352166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.66391013352166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.66391013352166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.66391013352166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.66391013352166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.66391013352166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.66391013352166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.66391013352166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.916972403614317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.916972403614317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.916972403614317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.916972403614317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.916972403614317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.916972403614317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.916972403614317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.916972403614317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.753823617457918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.753823617457918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.753823617457918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.753823617457918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.753823617457918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.753823617457918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.753823617457918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.753823617457918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.797785309153666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.797785309153666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.797785309153666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.797785309153666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.797785309153666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.797785309153666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.797785309153666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.797785309153666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.906466856269613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.906466856269613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.906466856269613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.906466856269613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.906466856269613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.906466856269613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.906466856269613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.906466856269613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.26405144971843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.26405144971843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.26405144971843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.26405144971843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.26405144971843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.26405144971843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.26405144971843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.26405144971843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"7.696716976494511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"7.696716976494511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"7.696716976494511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"7.696716976494511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"7.696716976494511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"7.696716976494511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"7.696716976494511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"7.696716976494511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"7.262017848343614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"7.262017848343614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"7.262017848343614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"7.262017848343614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"7.262017848343614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"7.262017848343614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"7.262017848343614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"7.262017848343614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"6.8540587021424555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"6.8540587021424555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"6.8540587021424555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"6.8540587021424555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"6.8540587021424555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"6.8540587021424555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"6.8540587021424555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"6.8540587021424555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"26.249786198737926%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"6.691091980161322%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"26.249786198737926%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.66391013352166%\" y=\"40\" height=\"20\" width=\"12.585876065216265%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_10').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_10').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_10').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"13.66391013352166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.916972403614317%\" y=\"40\" height=\"20\" width=\"1.7469377299073443%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_1').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_1').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_1').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.916972403614317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.753823617457918%\" y=\"40\" height=\"20\" width=\"1.1631487861563983%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_17').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_17').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_17').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.753823617457918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.797785309153666%\" y=\"40\" height=\"20\" width=\"0.9560383083042527%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_20').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_20').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_20').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.797785309153666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.906466856269613%\" y=\"40\" height=\"20\" width=\"0.8913184528840521%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_11').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_11').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_11').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.906466856269613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.26405144971843%\" y=\"40\" height=\"20\" width=\"0.6424154065511836%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_0').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_0').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_0').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.26405144971843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"7.696716976494511%\" y=\"40\" height=\"20\" width=\"0.5673344732239185%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_13').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_13').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_13').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"7.696716976494511%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"7.262017848343614%\" y=\"40\" height=\"20\" width=\"0.4346991281508972%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_5').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_5').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_5').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"7.262017848343614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"6.8540587021424555%\" y=\"40\" height=\"20\" width=\"0.4079591462011587%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_2').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_2').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_2').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"6.691091980161322%\" y=\"40\" height=\"20\" width=\"0.1629667219811335%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_8').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_8').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_8').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"26.249786198737926%\" width=\"47.35222558303659%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"26.249786198737926%\" x2=\"58.46018884178961%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.35498752026377%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-7.46</text><svg x=\"26.249786198737926%\" y=\"40\" height=\"20\" width=\"32.21040264305168%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"58.46018884178961%\" x2=\"67.00757653879579%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"62.7338826902927%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.98</text><svg x=\"58.46018884178961%\" y=\"40\" height=\"20\" width=\"8.54738769700618%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"67.00757653879579%\" x2=\"68.30218199210687%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"67.65487926545133%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.3</text><svg x=\"67.00757653879579%\" y=\"40\" height=\"20\" width=\"1.2946054533110782%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"68.30218199210687%\" x2=\"69.33938464586032%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_16\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"68.82078331898359%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.24</text><svg x=\"68.30218199210687%\" y=\"40\" height=\"20\" width=\"1.0372026537534538%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"69.33938464586032%\" x2=\"70.34076301065039%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"69.84007382825536%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.232</text><svg x=\"69.33938464586032%\" y=\"40\" height=\"20\" width=\"1.001378364790071%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"70.34076301065039%\" x2=\"71.3046099045954%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"70.8226864576229%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.223</text><svg x=\"70.34076301065039%\" y=\"40\" height=\"20\" width=\"0.9638468939450036%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"71.3046099045954%\" x2=\"72.26823733716004%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"71.78642362087771%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.223</text><svg x=\"71.3046099045954%\" y=\"40\" height=\"20\" width=\"0.9636274325646497%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"72.26823733716004%\" x2=\"72.99643928419057%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"72.63233831067531%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.169</text><svg x=\"72.26823733716004%\" y=\"40\" height=\"20\" width=\"0.7282019470305272%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"72.99643928419057%\" x2=\"73.47416082990401%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_18\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"73.23530005704728%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_18\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.111</text><svg x=\"72.99643928419057%\" y=\"40\" height=\"20\" width=\"0.47772154571343606%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"73.47416082990401%\" x2=\"73.60144423343534%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"73.53780253166968%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.029</text><svg x=\"73.47416082990401%\" y=\"40\" height=\"20\" width=\"0.1272834035313366%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"73.60144423343534%\" x2=\"73.60201178177451%\" y1=\"60\" y2=\"60\" id=\"_fb_yhikzegkpvgnrvlgxyyg_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"73.60172800760492%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yhikzegkpvgnrvlgxyyg_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"73.60144423343534%\" y=\"40\" height=\"20\" width=\"0.0005675483391627267%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"58.46018884178961%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"58.46018884178961%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"58.46018884178961%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"58.46018884178961%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"58.46018884178961%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"58.46018884178961%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"58.46018884178961%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"58.46018884178961%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"67.00757653879579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"67.00757653879579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"67.00757653879579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"67.00757653879579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"67.00757653879579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"67.00757653879579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"67.00757653879579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"67.00757653879579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"68.30218199210687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"68.30218199210687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"68.30218199210687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"68.30218199210687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"68.30218199210687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"68.30218199210687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"68.30218199210687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"68.30218199210687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"69.33938464586032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"69.33938464586032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"69.33938464586032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"69.33938464586032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"69.33938464586032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"69.33938464586032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"69.33938464586032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"69.33938464586032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"70.34076301065039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"70.34076301065039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"70.34076301065039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"70.34076301065039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"70.34076301065039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"70.34076301065039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"70.34076301065039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"70.34076301065039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"71.3046099045954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"71.3046099045954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"71.3046099045954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"71.3046099045954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"71.3046099045954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"71.3046099045954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"71.3046099045954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"71.3046099045954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"72.26823733716004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"72.26823733716004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"72.26823733716004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"72.26823733716004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"72.26823733716004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"72.26823733716004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"72.26823733716004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"72.26823733716004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"72.99643928419057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"72.99643928419057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"72.99643928419057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"72.99643928419057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"72.99643928419057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"72.99643928419057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"72.99643928419057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"72.99643928419057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"73.47416082990401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"73.47416082990401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"73.47416082990401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"73.47416082990401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"73.47416082990401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"73.47416082990401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"73.47416082990401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"73.47416082990401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"73.60144423343534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"73.60144423343534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"73.60144423343534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"73.60144423343534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"73.60144423343534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"73.60144423343534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"73.60144423343534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"73.60144423343534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"26.249786198737926%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"73.60201178177451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"58.46018884178961%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"26.249786198737926%\" y=\"40\" height=\"20\" width=\"32.21040264305168%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_6').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_6').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_6').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"67.00757653879579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"58.46018884178961%\" y=\"40\" height=\"20\" width=\"8.54738769700618%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_4').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_4').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_4').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"68.30218199210687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"67.00757653879579%\" y=\"40\" height=\"20\" width=\"1.2946054533110782%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_15').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_15').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_15').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"69.33938464586032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"68.30218199210687%\" y=\"40\" height=\"20\" width=\"1.0372026537534538%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_16').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_16').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_16').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"70.34076301065039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"69.33938464586032%\" y=\"40\" height=\"20\" width=\"1.001378364790071%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_14').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_14').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_14').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"71.3046099045954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"70.34076301065039%\" y=\"40\" height=\"20\" width=\"0.9638468939450036%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_3').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_3').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_3').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"72.26823733716004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"71.3046099045954%\" y=\"40\" height=\"20\" width=\"0.9636274325646497%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_9').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_9').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_9').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"72.99643928419057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"72.26823733716004%\" y=\"40\" height=\"20\" width=\"0.7282019470305272%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_7').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_7').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_7').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"73.47416082990401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"72.99643928419057%\" y=\"40\" height=\"20\" width=\"0.47772154571343606%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_18').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_18').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_18').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"73.60144423343534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"73.47416082990401%\" y=\"40\" height=\"20\" width=\"0.1272834035313366%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_12').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_12').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_12').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"73.60144423343534%\" y=\"40\" height=\"20\" width=\"0.0005675483391627267%\" onmouseover=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_19').style.opacity = 1;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yhikzegkpvgnrvlgxyyg_ind_19').style.textDecoration = 'none';document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_19').style.opacity = 0;document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.149</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_0'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_0').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_0').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.405</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_1'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.04618736383442265); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_1').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_1').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_1').style.opacity = 0;\"\n",
" >can </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.094</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_2'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_2').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_2').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_2').style.opacity = 0;\"\n",
" >go </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.223</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_3'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_3').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_3').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_3').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.98</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_4'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.2432560903149138); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_4').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_4').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_4').style.opacity = 0;\"\n",
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.101</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_5'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_5').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_5').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_5').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-7.46</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_6'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.9211725094078036); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_6').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_6').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_6').style.opacity = 0;\"\n",
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.169</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_7'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_7').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_7').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_7').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.038</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_8'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_8').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_8').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_8').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.223</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_9'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_9').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_9').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_9').style.opacity = 0;\"\n",
" >damned </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>2.915</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_10'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.3536145771439889); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_10').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_10').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_10').style.opacity = 0;\"\n",
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.206</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_11'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_11').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_11').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_11').style.opacity = 0;\"\n",
" >just </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.029</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_12'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_12').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_12').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_12').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.131</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_13'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_13').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_13').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_13').style.opacity = 0;\"\n",
" >being </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.232</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_14'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_14').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_14').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_14').style.opacity = 0;\"\n",
" >around </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.3</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_15'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_15').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_15').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_15').style.opacity = 0;\"\n",
" >someone </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.24</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_16'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_16').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_16').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_16').style.opacity = 0;\"\n",
" >who </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.269</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_17'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_17').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_17').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_17').style.opacity = 0;\"\n",
" >cares </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.111</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_18'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_18').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_18').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_18').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_19'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_19').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_19').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_19').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.221</div\n",
" ><div id='_tp_yhikzegkpvgnrvlgxyyg_ind_20'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_20').style.opacity = 1; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_yhikzegkpvgnrvlgxyyg_ind_20').style.opacity = 0; document.getElementById('_fs_yhikzegkpvgnrvlgxyyg_ind_20').style.opacity = 0;\"\n",
" >awake</div></div></div></div><div id='_tp_mjmwmdjkdcajvzkuexbb_output_1_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"47.381105278429985%\" y1=\"33\" x2=\"47.381105278429985%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"47.381105278429985%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"31.25484893847394%\" y1=\"33\" x2=\"31.25484893847394%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.25484893847394%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"15.128592598517905%\" y1=\"33\" x2=\"15.128592598517905%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"15.128592598517905%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.50736161838603%\" y1=\"33\" x2=\"63.50736161838603%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.50736161838603%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"79.63361795834207%\" y1=\"33\" x2=\"79.63361795834207%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"79.63361795834207%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"67.30118030681722%\" y1=\"33\" x2=\"67.30118030681722%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"67.30118030681722%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.294228</text><text x=\"67.30118030681722%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.294228</text><text x=\"67.30118030681722%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"32.69881963942857%\" y1=\"33\" x2=\"32.69881963942857%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"32.69881963942857%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.73138</text><text x=\"32.69881963942857%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.73138</text><text x=\"32.69881963942857%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"8.348657630157538%\" width=\"24.35016200927104%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"17.029669245659285%\" x2=\"32.69881963942857%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"24.864244442543928%\" y=\"71\" font-size=\"12px\" id=\"_fs_pcukypssonbstoyhsvwc_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">2.915</text><svg x=\"17.029669245659285%\" y=\"40\" height=\"20\" width=\"15.669150393769286%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"14.854768596977443%\" x2=\"17.029669245659285%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"15.942218921318364%\" y=\"71\" font-size=\"12px\" id=\"_fs_pcukypssonbstoyhsvwc_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.405</text><svg x=\"14.854768596977443%\" y=\"40\" height=\"20\" width=\"2.1749006486818416%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"13.406672877126447%\" x2=\"14.854768596977443%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_17\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"14.130720737051945%\" y=\"71\" font-size=\"12px\" id=\"_fs_pcukypssonbstoyhsvwc_ind_17\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.269</text><svg x=\"13.406672877126447%\" y=\"40\" height=\"20\" width=\"1.448095719850997%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"12.21642533635927%\" x2=\"13.406672877126447%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_20\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"12.81154910674286%\" y=\"71\" font-size=\"12px\" id=\"_fs_pcukypssonbstoyhsvwc_ind_20\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.221</text><svg x=\"12.21642533635927%\" y=\"40\" height=\"20\" width=\"1.1902475407671762%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"11.10675265131031%\" x2=\"12.21642533635927%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.66158899383479%\" y=\"71\" font-size=\"12px\" id=\"_fs_pcukypssonbstoyhsvwc_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.206</text><svg x=\"11.10675265131031%\" y=\"40\" height=\"20\" width=\"1.1096726850489596%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"10.306959012125768%\" x2=\"11.10675265131031%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.70685583171804%\" y=\"71\" font-size=\"12px\" id=\"_fs_pcukypssonbstoyhsvwc_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.149</text><svg x=\"10.306959012125768%\" y=\"40\" height=\"20\" width=\"0.7997936391845428%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"9.600639552244555%\" x2=\"10.306959012125768%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_13\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.953799282185162%\" y=\"71\" font-size=\"12px\" id=\"_fs_pcukypssonbstoyhsvwc_ind_13\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.131</text><svg x=\"9.600639552244555%\" y=\"40\" height=\"20\" width=\"0.7063194598812128%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"9.059448301056133%\" x2=\"9.600639552244555%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.330043926650344%\" y=\"71\" font-size=\"12px\" id=\"_fs_pcukypssonbstoyhsvwc_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.101</text><svg x=\"9.059448301056133%\" y=\"40\" height=\"20\" width=\"0.5411912511884225%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"8.551547763722356%\" x2=\"9.059448301056133%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.805498032389245%\" y=\"71\" font-size=\"12px\" id=\"_fs_pcukypssonbstoyhsvwc_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.094</text><svg x=\"8.551547763722356%\" y=\"40\" height=\"20\" width=\"0.5079005373337768%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"8.348657630157538%\" x2=\"8.551547763722356%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.450102696939947%\" y=\"71\" font-size=\"12px\" id=\"_fs_pcukypssonbstoyhsvwc_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.038</text><svg x=\"8.348657630157538%\" y=\"40\" height=\"20\" width=\"0.2028901335648179%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"17.029669245659285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.029669245659285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.029669245659285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.029669245659285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.029669245659285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.029669245659285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.029669245659285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.029669245659285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"14.854768596977443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"14.854768596977443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"14.854768596977443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"14.854768596977443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"14.854768596977443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"14.854768596977443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"14.854768596977443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"14.854768596977443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"13.406672877126447%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.406672877126447%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.406672877126447%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.406672877126447%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.406672877126447%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.406672877126447%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.406672877126447%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.406672877126447%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.21642533635927%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.21642533635927%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.21642533635927%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.21642533635927%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.21642533635927%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.21642533635927%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.21642533635927%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.21642533635927%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.10675265131031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.10675265131031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.10675265131031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.10675265131031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.10675265131031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.10675265131031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.10675265131031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.10675265131031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.306959012125768%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.306959012125768%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.306959012125768%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.306959012125768%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.306959012125768%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.306959012125768%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.306959012125768%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.306959012125768%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.600639552244555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.600639552244555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.600639552244555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.600639552244555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.600639552244555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.600639552244555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.600639552244555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.600639552244555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.059448301056133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.059448301056133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.059448301056133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.059448301056133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.059448301056133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.059448301056133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.059448301056133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.059448301056133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.551547763722356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.551547763722356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.551547763722356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.551547763722356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.551547763722356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.551547763722356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.551547763722356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.551547763722356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"32.69881963942857%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.348657630157538%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"32.69881963942857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.029669245659285%\" y=\"40\" height=\"20\" width=\"15.669150393769286%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_10').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_10').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_10').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.029669245659285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"14.854768596977443%\" y=\"40\" height=\"20\" width=\"2.1749006486818416%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_1').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_1').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_1').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"14.854768596977443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.406672877126447%\" y=\"40\" height=\"20\" width=\"1.448095719850997%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_17').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_17').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_17').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"13.406672877126447%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.21642533635927%\" y=\"40\" height=\"20\" width=\"1.1902475407671762%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_20').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_20').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_20').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.21642533635927%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.10675265131031%\" y=\"40\" height=\"20\" width=\"1.1096726850489596%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_11').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_11').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_11').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.10675265131031%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.306959012125768%\" y=\"40\" height=\"20\" width=\"0.7997936391845428%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_0').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_0').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_0').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.306959012125768%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.600639552244555%\" y=\"40\" height=\"20\" width=\"0.7063194598812128%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_13').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_13').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_13').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.600639552244555%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.059448301056133%\" y=\"40\" height=\"20\" width=\"0.5411912511884225%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_5').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_5').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_5').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.059448301056133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.551547763722356%\" y=\"40\" height=\"20\" width=\"0.5079005373337768%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_2').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_2').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_2').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.348657630157538%\" y=\"40\" height=\"20\" width=\"0.2028901335648179%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_8').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_8').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_8').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"32.69881963942857%\" width=\"58.952522676659676%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"32.69881963942857%\" x2=\"72.80009194201487%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"52.749455790721726%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pcukypssonbstoyhsvwc_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-7.46</text><svg x=\"32.69881963942857%\" y=\"40\" height=\"20\" width=\"40.1012723025863%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"72.80009194201487%\" x2=\"83.44140944778533%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"78.1207506949001%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pcukypssonbstoyhsvwc_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.98</text><svg x=\"72.80009194201487%\" y=\"40\" height=\"20\" width=\"10.64131750577046%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"83.44140944778533%\" x2=\"85.05316594716705%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"84.2472876974762%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pcukypssonbstoyhsvwc_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.3</text><svg x=\"83.44140944778533%\" y=\"40\" height=\"20\" width=\"1.6117564993817126%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"85.05316594716705%\" x2=\"86.3444613870924%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_16\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"85.69881366712971%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pcukypssonbstoyhsvwc_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.24</text><svg x=\"85.05316594716705%\" y=\"40\" height=\"20\" width=\"1.2912954399253493%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"86.3444613870924%\" x2=\"87.59115634242627%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.96780886475933%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pcukypssonbstoyhsvwc_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.232</text><svg x=\"86.3444613870924%\" y=\"40\" height=\"20\" width=\"1.2466949553338793%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"87.59115634242627%\" x2=\"88.79112540771295%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.1911408750696%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pcukypssonbstoyhsvwc_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.223</text><svg x=\"87.59115634242627%\" y=\"40\" height=\"20\" width=\"1.1999690652866803%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"88.79112540771295%\" x2=\"89.9908212482073%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.39097332796013%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pcukypssonbstoyhsvwc_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.223</text><svg x=\"88.79112540771295%\" y=\"40\" height=\"20\" width=\"1.1996958404943427%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"89.9908212482073%\" x2=\"90.89741732192773%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.44411928506752%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pcukypssonbstoyhsvwc_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.169</text><svg x=\"89.9908212482073%\" y=\"40\" height=\"20\" width=\"0.9065960737204364%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"90.89741732192773%\" x2=\"91.49217057607866%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_18\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.1947939490032%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pcukypssonbstoyhsvwc_ind_18\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.111</text><svg x=\"90.89741732192773%\" y=\"40\" height=\"20\" width=\"0.5947532541509304%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"91.49217057607866%\" x2=\"91.65063573036977%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.57140315322422%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pcukypssonbstoyhsvwc_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.029</text><svg x=\"91.49217057607866%\" y=\"40\" height=\"20\" width=\"0.15846515429110752%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"91.65063573036977%\" x2=\"91.65134231608826%\" y1=\"60\" y2=\"60\" id=\"_fb_pcukypssonbstoyhsvwc_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.65098902322902%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pcukypssonbstoyhsvwc_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.65063573036977%\" y=\"40\" height=\"20\" width=\"0.000706585718489805%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"72.80009194201487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"72.80009194201487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"72.80009194201487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"72.80009194201487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"72.80009194201487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"72.80009194201487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"72.80009194201487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"72.80009194201487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"83.44140944778533%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"83.44140944778533%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"83.44140944778533%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"83.44140944778533%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"83.44140944778533%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"83.44140944778533%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"83.44140944778533%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"83.44140944778533%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.05316594716705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.05316594716705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.05316594716705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.05316594716705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.05316594716705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.05316594716705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.05316594716705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.05316594716705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.3444613870924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.3444613870924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.3444613870924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.3444613870924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.3444613870924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.3444613870924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.3444613870924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.3444613870924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.59115634242627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.59115634242627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.59115634242627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.59115634242627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.59115634242627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.59115634242627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.59115634242627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.59115634242627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.79112540771295%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.79112540771295%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.79112540771295%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.79112540771295%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.79112540771295%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.79112540771295%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.79112540771295%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.79112540771295%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.9908212482073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.9908212482073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.9908212482073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.9908212482073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.9908212482073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.9908212482073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.9908212482073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.9908212482073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.89741732192773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.89741732192773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.89741732192773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.89741732192773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.89741732192773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.89741732192773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.89741732192773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.89741732192773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.49217057607866%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.49217057607866%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.49217057607866%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.49217057607866%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.49217057607866%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.49217057607866%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.49217057607866%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.49217057607866%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.65063573036977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.65063573036977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.65063573036977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.65063573036977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.65063573036977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.65063573036977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.65063573036977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.65063573036977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"32.69881963942857%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.65134231608826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"72.80009194201487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"32.69881963942857%\" y=\"40\" height=\"20\" width=\"40.1012723025863%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_6').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_6').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_6').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"83.44140944778533%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"72.80009194201487%\" y=\"40\" height=\"20\" width=\"10.64131750577046%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_4').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_4').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_4').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.05316594716705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"83.44140944778533%\" y=\"40\" height=\"20\" width=\"1.6117564993817126%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_15').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_15').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_15').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.3444613870924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.05316594716705%\" y=\"40\" height=\"20\" width=\"1.2912954399253493%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_16').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_16').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_16').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.59115634242627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.3444613870924%\" y=\"40\" height=\"20\" width=\"1.2466949553338793%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_14').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_14').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_14').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.79112540771295%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.59115634242627%\" y=\"40\" height=\"20\" width=\"1.1999690652866803%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_3').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_3').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_3').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.9908212482073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.79112540771295%\" y=\"40\" height=\"20\" width=\"1.1996958404943427%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_9').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_9').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_9').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.89741732192773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.9908212482073%\" y=\"40\" height=\"20\" width=\"0.9065960737204364%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_7').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_7').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_7').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.49217057607866%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.89741732192773%\" y=\"40\" height=\"20\" width=\"0.5947532541509304%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_18').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_18').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_18').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.65063573036977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.49217057607866%\" y=\"40\" height=\"20\" width=\"0.15846515429110752%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_12').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_12').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_12').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.65063573036977%\" y=\"40\" height=\"20\" width=\"0.000706585718489805%\" onmouseover=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_19').style.opacity = 1;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pcukypssonbstoyhsvwc_ind_19').style.textDecoration = 'none';document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_19').style.opacity = 0;document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.149</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_0'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_0').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_0').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.405</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_1'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.04618736383442265); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_1').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_1').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_1').style.opacity = 0;\"\n",
" >can </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.094</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_2'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_2').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_2').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_2').style.opacity = 0;\"\n",
" >go </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.223</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_3'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_3').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_3').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_3').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.98</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_4'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.25902158843335304); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_4').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_4').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_4').style.opacity = 0;\"\n",
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.101</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_5'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_5').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_5').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_5').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-7.46</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_6'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_6').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_6').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_6').style.opacity = 0;\"\n",
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.169</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_7'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_7').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_7').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_7').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.038</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_8'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_8').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_8').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_8').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.223</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_9'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_9').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_9').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_9').style.opacity = 0;\"\n",
" >damned </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>2.915</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_10'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.39302832244008706); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_10').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_10').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_10').style.opacity = 0;\"\n",
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.206</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_11'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_11').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_11').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_11').style.opacity = 0;\"\n",
" >just </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.029</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_12'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_12').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_12').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_12').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.131</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_13'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_13').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_13').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_13').style.opacity = 0;\"\n",
" >being </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.232</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_14'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_14').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_14').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_14').style.opacity = 0;\"\n",
" >around </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.3</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_15'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_15').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_15').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_15').style.opacity = 0;\"\n",
" >someone </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.24</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_16'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_16').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_16').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_16').style.opacity = 0;\"\n",
" >who </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.269</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_17'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_17').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_17').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_17').style.opacity = 0;\"\n",
" >cares </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.111</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_18'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_18').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_18').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_18').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_19'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_19').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_19').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_19').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.221</div\n",
" ><div id='_tp_pcukypssonbstoyhsvwc_ind_20'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_20').style.opacity = 1; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pcukypssonbstoyhsvwc_ind_20').style.opacity = 0; document.getElementById('_fs_pcukypssonbstoyhsvwc_ind_20').style.opacity = 0;\"\n",
" >awake</div></div></div></div><div id='_tp_mjmwmdjkdcajvzkuexbb_output_2' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"39.57816809931714%\" y1=\"33\" x2=\"39.57816809931714%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"39.57816809931714%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3.64444</text><text x=\"39.57816809931714%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3.64444</text><text x=\"39.57816809931714%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"25.47654334175071%\" y1=\"33\" x2=\"25.47654334175071%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.47654334175071%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.91046</text><text x=\"25.47654334175071%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.91046</text><text x=\"25.47654334175071%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"19.11254837881861%\" width=\"6.3639949629321%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"23.46381707780661%\" x2=\"25.47654334175071%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_17\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"24.47018020977866%\" y=\"71\" font-size=\"12px\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_17\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.466</text><svg x=\"23.46381707780661%\" y=\"40\" height=\"20\" width=\"2.0127262639440993%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"22.049018570136955%\" x2=\"23.46381707780661%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_15\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"22.75641782397178%\" y=\"71\" font-size=\"12px\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_15\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.328</text><svg x=\"22.049018570136955%\" y=\"40\" height=\"20\" width=\"1.414798507669655%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"21.05090222476968%\" x2=\"22.049018570136955%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_18\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"21.54996039745332%\" y=\"71\" font-size=\"12px\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_18\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.231</text><svg x=\"21.05090222476968%\" y=\"40\" height=\"20\" width=\"0.9981163453672757%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"20.289314208963923%\" x2=\"21.05090222476968%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"20.6701082168668%\" y=\"71\" font-size=\"12px\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.176</text><svg x=\"20.289314208963923%\" y=\"40\" height=\"20\" width=\"0.7615880158057564%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"19.831585880301894%\" x2=\"20.289314208963923%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"20.06045004463291%\" y=\"71\" font-size=\"12px\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.106</text><svg x=\"19.831585880301894%\" y=\"40\" height=\"20\" width=\"0.4577283286620286%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"19.483393244119462%\" x2=\"19.831585880301894%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"19.657489562210678%\" y=\"71\" font-size=\"12px\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.081</text><svg x=\"19.483393244119462%\" y=\"40\" height=\"20\" width=\"0.3481926361824321%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"19.223540965149475%\" x2=\"19.483393244119462%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"19.35346710463447%\" y=\"71\" font-size=\"12px\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.06</text><svg x=\"19.223540965149475%\" y=\"40\" height=\"20\" width=\"0.2598522789699871%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"19.159723756205253%\" x2=\"19.223540965149475%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_12\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"19.191632360677364%\" y=\"71\" font-size=\"12px\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_12\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.015</text><svg x=\"19.159723756205253%\" y=\"40\" height=\"20\" width=\"0.06381720894422216%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"19.11254837881861%\" x2=\"19.159723756205253%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"19.13613606751193%\" y=\"71\" font-size=\"12px\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.011</text><svg x=\"19.11254837881861%\" y=\"40\" height=\"20\" width=\"0.0471753773866439%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"23.46381707780661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"23.46381707780661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"23.46381707780661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"23.46381707780661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"23.46381707780661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"23.46381707780661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"23.46381707780661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"23.46381707780661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"22.049018570136955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"22.049018570136955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"22.049018570136955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"22.049018570136955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"22.049018570136955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"22.049018570136955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"22.049018570136955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"22.049018570136955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"21.05090222476968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"21.05090222476968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"21.05090222476968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"21.05090222476968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"21.05090222476968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"21.05090222476968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"21.05090222476968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"21.05090222476968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"20.289314208963923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"20.289314208963923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"20.289314208963923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"20.289314208963923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"20.289314208963923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"20.289314208963923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"20.289314208963923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"20.289314208963923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"19.831585880301894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"19.831585880301894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"19.831585880301894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"19.831585880301894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"19.831585880301894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"19.831585880301894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"19.831585880301894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"19.831585880301894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"19.483393244119462%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"19.483393244119462%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"19.483393244119462%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"19.483393244119462%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"19.483393244119462%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"19.483393244119462%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"19.483393244119462%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"19.483393244119462%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"19.223540965149475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"19.223540965149475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"19.223540965149475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"19.223540965149475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"19.223540965149475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"19.223540965149475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"19.223540965149475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"19.223540965149475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"19.159723756205253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"19.159723756205253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"19.159723756205253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"19.159723756205253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"19.159723756205253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"19.159723756205253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"19.159723756205253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"19.159723756205253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"25.47654334175071%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"19.11254837881861%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"25.47654334175071%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"23.46381707780661%\" y=\"40\" height=\"20\" width=\"2.0127262639440993%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_17').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_17').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_17').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"23.46381707780661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"22.049018570136955%\" y=\"40\" height=\"20\" width=\"1.414798507669655%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_15').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_15').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_15').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"22.049018570136955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"21.05090222476968%\" y=\"40\" height=\"20\" width=\"0.9981163453672757%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_18').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_18').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_18').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"21.05090222476968%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"20.289314208963923%\" y=\"40\" height=\"20\" width=\"0.7615880158057564%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_16').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_16').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_16').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"20.289314208963923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"19.831585880301894%\" y=\"40\" height=\"20\" width=\"0.4577283286620286%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_8').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_8').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_8').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"19.831585880301894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"19.483393244119462%\" y=\"40\" height=\"20\" width=\"0.3481926361824321%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_11').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_11').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_11').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"19.483393244119462%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"19.223540965149475%\" y=\"40\" height=\"20\" width=\"0.2598522789699871%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_3').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_3').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_3').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"19.223540965149475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"19.159723756205253%\" y=\"40\" height=\"20\" width=\"0.06381720894422216%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_12').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_12').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_12').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"19.11254837881861%\" y=\"40\" height=\"20\" width=\"0.0471753773866439%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_7').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_7').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_7').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"25.47654334175071%\" width=\"20.46561972049853%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"25.47654334175071%\" x2=\"31.5919422023945%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"28.534242772072602%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.416</text><svg x=\"25.47654334175071%\" y=\"40\" height=\"20\" width=\"6.11539886064379%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"31.5919422023945%\" x2=\"36.84985772142057%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"34.220899961907534%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.218</text><svg x=\"31.5919422023945%\" y=\"40\" height=\"20\" width=\"5.257915519026071%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"36.84985772142057%\" x2=\"41.222291230612015%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.036074476016296%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.013</text><svg x=\"36.84985772142057%\" y=\"40\" height=\"20\" width=\"4.3724335091914455%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"41.222291230612015%\" x2=\"42.65730148883272%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.939796359722365%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.332</text><svg x=\"41.222291230612015%\" y=\"40\" height=\"20\" width=\"1.4350102582207072%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"42.65730148883272%\" x2=\"43.33328282423418%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.99529215653345%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.157</text><svg x=\"42.65730148883272%\" y=\"40\" height=\"20\" width=\"0.6759813354014597%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"43.33328282423418%\" x2=\"43.98285810365705%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.65807046394562%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.15</text><svg x=\"43.33328282423418%\" y=\"40\" height=\"20\" width=\"0.6495752794228693%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"43.98285810365705%\" x2=\"44.61491311991807%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.29888561178756%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.146</text><svg x=\"43.98285810365705%\" y=\"40\" height=\"20\" width=\"0.6320550162610203%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"44.61491311991807%\" x2=\"45.16638928496559%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.89065120244183%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.128</text><svg x=\"44.61491311991807%\" y=\"40\" height=\"20\" width=\"0.551476165047518%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"45.16638928496559%\" x2=\"45.54010429691434%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.35324679093996%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.087</text><svg x=\"45.16638928496559%\" y=\"40\" height=\"20\" width=\"0.3737150119487538%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"45.54010429691434%\" x2=\"45.83986119664392%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.68998274677914%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.069</text><svg x=\"45.54010429691434%\" y=\"40\" height=\"20\" width=\"0.2997568997295801%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"45.83986119664392%\" x2=\"45.92252647660095%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.88119383662244%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.019</text><svg x=\"45.83986119664392%\" y=\"40\" height=\"20\" width=\"0.08266527995702688%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"45.92252647660095%\" x2=\"45.942163062249236%\" y1=\"60\" y2=\"60\" id=\"_fb_tgkemmwtgazvlfyubncp_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.93234476942509%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tgkemmwtgazvlfyubncp_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"45.92252647660095%\" y=\"40\" height=\"20\" width=\"0.01963658564828563%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"31.5919422023945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"31.5919422023945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"31.5919422023945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"31.5919422023945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"31.5919422023945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"31.5919422023945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"31.5919422023945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"31.5919422023945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.84985772142057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.84985772142057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.84985772142057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.84985772142057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.84985772142057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.84985772142057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.84985772142057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.84985772142057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.222291230612015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.222291230612015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.222291230612015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.222291230612015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.222291230612015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.222291230612015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.222291230612015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.222291230612015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.65730148883272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.65730148883272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.65730148883272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.65730148883272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.65730148883272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.65730148883272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.65730148883272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.65730148883272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.33328282423418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.33328282423418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.33328282423418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.33328282423418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.33328282423418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.33328282423418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.33328282423418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.33328282423418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.98285810365705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.98285810365705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.98285810365705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.98285810365705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.98285810365705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.98285810365705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.98285810365705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.98285810365705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.61491311991807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.61491311991807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.61491311991807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.61491311991807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.61491311991807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.61491311991807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.61491311991807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.61491311991807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.16638928496559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"45.16638928496559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"45.16638928496559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"45.16638928496559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.16638928496559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.16638928496559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.16638928496559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.16638928496559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.54010429691434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"45.54010429691434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"45.54010429691434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"45.54010429691434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.54010429691434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.54010429691434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.54010429691434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.54010429691434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.83986119664392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"45.83986119664392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"45.83986119664392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"45.83986119664392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.83986119664392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.83986119664392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.83986119664392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.83986119664392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.92252647660095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"45.92252647660095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"45.92252647660095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"45.92252647660095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.92252647660095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.92252647660095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.92252647660095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.92252647660095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"25.47654334175071%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"45.942163062249236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"31.5919422023945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"25.47654334175071%\" y=\"40\" height=\"20\" width=\"6.11539886064379%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_10').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_10').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_10').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"36.84985772142057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.5919422023945%\" y=\"40\" height=\"20\" width=\"5.257915519026071%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_4').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_4').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_4').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"41.222291230612015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"36.84985772142057%\" y=\"40\" height=\"20\" width=\"4.3724335091914455%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_6').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_6').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_6').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.65730148883272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.222291230612015%\" y=\"40\" height=\"20\" width=\"1.4350102582207072%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_5').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_5').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_5').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.33328282423418%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.65730148883272%\" y=\"40\" height=\"20\" width=\"0.6759813354014597%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_20').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_20').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_20').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.98285810365705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.33328282423418%\" y=\"40\" height=\"20\" width=\"0.6495752794228693%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_13').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_13').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_13').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.61491311991807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.98285810365705%\" y=\"40\" height=\"20\" width=\"0.6320550162610203%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_0').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_0').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_0').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"45.16638928496559%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.61491311991807%\" y=\"40\" height=\"20\" width=\"0.551476165047518%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_9').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_9').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_9').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"45.54010429691434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"45.16638928496559%\" y=\"40\" height=\"20\" width=\"0.3737150119487538%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_1').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_1').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_1').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"45.83986119664392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"45.54010429691434%\" y=\"40\" height=\"20\" width=\"0.2997568997295801%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_2').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_2').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_2').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"45.92252647660095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"45.83986119664392%\" y=\"40\" height=\"20\" width=\"0.08266527995702688%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_14').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_14').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_14').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"45.92252647660095%\" y=\"40\" height=\"20\" width=\"0.01963658564828563%\" onmouseover=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_19').style.opacity = 1;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tgkemmwtgazvlfyubncp_ind_19').style.textDecoration = 'none';document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_19').style.opacity = 0;document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.146</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_0').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_0').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.087</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_1').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_1').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_1').style.opacity = 0;\"\n",
" >can </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.069</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_2').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_2').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_2').style.opacity = 0;\"\n",
" >go </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.06</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_3'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_3').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_3').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_3').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.218</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_4'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.14866310160427798); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_4').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_4').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_4').style.opacity = 0;\"\n",
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.332</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_5').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_5').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_5').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.013</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_6'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.11713210536739943); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_6').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_6').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_6').style.opacity = 0;\"\n",
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.011</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_7'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_7').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_7').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_7').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.106</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_8'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_8').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_8').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_8').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.128</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_9'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_9').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_9').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_9').style.opacity = 0;\"\n",
" >damned </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.416</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_10'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1723113487819369); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_10').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_10').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_10').style.opacity = 0;\"\n",
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.081</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_11'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_11').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_11').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_11').style.opacity = 0;\"\n",
" >just </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.015</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_12'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_12').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_12').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_12').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.15</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_13'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_13').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_13').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_13').style.opacity = 0;\"\n",
" >being </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.019</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_14'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_14').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_14').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_14').style.opacity = 0;\"\n",
" >around </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.328</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_15'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.03830461477520289); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_15').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_15').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_15').style.opacity = 0;\"\n",
" >someone </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.176</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_16'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_16').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_16').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_16').style.opacity = 0;\"\n",
" >who </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.466</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_17'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.05407011289364243); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_17').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_17').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_17').style.opacity = 0;\"\n",
" >cares </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.231</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_18'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_18').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_18').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_18').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_19'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_19').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_19').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_19').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.157</div\n",
" ><div id='_tp_tgkemmwtgazvlfyubncp_ind_20'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_20').style.opacity = 1; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tgkemmwtgazvlfyubncp_ind_20').style.opacity = 0; document.getElementById('_fs_tgkemmwtgazvlfyubncp_ind_20').style.opacity = 0;\"\n",
" >awake</div></div></div></div><div id='_tp_mjmwmdjkdcajvzkuexbb_output_2_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"53.72052686998502%\" y1=\"33\" x2=\"53.72052686998502%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"53.72052686998502%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"40.3109430356183%\" y1=\"33\" x2=\"40.3109430356183%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"40.3109430356183%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"26.901359201251584%\" y1=\"33\" x2=\"26.901359201251584%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"26.901359201251584%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"13.491775366884864%\" y1=\"33\" x2=\"13.491775366884864%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.491775366884864%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-8</text><line x1=\"67.13011070435174%\" y1=\"33\" x2=\"67.13011070435174%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"67.13011070435174%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"80.53969453871846%\" y1=\"33\" x2=\"80.53969453871846%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"80.53969453871846%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"71.89798482982013%\" y1=\"33\" x2=\"71.89798482982013%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"71.89798482982013%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3.64444</text><text x=\"71.89798482982013%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3.64444</text><text x=\"71.89798482982013%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"28.102015036084033%\" y1=\"33\" x2=\"28.102015036084033%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"28.102015036084033%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.91046</text><text x=\"28.102015036084033%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.91046</text><text x=\"28.102015036084033%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"8.337105959595297%\" width=\"19.764909076488735%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"21.851012036485894%\" x2=\"28.102015036084033%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_17\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"24.976513536284962%\" y=\"71\" font-size=\"12px\" id=\"_fs_jasyorclxfmuycawspab_ind_17\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.466</text><svg x=\"21.851012036485894%\" y=\"40\" height=\"20\" width=\"6.251002999598139%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"17.45701675073869%\" x2=\"21.851012036485894%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_15\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"19.654014393612293%\" y=\"71\" font-size=\"12px\" id=\"_fs_jasyorclxfmuycawspab_ind_15\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.328</text><svg x=\"17.45701675073869%\" y=\"40\" height=\"20\" width=\"4.393995285747206%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"14.35712761995718%\" x2=\"17.45701675073869%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_18\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"15.907072185347934%\" y=\"71\" font-size=\"12px\" id=\"_fs_jasyorclxfmuycawspab_ind_18\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.231</text><svg x=\"14.35712761995718%\" y=\"40\" height=\"20\" width=\"3.0998891307815093%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"11.991833810986451%\" x2=\"14.35712761995718%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.174480715471816%\" y=\"71\" font-size=\"12px\" id=\"_fs_jasyorclxfmuycawspab_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.176</text><svg x=\"11.991833810986451%\" y=\"40\" height=\"20\" width=\"2.365293808970728%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"10.570248965235729%\" x2=\"11.991833810986451%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.28104138811109%\" y=\"71\" font-size=\"12px\" id=\"_fs_jasyorclxfmuycawspab_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.106</text><svg x=\"10.570248965235729%\" y=\"40\" height=\"20\" width=\"1.421584845750722%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"9.488853421189303%\" x2=\"10.570248965235729%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.029551193212516%\" y=\"71\" font-size=\"12px\" id=\"_fs_jasyorclxfmuycawspab_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.081</text><svg x=\"9.488853421189303%\" y=\"40\" height=\"20\" width=\"1.0813955440464262%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"8.681819993747071%\" x2=\"9.488853421189303%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.085336707468187%\" y=\"71\" font-size=\"12px\" id=\"_fs_jasyorclxfmuycawspab_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.06</text><svg x=\"8.681819993747071%\" y=\"40\" height=\"20\" width=\"0.8070334274422315%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"8.483620381766762%\" x2=\"8.681819993747071%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_12\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.582720187756916%\" y=\"71\" font-size=\"12px\" id=\"_fs_jasyorclxfmuycawspab_ind_12\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.015</text><svg x=\"8.483620381766762%\" y=\"40\" height=\"20\" width=\"0.1981996119803089%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"8.337105959595297%\" x2=\"8.483620381766762%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.41036317068103%\" y=\"71\" font-size=\"12px\" id=\"_fs_jasyorclxfmuycawspab_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.011</text><svg x=\"8.337105959595297%\" y=\"40\" height=\"20\" width=\"0.1465144221714656%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"21.851012036485894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"21.851012036485894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"21.851012036485894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"21.851012036485894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"21.851012036485894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"21.851012036485894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"21.851012036485894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"21.851012036485894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"17.45701675073869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.45701675073869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.45701675073869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.45701675073869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.45701675073869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.45701675073869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.45701675073869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.45701675073869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"14.35712761995718%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"14.35712761995718%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"14.35712761995718%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"14.35712761995718%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"14.35712761995718%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"14.35712761995718%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"14.35712761995718%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"14.35712761995718%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.991833810986451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.991833810986451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.991833810986451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.991833810986451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.991833810986451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.991833810986451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.991833810986451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.991833810986451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.570248965235729%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.570248965235729%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.570248965235729%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.570248965235729%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.570248965235729%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.570248965235729%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.570248965235729%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.570248965235729%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.488853421189303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.488853421189303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.488853421189303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.488853421189303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.488853421189303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.488853421189303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.488853421189303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.488853421189303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.681819993747071%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.681819993747071%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.681819993747071%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.681819993747071%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.681819993747071%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.681819993747071%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.681819993747071%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.681819993747071%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.483620381766762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.483620381766762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.483620381766762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.483620381766762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.483620381766762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.483620381766762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.483620381766762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.483620381766762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"28.102015036084033%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.337105959595297%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"28.102015036084033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"21.851012036485894%\" y=\"40\" height=\"20\" width=\"6.251002999598139%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_17').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_17').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_17').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"21.851012036485894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.45701675073869%\" y=\"40\" height=\"20\" width=\"4.393995285747206%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_15').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_15').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_15').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.45701675073869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"14.35712761995718%\" y=\"40\" height=\"20\" width=\"3.0998891307815093%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_18').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_18').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_18').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"14.35712761995718%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.991833810986451%\" y=\"40\" height=\"20\" width=\"2.365293808970728%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_16').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_16').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_16').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.991833810986451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.570248965235729%\" y=\"40\" height=\"20\" width=\"1.421584845750722%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_8').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_8').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_8').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.570248965235729%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.488853421189303%\" y=\"40\" height=\"20\" width=\"1.0813955440464262%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_11').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_11').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_11').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.488853421189303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.681819993747071%\" y=\"40\" height=\"20\" width=\"0.8070334274422315%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_3').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_3').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_3').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.681819993747071%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.483620381766762%\" y=\"40\" height=\"20\" width=\"0.1981996119803089%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_12').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_12').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_12').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.337105959595297%\" y=\"40\" height=\"20\" width=\"0.1465144221714656%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_7').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_7').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_7').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"28.102015036084033%\" width=\"63.56087887022484%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"28.102015036084033%\" x2=\"47.09484943509153%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.59843223558778%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jasyorclxfmuycawspab_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.416</text><svg x=\"28.102015036084033%\" y=\"40\" height=\"20\" width=\"18.9928343990075%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"47.09484943509153%\" x2=\"63.42456414585383%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"55.25970679047268%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jasyorclxfmuycawspab_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.218</text><svg x=\"47.09484943509153%\" y=\"40\" height=\"20\" width=\"16.329714710762296%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"63.42456414585383%\" x2=\"77.0042026049554%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"70.21438337540461%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jasyorclxfmuycawspab_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.013</text><svg x=\"63.42456414585383%\" y=\"40\" height=\"20\" width=\"13.579638459101567%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"77.0042026049554%\" x2=\"81.4609703181236%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"79.2325864615395%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jasyorclxfmuycawspab_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.332</text><svg x=\"77.0042026049554%\" y=\"40\" height=\"20\" width=\"4.456767713168205%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"81.4609703181236%\" x2=\"83.56039209790728%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"82.51068120801544%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jasyorclxfmuycawspab_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.157</text><svg x=\"81.4609703181236%\" y=\"40\" height=\"20\" width=\"2.0994217797836825%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"83.56039209790728%\" x2=\"85.57780355264742%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"84.56909782527735%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jasyorclxfmuycawspab_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.15</text><svg x=\"83.56039209790728%\" y=\"40\" height=\"20\" width=\"2.0174114547401416%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"85.57780355264742%\" x2=\"87.54080163804849%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.55930259534796%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jasyorclxfmuycawspab_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.146</text><svg x=\"85.57780355264742%\" y=\"40\" height=\"20\" width=\"1.9629980854010682%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"87.54080163804849%\" x2=\"89.25354282082797%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.39717222943824%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jasyorclxfmuycawspab_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.128</text><svg x=\"87.54080163804849%\" y=\"40\" height=\"20\" width=\"1.7127411827794816%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"89.25354282082797%\" x2=\"90.41420420957974%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.83387351520386%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jasyorclxfmuycawspab_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.087</text><svg x=\"89.25354282082797%\" y=\"40\" height=\"20\" width=\"1.1606613887517625%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"90.41420420957974%\" x2=\"91.34517098480728%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.87968759719351%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jasyorclxfmuycawspab_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.069</text><svg x=\"90.41420420957974%\" y=\"40\" height=\"20\" width=\"0.9309667752275459%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"91.34517098480728%\" x2=\"91.60190779111366%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.47353938796047%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jasyorclxfmuycawspab_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.019</text><svg x=\"91.34517098480728%\" y=\"40\" height=\"20\" width=\"0.2567368063063782%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"91.60190779111366%\" x2=\"91.66289390630887%\" y1=\"60\" y2=\"60\" id=\"_fb_jasyorclxfmuycawspab_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.63240084871126%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jasyorclxfmuycawspab_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"91.60190779111366%\" y=\"40\" height=\"20\" width=\"0.060986115195206025%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"47.09484943509153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"47.09484943509153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"47.09484943509153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"47.09484943509153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.09484943509153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.09484943509153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.09484943509153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.09484943509153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"63.42456414585383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"63.42456414585383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"63.42456414585383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"63.42456414585383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"63.42456414585383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"63.42456414585383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"63.42456414585383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"63.42456414585383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"77.0042026049554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"77.0042026049554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"77.0042026049554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"77.0042026049554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"77.0042026049554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"77.0042026049554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"77.0042026049554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"77.0042026049554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"81.4609703181236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"81.4609703181236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"81.4609703181236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"81.4609703181236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"81.4609703181236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"81.4609703181236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"81.4609703181236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"81.4609703181236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"83.56039209790728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"83.56039209790728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"83.56039209790728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"83.56039209790728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"83.56039209790728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"83.56039209790728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"83.56039209790728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"83.56039209790728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.57780355264742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.57780355264742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.57780355264742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.57780355264742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.57780355264742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.57780355264742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.57780355264742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.57780355264742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.54080163804849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.54080163804849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.54080163804849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.54080163804849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.54080163804849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.54080163804849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.54080163804849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.54080163804849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.25354282082797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.25354282082797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.25354282082797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.25354282082797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.25354282082797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.25354282082797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.25354282082797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.25354282082797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.41420420957974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.41420420957974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.41420420957974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.41420420957974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.41420420957974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.41420420957974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.41420420957974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.41420420957974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.34517098480728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.34517098480728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.34517098480728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.34517098480728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.34517098480728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.34517098480728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.34517098480728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.34517098480728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.60190779111366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.60190779111366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.60190779111366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.60190779111366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.60190779111366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.60190779111366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.60190779111366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.60190779111366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"28.102015036084033%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66289390630887%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"47.09484943509153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"28.102015036084033%\" y=\"40\" height=\"20\" width=\"18.9928343990075%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_10').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_10').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_10').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"63.42456414585383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"47.09484943509153%\" y=\"40\" height=\"20\" width=\"16.329714710762296%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_4').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_4').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_4').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"77.0042026049554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"63.42456414585383%\" y=\"40\" height=\"20\" width=\"13.579638459101567%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_6').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_6').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_6').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"81.4609703181236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"77.0042026049554%\" y=\"40\" height=\"20\" width=\"4.456767713168205%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_5').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_5').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_5').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"83.56039209790728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"81.4609703181236%\" y=\"40\" height=\"20\" width=\"2.0994217797836825%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_20').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_20').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_20').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.57780355264742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"83.56039209790728%\" y=\"40\" height=\"20\" width=\"2.0174114547401416%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_13').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_13').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_13').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.54080163804849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.57780355264742%\" y=\"40\" height=\"20\" width=\"1.9629980854010682%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_0').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_0').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_0').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.25354282082797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.54080163804849%\" y=\"40\" height=\"20\" width=\"1.7127411827794816%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_9').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_9').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_9').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.41420420957974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.25354282082797%\" y=\"40\" height=\"20\" width=\"1.1606613887517625%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_1').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_1').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_1').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.34517098480728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.41420420957974%\" y=\"40\" height=\"20\" width=\"0.9309667752275459%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_2').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_2').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_2').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.60190779111366%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.34517098480728%\" y=\"40\" height=\"20\" width=\"0.2567368063063782%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_14').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_14').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_14').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.60190779111366%\" y=\"40\" height=\"20\" width=\"0.060986115195206025%\" onmouseover=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_jasyorclxfmuycawspab_ind_19').style.opacity = 1;document.getElementById('_fb_jasyorclxfmuycawspab_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jasyorclxfmuycawspab_ind_19').style.textDecoration = 'none';document.getElementById('_fs_jasyorclxfmuycawspab_ind_19').style.opacity = 0;document.getElementById('_fb_jasyorclxfmuycawspab_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.146</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10136660724896014); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_0').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_0').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.087</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.05407011289364222); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_1').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_1').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_1').style.opacity = 0;\"\n",
" >can </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.069</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_2').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_2').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_2').style.opacity = 0;\"\n",
" >go </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.06</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.03830461477520289); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_3').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_3').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_3').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.218</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_4'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.865993265993266); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_4').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_4').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_4').style.opacity = 0;\"\n",
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.332</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.23537334125569417); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_5').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_5').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_5').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.013</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_6'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.7162210338680927); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_6').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_6').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_6').style.opacity = 0;\"\n",
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.011</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_7'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_7').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_7').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_7').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.106</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_8'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06983561101208159); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_8').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_8').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_8').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.128</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_9'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.08560110913052085); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_9').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_9').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_9').style.opacity = 0;\"\n",
" >damned </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.416</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_10'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_10').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_10').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_10').style.opacity = 0;\"\n",
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.081</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_11'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.05407011289364243); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_11').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_11').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_11').style.opacity = 0;\"\n",
" >just </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.015</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_12'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_12').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_12').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_12').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.15</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_13'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10136660724896014); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_13').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_13').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_13').style.opacity = 0;\"\n",
" >being </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.019</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_14'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_14').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_14').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_14').style.opacity = 0;\"\n",
" >around </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.328</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_15'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.22749059219647458); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_15').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_15').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_15').style.opacity = 0;\"\n",
" >someone </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.176</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_16'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.1171321053673995); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_16').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_16').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_16').style.opacity = 0;\"\n",
" >who </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.466</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_17'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.3299663299663301); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_17').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_17').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_17').style.opacity = 0;\"\n",
" >cares </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.231</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_18'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.15654585066349747); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_18').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_18').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_18').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_19'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_19').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_19').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_19').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.157</div\n",
" ><div id='_tp_jasyorclxfmuycawspab_ind_20'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10924935630817977); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_20').style.opacity = 1; document.getElementById('_fs_jasyorclxfmuycawspab_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jasyorclxfmuycawspab_ind_20').style.opacity = 0; document.getElementById('_fs_jasyorclxfmuycawspab_ind_20').style.opacity = 0;\"\n",
" >awake</div></div></div></div><div id='_tp_mjmwmdjkdcajvzkuexbb_output_3' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"52.41530039676885%\" y1=\"33\" x2=\"52.41530039676885%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"52.41530039676885%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.671287</text><text x=\"52.41530039676885%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.671287</text><text x=\"52.41530039676885%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"22.163816563140983%\" y1=\"33\" x2=\"22.163816563140983%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"22.163816563140983%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.67771</text><text x=\"22.163816563140983%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.67771</text><text x=\"22.163816563140983%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"16.520546834520648%\" width=\"5.643269728620331%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"19.65391354488962%\" x2=\"22.163816563140983%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"20.9088650540153%\" y=\"71\" font-size=\"12px\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.581</text><svg x=\"19.65391354488962%\" y=\"40\" height=\"20\" width=\"2.5099030182513644%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"18.70213525906563%\" x2=\"19.65391354488962%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"19.178024401977623%\" y=\"71\" font-size=\"12px\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.22</text><svg x=\"18.70213525906563%\" y=\"40\" height=\"20\" width=\"0.9517782858239876%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"17.950679105478322%\" x2=\"18.70213525906563%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_14\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"18.32640718227198%\" y=\"71\" font-size=\"12px\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_14\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.174</text><svg x=\"17.950679105478322%\" y=\"40\" height=\"20\" width=\"0.7514561535873092%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"17.20952118121064%\" x2=\"17.950679105478322%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"17.58010014334448%\" y=\"71\" font-size=\"12px\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.172</text><svg x=\"17.20952118121064%\" y=\"40\" height=\"20\" width=\"0.7411579242676822%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"16.521977651958377%\" x2=\"17.20952118121064%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"16.865749416584507%\" y=\"71\" font-size=\"12px\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.159</text><svg x=\"16.521977651958377%\" y=\"40\" height=\"20\" width=\"0.6875435292522631%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"16.520546834520648%\" x2=\"16.521977651958377%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_18\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"16.521262243239512%\" y=\"71\" font-size=\"12px\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_18\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"16.520546834520648%\" y=\"40\" height=\"20\" width=\"0.0014308174377291039%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"19.65391354488962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"19.65391354488962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"19.65391354488962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"19.65391354488962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"19.65391354488962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"19.65391354488962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"19.65391354488962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"19.65391354488962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"18.70213525906563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"18.70213525906563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"18.70213525906563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"18.70213525906563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"18.70213525906563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"18.70213525906563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"18.70213525906563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"18.70213525906563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"17.950679105478322%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.950679105478322%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.950679105478322%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.950679105478322%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.950679105478322%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.950679105478322%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.950679105478322%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.950679105478322%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"17.20952118121064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.20952118121064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.20952118121064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.20952118121064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.20952118121064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.20952118121064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.20952118121064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.20952118121064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"16.521977651958377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.521977651958377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.521977651958377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.521977651958377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.521977651958377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.521977651958377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.521977651958377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.521977651958377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"22.163816563140983%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"16.520546834520648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"22.163816563140983%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"19.65391354488962%\" y=\"40\" height=\"20\" width=\"2.5099030182513644%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_9').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_9').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_9').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"19.65391354488962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"18.70213525906563%\" y=\"40\" height=\"20\" width=\"0.9517782858239876%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_16').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_16').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_16').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"18.70213525906563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.950679105478322%\" y=\"40\" height=\"20\" width=\"0.7514561535873092%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_14').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_14').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_14').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.950679105478322%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.20952118121064%\" y=\"40\" height=\"20\" width=\"0.7411579242676822%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_3').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_3').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_3').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.20952118121064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.521977651958377%\" y=\"40\" height=\"20\" width=\"0.6875435292522631%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_7').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_7').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_7').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"16.520546834520648%\" y=\"40\" height=\"20\" width=\"0.0014308174377291039%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_18').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_18').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_18').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"22.163816563140983%\" width=\"35.894753562248205%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"22.163816563140983%\" x2=\"34.97605839119273%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"28.569937477166857%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-2.967</text><svg x=\"22.163816563140983%\" y=\"40\" height=\"20\" width=\"12.812241828051746%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"34.97605839119273%\" x2=\"44.059784597747445%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.51792149447009%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-2.104</text><svg x=\"34.97605839119273%\" y=\"40\" height=\"20\" width=\"9.083726206554715%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"44.059784597747445%\" x2=\"47.20020911989044%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.62999685881894%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.727</text><svg x=\"44.059784597747445%\" y=\"40\" height=\"20\" width=\"3.140424522142993%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"47.20020911989044%\" x2=\"49.40735641994263%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"48.30378276991654%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.511</text><svg x=\"47.20020911989044%\" y=\"40\" height=\"20\" width=\"2.207147300052192%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"49.40735641994263%\" x2=\"50.96604252874426%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"50.18669947434344%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.361</text><svg x=\"49.40735641994263%\" y=\"40\" height=\"20\" width=\"1.5586861088016306%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"50.96604252874426%\" x2=\"52.36247086769657%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"51.66425669822041%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.323</text><svg x=\"50.96604252874426%\" y=\"40\" height=\"20\" width=\"1.3964283389523118%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"52.36247086769657%\" x2=\"53.573648030065904%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"52.968059448881235%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.281</text><svg x=\"52.36247086769657%\" y=\"40\" height=\"20\" width=\"1.2111771623693315%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"53.573648030065904%\" x2=\"54.57210930428013%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"54.072878667173015%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.231</text><svg x=\"53.573648030065904%\" y=\"40\" height=\"20\" width=\"0.9984612742142289%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"54.57210930428013%\" x2=\"55.5429299686867%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"55.05751963648342%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.225</text><svg x=\"54.57210930428013%\" y=\"40\" height=\"20\" width=\"0.9708206644065669%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"55.5429299686867%\" x2=\"56.31609735268133%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"55.929513660684016%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.179</text><svg x=\"55.5429299686867%\" y=\"40\" height=\"20\" width=\"0.7731673839946325%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"56.31609735268133%\" x2=\"56.83914793089374%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"56.577622641787535%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.121</text><svg x=\"56.31609735268133%\" y=\"40\" height=\"20\" width=\"0.5230505782124055%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"56.83914793089374%\" x2=\"57.298571201554935%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"57.06885956622433%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.106</text><svg x=\"56.83914793089374%\" y=\"40\" height=\"20\" width=\"0.4594232706611976%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"57.298571201554935%\" x2=\"57.631510961168466%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"57.465041081361704%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.077</text><svg x=\"57.298571201554935%\" y=\"40\" height=\"20\" width=\"0.33293975961353084%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"57.631510961168466%\" x2=\"57.85841447762105%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"57.744962719394756%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.053</text><svg x=\"57.631510961168466%\" y=\"40\" height=\"20\" width=\"0.22690351645258033%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"57.85841447762105%\" x2=\"58.05857012538918%\" y1=\"60\" y2=\"60\" id=\"_fb_fzwdpssxgyxgyrfsstyt_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"57.95849230150512%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fzwdpssxgyxgyrfsstyt_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.046</text><svg x=\"57.85841447762105%\" y=\"40\" height=\"20\" width=\"0.20015564776813477%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"34.97605839119273%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"34.97605839119273%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"34.97605839119273%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"34.97605839119273%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"34.97605839119273%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"34.97605839119273%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"34.97605839119273%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"34.97605839119273%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.059784597747445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.059784597747445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.059784597747445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.059784597747445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.059784597747445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.059784597747445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.059784597747445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.059784597747445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"47.20020911989044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"47.20020911989044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"47.20020911989044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"47.20020911989044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.20020911989044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.20020911989044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.20020911989044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.20020911989044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.40735641994263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"49.40735641994263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"49.40735641994263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"49.40735641994263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.40735641994263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"49.40735641994263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.40735641994263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.40735641994263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"50.96604252874426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"50.96604252874426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"50.96604252874426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"50.96604252874426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"50.96604252874426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"50.96604252874426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"50.96604252874426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"50.96604252874426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"52.36247086769657%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"52.36247086769657%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"52.36247086769657%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"52.36247086769657%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"52.36247086769657%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"52.36247086769657%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"52.36247086769657%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"52.36247086769657%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"53.573648030065904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"53.573648030065904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"53.573648030065904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"53.573648030065904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"53.573648030065904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"53.573648030065904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"53.573648030065904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"53.573648030065904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"54.57210930428013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"54.57210930428013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"54.57210930428013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"54.57210930428013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"54.57210930428013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"54.57210930428013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"54.57210930428013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"54.57210930428013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"55.5429299686867%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"55.5429299686867%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"55.5429299686867%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"55.5429299686867%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"55.5429299686867%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"55.5429299686867%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"55.5429299686867%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"55.5429299686867%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"56.31609735268133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"56.31609735268133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"56.31609735268133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"56.31609735268133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"56.31609735268133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"56.31609735268133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"56.31609735268133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"56.31609735268133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"56.83914793089374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"56.83914793089374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"56.83914793089374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"56.83914793089374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"56.83914793089374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"56.83914793089374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"56.83914793089374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"56.83914793089374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"57.298571201554935%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"57.298571201554935%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"57.298571201554935%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"57.298571201554935%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"57.298571201554935%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"57.298571201554935%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"57.298571201554935%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"57.298571201554935%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"57.631510961168466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"57.631510961168466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"57.631510961168466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"57.631510961168466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"57.631510961168466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"57.631510961168466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"57.631510961168466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"57.631510961168466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"57.85841447762105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"57.85841447762105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"57.85841447762105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"57.85841447762105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"57.85841447762105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"57.85841447762105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"57.85841447762105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"57.85841447762105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"22.163816563140983%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"58.05857012538918%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"34.97605839119273%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"22.163816563140983%\" y=\"40\" height=\"20\" width=\"12.812241828051746%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_10').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_10').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_10').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.059784597747445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"34.97605839119273%\" y=\"40\" height=\"20\" width=\"9.083726206554715%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_4').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_4').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_4').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"47.20020911989044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.059784597747445%\" y=\"40\" height=\"20\" width=\"3.140424522142993%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_6').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_6').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_6').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"49.40735641994263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"47.20020911989044%\" y=\"40\" height=\"20\" width=\"2.207147300052192%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_17').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_17').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_17').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"50.96604252874426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"49.40735641994263%\" y=\"40\" height=\"20\" width=\"1.5586861088016306%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_1').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_1').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_1').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"52.36247086769657%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"50.96604252874426%\" y=\"40\" height=\"20\" width=\"1.3964283389523118%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_5').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_5').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_5').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"53.573648030065904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"52.36247086769657%\" y=\"40\" height=\"20\" width=\"1.2111771623693315%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_11').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_11').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_11').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"54.57210930428013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"53.573648030065904%\" y=\"40\" height=\"20\" width=\"0.9984612742142289%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_20').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_20').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_20').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"55.5429299686867%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"54.57210930428013%\" y=\"40\" height=\"20\" width=\"0.9708206644065669%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_15').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_15').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_15').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"56.31609735268133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"55.5429299686867%\" y=\"40\" height=\"20\" width=\"0.7731673839946325%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_0').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_0').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_0').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"56.83914793089374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"56.31609735268133%\" y=\"40\" height=\"20\" width=\"0.5230505782124055%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_2').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_2').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_2').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"57.298571201554935%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"56.83914793089374%\" y=\"40\" height=\"20\" width=\"0.4594232706611976%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_13').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_13').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_13').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"57.631510961168466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"57.298571201554935%\" y=\"40\" height=\"20\" width=\"0.33293975961353084%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_12').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_12').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_12').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"57.85841447762105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"57.631510961168466%\" y=\"40\" height=\"20\" width=\"0.22690351645258033%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_8').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_8').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_8').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"57.85841447762105%\" y=\"40\" height=\"20\" width=\"0.20015564776813477%\" onmouseover=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_19').style.opacity = 1;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fzwdpssxgyxgyrfsstyt_ind_19').style.textDecoration = 'none';document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_19').style.opacity = 0;document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.179</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_0').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_0').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.361</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_1').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_1').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_1').style.opacity = 0;\"\n",
" >can </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.121</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_2').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_2').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_2').style.opacity = 0;\"\n",
" >go </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.172</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_3').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_3').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_3').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-2.104</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_4'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.25902158843335304); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_4').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_4').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_4').style.opacity = 0;\"\n",
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.323</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_5').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_5').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_5').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.727</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_6'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.08560110913052085); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_6').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_6').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_6').style.opacity = 0;\"\n",
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.159</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_7'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_7').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_7').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_7').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.053</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_8'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_8').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_8').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_8').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.581</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_9'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06983561101208159); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_9').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_9').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_9').style.opacity = 0;\"\n",
" >damned </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-2.967</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_10'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.36149732620320846); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_10').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_10').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_10').style.opacity = 0;\"\n",
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.281</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_11'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_11').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_11').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_11').style.opacity = 0;\"\n",
" >just </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.077</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_12'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_12').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_12').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_12').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.106</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_13'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_13').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_13').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_13').style.opacity = 0;\"\n",
" >being </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.174</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_14'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_14').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_14').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_14').style.opacity = 0;\"\n",
" >around </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.225</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_15'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_15').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_15').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_15').style.opacity = 0;\"\n",
" >someone </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.22</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_16'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_16').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_16').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_16').style.opacity = 0;\"\n",
" >who </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.511</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_17'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_17').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_17').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_17').style.opacity = 0;\"\n",
" >cares </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_18'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_18').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_18').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_18').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.046</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_19'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_19').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_19').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_19').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.231</div\n",
" ><div id='_tp_fzwdpssxgyxgyrfsstyt_ind_20'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_20').style.opacity = 1; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_fzwdpssxgyxgyrfsstyt_ind_20').style.opacity = 0; document.getElementById('_fs_fzwdpssxgyxgyrfsstyt_ind_20').style.opacity = 0;\"\n",
" >awake</div></div></div></div><div id='_tp_mjmwmdjkdcajvzkuexbb_output_3_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"51.5114817511453%\" y1=\"33\" x2=\"51.5114817511453%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"51.5114817511453%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"34.18774727154786%\" y1=\"33\" x2=\"34.18774727154786%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.18774727154786%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"16.86401279195044%\" y1=\"33\" x2=\"16.86401279195044%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"16.86401279195044%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-8</text><line x1=\"68.83521623074273%\" y1=\"33\" x2=\"68.83521623074273%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"68.83521623074273%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"86.15895071034015%\" y1=\"33\" x2=\"86.15895071034015%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"86.15895071034015%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"80.344354416422%\" y1=\"33\" x2=\"80.344354416422%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"80.344354416422%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.671287</text><text x=\"80.344354416422%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.671287</text><text x=\"80.344354416422%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"19.655645496959327%\" y1=\"33\" x2=\"19.655645496959327%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"19.655645496959327%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.67771</text><text x=\"19.655645496959327%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.67771</text><text x=\"19.655645496959327%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"8.334456896830334%\" width=\"11.321188600128993%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"14.62042889309099%\" x2=\"19.655645496959327%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"17.13803719502516%\" y=\"71\" font-size=\"12px\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.581</text><svg x=\"14.62042889309099%\" y=\"40\" height=\"20\" width=\"5.035216603868337%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"12.711028492703749%\" x2=\"14.62042889309099%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.66572869289737%\" y=\"71\" font-size=\"12px\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.22</text><svg x=\"12.711028492703749%\" y=\"40\" height=\"20\" width=\"1.9094004003872413%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"11.203502315752907%\" x2=\"12.711028492703749%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_14\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.957265404228327%\" y=\"71\" font-size=\"12px\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_14\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.174</text><svg x=\"11.203502315752907%\" y=\"40\" height=\"20\" width=\"1.507526176950842%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"9.71663582759624%\" x2=\"11.203502315752907%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.460069071674575%\" y=\"71\" font-size=\"12px\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.172</text><svg x=\"9.71663582759624%\" y=\"40\" height=\"20\" width=\"1.4868664881566662%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"8.337327316789654%\" x2=\"9.71663582759624%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.026981572192948%\" y=\"71\" font-size=\"12px\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.159</text><svg x=\"8.337327316789654%\" y=\"40\" height=\"20\" width=\"1.3793085108065863%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"8.334456896830334%\" x2=\"8.337327316789654%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_18\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.335892106809993%\" y=\"71\" font-size=\"12px\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_18\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.334456896830334%\" y=\"40\" height=\"20\" width=\"0.0028704199593203583%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"14.62042889309099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"14.62042889309099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"14.62042889309099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"14.62042889309099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"14.62042889309099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"14.62042889309099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"14.62042889309099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"14.62042889309099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.711028492703749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.711028492703749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.711028492703749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.711028492703749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.711028492703749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.711028492703749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.711028492703749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.711028492703749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.203502315752907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.203502315752907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.203502315752907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.203502315752907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.203502315752907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.203502315752907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.203502315752907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.203502315752907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.71663582759624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.71663582759624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.71663582759624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.71663582759624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.71663582759624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.71663582759624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.71663582759624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.71663582759624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.337327316789654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.337327316789654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.337327316789654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.337327316789654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.337327316789654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.337327316789654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.337327316789654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.337327316789654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"19.655645496959327%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.334456896830334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"19.655645496959327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"14.62042889309099%\" y=\"40\" height=\"20\" width=\"5.035216603868337%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_9').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_9').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_9').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"14.62042889309099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.711028492703749%\" y=\"40\" height=\"20\" width=\"1.9094004003872413%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_16').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_16').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_16').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.711028492703749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.203502315752907%\" y=\"40\" height=\"20\" width=\"1.507526176950842%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_14').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_14').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_14').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.203502315752907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.71663582759624%\" y=\"40\" height=\"20\" width=\"1.4868664881566662%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_3').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_3').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_3').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.71663582759624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.337327316789654%\" y=\"40\" height=\"20\" width=\"1.3793085108065863%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_7').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_7').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_7').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.334456896830334%\" y=\"40\" height=\"20\" width=\"0.0028704199593203583%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_18').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_18').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_18').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"19.655645496959327%\" width=\"72.00989751959166%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"19.655645496959327%\" x2=\"45.35879510722917%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"32.50722030209425%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-2.967</text><svg x=\"19.655645496959327%\" y=\"40\" height=\"20\" width=\"25.703149610269843%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"45.35879510722917%\" x2=\"63.58202074090488%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"54.470407924067025%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-2.104</text><svg x=\"45.35879510722917%\" y=\"40\" height=\"20\" width=\"18.22322563367571%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"63.58202074090488%\" x2=\"69.88215169501099%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"66.73208621795794%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.727</text><svg x=\"63.58202074090488%\" y=\"40\" height=\"20\" width=\"6.300130954106109%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"69.88215169501099%\" x2=\"74.30999797097931%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"72.09607483299516%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.511</text><svg x=\"69.88215169501099%\" y=\"40\" height=\"20\" width=\"4.427846275968321%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"74.30999797097931%\" x2=\"77.43694037400681%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"75.87346917249306%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.361</text><svg x=\"74.30999797097931%\" y=\"40\" height=\"20\" width=\"3.126942403027499%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"77.43694037400681%\" x2=\"80.23837098996091%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"78.83765568198386%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.323</text><svg x=\"77.43694037400681%\" y=\"40\" height=\"20\" width=\"2.8014306159541036%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"80.23837098996091%\" x2=\"82.66816182802965%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"81.45326640899529%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.281</text><svg x=\"80.23837098996091%\" y=\"40\" height=\"20\" width=\"2.4297908380687403%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"82.66816182802965%\" x2=\"84.6712148343349%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"83.66968833118227%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.231</text><svg x=\"82.66816182802965%\" y=\"40\" height=\"20\" width=\"2.003053006305251%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"84.6712148343349%\" x2=\"86.61881691029244%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"85.64501587231368%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.225</text><svg x=\"84.6712148343349%\" y=\"40\" height=\"20\" width=\"1.9476020759575334%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"86.61881691029244%\" x2=\"88.16989885296108%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.39435788162676%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.179</text><svg x=\"86.61881691029244%\" y=\"40\" height=\"20\" width=\"1.5510819426686453%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"88.16989885296108%\" x2=\"89.21921149051188%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.69455517173648%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.121</text><svg x=\"88.16989885296108%\" y=\"40\" height=\"20\" width=\"1.0493126375507984%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"89.21921149051188%\" x2=\"90.1408788473042%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.68004516890804%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.106</text><svg x=\"89.21921149051188%\" y=\"40\" height=\"20\" width=\"0.9216673567923124%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"90.1408788473042%\" x2=\"90.80880258519504%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.47484071624962%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.077</text><svg x=\"90.1408788473042%\" y=\"40\" height=\"20\" width=\"0.6679237378908454%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"90.80880258519504%\" x2=\"91.2640027842506%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.03640268472282%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.053</text><svg x=\"90.80880258519504%\" y=\"40\" height=\"20\" width=\"0.45520019905555387%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"91.2640027842506%\" x2=\"91.66554301655098%\" y1=\"60\" y2=\"60\" id=\"_fb_dkkhvwtgyzluucgaiagl_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.46477290040079%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dkkhvwtgyzluucgaiagl_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.046</text><svg x=\"91.2640027842506%\" y=\"40\" height=\"20\" width=\"0.40154023230039115%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"45.35879510722917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"45.35879510722917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"45.35879510722917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"45.35879510722917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.35879510722917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.35879510722917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.35879510722917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.35879510722917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"63.58202074090488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"63.58202074090488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"63.58202074090488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"63.58202074090488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"63.58202074090488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"63.58202074090488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"63.58202074090488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"63.58202074090488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"69.88215169501099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"69.88215169501099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"69.88215169501099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"69.88215169501099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"69.88215169501099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"69.88215169501099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"69.88215169501099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"69.88215169501099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"74.30999797097931%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"74.30999797097931%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"74.30999797097931%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"74.30999797097931%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"74.30999797097931%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"74.30999797097931%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"74.30999797097931%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"74.30999797097931%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"77.43694037400681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"77.43694037400681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"77.43694037400681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"77.43694037400681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"77.43694037400681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"77.43694037400681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"77.43694037400681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"77.43694037400681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"80.23837098996091%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"80.23837098996091%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"80.23837098996091%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"80.23837098996091%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"80.23837098996091%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"80.23837098996091%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"80.23837098996091%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"80.23837098996091%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"82.66816182802965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.66816182802965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.66816182802965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.66816182802965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.66816182802965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.66816182802965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.66816182802965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.66816182802965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"84.6712148343349%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"84.6712148343349%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"84.6712148343349%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"84.6712148343349%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"84.6712148343349%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"84.6712148343349%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"84.6712148343349%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"84.6712148343349%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.61881691029244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.61881691029244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.61881691029244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.61881691029244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.61881691029244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.61881691029244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.61881691029244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.61881691029244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.16989885296108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.16989885296108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.16989885296108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.16989885296108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.16989885296108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.16989885296108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.16989885296108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.16989885296108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.21921149051188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.21921149051188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.21921149051188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.21921149051188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.21921149051188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.21921149051188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.21921149051188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.21921149051188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.1408788473042%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.1408788473042%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.1408788473042%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.1408788473042%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.1408788473042%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.1408788473042%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.1408788473042%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.1408788473042%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.80880258519504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.80880258519504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.80880258519504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.80880258519504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.80880258519504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.80880258519504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.80880258519504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.80880258519504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.2640027842506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.2640027842506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.2640027842506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.2640027842506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.2640027842506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.2640027842506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.2640027842506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.2640027842506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"19.655645496959327%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66554301655098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"45.35879510722917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"19.655645496959327%\" y=\"40\" height=\"20\" width=\"25.703149610269843%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_10').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_10').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_10').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"63.58202074090488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"45.35879510722917%\" y=\"40\" height=\"20\" width=\"18.22322563367571%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_4').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_4').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_4').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"69.88215169501099%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"63.58202074090488%\" y=\"40\" height=\"20\" width=\"6.300130954106109%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_6').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_6').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_6').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"74.30999797097931%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"69.88215169501099%\" y=\"40\" height=\"20\" width=\"4.427846275968321%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_17').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_17').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_17').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"77.43694037400681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"74.30999797097931%\" y=\"40\" height=\"20\" width=\"3.126942403027499%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_1').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_1').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_1').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"80.23837098996091%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"77.43694037400681%\" y=\"40\" height=\"20\" width=\"2.8014306159541036%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_5').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_5').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_5').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"82.66816182802965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"80.23837098996091%\" y=\"40\" height=\"20\" width=\"2.4297908380687403%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_11').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_11').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_11').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"84.6712148343349%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.66816182802965%\" y=\"40\" height=\"20\" width=\"2.003053006305251%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_20').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_20').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_20').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.61881691029244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.6712148343349%\" y=\"40\" height=\"20\" width=\"1.9476020759575334%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_15').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_15').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_15').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.16989885296108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.61881691029244%\" y=\"40\" height=\"20\" width=\"1.5510819426686453%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_0').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_0').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_0').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.21921149051188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.16989885296108%\" y=\"40\" height=\"20\" width=\"1.0493126375507984%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_2').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_2').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_2').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.1408788473042%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.21921149051188%\" y=\"40\" height=\"20\" width=\"0.9216673567923124%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_13').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_13').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_13').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.80880258519504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.1408788473042%\" y=\"40\" height=\"20\" width=\"0.6679237378908454%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_12').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_12').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_12').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.2640027842506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.80880258519504%\" y=\"40\" height=\"20\" width=\"0.45520019905555387%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_8').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_8').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_8').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.2640027842506%\" y=\"40\" height=\"20\" width=\"0.40154023230039115%\" onmouseover=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_19').style.opacity = 1;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dkkhvwtgyzluucgaiagl_ind_19').style.textDecoration = 'none';document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_19').style.opacity = 0;document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.179</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.05407011289364222); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_0').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_0').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.361</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.11713210536739943); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_1').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_1').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_1').style.opacity = 0;\"\n",
" >can </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.121</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_2').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_2').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_2').style.opacity = 0;\"\n",
" >go </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.172</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.05407011289364243); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_3').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_3').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_3').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-2.104</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_4'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.7083382848088731); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_4').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_4').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_4').style.opacity = 0;\"\n",
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.323</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10136660724896014); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_5').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_5').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_5').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.727</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_6'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.2432560903149138); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_6').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_6').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_6').style.opacity = 0;\"\n",
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.159</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_7'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.04618736383442265); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_7').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_7').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_7').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.053</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_8'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_8').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_8').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_8').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.581</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_9'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.1959595959595959); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_9').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_9').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_9').style.opacity = 0;\"\n",
" >damned </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-2.967</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_10'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_10').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_10').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_10').style.opacity = 0;\"\n",
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.281</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_11'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.09348385818974048); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_11').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_11').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_11').style.opacity = 0;\"\n",
" >just </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.077</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_12'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_12').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_12').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_12').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.106</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_13'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_13').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_13').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_13').style.opacity = 0;\"\n",
" >being </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.174</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_14'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.05407011289364243); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_14').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_14').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_14').style.opacity = 0;\"\n",
" >around </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.225</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_15'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06983561101208147); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_15').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_15').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_15').style.opacity = 0;\"\n",
" >someone </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.22</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_16'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06983561101208159); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_16').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_16').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_16').style.opacity = 0;\"\n",
" >who </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.511</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_17'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1723113487819369); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_17').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_17').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_17').style.opacity = 0;\"\n",
" >cares </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_18'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_18').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_18').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_18').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.046</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_19'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_19').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_19').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_19').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.231</div\n",
" ><div id='_tp_dkkhvwtgyzluucgaiagl_ind_20'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06983561101208147); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_20').style.opacity = 1; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_dkkhvwtgyzluucgaiagl_ind_20').style.opacity = 0; document.getElementById('_fs_dkkhvwtgyzluucgaiagl_ind_20').style.opacity = 0;\"\n",
" >awake</div></div></div></div><div id='_tp_mjmwmdjkdcajvzkuexbb_output_4' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"43.39125634602455%\" y1=\"33\" x2=\"43.39125634602455%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"43.39125634602455%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.76131</text><text x=\"43.39125634602455%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.76131</text><text x=\"43.39125634602455%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"27.656080030790744%\" y1=\"33\" x2=\"27.656080030790744%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"27.656080030790744%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.40567</text><text x=\"27.656080030790744%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.40567</text><text x=\"27.656080030790744%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"21.790835105734235%\" width=\"5.865244925056504%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"24.385491960377934%\" x2=\"27.656080030790744%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"26.02078599558434%\" y=\"71\" font-size=\"12px\" id=\"_fs_zpszvrbhmybltszkhwob_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.757</text><svg x=\"24.385491960377934%\" y=\"40\" height=\"20\" width=\"3.27058807041281%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"23.38756015369549%\" x2=\"24.385491960377934%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"23.88652605703671%\" y=\"71\" font-size=\"12px\" id=\"_fs_zpszvrbhmybltszkhwob_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.231</text><svg x=\"23.38756015369549%\" y=\"40\" height=\"20\" width=\"0.9979318066824447%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"22.922482906771393%\" x2=\"23.38756015369549%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_14\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"23.15502153023344%\" y=\"71\" font-size=\"12px\" id=\"_fs_zpszvrbhmybltszkhwob_ind_14\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.108</text><svg x=\"22.922482906771393%\" y=\"40\" height=\"20\" width=\"0.46507724692409624%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"22.54335047083928%\" x2=\"22.922482906771393%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_20\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"22.732916688805336%\" y=\"71\" font-size=\"12px\" id=\"_fs_zpszvrbhmybltszkhwob_ind_20\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.088</text><svg x=\"22.54335047083928%\" y=\"40\" height=\"20\" width=\"0.37913243593211376%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"22.16883756592445%\" x2=\"22.54335047083928%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"22.356094018381864%\" y=\"71\" font-size=\"12px\" id=\"_fs_zpszvrbhmybltszkhwob_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.087</text><svg x=\"22.16883756592445%\" y=\"40\" height=\"20\" width=\"0.37451290491483036%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"21.862211316995573%\" x2=\"22.16883756592445%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_13\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"22.01552444146001%\" y=\"71\" font-size=\"12px\" id=\"_fs_zpszvrbhmybltszkhwob_ind_13\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.071</text><svg x=\"21.862211316995573%\" y=\"40\" height=\"20\" width=\"0.30662624892887536%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"21.790835105734235%\" x2=\"21.862211316995573%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"21.826523211364904%\" y=\"71\" font-size=\"12px\" id=\"_fs_zpszvrbhmybltszkhwob_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.017</text><svg x=\"21.790835105734235%\" y=\"40\" height=\"20\" width=\"0.07137621126133809%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"24.385491960377934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"24.385491960377934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"24.385491960377934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"24.385491960377934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"24.385491960377934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"24.385491960377934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"24.385491960377934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"24.385491960377934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"23.38756015369549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"23.38756015369549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"23.38756015369549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"23.38756015369549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"23.38756015369549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"23.38756015369549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"23.38756015369549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"23.38756015369549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"22.922482906771393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"22.922482906771393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"22.922482906771393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"22.922482906771393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"22.922482906771393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"22.922482906771393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"22.922482906771393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"22.922482906771393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"22.54335047083928%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"22.54335047083928%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"22.54335047083928%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"22.54335047083928%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"22.54335047083928%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"22.54335047083928%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"22.54335047083928%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"22.54335047083928%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"22.16883756592445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"22.16883756592445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"22.16883756592445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"22.16883756592445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"22.16883756592445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"22.16883756592445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"22.16883756592445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"22.16883756592445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"21.862211316995573%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"21.862211316995573%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"21.862211316995573%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"21.862211316995573%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"21.862211316995573%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"21.862211316995573%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"21.862211316995573%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"21.862211316995573%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"27.656080030790744%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"21.790835105734235%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"27.656080030790744%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"24.385491960377934%\" y=\"40\" height=\"20\" width=\"3.27058807041281%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_6').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_6').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_6').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"24.385491960377934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"23.38756015369549%\" y=\"40\" height=\"20\" width=\"0.9979318066824447%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_7').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_7').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_7').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"23.38756015369549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"22.922482906771393%\" y=\"40\" height=\"20\" width=\"0.46507724692409624%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_14').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_14').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_14').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"22.922482906771393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"22.54335047083928%\" y=\"40\" height=\"20\" width=\"0.37913243593211376%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_20').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_20').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_20').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"22.54335047083928%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"22.16883756592445%\" y=\"40\" height=\"20\" width=\"0.37451290491483036%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_16').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_16').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_16').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"22.16883756592445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"21.862211316995573%\" y=\"40\" height=\"20\" width=\"0.30662624892887536%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_13').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_13').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_13').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"21.790835105734235%\" y=\"40\" height=\"20\" width=\"0.07137621126133809%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_3').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_3').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_3').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"27.656080030790744%\" width=\"21.600421240290306%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"27.656080030790744%\" x2=\"33.68120828800828%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"30.668644159399513%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zpszvrbhmybltszkhwob_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.395</text><svg x=\"27.656080030790744%\" y=\"40\" height=\"20\" width=\"6.025128257217535%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"33.68120828800828%\" x2=\"39.334651056695066%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"36.50792967235167%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zpszvrbhmybltszkhwob_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.309</text><svg x=\"33.68120828800828%\" y=\"40\" height=\"20\" width=\"5.653442768686787%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"39.334651056695066%\" x2=\"42.23186546266801%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.78325825968154%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zpszvrbhmybltszkhwob_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.671</text><svg x=\"39.334651056695066%\" y=\"40\" height=\"20\" width=\"2.897214405972946%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"42.23186546266801%\" x2=\"44.25479850288308%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.243331982775544%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zpszvrbhmybltszkhwob_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.469</text><svg x=\"42.23186546266801%\" y=\"40\" height=\"20\" width=\"2.022933040215065%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"44.25479850288308%\" x2=\"45.297591594684505%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.77619504878379%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zpszvrbhmybltszkhwob_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.242</text><svg x=\"44.25479850288308%\" y=\"40\" height=\"20\" width=\"1.0427930918014283%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"45.297591594684505%\" x2=\"46.30869666152563%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.80314412810507%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zpszvrbhmybltszkhwob_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.234</text><svg x=\"45.297591594684505%\" y=\"40\" height=\"20\" width=\"1.0111050668411252%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"46.30869666152563%\" x2=\"46.96605816747895%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.63737741450229%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zpszvrbhmybltszkhwob_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.152</text><svg x=\"46.30869666152563%\" y=\"40\" height=\"20\" width=\"0.6573615059533182%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"46.96605816747895%\" x2=\"47.6225910588687%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"47.29432461317383%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zpszvrbhmybltszkhwob_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.152</text><svg x=\"46.96605816747895%\" y=\"40\" height=\"20\" width=\"0.6565328913897517%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"47.6225910588687%\" x2=\"48.16420728955504%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"47.893399174211865%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zpszvrbhmybltszkhwob_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.125</text><svg x=\"47.6225910588687%\" y=\"40\" height=\"20\" width=\"0.541616230686337%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"48.16420728955504%\" x2=\"48.51974302941446%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"48.34197515948475%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zpszvrbhmybltszkhwob_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.082</text><svg x=\"48.16420728955504%\" y=\"40\" height=\"20\" width=\"0.35553573985941966%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"48.51974302941446%\" x2=\"48.823801564007994%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"48.671772296711225%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zpszvrbhmybltszkhwob_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.07</text><svg x=\"48.51974302941446%\" y=\"40\" height=\"20\" width=\"0.30405853459353693%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"48.823801564007994%\" x2=\"49.0690578994171%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_18\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"48.94642973171255%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zpszvrbhmybltszkhwob_ind_18\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.057</text><svg x=\"48.823801564007994%\" y=\"40\" height=\"20\" width=\"0.24525633540910974%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"49.0690578994171%\" x2=\"49.22509453371076%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"49.14707621656393%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zpszvrbhmybltszkhwob_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.036</text><svg x=\"49.0690578994171%\" y=\"40\" height=\"20\" width=\"0.1560366342936561%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"49.22509453371076%\" x2=\"49.25650127108104%\" y1=\"60\" y2=\"60\" id=\"_fb_zpszvrbhmybltszkhwob_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"49.2407979023959%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zpszvrbhmybltszkhwob_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.007</text><svg x=\"49.22509453371076%\" y=\"40\" height=\"20\" width=\"0.031406737370282656%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"33.68120828800828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"33.68120828800828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"33.68120828800828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"33.68120828800828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.68120828800828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.68120828800828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.68120828800828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.68120828800828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.334651056695066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.334651056695066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.334651056695066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.334651056695066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.334651056695066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.334651056695066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.334651056695066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.334651056695066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.23186546266801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.23186546266801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.23186546266801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.23186546266801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.23186546266801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.23186546266801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.23186546266801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.23186546266801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.25479850288308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.25479850288308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.25479850288308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.25479850288308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.25479850288308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.25479850288308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.25479850288308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.25479850288308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.297591594684505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"45.297591594684505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"45.297591594684505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"45.297591594684505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.297591594684505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.297591594684505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.297591594684505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.297591594684505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.30869666152563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"46.30869666152563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"46.30869666152563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"46.30869666152563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.30869666152563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.30869666152563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.30869666152563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.30869666152563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.96605816747895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"46.96605816747895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"46.96605816747895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"46.96605816747895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.96605816747895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.96605816747895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.96605816747895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.96605816747895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"47.6225910588687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"47.6225910588687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"47.6225910588687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"47.6225910588687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.6225910588687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.6225910588687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.6225910588687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.6225910588687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"48.16420728955504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"48.16420728955504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"48.16420728955504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"48.16420728955504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"48.16420728955504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"48.16420728955504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"48.16420728955504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"48.16420728955504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"48.51974302941446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"48.51974302941446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"48.51974302941446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"48.51974302941446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"48.51974302941446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"48.51974302941446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"48.51974302941446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"48.51974302941446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"48.823801564007994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"48.823801564007994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"48.823801564007994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"48.823801564007994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"48.823801564007994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"48.823801564007994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"48.823801564007994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"48.823801564007994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.0690578994171%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"49.0690578994171%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"49.0690578994171%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"49.0690578994171%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.0690578994171%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"49.0690578994171%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.0690578994171%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.0690578994171%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.22509453371076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"49.22509453371076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"49.22509453371076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"49.22509453371076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.22509453371076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"49.22509453371076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.22509453371076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.22509453371076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"27.656080030790744%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"49.25650127108104%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"33.68120828800828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"27.656080030790744%\" y=\"40\" height=\"20\" width=\"6.025128257217535%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_4').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_4').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_4').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.334651056695066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"33.68120828800828%\" y=\"40\" height=\"20\" width=\"5.653442768686787%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_10').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_10').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_10').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.23186546266801%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.334651056695066%\" y=\"40\" height=\"20\" width=\"2.897214405972946%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_17').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_17').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_17').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.25479850288308%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.23186546266801%\" y=\"40\" height=\"20\" width=\"2.022933040215065%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_5').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_5').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_5').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"45.297591594684505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.25479850288308%\" y=\"40\" height=\"20\" width=\"1.0427930918014283%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_11').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_11').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_11').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"46.30869666152563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"45.297591594684505%\" y=\"40\" height=\"20\" width=\"1.0111050668411252%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_8').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_8').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_8').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"46.96605816747895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"46.30869666152563%\" y=\"40\" height=\"20\" width=\"0.6573615059533182%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_15').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_15').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_15').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"47.6225910588687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"46.96605816747895%\" y=\"40\" height=\"20\" width=\"0.6565328913897517%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_1').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_1').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_1').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"48.16420728955504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"47.6225910588687%\" y=\"40\" height=\"20\" width=\"0.541616230686337%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_0').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_0').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_0').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"48.51974302941446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"48.16420728955504%\" y=\"40\" height=\"20\" width=\"0.35553573985941966%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_2').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_2').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_2').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"48.823801564007994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"48.51974302941446%\" y=\"40\" height=\"20\" width=\"0.30405853459353693%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_9').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_9').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_9').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"49.0690578994171%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"48.823801564007994%\" y=\"40\" height=\"20\" width=\"0.24525633540910974%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_18').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_18').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_18').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"49.22509453371076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"49.0690578994171%\" y=\"40\" height=\"20\" width=\"0.1560366342936561%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_12').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_12').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_12').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"49.22509453371076%\" y=\"40\" height=\"20\" width=\"0.031406737370282656%\" onmouseover=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_19').style.opacity = 1;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zpszvrbhmybltszkhwob_ind_19').style.textDecoration = 'none';document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_19').style.opacity = 0;document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.125</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_0').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_0').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.152</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_1').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_1').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_1').style.opacity = 0;\"\n",
" >can </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.082</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_2').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_2').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_2').style.opacity = 0;\"\n",
" >go </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.017</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_3'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_3').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_3').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_3').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.395</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_4'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.16442859972271748); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_4').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_4').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_4').style.opacity = 0;\"\n",
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.469</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.05407011289364222); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_5').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_5').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_5').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.757</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_6'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.08560110913052081); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_6').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_6').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_6').style.opacity = 0;\"\n",
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.231</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_7'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_7').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_7').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_7').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.234</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_8'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_8').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_8').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_8').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.07</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_9'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_9').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_9').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_9').style.opacity = 0;\"\n",
" >damned </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.309</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_10'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1565458506634977); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_10').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_10').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_10').style.opacity = 0;\"\n",
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.242</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_11'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_11').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_11').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_11').style.opacity = 0;\"\n",
" >just </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.036</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_12'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_12').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_12').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_12').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.071</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_13'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_13').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_13').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_13').style.opacity = 0;\"\n",
" >being </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.108</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_14'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_14').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_14').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_14').style.opacity = 0;\"\n",
" >around </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.152</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_15'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_15').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_15').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_15').style.opacity = 0;\"\n",
" >someone </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.087</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_16'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_16').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_16').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_16').style.opacity = 0;\"\n",
" >who </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.671</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_17'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_17').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_17').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_17').style.opacity = 0;\"\n",
" >cares </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.057</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_18'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_18').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_18').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_18').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.007</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_19'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_19').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_19').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_19').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.088</div\n",
" ><div id='_tp_zpszvrbhmybltszkhwob_ind_20'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_20').style.opacity = 1; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_zpszvrbhmybltszkhwob_ind_20').style.opacity = 0; document.getElementById('_fs_zpszvrbhmybltszkhwob_ind_20').style.opacity = 0;\"\n",
" >awake</div></div></div></div><div id='_tp_mjmwmdjkdcajvzkuexbb_output_4_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"44.54649969098122%\" y1=\"33\" x2=\"44.54649969098122%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"44.54649969098122%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"31.453205553701856%\" y1=\"33\" x2=\"31.453205553701856%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.453205553701856%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"18.359911416422495%\" y1=\"33\" x2=\"18.359911416422495%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.359911416422495%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"57.63979382826058%\" y1=\"33\" x2=\"57.63979382826058%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"57.63979382826058%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"70.73308796553994%\" y1=\"33\" x2=\"70.73308796553994%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"70.73308796553994%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"83.82638210281931%\" y1=\"33\" x2=\"83.82638210281931%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.82638210281931%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"73.85834063498838%\" y1=\"33\" x2=\"73.85834063498838%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"73.85834063498838%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.76131</text><text x=\"73.85834063498838%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.76131</text><text x=\"73.85834063498838%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"26.141659234078663%\" y1=\"33\" x2=\"26.141659234078663%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"26.141659234078663%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.40567</text><text x=\"26.141659234078663%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.40567</text><text x=\"26.141659234078663%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"8.355393747096398%\" width=\"17.786265486982266%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"16.22365095612788%\" x2=\"26.141659234078663%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"21.18265509510327%\" y=\"71\" font-size=\"12px\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.757</text><svg x=\"16.22365095612788%\" y=\"40\" height=\"20\" width=\"9.918008277950783%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"13.197438022422157%\" x2=\"16.22365095612788%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"14.71054448927502%\" y=\"71\" font-size=\"12px\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.231</text><svg x=\"13.197438022422157%\" y=\"40\" height=\"20\" width=\"3.0262129337057235%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"11.787098387599986%\" x2=\"13.197438022422157%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_14\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"12.492268205011072%\" y=\"71\" font-size=\"12px\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_14\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.108</text><svg x=\"11.787098387599986%\" y=\"40\" height=\"20\" width=\"1.4103396348221704%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"10.6373850770088%\" x2=\"11.787098387599986%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_20\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.212241732304392%\" y=\"71\" font-size=\"12px\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_20\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.088</text><svg x=\"10.6373850770088%\" y=\"40\" height=\"20\" width=\"1.1497133105911868%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"9.501680423540819%\" x2=\"10.6373850770088%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.06953275027481%\" y=\"71\" font-size=\"12px\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.087</text><svg x=\"9.501680423540819%\" y=\"40\" height=\"20\" width=\"1.1357046534679807%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"8.571841015568623%\" x2=\"9.501680423540819%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_13\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.03676071955472%\" y=\"71\" font-size=\"12px\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_13\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.071</text><svg x=\"8.571841015568623%\" y=\"40\" height=\"20\" width=\"0.9298394079721959%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"8.355393747096398%\" x2=\"8.571841015568623%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.463617381332512%\" y=\"71\" font-size=\"12px\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.017</text><svg x=\"8.355393747096398%\" y=\"40\" height=\"20\" width=\"0.2164472684722245%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"16.22365095612788%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.22365095612788%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.22365095612788%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.22365095612788%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.22365095612788%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.22365095612788%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.22365095612788%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.22365095612788%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"13.197438022422157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.197438022422157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.197438022422157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.197438022422157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.197438022422157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.197438022422157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.197438022422157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.197438022422157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.787098387599986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.787098387599986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.787098387599986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.787098387599986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.787098387599986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.787098387599986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.787098387599986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.787098387599986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.6373850770088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.6373850770088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.6373850770088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.6373850770088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.6373850770088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.6373850770088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.6373850770088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.6373850770088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.501680423540819%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.501680423540819%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.501680423540819%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.501680423540819%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.501680423540819%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.501680423540819%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.501680423540819%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.501680423540819%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.571841015568623%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.571841015568623%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.571841015568623%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.571841015568623%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.571841015568623%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.571841015568623%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.571841015568623%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.571841015568623%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"26.141659234078663%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.355393747096398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"26.141659234078663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.22365095612788%\" y=\"40\" height=\"20\" width=\"9.918008277950783%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_6').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_6').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_6').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"16.22365095612788%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.197438022422157%\" y=\"40\" height=\"20\" width=\"3.0262129337057235%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_7').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_7').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_7').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"13.197438022422157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.787098387599986%\" y=\"40\" height=\"20\" width=\"1.4103396348221704%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_14').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_14').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_14').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.787098387599986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.6373850770088%\" y=\"40\" height=\"20\" width=\"1.1497133105911868%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_20').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_20').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_20').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.6373850770088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.501680423540819%\" y=\"40\" height=\"20\" width=\"1.1357046534679807%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_16').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_16').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_16').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.501680423540819%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.571841015568623%\" y=\"40\" height=\"20\" width=\"0.9298394079721959%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_13').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_13').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_13').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.355393747096398%\" y=\"40\" height=\"20\" width=\"0.2164472684722245%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_3').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_3').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_3').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"26.141659234078663%\" width=\"65.50294688789198%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"26.141659234078663%\" x2=\"44.41276847935157%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"35.277213856715115%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.395</text><svg x=\"26.141659234078663%\" y=\"40\" height=\"20\" width=\"18.271109245272907%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"44.41276847935157%\" x2=\"61.55674716807693%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"52.98475782371425%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.309</text><svg x=\"44.41276847935157%\" y=\"40\" height=\"20\" width=\"17.143978688725362%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"61.55674716807693%\" x2=\"70.34250552186775%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"65.94962634497234%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.671</text><svg x=\"61.55674716807693%\" y=\"40\" height=\"20\" width=\"8.785758353790818%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"70.34250552186775%\" x2=\"76.47701901199396%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"73.40976226693085%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.469</text><svg x=\"70.34250552186775%\" y=\"40\" height=\"20\" width=\"6.13451349012621%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"76.47701901199396%\" x2=\"79.63927310636883%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"78.0581460591814%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.242</text><svg x=\"76.47701901199396%\" y=\"40\" height=\"20\" width=\"3.162254094374873%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"79.63927310636883%\" x2=\"82.70543374993238%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"81.17235342815061%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.234</text><svg x=\"79.63927310636883%\" y=\"40\" height=\"20\" width=\"3.066160643563549%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"82.70543374993238%\" x2=\"84.69887245798355%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"83.70215310395797%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.152</text><svg x=\"82.70543374993238%\" y=\"40\" height=\"20\" width=\"1.9934387080511726%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"84.69887245798355%\" x2=\"86.6897984050499%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"85.69433543151672%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.152</text><svg x=\"84.69887245798355%\" y=\"40\" height=\"20\" width=\"1.9909259470663443%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"86.6897984050499%\" x2=\"88.33224133695404%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.51101987100196%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.125</text><svg x=\"86.6897984050499%\" y=\"40\" height=\"20\" width=\"1.6424429319041423%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"88.33224133695404%\" x2=\"89.41039802777449%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.87131968236426%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.082</text><svg x=\"88.33224133695404%\" y=\"40\" height=\"20\" width=\"1.0781566908204496%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"89.41039802777449%\" x2=\"90.3324508813152%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.87142445454484%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.07</text><svg x=\"89.41039802777449%\" y=\"40\" height=\"20\" width=\"0.9220528535407055%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"90.3324508813152%\" x2=\"91.07618696560306%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_18\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.70431892345913%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_18\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.057</text><svg x=\"90.3324508813152%\" y=\"40\" height=\"20\" width=\"0.7437360842878604%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"91.07618696560306%\" x2=\"91.5493656714719%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.31277631853749%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.036</text><svg x=\"91.07618696560306%\" y=\"40\" height=\"20\" width=\"0.4731787058688468%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"91.5493656714719%\" x2=\"91.64460612197065%\" y1=\"60\" y2=\"60\" id=\"_fb_uxsaluesuxzqzcrfvnzc_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.59698589672128%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uxsaluesuxzqzcrfvnzc_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.007</text><svg x=\"91.5493656714719%\" y=\"40\" height=\"20\" width=\"0.09524045049874985%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"44.41276847935157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.41276847935157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.41276847935157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.41276847935157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.41276847935157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.41276847935157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.41276847935157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.41276847935157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"61.55674716807693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"61.55674716807693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"61.55674716807693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"61.55674716807693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"61.55674716807693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"61.55674716807693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"61.55674716807693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"61.55674716807693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"70.34250552186775%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"70.34250552186775%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"70.34250552186775%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"70.34250552186775%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"70.34250552186775%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"70.34250552186775%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"70.34250552186775%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"70.34250552186775%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"76.47701901199396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"76.47701901199396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"76.47701901199396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"76.47701901199396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"76.47701901199396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"76.47701901199396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"76.47701901199396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"76.47701901199396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"79.63927310636883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"79.63927310636883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"79.63927310636883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"79.63927310636883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"79.63927310636883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"79.63927310636883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"79.63927310636883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"79.63927310636883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"82.70543374993238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.70543374993238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.70543374993238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.70543374993238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.70543374993238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.70543374993238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.70543374993238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.70543374993238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"84.69887245798355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"84.69887245798355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"84.69887245798355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"84.69887245798355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"84.69887245798355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"84.69887245798355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"84.69887245798355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"84.69887245798355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.6897984050499%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.6897984050499%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.6897984050499%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.6897984050499%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.6897984050499%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.6897984050499%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.6897984050499%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.6897984050499%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.33224133695404%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.33224133695404%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.33224133695404%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.33224133695404%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.33224133695404%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.33224133695404%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.33224133695404%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.33224133695404%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.41039802777449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.41039802777449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.41039802777449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.41039802777449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.41039802777449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.41039802777449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.41039802777449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.41039802777449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.3324508813152%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.3324508813152%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.3324508813152%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.3324508813152%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.3324508813152%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.3324508813152%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.3324508813152%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.3324508813152%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.07618696560306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.07618696560306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.07618696560306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.07618696560306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.07618696560306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.07618696560306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.07618696560306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.07618696560306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.5493656714719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.5493656714719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.5493656714719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.5493656714719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.5493656714719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.5493656714719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.5493656714719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.5493656714719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"26.141659234078663%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.64460612197065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"44.41276847935157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"26.141659234078663%\" y=\"40\" height=\"20\" width=\"18.271109245272907%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_4').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_4').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_4').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"61.55674716807693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.41276847935157%\" y=\"40\" height=\"20\" width=\"17.143978688725362%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_10').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_10').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_10').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"70.34250552186775%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"61.55674716807693%\" y=\"40\" height=\"20\" width=\"8.785758353790818%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_17').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_17').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_17').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"76.47701901199396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"70.34250552186775%\" y=\"40\" height=\"20\" width=\"6.13451349012621%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_5').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_5').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_5').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"79.63927310636883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"76.47701901199396%\" y=\"40\" height=\"20\" width=\"3.162254094374873%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_11').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_11').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_11').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"82.70543374993238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"79.63927310636883%\" y=\"40\" height=\"20\" width=\"3.066160643563549%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_8').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_8').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_8').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"84.69887245798355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.70543374993238%\" y=\"40\" height=\"20\" width=\"1.9934387080511726%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_15').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_15').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_15').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.6897984050499%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.69887245798355%\" y=\"40\" height=\"20\" width=\"1.9909259470663443%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_1').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_1').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_1').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.33224133695404%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.6897984050499%\" y=\"40\" height=\"20\" width=\"1.6424429319041423%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_0').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_0').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_0').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.41039802777449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.33224133695404%\" y=\"40\" height=\"20\" width=\"1.0781566908204496%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_2').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_2').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_2').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.3324508813152%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.41039802777449%\" y=\"40\" height=\"20\" width=\"0.9220528535407055%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_9').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_9').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_9').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.07618696560306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.3324508813152%\" y=\"40\" height=\"20\" width=\"0.7437360842878604%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_18').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_18').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_18').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.5493656714719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.07618696560306%\" y=\"40\" height=\"20\" width=\"0.4731787058688468%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_12').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_12').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_12').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.5493656714719%\" y=\"40\" height=\"20\" width=\"0.09524045049874985%\" onmouseover=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_19').style.opacity = 1;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uxsaluesuxzqzcrfvnzc_ind_19').style.textDecoration = 'none';document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_19').style.opacity = 0;document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.125</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.08560110913052085); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_0').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_0').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.152</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10136660724896014); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_1').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_1').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_1').style.opacity = 0;\"\n",
" >can </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.082</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.05407011289364222); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_2').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_2').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_2').style.opacity = 0;\"\n",
" >go </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.017</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_3').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_3').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_3').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.395</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_4'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_4').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_4').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_4').style.opacity = 0;\"\n",
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.469</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.3299663299663299); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_5').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_5').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_5').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.757</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_6'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.5428005545652606); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_6').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_6').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_6').style.opacity = 0;\"\n",
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.231</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_7'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.16442859972271742); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_7').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_7').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_7').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.234</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_8'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.16442859972271748); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_8').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_8').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_8').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.07</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_9'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_9').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_9').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_9').style.opacity = 0;\"\n",
" >damned </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.309</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_10'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.9448207565854625); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_10').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_10').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_10').style.opacity = 0;\"\n",
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.242</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_11'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1723113487819369); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_11').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_11').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_11').style.opacity = 0;\"\n",
" >just </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.036</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_12'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_12').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_12').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_12').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.071</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_13'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.04618736383442265); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_13').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_13').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_13').style.opacity = 0;\"\n",
" >being </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.108</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_14'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06983561101208159); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_14').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_14').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_14').style.opacity = 0;\"\n",
" >around </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.152</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_15'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10136660724896014); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_15').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_15').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_15').style.opacity = 0;\"\n",
" >someone </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.087</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_16'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.05407011289364243); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_16').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_16').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_16').style.opacity = 0;\"\n",
" >who </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.671</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_17'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.47973856209150334); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_17').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_17').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_17').style.opacity = 0;\"\n",
" >cares </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.057</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_18'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_18').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_18').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_18').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.007</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_19'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_19').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_19').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_19').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.088</div\n",
" ><div id='_tp_uxsaluesuxzqzcrfvnzc_ind_20'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06195286195286207); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_20').style.opacity = 1; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_uxsaluesuxzqzcrfvnzc_ind_20').style.opacity = 0; document.getElementById('_fs_uxsaluesuxzqzcrfvnzc_ind_20').style.opacity = 0;\"\n",
" >awake</div></div></div></div><div id='_tp_mjmwmdjkdcajvzkuexbb_output_5' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"36.66153439463859%\" y1=\"33\" x2=\"36.66153439463859%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"36.66153439463859%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4.31995</text><text x=\"36.66153439463859%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4.31995</text><text x=\"36.66153439463859%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"21.615060247166873%\" y1=\"33\" x2=\"21.615060247166873%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"21.615060247166873%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.80481</text><text x=\"21.615060247166873%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.80481</text><text x=\"21.615060247166873%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"20.465798805295577%\" width=\"1.1492614418712956%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"21.130103971327998%\" x2=\"21.615060247166873%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"21.372582109247436%\" y=\"71\" font-size=\"12px\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.112</text><svg x=\"21.130103971327998%\" y=\"40\" height=\"20\" width=\"0.4849562758388757%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"20.663559679658306%\" x2=\"21.130103971327998%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"20.89683182549315%\" y=\"71\" font-size=\"12px\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.108</text><svg x=\"20.663559679658306%\" y=\"40\" height=\"20\" width=\"0.4665442916696918%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"20.512689549494148%\" x2=\"20.663559679658306%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"20.588124614576227%\" y=\"71\" font-size=\"12px\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.035</text><svg x=\"20.512689549494148%\" y=\"40\" height=\"20\" width=\"0.15087013016415796%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"20.488663072748682%\" x2=\"20.512689549494148%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_12\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"20.500676311121417%\" y=\"71\" font-size=\"12px\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_12\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.006</text><svg x=\"20.488663072748682%\" y=\"40\" height=\"20\" width=\"0.02402647674546543%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"20.47395807555901%\" x2=\"20.488663072748682%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"20.481310574153845%\" y=\"71\" font-size=\"12px\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"20.47395807555901%\" y=\"40\" height=\"20\" width=\"0.014704997189671332%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"20.465798805295577%\" x2=\"20.47395807555901%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_18\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"20.469878440427294%\" y=\"71\" font-size=\"12px\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_18\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"20.465798805295577%\" y=\"40\" height=\"20\" width=\"0.008159270263433882%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"21.130103971327998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"21.130103971327998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"21.130103971327998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"21.130103971327998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"21.130103971327998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"21.130103971327998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"21.130103971327998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"21.130103971327998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"20.663559679658306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"20.663559679658306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"20.663559679658306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"20.663559679658306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"20.663559679658306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"20.663559679658306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"20.663559679658306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"20.663559679658306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"20.512689549494148%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"20.512689549494148%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"20.512689549494148%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"20.512689549494148%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"20.512689549494148%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"20.512689549494148%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"20.512689549494148%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"20.512689549494148%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"20.488663072748682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"20.488663072748682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"20.488663072748682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"20.488663072748682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"20.488663072748682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"20.488663072748682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"20.488663072748682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"20.488663072748682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"20.47395807555901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"20.47395807555901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"20.47395807555901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"20.47395807555901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"20.47395807555901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"20.47395807555901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"20.47395807555901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"20.47395807555901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"21.615060247166873%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"20.465798805295577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"21.615060247166873%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"21.130103971327998%\" y=\"40\" height=\"20\" width=\"0.4849562758388757%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_7').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_7').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_7').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"21.130103971327998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"20.663559679658306%\" y=\"40\" height=\"20\" width=\"0.4665442916696918%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_16').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_16').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_16').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"20.663559679658306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"20.512689549494148%\" y=\"40\" height=\"20\" width=\"0.15087013016415796%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_3').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_3').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_3').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"20.512689549494148%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"20.488663072748682%\" y=\"40\" height=\"20\" width=\"0.02402647674546543%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_12').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_12').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_12').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"20.488663072748682%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"20.47395807555901%\" y=\"40\" height=\"20\" width=\"0.014704997189671332%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_9').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_9').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_9').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"20.465798805295577%\" y=\"40\" height=\"20\" width=\"0.008159270263433882%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_18').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_18').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_18').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"21.615060247166873%\" width=\"16.19573558934301%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"21.615060247166873%\" x2=\"26.100175300209624%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"23.857617773688247%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.039</text><svg x=\"21.615060247166873%\" y=\"40\" height=\"20\" width=\"4.485115053042751%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"26.100175300209624%\" x2=\"29.76583359228778%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"27.933004446248702%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.849</text><svg x=\"26.100175300209624%\" y=\"40\" height=\"20\" width=\"3.665658292078156%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"29.76583359228778%\" x2=\"31.683239843100008%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"30.724536717693894%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.444</text><svg x=\"29.76583359228778%\" y=\"40\" height=\"20\" width=\"1.9174062508122276%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"31.683239843100008%\" x2=\"33.44732775803545%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"32.56528380056773%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.409</text><svg x=\"31.683239843100008%\" y=\"40\" height=\"20\" width=\"1.7640879149354411%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"33.44732775803545%\" x2=\"34.967228835185054%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"34.207278296610255%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.352</text><svg x=\"33.44732775803545%\" y=\"40\" height=\"20\" width=\"1.5199010771496049%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"34.967228835185054%\" x2=\"35.59073263150323%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"35.27898073334414%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.144</text><svg x=\"34.967228835185054%\" y=\"40\" height=\"20\" width=\"0.6235037963181753%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"35.59073263150323%\" x2=\"36.13330551021702%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"35.86201907086013%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.126</text><svg x=\"35.59073263150323%\" y=\"40\" height=\"20\" width=\"0.5425728787137913%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"36.13330551021702%\" x2=\"36.52299227858692%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"36.32814889440197%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.09</text><svg x=\"36.13330551021702%\" y=\"40\" height=\"20\" width=\"0.3896867683698986%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"36.52299227858692%\" x2=\"36.839105742851984%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"36.68104901071945%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.073</text><svg x=\"36.52299227858692%\" y=\"40\" height=\"20\" width=\"0.31611346426506515%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"36.839105742851984%\" x2=\"37.1333711650721%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"36.986238453962045%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.068</text><svg x=\"36.839105742851984%\" y=\"40\" height=\"20\" width=\"0.2942654222201142%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"37.1333711650721%\" x2=\"37.34183396421742%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.23760256464476%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.048</text><svg x=\"37.1333711650721%\" y=\"40\" height=\"20\" width=\"0.20846279914532317%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"37.34183396421742%\" x2=\"37.5390790374344%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.44045650082591%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.046</text><svg x=\"37.34183396421742%\" y=\"40\" height=\"20\" width=\"0.19724507321697615%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"37.5390790374344%\" x2=\"37.68785623866363%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.613467638049016%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.034</text><svg x=\"37.5390790374344%\" y=\"40\" height=\"20\" width=\"0.14877720122922966%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"37.68785623866363%\" x2=\"37.768970778130296%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.72841350839696%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.019</text><svg x=\"37.68785623866363%\" y=\"40\" height=\"20\" width=\"0.08111453946666813%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"37.768970778130296%\" x2=\"37.81079583650988%\" y1=\"60\" y2=\"60\" id=\"_fb_rjwzakayiwmmwseqxnho_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.78988330732009%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rjwzakayiwmmwseqxnho_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.01</text><svg x=\"37.768970778130296%\" y=\"40\" height=\"20\" width=\"0.04182505837958672%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"26.100175300209624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"26.100175300209624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"26.100175300209624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"26.100175300209624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.100175300209624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.100175300209624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.100175300209624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.100175300209624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.76583359228778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"29.76583359228778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"29.76583359228778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"29.76583359228778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.76583359228778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.76583359228778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.76583359228778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.76583359228778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"31.683239843100008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"31.683239843100008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"31.683239843100008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"31.683239843100008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"31.683239843100008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"31.683239843100008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"31.683239843100008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"31.683239843100008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"33.44732775803545%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"33.44732775803545%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"33.44732775803545%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"33.44732775803545%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.44732775803545%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.44732775803545%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.44732775803545%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.44732775803545%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"34.967228835185054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"34.967228835185054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"34.967228835185054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"34.967228835185054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"34.967228835185054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"34.967228835185054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"34.967228835185054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"34.967228835185054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.59073263150323%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"35.59073263150323%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"35.59073263150323%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"35.59073263150323%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.59073263150323%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.59073263150323%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.59073263150323%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.59073263150323%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.13330551021702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.13330551021702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.13330551021702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.13330551021702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.13330551021702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.13330551021702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.13330551021702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.13330551021702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.52299227858692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.52299227858692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.52299227858692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.52299227858692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.52299227858692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.52299227858692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.52299227858692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.52299227858692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.839105742851984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.839105742851984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.839105742851984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.839105742851984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.839105742851984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.839105742851984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.839105742851984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.839105742851984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.1333711650721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.1333711650721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.1333711650721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.1333711650721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.1333711650721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.1333711650721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.1333711650721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.1333711650721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.34183396421742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.34183396421742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.34183396421742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.34183396421742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.34183396421742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.34183396421742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.34183396421742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.34183396421742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.5390790374344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.5390790374344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.5390790374344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.5390790374344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.5390790374344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.5390790374344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.5390790374344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.5390790374344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.68785623866363%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.68785623866363%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.68785623866363%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.68785623866363%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.68785623866363%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.68785623866363%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.68785623866363%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.68785623866363%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.768970778130296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.768970778130296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.768970778130296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.768970778130296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.768970778130296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.768970778130296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.768970778130296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.768970778130296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"21.615060247166873%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"37.81079583650988%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"26.100175300209624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"21.615060247166873%\" y=\"40\" height=\"20\" width=\"4.485115053042751%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_10').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_10').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_10').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"29.76583359228778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"26.100175300209624%\" y=\"40\" height=\"20\" width=\"3.665658292078156%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_4').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_4').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_4').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"31.683239843100008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"29.76583359228778%\" y=\"40\" height=\"20\" width=\"1.9174062508122276%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_6').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_6').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_6').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"33.44732775803545%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.683239843100008%\" y=\"40\" height=\"20\" width=\"1.7640879149354411%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_17').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_17').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_17').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"34.967228835185054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"33.44732775803545%\" y=\"40\" height=\"20\" width=\"1.5199010771496049%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_5').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_5').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_5').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"35.59073263150323%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"34.967228835185054%\" y=\"40\" height=\"20\" width=\"0.6235037963181753%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_2').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_2').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_2').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"36.13330551021702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"35.59073263150323%\" y=\"40\" height=\"20\" width=\"0.5425728787137913%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_1').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_1').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_1').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"36.52299227858692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"36.13330551021702%\" y=\"40\" height=\"20\" width=\"0.3896867683698986%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_15').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_15').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_15').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"36.839105742851984%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"36.52299227858692%\" y=\"40\" height=\"20\" width=\"0.31611346426506515%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_0').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_0').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_0').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.1333711650721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"36.839105742851984%\" y=\"40\" height=\"20\" width=\"0.2942654222201142%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_11').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_11').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_11').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.34183396421742%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.1333711650721%\" y=\"40\" height=\"20\" width=\"0.20846279914532317%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_20').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_20').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_20').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.5390790374344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.34183396421742%\" y=\"40\" height=\"20\" width=\"0.19724507321697615%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_8').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_8').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_8').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.68785623866363%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.5390790374344%\" y=\"40\" height=\"20\" width=\"0.14877720122922966%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_14').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_14').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_14').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.768970778130296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.68785623866363%\" y=\"40\" height=\"20\" width=\"0.08111453946666813%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_19').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_19').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_19').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"37.768970778130296%\" y=\"40\" height=\"20\" width=\"0.04182505837958672%\" onmouseover=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_13').style.opacity = 1;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rjwzakayiwmmwseqxnho_ind_13').style.textDecoration = 'none';document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_13').style.opacity = 0;document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.073</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_0').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_0').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.126</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_1').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_1').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_1').style.opacity = 0;\"\n",
" >can </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.144</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_2').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_2').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_2').style.opacity = 0;\"\n",
" >go </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.035</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_3'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_3').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_3').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_3').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.849</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_4'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10136660724896014); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_4').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_4').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_4').style.opacity = 0;\"\n",
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.352</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_5').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_5').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_5').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.444</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_6'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_6').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_6').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_6').style.opacity = 0;\"\n",
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.112</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_7'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_7').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_7').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_7').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.046</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_8'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_8').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_8').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_8').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_9'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_9').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_9').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_9').style.opacity = 0;\"\n",
" >damned </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.039</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_10'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.12501485442661905); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_10').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_10').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_10').style.opacity = 0;\"\n",
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.068</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_11'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_11').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_11').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_11').style.opacity = 0;\"\n",
" >just </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.006</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_12'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_12').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_12').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_12').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.01</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_13'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_13').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_13').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_13').style.opacity = 0;\"\n",
" >being </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.034</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_14'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_14').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_14').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_14').style.opacity = 0;\"\n",
" >around </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.09</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_15'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_15').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_15').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_15').style.opacity = 0;\"\n",
" >someone </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.108</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_16'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_16').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_16').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_16').style.opacity = 0;\"\n",
" >who </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.409</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_17'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_17').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_17').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_17').style.opacity = 0;\"\n",
" >cares </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_18'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_18').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_18').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_18').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.019</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_19'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_19').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_19').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_19').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.048</div\n",
" ><div id='_tp_rjwzakayiwmmwseqxnho_ind_20'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_20').style.opacity = 1; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rjwzakayiwmmwseqxnho_ind_20').style.opacity = 0; document.getElementById('_fs_rjwzakayiwmmwseqxnho_ind_20').style.opacity = 0;\"\n",
" >awake</div></div></div></div><div id='_tp_mjmwmdjkdcajvzkuexbb_output_5_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"51.29401808091008%\" y1=\"33\" x2=\"51.29401808091008%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"51.29401808091008%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"30.549527078613036%\" y1=\"33\" x2=\"30.549527078613036%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"30.549527078613036%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"9.805036076315988%\" y1=\"33\" x2=\"9.805036076315988%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"9.805036076315988%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-8</text><line x1=\"72.03850908320713%\" y1=\"33\" x2=\"72.03850908320713%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.03850908320713%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"92.78300008550418%\" y1=\"33\" x2=\"92.78300008550418%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"92.78300008550418%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"86.14574857815502%\" y1=\"33\" x2=\"86.14574857815502%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"86.14574857815502%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4.31995</text><text x=\"86.14574857815502%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4.31995</text><text x=\"86.14574857815502%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"13.854251214400067%\" y1=\"33\" x2=\"13.854251214400067%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.854251214400067%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.80481</text><text x=\"13.854251214400067%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.80481</text><text x=\"13.854251214400067%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"8.332570209201625%\" width=\"5.521681005198443%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"11.524255828588467%\" x2=\"13.854251214400067%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"12.689253521494267%\" y=\"71\" font-size=\"12px\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.112</text><svg x=\"11.524255828588467%\" y=\"40\" height=\"20\" width=\"2.3299953858116%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"9.282721692368149%\" x2=\"11.524255828588467%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.403488760478307%\" y=\"71\" font-size=\"12px\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.108</text><svg x=\"9.282721692368149%\" y=\"40\" height=\"20\" width=\"2.2415341362203183%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"8.557859009580486%\" x2=\"9.282721692368149%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.920290350974318%\" y=\"71\" font-size=\"12px\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.035</text><svg x=\"8.557859009580486%\" y=\"40\" height=\"20\" width=\"0.7248626827876627%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"8.44242266460813%\" x2=\"8.557859009580486%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_12\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.500140837094309%\" y=\"71\" font-size=\"12px\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_12\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.006</text><svg x=\"8.44242266460813%\" y=\"40\" height=\"20\" width=\"0.11543634497235544%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"8.371771809454154%\" x2=\"8.44242266460813%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.407097237031142%\" y=\"71\" font-size=\"12px\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"8.371771809454154%\" y=\"40\" height=\"20\" width=\"0.07065085515397662%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"8.332570209201625%\" x2=\"8.371771809454154%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_18\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.35217100932789%\" y=\"71\" font-size=\"12px\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_18\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"8.332570209201625%\" y=\"40\" height=\"20\" width=\"0.039201600252528834%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"11.524255828588467%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.524255828588467%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.524255828588467%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.524255828588467%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.524255828588467%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.524255828588467%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.524255828588467%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.524255828588467%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.282721692368149%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.282721692368149%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.282721692368149%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.282721692368149%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.282721692368149%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.282721692368149%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.282721692368149%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.282721692368149%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.557859009580486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.557859009580486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.557859009580486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.557859009580486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.557859009580486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.557859009580486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.557859009580486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.557859009580486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.44242266460813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.44242266460813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.44242266460813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.44242266460813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.44242266460813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.44242266460813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.44242266460813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.44242266460813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.371771809454154%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.371771809454154%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.371771809454154%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.371771809454154%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.371771809454154%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.371771809454154%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.371771809454154%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.371771809454154%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"13.854251214400067%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.332570209201625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"13.854251214400067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.524255828588467%\" y=\"40\" height=\"20\" width=\"2.3299953858116%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_7').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_7').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_7').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.524255828588467%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.282721692368149%\" y=\"40\" height=\"20\" width=\"2.2415341362203183%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_16').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_16').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_16').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.282721692368149%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.557859009580486%\" y=\"40\" height=\"20\" width=\"0.7248626827876627%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_3').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_3').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_3').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.557859009580486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.44242266460813%\" y=\"40\" height=\"20\" width=\"0.11543634497235544%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_12').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_12').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_12').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.44242266460813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.371771809454154%\" y=\"40\" height=\"20\" width=\"0.07065085515397662%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_9').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_9').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_9').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.332570209201625%\" y=\"40\" height=\"20\" width=\"0.039201600252528834%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_18').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_18').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_18').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"13.854251214400067%\" width=\"77.8131783689534%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"13.854251214400067%\" x2=\"35.403198818690434%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"24.62872501654525%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.039</text><svg x=\"13.854251214400067%\" y=\"40\" height=\"20\" width=\"21.54894760429037%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"35.403198818690434%\" x2=\"53.01502762063751%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.209113219663976%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.849</text><svg x=\"35.403198818690434%\" y=\"40\" height=\"20\" width=\"17.611828801947077%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"53.01502762063751%\" x2=\"62.22729672549825%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"57.62116217306788%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.444</text><svg x=\"53.01502762063751%\" y=\"40\" height=\"20\" width=\"9.212269104860738%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"62.22729672549825%\" x2=\"70.70294062732333%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"66.46511867641078%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.409</text><svg x=\"62.22729672549825%\" y=\"40\" height=\"20\" width=\"8.47564390182508%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"70.70294062732333%\" x2=\"78.00537730684215%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"74.35415896708274%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.352</text><svg x=\"70.70294062732333%\" y=\"40\" height=\"20\" width=\"7.30243667951882%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"78.00537730684215%\" x2=\"81.00103081384002%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"79.50320406034109%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.144</text><svg x=\"78.00537730684215%\" y=\"40\" height=\"20\" width=\"2.9956535069978685%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"81.00103081384002%\" x2=\"83.60784789581892%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"82.30443935482947%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.126</text><svg x=\"81.00103081384002%\" y=\"40\" height=\"20\" width=\"2.606817081978903%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"83.60784789581892%\" x2=\"85.48011642279712%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"84.54398215930803%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.09</text><svg x=\"83.60784789581892%\" y=\"40\" height=\"20\" width=\"1.8722685269782033%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"85.48011642279712%\" x2=\"86.99889852713521%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.23950747496616%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.073</text><svg x=\"85.48011642279712%\" y=\"40\" height=\"20\" width=\"1.5187821043380865%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"86.99889852713521%\" x2=\"88.41271067914985%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.70580460314252%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.068</text><svg x=\"86.99889852713521%\" y=\"40\" height=\"20\" width=\"1.4138121520146427%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"88.41271067914985%\" x2=\"89.41428006657921%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.91349537286453%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.048</text><svg x=\"88.41271067914985%\" y=\"40\" height=\"20\" width=\"1.001569387429356%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"89.41428006657921%\" x2=\"90.36195335872219%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.8881167126507%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.046</text><svg x=\"89.41428006657921%\" y=\"40\" height=\"20\" width=\"0.94767329214298%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"90.36195335872219%\" x2=\"91.07676046535967%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.71935691204092%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.034</text><svg x=\"90.36195335872219%\" y=\"40\" height=\"20\" width=\"0.7148071066374797%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"91.07676046535967%\" x2=\"91.46647911030892%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.2716197878343%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.019</text><svg x=\"91.07676046535967%\" y=\"40\" height=\"20\" width=\"0.3897186449492551%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"91.46647911030892%\" x2=\"91.66742958335347%\" y1=\"60\" y2=\"60\" id=\"_fb_pwadmrtbzxijlkdmsvjl_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.5669543468312%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pwadmrtbzxijlkdmsvjl_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.01</text><svg x=\"91.46647911030892%\" y=\"40\" height=\"20\" width=\"0.20095047304454283%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"35.403198818690434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"35.403198818690434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"35.403198818690434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"35.403198818690434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.403198818690434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.403198818690434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.403198818690434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.403198818690434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"53.01502762063751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"53.01502762063751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"53.01502762063751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"53.01502762063751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"53.01502762063751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"53.01502762063751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"53.01502762063751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"53.01502762063751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"62.22729672549825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"62.22729672549825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"62.22729672549825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"62.22729672549825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"62.22729672549825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"62.22729672549825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"62.22729672549825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"62.22729672549825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"70.70294062732333%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"70.70294062732333%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"70.70294062732333%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"70.70294062732333%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"70.70294062732333%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"70.70294062732333%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"70.70294062732333%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"70.70294062732333%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"78.00537730684215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"78.00537730684215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"78.00537730684215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"78.00537730684215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"78.00537730684215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"78.00537730684215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"78.00537730684215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"78.00537730684215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"81.00103081384002%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"81.00103081384002%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"81.00103081384002%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"81.00103081384002%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"81.00103081384002%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"81.00103081384002%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"81.00103081384002%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"81.00103081384002%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"83.60784789581892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"83.60784789581892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"83.60784789581892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"83.60784789581892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"83.60784789581892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"83.60784789581892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"83.60784789581892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"83.60784789581892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.48011642279712%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.48011642279712%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.48011642279712%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.48011642279712%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.48011642279712%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.48011642279712%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.48011642279712%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.48011642279712%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.99889852713521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.99889852713521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.99889852713521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.99889852713521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.99889852713521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.99889852713521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.99889852713521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.99889852713521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.41271067914985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.41271067914985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.41271067914985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.41271067914985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.41271067914985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.41271067914985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.41271067914985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.41271067914985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.41428006657921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.41428006657921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.41428006657921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.41428006657921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.41428006657921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.41428006657921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.41428006657921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.41428006657921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.36195335872219%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.36195335872219%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.36195335872219%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.36195335872219%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.36195335872219%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.36195335872219%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.36195335872219%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.36195335872219%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.07676046535967%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.07676046535967%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.07676046535967%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.07676046535967%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.07676046535967%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.07676046535967%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.07676046535967%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.07676046535967%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.46647911030892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.46647911030892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.46647911030892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.46647911030892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.46647911030892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.46647911030892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.46647911030892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.46647911030892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"13.854251214400067%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66742958335347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"35.403198818690434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"13.854251214400067%\" y=\"40\" height=\"20\" width=\"21.54894760429037%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_10').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_10').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_10').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"53.01502762063751%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"35.403198818690434%\" y=\"40\" height=\"20\" width=\"17.611828801947077%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_4').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_4').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_4').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"62.22729672549825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"53.01502762063751%\" y=\"40\" height=\"20\" width=\"9.212269104860738%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_6').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_6').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_6').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"70.70294062732333%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"62.22729672549825%\" y=\"40\" height=\"20\" width=\"8.47564390182508%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_17').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_17').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_17').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"78.00537730684215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"70.70294062732333%\" y=\"40\" height=\"20\" width=\"7.30243667951882%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_5').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_5').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_5').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"81.00103081384002%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"78.00537730684215%\" y=\"40\" height=\"20\" width=\"2.9956535069978685%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_2').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_2').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_2').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"83.60784789581892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"81.00103081384002%\" y=\"40\" height=\"20\" width=\"2.606817081978903%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_1').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_1').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_1').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.48011642279712%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"83.60784789581892%\" y=\"40\" height=\"20\" width=\"1.8722685269782033%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_15').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_15').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_15').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.99889852713521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.48011642279712%\" y=\"40\" height=\"20\" width=\"1.5187821043380865%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_0').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_0').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_0').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.41271067914985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.99889852713521%\" y=\"40\" height=\"20\" width=\"1.4138121520146427%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_11').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_11').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_11').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.41428006657921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.41271067914985%\" y=\"40\" height=\"20\" width=\"1.001569387429356%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_20').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_20').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_20').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.36195335872219%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.41428006657921%\" y=\"40\" height=\"20\" width=\"0.94767329214298%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_8').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_8').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_8').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.07676046535967%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.36195335872219%\" y=\"40\" height=\"20\" width=\"0.7148071066374797%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_14').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_14').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_14').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.46647911030892%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.07676046535967%\" y=\"40\" height=\"20\" width=\"0.3897186449492551%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_19').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_19').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_19').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.46647911030892%\" y=\"40\" height=\"20\" width=\"0.20095047304454283%\" onmouseover=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_13').style.opacity = 1;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pwadmrtbzxijlkdmsvjl_ind_13').style.textDecoration = 'none';document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_13').style.opacity = 0;document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.073</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06983561101208147); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_0').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_0').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_0').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.126</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.11713210536739943); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_1').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_1').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_1').style.opacity = 0;\"\n",
" >can </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.144</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1328976034858387); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_2').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_2').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_2').style.opacity = 0;\"\n",
" >go </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.035</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_3').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_3').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_3').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.849</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_4'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.8186967716379481); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_4').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_4').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_4').style.opacity = 0;\"\n",
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.352</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.33784907902554956); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_5').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_5').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_5').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.444</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_6'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.42455931867696567); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_6').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_6').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_6').style.opacity = 0;\"\n",
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.112</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_7'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.10136660724896006); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_7').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_7').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_7').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.046</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_8'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_8').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_8').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_8').style.opacity = 0;\"\n",
" >so </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_9'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_9').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_9').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_9').style.opacity = 0;\"\n",
" >damned </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.039</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_10'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_10').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_10').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_10').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_10').style.opacity = 0;\"\n",
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.068</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_11'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_11').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_11').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_11').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_11').style.opacity = 0;\"\n",
" >just </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.006</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_12'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_12').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_12').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_12').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_12').style.opacity = 0;\"\n",
" >from </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.01</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_13'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_13').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_13').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_13').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_13').style.opacity = 0;\"\n",
" >being </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.034</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_14'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_14').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_14').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_14').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_14').style.opacity = 0;\"\n",
" >around </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.09</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_15'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.08560110913052085); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_15').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_15').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_15').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_15').style.opacity = 0;\"\n",
" >someone </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.108</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_16'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.10136660724896006); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_16').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_16').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_16').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_16').style.opacity = 0;\"\n",
" >who </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.409</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_17'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.39302832244008723); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_17').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_17').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_17').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_17').style.opacity = 0;\"\n",
" >cares </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_18'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_18').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_18').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_18').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_18').style.opacity = 0;\"\n",
" >and </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.019</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_19'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_19').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_19').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_19').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_19').style.opacity = 0;\"\n",
" >is </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.048</div\n",
" ><div id='_tp_pwadmrtbzxijlkdmsvjl_ind_20'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_20').style.opacity = 1; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_20').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_pwadmrtbzxijlkdmsvjl_ind_20').style.opacity = 0; document.getElementById('_fs_pwadmrtbzxijlkdmsvjl_ind_20').style.opacity = 0;\"\n",
" >awake</div></div></div></div></div>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"\n",
"<br>\n",
"<hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
"<div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[2]</div>\n",
"</div>\n",
" "
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<div align='center'>\n",
"<script>\n",
" document._hover_duxscrtligdlrjvcmbvo = '_tp_duxscrtligdlrjvcmbvo_output_0';\n",
" document._zoom_duxscrtligdlrjvcmbvo = undefined;\n",
" function _output_onclick_duxscrtligdlrjvcmbvo(i) {\n",
" var next_id = undefined;\n",
" \n",
" if (document._zoom_duxscrtligdlrjvcmbvo !== undefined) {\n",
" document.getElementById(document._zoom_duxscrtligdlrjvcmbvo+ '_zoom').style.display = 'none';\n",
" \n",
" if (document._zoom_duxscrtligdlrjvcmbvo === '_tp_duxscrtligdlrjvcmbvo_output_' + i) {\n",
" document.getElementById(document._zoom_duxscrtligdlrjvcmbvo).style.display = 'block';\n",
" document.getElementById(document._zoom_duxscrtligdlrjvcmbvo+'_name').style.background = '#dddddd';\n",
" } else {\n",
" document.getElementById(document._zoom_duxscrtligdlrjvcmbvo).style.display = 'none';\n",
" document.getElementById(document._zoom_duxscrtligdlrjvcmbvo+'_name').style.background = '#ffffff';\n",
" }\n",
" }\n",
" if (document._zoom_duxscrtligdlrjvcmbvo !== '_tp_duxscrtligdlrjvcmbvo_output_' + i) {\n",
" next_id = '_tp_duxscrtligdlrjvcmbvo_output_' + i;\n",
" document.getElementById(next_id).style.display = 'none';\n",
" document.getElementById(next_id + '_zoom').style.display = 'block';\n",
" document.getElementById(next_id+'_name').style.background = '#bbbbbb';\n",
" }\n",
" document._zoom_duxscrtligdlrjvcmbvo = next_id;\n",
" }\n",
" function _output_onmouseover_duxscrtligdlrjvcmbvo(i, el) {\n",
" if (document._zoom_duxscrtligdlrjvcmbvo !== undefined) { return; }\n",
" if (document._hover_duxscrtligdlrjvcmbvo !== undefined) {\n",
" document.getElementById(document._hover_duxscrtligdlrjvcmbvo + '_name').style.background = '#ffffff';\n",
" document.getElementById(document._hover_duxscrtligdlrjvcmbvo).style.display = 'none';\n",
" }\n",
" document.getElementById('_tp_duxscrtligdlrjvcmbvo_output_' + i).style.display = 'block';\n",
" el.style.background = '#dddddd';\n",
" document._hover_duxscrtligdlrjvcmbvo = '_tp_duxscrtligdlrjvcmbvo_output_' + i;\n",
" }\n",
"</script>\n",
"<div style=\"color: rgb(120,120,120); font-size: 12px;\">outputs</div>\n",
"<div style=\"display: inline; background: #dddddd; border-radius: 3px; padding: 0px\" id=\"_tp_duxscrtligdlrjvcmbvo_output_0_name\"\n",
" onclick=\"_output_onclick_duxscrtligdlrjvcmbvo(0)\"\n",
" onmouseover=\"_output_onmouseover_duxscrtligdlrjvcmbvo(0, this);\">sadness</div>\n",
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_duxscrtligdlrjvcmbvo_output_1_name\"\n",
" onclick=\"_output_onclick_duxscrtligdlrjvcmbvo(1)\"\n",
" onmouseover=\"_output_onmouseover_duxscrtligdlrjvcmbvo(1, this);\">joy</div>\n",
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_duxscrtligdlrjvcmbvo_output_2_name\"\n",
" onclick=\"_output_onclick_duxscrtligdlrjvcmbvo(2)\"\n",
" onmouseover=\"_output_onmouseover_duxscrtligdlrjvcmbvo(2, this);\">love</div>\n",
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_duxscrtligdlrjvcmbvo_output_3_name\"\n",
" onclick=\"_output_onclick_duxscrtligdlrjvcmbvo(3)\"\n",
" onmouseover=\"_output_onmouseover_duxscrtligdlrjvcmbvo(3, this);\">anger</div>\n",
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_duxscrtligdlrjvcmbvo_output_4_name\"\n",
" onclick=\"_output_onclick_duxscrtligdlrjvcmbvo(4)\"\n",
" onmouseover=\"_output_onmouseover_duxscrtligdlrjvcmbvo(4, this);\">fear</div>\n",
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_duxscrtligdlrjvcmbvo_output_5_name\"\n",
" onclick=\"_output_onclick_duxscrtligdlrjvcmbvo(5)\"\n",
" onmouseover=\"_output_onmouseover_duxscrtligdlrjvcmbvo(5, this);\">surprise</div><br><br><div id='_tp_duxscrtligdlrjvcmbvo_output_0' style='display: block';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"47.359070267296794%\" y1=\"33\" x2=\"47.359070267296794%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"47.359070267296794%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.84234</text><text x=\"47.359070267296794%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.84234</text><text x=\"47.359070267296794%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"29.051377654109274%\" y1=\"33\" x2=\"29.051377654109274%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"29.051377654109274%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.08251</text><text x=\"29.051377654109274%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.08251</text><text x=\"29.051377654109274%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"26.027655602137333%\" width=\"3.023722051971943%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"26.697291174434557%\" x2=\"29.051377654109274%\" y1=\"60\" y2=\"60\" id=\"_fb_hwrsgokufexuxdwjrvxt_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"27.874334414271914%\" y=\"71\" font-size=\"12px\" id=\"_fs_hwrsgokufexuxdwjrvxt_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.545</text><svg x=\"26.697291174434557%\" y=\"40\" height=\"20\" width=\"2.3540864796747165%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"26.384853879043877%\" x2=\"26.697291174434557%\" y1=\"60\" y2=\"60\" id=\"_fb_hwrsgokufexuxdwjrvxt_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"26.541072526739217%\" y=\"71\" font-size=\"12px\" id=\"_fs_hwrsgokufexuxdwjrvxt_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.072</text><svg x=\"26.384853879043877%\" y=\"40\" height=\"20\" width=\"0.31243729539068%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"26.154650643867857%\" x2=\"26.384853879043877%\" y1=\"60\" y2=\"60\" id=\"_fb_hwrsgokufexuxdwjrvxt_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"26.269752261455867%\" y=\"71\" font-size=\"12px\" id=\"_fs_hwrsgokufexuxdwjrvxt_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.053</text><svg x=\"26.154650643867857%\" y=\"40\" height=\"20\" width=\"0.23020323517602037%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"26.027655602137333%\" x2=\"26.154650643867857%\" y1=\"60\" y2=\"60\" id=\"_fb_hwrsgokufexuxdwjrvxt_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"26.091153123002595%\" y=\"71\" font-size=\"12px\" id=\"_fs_hwrsgokufexuxdwjrvxt_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.029</text><svg x=\"26.027655602137333%\" y=\"40\" height=\"20\" width=\"0.1269950417305239%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"26.697291174434557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.697291174434557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.697291174434557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.697291174434557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.697291174434557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.697291174434557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.697291174434557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.697291174434557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.384853879043877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.384853879043877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.384853879043877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.384853879043877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.384853879043877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.384853879043877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.384853879043877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.384853879043877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.154650643867857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.154650643867857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.154650643867857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.154650643867857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.154650643867857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.154650643867857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.154650643867857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.154650643867857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"29.051377654109274%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"26.027655602137333%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"29.051377654109274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.697291174434557%\" y=\"40\" height=\"20\" width=\"2.3540864796747165%\" onmouseover=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_6').style.opacity = 1;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_6').style.textDecoration = 'none';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_6').style.opacity = 0;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"26.697291174434557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.384853879043877%\" y=\"40\" height=\"20\" width=\"0.31243729539068%\" onmouseover=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_3').style.opacity = 1;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_3').style.textDecoration = 'none';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_3').style.opacity = 0;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"26.384853879043877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.154650643867857%\" y=\"40\" height=\"20\" width=\"0.23020323517602037%\" onmouseover=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_4').style.opacity = 1;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_4').style.textDecoration = 'none';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_4').style.opacity = 0;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"26.027655602137333%\" y=\"40\" height=\"20\" width=\"0.1269950417305239%\" onmouseover=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_2').style.opacity = 1;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_2').style.textDecoration = 'none';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_2').style.opacity = 0;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"29.051377654109274%\" width=\"21.331414665159464%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"29.051377654109274%\" x2=\"45.242386363774436%\" y1=\"60\" y2=\"60\" id=\"_fb_hwrsgokufexuxdwjrvxt_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.14688200894186%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_hwrsgokufexuxdwjrvxt_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-3.75</text><svg x=\"29.051377654109274%\" y=\"40\" height=\"20\" width=\"16.191008709665162%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"45.242386363774436%\" x2=\"47.05834333714755%\" y1=\"60\" y2=\"60\" id=\"_fb_hwrsgokufexuxdwjrvxt_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.15036485046099%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_hwrsgokufexuxdwjrvxt_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.421</text><svg x=\"45.242386363774436%\" y=\"40\" height=\"20\" width=\"1.8159569733731118%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"47.05834333714755%\" x2=\"48.64282182344118%\" y1=\"60\" y2=\"60\" id=\"_fb_hwrsgokufexuxdwjrvxt_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"47.850582580294365%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_hwrsgokufexuxdwjrvxt_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.367</text><svg x=\"47.05834333714755%\" y=\"40\" height=\"20\" width=\"1.5844784862936336%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"48.64282182344118%\" x2=\"49.300381073540876%\" y1=\"60\" y2=\"60\" id=\"_fb_hwrsgokufexuxdwjrvxt_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"48.97160144849103%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_hwrsgokufexuxdwjrvxt_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.152</text><svg x=\"48.64282182344118%\" y=\"40\" height=\"20\" width=\"0.6575592500996947%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"49.300381073540876%\" x2=\"49.91338477471275%\" y1=\"60\" y2=\"60\" id=\"_fb_hwrsgokufexuxdwjrvxt_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"49.606882924126815%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_hwrsgokufexuxdwjrvxt_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.142</text><svg x=\"49.300381073540876%\" y=\"40\" height=\"20\" width=\"0.613003701171877%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"49.91338477471275%\" x2=\"50.38279231926874%\" y1=\"60\" y2=\"60\" id=\"_fb_hwrsgokufexuxdwjrvxt_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"50.14808854699075%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_hwrsgokufexuxdwjrvxt_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.109</text><svg x=\"49.91338477471275%\" y=\"40\" height=\"20\" width=\"0.46940754455598466%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"45.242386363774436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"45.242386363774436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"45.242386363774436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"45.242386363774436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.242386363774436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.242386363774436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.242386363774436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.242386363774436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"47.05834333714755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"47.05834333714755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"47.05834333714755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"47.05834333714755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.05834333714755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.05834333714755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.05834333714755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.05834333714755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"48.64282182344118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"48.64282182344118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"48.64282182344118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"48.64282182344118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"48.64282182344118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"48.64282182344118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"48.64282182344118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"48.64282182344118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.300381073540876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"49.300381073540876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"49.300381073540876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"49.300381073540876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.300381073540876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"49.300381073540876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.300381073540876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.300381073540876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.91338477471275%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"49.91338477471275%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"49.91338477471275%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"49.91338477471275%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.91338477471275%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"49.91338477471275%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.91338477471275%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.91338477471275%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"29.051377654109274%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"50.38279231926874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"45.242386363774436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"29.051377654109274%\" y=\"40\" height=\"20\" width=\"16.191008709665162%\" onmouseover=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_8').style.opacity = 1;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_8').style.textDecoration = 'none';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_8').style.opacity = 0;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"47.05834333714755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"45.242386363774436%\" y=\"40\" height=\"20\" width=\"1.8159569733731118%\" onmouseover=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_9').style.opacity = 1;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_9').style.textDecoration = 'none';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_9').style.opacity = 0;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"48.64282182344118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"47.05834333714755%\" y=\"40\" height=\"20\" width=\"1.5844784862936336%\" onmouseover=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_7').style.opacity = 1;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_7').style.textDecoration = 'none';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_7').style.opacity = 0;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"49.300381073540876%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"48.64282182344118%\" y=\"40\" height=\"20\" width=\"0.6575592500996947%\" onmouseover=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_5').style.opacity = 1;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_5').style.textDecoration = 'none';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_5').style.opacity = 0;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"49.91338477471275%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"49.300381073540876%\" y=\"40\" height=\"20\" width=\"0.613003701171877%\" onmouseover=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_0').style.opacity = 1;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_0').style.textDecoration = 'none';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_0').style.opacity = 0;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"49.91338477471275%\" y=\"40\" height=\"20\" width=\"0.46940754455598466%\" onmouseover=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_1').style.opacity = 1;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hwrsgokufexuxdwjrvxt_ind_1').style.textDecoration = 'none';document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_1').style.opacity = 0;document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.142</div\n",
" ><div id='_tp_hwrsgokufexuxdwjrvxt_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_0').style.opacity = 1; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_0').style.opacity = 0; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_0').style.opacity = 0;\"\n",
" >im </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.109</div\n",
" ><div id='_tp_hwrsgokufexuxdwjrvxt_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_1').style.opacity = 1; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_1').style.opacity = 0; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_1').style.opacity = 0;\"\n",
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.029</div\n",
" ><div id='_tp_hwrsgokufexuxdwjrvxt_ind_2'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_2').style.opacity = 1; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_2').style.opacity = 0; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_2').style.opacity = 0;\"\n",
" >a </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.072</div\n",
" ><div id='_tp_hwrsgokufexuxdwjrvxt_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_3').style.opacity = 1; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_3').style.opacity = 0; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_3').style.opacity = 0;\"\n",
" >minute </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.053</div\n",
" ><div id='_tp_hwrsgokufexuxdwjrvxt_ind_4'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_4').style.opacity = 1; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_4').style.opacity = 0; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_4').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.152</div\n",
" ><div id='_tp_hwrsgokufexuxdwjrvxt_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_5').style.opacity = 1; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_5').style.opacity = 0; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_5').style.opacity = 0;\"\n",
" >post </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.545</div\n",
" ><div id='_tp_hwrsgokufexuxdwjrvxt_ind_6'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06195286195286207); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_6').style.opacity = 1; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_6').style.opacity = 0; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_6').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.367</div\n",
" ><div id='_tp_hwrsgokufexuxdwjrvxt_ind_7'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_7').style.opacity = 1; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_7').style.opacity = 0; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_7').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-3.75</div\n",
" ><div id='_tp_hwrsgokufexuxdwjrvxt_ind_8'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.4560903149138443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_8').style.opacity = 1; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_8').style.opacity = 0; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_8').style.opacity = 0;\"\n",
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.421</div\n",
" ><div id='_tp_hwrsgokufexuxdwjrvxt_ind_9'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_9').style.opacity = 1; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_hwrsgokufexuxdwjrvxt_ind_9').style.opacity = 0; document.getElementById('_fs_hwrsgokufexuxdwjrvxt_ind_9').style.opacity = 0;\"\n",
" >wrong</div></div></div></div><div id='_tp_duxscrtligdlrjvcmbvo_output_0_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.444889200588%\" y1=\"33\" x2=\"49.444889200588%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.444889200588%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"34.67155618494772%\" y1=\"33\" x2=\"34.67155618494772%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.67155618494772%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"19.89822316930744%\" y1=\"33\" x2=\"19.89822316930744%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"19.89822316930744%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"64.21822221622828%\" y1=\"33\" x2=\"64.21822221622828%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"64.21822221622828%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"78.99155523186857%\" y1=\"33\" x2=\"78.99155523186857%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"78.99155523186857%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"81.32072430892737%\" y1=\"33\" x2=\"81.32072430892737%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.32072430892737%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.84234</text><text x=\"81.32072430892737%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.84234</text><text x=\"81.32072430892737%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"18.6792755433393%\" y1=\"33\" x2=\"18.6792755433393%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.6792755433393%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.08251</text><text x=\"18.6792755433393%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.08251</text><text x=\"18.6792755433393%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"8.333333321022222%\" width=\"10.345942222317078%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"10.62455282530079%\" x2=\"18.6792755433393%\" y1=\"60\" y2=\"60\" id=\"_fb_ddipimztqfukgubvwlfi_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"14.651914184320045%\" y=\"71\" font-size=\"12px\" id=\"_fs_ddipimztqfukgubvwlfi_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.545</text><svg x=\"10.62455282530079%\" y=\"40\" height=\"20\" width=\"8.05472271803851%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"9.55551997418244%\" x2=\"10.62455282530079%\" y1=\"60\" y2=\"60\" id=\"_fb_ddipimztqfukgubvwlfi_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.090036399741615%\" y=\"71\" font-size=\"12px\" id=\"_fs_ddipimztqfukgubvwlfi_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.072</text><svg x=\"9.55551997418244%\" y=\"40\" height=\"20\" width=\"1.069032851118351%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"8.767858499488241%\" x2=\"9.55551997418244%\" y1=\"60\" y2=\"60\" id=\"_fb_ddipimztqfukgubvwlfi_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.16168923683534%\" y=\"71\" font-size=\"12px\" id=\"_fs_ddipimztqfukgubvwlfi_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.053</text><svg x=\"8.767858499488241%\" y=\"40\" height=\"20\" width=\"0.7876614746941986%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"8.333333321022222%\" x2=\"8.767858499488241%\" y1=\"60\" y2=\"60\" id=\"_fb_ddipimztqfukgubvwlfi_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.550595910255232%\" y=\"71\" font-size=\"12px\" id=\"_fs_ddipimztqfukgubvwlfi_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.029</text><svg x=\"8.333333321022222%\" y=\"40\" height=\"20\" width=\"0.43452517846601957%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"10.62455282530079%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.62455282530079%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.62455282530079%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.62455282530079%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.62455282530079%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.62455282530079%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.62455282530079%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.62455282530079%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.55551997418244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.55551997418244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.55551997418244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.55551997418244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.55551997418244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.55551997418244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.55551997418244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.55551997418244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.767858499488241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.767858499488241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.767858499488241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.767858499488241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.767858499488241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.767858499488241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.767858499488241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.767858499488241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"18.6792755433393%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333321022222%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"18.6792755433393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.62455282530079%\" y=\"40\" height=\"20\" width=\"8.05472271803851%\" onmouseover=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_6').style.opacity = 1;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_6').style.textDecoration = 'none';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_6').style.opacity = 0;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.62455282530079%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.55551997418244%\" y=\"40\" height=\"20\" width=\"1.069032851118351%\" onmouseover=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_3').style.opacity = 1;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_3').style.textDecoration = 'none';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_3').style.opacity = 0;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.55551997418244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.767858499488241%\" y=\"40\" height=\"20\" width=\"0.7876614746941986%\" onmouseover=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_4').style.opacity = 1;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_4').style.textDecoration = 'none';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_4').style.opacity = 0;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333321022222%\" y=\"40\" height=\"20\" width=\"0.43452517846601957%\" onmouseover=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_2').style.opacity = 1;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_2').style.textDecoration = 'none';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_2').style.opacity = 0;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"18.6792755433393%\" width=\"72.98739098790514%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"18.6792755433393%\" x2=\"74.07829627078505%\" y1=\"60\" y2=\"60\" id=\"_fb_ddipimztqfukgubvwlfi_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.37878590706217%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ddipimztqfukgubvwlfi_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-3.75</text><svg x=\"18.6792755433393%\" y=\"40\" height=\"20\" width=\"55.399020727445745%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"74.07829627078505%\" x2=\"80.29175954611465%\" y1=\"60\" y2=\"60\" id=\"_fb_ddipimztqfukgubvwlfi_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"77.18502790844985%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ddipimztqfukgubvwlfi_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.421</text><svg x=\"74.07829627078505%\" y=\"40\" height=\"20\" width=\"6.213463275329602%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"80.29175954611465%\" x2=\"85.71319795544451%\" y1=\"60\" y2=\"60\" id=\"_fb_ddipimztqfukgubvwlfi_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"83.00247875077957%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ddipimztqfukgubvwlfi_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.367</text><svg x=\"80.29175954611465%\" y=\"40\" height=\"20\" width=\"5.421438409329866%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"85.71319795544451%\" x2=\"87.96309721614041%\" y1=\"60\" y2=\"60\" id=\"_fb_ddipimztqfukgubvwlfi_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.83814758579246%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ddipimztqfukgubvwlfi_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.152</text><svg x=\"85.71319795544451%\" y=\"40\" height=\"20\" width=\"2.249899260695898%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"87.96309721614041%\" x2=\"90.06054558122898%\" y1=\"60\" y2=\"60\" id=\"_fb_ddipimztqfukgubvwlfi_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.0118213986847%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ddipimztqfukgubvwlfi_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.142</text><svg x=\"87.96309721614041%\" y=\"40\" height=\"20\" width=\"2.0974483650885674%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"90.06054558122898%\" x2=\"91.66666653124445%\" y1=\"60\" y2=\"60\" id=\"_fb_ddipimztqfukgubvwlfi_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.8636060562367%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ddipimztqfukgubvwlfi_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.109</text><svg x=\"90.06054558122898%\" y=\"40\" height=\"20\" width=\"1.606120950015466%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"74.07829627078505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"74.07829627078505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"74.07829627078505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"74.07829627078505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"74.07829627078505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"74.07829627078505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"74.07829627078505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"74.07829627078505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"80.29175954611465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"80.29175954611465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"80.29175954611465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"80.29175954611465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"80.29175954611465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"80.29175954611465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"80.29175954611465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"80.29175954611465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.71319795544451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.71319795544451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.71319795544451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.71319795544451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.71319795544451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.71319795544451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.71319795544451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.71319795544451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.96309721614041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.96309721614041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.96309721614041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.96309721614041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.96309721614041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.96309721614041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.96309721614041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.96309721614041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.06054558122898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.06054558122898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.06054558122898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.06054558122898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.06054558122898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.06054558122898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.06054558122898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.06054558122898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"18.6792755433393%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666653124445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"74.07829627078505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"18.6792755433393%\" y=\"40\" height=\"20\" width=\"55.399020727445745%\" onmouseover=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_8').style.opacity = 1;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_8').style.textDecoration = 'none';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_8').style.opacity = 0;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"80.29175954611465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"74.07829627078505%\" y=\"40\" height=\"20\" width=\"6.213463275329602%\" onmouseover=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_9').style.opacity = 1;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_9').style.textDecoration = 'none';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_9').style.opacity = 0;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.71319795544451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"80.29175954611465%\" y=\"40\" height=\"20\" width=\"5.421438409329866%\" onmouseover=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_7').style.opacity = 1;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_7').style.textDecoration = 'none';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_7').style.opacity = 0;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.96309721614041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.71319795544451%\" y=\"40\" height=\"20\" width=\"2.249899260695898%\" onmouseover=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_5').style.opacity = 1;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_5').style.textDecoration = 'none';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_5').style.opacity = 0;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.06054558122898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.96309721614041%\" y=\"40\" height=\"20\" width=\"2.0974483650885674%\" onmouseover=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_0').style.opacity = 1;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_0').style.textDecoration = 'none';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_0').style.opacity = 0;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"90.06054558122898%\" y=\"40\" height=\"20\" width=\"1.606120950015466%\" onmouseover=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_1').style.opacity = 1;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ddipimztqfukgubvwlfi_ind_1').style.textDecoration = 'none';document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_1').style.opacity = 0;document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.142</div\n",
" ><div id='_tp_ddipimztqfukgubvwlfi_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_0').style.opacity = 1; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_0').style.opacity = 0; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_0').style.opacity = 0;\"\n",
" >im </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.109</div\n",
" ><div id='_tp_ddipimztqfukgubvwlfi_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_1').style.opacity = 1; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_1').style.opacity = 0; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_1').style.opacity = 0;\"\n",
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.029</div\n",
" ><div id='_tp_ddipimztqfukgubvwlfi_ind_2'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_2').style.opacity = 1; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_2').style.opacity = 0; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_2').style.opacity = 0;\"\n",
" >a </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.072</div\n",
" ><div id='_tp_ddipimztqfukgubvwlfi_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_3').style.opacity = 1; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_3').style.opacity = 0; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_3').style.opacity = 0;\"\n",
" >minute </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.053</div\n",
" ><div id='_tp_ddipimztqfukgubvwlfi_ind_4'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_4').style.opacity = 1; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_4').style.opacity = 0; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_4').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.152</div\n",
" ><div id='_tp_ddipimztqfukgubvwlfi_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_5').style.opacity = 1; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_5').style.opacity = 0; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_5').style.opacity = 0;\"\n",
" >post </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.545</div\n",
" ><div id='_tp_ddipimztqfukgubvwlfi_ind_6'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.14078035254505847); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_6').style.opacity = 1; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_6').style.opacity = 0; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_6').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.367</div\n",
" ><div id='_tp_ddipimztqfukgubvwlfi_ind_7'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.09348385818974048); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_7').style.opacity = 1; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_7').style.opacity = 0; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_7').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-3.75</div\n",
" ><div id='_tp_ddipimztqfukgubvwlfi_ind_8'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_8').style.opacity = 1; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_8').style.opacity = 0; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_8').style.opacity = 0;\"\n",
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.421</div\n",
" ><div id='_tp_ddipimztqfukgubvwlfi_ind_9'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10924935630817977); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_9').style.opacity = 1; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_ddipimztqfukgubvwlfi_ind_9').style.opacity = 0; document.getElementById('_fs_ddipimztqfukgubvwlfi_ind_9').style.opacity = 0;\"\n",
" >wrong</div></div></div></div><div id='_tp_duxscrtligdlrjvcmbvo_output_1' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"54.04331756319791%\" y1=\"33\" x2=\"54.04331756319791%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"54.04331756319791%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.294228</text><text x=\"54.04331756319791%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.294228</text><text x=\"54.04331756319791%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"23.846320911498303%\" y1=\"33\" x2=\"23.846320911498303%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"23.846320911498303%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.28803</text><text x=\"23.846320911498303%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.28803</text><text x=\"23.846320911498303%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"16.537475856969976%\" width=\"7.308845054528321%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"18.57569518399387%\" x2=\"23.846320911498303%\" y1=\"60\" y2=\"60\" id=\"_fb_rrpxzihhvmctwhgwqbus_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"21.211008047746084%\" y=\"71\" font-size=\"12px\" id=\"_fs_rrpxzihhvmctwhgwqbus_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.221</text><svg x=\"18.57569518399387%\" y=\"40\" height=\"20\" width=\"5.270625727504434%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"17.364364662948464%\" x2=\"18.57569518399387%\" y1=\"60\" y2=\"60\" id=\"_fb_rrpxzihhvmctwhgwqbus_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"17.970029923471166%\" y=\"71\" font-size=\"12px\" id=\"_fs_rrpxzihhvmctwhgwqbus_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.281</text><svg x=\"17.364364662948464%\" y=\"40\" height=\"20\" width=\"1.2113305210454044%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"16.74838910563047%\" x2=\"17.364364662948464%\" y1=\"60\" y2=\"60\" id=\"_fb_rrpxzihhvmctwhgwqbus_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"17.056376884289467%\" y=\"71\" font-size=\"12px\" id=\"_fs_rrpxzihhvmctwhgwqbus_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.143</text><svg x=\"16.74838910563047%\" y=\"40\" height=\"20\" width=\"0.615975557317995%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"16.537475856969976%\" x2=\"16.74838910563047%\" y1=\"60\" y2=\"60\" id=\"_fb_rrpxzihhvmctwhgwqbus_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"16.64293248130022%\" y=\"71\" font-size=\"12px\" id=\"_fs_rrpxzihhvmctwhgwqbus_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.049</text><svg x=\"16.537475856969976%\" y=\"40\" height=\"20\" width=\"0.21091324866049277%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"18.57569518399387%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"18.57569518399387%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"18.57569518399387%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"18.57569518399387%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"18.57569518399387%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"18.57569518399387%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"18.57569518399387%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"18.57569518399387%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"17.364364662948464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.364364662948464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.364364662948464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.364364662948464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.364364662948464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.364364662948464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.364364662948464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.364364662948464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"16.74838910563047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.74838910563047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.74838910563047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.74838910563047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.74838910563047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.74838910563047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.74838910563047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.74838910563047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"23.846320911498303%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"16.537475856969976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"23.846320911498303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"18.57569518399387%\" y=\"40\" height=\"20\" width=\"5.270625727504434%\" onmouseover=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_7').style.opacity = 1;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_7').style.textDecoration = 'none';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_7').style.opacity = 0;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"18.57569518399387%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.364364662948464%\" y=\"40\" height=\"20\" width=\"1.2113305210454044%\" onmouseover=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_3').style.opacity = 1;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_3').style.textDecoration = 'none';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_3').style.opacity = 0;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.364364662948464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.74838910563047%\" y=\"40\" height=\"20\" width=\"0.615975557317995%\" onmouseover=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_2').style.opacity = 1;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_2').style.textDecoration = 'none';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_2').style.opacity = 0;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"16.537475856969976%\" y=\"40\" height=\"20\" width=\"0.21091324866049277%\" onmouseover=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_5').style.opacity = 1;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_5').style.textDecoration = 'none';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_5').style.opacity = 0;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"23.846320911498303%\" width=\"37.50584170622793%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"23.846320911498303%\" x2=\"42.80676190129506%\" y1=\"60\" y2=\"60\" id=\"_fb_rrpxzihhvmctwhgwqbus_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"33.326541406396686%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rrpxzihhvmctwhgwqbus_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-4.391</text><svg x=\"23.846320911498303%\" y=\"40\" height=\"20\" width=\"18.96044098979676%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"42.80676190129506%\" x2=\"56.183471287420694%\" y1=\"60\" y2=\"60\" id=\"_fb_rrpxzihhvmctwhgwqbus_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"49.49511659435788%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rrpxzihhvmctwhgwqbus_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-3.098</text><svg x=\"42.80676190129506%\" y=\"40\" height=\"20\" width=\"13.376709386125633%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"56.183471287420694%\" x2=\"58.616250198122714%\" y1=\"60\" y2=\"60\" id=\"_fb_rrpxzihhvmctwhgwqbus_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"57.39986074277171%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rrpxzihhvmctwhgwqbus_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.563</text><svg x=\"56.183471287420694%\" y=\"40\" height=\"20\" width=\"2.4327789107020195%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"58.616250198122714%\" x2=\"60.46044491978864%\" y1=\"60\" y2=\"60\" id=\"_fb_rrpxzihhvmctwhgwqbus_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"59.53834755895568%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rrpxzihhvmctwhgwqbus_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.427</text><svg x=\"58.616250198122714%\" y=\"40\" height=\"20\" width=\"1.8441947216659287%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"60.46044491978864%\" x2=\"61.23893708445713%\" y1=\"60\" y2=\"60\" id=\"_fb_rrpxzihhvmctwhgwqbus_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"60.84969100212288%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rrpxzihhvmctwhgwqbus_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.18</text><svg x=\"60.46044491978864%\" y=\"40\" height=\"20\" width=\"0.778492164668485%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"61.23893708445713%\" x2=\"61.35216261772623%\" y1=\"60\" y2=\"60\" id=\"_fb_rrpxzihhvmctwhgwqbus_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"61.29554985109168%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rrpxzihhvmctwhgwqbus_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.026</text><svg x=\"61.23893708445713%\" y=\"40\" height=\"20\" width=\"0.11322553326910167%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"42.80676190129506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.80676190129506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.80676190129506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.80676190129506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.80676190129506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.80676190129506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.80676190129506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.80676190129506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"56.183471287420694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"56.183471287420694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"56.183471287420694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"56.183471287420694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"56.183471287420694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"56.183471287420694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"56.183471287420694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"56.183471287420694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"58.616250198122714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"58.616250198122714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"58.616250198122714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"58.616250198122714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"58.616250198122714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"58.616250198122714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"58.616250198122714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"58.616250198122714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"60.46044491978864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"60.46044491978864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"60.46044491978864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"60.46044491978864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"60.46044491978864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"60.46044491978864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"60.46044491978864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"60.46044491978864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"61.23893708445713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"61.23893708445713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"61.23893708445713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"61.23893708445713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"61.23893708445713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"61.23893708445713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"61.23893708445713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"61.23893708445713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"23.846320911498303%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"61.35216261772623%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"42.80676190129506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"23.846320911498303%\" y=\"40\" height=\"20\" width=\"18.96044098979676%\" onmouseover=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_8').style.opacity = 1;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_8').style.textDecoration = 'none';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_8').style.opacity = 0;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"56.183471287420694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.80676190129506%\" y=\"40\" height=\"20\" width=\"13.376709386125633%\" onmouseover=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_9').style.opacity = 1;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_9').style.textDecoration = 'none';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_9').style.opacity = 0;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"58.616250198122714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"56.183471287420694%\" y=\"40\" height=\"20\" width=\"2.4327789107020195%\" onmouseover=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_6').style.opacity = 1;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_6').style.textDecoration = 'none';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_6').style.opacity = 0;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"60.46044491978864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"58.616250198122714%\" y=\"40\" height=\"20\" width=\"1.8441947216659287%\" onmouseover=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_1').style.opacity = 1;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_1').style.textDecoration = 'none';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_1').style.opacity = 0;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"61.23893708445713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"60.46044491978864%\" y=\"40\" height=\"20\" width=\"0.778492164668485%\" onmouseover=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_0').style.opacity = 1;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_0').style.textDecoration = 'none';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_0').style.opacity = 0;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"61.23893708445713%\" y=\"40\" height=\"20\" width=\"0.11322553326910167%\" onmouseover=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_4').style.opacity = 1;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rrpxzihhvmctwhgwqbus_ind_4').style.textDecoration = 'none';document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_4').style.opacity = 0;document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.18</div\n",
" ><div id='_tp_rrpxzihhvmctwhgwqbus_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_0').style.opacity = 1; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_0').style.opacity = 0; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_0').style.opacity = 0;\"\n",
" >im </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.427</div\n",
" ><div id='_tp_rrpxzihhvmctwhgwqbus_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_1').style.opacity = 1; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_1').style.opacity = 0; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_1').style.opacity = 0;\"\n",
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.143</div\n",
" ><div id='_tp_rrpxzihhvmctwhgwqbus_ind_2'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_2').style.opacity = 1; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_2').style.opacity = 0; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_2').style.opacity = 0;\"\n",
" >a </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.281</div\n",
" ><div id='_tp_rrpxzihhvmctwhgwqbus_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_3').style.opacity = 1; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_3').style.opacity = 0; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_3').style.opacity = 0;\"\n",
" >minute </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.026</div\n",
" ><div id='_tp_rrpxzihhvmctwhgwqbus_ind_4'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_4').style.opacity = 1; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_4').style.opacity = 0; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_4').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.049</div\n",
" ><div id='_tp_rrpxzihhvmctwhgwqbus_ind_5'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_5').style.opacity = 1; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_5').style.opacity = 0; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_5').style.opacity = 0;\"\n",
" >post </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.563</div\n",
" ><div id='_tp_rrpxzihhvmctwhgwqbus_ind_6'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_6').style.opacity = 1; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_6').style.opacity = 0; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_6').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.221</div\n",
" ><div id='_tp_rrpxzihhvmctwhgwqbus_ind_7'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.14866310160427795); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_7').style.opacity = 1; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_7').style.opacity = 0; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_7').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-4.391</div\n",
" ><div id='_tp_rrpxzihhvmctwhgwqbus_ind_8'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.5428005545652604); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_8').style.opacity = 1; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_8').style.opacity = 0; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_8').style.opacity = 0;\"\n",
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-3.098</div\n",
" ><div id='_tp_rrpxzihhvmctwhgwqbus_ind_9'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.3772628243216478); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_9').style.opacity = 1; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_rrpxzihhvmctwhgwqbus_ind_9').style.opacity = 0; document.getElementById('_fs_rrpxzihhvmctwhgwqbus_ind_9').style.opacity = 0;\"\n",
" >wrong</div></div></div></div><div id='_tp_duxscrtligdlrjvcmbvo_output_1_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.32303326152658%\" y1=\"33\" x2=\"48.32303326152658%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.32303326152658%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"32.26550517805985%\" y1=\"33\" x2=\"32.26550517805985%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"32.26550517805985%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"16.20797709459311%\" y1=\"33\" x2=\"16.20797709459311%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"16.20797709459311%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-8</text><line x1=\"64.38056134499332%\" y1=\"33\" x2=\"64.38056134499332%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"64.38056134499332%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"80.43808942846006%\" y1=\"33\" x2=\"80.43808942846006%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"80.43808942846006%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"78.07580018864257%\" y1=\"33\" x2=\"78.07580018864257%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"78.07580018864257%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.294228</text><text x=\"78.07580018864257%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.294228</text><text x=\"78.07580018864257%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"21.92419973106977%\" y1=\"33\" x2=\"21.92419973106977%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"21.92419973106977%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.28803</text><text x=\"21.92419973106977%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.28803</text><text x=\"21.92419973106977%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"8.333333326642691%\" width=\"13.590866404427079%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"12.123421414409748%\" x2=\"21.92419973106977%\" y1=\"60\" y2=\"60\" id=\"_fb_eesszasiuhcsloxjtfoy_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"17.02381057273976%\" y=\"71\" font-size=\"12px\" id=\"_fs_eesszasiuhcsloxjtfoy_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.221</text><svg x=\"12.123421414409748%\" y=\"40\" height=\"20\" width=\"9.800778316660022%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"9.870940870587962%\" x2=\"12.123421414409748%\" y1=\"60\" y2=\"60\" id=\"_fb_eesszasiuhcsloxjtfoy_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.997181142498855%\" y=\"71\" font-size=\"12px\" id=\"_fs_eesszasiuhcsloxjtfoy_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.281</text><svg x=\"9.870940870587962%\" y=\"40\" height=\"20\" width=\"2.252480543821786%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"8.72552850441465%\" x2=\"9.870940870587962%\" y1=\"60\" y2=\"60\" id=\"_fb_eesszasiuhcsloxjtfoy_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.298234687501306%\" y=\"71\" font-size=\"12px\" id=\"_fs_eesszasiuhcsloxjtfoy_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.143</text><svg x=\"8.72552850441465%\" y=\"40\" height=\"20\" width=\"1.1454123661733124%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"8.333333326642691%\" x2=\"8.72552850441465%\" y1=\"60\" y2=\"60\" id=\"_fb_eesszasiuhcsloxjtfoy_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.529430915528671%\" y=\"71\" font-size=\"12px\" id=\"_fs_eesszasiuhcsloxjtfoy_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.049</text><svg x=\"8.333333326642691%\" y=\"40\" height=\"20\" width=\"0.3921951777719581%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"12.123421414409748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.123421414409748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.123421414409748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.123421414409748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.123421414409748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.123421414409748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.123421414409748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.123421414409748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.870940870587962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.870940870587962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.870940870587962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.870940870587962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.870940870587962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.870940870587962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.870940870587962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.870940870587962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.72552850441465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.72552850441465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.72552850441465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.72552850441465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.72552850441465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.72552850441465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.72552850441465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.72552850441465%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"21.92419973106977%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333326642691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"21.92419973106977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.123421414409748%\" y=\"40\" height=\"20\" width=\"9.800778316660022%\" onmouseover=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_7').style.opacity = 1;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_7').style.textDecoration = 'none';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_7').style.opacity = 0;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.123421414409748%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.870940870587962%\" y=\"40\" height=\"20\" width=\"2.252480543821786%\" onmouseover=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_3').style.opacity = 1;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_3').style.textDecoration = 'none';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_3').style.opacity = 0;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.870940870587962%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.72552850441465%\" y=\"40\" height=\"20\" width=\"1.1454123661733124%\" onmouseover=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_2').style.opacity = 1;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_2').style.textDecoration = 'none';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_2').style.opacity = 0;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333326642691%\" y=\"40\" height=\"20\" width=\"0.3921951777719581%\" onmouseover=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_5').style.opacity = 1;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_5').style.textDecoration = 'none';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_5').style.opacity = 0;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"21.92419973106977%\" width=\"69.74246686199989%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"21.92419973106977%\" x2=\"57.18131881607422%\" y1=\"60\" y2=\"60\" id=\"_fb_eesszasiuhcsloxjtfoy_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.55275927357199%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_eesszasiuhcsloxjtfoy_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-4.391</text><svg x=\"21.92419973106977%\" y=\"40\" height=\"20\" width=\"35.25711908500445%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"57.18131881607422%\" x2=\"82.05543625068057%\" y1=\"60\" y2=\"60\" id=\"_fb_eesszasiuhcsloxjtfoy_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"69.6183775333774%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_eesszasiuhcsloxjtfoy_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-3.098</text><svg x=\"57.18131881607422%\" y=\"40\" height=\"20\" width=\"24.874117434606354%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"82.05543625068057%\" x2=\"86.57921161056095%\" y1=\"60\" y2=\"60\" id=\"_fb_eesszasiuhcsloxjtfoy_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"84.31732393062076%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_eesszasiuhcsloxjtfoy_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.563</text><svg x=\"82.05543625068057%\" y=\"40\" height=\"20\" width=\"4.523775359880375%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"86.57921161056095%\" x2=\"90.0085091122753%\" y1=\"60\" y2=\"60\" id=\"_fb_eesszasiuhcsloxjtfoy_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.29386036141813%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_eesszasiuhcsloxjtfoy_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.427</text><svg x=\"86.57921161056095%\" y=\"40\" height=\"20\" width=\"3.429297501714359%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"90.0085091122753%\" x2=\"91.45612264464145%\" y1=\"60\" y2=\"60\" id=\"_fb_eesszasiuhcsloxjtfoy_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.73231587845838%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_eesszasiuhcsloxjtfoy_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.18</text><svg x=\"90.0085091122753%\" y=\"40\" height=\"20\" width=\"1.447613532366148%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"91.45612264464145%\" x2=\"91.66666659306966%\" y1=\"60\" y2=\"60\" id=\"_fb_eesszasiuhcsloxjtfoy_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.56139461885556%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_eesszasiuhcsloxjtfoy_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.026</text><svg x=\"91.45612264464145%\" y=\"40\" height=\"20\" width=\"0.21054394842821011%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"57.18131881607422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"57.18131881607422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"57.18131881607422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"57.18131881607422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"57.18131881607422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"57.18131881607422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"57.18131881607422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"57.18131881607422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"82.05543625068057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.05543625068057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.05543625068057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.05543625068057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.05543625068057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.05543625068057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.05543625068057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.05543625068057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.57921161056095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.57921161056095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.57921161056095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.57921161056095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.57921161056095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.57921161056095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.57921161056095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.57921161056095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.0085091122753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.0085091122753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.0085091122753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.0085091122753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.0085091122753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.0085091122753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.0085091122753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.0085091122753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.45612264464145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.45612264464145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.45612264464145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.45612264464145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.45612264464145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.45612264464145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.45612264464145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.45612264464145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"21.92419973106977%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666659306966%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"57.18131881607422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"21.92419973106977%\" y=\"40\" height=\"20\" width=\"35.25711908500445%\" onmouseover=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_8').style.opacity = 1;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_8').style.textDecoration = 'none';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_8').style.opacity = 0;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"82.05543625068057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"57.18131881607422%\" y=\"40\" height=\"20\" width=\"24.874117434606354%\" onmouseover=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_9').style.opacity = 1;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_9').style.textDecoration = 'none';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_9').style.opacity = 0;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.57921161056095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.05543625068057%\" y=\"40\" height=\"20\" width=\"4.523775359880375%\" onmouseover=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_6').style.opacity = 1;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_6').style.textDecoration = 'none';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_6').style.opacity = 0;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.0085091122753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.57921161056095%\" y=\"40\" height=\"20\" width=\"3.429297501714359%\" onmouseover=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_1').style.opacity = 1;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_1').style.textDecoration = 'none';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_1').style.opacity = 0;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.45612264464145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.0085091122753%\" y=\"40\" height=\"20\" width=\"1.447613532366148%\" onmouseover=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_0').style.opacity = 1;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_0').style.textDecoration = 'none';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_0').style.opacity = 0;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.45612264464145%\" y=\"40\" height=\"20\" width=\"0.21054394842821011%\" onmouseover=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_4').style.opacity = 1;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_eesszasiuhcsloxjtfoy_ind_4').style.textDecoration = 'none';document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_4').style.opacity = 0;document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.18</div\n",
" ><div id='_tp_eesszasiuhcsloxjtfoy_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_0').style.opacity = 1; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_0').style.opacity = 0; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_0').style.opacity = 0;\"\n",
" >im </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.427</div\n",
" ><div id='_tp_eesszasiuhcsloxjtfoy_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.09348385818974048); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_1').style.opacity = 1; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_1').style.opacity = 0; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_1').style.opacity = 0;\"\n",
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.143</div\n",
" ><div id='_tp_eesszasiuhcsloxjtfoy_ind_2'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_2').style.opacity = 1; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_2').style.opacity = 0; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_2').style.opacity = 0;\"\n",
" >a </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.281</div\n",
" ><div id='_tp_eesszasiuhcsloxjtfoy_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06195286195286207); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_3').style.opacity = 1; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_3').style.opacity = 0; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_3').style.opacity = 0;\"\n",
" >minute </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.026</div\n",
" ><div id='_tp_eesszasiuhcsloxjtfoy_ind_4'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_4').style.opacity = 1; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_4').style.opacity = 0; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_4').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.049</div\n",
" ><div id='_tp_eesszasiuhcsloxjtfoy_ind_5'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_5').style.opacity = 1; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_5').style.opacity = 0; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_5').style.opacity = 0;\"\n",
" >post </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.563</div\n",
" ><div id='_tp_eesszasiuhcsloxjtfoy_ind_6'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.12501485442661905); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_6').style.opacity = 1; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_6').style.opacity = 0; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_6').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.221</div\n",
" ><div id='_tp_eesszasiuhcsloxjtfoy_ind_7'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.2747870865517925); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_7').style.opacity = 1; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_7').style.opacity = 0; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_7').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-4.391</div\n",
" ><div id='_tp_eesszasiuhcsloxjtfoy_ind_8'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_8').style.opacity = 1; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_8').style.opacity = 0; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_8').style.opacity = 0;\"\n",
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-3.098</div\n",
" ><div id='_tp_eesszasiuhcsloxjtfoy_ind_9'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.7083382848088731); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_9').style.opacity = 1; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_eesszasiuhcsloxjtfoy_ind_9').style.opacity = 0; document.getElementById('_fs_eesszasiuhcsloxjtfoy_ind_9').style.opacity = 0;\"\n",
" >wrong</div></div></div></div><div id='_tp_duxscrtligdlrjvcmbvo_output_2' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"39.57816809931714%\" y1=\"33\" x2=\"39.57816809931714%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"39.57816809931714%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3.64444</text><text x=\"39.57816809931714%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3.64444</text><text x=\"39.57816809931714%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"28.651118538542857%\" y1=\"33\" x2=\"28.651118538542857%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"28.651118538542857%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.17521</text><text x=\"28.651118538542857%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.17521</text><text x=\"28.651118538542857%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"27.41981074380912%\" width=\"1.2313077947337363%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"27.72192699788769%\" x2=\"28.651118538542857%\" y1=\"60\" y2=\"60\" id=\"_fb_jcouvbkglnkvndgknxap_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"28.186522768215273%\" y=\"71\" font-size=\"12px\" id=\"_fs_jcouvbkglnkvndgknxap_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.215</text><svg x=\"27.72192699788769%\" y=\"40\" height=\"20\" width=\"0.9291915406551681%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"27.41981074380912%\" x2=\"27.72192699788769%\" y1=\"60\" y2=\"60\" id=\"_fb_jcouvbkglnkvndgknxap_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"27.570868870848404%\" y=\"71\" font-size=\"12px\" id=\"_fs_jcouvbkglnkvndgknxap_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.07</text><svg x=\"27.41981074380912%\" y=\"40\" height=\"20\" width=\"0.30211625407856957%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"27.72192699788769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"27.72192699788769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"27.72192699788769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"27.72192699788769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"27.72192699788769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"27.72192699788769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"27.72192699788769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"27.72192699788769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"28.651118538542857%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"27.41981074380912%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"28.651118538542857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"27.72192699788769%\" y=\"40\" height=\"20\" width=\"0.9291915406551681%\" onmouseover=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_6').style.opacity = 1;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_6').style.textDecoration = 'none';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_6').style.opacity = 0;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"27.41981074380912%\" y=\"40\" height=\"20\" width=\"0.30211625407856957%\" onmouseover=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_3').style.opacity = 1;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_3').style.textDecoration = 'none';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_3').style.opacity = 0;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"28.651118538542857%\" width=\"12.158357355508018%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"28.651118538542857%\" x2=\"33.18864547330713%\" y1=\"60\" y2=\"60\" id=\"_fb_jcouvbkglnkvndgknxap_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"30.919882005924997%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jcouvbkglnkvndgknxap_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.051</text><svg x=\"28.651118538542857%\" y=\"40\" height=\"20\" width=\"4.537526934764276%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"33.18864547330713%\" x2=\"37.639696419050324%\" y1=\"60\" y2=\"60\" id=\"_fb_jcouvbkglnkvndgknxap_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"35.41417094617873%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jcouvbkglnkvndgknxap_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.031</text><svg x=\"33.18864547330713%\" y=\"40\" height=\"20\" width=\"4.451050945743191%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"37.639696419050324%\" x2=\"38.81337088291888%\" y1=\"60\" y2=\"60\" id=\"_fb_jcouvbkglnkvndgknxap_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.22653365098461%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jcouvbkglnkvndgknxap_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.272</text><svg x=\"37.639696419050324%\" y=\"40\" height=\"20\" width=\"1.173674463868558%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"38.81337088291888%\" x2=\"39.778539569574846%\" y1=\"60\" y2=\"60\" id=\"_fb_jcouvbkglnkvndgknxap_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.29595522624686%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jcouvbkglnkvndgknxap_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.224</text><svg x=\"38.81337088291888%\" y=\"40\" height=\"20\" width=\"0.9651686866559643%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"39.778539569574846%\" x2=\"40.17776785491085%\" y1=\"60\" y2=\"60\" id=\"_fb_jcouvbkglnkvndgknxap_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.97815371224284%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jcouvbkglnkvndgknxap_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.092</text><svg x=\"39.778539569574846%\" y=\"40\" height=\"20\" width=\"0.39922828533600097%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"40.17776785491085%\" x2=\"40.5432560412509%\" y1=\"60\" y2=\"60\" id=\"_fb_jcouvbkglnkvndgknxap_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.36051194808087%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jcouvbkglnkvndgknxap_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.085</text><svg x=\"40.17776785491085%\" y=\"40\" height=\"20\" width=\"0.36548818634005187%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"40.5432560412509%\" x2=\"40.80780644062317%\" y1=\"60\" y2=\"60\" id=\"_fb_jcouvbkglnkvndgknxap_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.67553124093703%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jcouvbkglnkvndgknxap_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.061</text><svg x=\"40.5432560412509%\" y=\"40\" height=\"20\" width=\"0.26455039937226843%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"40.80780644062317%\" x2=\"40.80947589405088%\" y1=\"60\" y2=\"60\" id=\"_fb_jcouvbkglnkvndgknxap_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.80864116733702%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jcouvbkglnkvndgknxap_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"40.80780644062317%\" y=\"40\" height=\"20\" width=\"0.0016694534277092998%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"33.18864547330713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"33.18864547330713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"33.18864547330713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"33.18864547330713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.18864547330713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.18864547330713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.18864547330713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.18864547330713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.639696419050324%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.639696419050324%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.639696419050324%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.639696419050324%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.639696419050324%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.639696419050324%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.639696419050324%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.639696419050324%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.81337088291888%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.81337088291888%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.81337088291888%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.81337088291888%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.81337088291888%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.81337088291888%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.81337088291888%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.81337088291888%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.778539569574846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.778539569574846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.778539569574846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.778539569574846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.778539569574846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.778539569574846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.778539569574846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.778539569574846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.17776785491085%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.17776785491085%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.17776785491085%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.17776785491085%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.17776785491085%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.17776785491085%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.17776785491085%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.17776785491085%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.5432560412509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.5432560412509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.5432560412509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.5432560412509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.5432560412509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.5432560412509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.5432560412509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.5432560412509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.80780644062317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.80780644062317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.80780644062317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.80780644062317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.80780644062317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.80780644062317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.80780644062317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.80780644062317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"28.651118538542857%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"40.80947589405088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"33.18864547330713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"28.651118538542857%\" y=\"40\" height=\"20\" width=\"4.537526934764276%\" onmouseover=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_8').style.opacity = 1;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_8').style.textDecoration = 'none';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_8').style.opacity = 0;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.639696419050324%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"33.18864547330713%\" y=\"40\" height=\"20\" width=\"4.451050945743191%\" onmouseover=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_9').style.opacity = 1;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_9').style.textDecoration = 'none';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_9').style.opacity = 0;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"38.81337088291888%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.639696419050324%\" y=\"40\" height=\"20\" width=\"1.173674463868558%\" onmouseover=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_7').style.opacity = 1;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_7').style.textDecoration = 'none';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_7').style.opacity = 0;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.778539569574846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"38.81337088291888%\" y=\"40\" height=\"20\" width=\"0.9651686866559643%\" onmouseover=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_5').style.opacity = 1;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_5').style.textDecoration = 'none';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_5').style.opacity = 0;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.17776785491085%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.778539569574846%\" y=\"40\" height=\"20\" width=\"0.39922828533600097%\" onmouseover=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_1').style.opacity = 1;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_1').style.textDecoration = 'none';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_1').style.opacity = 0;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.5432560412509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.17776785491085%\" y=\"40\" height=\"20\" width=\"0.36548818634005187%\" onmouseover=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_0').style.opacity = 1;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_0').style.textDecoration = 'none';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_0').style.opacity = 0;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.80780644062317%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.5432560412509%\" y=\"40\" height=\"20\" width=\"0.26455039937226843%\" onmouseover=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_4').style.opacity = 1;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_4').style.textDecoration = 'none';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_4').style.opacity = 0;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"40.80780644062317%\" y=\"40\" height=\"20\" width=\"0.0016694534277092998%\" onmouseover=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_2').style.opacity = 1;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jcouvbkglnkvndgknxap_ind_2').style.textDecoration = 'none';document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_2').style.opacity = 0;document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.085</div\n",
" ><div id='_tp_jcouvbkglnkvndgknxap_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_0').style.opacity = 1; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_0').style.opacity = 0; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_0').style.opacity = 0;\"\n",
" >im </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.092</div\n",
" ><div id='_tp_jcouvbkglnkvndgknxap_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_1').style.opacity = 1; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_1').style.opacity = 0; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_1').style.opacity = 0;\"\n",
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
" ><div id='_tp_jcouvbkglnkvndgknxap_ind_2'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_2').style.opacity = 1; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_2').style.opacity = 0; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_2').style.opacity = 0;\"\n",
" >a </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.07</div\n",
" ><div id='_tp_jcouvbkglnkvndgknxap_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_3').style.opacity = 1; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_3').style.opacity = 0; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_3').style.opacity = 0;\"\n",
" >minute </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.061</div\n",
" ><div id='_tp_jcouvbkglnkvndgknxap_ind_4'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_4').style.opacity = 1; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_4').style.opacity = 0; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_4').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.224</div\n",
" ><div id='_tp_jcouvbkglnkvndgknxap_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_5').style.opacity = 1; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_5').style.opacity = 0; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_5').style.opacity = 0;\"\n",
" >post </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.215</div\n",
" ><div id='_tp_jcouvbkglnkvndgknxap_ind_6'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_6').style.opacity = 1; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_6').style.opacity = 0; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_6').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.272</div\n",
" ><div id='_tp_jcouvbkglnkvndgknxap_ind_7'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_7').style.opacity = 1; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_7').style.opacity = 0; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_7').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.051</div\n",
" ><div id='_tp_jcouvbkglnkvndgknxap_ind_8'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.12501485442661905); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_8').style.opacity = 1; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_8').style.opacity = 0; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_8').style.opacity = 0;\"\n",
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.031</div\n",
" ><div id='_tp_jcouvbkglnkvndgknxap_ind_9'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.12501485442661905); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_9').style.opacity = 1; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_jcouvbkglnkvndgknxap_ind_9').style.opacity = 0; document.getElementById('_fs_jcouvbkglnkvndgknxap_ind_9').style.opacity = 0;\"\n",
" >wrong</div></div></div></div><div id='_tp_duxscrtligdlrjvcmbvo_output_2_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"47.576890480157445%\" y1=\"33\" x2=\"47.576890480157445%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"47.576890480157445%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"20.7049305848932%\" y1=\"33\" x2=\"20.7049305848932%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"20.7049305848932%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"74.44885037542171%\" y1=\"33\" x2=\"74.44885037542171%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"74.44885037542171%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"84.0033692827794%\" y1=\"33\" x2=\"84.0033692827794%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"84.0033692827794%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3.64444</text><text x=\"84.0033692827794%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3.64444</text><text x=\"84.0033692827794%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"15.996630448501007%\" y1=\"33\" x2=\"15.996630448501007%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"15.996630448501007%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.17521</text><text x=\"15.996630448501007%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.17521</text><text x=\"15.996630448501007%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"8.333333310940029%\" width=\"7.663297137560976%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"10.2136159137084%\" x2=\"15.996630448501007%\" y1=\"60\" y2=\"60\" id=\"_fb_tfobcpubexbwpidiycdq_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.105123181104704%\" y=\"71\" font-size=\"12px\" id=\"_fs_tfobcpubexbwpidiycdq_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.215</text><svg x=\"10.2136159137084%\" y=\"40\" height=\"20\" width=\"5.783014534792606%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"8.333333310940029%\" x2=\"10.2136159137084%\" y1=\"60\" y2=\"60\" id=\"_fb_tfobcpubexbwpidiycdq_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.273474612324215%\" y=\"71\" font-size=\"12px\" id=\"_fs_tfobcpubexbwpidiycdq_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.07</text><svg x=\"8.333333310940029%\" y=\"40\" height=\"20\" width=\"1.8802826027683714%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"10.2136159137084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.2136159137084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.2136159137084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.2136159137084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.2136159137084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.2136159137084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.2136159137084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.2136159137084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"15.996630448501007%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333310940029%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"15.996630448501007%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.2136159137084%\" y=\"40\" height=\"20\" width=\"5.783014534792606%\" onmouseover=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_6').style.opacity = 1;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_6').style.textDecoration = 'none';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_6').style.opacity = 0;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333310940029%\" y=\"40\" height=\"20\" width=\"1.8802826027683714%\" onmouseover=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_3').style.opacity = 1;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_3').style.textDecoration = 'none';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_3').style.opacity = 0;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"15.996630448501007%\" width=\"75.67003597183937%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"15.996630448501007%\" x2=\"44.23686194829773%\" y1=\"60\" y2=\"60\" id=\"_fb_tfobcpubexbwpidiycdq_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"30.11674619839937%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tfobcpubexbwpidiycdq_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.051</text><svg x=\"15.996630448501007%\" y=\"40\" height=\"20\" width=\"28.24023149979672%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"44.23686194829773%\" x2=\"71.93889235656611%\" y1=\"60\" y2=\"60\" id=\"_fb_tfobcpubexbwpidiycdq_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"58.08787715243192%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tfobcpubexbwpidiycdq_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.031</text><svg x=\"44.23686194829773%\" y=\"40\" height=\"20\" width=\"27.702030408268385%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"71.93889235656611%\" x2=\"79.24349661381221%\" y1=\"60\" y2=\"60\" id=\"_fb_tfobcpubexbwpidiycdq_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"75.59119448518916%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tfobcpubexbwpidiycdq_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.272</text><svg x=\"71.93889235656611%\" y=\"40\" height=\"20\" width=\"7.304604257246098%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"79.24349661381221%\" x2=\"85.25042231130895%\" y1=\"60\" y2=\"60\" id=\"_fb_tfobcpubexbwpidiycdq_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"82.24695946256058%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tfobcpubexbwpidiycdq_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.224</text><svg x=\"79.24349661381221%\" y=\"40\" height=\"20\" width=\"6.00692569749674%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"85.25042231130895%\" x2=\"87.73510160054414%\" y1=\"60\" y2=\"60\" id=\"_fb_tfobcpubexbwpidiycdq_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.49276195592654%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tfobcpubexbwpidiycdq_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.092</text><svg x=\"85.25042231130895%\" y=\"40\" height=\"20\" width=\"2.4846792892351885%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"87.73510160054414%\" x2=\"90.00979244890162%\" y1=\"60\" y2=\"60\" id=\"_fb_tfobcpubexbwpidiycdq_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.87244702472287%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tfobcpubexbwpidiycdq_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.085</text><svg x=\"87.73510160054414%\" y=\"40\" height=\"20\" width=\"2.27469084835748%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"90.00979244890162%\" x2=\"91.65627623380165%\" y1=\"60\" y2=\"60\" id=\"_fb_tfobcpubexbwpidiycdq_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.83303434135163%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tfobcpubexbwpidiycdq_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.061</text><svg x=\"90.00979244890162%\" y=\"40\" height=\"20\" width=\"1.6464837849000276%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"91.65627623380165%\" x2=\"91.66666642034038%\" y1=\"60\" y2=\"60\" id=\"_fb_tfobcpubexbwpidiycdq_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66147132707101%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tfobcpubexbwpidiycdq_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.65627623380165%\" y=\"40\" height=\"20\" width=\"0.010390186538728585%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"44.23686194829773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.23686194829773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.23686194829773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.23686194829773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.23686194829773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.23686194829773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.23686194829773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.23686194829773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"71.93889235656611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"71.93889235656611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"71.93889235656611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"71.93889235656611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"71.93889235656611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"71.93889235656611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"71.93889235656611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"71.93889235656611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"79.24349661381221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"79.24349661381221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"79.24349661381221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"79.24349661381221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"79.24349661381221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"79.24349661381221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"79.24349661381221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"79.24349661381221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.25042231130895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.25042231130895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.25042231130895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.25042231130895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.25042231130895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.25042231130895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.25042231130895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.25042231130895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.73510160054414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.73510160054414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.73510160054414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.73510160054414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.73510160054414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.73510160054414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.73510160054414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.73510160054414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.00979244890162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.00979244890162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.00979244890162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.00979244890162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.00979244890162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.00979244890162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.00979244890162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.00979244890162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.65627623380165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.65627623380165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.65627623380165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.65627623380165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.65627623380165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.65627623380165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.65627623380165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.65627623380165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"15.996630448501007%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666642034038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"44.23686194829773%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"15.996630448501007%\" y=\"40\" height=\"20\" width=\"28.24023149979672%\" onmouseover=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_8').style.opacity = 1;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_8').style.textDecoration = 'none';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_8').style.opacity = 0;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"71.93889235656611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.23686194829773%\" y=\"40\" height=\"20\" width=\"27.702030408268385%\" onmouseover=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_9').style.opacity = 1;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_9').style.textDecoration = 'none';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_9').style.opacity = 0;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"79.24349661381221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"71.93889235656611%\" y=\"40\" height=\"20\" width=\"7.304604257246098%\" onmouseover=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_7').style.opacity = 1;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_7').style.textDecoration = 'none';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_7').style.opacity = 0;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.25042231130895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"79.24349661381221%\" y=\"40\" height=\"20\" width=\"6.00692569749674%\" onmouseover=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_5').style.opacity = 1;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_5').style.textDecoration = 'none';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_5').style.opacity = 0;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.73510160054414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.25042231130895%\" y=\"40\" height=\"20\" width=\"2.4846792892351885%\" onmouseover=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_1').style.opacity = 1;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_1').style.textDecoration = 'none';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_1').style.opacity = 0;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.00979244890162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.73510160054414%\" y=\"40\" height=\"20\" width=\"2.27469084835748%\" onmouseover=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_0').style.opacity = 1;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_0').style.textDecoration = 'none';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_0').style.opacity = 0;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.65627623380165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.00979244890162%\" y=\"40\" height=\"20\" width=\"1.6464837849000276%\" onmouseover=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_4').style.opacity = 1;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_4').style.textDecoration = 'none';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_4').style.opacity = 0;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.65627623380165%\" y=\"40\" height=\"20\" width=\"0.010390186538728585%\" onmouseover=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_2').style.opacity = 1;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tfobcpubexbwpidiycdq_ind_2').style.textDecoration = 'none';document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_2').style.opacity = 0;document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.085</div\n",
" ><div id='_tp_tfobcpubexbwpidiycdq_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_0').style.opacity = 1; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_0').style.opacity = 0; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_0').style.opacity = 0;\"\n",
" >im </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.092</div\n",
" ><div id='_tp_tfobcpubexbwpidiycdq_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.08560110913052085); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_1').style.opacity = 1; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_1').style.opacity = 0; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_1').style.opacity = 0;\"\n",
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
" ><div id='_tp_tfobcpubexbwpidiycdq_ind_2'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_2').style.opacity = 1; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_2').style.opacity = 0; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_2').style.opacity = 0;\"\n",
" >a </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.07</div\n",
" ><div id='_tp_tfobcpubexbwpidiycdq_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06195286195286207); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_3').style.opacity = 1; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_3').style.opacity = 0; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_3').style.opacity = 0;\"\n",
" >minute </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.061</div\n",
" ><div id='_tp_tfobcpubexbwpidiycdq_ind_4'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.05407011289364222); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_4').style.opacity = 1; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_4').style.opacity = 0; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_4').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.224</div\n",
" ><div id='_tp_tfobcpubexbwpidiycdq_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.21172509407803525); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_5').style.opacity = 1; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_5').style.opacity = 0; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_5').style.opacity = 0;\"\n",
" >post </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.215</div\n",
" ><div id='_tp_tfobcpubexbwpidiycdq_ind_6'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.20384234501881549); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_6').style.opacity = 1; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_6').style.opacity = 0; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_6').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.272</div\n",
" ><div id='_tp_tfobcpubexbwpidiycdq_ind_7'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.25902158843335304); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_7').style.opacity = 1; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_7').style.opacity = 0; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_7').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.051</div\n",
" ><div id='_tp_tfobcpubexbwpidiycdq_ind_8'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_8').style.opacity = 1; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_8').style.opacity = 0; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_8').style.opacity = 0;\"\n",
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.031</div\n",
" ><div id='_tp_tfobcpubexbwpidiycdq_ind_9'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.9842345018815607); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_9').style.opacity = 1; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_tfobcpubexbwpidiycdq_ind_9').style.opacity = 0; document.getElementById('_fs_tfobcpubexbwpidiycdq_ind_9').style.opacity = 0;\"\n",
" >wrong</div></div></div></div><div id='_tp_duxscrtligdlrjvcmbvo_output_3' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"52.41530039676885%\" y1=\"33\" x2=\"52.41530039676885%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"52.41530039676885%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.671287</text><text x=\"52.41530039676885%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.671287</text><text x=\"52.41530039676885%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"75.84297582648355%\" y1=\"33\" x2=\"75.84297582648355%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"75.84297582648355%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4.7547</text><text x=\"75.84297582648355%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4.7547</text><text x=\"75.84297582648355%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"41.21419073902805%\" width=\"34.6287850874555%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"54.90713608575703%\" x2=\"75.84297582648355%\" y1=\"60\" y2=\"60\" id=\"_fb_cuckjzgfdluhpedwjrly_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"65.37505595612029%\" y=\"71\" font-size=\"12px\" id=\"_fs_cuckjzgfdluhpedwjrly_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">4.849</text><svg x=\"54.90713608575703%\" y=\"40\" height=\"20\" width=\"20.93583974072652%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"43.56915923013716%\" x2=\"54.90713608575703%\" y1=\"60\" y2=\"60\" id=\"_fb_cuckjzgfdluhpedwjrly_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"49.238147657947096%\" y=\"71\" font-size=\"12px\" id=\"_fs_cuckjzgfdluhpedwjrly_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">2.626</text><svg x=\"43.56915923013716%\" y=\"40\" height=\"20\" width=\"11.337976855619871%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"42.51728376851183%\" x2=\"43.56915923013716%\" y1=\"60\" y2=\"60\" id=\"_fb_cuckjzgfdluhpedwjrly_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"43.043221499324495%\" y=\"71\" font-size=\"12px\" id=\"_fs_cuckjzgfdluhpedwjrly_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.244</text><svg x=\"42.51728376851183%\" y=\"40\" height=\"20\" width=\"1.051875461625329%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"41.70197783716634%\" x2=\"42.51728376851183%\" y1=\"60\" y2=\"60\" id=\"_fb_cuckjzgfdluhpedwjrly_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"42.109630802839085%\" y=\"71\" font-size=\"12px\" id=\"_fs_cuckjzgfdluhpedwjrly_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.189</text><svg x=\"41.70197783716634%\" y=\"40\" height=\"20\" width=\"0.8153059313454918%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"41.42594949108843%\" x2=\"41.70197783716634%\" y1=\"60\" y2=\"60\" id=\"_fb_cuckjzgfdluhpedwjrly_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"41.563963664127385%\" y=\"71\" font-size=\"12px\" id=\"_fs_cuckjzgfdluhpedwjrly_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.064</text><svg x=\"41.42594949108843%\" y=\"40\" height=\"20\" width=\"0.2760283460779078%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"41.21419073902805%\" x2=\"41.42594949108843%\" y1=\"60\" y2=\"60\" id=\"_fb_cuckjzgfdluhpedwjrly_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"41.32007011505824%\" y=\"71\" font-size=\"12px\" id=\"_fs_cuckjzgfdluhpedwjrly_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.049</text><svg x=\"41.21419073902805%\" y=\"40\" height=\"20\" width=\"0.21175875206038342%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"54.90713608575703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"54.90713608575703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"54.90713608575703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"54.90713608575703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"54.90713608575703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"54.90713608575703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"54.90713608575703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"54.90713608575703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.56915923013716%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.56915923013716%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"43.56915923013716%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"43.56915923013716%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.56915923013716%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"43.56915923013716%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.56915923013716%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.56915923013716%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.51728376851183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.51728376851183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"42.51728376851183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"42.51728376851183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.51728376851183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"42.51728376851183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.51728376851183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.51728376851183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.70197783716634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.70197783716634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"41.70197783716634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"41.70197783716634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.70197783716634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"41.70197783716634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.70197783716634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.70197783716634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.42594949108843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.42594949108843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"41.42594949108843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"41.42594949108843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.42594949108843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"41.42594949108843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.42594949108843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.42594949108843%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"75.84297582648355%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"41.21419073902805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"75.84297582648355%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"54.90713608575703%\" y=\"40\" height=\"20\" width=\"20.93583974072652%\" onmouseover=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_8').style.opacity = 1;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_8').style.textDecoration = 'none';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_8').style.opacity = 0;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"54.90713608575703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"43.56915923013716%\" y=\"40\" height=\"20\" width=\"11.337976855619871%\" onmouseover=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_9').style.opacity = 1;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_9').style.textDecoration = 'none';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_9').style.opacity = 0;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"43.56915923013716%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"42.51728376851183%\" y=\"40\" height=\"20\" width=\"1.051875461625329%\" onmouseover=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_1').style.opacity = 1;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_1').style.textDecoration = 'none';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_1').style.opacity = 0;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"42.51728376851183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"41.70197783716634%\" y=\"40\" height=\"20\" width=\"0.8153059313454918%\" onmouseover=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_0').style.opacity = 1;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_0').style.textDecoration = 'none';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_0').style.opacity = 0;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"41.70197783716634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"41.42594949108843%\" y=\"40\" height=\"20\" width=\"0.2760283460779078%\" onmouseover=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_5').style.opacity = 1;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_5').style.textDecoration = 'none';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_5').style.opacity = 0;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"41.21419073902805%\" y=\"40\" height=\"20\" width=\"0.21175875206038342%\" onmouseover=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_6').style.opacity = 1;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_6').style.textDecoration = 'none';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_6').style.opacity = 0;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"75.84297582648355%\" width=\"11.201109657740805%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"75.84297582648355%\" x2=\"85.87645837782804%\" y1=\"60\" y2=\"60\" id=\"_fb_cuckjzgfdluhpedwjrly_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"80.8597171021558%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cuckjzgfdluhpedwjrly_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-2.324</text><svg x=\"75.84297582648355%\" y=\"40\" height=\"20\" width=\"10.033482551344491%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"85.87645837782804%\" x2=\"86.3518461145627%\" y1=\"60\" y2=\"60\" id=\"_fb_cuckjzgfdluhpedwjrly_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.11415224619537%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cuckjzgfdluhpedwjrly_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.11</text><svg x=\"85.87645837782804%\" y=\"40\" height=\"20\" width=\"0.4753877367346604%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"86.3518461145627%\" x2=\"86.75230265258338%\" y1=\"60\" y2=\"60\" id=\"_fb_cuckjzgfdluhpedwjrly_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.55207438357304%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cuckjzgfdluhpedwjrly_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.093</text><svg x=\"86.3518461145627%\" y=\"40\" height=\"20\" width=\"0.40045653802067704%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"86.75230265258338%\" x2=\"87.04408548422435%\" y1=\"60\" y2=\"60\" id=\"_fb_cuckjzgfdluhpedwjrly_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.89819406840387%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cuckjzgfdluhpedwjrly_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.068</text><svg x=\"86.75230265258338%\" y=\"40\" height=\"20\" width=\"0.2917828316409725%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"85.87645837782804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.87645837782804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.87645837782804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.87645837782804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.87645837782804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.87645837782804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.87645837782804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.87645837782804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.3518461145627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.3518461145627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.3518461145627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.3518461145627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.3518461145627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.3518461145627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.3518461145627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.3518461145627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.75230265258338%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.75230265258338%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.75230265258338%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.75230265258338%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.75230265258338%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.75230265258338%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.75230265258338%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.75230265258338%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"75.84297582648355%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"87.04408548422435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"85.87645837782804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"75.84297582648355%\" y=\"40\" height=\"20\" width=\"10.033482551344491%\" onmouseover=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_7').style.opacity = 1;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_7').style.textDecoration = 'none';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_7').style.opacity = 0;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.3518461145627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.87645837782804%\" y=\"40\" height=\"20\" width=\"0.4753877367346604%\" onmouseover=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_2').style.opacity = 1;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_2').style.textDecoration = 'none';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_2').style.opacity = 0;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.75230265258338%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.3518461145627%\" y=\"40\" height=\"20\" width=\"0.40045653802067704%\" onmouseover=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_3').style.opacity = 1;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_3').style.textDecoration = 'none';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_3').style.opacity = 0;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"86.75230265258338%\" y=\"40\" height=\"20\" width=\"0.2917828316409725%\" onmouseover=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_4').style.opacity = 1;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cuckjzgfdluhpedwjrly_ind_4').style.textDecoration = 'none';document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_4').style.opacity = 0;document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.189</div\n",
" ><div id='_tp_cuckjzgfdluhpedwjrly_ind_0'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_0').style.opacity = 1; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_0').style.opacity = 0; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_0').style.opacity = 0;\"\n",
" >im </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.244</div\n",
" ><div id='_tp_cuckjzgfdluhpedwjrly_ind_1'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_1').style.opacity = 1; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_1').style.opacity = 0; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_1').style.opacity = 0;\"\n",
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.11</div\n",
" ><div id='_tp_cuckjzgfdluhpedwjrly_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_2').style.opacity = 1; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_2').style.opacity = 0; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_2').style.opacity = 0;\"\n",
" >a </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.093</div\n",
" ><div id='_tp_cuckjzgfdluhpedwjrly_ind_3'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_3').style.opacity = 1; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_3').style.opacity = 0; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_3').style.opacity = 0;\"\n",
" >minute </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.068</div\n",
" ><div id='_tp_cuckjzgfdluhpedwjrly_ind_4'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_4').style.opacity = 1; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_4').style.opacity = 0; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_4').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.064</div\n",
" ><div id='_tp_cuckjzgfdluhpedwjrly_ind_5'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_5').style.opacity = 1; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_5').style.opacity = 0; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_5').style.opacity = 0;\"\n",
" >post </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.049</div\n",
" ><div id='_tp_cuckjzgfdluhpedwjrly_ind_6'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_6').style.opacity = 1; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_6').style.opacity = 0; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_6').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-2.324</div\n",
" ><div id='_tp_cuckjzgfdluhpedwjrly_ind_7'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.282669835611012); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_7').style.opacity = 1; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_7').style.opacity = 0; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_7').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>4.849</div\n",
" ><div id='_tp_cuckjzgfdluhpedwjrly_ind_8'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.5979797979797981); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_8').style.opacity = 1; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_8').style.opacity = 0; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_8').style.opacity = 0;\"\n",
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>2.626</div\n",
" ><div id='_tp_cuckjzgfdluhpedwjrly_ind_9'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.32208358090711037); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_9').style.opacity = 1; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_cuckjzgfdluhpedwjrly_ind_9').style.opacity = 0; document.getElementById('_fs_cuckjzgfdluhpedwjrly_ind_9').style.opacity = 0;\"\n",
" >wrong</div></div></div></div><div id='_tp_duxscrtligdlrjvcmbvo_output_3_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.672556453010614%\" y1=\"33\" x2=\"49.672556453010614%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.672556453010614%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"33.970729180085584%\" y1=\"33\" x2=\"33.970729180085584%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"33.970729180085584%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"18.26890190716055%\" y1=\"33\" x2=\"18.26890190716055%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.26890190716055%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"65.37438372593564%\" y1=\"33\" x2=\"65.37438372593564%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.37438372593564%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4</text><line x1=\"81.07621099886067%\" y1=\"33\" x2=\"81.07621099886067%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.07621099886067%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">6</text><line x1=\"28.700515256152567%\" y1=\"33\" x2=\"28.700515256152567%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"28.700515256152567%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.671287</text><text x=\"28.700515256152567%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.671287</text><text x=\"28.700515256152567%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"71.2994846653383%\" y1=\"33\" x2=\"71.2994846653383%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"71.2994846653383%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4.7547</text><text x=\"71.2994846653383%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4.7547</text><text x=\"71.2994846653383%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"8.333333326790905%\" width=\"62.966151338547384%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"33.23146552505072%\" x2=\"71.2994846653383%\" y1=\"60\" y2=\"60\" id=\"_fb_adihfrwddtlmwgtbahco_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"52.26547509519451%\" y=\"71\" font-size=\"12px\" id=\"_fs_adihfrwddtlmwgtbahco_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">4.849</text><svg x=\"33.23146552505072%\" y=\"40\" height=\"20\" width=\"38.068019140287575%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"12.615415474177688%\" x2=\"33.23146552505072%\" y1=\"60\" y2=\"60\" id=\"_fb_adihfrwddtlmwgtbahco_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"22.923440499614205%\" y=\"71\" font-size=\"12px\" id=\"_fs_adihfrwddtlmwgtbahco_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">2.626</text><svg x=\"12.615415474177688%\" y=\"40\" height=\"20\" width=\"20.616050050873035%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"10.70277114262711%\" x2=\"12.615415474177688%\" y1=\"60\" y2=\"60\" id=\"_fb_adihfrwddtlmwgtbahco_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.659093308402399%\" y=\"71\" font-size=\"12px\" id=\"_fs_adihfrwddtlmwgtbahco_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.244</text><svg x=\"10.70277114262711%\" y=\"40\" height=\"20\" width=\"1.9126443315505774%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"9.22028550154371%\" x2=\"10.70277114262711%\" y1=\"60\" y2=\"60\" id=\"_fb_adihfrwddtlmwgtbahco_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.96152832208541%\" y=\"71\" font-size=\"12px\" id=\"_fs_adihfrwddtlmwgtbahco_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.189</text><svg x=\"9.22028550154371%\" y=\"40\" height=\"20\" width=\"1.4824856410834002%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"8.7183781268271%\" x2=\"9.22028550154371%\" y1=\"60\" y2=\"60\" id=\"_fb_adihfrwddtlmwgtbahco_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.969331814185406%\" y=\"71\" font-size=\"12px\" id=\"_fs_adihfrwddtlmwgtbahco_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.064</text><svg x=\"8.7183781268271%\" y=\"40\" height=\"20\" width=\"0.5019073747166107%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"8.333333326790905%\" x2=\"8.7183781268271%\" y1=\"60\" y2=\"60\" id=\"_fb_adihfrwddtlmwgtbahco_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.525855726809002%\" y=\"71\" font-size=\"12px\" id=\"_fs_adihfrwddtlmwgtbahco_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.049</text><svg x=\"8.333333326790905%\" y=\"40\" height=\"20\" width=\"0.38504480003619435%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"33.23146552505072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.23146552505072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"33.23146552505072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"33.23146552505072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"33.23146552505072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"33.23146552505072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.23146552505072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.23146552505072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.615415474177688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.615415474177688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.615415474177688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.615415474177688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.615415474177688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.615415474177688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.615415474177688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.615415474177688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.70277114262711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.70277114262711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.70277114262711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.70277114262711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.70277114262711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.70277114262711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.70277114262711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.70277114262711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.22028550154371%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.22028550154371%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.22028550154371%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.22028550154371%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.22028550154371%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.22028550154371%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.22028550154371%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.22028550154371%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.7183781268271%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.7183781268271%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.7183781268271%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.7183781268271%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.7183781268271%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.7183781268271%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.7183781268271%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.7183781268271%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"71.2994846653383%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333326790905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"71.2994846653383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"33.23146552505072%\" y=\"40\" height=\"20\" width=\"38.068019140287575%\" onmouseover=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_8').style.opacity = 1;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_8').style.textDecoration = 'none';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_8').style.opacity = 0;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"33.23146552505072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.615415474177688%\" y=\"40\" height=\"20\" width=\"20.616050050873035%\" onmouseover=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_9').style.opacity = 1;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_9').style.textDecoration = 'none';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_9').style.opacity = 0;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.615415474177688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.70277114262711%\" y=\"40\" height=\"20\" width=\"1.9126443315505774%\" onmouseover=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_1').style.opacity = 1;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_1').style.textDecoration = 'none';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_1').style.opacity = 0;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.70277114262711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.22028550154371%\" y=\"40\" height=\"20\" width=\"1.4824856410834002%\" onmouseover=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_0').style.opacity = 1;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_0').style.textDecoration = 'none';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_0').style.opacity = 0;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.22028550154371%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.7183781268271%\" y=\"40\" height=\"20\" width=\"0.5019073747166107%\" onmouseover=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_5').style.opacity = 1;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_5').style.textDecoration = 'none';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_5').style.opacity = 0;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333326790905%\" y=\"40\" height=\"20\" width=\"0.38504480003619435%\" onmouseover=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_6').style.opacity = 1;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_6').style.textDecoration = 'none';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_6').style.opacity = 0;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"71.2994846653383%\" width=\"20.36718192936166%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"71.2994846653383%\" x2=\"89.54354893687102%\" y1=\"60\" y2=\"60\" id=\"_fb_adihfrwddtlmwgtbahco_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"80.42151680110466%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_adihfrwddtlmwgtbahco_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-2.324</text><svg x=\"71.2994846653383%\" y=\"40\" height=\"20\" width=\"18.24406427153272%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"89.54354893687102%\" x2=\"90.40795512669625%\" y1=\"60\" y2=\"60\" id=\"_fb_adihfrwddtlmwgtbahco_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.97575203178363%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_adihfrwddtlmwgtbahco_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.11</text><svg x=\"89.54354893687102%\" y=\"40\" height=\"20\" width=\"0.8644061898252318%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"90.40795512669625%\" x2=\"91.13611255162003%\" y1=\"60\" y2=\"60\" id=\"_fb_adihfrwddtlmwgtbahco_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.77203383915814%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_adihfrwddtlmwgtbahco_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.093</text><svg x=\"90.40795512669625%\" y=\"40\" height=\"20\" width=\"0.7281574249237792%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"91.13611255162003%\" x2=\"91.66666659469995%\" y1=\"60\" y2=\"60\" id=\"_fb_adihfrwddtlmwgtbahco_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.40138957315999%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_adihfrwddtlmwgtbahco_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.068</text><svg x=\"91.13611255162003%\" y=\"40\" height=\"20\" width=\"0.5305540430799169%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"89.54354893687102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.54354893687102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.54354893687102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.54354893687102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.54354893687102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.54354893687102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.54354893687102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.54354893687102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.40795512669625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.40795512669625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.40795512669625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.40795512669625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.40795512669625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.40795512669625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.40795512669625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.40795512669625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.13611255162003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.13611255162003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.13611255162003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.13611255162003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.13611255162003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.13611255162003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.13611255162003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.13611255162003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"71.2994846653383%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666659469995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"89.54354893687102%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"71.2994846653383%\" y=\"40\" height=\"20\" width=\"18.24406427153272%\" onmouseover=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_7').style.opacity = 1;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_7').style.textDecoration = 'none';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_7').style.opacity = 0;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.40795512669625%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.54354893687102%\" y=\"40\" height=\"20\" width=\"0.8644061898252318%\" onmouseover=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_2').style.opacity = 1;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_2').style.textDecoration = 'none';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_2').style.opacity = 0;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.13611255162003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.40795512669625%\" y=\"40\" height=\"20\" width=\"0.7281574249237792%\" onmouseover=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_3').style.opacity = 1;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_3').style.textDecoration = 'none';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_3').style.opacity = 0;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.13611255162003%\" y=\"40\" height=\"20\" width=\"0.5305540430799169%\" onmouseover=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_4').style.opacity = 1;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_adihfrwddtlmwgtbahco_ind_4').style.textDecoration = 'none';document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_4').style.opacity = 0;document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.189</div\n",
" ><div id='_tp_adihfrwddtlmwgtbahco_ind_0'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_0').style.opacity = 1; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_0').style.opacity = 0; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_0').style.opacity = 0;\"\n",
" >im </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.244</div\n",
" ><div id='_tp_adihfrwddtlmwgtbahco_ind_1'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.04618736383442265); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_1').style.opacity = 1; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_1').style.opacity = 0; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_1').style.opacity = 0;\"\n",
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.11</div\n",
" ><div id='_tp_adihfrwddtlmwgtbahco_ind_2'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_2').style.opacity = 1; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_2').style.opacity = 0; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_2').style.opacity = 0;\"\n",
" >a </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.093</div\n",
" ><div id='_tp_adihfrwddtlmwgtbahco_ind_3'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_3').style.opacity = 1; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_3').style.opacity = 0; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_3').style.opacity = 0;\"\n",
" >minute </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.068</div\n",
" ><div id='_tp_adihfrwddtlmwgtbahco_ind_4'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_4').style.opacity = 1; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_4').style.opacity = 0; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_4').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.064</div\n",
" ><div id='_tp_adihfrwddtlmwgtbahco_ind_5'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_5').style.opacity = 1; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_5').style.opacity = 0; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_5').style.opacity = 0;\"\n",
" >post </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.049</div\n",
" ><div id='_tp_adihfrwddtlmwgtbahco_ind_6'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_6').style.opacity = 1; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_6').style.opacity = 0; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_6').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-2.324</div\n",
" ><div id='_tp_adihfrwddtlmwgtbahco_ind_7'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.47973856209150334); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_7').style.opacity = 1; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_7').style.opacity = 0; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_7').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>4.849</div\n",
" ><div id='_tp_adihfrwddtlmwgtbahco_ind_8'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_8').style.opacity = 1; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_8').style.opacity = 0; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_8').style.opacity = 0;\"\n",
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>2.626</div\n",
" ><div id='_tp_adihfrwddtlmwgtbahco_ind_9'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.5428005545652606); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_9').style.opacity = 1; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_adihfrwddtlmwgtbahco_ind_9').style.opacity = 0; document.getElementById('_fs_adihfrwddtlmwgtbahco_ind_9').style.opacity = 0;\"\n",
" >wrong</div></div></div></div><div id='_tp_duxscrtligdlrjvcmbvo_output_4' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"43.39125634602455%\" y1=\"33\" x2=\"43.39125634602455%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"43.39125634602455%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.76131</text><text x=\"43.39125634602455%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.76131</text><text x=\"43.39125634602455%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"28.349467065239754%\" y1=\"33\" x2=\"28.349467065239754%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"28.349467065239754%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.24508</text><text x=\"28.349467065239754%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.24508</text><text x=\"28.349467065239754%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"26.212575878163026%\" width=\"2.1368911870767286%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"27.249379866914044%\" x2=\"28.349467065239754%\" y1=\"60\" y2=\"60\" id=\"_fb_frkegwaxychgwhkjvicq_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"27.7994234660769%\" y=\"71\" font-size=\"12px\" id=\"_fs_frkegwaxychgwhkjvicq_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.255</text><svg x=\"27.249379866914044%\" y=\"40\" height=\"20\" width=\"1.10008719832571%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"26.55504255394155%\" x2=\"27.249379866914044%\" y1=\"60\" y2=\"60\" id=\"_fb_frkegwaxychgwhkjvicq_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"26.902211210427797%\" y=\"71\" font-size=\"12px\" id=\"_fs_frkegwaxychgwhkjvicq_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.161</text><svg x=\"26.55504255394155%\" y=\"40\" height=\"20\" width=\"0.6943373129724932%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"26.279559898228523%\" x2=\"26.55504255394155%\" y1=\"60\" y2=\"60\" id=\"_fb_frkegwaxychgwhkjvicq_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"26.417301226085037%\" y=\"71\" font-size=\"12px\" id=\"_fs_frkegwaxychgwhkjvicq_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.064</text><svg x=\"26.279559898228523%\" y=\"40\" height=\"20\" width=\"0.2754826557130272%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"26.212575878163026%\" x2=\"26.279559898228523%\" y1=\"60\" y2=\"60\" id=\"_fb_frkegwaxychgwhkjvicq_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"26.246067888195775%\" y=\"71\" font-size=\"12px\" id=\"_fs_frkegwaxychgwhkjvicq_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.016</text><svg x=\"26.212575878163026%\" y=\"40\" height=\"20\" width=\"0.06698402006549742%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"27.249379866914044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"27.249379866914044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"27.249379866914044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"27.249379866914044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"27.249379866914044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"27.249379866914044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"27.249379866914044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"27.249379866914044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.55504255394155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.55504255394155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.55504255394155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.55504255394155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.55504255394155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.55504255394155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.55504255394155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.55504255394155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.279559898228523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.279559898228523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.279559898228523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.279559898228523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.279559898228523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.279559898228523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.279559898228523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.279559898228523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"28.349467065239754%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"26.212575878163026%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"28.349467065239754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"27.249379866914044%\" y=\"40\" height=\"20\" width=\"1.10008719832571%\" onmouseover=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_6').style.opacity = 1;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_6').style.textDecoration = 'none';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_6').style.opacity = 0;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"27.249379866914044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.55504255394155%\" y=\"40\" height=\"20\" width=\"0.6943373129724932%\" onmouseover=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_1').style.opacity = 1;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_1').style.textDecoration = 'none';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_1').style.opacity = 0;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"26.55504255394155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.279559898228523%\" y=\"40\" height=\"20\" width=\"0.2754826557130272%\" onmouseover=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_2').style.opacity = 1;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_2').style.textDecoration = 'none';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_2').style.opacity = 0;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"26.212575878163026%\" y=\"40\" height=\"20\" width=\"0.06698402006549742%\" onmouseover=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_4').style.opacity = 1;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_4').style.textDecoration = 'none';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_4').style.opacity = 0;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"28.349467065239754%\" width=\"17.17868046786152%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"28.349467065239754%\" x2=\"36.30573814850012%\" y1=\"60\" y2=\"60\" id=\"_fb_frkegwaxychgwhkjvicq_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"32.32760260686994%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_frkegwaxychgwhkjvicq_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.843</text><svg x=\"28.349467065239754%\" y=\"40\" height=\"20\" width=\"7.956271083260365%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"36.30573814850012%\" x2=\"41.064917645374166%\" y1=\"60\" y2=\"60\" id=\"_fb_frkegwaxychgwhkjvicq_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.68532789693714%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_frkegwaxychgwhkjvicq_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.102</text><svg x=\"36.30573814850012%\" y=\"40\" height=\"20\" width=\"4.759179496874047%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"41.064917645374166%\" x2=\"44.8709601912619%\" y1=\"60\" y2=\"60\" id=\"_fb_frkegwaxychgwhkjvicq_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.96793891831803%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_frkegwaxychgwhkjvicq_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.882</text><svg x=\"41.064917645374166%\" y=\"40\" height=\"20\" width=\"3.8060425458877347%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"44.8709601912619%\" x2=\"45.30644774658823%\" y1=\"60\" y2=\"60\" id=\"_fb_frkegwaxychgwhkjvicq_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.08870396892507%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_frkegwaxychgwhkjvicq_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.101</text><svg x=\"44.8709601912619%\" y=\"40\" height=\"20\" width=\"0.43548755532633265%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"45.30644774658823%\" x2=\"45.479479118245706%\" y1=\"60\" y2=\"60\" id=\"_fb_frkegwaxychgwhkjvicq_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.39296343241697%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_frkegwaxychgwhkjvicq_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.04</text><svg x=\"45.30644774658823%\" y=\"40\" height=\"20\" width=\"0.17303137165747273%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"45.479479118245706%\" x2=\"45.52814753310127%\" y1=\"60\" y2=\"60\" id=\"_fb_frkegwaxychgwhkjvicq_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.50381332567349%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_frkegwaxychgwhkjvicq_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.011</text><svg x=\"45.479479118245706%\" y=\"40\" height=\"20\" width=\"0.0486684148555625%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"36.30573814850012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.30573814850012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.30573814850012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.30573814850012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.30573814850012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.30573814850012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.30573814850012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.30573814850012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.064917645374166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.064917645374166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.064917645374166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.064917645374166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.064917645374166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.064917645374166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.064917645374166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.064917645374166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.8709601912619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.8709601912619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.8709601912619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.8709601912619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.8709601912619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.8709601912619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.8709601912619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.8709601912619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.30644774658823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"45.30644774658823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"45.30644774658823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"45.30644774658823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.30644774658823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.30644774658823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.30644774658823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.30644774658823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.479479118245706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"45.479479118245706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"45.479479118245706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"45.479479118245706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.479479118245706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.479479118245706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.479479118245706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.479479118245706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"28.349467065239754%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"45.52814753310127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"36.30573814850012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"28.349467065239754%\" y=\"40\" height=\"20\" width=\"7.956271083260365%\" onmouseover=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_8').style.opacity = 1;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_8').style.textDecoration = 'none';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_8').style.opacity = 0;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"41.064917645374166%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"36.30573814850012%\" y=\"40\" height=\"20\" width=\"4.759179496874047%\" onmouseover=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_7').style.opacity = 1;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_7').style.textDecoration = 'none';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_7').style.opacity = 0;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.8709601912619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.064917645374166%\" y=\"40\" height=\"20\" width=\"3.8060425458877347%\" onmouseover=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_9').style.opacity = 1;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_9').style.textDecoration = 'none';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_9').style.opacity = 0;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"45.30644774658823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.8709601912619%\" y=\"40\" height=\"20\" width=\"0.43548755532633265%\" onmouseover=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_3').style.opacity = 1;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_3').style.textDecoration = 'none';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_3').style.opacity = 0;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"45.479479118245706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"45.30644774658823%\" y=\"40\" height=\"20\" width=\"0.17303137165747273%\" onmouseover=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_5').style.opacity = 1;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_5').style.textDecoration = 'none';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_5').style.opacity = 0;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"45.479479118245706%\" y=\"40\" height=\"20\" width=\"0.0486684148555625%\" onmouseover=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_0').style.opacity = 1;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_frkegwaxychgwhkjvicq_ind_0').style.textDecoration = 'none';document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_0').style.opacity = 0;document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.011</div\n",
" ><div id='_tp_frkegwaxychgwhkjvicq_ind_0'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_0').style.opacity = 1; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_0').style.opacity = 0; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_0').style.opacity = 0;\"\n",
" >im </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.161</div\n",
" ><div id='_tp_frkegwaxychgwhkjvicq_ind_1'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_1').style.opacity = 1; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_1').style.opacity = 0; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_1').style.opacity = 0;\"\n",
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.064</div\n",
" ><div id='_tp_frkegwaxychgwhkjvicq_ind_2'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_2').style.opacity = 1; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_2').style.opacity = 0; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_2').style.opacity = 0;\"\n",
" >a </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.101</div\n",
" ><div id='_tp_frkegwaxychgwhkjvicq_ind_3'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_3').style.opacity = 1; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_3').style.opacity = 0; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_3').style.opacity = 0;\"\n",
" >minute </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.016</div\n",
" ><div id='_tp_frkegwaxychgwhkjvicq_ind_4'\n",
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_4').style.opacity = 1; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_4').style.opacity = 0; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_4').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.04</div\n",
" ><div id='_tp_frkegwaxychgwhkjvicq_ind_5'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_5').style.opacity = 1; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_5').style.opacity = 0; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_5').style.opacity = 0;\"\n",
" >post </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.255</div\n",
" ><div id='_tp_frkegwaxychgwhkjvicq_ind_6'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_6').style.opacity = 1; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_6').style.opacity = 0; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_6').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.102</div\n",
" ><div id='_tp_frkegwaxychgwhkjvicq_ind_7'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1328976034858387); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_7').style.opacity = 1; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_7').style.opacity = 0; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_7').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.843</div\n",
" ><div id='_tp_frkegwaxychgwhkjvicq_ind_8'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.21960784313725487); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_8').style.opacity = 1; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_8').style.opacity = 0; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_8').style.opacity = 0;\"\n",
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.882</div\n",
" ><div id='_tp_frkegwaxychgwhkjvicq_ind_9'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10136660724896014); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_9').style.opacity = 1; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_frkegwaxychgwhkjvicq_ind_9').style.opacity = 0; document.getElementById('_fs_frkegwaxychgwhkjvicq_ind_9').style.opacity = 0;\"\n",
" >wrong</div></div></div></div><div id='_tp_duxscrtligdlrjvcmbvo_output_4_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"40.745575973669325%\" y1=\"33\" x2=\"40.745575973669325%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"40.745575973669325%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"22.11777910321245%\" y1=\"33\" x2=\"22.11777910321245%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"22.11777910321245%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"59.373372844126195%\" y1=\"33\" x2=\"59.373372844126195%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"59.373372844126195%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"78.00116971458307%\" y1=\"33\" x2=\"78.00116971458307%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"78.00116971458307%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"82.4474588825308%\" y1=\"33\" x2=\"82.4474588825308%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"82.4474588825308%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.76131</text><text x=\"82.4474588825308%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.76131</text><text x=\"82.4474588825308%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"17.55254093119124%\" y1=\"33\" x2=\"17.55254093119124%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"17.55254093119124%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.24508</text><text x=\"17.55254093119124%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.24508</text><text x=\"17.55254093119124%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"8.333333317810169%\" width=\"9.219207613381068%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"12.806425482953735%\" x2=\"17.55254093119124%\" y1=\"60\" y2=\"60\" id=\"_fb_gwfcmuqbnccnsfgasczi_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"15.179483207072487%\" y=\"71\" font-size=\"12px\" id=\"_fs_gwfcmuqbnccnsfgasczi_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.255</text><svg x=\"12.806425482953735%\" y=\"40\" height=\"20\" width=\"4.746115448237504%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"9.810840176259905%\" x2=\"12.806425482953735%\" y1=\"60\" y2=\"60\" id=\"_fb_gwfcmuqbnccnsfgasczi_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.30863282960682%\" y=\"71\" font-size=\"12px\" id=\"_fs_gwfcmuqbnccnsfgasczi_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.161</text><svg x=\"9.810840176259905%\" y=\"40\" height=\"20\" width=\"2.9955853066938296%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"8.62232303871753%\" x2=\"9.810840176259905%\" y1=\"60\" y2=\"60\" id=\"_fb_gwfcmuqbnccnsfgasczi_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.216581607488717%\" y=\"71\" font-size=\"12px\" id=\"_fs_gwfcmuqbnccnsfgasczi_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.064</text><svg x=\"8.62232303871753%\" y=\"40\" height=\"20\" width=\"1.1885171375423749%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"8.333333317810169%\" x2=\"8.62232303871753%\" y1=\"60\" y2=\"60\" id=\"_fb_gwfcmuqbnccnsfgasczi_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.477828178263849%\" y=\"71\" font-size=\"12px\" id=\"_fs_gwfcmuqbnccnsfgasczi_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.016</text><svg x=\"8.333333317810169%\" y=\"40\" height=\"20\" width=\"0.2889897209073613%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"12.806425482953735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.806425482953735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.806425482953735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.806425482953735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.806425482953735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.806425482953735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.806425482953735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.806425482953735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.810840176259905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.810840176259905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.810840176259905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.810840176259905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.810840176259905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.810840176259905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.810840176259905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.810840176259905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.62232303871753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.62232303871753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.62232303871753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.62232303871753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.62232303871753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.62232303871753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.62232303871753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.62232303871753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"17.55254093119124%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333317810169%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"17.55254093119124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.806425482953735%\" y=\"40\" height=\"20\" width=\"4.746115448237504%\" onmouseover=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_6').style.opacity = 1;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_6').style.textDecoration = 'none';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_6').style.opacity = 0;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.806425482953735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.810840176259905%\" y=\"40\" height=\"20\" width=\"2.9955853066938296%\" onmouseover=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_1').style.opacity = 1;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_1').style.textDecoration = 'none';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_1').style.opacity = 0;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.810840176259905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.62232303871753%\" y=\"40\" height=\"20\" width=\"1.1885171375423749%\" onmouseover=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_2').style.opacity = 1;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_2').style.textDecoration = 'none';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_2').style.opacity = 0;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333317810169%\" y=\"40\" height=\"20\" width=\"0.2889897209073613%\" onmouseover=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_4').style.opacity = 1;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_4').style.textDecoration = 'none';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_4').style.opacity = 0;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"17.55254093119124%\" width=\"74.11412556472062%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"17.55254093119124%\" x2=\"51.878348154562886%\" y1=\"60\" y2=\"60\" id=\"_fb_gwfcmuqbnccnsfgasczi_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"34.715444542877066%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gwfcmuqbnccnsfgasczi_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.843</text><svg x=\"17.55254093119124%\" y=\"40\" height=\"20\" width=\"34.32580722337165%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"51.878348154562886%\" x2=\"72.410916268642%\" y1=\"60\" y2=\"60\" id=\"_fb_gwfcmuqbnccnsfgasczi_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"62.14463221160244%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gwfcmuqbnccnsfgasczi_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.102</text><svg x=\"51.878348154562886%\" y=\"40\" height=\"20\" width=\"20.532568114079112%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"72.410916268642%\" x2=\"88.83135762199977%\" y1=\"60\" y2=\"60\" id=\"_fb_gwfcmuqbnccnsfgasczi_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"80.62113694532088%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gwfcmuqbnccnsfgasczi_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.882</text><svg x=\"72.410916268642%\" y=\"40\" height=\"20\" width=\"16.420441353357774%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"88.83135762199977%\" x2=\"90.71018524311489%\" y1=\"60\" y2=\"60\" id=\"_fb_gwfcmuqbnccnsfgasczi_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.77077143255732%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gwfcmuqbnccnsfgasczi_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.101</text><svg x=\"88.83135762199977%\" y=\"40\" height=\"20\" width=\"1.8788276211151214%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"90.71018524311489%\" x2=\"91.45669594454213%\" y1=\"60\" y2=\"60\" id=\"_fb_gwfcmuqbnccnsfgasczi_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.08344059382851%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gwfcmuqbnccnsfgasczi_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.04</text><svg x=\"90.71018524311489%\" y=\"40\" height=\"20\" width=\"0.7465107014272405%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"91.45669594454213%\" x2=\"91.66666649591187%\" y1=\"60\" y2=\"60\" id=\"_fb_gwfcmuqbnccnsfgasczi_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.561681220227%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gwfcmuqbnccnsfgasczi_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.011</text><svg x=\"91.45669594454213%\" y=\"40\" height=\"20\" width=\"0.20997055136973586%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"51.878348154562886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"51.878348154562886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"51.878348154562886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"51.878348154562886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"51.878348154562886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"51.878348154562886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"51.878348154562886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"51.878348154562886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"72.410916268642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"72.410916268642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"72.410916268642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"72.410916268642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"72.410916268642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"72.410916268642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"72.410916268642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"72.410916268642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.83135762199977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.83135762199977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.83135762199977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.83135762199977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.83135762199977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.83135762199977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.83135762199977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.83135762199977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.71018524311489%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.71018524311489%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.71018524311489%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.71018524311489%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.71018524311489%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.71018524311489%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.71018524311489%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.71018524311489%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.45669594454213%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.45669594454213%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.45669594454213%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.45669594454213%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.45669594454213%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.45669594454213%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.45669594454213%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.45669594454213%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"17.55254093119124%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666649591187%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"51.878348154562886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"17.55254093119124%\" y=\"40\" height=\"20\" width=\"34.32580722337165%\" onmouseover=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_8').style.opacity = 1;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_8').style.textDecoration = 'none';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_8').style.opacity = 0;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"72.410916268642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"51.878348154562886%\" y=\"40\" height=\"20\" width=\"20.532568114079112%\" onmouseover=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_7').style.opacity = 1;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_7').style.textDecoration = 'none';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_7').style.opacity = 0;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.83135762199977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"72.410916268642%\" y=\"40\" height=\"20\" width=\"16.420441353357774%\" onmouseover=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_9').style.opacity = 1;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_9').style.textDecoration = 'none';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_9').style.opacity = 0;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.71018524311489%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.83135762199977%\" y=\"40\" height=\"20\" width=\"1.8788276211151214%\" onmouseover=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_3').style.opacity = 1;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_3').style.textDecoration = 'none';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_3').style.opacity = 0;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.45669594454213%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.71018524311489%\" y=\"40\" height=\"20\" width=\"0.7465107014272405%\" onmouseover=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_5').style.opacity = 1;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_5').style.textDecoration = 'none';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_5').style.opacity = 0;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.45669594454213%\" y=\"40\" height=\"20\" width=\"0.20997055136973586%\" onmouseover=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_0').style.opacity = 1;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwfcmuqbnccnsfgasczi_ind_0').style.textDecoration = 'none';document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_0').style.opacity = 0;document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.011</div\n",
" ><div id='_tp_gwfcmuqbnccnsfgasczi_ind_0'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_0').style.opacity = 1; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_0').style.opacity = 0; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_0').style.opacity = 0;\"\n",
" >im </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.161</div\n",
" ><div id='_tp_gwfcmuqbnccnsfgasczi_ind_1'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.08560110913052081); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_1').style.opacity = 1; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_1').style.opacity = 0; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_1').style.opacity = 0;\"\n",
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.064</div\n",
" ><div id='_tp_gwfcmuqbnccnsfgasczi_ind_2'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_2').style.opacity = 1; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_2').style.opacity = 0; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_2').style.opacity = 0;\"\n",
" >a </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.101</div\n",
" ><div id='_tp_gwfcmuqbnccnsfgasczi_ind_3'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.05407011289364222); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_3').style.opacity = 1; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_3').style.opacity = 0; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_3').style.opacity = 0;\"\n",
" >minute </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.016</div\n",
" ><div id='_tp_gwfcmuqbnccnsfgasczi_ind_4'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_4').style.opacity = 1; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_4').style.opacity = 0; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_4').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.04</div\n",
" ><div id='_tp_gwfcmuqbnccnsfgasczi_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_5').style.opacity = 1; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_5').style.opacity = 0; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_5').style.opacity = 0;\"\n",
" >post </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.255</div\n",
" ><div id='_tp_gwfcmuqbnccnsfgasczi_ind_6'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.13289760348583876); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_6').style.opacity = 1; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_6').style.opacity = 0; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_6').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.102</div\n",
" ><div id='_tp_gwfcmuqbnccnsfgasczi_ind_7'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.597979797979798); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_7').style.opacity = 1; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_7').style.opacity = 0; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_7').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.843</div\n",
" ><div id='_tp_gwfcmuqbnccnsfgasczi_ind_8'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_8').style.opacity = 1; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_8').style.opacity = 0; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_8').style.opacity = 0;\"\n",
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.882</div\n",
" ><div id='_tp_gwfcmuqbnccnsfgasczi_ind_9'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.47973856209150334); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_9').style.opacity = 1; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_gwfcmuqbnccnsfgasczi_ind_9').style.opacity = 0; document.getElementById('_fs_gwfcmuqbnccnsfgasczi_ind_9').style.opacity = 0;\"\n",
" >wrong</div></div></div></div><div id='_tp_duxscrtligdlrjvcmbvo_output_5' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.996022041324366%\" y1=\"33\" x2=\"50.996022041324366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.996022041324366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"38.04298638909773%\" y1=\"33\" x2=\"38.04298638909773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.04298638909773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"25.089950736871085%\" y1=\"33\" x2=\"25.089950736871085%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.089950736871085%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"12.13691508464444%\" y1=\"33\" x2=\"12.13691508464444%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.13691508464444%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-10</text><line x1=\"63.949057693551005%\" y1=\"33\" x2=\"63.949057693551005%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.949057693551005%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"76.90209334577764%\" y1=\"33\" x2=\"76.90209334577764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.90209334577764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"89.85512899800429%\" y1=\"33\" x2=\"89.85512899800429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.85512899800429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">8</text><line x1=\"36.66153439463859%\" y1=\"33\" x2=\"36.66153439463859%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"36.66153439463859%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4.31995</text><text x=\"36.66153439463859%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4.31995</text><text x=\"36.66153439463859%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"27.428492892444954%\" y1=\"33\" x2=\"27.428492892444954%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"27.428492892444954%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.45838</text><text x=\"27.428492892444954%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.45838</text><text x=\"27.428492892444954%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"25.343460340981192%\" width=\"2.085032551463761%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"26.55830567013342%\" x2=\"27.428492892444954%\" y1=\"60\" y2=\"60\" id=\"_fb_njhtpynfixkurkxszcld_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"26.993399281289186%\" y=\"71\" font-size=\"12px\" id=\"_fs_njhtpynfixkurkxszcld_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.202</text><svg x=\"26.55830567013342%\" y=\"40\" height=\"20\" width=\"0.8701872223115323%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"25.81233226815681%\" x2=\"26.55830567013342%\" y1=\"60\" y2=\"60\" id=\"_fb_njhtpynfixkurkxszcld_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"26.185318969145115%\" y=\"71\" font-size=\"12px\" id=\"_fs_njhtpynfixkurkxszcld_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.173</text><svg x=\"25.81233226815681%\" y=\"40\" height=\"20\" width=\"0.7459734019766131%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"25.343460340981192%\" x2=\"25.81233226815681%\" y1=\"60\" y2=\"60\" id=\"_fb_njhtpynfixkurkxszcld_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"25.577896304569002%\" y=\"71\" font-size=\"12px\" id=\"_fs_njhtpynfixkurkxszcld_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.109</text><svg x=\"25.343460340981192%\" y=\"40\" height=\"20\" width=\"0.4688719271756163%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"26.55830567013342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.55830567013342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.55830567013342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.55830567013342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.55830567013342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.55830567013342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.55830567013342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.55830567013342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"25.81233226815681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"25.81233226815681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"25.81233226815681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"25.81233226815681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"25.81233226815681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"25.81233226815681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"25.81233226815681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"25.81233226815681%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"27.428492892444954%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"25.343460340981192%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"27.428492892444954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.55830567013342%\" y=\"40\" height=\"20\" width=\"0.8701872223115323%\" onmouseover=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_6').style.opacity = 1;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_6').style.textDecoration = 'none';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_6').style.opacity = 0;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"26.55830567013342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"25.81233226815681%\" y=\"40\" height=\"20\" width=\"0.7459734019766131%\" onmouseover=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_2').style.opacity = 1;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_2').style.textDecoration = 'none';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_2').style.opacity = 0;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"25.343460340981192%\" y=\"40\" height=\"20\" width=\"0.4688719271756163%\" onmouseover=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_3').style.opacity = 1;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_3').style.textDecoration = 'none';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_3').style.opacity = 0;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"27.428492892444954%\" width=\"11.318074053657398%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"27.428492892444954%\" x2=\"32.94566202140506%\" y1=\"60\" y2=\"60\" id=\"_fb_njhtpynfixkurkxszcld_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"30.18707745692501%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_njhtpynfixkurkxszcld_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.278</text><svg x=\"27.428492892444954%\" y=\"40\" height=\"20\" width=\"5.517169128960109%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"32.94566202140506%\" x2=\"35.259960944082785%\" y1=\"60\" y2=\"60\" id=\"_fb_njhtpynfixkurkxszcld_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"34.102811482743924%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_njhtpynfixkurkxszcld_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.536</text><svg x=\"32.94566202140506%\" y=\"40\" height=\"20\" width=\"2.3142989226777217%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"35.259960944082785%\" x2=\"37.473243393900084%\" y1=\"60\" y2=\"60\" id=\"_fb_njhtpynfixkurkxszcld_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"36.366602168991434%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_njhtpynfixkurkxszcld_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.513</text><svg x=\"35.259960944082785%\" y=\"40\" height=\"20\" width=\"2.2132824498172994%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"37.473243393900084%\" x2=\"38.12917504271692%\" y1=\"60\" y2=\"60\" id=\"_fb_njhtpynfixkurkxszcld_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.8012092183085%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_njhtpynfixkurkxszcld_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.152</text><svg x=\"37.473243393900084%\" y=\"40\" height=\"20\" width=\"0.6559316488168392%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"38.12917504271692%\" x2=\"38.567563295892356%\" y1=\"60\" y2=\"60\" id=\"_fb_njhtpynfixkurkxszcld_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.34836916930464%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_njhtpynfixkurkxszcld_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.102</text><svg x=\"38.12917504271692%\" y=\"40\" height=\"20\" width=\"0.4383882531754324%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"38.567563295892356%\" x2=\"38.69007973992352%\" y1=\"60\" y2=\"60\" id=\"_fb_njhtpynfixkurkxszcld_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.62882151790794%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_njhtpynfixkurkxszcld_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.028</text><svg x=\"38.567563295892356%\" y=\"40\" height=\"20\" width=\"0.12251644403116302%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"38.69007973992352%\" x2=\"38.74656694610235%\" y1=\"60\" y2=\"60\" id=\"_fb_njhtpynfixkurkxszcld_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.71832334301293%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_njhtpynfixkurkxszcld_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.013</text><svg x=\"38.69007973992352%\" y=\"40\" height=\"20\" width=\"0.0564872061788293%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"32.94566202140506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"32.94566202140506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"32.94566202140506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"32.94566202140506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"32.94566202140506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"32.94566202140506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"32.94566202140506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"32.94566202140506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.259960944082785%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"35.259960944082785%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"35.259960944082785%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"35.259960944082785%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.259960944082785%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.259960944082785%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.259960944082785%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.259960944082785%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.473243393900084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.473243393900084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.473243393900084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.473243393900084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.473243393900084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.473243393900084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.473243393900084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.473243393900084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.12917504271692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.12917504271692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.12917504271692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.12917504271692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.12917504271692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.12917504271692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.12917504271692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.12917504271692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.567563295892356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.567563295892356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.567563295892356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.567563295892356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.567563295892356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.567563295892356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.567563295892356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.567563295892356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.69007973992352%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.69007973992352%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.69007973992352%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.69007973992352%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.69007973992352%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.69007973992352%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.69007973992352%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.69007973992352%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"27.428492892444954%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"38.74656694610235%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"32.94566202140506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"27.428492892444954%\" y=\"40\" height=\"20\" width=\"5.517169128960109%\" onmouseover=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_8').style.opacity = 1;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_8').style.textDecoration = 'none';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_8').style.opacity = 0;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"35.259960944082785%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"32.94566202140506%\" y=\"40\" height=\"20\" width=\"2.3142989226777217%\" onmouseover=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_7').style.opacity = 1;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_7').style.textDecoration = 'none';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_7').style.opacity = 0;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.473243393900084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"35.259960944082785%\" y=\"40\" height=\"20\" width=\"2.2132824498172994%\" onmouseover=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_9').style.opacity = 1;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_9').style.textDecoration = 'none';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_9').style.opacity = 0;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"38.12917504271692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.473243393900084%\" y=\"40\" height=\"20\" width=\"0.6559316488168392%\" onmouseover=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_1').style.opacity = 1;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_1').style.textDecoration = 'none';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_1').style.opacity = 0;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"38.567563295892356%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"38.12917504271692%\" y=\"40\" height=\"20\" width=\"0.4383882531754324%\" onmouseover=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_5').style.opacity = 1;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_5').style.textDecoration = 'none';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_5').style.opacity = 0;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"38.69007973992352%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"38.567563295892356%\" y=\"40\" height=\"20\" width=\"0.12251644403116302%\" onmouseover=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_4').style.opacity = 1;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_4').style.textDecoration = 'none';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_4').style.opacity = 0;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"38.69007973992352%\" y=\"40\" height=\"20\" width=\"0.0564872061788293%\" onmouseover=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_0').style.opacity = 1;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_njhtpynfixkurkxszcld_ind_0').style.textDecoration = 'none';document.getElementById('_fs_njhtpynfixkurkxszcld_ind_0').style.opacity = 0;document.getElementById('_fb_njhtpynfixkurkxszcld_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.013</div\n",
" ><div id='_tp_njhtpynfixkurkxszcld_ind_0'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_0').style.opacity = 1; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_0').style.opacity = 0; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_0').style.opacity = 0;\"\n",
" >im </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.152</div\n",
" ><div id='_tp_njhtpynfixkurkxszcld_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_1').style.opacity = 1; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_1').style.opacity = 0; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_1').style.opacity = 0;\"\n",
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.173</div\n",
" ><div id='_tp_njhtpynfixkurkxszcld_ind_2'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_2').style.opacity = 1; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_2').style.opacity = 0; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_2').style.opacity = 0;\"\n",
" >a </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.109</div\n",
" ><div id='_tp_njhtpynfixkurkxszcld_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_3').style.opacity = 1; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_3').style.opacity = 0; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_3').style.opacity = 0;\"\n",
" >minute </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.028</div\n",
" ><div id='_tp_njhtpynfixkurkxszcld_ind_4'\n",
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_4').style.opacity = 1; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_4').style.opacity = 0; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_4').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.102</div\n",
" ><div id='_tp_njhtpynfixkurkxszcld_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_5').style.opacity = 1; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_5').style.opacity = 0; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_5').style.opacity = 0;\"\n",
" >post </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.202</div\n",
" ><div id='_tp_njhtpynfixkurkxszcld_ind_6'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_6').style.opacity = 1; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_6').style.opacity = 0; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_6').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.536</div\n",
" ><div id='_tp_njhtpynfixkurkxszcld_ind_7'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_7').style.opacity = 1; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_7').style.opacity = 0; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_7').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.278</div\n",
" ><div id='_tp_njhtpynfixkurkxszcld_ind_8'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1565458506634977); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_8').style.opacity = 1; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_8').style.opacity = 0; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_8').style.opacity = 0;\"\n",
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.513</div\n",
" ><div id='_tp_njhtpynfixkurkxszcld_ind_9'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_9').style.opacity = 1; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_njhtpynfixkurkxszcld_ind_9').style.opacity = 0; document.getElementById('_fs_njhtpynfixkurkxszcld_ind_9').style.opacity = 0;\"\n",
" >wrong</div></div></div></div><div id='_tp_duxscrtligdlrjvcmbvo_output_5_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"60.447168569564916%\" y1=\"33\" x2=\"60.447168569564916%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.447168569564916%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"33.60215751878316%\" y1=\"33\" x2=\"33.60215751878316%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"33.60215751878316%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"87.29217962034667%\" y1=\"33\" x2=\"87.29217962034667%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"87.29217962034667%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"78.70305154572308%\" y1=\"33\" x2=\"78.70305154572308%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"78.70305154572308%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4.31995</text><text x=\"78.70305154572308%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4.31995</text><text x=\"78.70305154572308%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"21.2969481858268%\" y1=\"33\" x2=\"21.2969481858268%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"21.2969481858268%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.45838</text><text x=\"21.2969481858268%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.45838</text><text x=\"21.2969481858268%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"8.333333310962491%\" width=\"12.96361487486431%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"15.886590438099956%\" x2=\"21.2969481858268%\" y1=\"60\" y2=\"60\" id=\"_fb_kcwbzyexquntcdhyotvg_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"18.59176931196338%\" y=\"71\" font-size=\"12px\" id=\"_fs_kcwbzyexquntcdhyotvg_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.202</text><svg x=\"15.886590438099956%\" y=\"40\" height=\"20\" width=\"5.410357747726843%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"11.248527649426402%\" x2=\"15.886590438099956%\" y1=\"60\" y2=\"60\" id=\"_fb_kcwbzyexquntcdhyotvg_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.567559043763179%\" y=\"71\" font-size=\"12px\" id=\"_fs_kcwbzyexquntcdhyotvg_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.173</text><svg x=\"11.248527649426402%\" y=\"40\" height=\"20\" width=\"4.638062788673555%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"8.333333310962491%\" x2=\"11.248527649426402%\" y1=\"60\" y2=\"60\" id=\"_fb_kcwbzyexquntcdhyotvg_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.790930480194447%\" y=\"71\" font-size=\"12px\" id=\"_fs_kcwbzyexquntcdhyotvg_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.109</text><svg x=\"8.333333310962491%\" y=\"40\" height=\"20\" width=\"2.9151943384639107%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"15.886590438099956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.886590438099956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.886590438099956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.886590438099956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.886590438099956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.886590438099956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.886590438099956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.886590438099956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.248527649426402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.248527649426402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.248527649426402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.248527649426402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.248527649426402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.248527649426402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.248527649426402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.248527649426402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"21.2969481858268%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333310962491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"21.2969481858268%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.886590438099956%\" y=\"40\" height=\"20\" width=\"5.410357747726843%\" onmouseover=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_6').style.opacity = 1;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_6').style.textDecoration = 'none';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_6').style.opacity = 0;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"15.886590438099956%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.248527649426402%\" y=\"40\" height=\"20\" width=\"4.638062788673555%\" onmouseover=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_2').style.opacity = 1;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_2').style.textDecoration = 'none';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_2').style.opacity = 0;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333310962491%\" y=\"40\" height=\"20\" width=\"2.9151943384639107%\" onmouseover=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_3').style.opacity = 1;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_3').style.textDecoration = 'none';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_3').style.opacity = 0;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"21.2969481858268%\" width=\"70.3697182347606%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"21.2969481858268%\" x2=\"55.59974875223445%\" y1=\"60\" y2=\"60\" id=\"_fb_kcwbzyexquntcdhyotvg_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.44834846903062%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kcwbzyexquntcdhyotvg_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.278</text><svg x=\"21.2969481858268%\" y=\"40\" height=\"20\" width=\"34.30280056640765%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"55.59974875223445%\" x2=\"69.98881904173432%\" y1=\"60\" y2=\"60\" id=\"_fb_kcwbzyexquntcdhyotvg_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"62.79428389698438%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kcwbzyexquntcdhyotvg_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.536</text><svg x=\"55.59974875223445%\" y=\"40\" height=\"20\" width=\"14.38907028949987%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"69.98881904173432%\" x2=\"83.74982304552549%\" y1=\"60\" y2=\"60\" id=\"_fb_kcwbzyexquntcdhyotvg_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"76.8693210436299%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kcwbzyexquntcdhyotvg_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.513</text><svg x=\"69.98881904173432%\" y=\"40\" height=\"20\" width=\"13.761004003791172%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"83.74982304552549%\" x2=\"87.82805447338818%\" y1=\"60\" y2=\"60\" id=\"_fb_kcwbzyexquntcdhyotvg_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"85.78893875945684%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kcwbzyexquntcdhyotvg_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.152</text><svg x=\"83.74982304552549%\" y=\"40\" height=\"20\" width=\"4.07823142786269%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"87.82805447338818%\" x2=\"90.55371766547651%\" y1=\"60\" y2=\"60\" id=\"_fb_kcwbzyexquntcdhyotvg_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.19088606943234%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kcwbzyexquntcdhyotvg_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.102</text><svg x=\"87.82805447338818%\" y=\"40\" height=\"20\" width=\"2.7256631920883336%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"90.55371766547651%\" x2=\"91.31545924842823%\" y1=\"60\" y2=\"60\" id=\"_fb_kcwbzyexquntcdhyotvg_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.93458845695237%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kcwbzyexquntcdhyotvg_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.028</text><svg x=\"90.55371766547651%\" y=\"40\" height=\"20\" width=\"0.7617415829517142%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"91.31545924842823%\" x2=\"91.6666664205874%\" y1=\"60\" y2=\"60\" id=\"_fb_kcwbzyexquntcdhyotvg_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.49106283450782%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kcwbzyexquntcdhyotvg_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.013</text><svg x=\"91.31545924842823%\" y=\"40\" height=\"20\" width=\"0.35120717215917807%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"55.59974875223445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"55.59974875223445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"55.59974875223445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"55.59974875223445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"55.59974875223445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"55.59974875223445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"55.59974875223445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"55.59974875223445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"69.98881904173432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"69.98881904173432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"69.98881904173432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"69.98881904173432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"69.98881904173432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"69.98881904173432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"69.98881904173432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"69.98881904173432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"83.74982304552549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"83.74982304552549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"83.74982304552549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"83.74982304552549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"83.74982304552549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"83.74982304552549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"83.74982304552549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"83.74982304552549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.82805447338818%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.82805447338818%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.82805447338818%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.82805447338818%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.82805447338818%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.82805447338818%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.82805447338818%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.82805447338818%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.55371766547651%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.55371766547651%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.55371766547651%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.55371766547651%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.55371766547651%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.55371766547651%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.55371766547651%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.55371766547651%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.31545924842823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.31545924842823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.31545924842823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.31545924842823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.31545924842823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.31545924842823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.31545924842823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.31545924842823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"21.2969481858268%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.6666664205874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"55.59974875223445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"21.2969481858268%\" y=\"40\" height=\"20\" width=\"34.30280056640765%\" onmouseover=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_8').style.opacity = 1;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_8').style.textDecoration = 'none';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_8').style.opacity = 0;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"69.98881904173432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"55.59974875223445%\" y=\"40\" height=\"20\" width=\"14.38907028949987%\" onmouseover=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_7').style.opacity = 1;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_7').style.textDecoration = 'none';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_7').style.opacity = 0;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"83.74982304552549%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"69.98881904173432%\" y=\"40\" height=\"20\" width=\"13.761004003791172%\" onmouseover=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_9').style.opacity = 1;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_9').style.textDecoration = 'none';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_9').style.opacity = 0;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.82805447338818%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"83.74982304552549%\" y=\"40\" height=\"20\" width=\"4.07823142786269%\" onmouseover=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_1').style.opacity = 1;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_1').style.textDecoration = 'none';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_1').style.opacity = 0;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.55371766547651%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.82805447338818%\" y=\"40\" height=\"20\" width=\"2.7256631920883336%\" onmouseover=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_5').style.opacity = 1;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_5').style.textDecoration = 'none';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_5').style.opacity = 0;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.31545924842823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.55371766547651%\" y=\"40\" height=\"20\" width=\"0.7617415829517142%\" onmouseover=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_4').style.opacity = 1;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_4').style.textDecoration = 'none';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_4').style.opacity = 0;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.31545924842823%\" y=\"40\" height=\"20\" width=\"0.35120717215917807%\" onmouseover=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_0').style.opacity = 1;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kcwbzyexquntcdhyotvg_ind_0').style.textDecoration = 'none';document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_0').style.opacity = 0;document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.013</div\n",
" ><div id='_tp_kcwbzyexquntcdhyotvg_ind_0'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_0').style.opacity = 1; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_0').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_0').style.opacity = 0; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_0').style.opacity = 0;\"\n",
" >im </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.152</div\n",
" ><div id='_tp_kcwbzyexquntcdhyotvg_ind_1'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.11713210536739943); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_1').style.opacity = 1; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_1').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_1').style.opacity = 0; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_1').style.opacity = 0;\"\n",
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.173</div\n",
" ><div id='_tp_kcwbzyexquntcdhyotvg_ind_2'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.13289760348583876); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_2').style.opacity = 1; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_2').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_2').style.opacity = 0; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_2').style.opacity = 0;\"\n",
" >a </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.109</div\n",
" ><div id='_tp_kcwbzyexquntcdhyotvg_ind_3'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.07771836007130124); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_3').style.opacity = 1; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_3').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_3').style.opacity = 0; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_3').style.opacity = 0;\"\n",
" >minute </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.028</div\n",
" ><div id='_tp_kcwbzyexquntcdhyotvg_ind_4'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_4').style.opacity = 1; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_4').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_4').style.opacity = 0; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_4').style.opacity = 0;\"\n",
" >to </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.102</div\n",
" ><div id='_tp_kcwbzyexquntcdhyotvg_ind_5'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_5').style.opacity = 1; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_5').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_5').style.opacity = 0; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_5').style.opacity = 0;\"\n",
" >post </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.202</div\n",
" ><div id='_tp_kcwbzyexquntcdhyotvg_ind_6'\n",
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.15654585066349747); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_6').style.opacity = 1; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_6').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_6').style.opacity = 0; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_6').style.opacity = 0;\"\n",
" >i </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.536</div\n",
" ><div id='_tp_kcwbzyexquntcdhyotvg_ind_7'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.41667656961774613); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_7').style.opacity = 1; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_7').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_7').style.opacity = 0; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_7').style.opacity = 0;\"\n",
" >feel </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.278</div\n",
" ><div id='_tp_kcwbzyexquntcdhyotvg_ind_8'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_8').style.opacity = 1; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_8').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_8').style.opacity = 0; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_8').style.opacity = 0;\"\n",
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.513</div\n",
" ><div id='_tp_kcwbzyexquntcdhyotvg_ind_9'\n",
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.40091107149930677); border-radius: 3px; padding: 0px'\n",
" onclick=\"\n",
" if (this.previousSibling.style.display == 'none') {\n",
" this.previousSibling.style.display = 'block';\n",
" this.parentNode.style.display = 'inline-block';\n",
" } else {\n",
" this.previousSibling.style.display = 'none';\n",
" this.parentNode.style.display = 'inline';\n",
" }\"\n",
" onmouseover=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_9').style.opacity = 1; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_9').style.opacity = 1;\"\n",
" onmouseout=\"document.getElementById('_fb_kcwbzyexquntcdhyotvg_ind_9').style.opacity = 0; document.getElementById('_fs_kcwbzyexquntcdhyotvg_ind_9').style.opacity = 0;\"\n",
" >wrong</div></div></div></div></div>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"shap.plots.text(shap_values)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<hr>\n",
"Have an idea for more helpful examples? Pull requests that add to this documentation notebook are encouraged! "
]
}
],
"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.4"
}
},
"nbformat": 4,
"nbformat_minor": 4
}