Skip to content

Instantly share code, notes, and snippets.

@iwatobipen
Created June 25, 2024 13:22
Show Gist options
  • Save iwatobipen/0054b3f7b64ac9470ee0110c817a3035 to your computer and use it in GitHub Desktop.
Save iwatobipen/0054b3f7b64ac9470ee0110c817a3035 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"id": "consecutive-report",
"metadata": {},
"source": [
"## This notebook exemplifies full notebook usage of bbSelect"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "blind-divide",
"metadata": {},
"outputs": [],
"source": [
"import sys\n",
"import os\n",
"sys.path.append('../')\n",
"from bbSelectBuild import bbSelectBuild\n",
"from bbSelect import Picker\n",
"\n",
"import matplotlib.pyplot as plt\n",
"\n",
"plt.rcParams['figure.figsize'] = [15,10]"
]
},
{
"cell_type": "markdown",
"id": "guided-asian",
"metadata": {},
"source": [
"## Build the bbSelect database"
]
},
{
"cell_type": "markdown",
"id": "protecting-plane",
"metadata": {},
"source": [
"### Set the parameters for bbSelectBuild, which builds the bbSelect database"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "confident-moscow",
"metadata": {},
"outputs": [],
"source": [
"smiles_file = '../data/enamine_acids/enamine_acids_filtered.csv'\n",
"#for rdkit csv shoud be tsv format with smiles and ID column\n",
"smiles_file = '../data/enamine_acids/enamine_acids_filtered_rdkit_top2k.csv'\n",
"\n",
"output_root = '../data/enamine_acids/enamine_acids_full_usage_example'\n",
"cell_size = 1\n",
"num_cells = 20\n",
"ncpu = len(os.sched_getaffinity(0)) -1\n",
"\n",
"# Set the SMARTS that will be used to clip the \"core scaffold\" to [15CH3]. \n",
"# If using the results from an R-group decomposition, you need to generate the clipped smiles file yourself replacing * with [15CH3]\n",
"\n",
"rxn_smarts = '[C:1](=[O:2])[OH]>>[C:1](=[O:2])[15CH3]'\n",
"\n",
"# Below are the default settings for bbSelectBuild and do not need to be set if using default. \n",
"# However, if changing anything, these will need to be set\n",
"\n",
"#conformer_generation_program = 'omega' # Can be set to 'rdkit' if rdkit is to be used. Warning: this takes MUCH longer\n",
"conformer_generation_program = \"rdkit\"\n",
"# These are required to run omega from python\n",
"omega_load_command = 'module load openeye'\n",
"omega_run_command = 'omega2'\n",
"\n",
"# If the clipped smiles file has already been generated you can load that in and define the separator in the file\n",
"# If you are using the results of an R-group decomposition, the clipped file will need to be loaded in where * has been replaced by [15CH3]\n",
"clipped_smiles_file = None\n",
"clipped_smiles_file_sep = None\n",
"#clipped_smiles_file_sep = '\\t'\n",
"\n",
"# If the conformers, or the aligned conformers have already been generated, set the paths here\n",
"conformer_sdf = None\n",
"aligned_mols_sdf = None\n",
"\n",
"# If you would like to save the aligned conformers, you can set the path here\n",
"save_aligned_mols_sdf = None"
]
},
{
"cell_type": "markdown",
"id": "after-great",
"metadata": {},
"source": [
"### Initiate the bbSelectBuild class"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "worse-battlefield",
"metadata": {},
"outputs": [],
"source": [
"bbSelectBuilder = bbSelectBuild(\n",
" smiles_file = smiles_file, \n",
" output_root = output_root, \n",
" cell_size = cell_size, \n",
" num_cells = num_cells, \n",
" ncpu = ncpu,\n",
" rxn_smarts = rxn_smarts\n",
" )\n",
"\n",
"# Set options in bbSelectBuild\n",
"bbSelectBuilder.SetOption('conformer_generation_program', conformer_generation_program)\n",
"bbSelectBuilder.SetOption('omega_load_command', omega_load_command)\n",
"bbSelectBuilder.SetOption('omega_run_command', omega_run_command)\n",
"bbSelectBuilder.SetOption('clipped_smiles_file', clipped_smiles_file)\n",
"bbSelectBuilder.SetOption('clipped_smiles_file_sep', clipped_smiles_file_sep)\n",
"bbSelectBuilder.SetOption('conformer_sdf', conformer_sdf)\n",
"bbSelectBuilder.SetOption('aligned_mols_sdf', aligned_mols_sdf)\n",
"bbSelectBuilder.SetOption('save_aligned_mols_sdf', save_aligned_mols_sdf)\n",
"bbSelectBuilder.SetOption('smiles_file_sep', '\\t') # added"
]
},
{
"cell_type": "markdown",
"id": "minute-nevada",
"metadata": {},
"source": [
"### Run the bbSelectBuilder and get the location of the database"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "normal-czech",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"2024-06-25 19:47:05,417 - root - INFO - loading smiles file\n",
"2024-06-25 19:47:05,426 - root - INFO - clipping smiles file\n",
"2024-06-25 19:47:05,600 - root - INFO - 1999 compounds clipped in 0.17309832572937012 seconds\n",
"2024-06-25 19:47:05,600 - root - INFO - clipped smiles saved at ../data/enamine_acids/enamine_acids_filtered_rdkit_top2k_clipped.tsv\n",
"2024-06-25 19:47:05,603 - root - INFO - generating conformers\n",
"2024-06-25 19:47:05,603 - root - INFO - Starting conformer generation with rdkit over 19 cores.\n",
"2024-06-25 21:24:39,811 - root - INFO - loading conformer sdf\n",
"2024-06-25 21:24:41,860 - root - INFO - 26852 conformers loaded in 2.047424554824829 seconds\n",
"2024-06-25 21:24:41,861 - root - INFO - Running alignment over 19 cores\n",
"2024-06-25 21:24:45,371 - root - INFO - 26852 compounds aligned over 19 CPU cores in 3.510171890258789 seconds\n",
"2024-06-25 21:24:45,674 - root - INFO - getting pharmacophore_features\n",
"2024-06-25 21:24:45,675 - root - INFO - Capturing pharmacophores over 19 cores\n",
"2024-06-25 21:24:48,979 - root - INFO - 26852 pharmacophores captured over 19 cores in 3.304802656173706 seconds\n",
"2024-06-25 21:24:48,981 - root - INFO - generating fingerprints\n",
"2024-06-25 21:24:49,076 - root - INFO - 1999 fingerprints generated over 1 CPU core in 0.09395861625671387 seconds\n",
"2024-06-25 21:24:49,077 - root - INFO - writing bbSelect DB\n",
"2024-06-25 21:24:49,416 - root - INFO - 1999 fingerprints written in 0.338761568069458 seconds\n",
"2024-06-25 21:24:49,416 - root - INFO - Writing reference file\n",
"2024-06-25 21:24:49,591 - root - INFO - Reference file written\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"step1\n",
"step2\n",
"../data/enamine_acids/enamine_acids_full_usage_example.bin ../data/enamine_acids/enamine_acids_full_usage_example.ref\n"
]
}
],
"source": [
"bbSelect = bbSelectBuilder.Run()\n",
"print('step1')\n",
"bin_file = bbSelect.GetBinLocation()\n",
"print('step2')\n",
"ref_file = bbSelect.GetRefLocation()\n",
"print(bin_file, ref_file)"
]
},
{
"cell_type": "markdown",
"id": "parental-facility",
"metadata": {},
"source": [
"## Select compounds from the bbSelect database"
]
},
{
"cell_type": "markdown",
"id": "covered-pontiac",
"metadata": {},
"source": [
"### Set the parameters for bbSelect, which performs the selection"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "bound-advocacy",
"metadata": {},
"outputs": [],
"source": [
"n_select = 48\n",
"ncpu = len(os.sched_getaffinity(0)) -1\n",
"sort = 'MPO'\n",
"tanimoto = 0.9\n",
"pharmacophores = '*'\n",
"method = 'classic'\n",
"use_coverage = False"
]
},
{
"cell_type": "markdown",
"id": "physical-following",
"metadata": {},
"source": [
"### Run the selection"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "animal-wiring",
"metadata": {
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"2024-06-25 21:26:31,113 - root - INFO - Beginning generation of query fingerprints\n",
"2024-06-25 21:26:31,118 - root - INFO - Starting set-driven division of area\n",
"2024-06-25 21:26:31,438 - root - INFO - Generation of query fingerprints execution time = 0.32 seconds\n",
"2024-06-25 21:26:31,439 - root - INFO - Starting fingerprint matching algorithm over 19 cores\n",
"2024-06-25 21:26:34,069 - root - INFO - fingerprint matching execution time = 2.63 seconds\n",
"2024-06-25 21:26:34,070 - root - INFO - Starting selection algorithm\n",
"2024-06-25 21:26:34,331 - root - INFO - selection execution time = 0.26 seconds\n",
"2024-06-25 21:26:34,332 - root - DEBUG - skip 13 rows\n"
]
},
{
"data": {
"image/svg+xml": [
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:rdkit=\"http://www.rdkit.org/xml\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" baseProfile=\"full\" xml:space=\"preserve\" width=\"1200px\" height=\"900px\" viewBox=\"0 0 1200 900\">\n",
"<!-- END OF HEADER -->\n",
"<rect style=\"opacity:1.0;fill:#FFFFFF;stroke:none\" width=\"1200.0\" height=\"900.0\" x=\"0.0\" y=\"0.0\"> </rect>\n",
"<path class=\"bond-0 atom-1 atom-0\" d=\"M 55.6,72.4 L 49.9,76.8 L 48.9,75.2 Z\" style=\"fill:#000000;fill-rule:evenodd;fill-opacity:1;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;\"/>\n",
"<path class=\"bond-0 atom-1 atom-0\" d=\"M 49.9,76.8 L 42.2,78.0 L 44.1,81.2 Z\" style=\"fill:#FF0000;fill-rule:evenodd;fill-opacity:1;stroke:#FF0000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;\"/>\n",
"<path class=\"bond-0 atom-1 atom-0\" d=\"M 49.9,76.8 L 48.9,75.2 L 42.2,78.0 Z\" style=\"fill:#FF0000;fill-rule:evenodd;fill-opacity:1;stroke:#FF0000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 55.6,72.4 L 60.5,54.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 60.5,54.4 L 78.5,59.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 78.5,59.2 L 73.6,77.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-3 atom-5\" d=\"M 84.2,56.6 L 83.5,55.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-3 atom-5\" d=\"M 89.9,54.1 L 88.6,51.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-3 atom-5\" d=\"M 95.6,51.5 L 93.7,48.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 94.6,49.9 L 101.2,53.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 101.2,53.7 L 107.7,57.4\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 92.8,49.9 L 92.8,42.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 92.8,42.2 L 92.8,34.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 96.5,49.9 L 96.5,42.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 96.5,42.2 L 96.5,34.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-4 atom-1\" d=\"M 73.6,77.2 L 55.6,72.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 32.3 79.1 L 33.0 79.1 L 33.0 81.3 L 35.7 81.3 L 35.7 79.1 L 36.4 79.1 L 36.4 84.4 L 35.7 84.4 L 35.7 81.9 L 33.0 81.9 L 33.0 84.4 L 32.3 84.4 L 32.3 79.1 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 37.1 81.7 Q 37.1 80.4, 37.7 79.7 Q 38.3 79.0, 39.5 79.0 Q 40.7 79.0, 41.3 79.7 Q 41.9 80.4, 41.9 81.7 Q 41.9 83.0, 41.3 83.7 Q 40.6 84.5, 39.5 84.5 Q 38.3 84.5, 37.7 83.7 Q 37.1 83.0, 37.1 81.7 M 39.5 83.9 Q 40.3 83.9, 40.7 83.3 Q 41.2 82.8, 41.2 81.7 Q 41.2 80.7, 40.7 80.2 Q 40.3 79.6, 39.5 79.6 Q 38.7 79.6, 38.2 80.1 Q 37.8 80.7, 37.8 81.7 Q 37.8 82.8, 38.2 83.3 Q 38.7 83.9, 39.5 83.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-6\" d=\"M 108.3 59.2 Q 108.3 57.9, 109.0 57.2 Q 109.6 56.5, 110.8 56.5 Q 111.9 56.5, 112.6 57.2 Q 113.2 57.9, 113.2 59.2 Q 113.2 60.5, 112.6 61.2 Q 111.9 61.9, 110.8 61.9 Q 109.6 61.9, 109.0 61.2 Q 108.3 60.5, 108.3 59.2 M 110.8 61.3 Q 111.6 61.3, 112.0 60.8 Q 112.4 60.3, 112.4 59.2 Q 112.4 58.2, 112.0 57.6 Q 111.6 57.1, 110.8 57.1 Q 110.0 57.1, 109.5 57.6 Q 109.1 58.2, 109.1 59.2 Q 109.1 60.3, 109.5 60.8 Q 110.0 61.3, 110.8 61.3 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-6\" d=\"M 113.6 56.6 L 114.3 56.6 L 114.3 58.8 L 117.0 58.8 L 117.0 56.6 L 117.7 56.6 L 117.7 61.9 L 117.0 61.9 L 117.0 59.4 L 114.3 59.4 L 114.3 61.9 L 113.6 61.9 L 113.6 56.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 92.2 31.2 Q 92.2 30.0, 92.8 29.3 Q 93.5 28.5, 94.6 28.5 Q 95.8 28.5, 96.4 29.3 Q 97.0 30.0, 97.0 31.2 Q 97.0 32.5, 96.4 33.2 Q 95.8 34.0, 94.6 34.0 Q 93.5 34.0, 92.8 33.2 Q 92.2 32.5, 92.2 31.2 M 94.6 33.4 Q 95.4 33.4, 95.9 32.8 Q 96.3 32.3, 96.3 31.2 Q 96.3 30.2, 95.9 29.7 Q 95.4 29.1, 94.6 29.1 Q 93.8 29.1, 93.4 29.7 Q 92.9 30.2, 92.9 31.2 Q 92.9 32.3, 93.4 32.8 Q 93.8 33.4, 94.6 33.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 47.0 135.1 Q 48.9 135.1, 49.9 136.2 Q 50.9 137.3, 50.9 139.3 Q 50.9 141.3, 49.8 142.5 Q 48.8 143.6, 47.0 143.6 L 44.2 143.6 L 44.2 135.1 L 47.0 135.1 M 47.0 142.6 Q 48.3 142.6, 49.0 141.8 Q 49.7 141.0, 49.7 139.3 Q 49.7 137.7, 49.0 136.9 Q 48.3 136.1, 47.0 136.1 L 45.4 136.1 L 45.4 142.6 L 47.0 142.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 51.4 140.5 Q 51.4 139.0, 52.2 138.2 Q 52.9 137.3, 54.3 137.3 Q 55.7 137.3, 56.5 138.2 Q 57.3 139.0, 57.3 140.5 Q 57.3 142.0, 56.5 142.8 Q 55.7 143.7, 54.3 143.7 Q 52.9 143.7, 52.2 142.8 Q 51.4 142.0, 51.4 140.5 M 52.6 140.5 Q 52.6 141.6, 53.0 142.2 Q 53.5 142.8, 54.3 142.8 Q 55.2 142.8, 55.6 142.2 Q 56.1 141.6, 56.1 140.5 Q 56.1 139.4, 55.6 138.8 Q 55.2 138.2, 54.3 138.2 Q 53.5 138.2, 53.0 138.8 Q 52.6 139.4, 52.6 140.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 61.0 137.3 Q 62.0 137.3, 62.5 137.9 Q 63.1 138.4, 63.1 139.5 L 63.1 143.6 L 61.9 143.6 L 61.9 139.6 Q 61.9 138.9, 61.6 138.5 Q 61.4 138.2, 60.7 138.2 Q 60.2 138.2, 59.7 138.5 Q 59.2 138.7, 58.9 139.2 L 58.9 143.6 L 57.8 143.6 L 57.8 137.4 L 58.7 137.4 L 58.9 138.3 Q 59.7 137.3, 61.0 137.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 64.0 140.5 Q 64.0 139.0, 64.7 138.2 Q 65.5 137.3, 66.9 137.3 Q 68.3 137.3, 69.1 138.2 Q 69.8 139.0, 69.8 140.5 Q 69.8 142.0, 69.1 142.8 Q 68.3 143.7, 66.9 143.7 Q 65.5 143.7, 64.7 142.8 Q 64.0 142.0, 64.0 140.5 M 65.1 140.5 Q 65.1 141.6, 65.6 142.2 Q 66.1 142.8, 66.9 142.8 Q 67.8 142.8, 68.2 142.2 Q 68.7 141.6, 68.7 140.5 Q 68.7 139.4, 68.2 138.8 Q 67.8 138.2, 66.9 138.2 Q 66.1 138.2, 65.6 138.8 Q 65.1 139.4, 65.1 140.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 71.3 137.4 L 71.4 138.3 Q 72.1 137.3, 73.1 137.3 Q 73.5 137.3, 73.9 137.4 L 73.8 138.4 Q 73.2 138.3, 72.9 138.3 Q 72.4 138.3, 72.1 138.5 Q 71.8 138.7, 71.5 139.2 L 71.5 143.6 L 70.4 143.6 L 70.4 137.4 L 71.3 137.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 80.2 144.2 L 80.2 145.2 L 74.1 145.2 L 74.1 144.2 L 80.2 144.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 80.2 140.2 Q 80.2 138.4, 80.7 137.0 Q 81.2 135.6, 82.2 134.1 L 82.9 134.5 Q 82.1 135.9, 81.7 137.2 Q 81.3 138.5, 81.3 140.2 Q 81.3 141.8, 81.7 143.1 Q 82.1 144.3, 82.9 145.8 L 82.2 146.2 Q 81.2 144.7, 80.7 143.3 Q 80.2 141.9, 80.2 140.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 86.3 143.7 Q 84.7 143.7, 83.9 142.5 Q 83.2 141.4, 83.2 139.3 Q 83.2 137.3, 83.9 136.1 Q 84.7 135.0, 86.3 135.0 Q 87.8 135.0, 88.6 136.1 Q 89.4 137.3, 89.4 139.3 Q 89.4 141.4, 88.6 142.5 Q 87.8 143.7, 86.3 143.7 M 86.3 142.7 Q 87.2 142.7, 87.7 141.9 Q 88.2 141.0, 88.2 139.3 Q 88.2 137.7, 87.7 136.8 Q 87.2 136.0, 86.3 136.0 Q 85.4 136.0, 84.9 136.8 Q 84.4 137.7, 84.4 139.3 Q 84.4 141.0, 84.9 141.9 Q 85.4 142.7, 86.3 142.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 90.2 142.4 L 91.4 142.4 L 91.4 143.3 L 91.1 145.0 L 90.7 145.0 L 90.7 143.6 L 90.2 143.6 L 90.2 142.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 99.3 143.7 Q 97.7 143.7, 96.9 142.5 Q 96.1 141.4, 96.1 139.3 Q 96.1 137.3, 96.9 136.1 Q 97.7 135.0, 99.3 135.0 Q 100.8 135.0, 101.6 136.1 Q 102.4 137.3, 102.4 139.3 Q 102.4 141.4, 101.6 142.5 Q 100.8 143.7, 99.3 143.7 M 99.3 142.7 Q 100.2 142.7, 100.7 141.9 Q 101.2 141.0, 101.2 139.3 Q 101.2 137.7, 100.7 136.8 Q 100.2 136.0, 99.3 136.0 Q 98.3 136.0, 97.8 136.8 Q 97.3 137.7, 97.3 139.3 Q 97.3 141.0, 97.8 141.9 Q 98.3 142.7, 99.3 142.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 105.8 140.2 Q 105.8 141.9, 105.3 143.3 Q 104.8 144.7, 103.8 146.2 L 103.1 145.8 Q 103.9 144.3, 104.3 143.1 Q 104.7 141.8, 104.7 140.2 Q 104.7 138.5, 104.3 137.2 Q 103.9 135.9, 103.1 134.5 L 103.8 134.1 Q 104.8 135.6, 105.3 137.0 Q 105.8 138.4, 105.8 140.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 249.4,84.4 L 233.2,75.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 233.2,75.1 L 217.1,84.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 228.9,73.3 L 217.6,79.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 217.1,84.4 L 200.9,75.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 200.9,75.1 L 194.4,78.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 194.4,78.9 L 187.8,82.7\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-3 atom-5\" d=\"M 200.9,75.1 L 200.9,56.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-3 atom-5\" d=\"M 204.6,72.3 L 204.6,59.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 200.9,56.5 L 217.1,47.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 217.1,47.1 L 233.2,56.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 217.6,51.8 L 228.9,58.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 233.2,56.5 L 249.4,47.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 249.4,47.1 L 255.9,50.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 255.9,50.9 L 262.5,54.7\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 247.5,47.1 L 247.5,39.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 247.5,39.5 L 247.5,31.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 251.2,47.1 L 251.2,39.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 251.2,39.5 L 251.2,31.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-7 atom-1\" d=\"M 233.2,56.5 L 233.2,75.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-4\" d=\"M 177.6 81.8 L 178.3 81.8 L 178.3 84.1 L 181.0 84.1 L 181.0 81.8 L 181.7 81.8 L 181.7 87.1 L 181.0 87.1 L 181.0 84.7 L 178.3 84.7 L 178.3 87.1 L 177.6 87.1 L 177.6 81.8 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-4\" d=\"M 182.3 84.4 Q 182.3 83.2, 183.0 82.5 Q 183.6 81.8, 184.8 81.8 Q 185.9 81.8, 186.6 82.5 Q 187.2 83.2, 187.2 84.4 Q 187.2 85.7, 186.5 86.5 Q 185.9 87.2, 184.8 87.2 Q 183.6 87.2, 183.0 86.5 Q 182.3 85.7, 182.3 84.4 M 184.8 86.6 Q 185.6 86.6, 186.0 86.0 Q 186.4 85.5, 186.4 84.4 Q 186.4 83.4, 186.0 82.9 Q 185.6 82.4, 184.8 82.4 Q 184.0 82.4, 183.5 82.9 Q 183.1 83.4, 183.1 84.4 Q 183.1 85.5, 183.5 86.0 Q 184.0 86.6, 184.8 86.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 263.1 56.5 Q 263.1 55.2, 263.7 54.5 Q 264.3 53.8, 265.5 53.8 Q 266.7 53.8, 267.3 54.5 Q 267.9 55.2, 267.9 56.5 Q 267.9 57.8, 267.3 58.5 Q 266.7 59.2, 265.5 59.2 Q 264.3 59.2, 263.7 58.5 Q 263.1 57.8, 263.1 56.5 M 265.5 58.6 Q 266.3 58.6, 266.7 58.1 Q 267.2 57.5, 267.2 56.5 Q 267.2 55.4, 266.7 54.9 Q 266.3 54.4, 265.5 54.4 Q 264.7 54.4, 264.3 54.9 Q 263.8 55.4, 263.8 56.5 Q 263.8 57.5, 264.3 58.1 Q 264.7 58.6, 265.5 58.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 268.3 53.8 L 269.0 53.8 L 269.0 56.1 L 271.7 56.1 L 271.7 53.8 L 272.4 53.8 L 272.4 59.1 L 271.7 59.1 L 271.7 56.7 L 269.0 56.7 L 269.0 59.1 L 268.3 59.1 L 268.3 53.8 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-10\" d=\"M 246.9 28.5 Q 246.9 27.2, 247.6 26.5 Q 248.2 25.8, 249.4 25.8 Q 250.5 25.8, 251.2 26.5 Q 251.8 27.2, 251.8 28.5 Q 251.8 29.8, 251.1 30.5 Q 250.5 31.2, 249.4 31.2 Q 248.2 31.2, 247.6 30.5 Q 246.9 29.8, 246.9 28.5 M 249.4 30.6 Q 250.2 30.6, 250.6 30.1 Q 251.0 29.6, 251.0 28.5 Q 251.0 27.5, 250.6 26.9 Q 250.2 26.4, 249.4 26.4 Q 248.5 26.4, 248.1 26.9 Q 247.7 27.5, 247.7 28.5 Q 247.7 29.6, 248.1 30.1 Q 248.5 30.6, 249.4 30.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 197.7 135.1 Q 199.5 135.1, 200.5 136.2 Q 201.6 137.3, 201.6 139.3 Q 201.6 141.3, 200.5 142.5 Q 199.5 143.6, 197.7 143.6 L 194.9 143.6 L 194.9 135.1 L 197.7 135.1 M 197.7 142.6 Q 198.9 142.6, 199.6 141.8 Q 200.3 141.0, 200.3 139.3 Q 200.3 137.7, 199.6 136.9 Q 198.9 136.1, 197.7 136.1 L 196.1 136.1 L 196.1 142.6 L 197.7 142.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 202.1 140.5 Q 202.1 139.0, 202.8 138.2 Q 203.6 137.3, 205.0 137.3 Q 206.4 137.3, 207.2 138.2 Q 207.9 139.0, 207.9 140.5 Q 207.9 142.0, 207.2 142.8 Q 206.4 143.7, 205.0 143.7 Q 203.6 143.7, 202.8 142.8 Q 202.1 142.0, 202.1 140.5 M 203.2 140.5 Q 203.2 141.6, 203.7 142.2 Q 204.2 142.8, 205.0 142.8 Q 205.9 142.8, 206.3 142.2 Q 206.8 141.6, 206.8 140.5 Q 206.8 139.4, 206.3 138.8 Q 205.9 138.2, 205.0 138.2 Q 204.2 138.2, 203.7 138.8 Q 203.2 139.4, 203.2 140.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 211.7 137.3 Q 212.7 137.3, 213.2 137.9 Q 213.7 138.4, 213.7 139.5 L 213.7 143.6 L 212.6 143.6 L 212.6 139.6 Q 212.6 138.9, 212.3 138.5 Q 212.1 138.2, 211.4 138.2 Q 210.9 138.2, 210.4 138.5 Q 209.9 138.7, 209.6 139.2 L 209.6 143.6 L 208.5 143.6 L 208.5 137.4 L 209.4 137.4 L 209.6 138.3 Q 210.4 137.3, 211.7 137.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 214.7 140.5 Q 214.7 139.0, 215.4 138.2 Q 216.2 137.3, 217.6 137.3 Q 219.0 137.3, 219.8 138.2 Q 220.5 139.0, 220.5 140.5 Q 220.5 142.0, 219.8 142.8 Q 219.0 143.7, 217.6 143.7 Q 216.2 143.7, 215.4 142.8 Q 214.7 142.0, 214.7 140.5 M 215.8 140.5 Q 215.8 141.6, 216.3 142.2 Q 216.7 142.8, 217.6 142.8 Q 218.4 142.8, 218.9 142.2 Q 219.4 141.6, 219.4 140.5 Q 219.4 139.4, 218.9 138.8 Q 218.4 138.2, 217.6 138.2 Q 216.7 138.2, 216.3 138.8 Q 215.8 139.4, 215.8 140.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 222.0 137.4 L 222.1 138.3 Q 222.8 137.3, 223.8 137.3 Q 224.2 137.3, 224.6 137.4 L 224.4 138.4 Q 223.9 138.3, 223.6 138.3 Q 223.1 138.3, 222.8 138.5 Q 222.5 138.7, 222.2 139.2 L 222.2 143.6 L 221.1 143.6 L 221.1 137.4 L 222.0 137.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 230.9 144.2 L 230.9 145.2 L 224.8 145.2 L 224.8 144.2 L 230.9 144.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 230.9 140.2 Q 230.9 138.4, 231.4 137.0 Q 231.9 135.6, 232.9 134.1 L 233.6 134.5 Q 232.8 135.9, 232.4 137.2 Q 232.0 138.5, 232.0 140.2 Q 232.0 141.8, 232.4 143.1 Q 232.8 144.3, 233.6 145.8 L 232.9 146.2 Q 231.9 144.7, 231.4 143.3 Q 230.9 141.9, 230.9 140.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 237.0 143.7 Q 235.4 143.7, 234.6 142.5 Q 233.9 141.4, 233.9 139.3 Q 233.9 137.3, 234.6 136.1 Q 235.4 135.0, 237.0 135.0 Q 238.5 135.0, 239.3 136.1 Q 240.1 137.3, 240.1 139.3 Q 240.1 141.4, 239.3 142.5 Q 238.5 143.7, 237.0 143.7 M 237.0 142.7 Q 237.9 142.7, 238.4 141.9 Q 238.9 141.0, 238.9 139.3 Q 238.9 137.7, 238.4 136.8 Q 237.9 136.0, 237.0 136.0 Q 236.0 136.0, 235.5 136.8 Q 235.1 137.7, 235.1 139.3 Q 235.1 141.0, 235.5 141.9 Q 236.0 142.7, 237.0 142.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 240.8 142.4 L 242.0 142.4 L 242.0 143.3 L 241.8 145.0 L 241.4 145.0 L 241.4 143.6 L 240.8 143.6 L 240.8 142.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 247.3 142.6 L 249.2 142.6 L 249.2 136.3 L 247.1 136.9 L 246.8 136.2 L 249.4 135.0 L 250.3 135.2 L 250.3 142.6 L 252.0 142.6 L 252.0 143.6 L 247.3 143.6 L 247.3 142.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 255.1 140.2 Q 255.1 141.9, 254.6 143.3 Q 254.1 144.7, 253.1 146.2 L 252.5 145.8 Q 253.2 144.3, 253.6 143.1 Q 254.0 141.8, 254.0 140.2 Q 254.0 138.5, 253.6 137.2 Q 253.2 135.9, 252.5 134.5 L 253.1 134.1 Q 254.1 135.6, 254.6 137.0 Q 255.1 138.4, 255.1 140.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 375.6,74.0 L 371.8,67.6\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 371.8,67.6 L 368.1,61.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 368.1,61.1 L 352.0,70.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 352.0,70.4 L 342.7,54.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 342.7,54.3 L 358.8,45.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-1 atom-5\" d=\"M 368.1,61.1 L 384.3,51.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 384.3,51.8 L 390.8,55.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 390.8,55.6 L 397.4,59.4\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 382.4,51.8 L 382.4,44.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 382.4,44.1 L 382.4,36.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 386.1,51.8 L 386.1,44.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 386.1,44.1 L 386.1,36.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-4 atom-1\" d=\"M 358.8,45.0 L 368.1,61.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 376.3 74.6 L 378.0 77.4 Q 378.2 77.7, 378.5 78.2 Q 378.7 78.7, 378.7 78.7 L 378.7 74.6 L 379.4 74.6 L 379.4 79.9 L 378.7 79.9 L 376.9 76.8 Q 376.7 76.5, 376.4 76.1 Q 376.2 75.7, 376.1 75.5 L 376.1 79.9 L 375.4 79.9 L 375.4 74.6 L 376.3 74.6 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-0\" d=\"M 380.1 74.6 L 380.8 74.6 L 380.8 76.9 L 383.5 76.9 L 383.5 74.6 L 384.2 74.6 L 384.2 79.9 L 383.5 79.9 L 383.5 77.5 L 380.8 77.5 L 380.8 79.9 L 380.1 79.9 L 380.1 74.6 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-0\" d=\"M 384.8 79.7 Q 385.0 79.4, 385.3 79.2 Q 385.6 79.0, 386.0 79.0 Q 386.5 79.0, 386.8 79.3 Q 387.1 79.6, 387.1 80.1 Q 387.1 80.6, 386.7 81.1 Q 386.4 81.6, 385.6 82.1 L 387.2 82.1 L 387.2 82.5 L 384.8 82.5 L 384.8 82.2 Q 385.5 81.7, 385.9 81.4 Q 386.3 81.1, 386.4 80.7 Q 386.6 80.4, 386.6 80.1 Q 386.6 79.8, 386.5 79.6 Q 386.3 79.4, 386.0 79.4 Q 385.7 79.4, 385.5 79.5 Q 385.4 79.6, 385.2 79.9 L 384.8 79.7 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-6\" d=\"M 398.0 61.1 Q 398.0 59.9, 398.6 59.1 Q 399.2 58.4, 400.4 58.4 Q 401.6 58.4, 402.2 59.1 Q 402.8 59.9, 402.8 61.1 Q 402.8 62.4, 402.2 63.1 Q 401.6 63.9, 400.4 63.9 Q 399.3 63.9, 398.6 63.1 Q 398.0 62.4, 398.0 61.1 M 400.4 63.3 Q 401.2 63.3, 401.7 62.7 Q 402.1 62.2, 402.1 61.1 Q 402.1 60.1, 401.7 59.6 Q 401.2 59.0, 400.4 59.0 Q 399.6 59.0, 399.2 59.6 Q 398.7 60.1, 398.7 61.1 Q 398.7 62.2, 399.2 62.7 Q 399.6 63.3, 400.4 63.3 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-6\" d=\"M 403.2 58.5 L 403.9 58.5 L 403.9 60.7 L 406.6 60.7 L 406.6 58.5 L 407.3 58.5 L 407.3 63.8 L 406.6 63.8 L 406.6 61.3 L 403.9 61.3 L 403.9 63.8 L 403.2 63.8 L 403.2 58.5 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 381.8 33.2 Q 381.8 31.9, 382.5 31.2 Q 383.1 30.5, 384.3 30.5 Q 385.4 30.5, 386.1 31.2 Q 386.7 31.9, 386.7 33.2 Q 386.7 34.4, 386.1 35.2 Q 385.4 35.9, 384.3 35.9 Q 383.1 35.9, 382.5 35.2 Q 381.8 34.4, 381.8 33.2 M 384.3 35.3 Q 385.1 35.3, 385.5 34.8 Q 385.9 34.2, 385.9 33.2 Q 385.9 32.1, 385.5 31.6 Q 385.1 31.1, 384.3 31.1 Q 383.5 31.1, 383.0 31.6 Q 382.6 32.1, 382.6 33.2 Q 382.6 34.2, 383.0 34.8 Q 383.5 35.3, 384.3 35.3 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 347.6 135.1 Q 349.5 135.1, 350.5 136.2 Q 351.6 137.3, 351.6 139.3 Q 351.6 141.3, 350.5 142.5 Q 349.5 143.6, 347.6 143.6 L 344.9 143.6 L 344.9 135.1 L 347.6 135.1 M 347.6 142.6 Q 348.9 142.6, 349.6 141.8 Q 350.4 141.0, 350.4 139.3 Q 350.4 137.7, 349.6 136.9 Q 348.9 136.1, 347.6 136.1 L 346.1 136.1 L 346.1 142.6 L 347.6 142.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 352.1 140.5 Q 352.1 139.0, 352.8 138.2 Q 353.6 137.3, 355.0 137.3 Q 356.4 137.3, 357.2 138.2 Q 357.9 139.0, 357.9 140.5 Q 357.9 142.0, 357.2 142.8 Q 356.4 143.7, 355.0 143.7 Q 353.6 143.7, 352.8 142.8 Q 352.1 142.0, 352.1 140.5 M 353.2 140.5 Q 353.2 141.6, 353.7 142.2 Q 354.2 142.8, 355.0 142.8 Q 355.9 142.8, 356.3 142.2 Q 356.8 141.6, 356.8 140.5 Q 356.8 139.4, 356.3 138.8 Q 355.9 138.2, 355.0 138.2 Q 354.2 138.2, 353.7 138.8 Q 353.2 139.4, 353.2 140.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 361.7 137.3 Q 362.7 137.3, 363.2 137.9 Q 363.7 138.4, 363.7 139.5 L 363.7 143.6 L 362.6 143.6 L 362.6 139.6 Q 362.6 138.9, 362.3 138.5 Q 362.1 138.2, 361.4 138.2 Q 360.9 138.2, 360.4 138.5 Q 359.9 138.7, 359.6 139.2 L 359.6 143.6 L 358.5 143.6 L 358.5 137.4 L 359.4 137.4 L 359.6 138.3 Q 360.4 137.3, 361.7 137.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 364.7 140.5 Q 364.7 139.0, 365.4 138.2 Q 366.2 137.3, 367.6 137.3 Q 369.0 137.3, 369.8 138.2 Q 370.5 139.0, 370.5 140.5 Q 370.5 142.0, 369.8 142.8 Q 369.0 143.7, 367.6 143.7 Q 366.2 143.7, 365.4 142.8 Q 364.7 142.0, 364.7 140.5 M 365.8 140.5 Q 365.8 141.6, 366.3 142.2 Q 366.7 142.8, 367.6 142.8 Q 368.4 142.8, 368.9 142.2 Q 369.4 141.6, 369.4 140.5 Q 369.4 139.4, 368.9 138.8 Q 368.4 138.2, 367.6 138.2 Q 366.7 138.2, 366.3 138.8 Q 365.8 139.4, 365.8 140.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 372.0 137.4 L 372.1 138.3 Q 372.8 137.3, 373.8 137.3 Q 374.2 137.3, 374.6 137.4 L 374.4 138.4 Q 373.9 138.3, 373.6 138.3 Q 373.1 138.3, 372.8 138.5 Q 372.5 138.7, 372.2 139.2 L 372.2 143.6 L 371.1 143.6 L 371.1 137.4 L 372.0 137.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 380.9 144.2 L 380.9 145.2 L 374.8 145.2 L 374.8 144.2 L 380.9 144.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 380.9 140.2 Q 380.9 138.4, 381.4 137.0 Q 381.9 135.6, 382.9 134.1 L 383.6 134.5 Q 382.8 135.9, 382.4 137.2 Q 382.0 138.5, 382.0 140.2 Q 382.0 141.8, 382.4 143.1 Q 382.8 144.3, 383.6 145.8 L 382.9 146.2 Q 381.9 144.7, 381.4 143.3 Q 380.9 141.9, 380.9 140.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 384.3 142.6 L 386.2 142.6 L 386.2 136.3 L 384.1 136.9 L 383.9 136.2 L 386.5 135.0 L 387.3 135.2 L 387.3 142.6 L 389.0 142.6 L 389.0 143.6 L 384.3 143.6 L 384.3 142.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 389.5 142.4 L 390.7 142.4 L 390.7 143.3 L 390.5 145.0 L 390.0 145.0 L 390.0 143.6 L 389.5 143.6 L 389.5 142.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 398.6 143.7 Q 397.0 143.7, 396.2 142.5 Q 395.5 141.4, 395.5 139.3 Q 395.5 137.3, 396.2 136.1 Q 397.0 135.0, 398.6 135.0 Q 400.1 135.0, 400.9 136.1 Q 401.7 137.3, 401.7 139.3 Q 401.7 141.4, 400.9 142.5 Q 400.1 143.7, 398.6 143.7 M 398.6 142.7 Q 399.5 142.7, 400.0 141.9 Q 400.5 141.0, 400.5 139.3 Q 400.5 137.7, 400.0 136.8 Q 399.5 136.0, 398.6 136.0 Q 397.7 136.0, 397.2 136.8 Q 396.7 137.7, 396.7 139.3 Q 396.7 141.0, 397.2 141.9 Q 397.7 142.7, 398.6 142.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 405.1 140.2 Q 405.1 141.9, 404.6 143.3 Q 404.1 144.7, 403.1 146.2 L 402.5 145.8 Q 403.2 144.3, 403.6 143.1 Q 404.0 141.8, 404.0 140.2 Q 404.0 138.5, 403.6 137.2 Q 403.2 135.9, 402.5 134.5 L 403.1 134.1 Q 404.1 135.6, 404.6 137.0 Q 405.1 138.4, 405.1 140.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 493.2,78.9 L 500.0,75.0\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 500.0,75.0 L 506.7,71.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 506.7,71.1 L 511.6,53.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 511.6,53.1 L 529.6,57.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 529.6,57.9 L 524.8,75.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-3 atom-5\" d=\"M 529.6,57.9 L 545.7,48.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 545.7,48.6 L 552.3,52.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 552.3,52.4 L 558.8,56.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 543.9,48.6 L 543.9,41.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 543.9,41.0 L 543.9,33.3\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 547.6,48.6 L 547.6,41.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 547.6,41.0 L 547.6,33.3\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-4 atom-1\" d=\"M 524.8,75.9 L 506.7,71.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 481.2 77.8 L 481.9 77.8 L 481.9 80.0 L 484.6 80.0 L 484.6 77.8 L 485.3 77.8 L 485.3 83.1 L 484.6 83.1 L 484.6 80.6 L 481.9 80.6 L 481.9 83.1 L 481.2 83.1 L 481.2 77.8 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-0\" d=\"M 486.0 82.9 Q 486.1 82.6, 486.4 82.4 Q 486.7 82.2, 487.1 82.2 Q 487.7 82.2, 487.9 82.5 Q 488.2 82.8, 488.2 83.3 Q 488.2 83.8, 487.9 84.3 Q 487.5 84.7, 486.7 85.3 L 488.3 85.3 L 488.3 85.7 L 486.0 85.7 L 486.0 85.4 Q 486.6 84.9, 487.0 84.6 Q 487.4 84.2, 487.6 83.9 Q 487.8 83.6, 487.8 83.3 Q 487.8 83.0, 487.6 82.8 Q 487.4 82.6, 487.1 82.6 Q 486.8 82.6, 486.7 82.7 Q 486.5 82.8, 486.3 83.1 L 486.0 82.9 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-0\" d=\"M 489.4 77.8 L 491.2 80.6 Q 491.3 80.9, 491.6 81.4 Q 491.9 81.9, 491.9 81.9 L 491.9 77.8 L 492.6 77.8 L 492.6 83.1 L 491.9 83.1 L 490.0 80.0 Q 489.8 79.7, 489.6 79.2 Q 489.4 78.8, 489.3 78.7 L 489.3 83.1 L 488.6 83.1 L 488.6 77.8 L 489.4 77.8 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-6\" d=\"M 559.5 57.9 Q 559.5 56.7, 560.1 56.0 Q 560.7 55.3, 561.9 55.3 Q 563.1 55.3, 563.7 56.0 Q 564.3 56.7, 564.3 57.9 Q 564.3 59.2, 563.7 60.0 Q 563.0 60.7, 561.9 60.7 Q 560.7 60.7, 560.1 60.0 Q 559.5 59.2, 559.5 57.9 M 561.9 60.1 Q 562.7 60.1, 563.1 59.5 Q 563.6 59.0, 563.6 57.9 Q 563.6 56.9, 563.1 56.4 Q 562.7 55.9, 561.9 55.9 Q 561.1 55.9, 560.6 56.4 Q 560.2 56.9, 560.2 57.9 Q 560.2 59.0, 560.6 59.5 Q 561.1 60.1, 561.9 60.1 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-6\" d=\"M 564.7 55.3 L 565.4 55.3 L 565.4 57.6 L 568.1 57.6 L 568.1 55.3 L 568.8 55.3 L 568.8 60.6 L 568.1 60.6 L 568.1 58.2 L 565.4 58.2 L 565.4 60.6 L 564.7 60.6 L 564.7 55.3 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 543.3 30.0 Q 543.3 28.7, 543.9 28.0 Q 544.6 27.3, 545.7 27.3 Q 546.9 27.3, 547.5 28.0 Q 548.2 28.7, 548.2 30.0 Q 548.2 31.3, 547.5 32.0 Q 546.9 32.7, 545.7 32.7 Q 544.6 32.7, 543.9 32.0 Q 543.3 31.3, 543.3 30.0 M 545.7 32.1 Q 546.5 32.1, 547.0 31.6 Q 547.4 31.0, 547.4 30.0 Q 547.4 28.9, 547.0 28.4 Q 546.5 27.9, 545.7 27.9 Q 544.9 27.9, 544.5 28.4 Q 544.1 28.9, 544.1 30.0 Q 544.1 31.0, 544.5 31.6 Q 544.9 32.1, 545.7 32.1 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 498.3 135.1 Q 500.2 135.1, 501.2 136.2 Q 502.2 137.3, 502.2 139.3 Q 502.2 141.3, 501.2 142.5 Q 500.2 143.6, 498.3 143.6 L 495.6 143.6 L 495.6 135.1 L 498.3 135.1 M 498.3 142.6 Q 499.6 142.6, 500.3 141.8 Q 501.0 141.0, 501.0 139.3 Q 501.0 137.7, 500.3 136.9 Q 499.6 136.1, 498.3 136.1 L 496.7 136.1 L 496.7 142.6 L 498.3 142.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 502.8 140.5 Q 502.8 139.0, 503.5 138.2 Q 504.3 137.3, 505.7 137.3 Q 507.1 137.3, 507.9 138.2 Q 508.6 139.0, 508.6 140.5 Q 508.6 142.0, 507.9 142.8 Q 507.1 143.7, 505.7 143.7 Q 504.3 143.7, 503.5 142.8 Q 502.8 142.0, 502.8 140.5 M 503.9 140.5 Q 503.9 141.6, 504.4 142.2 Q 504.8 142.8, 505.7 142.8 Q 506.6 142.8, 507.0 142.2 Q 507.5 141.6, 507.5 140.5 Q 507.5 139.4, 507.0 138.8 Q 506.6 138.2, 505.7 138.2 Q 504.8 138.2, 504.4 138.8 Q 503.9 139.4, 503.9 140.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 512.4 137.3 Q 513.4 137.3, 513.9 137.9 Q 514.4 138.4, 514.4 139.5 L 514.4 143.6 L 513.3 143.6 L 513.3 139.6 Q 513.3 138.9, 513.0 138.5 Q 512.7 138.2, 512.1 138.2 Q 511.5 138.2, 511.1 138.5 Q 510.6 138.7, 510.3 139.2 L 510.3 143.6 L 509.2 143.6 L 509.2 137.4 L 510.1 137.4 L 510.2 138.3 Q 511.1 137.3, 512.4 137.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 515.4 140.5 Q 515.4 139.0, 516.1 138.2 Q 516.9 137.3, 518.3 137.3 Q 519.7 137.3, 520.4 138.2 Q 521.2 139.0, 521.2 140.5 Q 521.2 142.0, 520.4 142.8 Q 519.7 143.7, 518.3 143.7 Q 516.9 143.7, 516.1 142.8 Q 515.4 142.0, 515.4 140.5 M 516.5 140.5 Q 516.5 141.6, 517.0 142.2 Q 517.4 142.8, 518.3 142.8 Q 519.1 142.8, 519.6 142.2 Q 520.1 141.6, 520.1 140.5 Q 520.1 139.4, 519.6 138.8 Q 519.1 138.2, 518.3 138.2 Q 517.4 138.2, 517.0 138.8 Q 516.5 139.4, 516.5 140.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 522.7 137.4 L 522.8 138.3 Q 523.5 137.3, 524.5 137.3 Q 524.8 137.3, 525.3 137.4 L 525.1 138.4 Q 524.6 138.3, 524.3 138.3 Q 523.8 138.3, 523.5 138.5 Q 523.2 138.7, 522.9 139.2 L 522.9 143.6 L 521.8 143.6 L 521.8 137.4 L 522.7 137.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 531.6 144.2 L 531.6 145.2 L 525.5 145.2 L 525.5 144.2 L 531.6 144.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 531.6 140.2 Q 531.6 138.4, 532.1 137.0 Q 532.6 135.6, 533.6 134.1 L 534.2 134.5 Q 533.5 135.9, 533.1 137.2 Q 532.7 138.5, 532.7 140.2 Q 532.7 141.8, 533.1 143.1 Q 533.5 144.3, 534.2 145.8 L 533.6 146.2 Q 532.6 144.7, 532.1 143.3 Q 531.6 141.9, 531.6 140.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 535.0 142.6 L 536.9 142.6 L 536.9 136.3 L 534.8 136.9 L 534.5 136.2 L 537.1 135.0 L 538.0 135.2 L 538.0 142.6 L 539.7 142.6 L 539.7 143.6 L 535.0 143.6 L 535.0 142.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 540.2 142.4 L 541.4 142.4 L 541.4 143.3 L 541.1 145.0 L 540.7 145.0 L 540.7 143.6 L 540.2 143.6 L 540.2 142.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 546.6 142.6 L 548.5 142.6 L 548.5 136.3 L 546.4 136.9 L 546.1 136.2 L 548.7 135.0 L 549.6 135.2 L 549.6 142.6 L 551.3 142.6 L 551.3 143.6 L 546.6 143.6 L 546.6 142.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 554.4 140.2 Q 554.4 141.9, 553.9 143.3 Q 553.4 144.7, 552.4 146.2 L 551.8 145.8 Q 552.6 144.3, 552.9 143.1 Q 553.3 141.8, 553.3 140.2 Q 553.3 138.5, 552.9 137.2 Q 552.6 135.9, 551.8 134.5 L 552.4 134.1 Q 553.4 135.6, 553.9 137.0 Q 554.4 138.4, 554.4 140.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 649.2,34.8 L 653.1,53.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 653.1,53.0 L 640.6,66.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 640.6,66.9 L 650.0,83.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 645.3,67.4 L 651.8,78.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 650.0,83.0 L 657.8,81.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 657.8,81.4 L 665.6,79.7\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 668.5,75.9 L 669.3,68.3\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 669.3,68.3 L 670.1,60.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 670.1,60.6 L 686.3,51.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 686.3,51.3 L 692.8,55.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 692.8,55.1 L 699.4,58.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 684.4,51.3 L 684.4,43.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 684.4,43.6 L 684.4,36.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 688.2,51.3 L 688.2,43.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 688.2,43.6 L 688.2,36.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-5 atom-1\" d=\"M 670.1,60.6 L 653.1,53.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-5 atom-1\" d=\"M 666.1,62.9 L 654.1,57.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-4\" d=\"M 667.0 76.5 L 668.8 79.3 Q 668.9 79.6, 669.2 80.1 Q 669.5 80.6, 669.5 80.6 L 669.5 76.5 L 670.2 76.5 L 670.2 81.8 L 669.5 81.8 L 667.6 78.7 Q 667.4 78.4, 667.2 78.0 Q 666.9 77.6, 666.9 77.4 L 666.9 81.8 L 666.2 81.8 L 666.2 76.5 L 667.0 76.5 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-4\" d=\"M 670.8 76.5 L 671.5 76.5 L 671.5 78.8 L 674.2 78.8 L 674.2 76.5 L 674.9 76.5 L 674.9 81.8 L 674.2 81.8 L 674.2 79.4 L 671.5 79.4 L 671.5 81.8 L 670.8 81.8 L 670.8 76.5 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-7\" d=\"M 700.0 60.6 Q 700.0 59.4, 700.6 58.6 Q 701.3 57.9, 702.4 57.9 Q 703.6 57.9, 704.2 58.6 Q 704.9 59.4, 704.9 60.6 Q 704.9 61.9, 704.2 62.6 Q 703.6 63.4, 702.4 63.4 Q 701.3 63.4, 700.6 62.6 Q 700.0 61.9, 700.0 60.6 M 702.4 62.8 Q 703.2 62.8, 703.7 62.2 Q 704.1 61.7, 704.1 60.6 Q 704.1 59.6, 703.7 59.1 Q 703.2 58.5, 702.4 58.5 Q 701.6 58.5, 701.2 59.1 Q 700.8 59.6, 700.8 60.6 Q 700.8 61.7, 701.2 62.2 Q 701.6 62.8, 702.4 62.8 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 705.2 58.0 L 706.0 58.0 L 706.0 60.2 L 708.7 60.2 L 708.7 58.0 L 709.4 58.0 L 709.4 63.3 L 708.7 63.3 L 708.7 60.8 L 706.0 60.8 L 706.0 63.3 L 705.2 63.3 L 705.2 58.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-8\" d=\"M 683.9 32.7 Q 683.9 31.4, 684.5 30.7 Q 685.1 30.0, 686.3 30.0 Q 687.5 30.0, 688.1 30.7 Q 688.7 31.4, 688.7 32.7 Q 688.7 33.9, 688.1 34.7 Q 687.4 35.4, 686.3 35.4 Q 685.1 35.4, 684.5 34.7 Q 683.9 33.9, 683.9 32.7 M 686.3 34.8 Q 687.1 34.8, 687.5 34.3 Q 688.0 33.7, 688.0 32.7 Q 688.0 31.6, 687.5 31.1 Q 687.1 30.6, 686.3 30.6 Q 685.5 30.6, 685.0 31.1 Q 684.6 31.6, 684.6 32.7 Q 684.6 33.7, 685.0 34.3 Q 685.5 34.8, 686.3 34.8 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 647.2 135.1 Q 649.1 135.1, 650.1 136.2 Q 651.1 137.3, 651.1 139.3 Q 651.1 141.3, 650.1 142.5 Q 649.1 143.6, 647.2 143.6 L 644.5 143.6 L 644.5 135.1 L 647.2 135.1 M 647.2 142.6 Q 648.5 142.6, 649.2 141.8 Q 649.9 141.0, 649.9 139.3 Q 649.9 137.7, 649.2 136.9 Q 648.5 136.1, 647.2 136.1 L 645.6 136.1 L 645.6 142.6 L 647.2 142.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 651.7 140.5 Q 651.7 139.0, 652.4 138.2 Q 653.2 137.3, 654.6 137.3 Q 656.0 137.3, 656.8 138.2 Q 657.5 139.0, 657.5 140.5 Q 657.5 142.0, 656.8 142.8 Q 656.0 143.7, 654.6 143.7 Q 653.2 143.7, 652.4 142.8 Q 651.7 142.0, 651.7 140.5 M 652.8 140.5 Q 652.8 141.6, 653.3 142.2 Q 653.8 142.8, 654.6 142.8 Q 655.5 142.8, 655.9 142.2 Q 656.4 141.6, 656.4 140.5 Q 656.4 139.4, 655.9 138.8 Q 655.5 138.2, 654.6 138.2 Q 653.8 138.2, 653.3 138.8 Q 652.8 139.4, 652.8 140.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 661.3 137.3 Q 662.3 137.3, 662.8 137.9 Q 663.3 138.4, 663.3 139.5 L 663.3 143.6 L 662.2 143.6 L 662.2 139.6 Q 662.2 138.9, 661.9 138.5 Q 661.6 138.2, 661.0 138.2 Q 660.5 138.2, 660.0 138.5 Q 659.5 138.7, 659.2 139.2 L 659.2 143.6 L 658.1 143.6 L 658.1 137.4 L 659.0 137.4 L 659.1 138.3 Q 660.0 137.3, 661.3 137.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 664.3 140.5 Q 664.3 139.0, 665.0 138.2 Q 665.8 137.3, 667.2 137.3 Q 668.6 137.3, 669.3 138.2 Q 670.1 139.0, 670.1 140.5 Q 670.1 142.0, 669.3 142.8 Q 668.6 143.7, 667.2 143.7 Q 665.8 143.7, 665.0 142.8 Q 664.3 142.0, 664.3 140.5 M 665.4 140.5 Q 665.4 141.6, 665.9 142.2 Q 666.3 142.8, 667.2 142.8 Q 668.0 142.8, 668.5 142.2 Q 669.0 141.6, 669.0 140.5 Q 669.0 139.4, 668.5 138.8 Q 668.0 138.2, 667.2 138.2 Q 666.3 138.2, 665.9 138.8 Q 665.4 139.4, 665.4 140.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 671.6 137.4 L 671.7 138.3 Q 672.4 137.3, 673.4 137.3 Q 673.8 137.3, 674.2 137.4 L 674.0 138.4 Q 673.5 138.3, 673.2 138.3 Q 672.7 138.3, 672.4 138.5 Q 672.1 138.7, 671.8 139.2 L 671.8 143.6 L 670.7 143.6 L 670.7 137.4 L 671.6 137.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 680.5 144.2 L 680.5 145.2 L 674.4 145.2 L 674.4 144.2 L 680.5 144.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 680.5 140.2 Q 680.5 138.4, 681.0 137.0 Q 681.5 135.6, 682.5 134.1 L 683.1 134.5 Q 682.4 135.9, 682.0 137.2 Q 681.6 138.5, 681.6 140.2 Q 681.6 141.8, 682.0 143.1 Q 682.4 144.3, 683.1 145.8 L 682.5 146.2 Q 681.5 144.7, 681.0 143.3 Q 680.5 141.9, 680.5 140.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 683.5 136.7 Q 683.8 135.9, 684.5 135.5 Q 685.3 135.0, 686.3 135.0 Q 687.6 135.0, 688.3 135.7 Q 689.0 136.4, 689.0 137.6 Q 689.0 138.9, 688.1 140.1 Q 687.2 141.2, 685.2 142.6 L 689.2 142.6 L 689.2 143.6 L 683.4 143.6 L 683.4 142.8 Q 685.0 141.7, 686.0 140.8 Q 686.9 140.0, 687.4 139.2 Q 687.8 138.5, 687.8 137.7 Q 687.8 136.9, 687.4 136.4 Q 687.0 136.0, 686.3 136.0 Q 685.6 136.0, 685.2 136.2 Q 684.7 136.5, 684.4 137.1 L 683.5 136.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 689.9 142.4 L 691.1 142.4 L 691.1 143.3 L 690.9 145.0 L 690.4 145.0 L 690.4 143.6 L 689.9 143.6 L 689.9 142.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 699.0 143.7 Q 697.4 143.7, 696.6 142.5 Q 695.9 141.4, 695.9 139.3 Q 695.9 137.3, 696.6 136.1 Q 697.4 135.0, 699.0 135.0 Q 700.5 135.0, 701.3 136.1 Q 702.1 137.3, 702.1 139.3 Q 702.1 141.4, 701.3 142.5 Q 700.5 143.7, 699.0 143.7 M 699.0 142.7 Q 699.9 142.7, 700.4 141.9 Q 700.9 141.0, 700.9 139.3 Q 700.9 137.7, 700.4 136.8 Q 699.9 136.0, 699.0 136.0 Q 698.1 136.0, 697.6 136.8 Q 697.1 137.7, 697.1 139.3 Q 697.1 141.0, 697.6 141.9 Q 698.1 142.7, 699.0 142.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 705.5 140.2 Q 705.5 141.9, 705.0 143.3 Q 704.5 144.7, 703.5 146.2 L 702.9 145.8 Q 703.6 144.3, 704.0 143.1 Q 704.4 141.8, 704.4 140.2 Q 704.4 138.5, 704.0 137.2 Q 703.6 135.9, 702.9 134.5 L 703.5 134.1 Q 704.5 135.6, 705.0 137.0 Q 705.5 138.4, 705.5 140.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 860.9,69.2 L 854.3,65.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 854.3,65.5 L 847.7,61.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 845.9,61.7 L 845.9,54.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 845.9,54.0 L 845.9,46.4\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 849.6,61.7 L 849.6,54.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 849.6,54.0 L 849.6,46.4\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 847.7,61.7 L 831.6,71.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 831.6,71.0 L 815.5,61.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 815.5,61.7 L 813.5,43.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 813.5,43.1 L 795.3,39.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 810.0,46.2 L 797.2,43.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 795.3,39.3 L 791.5,45.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 791.5,45.7 L 787.8,52.1\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 788.6,58.3 L 793.5,63.8\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 793.5,63.8 L 798.4,69.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-4\" d=\"M 798.4,69.3 L 815.5,61.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-4\" d=\"M 799.5,64.7 L 811.4,59.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 861.5 71.0 Q 861.5 69.7, 862.1 69.0 Q 862.7 68.3, 863.9 68.3 Q 865.1 68.3, 865.7 69.0 Q 866.3 69.7, 866.3 71.0 Q 866.3 72.3, 865.7 73.0 Q 865.1 73.7, 863.9 73.7 Q 862.7 73.7, 862.1 73.0 Q 861.5 72.3, 861.5 71.0 M 863.9 73.2 Q 864.7 73.2, 865.1 72.6 Q 865.6 72.1, 865.6 71.0 Q 865.6 70.0, 865.1 69.5 Q 864.7 68.9, 863.9 68.9 Q 863.1 68.9, 862.7 69.4 Q 862.2 70.0, 862.2 71.0 Q 862.2 72.1, 862.7 72.6 Q 863.1 73.2, 863.9 73.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 866.7 68.4 L 867.4 68.4 L 867.4 70.6 L 870.1 70.6 L 870.1 68.4 L 870.8 68.4 L 870.8 73.7 L 870.1 73.7 L 870.1 71.2 L 867.4 71.2 L 867.4 73.7 L 866.7 73.7 L 866.7 68.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 845.3 43.0 Q 845.3 41.8, 846.0 41.1 Q 846.6 40.4, 847.7 40.4 Q 848.9 40.4, 849.5 41.1 Q 850.2 41.8, 850.2 43.0 Q 850.2 44.3, 849.5 45.1 Q 848.9 45.8, 847.7 45.8 Q 846.6 45.8, 846.0 45.1 Q 845.3 44.3, 845.3 43.0 M 847.7 45.2 Q 848.6 45.2, 849.0 44.6 Q 849.4 44.1, 849.4 43.0 Q 849.4 42.0, 849.0 41.5 Q 848.6 41.0, 847.7 41.0 Q 846.9 41.0, 846.5 41.5 Q 846.1 42.0, 846.1 43.0 Q 846.1 44.1, 846.5 44.6 Q 846.9 45.2, 847.7 45.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 779.2 52.8 L 779.9 52.8 L 779.9 55.0 L 782.6 55.0 L 782.6 52.8 L 783.3 52.8 L 783.3 58.0 L 782.6 58.0 L 782.6 55.6 L 779.9 55.6 L 779.9 58.0 L 779.2 58.0 L 779.2 52.8 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-7\" d=\"M 784.8 52.8 L 786.5 55.6 Q 786.7 55.8, 787.0 56.3 Q 787.2 56.8, 787.2 56.9 L 787.2 52.8 L 787.9 52.8 L 787.9 58.0 L 787.2 58.0 L 785.4 55.0 Q 785.1 54.6, 784.9 54.2 Q 784.7 53.8, 784.6 53.7 L 784.6 58.0 L 783.9 58.0 L 783.9 52.8 L 784.8 52.8 \" fill=\"#0000FF\"/>\n",
"<path class=\"legend\" d=\"M 797.9 135.1 Q 799.8 135.1, 800.8 136.2 Q 801.8 137.3, 801.8 139.3 Q 801.8 141.3, 800.8 142.5 Q 799.8 143.6, 797.9 143.6 L 795.2 143.6 L 795.2 135.1 L 797.9 135.1 M 797.9 142.6 Q 799.2 142.6, 799.9 141.8 Q 800.6 141.0, 800.6 139.3 Q 800.6 137.7, 799.9 136.9 Q 799.2 136.1, 797.9 136.1 L 796.3 136.1 L 796.3 142.6 L 797.9 142.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 802.4 140.5 Q 802.4 139.0, 803.1 138.2 Q 803.9 137.3, 805.3 137.3 Q 806.7 137.3, 807.5 138.2 Q 808.2 139.0, 808.2 140.5 Q 808.2 142.0, 807.5 142.8 Q 806.7 143.7, 805.3 143.7 Q 803.9 143.7, 803.1 142.8 Q 802.4 142.0, 802.4 140.5 M 803.5 140.5 Q 803.5 141.6, 804.0 142.2 Q 804.4 142.8, 805.3 142.8 Q 806.1 142.8, 806.6 142.2 Q 807.1 141.6, 807.1 140.5 Q 807.1 139.4, 806.6 138.8 Q 806.1 138.2, 805.3 138.2 Q 804.4 138.2, 804.0 138.8 Q 803.5 139.4, 803.5 140.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 812.0 137.3 Q 813.0 137.3, 813.5 137.9 Q 814.0 138.4, 814.0 139.5 L 814.0 143.6 L 812.9 143.6 L 812.9 139.6 Q 812.9 138.9, 812.6 138.5 Q 812.3 138.2, 811.7 138.2 Q 811.1 138.2, 810.7 138.5 Q 810.2 138.7, 809.9 139.2 L 809.9 143.6 L 808.8 143.6 L 808.8 137.4 L 809.7 137.4 L 809.8 138.3 Q 810.7 137.3, 812.0 137.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 814.9 140.5 Q 814.9 139.0, 815.7 138.2 Q 816.5 137.3, 817.9 137.3 Q 819.3 137.3, 820.0 138.2 Q 820.8 139.0, 820.8 140.5 Q 820.8 142.0, 820.0 142.8 Q 819.3 143.7, 817.9 143.7 Q 816.5 143.7, 815.7 142.8 Q 814.9 142.0, 814.9 140.5 M 816.1 140.5 Q 816.1 141.6, 816.5 142.2 Q 817.0 142.8, 817.9 142.8 Q 818.7 142.8, 819.2 142.2 Q 819.6 141.6, 819.6 140.5 Q 819.6 139.4, 819.2 138.8 Q 818.7 138.2, 817.9 138.2 Q 817.0 138.2, 816.5 138.8 Q 816.1 139.4, 816.1 140.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 822.3 137.4 L 822.4 138.3 Q 823.0 137.3, 824.1 137.3 Q 824.4 137.3, 824.9 137.4 L 824.7 138.4 Q 824.2 138.3, 823.9 138.3 Q 823.4 138.3, 823.1 138.5 Q 822.7 138.7, 822.5 139.2 L 822.5 143.6 L 821.4 143.6 L 821.4 137.4 L 822.3 137.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 831.2 144.2 L 831.2 145.2 L 825.1 145.2 L 825.1 144.2 L 831.2 144.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 831.2 140.2 Q 831.2 138.4, 831.7 137.0 Q 832.2 135.6, 833.2 134.1 L 833.8 134.5 Q 833.1 135.9, 832.7 137.2 Q 832.3 138.5, 832.3 140.2 Q 832.3 141.8, 832.7 143.1 Q 833.1 144.3, 833.8 145.8 L 833.2 146.2 Q 832.2 144.7, 831.7 143.3 Q 831.2 141.9, 831.2 140.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 834.2 136.7 Q 834.5 135.9, 835.2 135.5 Q 836.0 135.0, 837.0 135.0 Q 838.3 135.0, 839.0 135.7 Q 839.7 136.4, 839.7 137.6 Q 839.7 138.9, 838.8 140.1 Q 837.9 141.2, 835.9 142.6 L 839.9 142.6 L 839.9 143.6 L 834.1 143.6 L 834.1 142.8 Q 835.7 141.7, 836.6 140.8 Q 837.6 140.0, 838.1 139.2 Q 838.5 138.5, 838.5 137.7 Q 838.5 136.9, 838.1 136.4 Q 837.7 136.0, 837.0 136.0 Q 836.3 136.0, 835.8 136.2 Q 835.4 136.5, 835.1 137.1 L 834.2 136.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 840.6 142.4 L 841.8 142.4 L 841.8 143.3 L 841.5 145.0 L 841.1 145.0 L 841.1 143.6 L 840.6 143.6 L 840.6 142.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 847.0 142.6 L 848.9 142.6 L 848.9 136.3 L 846.8 136.9 L 846.6 136.2 L 849.2 135.0 L 850.0 135.2 L 850.0 142.6 L 851.7 142.6 L 851.7 143.6 L 847.0 143.6 L 847.0 142.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 854.8 140.2 Q 854.8 141.9, 854.3 143.3 Q 853.8 144.7, 852.9 146.2 L 852.2 145.8 Q 853.0 144.3, 853.3 143.1 Q 853.7 141.8, 853.7 140.2 Q 853.7 138.5, 853.3 137.2 Q 853.0 135.9, 852.2 134.5 L 852.9 134.1 Q 853.8 135.6, 854.3 137.0 Q 854.8 138.4, 854.8 140.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 964.2,90.6 L 961.6,83.5\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 961.6,83.5 L 959.0,76.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 959.0,76.3 L 970.9,62.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 970.9,62.0 L 964.6,44.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 964.6,44.5 L 952.6,30.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 952.6,30.2 L 946.2,47.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-3 atom-6\" d=\"M 964.6,44.5 L 980.7,35.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 980.7,35.2 L 987.3,39.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 987.3,39.0 L 993.8,42.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 978.9,35.2 L 978.9,27.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 978.9,27.6 L 978.9,19.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 982.6,35.2 L 982.6,27.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 982.6,27.6 L 982.6,19.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-5 atom-3\" d=\"M 946.2,47.8 L 964.6,44.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 964.2 91.2 L 965.9 94.0 Q 966.1 94.3, 966.3 94.8 Q 966.6 95.3, 966.6 95.3 L 966.6 91.2 L 967.3 91.2 L 967.3 96.5 L 966.6 96.5 L 964.8 93.4 Q 964.5 93.1, 964.3 92.7 Q 964.1 92.2, 964.0 92.1 L 964.0 96.5 L 963.3 96.5 L 963.3 91.2 L 964.2 91.2 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-0\" d=\"M 968.0 91.2 L 968.7 91.2 L 968.7 93.4 L 971.4 93.4 L 971.4 91.2 L 972.1 91.2 L 972.1 96.5 L 971.4 96.5 L 971.4 94.0 L 968.7 94.0 L 968.7 96.5 L 968.0 96.5 L 968.0 91.2 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-0\" d=\"M 972.7 96.3 Q 972.9 96.0, 973.2 95.8 Q 973.5 95.6, 973.9 95.6 Q 974.4 95.6, 974.7 95.9 Q 975.0 96.2, 975.0 96.7 Q 975.0 97.2, 974.6 97.7 Q 974.3 98.2, 973.5 98.7 L 975.1 98.7 L 975.1 99.1 L 972.7 99.1 L 972.7 98.8 Q 973.4 98.3, 973.8 98.0 Q 974.1 97.6, 974.3 97.3 Q 974.5 97.0, 974.5 96.7 Q 974.5 96.4, 974.4 96.2 Q 974.2 96.0, 973.9 96.0 Q 973.6 96.0, 973.4 96.1 Q 973.2 96.2, 973.1 96.5 L 972.7 96.3 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-7\" d=\"M 994.4 44.5 Q 994.4 43.3, 995.1 42.6 Q 995.7 41.8, 996.9 41.8 Q 998.0 41.8, 998.7 42.6 Q 999.3 43.3, 999.3 44.5 Q 999.3 45.8, 998.7 46.5 Q 998.0 47.3, 996.9 47.3 Q 995.7 47.3, 995.1 46.5 Q 994.4 45.8, 994.4 44.5 M 996.9 46.7 Q 997.7 46.7, 998.1 46.1 Q 998.5 45.6, 998.5 44.5 Q 998.5 43.5, 998.1 43.0 Q 997.7 42.4, 996.9 42.4 Q 996.1 42.4, 995.6 43.0 Q 995.2 43.5, 995.2 44.5 Q 995.2 45.6, 995.6 46.1 Q 996.1 46.7, 996.9 46.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 999.7 41.9 L 1000.4 41.9 L 1000.4 44.2 L 1003.1 44.2 L 1003.1 41.9 L 1003.8 41.9 L 1003.8 47.2 L 1003.1 47.2 L 1003.1 44.7 L 1000.4 44.7 L 1000.4 47.2 L 999.7 47.2 L 999.7 41.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-8\" d=\"M 978.3 16.6 Q 978.3 15.3, 978.9 14.6 Q 979.5 13.9, 980.7 13.9 Q 981.9 13.9, 982.5 14.6 Q 983.1 15.3, 983.1 16.6 Q 983.1 17.8, 982.5 18.6 Q 981.9 19.3, 980.7 19.3 Q 979.6 19.3, 978.9 18.6 Q 978.3 17.9, 978.3 16.6 M 980.7 18.7 Q 981.5 18.7, 982.0 18.2 Q 982.4 17.6, 982.4 16.6 Q 982.4 15.5, 982.0 15.0 Q 981.5 14.5, 980.7 14.5 Q 979.9 14.5, 979.5 15.0 Q 979.0 15.5, 979.0 16.6 Q 979.0 17.6, 979.5 18.2 Q 979.9 18.7, 980.7 18.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 947.3 135.1 Q 949.1 135.1, 950.1 136.2 Q 951.2 137.3, 951.2 139.3 Q 951.2 141.3, 950.1 142.5 Q 949.1 143.6, 947.3 143.6 L 944.5 143.6 L 944.5 135.1 L 947.3 135.1 M 947.3 142.6 Q 948.5 142.6, 949.2 141.8 Q 950.0 141.0, 950.0 139.3 Q 950.0 137.7, 949.2 136.9 Q 948.5 136.1, 947.3 136.1 L 945.7 136.1 L 945.7 142.6 L 947.3 142.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 951.7 140.5 Q 951.7 139.0, 952.4 138.2 Q 953.2 137.3, 954.6 137.3 Q 956.0 137.3, 956.8 138.2 Q 957.5 139.0, 957.5 140.5 Q 957.5 142.0, 956.8 142.8 Q 956.0 143.7, 954.6 143.7 Q 953.2 143.7, 952.4 142.8 Q 951.7 142.0, 951.7 140.5 M 952.8 140.5 Q 952.8 141.6, 953.3 142.2 Q 953.8 142.8, 954.6 142.8 Q 955.5 142.8, 955.9 142.2 Q 956.4 141.6, 956.4 140.5 Q 956.4 139.4, 955.9 138.8 Q 955.5 138.2, 954.6 138.2 Q 953.8 138.2, 953.3 138.8 Q 952.8 139.4, 952.8 140.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 961.3 137.3 Q 962.3 137.3, 962.8 137.9 Q 963.3 138.4, 963.3 139.5 L 963.3 143.6 L 962.2 143.6 L 962.2 139.6 Q 962.2 138.9, 961.9 138.5 Q 961.7 138.2, 961.0 138.2 Q 960.5 138.2, 960.0 138.5 Q 959.5 138.7, 959.2 139.2 L 959.2 143.6 L 958.1 143.6 L 958.1 137.4 L 959.0 137.4 L 959.2 138.3 Q 960.0 137.3, 961.3 137.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 964.3 140.5 Q 964.3 139.0, 965.0 138.2 Q 965.8 137.3, 967.2 137.3 Q 968.6 137.3, 969.4 138.2 Q 970.1 139.0, 970.1 140.5 Q 970.1 142.0, 969.4 142.8 Q 968.6 143.7, 967.2 143.7 Q 965.8 143.7, 965.0 142.8 Q 964.3 142.0, 964.3 140.5 M 965.4 140.5 Q 965.4 141.6, 965.9 142.2 Q 966.3 142.8, 967.2 142.8 Q 968.0 142.8, 968.5 142.2 Q 969.0 141.6, 969.0 140.5 Q 969.0 139.4, 968.5 138.8 Q 968.0 138.2, 967.2 138.2 Q 966.3 138.2, 965.9 138.8 Q 965.4 139.4, 965.4 140.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 971.6 137.4 L 971.7 138.3 Q 972.4 137.3, 973.4 137.3 Q 973.8 137.3, 974.2 137.4 L 974.0 138.4 Q 973.5 138.3, 973.2 138.3 Q 972.7 138.3, 972.4 138.5 Q 972.1 138.7, 971.8 139.2 L 971.8 143.6 L 970.7 143.6 L 970.7 137.4 L 971.6 137.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 980.5 144.2 L 980.5 145.2 L 974.4 145.2 L 974.4 144.2 L 980.5 144.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 980.5 140.2 Q 980.5 138.4, 981.0 137.0 Q 981.5 135.6, 982.5 134.1 L 983.2 134.5 Q 982.4 135.9, 982.0 137.2 Q 981.6 138.5, 981.6 140.2 Q 981.6 141.8, 982.0 143.1 Q 982.4 144.3, 983.2 145.8 L 982.5 146.2 Q 981.5 144.7, 981.0 143.3 Q 980.5 141.9, 980.5 140.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 987.5 139.1 Q 988.4 139.4, 988.8 139.9 Q 989.2 140.4, 989.2 141.3 Q 989.2 142.0, 988.8 142.5 Q 988.4 143.1, 987.8 143.4 Q 987.1 143.7, 986.3 143.7 Q 985.4 143.7, 984.7 143.4 Q 984.0 143.1, 983.5 142.4 L 984.1 141.7 Q 984.7 142.3, 985.1 142.5 Q 985.6 142.7, 986.3 142.7 Q 987.0 142.7, 987.5 142.3 Q 988.0 141.9, 988.0 141.2 Q 988.0 140.4, 987.5 140.0 Q 987.0 139.6, 986.0 139.6 L 985.3 139.6 L 985.3 138.7 L 985.9 138.7 Q 986.8 138.7, 987.3 138.3 Q 987.8 137.9, 987.8 137.2 Q 987.8 136.6, 987.4 136.3 Q 987.0 136.0, 986.3 136.0 Q 985.6 136.0, 985.1 136.2 Q 984.7 136.5, 984.4 137.1 L 983.5 136.7 Q 983.8 135.9, 984.5 135.5 Q 985.3 135.0, 986.3 135.0 Q 987.5 135.0, 988.3 135.6 Q 989.0 136.2, 989.0 137.2 Q 989.0 137.9, 988.6 138.3 Q 988.2 138.8, 987.5 139.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 989.9 142.4 L 991.1 142.4 L 991.1 143.3 L 990.8 145.0 L 990.4 145.0 L 990.4 143.6 L 989.9 143.6 L 989.9 142.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 999.0 143.7 Q 997.4 143.7, 996.6 142.5 Q 995.9 141.4, 995.9 139.3 Q 995.9 137.3, 996.6 136.1 Q 997.4 135.0, 999.0 135.0 Q 1000.5 135.0, 1001.3 136.1 Q 1002.1 137.3, 1002.1 139.3 Q 1002.1 141.4, 1001.3 142.5 Q 1000.5 143.7, 999.0 143.7 M 999.0 142.7 Q 999.9 142.7, 1000.4 141.9 Q 1000.9 141.0, 1000.9 139.3 Q 1000.9 137.7, 1000.4 136.8 Q 999.9 136.0, 999.0 136.0 Q 998.1 136.0, 997.5 136.8 Q 997.1 137.7, 997.1 139.3 Q 997.1 141.0, 997.5 141.9 Q 998.1 142.7, 999.0 142.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1005.5 140.2 Q 1005.5 141.9, 1005.0 143.3 Q 1004.5 144.7, 1003.5 146.2 L 1002.9 145.8 Q 1003.6 144.3, 1004.0 143.1 Q 1004.4 141.8, 1004.4 140.2 Q 1004.4 138.5, 1004.0 137.2 Q 1003.6 135.9, 1002.9 134.5 L 1003.5 134.1 Q 1004.5 135.6, 1005.0 137.0 Q 1005.5 138.4, 1005.5 140.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 1080.4,39.3 L 1087.2,43.2\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 1087.2,43.2 L 1093.9,47.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 1093.9,47.1 L 1110.1,37.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 1110.1,37.8 L 1126.2,47.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 1126.2,47.1 L 1126.2,65.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 1126.2,65.8 L 1142.4,75.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 1142.4,75.1 L 1158.5,65.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 1158.5,65.8 L 1165.1,69.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 1165.1,69.6 L 1171.6,73.3\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 1156.7,65.8 L 1156.7,58.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 1156.7,58.1 L 1156.7,50.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 1160.4,65.8 L 1160.4,58.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 1160.4,58.1 L 1160.4,50.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-4 atom-9\" d=\"M 1126.2,65.8 L 1110.1,75.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 1110.1,75.1 L 1093.9,65.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-1\" d=\"M 1093.9,65.8 L 1093.9,47.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 1068.4 35.2 L 1069.1 35.2 L 1069.1 37.4 L 1071.8 37.4 L 1071.8 35.2 L 1072.5 35.2 L 1072.5 40.4 L 1071.8 40.4 L 1071.8 38.0 L 1069.1 38.0 L 1069.1 40.4 L 1068.4 40.4 L 1068.4 35.2 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-0\" d=\"M 1073.2 40.3 Q 1073.3 39.9, 1073.6 39.7 Q 1073.9 39.6, 1074.3 39.6 Q 1074.8 39.6, 1075.1 39.8 Q 1075.4 40.1, 1075.4 40.6 Q 1075.4 41.1, 1075.1 41.6 Q 1074.7 42.1, 1073.9 42.7 L 1075.5 42.7 L 1075.5 43.1 L 1073.2 43.1 L 1073.2 42.7 Q 1073.8 42.3, 1074.2 41.9 Q 1074.6 41.6, 1074.8 41.3 Q 1074.9 41.0, 1074.9 40.7 Q 1074.9 40.3, 1074.8 40.1 Q 1074.6 39.9, 1074.3 39.9 Q 1074.0 39.9, 1073.9 40.1 Q 1073.7 40.2, 1073.5 40.4 L 1073.2 40.3 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-0\" d=\"M 1076.6 35.2 L 1078.4 38.0 Q 1078.5 38.2, 1078.8 38.7 Q 1079.1 39.2, 1079.1 39.3 L 1079.1 35.2 L 1079.8 35.2 L 1079.8 40.4 L 1079.1 40.4 L 1077.2 37.4 Q 1077.0 37.0, 1076.8 36.6 Q 1076.5 36.2, 1076.5 36.1 L 1076.5 40.4 L 1075.8 40.4 L 1075.8 35.2 L 1076.6 35.2 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-7\" d=\"M 1172.3 75.1 Q 1172.3 73.8, 1172.9 73.1 Q 1173.5 72.4, 1174.7 72.4 Q 1175.9 72.4, 1176.5 73.1 Q 1177.1 73.8, 1177.1 75.1 Q 1177.1 76.4, 1176.5 77.1 Q 1175.8 77.8, 1174.7 77.8 Q 1173.5 77.8, 1172.9 77.1 Q 1172.3 76.4, 1172.3 75.1 M 1174.7 77.2 Q 1175.5 77.2, 1175.9 76.7 Q 1176.4 76.2, 1176.4 75.1 Q 1176.4 74.1, 1175.9 73.5 Q 1175.5 73.0, 1174.7 73.0 Q 1173.9 73.0, 1173.4 73.5 Q 1173.0 74.1, 1173.0 75.1 Q 1173.0 76.2, 1173.4 76.7 Q 1173.9 77.2, 1174.7 77.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 1177.5 72.5 L 1178.2 72.5 L 1178.2 74.7 L 1180.9 74.7 L 1180.9 72.5 L 1181.6 72.5 L 1181.6 77.8 L 1180.9 77.8 L 1180.9 75.3 L 1178.2 75.3 L 1178.2 77.8 L 1177.5 77.8 L 1177.5 72.5 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-8\" d=\"M 1156.1 47.1 Q 1156.1 45.9, 1156.7 45.2 Q 1157.4 44.5, 1158.5 44.5 Q 1159.7 44.5, 1160.3 45.2 Q 1161.0 45.9, 1161.0 47.1 Q 1161.0 48.4, 1160.3 49.1 Q 1159.7 49.9, 1158.5 49.9 Q 1157.4 49.9, 1156.7 49.1 Q 1156.1 48.4, 1156.1 47.1 M 1158.5 49.3 Q 1159.3 49.3, 1159.8 48.7 Q 1160.2 48.2, 1160.2 47.1 Q 1160.2 46.1, 1159.8 45.6 Q 1159.3 45.0, 1158.5 45.0 Q 1157.7 45.0, 1157.3 45.6 Q 1156.9 46.1, 1156.9 47.1 Q 1156.9 48.2, 1157.3 48.7 Q 1157.7 49.3, 1158.5 49.3 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 1097.9 135.1 Q 1099.8 135.1, 1100.8 136.2 Q 1101.8 137.3, 1101.8 139.3 Q 1101.8 141.3, 1100.8 142.5 Q 1099.8 143.6, 1097.9 143.6 L 1095.2 143.6 L 1095.2 135.1 L 1097.9 135.1 M 1097.9 142.6 Q 1099.2 142.6, 1099.9 141.8 Q 1100.6 141.0, 1100.6 139.3 Q 1100.6 137.7, 1099.9 136.9 Q 1099.2 136.1, 1097.9 136.1 L 1096.3 136.1 L 1096.3 142.6 L 1097.9 142.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1102.4 140.5 Q 1102.4 139.0, 1103.1 138.2 Q 1103.9 137.3, 1105.3 137.3 Q 1106.7 137.3, 1107.5 138.2 Q 1108.2 139.0, 1108.2 140.5 Q 1108.2 142.0, 1107.5 142.8 Q 1106.7 143.7, 1105.3 143.7 Q 1103.9 143.7, 1103.1 142.8 Q 1102.4 142.0, 1102.4 140.5 M 1103.5 140.5 Q 1103.5 141.6, 1104.0 142.2 Q 1104.5 142.8, 1105.3 142.8 Q 1106.2 142.8, 1106.6 142.2 Q 1107.1 141.6, 1107.1 140.5 Q 1107.1 139.4, 1106.6 138.8 Q 1106.2 138.2, 1105.3 138.2 Q 1104.5 138.2, 1104.0 138.8 Q 1103.5 139.4, 1103.5 140.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1112.0 137.3 Q 1113.0 137.3, 1113.5 137.9 Q 1114.0 138.4, 1114.0 139.5 L 1114.0 143.6 L 1112.9 143.6 L 1112.9 139.6 Q 1112.9 138.9, 1112.6 138.5 Q 1112.3 138.2, 1111.7 138.2 Q 1111.1 138.2, 1110.7 138.5 Q 1110.2 138.7, 1109.9 139.2 L 1109.9 143.6 L 1108.8 143.6 L 1108.8 137.4 L 1109.7 137.4 L 1109.8 138.3 Q 1110.7 137.3, 1112.0 137.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1115.0 140.5 Q 1115.0 139.0, 1115.7 138.2 Q 1116.5 137.3, 1117.9 137.3 Q 1119.3 137.3, 1120.0 138.2 Q 1120.8 139.0, 1120.8 140.5 Q 1120.8 142.0, 1120.0 142.8 Q 1119.3 143.7, 1117.9 143.7 Q 1116.5 143.7, 1115.7 142.8 Q 1115.0 142.0, 1115.0 140.5 M 1116.1 140.5 Q 1116.1 141.6, 1116.6 142.2 Q 1117.0 142.8, 1117.9 142.8 Q 1118.7 142.8, 1119.2 142.2 Q 1119.7 141.6, 1119.7 140.5 Q 1119.7 139.4, 1119.2 138.8 Q 1118.7 138.2, 1117.9 138.2 Q 1117.0 138.2, 1116.6 138.8 Q 1116.1 139.4, 1116.1 140.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1122.3 137.4 L 1122.4 138.3 Q 1123.1 137.3, 1124.1 137.3 Q 1124.4 137.3, 1124.9 137.4 L 1124.7 138.4 Q 1124.2 138.3, 1123.9 138.3 Q 1123.4 138.3, 1123.1 138.5 Q 1122.8 138.7, 1122.5 139.2 L 1122.5 143.6 L 1121.4 143.6 L 1121.4 137.4 L 1122.3 137.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1131.2 144.2 L 1131.2 145.2 L 1125.1 145.2 L 1125.1 144.2 L 1131.2 144.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1131.2 140.2 Q 1131.2 138.4, 1131.7 137.0 Q 1132.2 135.6, 1133.2 134.1 L 1133.8 134.5 Q 1133.1 135.9, 1132.7 137.2 Q 1132.3 138.5, 1132.3 140.2 Q 1132.3 141.8, 1132.7 143.1 Q 1133.1 144.3, 1133.8 145.8 L 1133.2 146.2 Q 1132.2 144.7, 1131.7 143.3 Q 1131.2 141.9, 1131.2 140.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1138.2 139.1 Q 1139.1 139.4, 1139.4 139.9 Q 1139.9 140.4, 1139.9 141.3 Q 1139.9 142.0, 1139.5 142.5 Q 1139.1 143.1, 1138.5 143.4 Q 1137.8 143.7, 1137.0 143.7 Q 1136.0 143.7, 1135.4 143.4 Q 1134.7 143.1, 1134.1 142.4 L 1134.8 141.7 Q 1135.4 142.3, 1135.8 142.5 Q 1136.2 142.7, 1137.0 142.7 Q 1137.7 142.7, 1138.2 142.3 Q 1138.7 141.9, 1138.7 141.2 Q 1138.7 140.4, 1138.2 140.0 Q 1137.7 139.6, 1136.6 139.6 L 1136.0 139.6 L 1136.0 138.7 L 1136.6 138.7 Q 1137.5 138.7, 1138.0 138.3 Q 1138.5 137.9, 1138.5 137.2 Q 1138.5 136.6, 1138.1 136.3 Q 1137.7 136.0, 1137.0 136.0 Q 1136.3 136.0, 1135.8 136.2 Q 1135.4 136.5, 1135.0 137.1 L 1134.2 136.7 Q 1134.5 135.9, 1135.2 135.5 Q 1136.0 135.0, 1137.0 135.0 Q 1138.2 135.0, 1138.9 135.6 Q 1139.7 136.2, 1139.7 137.2 Q 1139.7 137.9, 1139.3 138.3 Q 1138.9 138.8, 1138.2 139.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1140.6 142.4 L 1141.8 142.4 L 1141.8 143.3 L 1141.5 145.0 L 1141.1 145.0 L 1141.1 143.6 L 1140.6 143.6 L 1140.6 142.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1147.0 142.6 L 1148.9 142.6 L 1148.9 136.3 L 1146.8 136.9 L 1146.5 136.2 L 1149.1 135.0 L 1150.0 135.2 L 1150.0 142.6 L 1151.7 142.6 L 1151.7 143.6 L 1147.0 143.6 L 1147.0 142.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1154.8 140.2 Q 1154.8 141.9, 1154.3 143.3 Q 1153.8 144.7, 1152.8 146.2 L 1152.2 145.8 Q 1153.0 144.3, 1153.3 143.1 Q 1153.7 141.8, 1153.7 140.2 Q 1153.7 138.5, 1153.3 137.2 Q 1153.0 135.9, 1152.2 134.5 L 1152.8 134.1 Q 1153.8 135.6, 1154.3 137.0 Q 1154.8 138.4, 1154.8 140.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 23.1,225.1 L 29.6,228.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 29.6,228.9 L 36.2,232.7\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 42.3,232.7 L 48.8,228.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 48.8,228.9 L 55.4,225.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 55.4,225.1 L 55.4,206.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 55.4,206.5 L 71.5,197.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 71.5,197.1 L 87.7,206.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 87.7,206.5 L 87.7,225.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 87.7,225.1 L 71.5,234.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-5 atom-8\" d=\"M 87.7,206.5 L 103.8,197.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 103.8,197.1 L 110.4,200.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 110.4,200.9 L 116.9,204.7\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 102.0,197.1 L 102.0,189.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 102.0,189.5 L 102.0,181.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 105.7,197.1 L 105.7,189.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 105.7,189.5 L 105.7,181.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-7 atom-2\" d=\"M 71.5,234.4 L 55.4,225.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-1\" d=\"M 36.8 234.4 Q 36.8 233.2, 37.4 232.5 Q 38.1 231.8, 39.2 231.8 Q 40.4 231.8, 41.0 232.5 Q 41.7 233.2, 41.7 234.4 Q 41.7 235.7, 41.0 236.5 Q 40.4 237.2, 39.2 237.2 Q 38.1 237.2, 37.4 236.5 Q 36.8 235.7, 36.8 234.4 M 39.2 236.6 Q 40.0 236.6, 40.5 236.0 Q 40.9 235.5, 40.9 234.4 Q 40.9 233.4, 40.5 232.9 Q 40.0 232.4, 39.2 232.4 Q 38.4 232.4, 38.0 232.9 Q 37.6 233.4, 37.6 234.4 Q 37.6 235.5, 38.0 236.0 Q 38.4 236.6, 39.2 236.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 117.6 206.5 Q 117.6 205.2, 118.2 204.5 Q 118.8 203.8, 120.0 203.8 Q 121.2 203.8, 121.8 204.5 Q 122.4 205.2, 122.4 206.5 Q 122.4 207.8, 121.8 208.5 Q 121.1 209.2, 120.0 209.2 Q 118.8 209.2, 118.2 208.5 Q 117.6 207.8, 117.6 206.5 M 120.0 208.6 Q 120.8 208.6, 121.2 208.1 Q 121.7 207.5, 121.7 206.5 Q 121.7 205.4, 121.2 204.9 Q 120.8 204.4, 120.0 204.4 Q 119.2 204.4, 118.7 204.9 Q 118.3 205.4, 118.3 206.5 Q 118.3 207.5, 118.7 208.1 Q 119.2 208.6, 120.0 208.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 122.8 203.8 L 123.5 203.8 L 123.5 206.1 L 126.2 206.1 L 126.2 203.8 L 126.9 203.8 L 126.9 209.1 L 126.2 209.1 L 126.2 206.7 L 123.5 206.7 L 123.5 209.1 L 122.8 209.1 L 122.8 203.8 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-10\" d=\"M 101.4 178.5 Q 101.4 177.2, 102.0 176.5 Q 102.7 175.8, 103.8 175.8 Q 105.0 175.8, 105.6 176.5 Q 106.3 177.2, 106.3 178.5 Q 106.3 179.8, 105.6 180.5 Q 105.0 181.2, 103.8 181.2 Q 102.7 181.2, 102.0 180.5 Q 101.4 179.8, 101.4 178.5 M 103.8 180.6 Q 104.6 180.6, 105.1 180.1 Q 105.5 179.6, 105.5 178.5 Q 105.5 177.5, 105.1 176.9 Q 104.6 176.4, 103.8 176.4 Q 103.0 176.4, 102.6 176.9 Q 102.2 177.5, 102.2 178.5 Q 102.2 179.6, 102.6 180.1 Q 103.0 180.6, 103.8 180.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 43.0 293.3 L 42.1 290.8 L 38.7 290.8 L 37.9 293.3 L 36.7 293.3 L 39.6 284.8 L 41.0 284.8 L 44.1 293.3 L 43.0 293.3 M 39.0 289.9 L 41.7 289.9 L 40.4 286.0 L 39.0 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 44.2 290.2 Q 44.2 288.7, 45.0 287.9 Q 45.7 287.0, 47.2 287.0 Q 48.6 287.0, 49.3 288.1 L 48.6 288.6 Q 48.3 288.3, 47.9 288.1 Q 47.6 287.9, 47.2 287.9 Q 46.3 287.9, 45.8 288.5 Q 45.4 289.1, 45.4 290.2 Q 45.4 291.4, 45.9 291.9 Q 46.3 292.5, 47.2 292.5 Q 47.8 292.5, 48.1 292.4 Q 48.4 292.3, 48.9 292.1 L 49.2 292.9 Q 48.3 293.4, 47.2 293.4 Q 45.7 293.4, 45.0 292.5 Q 44.2 291.7, 44.2 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 49.6 290.2 Q 49.6 288.7, 50.3 287.9 Q 51.1 287.0, 52.6 287.0 Q 54.0 287.0, 54.7 288.1 L 53.9 288.6 Q 53.6 288.3, 53.3 288.1 Q 53.0 287.9, 52.6 287.9 Q 51.7 287.9, 51.2 288.5 Q 50.8 289.1, 50.8 290.2 Q 50.8 291.4, 51.2 291.9 Q 51.7 292.5, 52.6 292.5 Q 53.1 292.5, 53.5 292.4 Q 53.8 292.3, 54.3 292.1 L 54.6 292.9 Q 53.7 293.4, 52.5 293.4 Q 51.1 293.4, 50.3 292.5 Q 49.6 291.7, 49.6 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 55.0 290.2 Q 55.0 288.7, 55.7 287.9 Q 56.5 287.0, 57.9 287.0 Q 59.2 287.0, 59.8 287.9 Q 60.4 288.7, 60.4 290.2 L 60.4 290.4 L 56.1 290.4 Q 56.2 291.4, 56.6 292.0 Q 57.1 292.5, 58.0 292.5 Q 58.4 292.5, 58.9 292.4 Q 59.3 292.3, 59.9 292.1 L 60.2 292.8 Q 59.6 293.1, 59.0 293.3 Q 58.5 293.4, 57.9 293.4 Q 56.5 293.4, 55.7 292.6 Q 55.0 291.7, 55.0 290.2 M 57.9 287.9 Q 57.2 287.9, 56.7 288.3 Q 56.3 288.7, 56.2 289.5 L 59.2 289.5 Q 59.2 288.7, 58.8 288.3 Q 58.5 287.9, 57.9 287.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 63.8 287.0 Q 65.0 287.0, 65.8 287.8 Q 66.5 288.6, 66.5 290.1 Q 66.5 291.7, 65.6 292.5 Q 64.8 293.4, 63.3 293.4 Q 62.6 293.4, 62.0 293.2 L 62.0 296.2 L 60.9 296.2 L 60.9 287.1 L 61.8 287.1 L 61.9 287.9 Q 62.3 287.5, 62.7 287.2 Q 63.2 287.0, 63.8 287.0 M 63.3 292.5 Q 64.2 292.5, 64.8 291.9 Q 65.3 291.3, 65.3 290.1 Q 65.3 289.1, 64.9 288.5 Q 64.5 287.9, 63.7 287.9 Q 63.1 287.9, 62.6 288.2 Q 62.2 288.6, 62.0 289.1 L 62.0 292.3 Q 62.6 292.5, 63.3 292.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 67.0 288.0 L 67.0 287.1 L 68.2 287.1 L 68.4 285.3 L 69.2 285.3 L 69.2 287.1 L 71.1 287.1 L 71.1 288.0 L 69.2 288.0 L 69.2 291.4 Q 69.2 292.5, 70.1 292.5 Q 70.5 292.5, 71.0 292.3 L 71.2 293.1 Q 70.5 293.4, 69.9 293.4 Q 69.1 293.4, 68.6 292.9 Q 68.1 292.4, 68.1 291.5 L 68.1 288.0 L 67.0 288.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 71.5 290.2 Q 71.5 288.7, 72.3 287.9 Q 73.0 287.0, 74.4 287.0 Q 75.8 287.0, 76.6 287.9 Q 77.4 288.7, 77.4 290.2 Q 77.4 291.7, 76.6 292.6 Q 75.8 293.4, 74.4 293.4 Q 73.0 293.4, 72.3 292.6 Q 71.5 291.7, 71.5 290.2 M 72.7 290.2 Q 72.7 291.3, 73.1 291.9 Q 73.6 292.5, 74.4 292.5 Q 75.3 292.5, 75.7 291.9 Q 76.2 291.3, 76.2 290.2 Q 76.2 289.1, 75.7 288.5 Q 75.3 287.9, 74.4 287.9 Q 73.6 287.9, 73.1 288.5 Q 72.7 289.1, 72.7 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 78.8 287.1 L 79.0 288.0 Q 79.6 287.0, 80.7 287.0 Q 81.0 287.0, 81.4 287.2 L 81.3 288.2 Q 80.8 288.0, 80.5 288.0 Q 80.0 288.0, 79.6 288.2 Q 79.3 288.4, 79.0 288.9 L 79.0 293.3 L 77.9 293.3 L 77.9 287.1 L 78.8 287.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 87.7 293.9 L 87.7 294.9 L 81.6 294.9 L 81.6 293.9 L 87.7 293.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 87.7 289.9 Q 87.7 288.2, 88.2 286.8 Q 88.7 285.4, 89.7 283.8 L 90.4 284.2 Q 89.6 285.7, 89.2 287.0 Q 88.8 288.2, 88.8 289.9 Q 88.8 291.5, 89.2 292.8 Q 89.6 294.1, 90.4 295.5 L 89.7 296.0 Q 88.7 294.4, 88.2 293.0 Q 87.7 291.6, 87.7 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 93.8 293.4 Q 92.2 293.4, 91.5 292.3 Q 90.7 291.1, 90.7 289.1 Q 90.7 287.0, 91.5 285.9 Q 92.2 284.7, 93.8 284.7 Q 95.4 284.7, 96.1 285.9 Q 96.9 287.0, 96.9 289.1 Q 96.9 291.1, 96.1 292.3 Q 95.4 293.4, 93.8 293.4 M 93.8 292.4 Q 94.7 292.4, 95.2 291.6 Q 95.7 290.7, 95.7 289.1 Q 95.7 287.4, 95.2 286.5 Q 94.7 285.7, 93.8 285.7 Q 92.9 285.7, 92.4 286.5 Q 91.9 287.4, 91.9 289.1 Q 91.9 290.7, 92.4 291.6 Q 92.9 292.4, 93.8 292.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 97.7 292.1 L 98.9 292.1 L 98.9 293.1 L 98.7 294.7 L 98.2 294.7 L 98.2 293.3 L 97.7 293.3 L 97.7 292.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 106.8 293.4 Q 105.2 293.4, 104.4 292.3 Q 103.7 291.1, 103.7 289.1 Q 103.7 287.0, 104.4 285.9 Q 105.2 284.7, 106.8 284.7 Q 108.3 284.7, 109.1 285.9 Q 109.9 287.0, 109.9 289.1 Q 109.9 291.1, 109.1 292.3 Q 108.3 293.4, 106.8 293.4 M 106.8 292.4 Q 107.7 292.4, 108.2 291.6 Q 108.7 290.7, 108.7 289.1 Q 108.7 287.4, 108.2 286.5 Q 107.7 285.7, 106.8 285.7 Q 105.9 285.7, 105.4 286.5 Q 104.9 287.4, 104.9 289.1 Q 104.9 290.7, 105.4 291.6 Q 105.9 292.4, 106.8 292.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 113.3 289.9 Q 113.3 291.6, 112.8 293.0 Q 112.3 294.4, 111.3 296.0 L 110.7 295.5 Q 111.4 294.1, 111.8 292.8 Q 112.2 291.5, 112.2 289.9 Q 112.2 288.2, 111.8 287.0 Q 111.4 285.7, 110.7 284.2 L 111.3 283.8 Q 112.3 285.4, 112.8 286.8 Q 113.3 288.2, 113.3 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 255.3,218.7 L 248.8,214.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 248.8,214.9 L 242.2,211.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 240.4,211.1 L 240.4,203.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 240.4,203.5 L 240.4,195.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 244.1,211.1 L 244.1,203.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 244.1,203.5 L 244.1,195.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 242.2,211.1 L 226.1,220.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 226.1,220.4 L 209.9,211.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 209.9,211.1 L 191.9,215.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 191.9,215.9 L 190.0,208.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 190.0,208.6 L 188.0,201.3\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 190.1,197.1 L 197.6,195.1\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 197.6,195.1 L 205.1,193.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-4\" d=\"M 205.1,193.1 L 209.9,211.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 256.0 220.5 Q 256.0 219.2, 256.6 218.5 Q 257.2 217.8, 258.4 217.8 Q 259.6 217.8, 260.2 218.5 Q 260.8 219.2, 260.8 220.5 Q 260.8 221.7, 260.2 222.5 Q 259.5 223.2, 258.4 223.2 Q 257.2 223.2, 256.6 222.5 Q 256.0 221.7, 256.0 220.5 M 258.4 222.6 Q 259.2 222.6, 259.6 222.1 Q 260.1 221.5, 260.1 220.5 Q 260.1 219.4, 259.6 218.9 Q 259.2 218.4, 258.4 218.4 Q 257.6 218.4, 257.1 218.9 Q 256.7 219.4, 256.7 220.5 Q 256.7 221.5, 257.1 222.1 Q 257.6 222.6, 258.4 222.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 261.2 217.8 L 261.9 217.8 L 261.9 220.1 L 264.6 220.1 L 264.6 217.8 L 265.3 217.8 L 265.3 223.1 L 264.6 223.1 L 264.6 220.7 L 261.9 220.7 L 261.9 223.1 L 261.2 223.1 L 261.2 217.8 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 239.8 192.5 Q 239.8 191.2, 240.4 190.5 Q 241.1 189.8, 242.2 189.8 Q 243.4 189.8, 244.0 190.5 Q 244.7 191.2, 244.7 192.5 Q 244.7 193.8, 244.0 194.5 Q 243.4 195.2, 242.2 195.2 Q 241.1 195.2, 240.4 194.5 Q 239.8 193.8, 239.8 192.5 M 242.2 194.6 Q 243.0 194.6, 243.5 194.1 Q 243.9 193.5, 243.9 192.5 Q 243.9 191.5, 243.5 190.9 Q 243.0 190.4, 242.2 190.4 Q 241.4 190.4, 241.0 190.9 Q 240.6 191.4, 240.6 192.5 Q 240.6 193.6, 241.0 194.1 Q 241.4 194.6, 242.2 194.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-6\" d=\"M 184.7 198.0 Q 184.7 196.7, 185.3 196.0 Q 185.9 195.3, 187.1 195.3 Q 188.3 195.3, 188.9 196.0 Q 189.5 196.7, 189.5 198.0 Q 189.5 199.2, 188.9 200.0 Q 188.3 200.7, 187.1 200.7 Q 185.9 200.7, 185.3 200.0 Q 184.7 199.2, 184.7 198.0 M 187.1 200.1 Q 187.9 200.1, 188.3 199.6 Q 188.8 199.0, 188.8 198.0 Q 188.8 196.9, 188.3 196.4 Q 187.9 195.9, 187.1 195.9 Q 186.3 195.9, 185.9 196.4 Q 185.4 196.9, 185.4 198.0 Q 185.4 199.0, 185.9 199.6 Q 186.3 200.1, 187.1 200.1 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 193.6 293.3 L 192.8 290.8 L 189.4 290.8 L 188.5 293.3 L 187.4 293.3 L 190.3 284.8 L 191.7 284.8 L 194.8 293.3 L 193.6 293.3 M 189.7 289.9 L 192.4 289.9 L 191.0 286.0 L 189.7 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 194.9 290.2 Q 194.9 288.7, 195.7 287.9 Q 196.4 287.0, 197.9 287.0 Q 199.3 287.0, 200.0 288.1 L 199.2 288.6 Q 199.0 288.3, 198.6 288.1 Q 198.3 287.9, 197.9 287.9 Q 197.0 287.9, 196.5 288.5 Q 196.1 289.1, 196.1 290.2 Q 196.1 291.4, 196.5 291.9 Q 197.0 292.5, 197.9 292.5 Q 198.4 292.5, 198.8 292.4 Q 199.1 292.3, 199.6 292.1 L 199.9 292.9 Q 199.0 293.4, 197.8 293.4 Q 196.4 293.4, 195.7 292.5 Q 194.9 291.7, 194.9 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 200.3 290.2 Q 200.3 288.7, 201.0 287.9 Q 201.8 287.0, 203.2 287.0 Q 204.6 287.0, 205.4 288.1 L 204.6 288.6 Q 204.3 288.3, 204.0 288.1 Q 203.7 287.9, 203.2 287.9 Q 202.4 287.9, 201.9 288.5 Q 201.4 289.1, 201.4 290.2 Q 201.4 291.4, 201.9 291.9 Q 202.4 292.5, 203.3 292.5 Q 203.8 292.5, 204.2 292.4 Q 204.5 292.3, 204.9 292.1 L 205.3 292.9 Q 204.4 293.4, 203.2 293.4 Q 201.8 293.4, 201.0 292.5 Q 200.3 291.7, 200.3 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 205.7 290.2 Q 205.7 288.7, 206.4 287.9 Q 207.2 287.0, 208.6 287.0 Q 209.9 287.0, 210.5 287.9 Q 211.1 288.7, 211.1 290.2 L 211.1 290.4 L 206.8 290.4 Q 206.8 291.4, 207.3 292.0 Q 207.8 292.5, 208.6 292.5 Q 209.1 292.5, 209.6 292.4 Q 210.0 292.3, 210.6 292.1 L 210.9 292.8 Q 210.3 293.1, 209.7 293.3 Q 209.2 293.4, 208.6 293.4 Q 207.2 293.4, 206.4 292.6 Q 205.7 291.7, 205.7 290.2 M 208.6 287.9 Q 207.8 287.9, 207.4 288.3 Q 207.0 288.7, 206.9 289.5 L 209.9 289.5 Q 209.8 288.7, 209.5 288.3 Q 209.2 287.9, 208.6 287.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 214.4 287.0 Q 215.7 287.0, 216.4 287.8 Q 217.2 288.6, 217.2 290.1 Q 217.2 291.7, 216.3 292.5 Q 215.5 293.4, 214.0 293.4 Q 213.3 293.4, 212.7 293.2 L 212.7 296.2 L 211.6 296.2 L 211.6 287.1 L 212.5 287.1 L 212.6 287.9 Q 213.0 287.5, 213.4 287.2 Q 213.9 287.0, 214.4 287.0 M 214.0 292.5 Q 214.9 292.5, 215.5 291.9 Q 216.0 291.3, 216.0 290.1 Q 216.0 289.1, 215.6 288.5 Q 215.2 287.9, 214.4 287.9 Q 213.8 287.9, 213.3 288.2 Q 212.9 288.6, 212.7 289.1 L 212.7 292.3 Q 213.3 292.5, 214.0 292.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 217.7 288.0 L 217.7 287.1 L 218.9 287.1 L 219.1 285.3 L 219.9 285.3 L 219.9 287.1 L 221.8 287.1 L 221.8 288.0 L 219.9 288.0 L 219.9 291.4 Q 219.9 292.5, 220.8 292.5 Q 221.2 292.5, 221.7 292.3 L 221.9 293.1 Q 221.2 293.4, 220.6 293.4 Q 219.8 293.4, 219.3 292.9 Q 218.8 292.4, 218.8 291.5 L 218.8 288.0 L 217.7 288.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 222.2 290.2 Q 222.2 288.7, 222.9 287.9 Q 223.7 287.0, 225.1 287.0 Q 226.5 287.0, 227.3 287.9 Q 228.0 288.7, 228.0 290.2 Q 228.0 291.7, 227.3 292.6 Q 226.5 293.4, 225.1 293.4 Q 223.7 293.4, 222.9 292.6 Q 222.2 291.7, 222.2 290.2 M 223.3 290.2 Q 223.3 291.3, 223.8 291.9 Q 224.3 292.5, 225.1 292.5 Q 226.0 292.5, 226.4 291.9 Q 226.9 291.3, 226.9 290.2 Q 226.9 289.1, 226.4 288.5 Q 226.0 287.9, 225.1 287.9 Q 224.3 287.9, 223.8 288.5 Q 223.3 289.1, 223.3 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 229.5 287.1 L 229.6 288.0 Q 230.3 287.0, 231.3 287.0 Q 231.7 287.0, 232.1 287.2 L 232.0 288.2 Q 231.4 288.0, 231.1 288.0 Q 230.6 288.0, 230.3 288.2 Q 230.0 288.4, 229.7 288.9 L 229.7 293.3 L 228.6 293.3 L 228.6 287.1 L 229.5 287.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 238.4 293.9 L 238.4 294.9 L 232.3 294.9 L 232.3 293.9 L 238.4 293.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 238.4 289.9 Q 238.4 288.2, 238.9 286.8 Q 239.4 285.4, 240.4 283.8 L 241.1 284.2 Q 240.3 285.7, 239.9 287.0 Q 239.5 288.2, 239.5 289.9 Q 239.5 291.5, 239.9 292.8 Q 240.3 294.1, 241.1 295.5 L 240.4 296.0 Q 239.4 294.4, 238.9 293.0 Q 238.4 291.6, 238.4 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 244.5 293.4 Q 242.9 293.4, 242.1 292.3 Q 241.4 291.1, 241.4 289.1 Q 241.4 287.0, 242.1 285.9 Q 242.9 284.7, 244.5 284.7 Q 246.1 284.7, 246.8 285.9 Q 247.6 287.0, 247.6 289.1 Q 247.6 291.1, 246.8 292.3 Q 246.0 293.4, 244.5 293.4 M 244.5 292.4 Q 245.4 292.4, 245.9 291.6 Q 246.4 290.7, 246.4 289.1 Q 246.4 287.4, 245.9 286.5 Q 245.4 285.7, 244.5 285.7 Q 243.6 285.7, 243.1 286.5 Q 242.6 287.4, 242.6 289.1 Q 242.6 290.7, 243.1 291.6 Q 243.6 292.4, 244.5 292.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 248.4 292.1 L 249.6 292.1 L 249.6 293.1 L 249.3 294.7 L 248.9 294.7 L 248.9 293.3 L 248.4 293.3 L 248.4 292.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 254.8 292.4 L 256.7 292.4 L 256.7 286.0 L 254.6 286.6 L 254.3 285.9 L 257.0 284.8 L 257.8 284.9 L 257.8 292.4 L 259.5 292.4 L 259.5 293.3 L 254.8 293.3 L 254.8 292.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 262.6 289.9 Q 262.6 291.6, 262.1 293.0 Q 261.6 294.4, 260.6 296.0 L 260.0 295.5 Q 260.8 294.1, 261.1 292.8 Q 261.5 291.5, 261.5 289.9 Q 261.5 288.2, 261.1 287.0 Q 260.8 285.7, 260.0 284.2 L 260.6 283.8 Q 261.6 285.4, 262.1 286.8 Q 262.6 288.2, 262.6 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 408.0,202.6 L 401.4,198.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 401.4,198.8 L 394.8,195.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 393.0,195.0 L 393.0,187.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 393.0,187.3 L 393.0,179.7\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 396.7,195.0 L 396.7,187.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 396.7,187.3 L 396.7,179.7\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-3 atom-1\" d=\"M 378.7,204.3 L 394.0,193.4 L 395.7,196.5 Z\" style=\"fill:#000000;fill-rule:evenodd;fill-opacity:1;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 378.7,204.3 L 360.0,204.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 360.0,204.3 L 341.4,204.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 341.4,204.3 L 332.1,220.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 332.1,220.4 L 341.4,236.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 341.4,236.6 L 349.2,236.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 349.2,236.6 L 357.0,236.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 361.9,233.3 L 365.6,226.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 365.6,226.9 L 369.4,220.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-3\" d=\"M 369.4,220.4 L 378.7,204.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-4\" d=\"M 369.4,220.4 L 360.0,204.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-4 atom-10\" d=\"M 360.0,204.3 L 358.3,195.7 L 361.8,195.7 Z\" style=\"fill:#000000;fill-rule:evenodd;fill-opacity:1;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;\"/>\n",
"<path class=\"bond-12 atom-9 atom-11\" d=\"M 369.4,220.4 L 377.8,223.3 L 376.0,226.3 Z\" style=\"fill:#000000;fill-rule:evenodd;fill-opacity:1;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;\"/>\n",
"<path class=\"atom-0\" d=\"M 408.6 204.3 Q 408.6 203.0, 409.2 202.3 Q 409.8 201.6, 411.0 201.6 Q 412.2 201.6, 412.8 202.3 Q 413.4 203.0, 413.4 204.3 Q 413.4 205.6, 412.8 206.3 Q 412.1 207.0, 411.0 207.0 Q 409.8 207.0, 409.2 206.3 Q 408.6 205.6, 408.6 204.3 M 411.0 206.5 Q 411.8 206.5, 412.2 205.9 Q 412.7 205.4, 412.7 204.3 Q 412.7 203.3, 412.2 202.8 Q 411.8 202.2, 411.0 202.2 Q 410.2 202.2, 409.7 202.7 Q 409.3 203.3, 409.3 204.3 Q 409.3 205.4, 409.7 205.9 Q 410.2 206.5, 411.0 206.5 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 413.8 201.7 L 414.5 201.7 L 414.5 203.9 L 417.2 203.9 L 417.2 201.7 L 417.9 201.7 L 417.9 207.0 L 417.2 207.0 L 417.2 204.5 L 414.5 204.5 L 414.5 207.0 L 413.8 207.0 L 413.8 201.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 392.4 176.3 Q 392.4 175.1, 393.0 174.4 Q 393.7 173.7, 394.8 173.7 Q 396.0 173.7, 396.6 174.4 Q 397.3 175.1, 397.3 176.3 Q 397.3 177.6, 396.6 178.4 Q 396.0 179.1, 394.8 179.1 Q 393.7 179.1, 393.0 178.4 Q 392.4 177.6, 392.4 176.3 M 394.8 178.5 Q 395.6 178.5, 396.1 177.9 Q 396.5 177.4, 396.5 176.3 Q 396.5 175.3, 396.1 174.8 Q 395.6 174.3, 394.8 174.3 Q 394.0 174.3, 393.6 174.8 Q 393.2 175.3, 393.2 176.3 Q 393.2 177.4, 393.6 177.9 Q 394.0 178.5, 394.8 178.5 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-8\" d=\"M 357.6 236.6 Q 357.6 235.3, 358.3 234.6 Q 358.9 233.9, 360.0 233.9 Q 361.2 233.9, 361.8 234.6 Q 362.5 235.3, 362.5 236.6 Q 362.5 237.9, 361.8 238.6 Q 361.2 239.3, 360.0 239.3 Q 358.9 239.3, 358.3 238.6 Q 357.6 237.9, 357.6 236.6 M 360.0 238.7 Q 360.9 238.7, 361.3 238.2 Q 361.7 237.7, 361.7 236.6 Q 361.7 235.6, 361.3 235.0 Q 360.9 234.5, 360.0 234.5 Q 359.2 234.5, 358.8 235.0 Q 358.4 235.6, 358.4 236.6 Q 358.4 237.7, 358.8 238.2 Q 359.2 238.7, 360.0 238.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-10\" d=\"M 358.0 189.2 L 358.7 189.2 L 358.7 191.5 L 361.4 191.5 L 361.4 189.2 L 362.1 189.2 L 362.1 194.5 L 361.4 194.5 L 361.4 192.1 L 358.7 192.1 L 358.7 194.5 L 358.0 194.5 L 358.0 189.2 \" fill=\"#000000\"/>\n",
"<path class=\"atom-11\" d=\"M 378.1 224.0 L 378.8 224.0 L 378.8 226.3 L 381.5 226.3 L 381.5 224.0 L 382.2 224.0 L 382.2 229.3 L 381.5 229.3 L 381.5 226.9 L 378.8 226.9 L 378.8 229.3 L 378.1 229.3 L 378.1 224.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 343.6 293.3 L 342.8 290.8 L 339.4 290.8 L 338.5 293.3 L 337.4 293.3 L 340.3 284.8 L 341.7 284.8 L 344.8 293.3 L 343.6 293.3 M 339.7 289.9 L 342.4 289.9 L 341.0 286.0 L 339.7 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 344.9 290.2 Q 344.9 288.7, 345.7 287.9 Q 346.4 287.0, 347.9 287.0 Q 349.3 287.0, 350.0 288.1 L 349.2 288.6 Q 349.0 288.3, 348.6 288.1 Q 348.3 287.9, 347.9 287.9 Q 347.0 287.9, 346.5 288.5 Q 346.1 289.1, 346.1 290.2 Q 346.1 291.4, 346.5 291.9 Q 347.0 292.5, 347.9 292.5 Q 348.4 292.5, 348.8 292.4 Q 349.1 292.3, 349.6 292.1 L 349.9 292.9 Q 349.0 293.4, 347.8 293.4 Q 346.4 293.4, 345.7 292.5 Q 344.9 291.7, 344.9 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 350.3 290.2 Q 350.3 288.7, 351.0 287.9 Q 351.8 287.0, 353.2 287.0 Q 354.6 287.0, 355.4 288.1 L 354.6 288.6 Q 354.3 288.3, 354.0 288.1 Q 353.7 287.9, 353.2 287.9 Q 352.4 287.9, 351.9 288.5 Q 351.4 289.1, 351.4 290.2 Q 351.4 291.4, 351.9 291.9 Q 352.4 292.5, 353.3 292.5 Q 353.8 292.5, 354.2 292.4 Q 354.5 292.3, 354.9 292.1 L 355.3 292.9 Q 354.4 293.4, 353.2 293.4 Q 351.8 293.4, 351.0 292.5 Q 350.3 291.7, 350.3 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 355.7 290.2 Q 355.7 288.7, 356.4 287.9 Q 357.2 287.0, 358.6 287.0 Q 359.9 287.0, 360.5 287.9 Q 361.1 288.7, 361.1 290.2 L 361.1 290.4 L 356.8 290.4 Q 356.8 291.4, 357.3 292.0 Q 357.8 292.5, 358.6 292.5 Q 359.1 292.5, 359.6 292.4 Q 360.0 292.3, 360.6 292.1 L 360.9 292.8 Q 360.3 293.1, 359.7 293.3 Q 359.2 293.4, 358.6 293.4 Q 357.2 293.4, 356.4 292.6 Q 355.7 291.7, 355.7 290.2 M 358.6 287.9 Q 357.8 287.9, 357.4 288.3 Q 357.0 288.7, 356.9 289.5 L 359.9 289.5 Q 359.8 288.7, 359.5 288.3 Q 359.2 287.9, 358.6 287.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 364.4 287.0 Q 365.7 287.0, 366.4 287.8 Q 367.2 288.6, 367.2 290.1 Q 367.2 291.7, 366.3 292.5 Q 365.5 293.4, 364.0 293.4 Q 363.3 293.4, 362.7 293.2 L 362.7 296.2 L 361.6 296.2 L 361.6 287.1 L 362.5 287.1 L 362.6 287.9 Q 363.0 287.5, 363.4 287.2 Q 363.9 287.0, 364.4 287.0 M 364.0 292.5 Q 364.9 292.5, 365.5 291.9 Q 366.0 291.3, 366.0 290.1 Q 366.0 289.1, 365.6 288.5 Q 365.2 287.9, 364.4 287.9 Q 363.8 287.9, 363.3 288.2 Q 362.9 288.6, 362.7 289.1 L 362.7 292.3 Q 363.3 292.5, 364.0 292.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 367.7 288.0 L 367.7 287.1 L 368.9 287.1 L 369.1 285.3 L 369.9 285.3 L 369.9 287.1 L 371.8 287.1 L 371.8 288.0 L 369.9 288.0 L 369.9 291.4 Q 369.9 292.5, 370.8 292.5 Q 371.2 292.5, 371.7 292.3 L 371.9 293.1 Q 371.2 293.4, 370.6 293.4 Q 369.8 293.4, 369.3 292.9 Q 368.8 292.4, 368.8 291.5 L 368.8 288.0 L 367.7 288.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 372.2 290.2 Q 372.2 288.7, 372.9 287.9 Q 373.7 287.0, 375.1 287.0 Q 376.5 287.0, 377.3 287.9 Q 378.0 288.7, 378.0 290.2 Q 378.0 291.7, 377.3 292.6 Q 376.5 293.4, 375.1 293.4 Q 373.7 293.4, 372.9 292.6 Q 372.2 291.7, 372.2 290.2 M 373.3 290.2 Q 373.3 291.3, 373.8 291.9 Q 374.3 292.5, 375.1 292.5 Q 376.0 292.5, 376.4 291.9 Q 376.9 291.3, 376.9 290.2 Q 376.9 289.1, 376.4 288.5 Q 376.0 287.9, 375.1 287.9 Q 374.3 287.9, 373.8 288.5 Q 373.3 289.1, 373.3 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 379.5 287.1 L 379.6 288.0 Q 380.3 287.0, 381.3 287.0 Q 381.7 287.0, 382.1 287.2 L 382.0 288.2 Q 381.4 288.0, 381.1 288.0 Q 380.6 288.0, 380.3 288.2 Q 380.0 288.4, 379.7 288.9 L 379.7 293.3 L 378.6 293.3 L 378.6 287.1 L 379.5 287.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 388.4 293.9 L 388.4 294.9 L 382.3 294.9 L 382.3 293.9 L 388.4 293.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 388.4 289.9 Q 388.4 288.2, 388.9 286.8 Q 389.4 285.4, 390.4 283.8 L 391.1 284.2 Q 390.3 285.7, 389.9 287.0 Q 389.5 288.2, 389.5 289.9 Q 389.5 291.5, 389.9 292.8 Q 390.3 294.1, 391.1 295.5 L 390.4 296.0 Q 389.4 294.4, 388.9 293.0 Q 388.4 291.6, 388.4 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 391.8 292.4 L 393.7 292.4 L 393.7 286.0 L 391.6 286.6 L 391.4 285.9 L 394.0 284.8 L 394.8 284.9 L 394.8 292.4 L 396.5 292.4 L 396.5 293.3 L 391.8 293.3 L 391.8 292.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 397.0 292.1 L 398.2 292.1 L 398.2 293.1 L 398.0 294.7 L 397.5 294.7 L 397.5 293.3 L 397.0 293.3 L 397.0 292.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 406.1 293.4 Q 404.5 293.4, 403.7 292.3 Q 403.0 291.1, 403.0 289.1 Q 403.0 287.0, 403.7 285.9 Q 404.5 284.7, 406.1 284.7 Q 407.7 284.7, 408.4 285.9 Q 409.2 287.0, 409.2 289.1 Q 409.2 291.1, 408.4 292.3 Q 407.6 293.4, 406.1 293.4 M 406.1 292.4 Q 407.0 292.4, 407.5 291.6 Q 408.0 290.7, 408.0 289.1 Q 408.0 287.4, 407.5 286.5 Q 407.0 285.7, 406.1 285.7 Q 405.2 285.7, 404.7 286.5 Q 404.2 287.4, 404.2 289.1 Q 404.2 290.7, 404.7 291.6 Q 405.2 292.4, 406.1 292.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 412.6 289.9 Q 412.6 291.6, 412.1 293.0 Q 411.6 294.4, 410.6 296.0 L 410.0 295.5 Q 410.8 294.1, 411.1 292.8 Q 411.5 291.5, 411.5 289.9 Q 411.5 288.2, 411.1 287.0 Q 410.8 285.7, 410.0 284.2 L 410.6 283.8 Q 411.6 285.4, 412.1 286.8 Q 412.6 288.2, 412.6 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-1 atom-0\" d=\"M 514.5,228.0 L 515.6,227.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-1 atom-0\" d=\"M 517.1,233.7 L 519.3,232.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-1 atom-0\" d=\"M 519.7,239.4 L 522.9,237.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 512.0,222.3 L 494.0,217.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 494.0,217.5 L 498.8,199.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 498.8,199.4 L 516.8,204.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 516.8,204.3 L 532.0,193.3 L 533.9,196.6 Z\" style=\"fill:#000000;fill-rule:evenodd;fill-opacity:1;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 533.0,195.0 L 539.5,198.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 539.5,198.7 L 546.1,202.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 531.1,195.0 L 531.1,187.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 531.1,187.3 L 531.1,179.7\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 534.8,195.0 L 534.8,187.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 534.8,187.3 L 534.8,179.7\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-4 atom-1\" d=\"M 516.8,204.3 L 512.0,222.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-6\" d=\"M 546.7 204.3 Q 546.7 203.0, 547.3 202.3 Q 547.9 201.6, 549.1 201.6 Q 550.3 201.6, 550.9 202.3 Q 551.5 203.0, 551.5 204.3 Q 551.5 205.6, 550.9 206.3 Q 550.3 207.0, 549.1 207.0 Q 547.9 207.0, 547.3 206.3 Q 546.7 205.6, 546.7 204.3 M 549.1 206.4 Q 549.9 206.4, 550.3 205.9 Q 550.8 205.3, 550.8 204.3 Q 550.8 203.3, 550.3 202.7 Q 549.9 202.2, 549.1 202.2 Q 548.3 202.2, 547.9 202.7 Q 547.4 203.2, 547.4 204.3 Q 547.4 205.4, 547.9 205.9 Q 548.3 206.4, 549.1 206.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-6\" d=\"M 551.9 201.7 L 552.6 201.7 L 552.6 203.9 L 555.3 203.9 L 555.3 201.7 L 556.0 201.7 L 556.0 206.9 L 555.3 206.9 L 555.3 204.5 L 552.6 204.5 L 552.6 206.9 L 551.9 206.9 L 551.9 201.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 530.5 176.3 Q 530.5 175.1, 531.2 174.3 Q 531.8 173.6, 533.0 173.6 Q 534.1 173.6, 534.8 174.3 Q 535.4 175.1, 535.4 176.3 Q 535.4 177.6, 534.7 178.3 Q 534.1 179.1, 533.0 179.1 Q 531.8 179.1, 531.2 178.3 Q 530.5 177.6, 530.5 176.3 M 533.0 178.5 Q 533.8 178.5, 534.2 177.9 Q 534.6 177.4, 534.6 176.3 Q 534.6 175.3, 534.2 174.8 Q 533.8 174.2, 533.0 174.2 Q 532.1 174.2, 531.7 174.8 Q 531.3 175.3, 531.3 176.3 Q 531.3 177.4, 531.7 177.9 Q 532.1 178.5, 533.0 178.5 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 494.3 293.3 L 493.4 290.8 L 490.1 290.8 L 489.2 293.3 L 488.1 293.3 L 491.0 284.8 L 492.4 284.8 L 495.4 293.3 L 494.3 293.3 M 490.4 289.9 L 493.1 289.9 L 491.7 286.0 L 490.4 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 495.6 290.2 Q 495.6 288.7, 496.3 287.9 Q 497.1 287.0, 498.5 287.0 Q 499.9 287.0, 500.7 288.1 L 499.9 288.6 Q 499.6 288.3, 499.3 288.1 Q 499.0 287.9, 498.5 287.9 Q 497.7 287.9, 497.2 288.5 Q 496.7 289.1, 496.7 290.2 Q 496.7 291.4, 497.2 291.9 Q 497.7 292.5, 498.6 292.5 Q 499.1 292.5, 499.5 292.4 Q 499.8 292.3, 500.2 292.1 L 500.6 292.9 Q 499.7 293.4, 498.5 293.4 Q 497.1 293.4, 496.3 292.5 Q 495.6 291.7, 495.6 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 501.0 290.2 Q 501.0 288.7, 501.7 287.9 Q 502.5 287.0, 503.9 287.0 Q 505.3 287.0, 506.1 288.1 L 505.3 288.6 Q 505.0 288.3, 504.7 288.1 Q 504.4 287.9, 503.9 287.9 Q 503.1 287.9, 502.6 288.5 Q 502.1 289.1, 502.1 290.2 Q 502.1 291.4, 502.6 291.9 Q 503.1 292.5, 504.0 292.5 Q 504.5 292.5, 504.8 292.4 Q 505.2 292.3, 505.6 292.1 L 505.9 292.9 Q 505.0 293.4, 503.9 293.4 Q 502.5 293.4, 501.7 292.5 Q 501.0 291.7, 501.0 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 506.3 290.2 Q 506.3 288.7, 507.1 287.9 Q 507.9 287.0, 509.2 287.0 Q 510.6 287.0, 511.2 287.9 Q 511.8 288.7, 511.8 290.2 L 511.8 290.4 L 507.5 290.4 Q 507.5 291.4, 508.0 292.0 Q 508.5 292.5, 509.3 292.5 Q 509.8 292.5, 510.3 292.4 Q 510.7 292.3, 511.2 292.1 L 511.6 292.8 Q 511.0 293.1, 510.4 293.3 Q 509.8 293.4, 509.3 293.4 Q 507.9 293.4, 507.1 292.6 Q 506.3 291.7, 506.3 290.2 M 509.2 287.9 Q 508.5 287.9, 508.1 288.3 Q 507.7 288.7, 507.5 289.5 L 510.6 289.5 Q 510.5 288.7, 510.2 288.3 Q 509.9 287.9, 509.2 287.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 515.1 287.0 Q 516.4 287.0, 517.1 287.8 Q 517.8 288.6, 517.8 290.1 Q 517.8 291.7, 517.0 292.5 Q 516.1 293.4, 514.7 293.4 Q 514.0 293.4, 513.4 293.2 L 513.4 296.2 L 512.3 296.2 L 512.3 287.1 L 513.2 287.1 L 513.3 287.9 Q 513.6 287.5, 514.1 287.2 Q 514.6 287.0, 515.1 287.0 M 514.7 292.5 Q 515.6 292.5, 516.1 291.9 Q 516.7 291.3, 516.7 290.1 Q 516.7 289.1, 516.3 288.5 Q 515.8 287.9, 515.1 287.9 Q 514.4 287.9, 514.0 288.2 Q 513.6 288.6, 513.4 289.1 L 513.4 292.3 Q 514.0 292.5, 514.7 292.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 518.4 288.0 L 518.4 287.1 L 519.6 287.1 L 519.7 285.3 L 520.6 285.3 L 520.6 287.1 L 522.5 287.1 L 522.5 288.0 L 520.6 288.0 L 520.6 291.4 Q 520.6 292.5, 521.5 292.5 Q 521.8 292.5, 522.4 292.3 L 522.6 293.1 Q 521.9 293.4, 521.3 293.4 Q 520.5 293.4, 520.0 292.9 Q 519.5 292.4, 519.5 291.5 L 519.5 288.0 L 518.4 288.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 522.9 290.2 Q 522.9 288.7, 523.6 287.9 Q 524.4 287.0, 525.8 287.0 Q 527.2 287.0, 528.0 287.9 Q 528.7 288.7, 528.7 290.2 Q 528.7 291.7, 528.0 292.6 Q 527.2 293.4, 525.8 293.4 Q 524.4 293.4, 523.6 292.6 Q 522.9 291.7, 522.9 290.2 M 524.0 290.2 Q 524.0 291.3, 524.5 291.9 Q 524.9 292.5, 525.8 292.5 Q 526.6 292.5, 527.1 291.9 Q 527.6 291.3, 527.6 290.2 Q 527.6 289.1, 527.1 288.5 Q 526.6 287.9, 525.8 287.9 Q 524.9 287.9, 524.5 288.5 Q 524.0 289.1, 524.0 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 530.2 287.1 L 530.3 288.0 Q 531.0 287.0, 532.0 287.0 Q 532.4 287.0, 532.8 287.2 L 532.6 288.2 Q 532.1 288.0, 531.8 288.0 Q 531.3 288.0, 531.0 288.2 Q 530.7 288.4, 530.4 288.9 L 530.4 293.3 L 529.3 293.3 L 529.3 287.1 L 530.2 287.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 539.1 293.9 L 539.1 294.9 L 533.0 294.9 L 533.0 293.9 L 539.1 293.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 539.1 289.9 Q 539.1 288.2, 539.6 286.8 Q 540.1 285.4, 541.1 283.8 L 541.8 284.2 Q 541.0 285.7, 540.6 287.0 Q 540.2 288.2, 540.2 289.9 Q 540.2 291.5, 540.6 292.8 Q 541.0 294.1, 541.8 295.5 L 541.1 296.0 Q 540.1 294.4, 539.6 293.0 Q 539.1 291.6, 539.1 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 542.5 292.4 L 544.4 292.4 L 544.4 286.0 L 542.3 286.6 L 542.1 285.9 L 544.7 284.8 L 545.5 284.9 L 545.5 292.4 L 547.2 292.4 L 547.2 293.3 L 542.5 293.3 L 542.5 292.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 547.7 292.1 L 548.9 292.1 L 548.9 293.1 L 548.7 294.7 L 548.2 294.7 L 548.2 293.3 L 547.7 293.3 L 547.7 292.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 554.1 292.4 L 556.0 292.4 L 556.0 286.0 L 553.9 286.6 L 553.7 285.9 L 556.3 284.8 L 557.1 284.9 L 557.1 292.4 L 558.8 292.4 L 558.8 293.3 L 554.1 293.3 L 554.1 292.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 561.9 289.9 Q 561.9 291.6, 561.4 293.0 Q 560.9 294.4, 560.0 296.0 L 559.3 295.5 Q 560.1 294.1, 560.5 292.8 Q 560.9 291.5, 560.9 289.9 Q 560.9 288.2, 560.5 287.0 Q 560.1 285.7, 559.3 284.2 L 560.0 283.8 Q 560.9 285.4, 561.4 286.8 Q 561.9 288.2, 561.9 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 708.9,190.8 L 702.3,187.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 702.3,187.0 L 695.8,183.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 693.9,183.2 L 693.9,175.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 693.9,175.6 L 693.9,167.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 697.6,183.2 L 697.6,175.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 697.6,175.6 L 697.6,167.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 695.8,183.2 L 679.6,192.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 679.6,192.5 L 663.5,183.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 675.3,194.4 L 664.0,187.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 663.5,183.2 L 647.3,192.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 647.3,192.5 L 647.3,211.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 651.0,195.3 L 651.0,208.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 647.3,211.2 L 631.2,220.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 631.2,220.5 L 631.2,239.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 634.9,223.3 L 634.9,236.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 631.2,239.1 L 637.9,243.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 637.9,243.1 L 644.7,247.0\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 649.9,247.0 L 656.7,243.1\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 656.7,243.1 L 663.5,239.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 650.1,242.6 L 654.8,239.8\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 654.8,239.8 L 659.6,237.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 663.5,239.1 L 663.5,220.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-11 atom-12\" d=\"M 663.5,220.5 L 679.6,211.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-11 atom-12\" d=\"M 664.0,215.9 L 675.3,209.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12 atom-12 atom-3\" d=\"M 679.6,211.2 L 679.6,192.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-13 atom-11 atom-6\" d=\"M 663.5,220.5 L 647.3,211.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 709.5 192.5 Q 709.5 191.3, 710.1 190.6 Q 710.7 189.9, 711.9 189.9 Q 713.1 189.9, 713.7 190.6 Q 714.3 191.3, 714.3 192.5 Q 714.3 193.8, 713.7 194.6 Q 713.1 195.3, 711.9 195.3 Q 710.7 195.3, 710.1 194.6 Q 709.5 193.8, 709.5 192.5 M 711.9 194.7 Q 712.7 194.7, 713.1 194.1 Q 713.6 193.6, 713.6 192.5 Q 713.6 191.5, 713.1 191.0 Q 712.7 190.5, 711.9 190.5 Q 711.1 190.5, 710.7 191.0 Q 710.2 191.5, 710.2 192.5 Q 710.2 193.6, 710.7 194.1 Q 711.1 194.7, 711.9 194.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 714.7 189.9 L 715.4 189.9 L 715.4 192.2 L 718.1 192.2 L 718.1 189.9 L 718.8 189.9 L 718.8 195.2 L 718.1 195.2 L 718.1 192.8 L 715.4 192.8 L 715.4 195.2 L 714.7 195.2 L 714.7 189.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 693.3 164.6 Q 693.3 163.3, 694.0 162.6 Q 694.6 161.9, 695.8 161.9 Q 696.9 161.9, 697.6 162.6 Q 698.2 163.3, 698.2 164.6 Q 698.2 165.9, 697.5 166.6 Q 696.9 167.3, 695.8 167.3 Q 694.6 167.3, 694.0 166.6 Q 693.3 165.9, 693.3 164.6 M 695.8 166.7 Q 696.6 166.7, 697.0 166.2 Q 697.4 165.6, 697.4 164.6 Q 697.4 163.5, 697.0 163.0 Q 696.6 162.5, 695.8 162.5 Q 695.0 162.5, 694.5 163.0 Q 694.1 163.5, 694.1 164.6 Q 694.1 165.6, 694.5 166.2 Q 695.0 166.7, 695.8 166.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 646.1 245.8 L 647.9 248.6 Q 648.0 248.9, 648.3 249.4 Q 648.6 249.9, 648.6 249.9 L 648.6 245.8 L 649.3 245.8 L 649.3 251.1 L 648.6 251.1 L 646.7 248.1 Q 646.5 247.7, 646.3 247.3 Q 646.1 246.9, 646.0 246.7 L 646.0 251.1 L 645.3 251.1 L 645.3 245.8 L 646.1 245.8 \" fill=\"#0000FF\"/>\n",
"<path class=\"legend\" d=\"M 643.2 293.3 L 642.4 290.8 L 639.0 290.8 L 638.1 293.3 L 637.0 293.3 L 639.9 284.8 L 641.3 284.8 L 644.4 293.3 L 643.2 293.3 M 639.3 289.9 L 642.0 289.9 L 640.6 286.0 L 639.3 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 644.5 290.2 Q 644.5 288.7, 645.2 287.9 Q 646.0 287.0, 647.5 287.0 Q 648.9 287.0, 649.6 288.1 L 648.8 288.6 Q 648.5 288.3, 648.2 288.1 Q 647.9 287.9, 647.5 287.9 Q 646.6 287.9, 646.1 288.5 Q 645.7 289.1, 645.7 290.2 Q 645.7 291.4, 646.1 291.9 Q 646.6 292.5, 647.5 292.5 Q 648.0 292.5, 648.4 292.4 Q 648.7 292.3, 649.2 292.1 L 649.5 292.9 Q 648.6 293.4, 647.4 293.4 Q 646.0 293.4, 645.2 292.5 Q 644.5 291.7, 644.5 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 649.9 290.2 Q 649.9 288.7, 650.6 287.9 Q 651.4 287.0, 652.8 287.0 Q 654.2 287.0, 655.0 288.1 L 654.2 288.6 Q 653.9 288.3, 653.6 288.1 Q 653.3 287.9, 652.8 287.9 Q 652.0 287.9, 651.5 288.5 Q 651.0 289.1, 651.0 290.2 Q 651.0 291.4, 651.5 291.9 Q 652.0 292.5, 652.9 292.5 Q 653.4 292.5, 653.8 292.4 Q 654.1 292.3, 654.5 292.1 L 654.8 292.9 Q 654.0 293.4, 652.8 293.4 Q 651.4 293.4, 650.6 292.5 Q 649.9 291.7, 649.9 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 655.3 290.2 Q 655.3 288.7, 656.0 287.9 Q 656.8 287.0, 658.1 287.0 Q 659.5 287.0, 660.1 287.9 Q 660.7 288.7, 660.7 290.2 L 660.7 290.4 L 656.4 290.4 Q 656.4 291.4, 656.9 292.0 Q 657.4 292.5, 658.2 292.5 Q 658.7 292.5, 659.2 292.4 Q 659.6 292.3, 660.1 292.1 L 660.5 292.8 Q 659.9 293.1, 659.3 293.3 Q 658.8 293.4, 658.2 293.4 Q 656.8 293.4, 656.0 292.6 Q 655.3 291.7, 655.3 290.2 M 658.1 287.9 Q 657.4 287.9, 657.0 288.3 Q 656.6 288.7, 656.5 289.5 L 659.5 289.5 Q 659.4 288.7, 659.1 288.3 Q 658.8 287.9, 658.1 287.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 664.0 287.0 Q 665.3 287.0, 666.0 287.8 Q 666.7 288.6, 666.7 290.1 Q 666.7 291.7, 665.9 292.5 Q 665.1 293.4, 663.6 293.4 Q 662.9 293.4, 662.3 293.2 L 662.3 296.2 L 661.2 296.2 L 661.2 287.1 L 662.1 287.1 L 662.2 287.9 Q 662.5 287.5, 663.0 287.2 Q 663.5 287.0, 664.0 287.0 M 663.6 292.5 Q 664.5 292.5, 665.1 291.9 Q 665.6 291.3, 665.6 290.1 Q 665.6 289.1, 665.2 288.5 Q 664.7 287.9, 664.0 287.9 Q 663.4 287.9, 662.9 288.2 Q 662.5 288.6, 662.3 289.1 L 662.3 292.3 Q 662.9 292.5, 663.6 292.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 667.3 288.0 L 667.3 287.1 L 668.5 287.1 L 668.7 285.3 L 669.5 285.3 L 669.5 287.1 L 671.4 287.1 L 671.4 288.0 L 669.5 288.0 L 669.5 291.4 Q 669.5 292.5, 670.4 292.5 Q 670.8 292.5, 671.3 292.3 L 671.5 293.1 Q 670.8 293.4, 670.2 293.4 Q 669.4 293.4, 668.9 292.9 Q 668.4 292.4, 668.4 291.5 L 668.4 288.0 L 667.3 288.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 671.8 290.2 Q 671.8 288.7, 672.5 287.9 Q 673.3 287.0, 674.7 287.0 Q 676.1 287.0, 676.9 287.9 Q 677.6 288.7, 677.6 290.2 Q 677.6 291.7, 676.9 292.6 Q 676.1 293.4, 674.7 293.4 Q 673.3 293.4, 672.5 292.6 Q 671.8 291.7, 671.8 290.2 M 672.9 290.2 Q 672.9 291.3, 673.4 291.9 Q 673.9 292.5, 674.7 292.5 Q 675.6 292.5, 676.0 291.9 Q 676.5 291.3, 676.5 290.2 Q 676.5 289.1, 676.0 288.5 Q 675.6 287.9, 674.7 287.9 Q 673.9 287.9, 673.4 288.5 Q 672.9 289.1, 672.9 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 679.1 287.1 L 679.2 288.0 Q 679.9 287.0, 680.9 287.0 Q 681.3 287.0, 681.7 287.2 L 681.5 288.2 Q 681.0 288.0, 680.7 288.0 Q 680.2 288.0, 679.9 288.2 Q 679.6 288.4, 679.3 288.9 L 679.3 293.3 L 678.2 293.3 L 678.2 287.1 L 679.1 287.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 688.0 293.9 L 688.0 294.9 L 681.9 294.9 L 681.9 293.9 L 688.0 293.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 688.0 289.9 Q 688.0 288.2, 688.5 286.8 Q 689.0 285.4, 690.0 283.8 L 690.7 284.2 Q 689.9 285.7, 689.5 287.0 Q 689.1 288.2, 689.1 289.9 Q 689.1 291.5, 689.5 292.8 Q 689.9 294.1, 690.7 295.5 L 690.0 296.0 Q 689.0 294.4, 688.5 293.0 Q 688.0 291.6, 688.0 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 691.0 286.4 Q 691.3 285.6, 692.0 285.2 Q 692.8 284.7, 693.8 284.7 Q 695.1 284.7, 695.8 285.4 Q 696.5 286.1, 696.5 287.3 Q 696.5 288.6, 695.6 289.8 Q 694.7 291.0, 692.8 292.4 L 696.7 292.4 L 696.7 293.3 L 691.0 293.3 L 691.0 292.5 Q 692.5 291.4, 693.5 290.5 Q 694.4 289.7, 694.9 288.9 Q 695.3 288.2, 695.3 287.4 Q 695.3 286.6, 694.9 286.1 Q 694.5 285.7, 693.8 285.7 Q 693.1 285.7, 692.7 286.0 Q 692.2 286.2, 691.9 286.8 L 691.0 286.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 697.4 292.1 L 698.6 292.1 L 698.6 293.1 L 698.4 294.7 L 697.9 294.7 L 697.9 293.3 L 697.4 293.3 L 697.4 292.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 706.5 293.4 Q 704.9 293.4, 704.2 292.3 Q 703.4 291.1, 703.4 289.1 Q 703.4 287.0, 704.2 285.9 Q 704.9 284.7, 706.5 284.7 Q 708.1 284.7, 708.8 285.9 Q 709.6 287.0, 709.6 289.1 Q 709.6 291.1, 708.8 292.3 Q 708.1 293.4, 706.5 293.4 M 706.5 292.4 Q 707.4 292.4, 707.9 291.6 Q 708.4 290.7, 708.4 289.1 Q 708.4 287.4, 707.9 286.5 Q 707.4 285.7, 706.5 285.7 Q 705.6 285.7, 705.1 286.5 Q 704.6 287.4, 704.6 289.1 Q 704.6 290.7, 705.1 291.6 Q 705.6 292.4, 706.5 292.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 713.0 289.9 Q 713.0 291.6, 712.5 293.0 Q 712.0 294.4, 711.1 296.0 L 710.4 295.5 Q 711.2 294.1, 711.5 292.8 Q 711.9 291.5, 711.9 289.9 Q 711.9 288.2, 711.5 287.0 Q 711.2 285.7, 710.4 284.2 L 711.1 283.8 Q 712.0 285.4, 712.5 286.8 Q 713.0 288.2, 713.0 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 849.4,208.9 L 842.8,205.1\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 842.8,205.1 L 836.3,201.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 834.4,201.3 L 834.4,193.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 834.4,193.6 L 834.4,186.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 838.2,201.3 L 838.2,193.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 838.2,193.6 L 838.2,186.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-3 atom-1\" d=\"M 825.8,208.0 L 825.2,207.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-3 atom-1\" d=\"M 831.5,205.5 L 830.3,203.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-3 atom-1\" d=\"M 837.2,202.9 L 835.4,199.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 820.1,210.6 L 803.1,203.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 803.1,203.0 L 790.6,216.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 790.6,216.9 L 800.0,233.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 800.0,233.0 L 807.6,231.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 807.6,231.4 L 815.2,229.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-3\" d=\"M 818.5,225.9 L 819.3,218.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-3\" d=\"M 819.3,218.2 L 820.1,210.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 850.0 210.6 Q 850.0 209.4, 850.6 208.6 Q 851.3 207.9, 852.4 207.9 Q 853.6 207.9, 854.2 208.6 Q 854.9 209.4, 854.9 210.6 Q 854.9 211.9, 854.2 212.6 Q 853.6 213.4, 852.4 213.4 Q 851.3 213.4, 850.6 212.6 Q 850.0 211.9, 850.0 210.6 M 852.4 212.8 Q 853.2 212.8, 853.7 212.2 Q 854.1 211.7, 854.1 210.6 Q 854.1 209.6, 853.7 209.1 Q 853.2 208.5, 852.4 208.5 Q 851.6 208.5, 851.2 209.1 Q 850.8 209.6, 850.8 210.6 Q 850.8 211.7, 851.2 212.2 Q 851.6 212.8, 852.4 212.8 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 855.2 208.0 L 856.0 208.0 L 856.0 210.2 L 858.7 210.2 L 858.7 208.0 L 859.4 208.0 L 859.4 213.3 L 858.7 213.3 L 858.7 210.8 L 856.0 210.8 L 856.0 213.3 L 855.2 213.3 L 855.2 208.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 833.9 182.7 Q 833.9 181.4, 834.5 180.7 Q 835.1 180.0, 836.3 180.0 Q 837.5 180.0, 838.1 180.7 Q 838.7 181.4, 838.7 182.7 Q 838.7 183.9, 838.1 184.7 Q 837.4 185.4, 836.3 185.4 Q 835.1 185.4, 834.5 184.7 Q 833.9 183.9, 833.9 182.7 M 836.3 184.8 Q 837.1 184.8, 837.5 184.3 Q 838.0 183.7, 838.0 182.7 Q 838.0 181.6, 837.5 181.1 Q 837.1 180.6, 836.3 180.6 Q 835.5 180.6, 835.0 181.1 Q 834.6 181.6, 834.6 182.7 Q 834.6 183.7, 835.0 184.3 Q 835.5 184.8, 836.3 184.8 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 815.8 229.2 Q 815.8 227.9, 816.4 227.2 Q 817.0 226.5, 818.2 226.5 Q 819.4 226.5, 820.0 227.2 Q 820.6 227.9, 820.6 229.2 Q 820.6 230.5, 820.0 231.2 Q 819.3 231.9, 818.2 231.9 Q 817.0 231.9, 816.4 231.2 Q 815.8 230.5, 815.8 229.2 M 818.2 231.3 Q 819.0 231.3, 819.4 230.8 Q 819.9 230.2, 819.9 229.2 Q 819.9 228.1, 819.4 227.6 Q 819.0 227.1, 818.2 227.1 Q 817.4 227.1, 816.9 227.6 Q 816.5 228.1, 816.5 229.2 Q 816.5 230.2, 816.9 230.8 Q 817.4 231.3, 818.2 231.3 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 793.9 293.3 L 793.0 290.8 L 789.7 290.8 L 788.8 293.3 L 787.7 293.3 L 790.6 284.8 L 792.0 284.8 L 795.0 293.3 L 793.9 293.3 M 790.0 289.9 L 792.7 289.9 L 791.3 286.0 L 790.0 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 795.2 290.2 Q 795.2 288.7, 795.9 287.9 Q 796.7 287.0, 798.1 287.0 Q 799.5 287.0, 800.3 288.1 L 799.5 288.6 Q 799.2 288.3, 798.9 288.1 Q 798.6 287.9, 798.1 287.9 Q 797.3 287.9, 796.8 288.5 Q 796.3 289.1, 796.3 290.2 Q 796.3 291.4, 796.8 291.9 Q 797.3 292.5, 798.2 292.5 Q 798.7 292.5, 799.1 292.4 Q 799.4 292.3, 799.8 292.1 L 800.2 292.9 Q 799.3 293.4, 798.1 293.4 Q 796.7 293.4, 795.9 292.5 Q 795.2 291.7, 795.2 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 800.6 290.2 Q 800.6 288.7, 801.3 287.9 Q 802.0 287.0, 803.5 287.0 Q 804.9 287.0, 805.6 288.1 L 804.9 288.6 Q 804.6 288.3, 804.3 288.1 Q 803.9 287.9, 803.5 287.9 Q 802.7 287.9, 802.2 288.5 Q 801.7 289.1, 801.7 290.2 Q 801.7 291.4, 802.2 291.9 Q 802.7 292.5, 803.6 292.5 Q 804.1 292.5, 804.4 292.4 Q 804.8 292.3, 805.2 292.1 L 805.5 292.9 Q 804.6 293.4, 803.5 293.4 Q 802.0 293.4, 801.3 292.5 Q 800.6 291.7, 800.6 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 805.9 290.2 Q 805.9 288.7, 806.7 287.9 Q 807.4 287.0, 808.8 287.0 Q 810.2 287.0, 810.8 287.9 Q 811.4 288.7, 811.4 290.2 L 811.4 290.4 L 807.1 290.4 Q 807.1 291.4, 807.6 292.0 Q 808.0 292.5, 808.9 292.5 Q 809.4 292.5, 809.8 292.4 Q 810.3 292.3, 810.8 292.1 L 811.2 292.8 Q 810.5 293.1, 810.0 293.3 Q 809.4 293.4, 808.9 293.4 Q 807.5 293.4, 806.7 292.6 Q 805.9 291.7, 805.9 290.2 M 808.8 287.9 Q 808.1 287.9, 807.7 288.3 Q 807.3 288.7, 807.1 289.5 L 810.2 289.5 Q 810.1 288.7, 809.8 288.3 Q 809.5 287.9, 808.8 287.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 814.7 287.0 Q 816.0 287.0, 816.7 287.8 Q 817.4 288.6, 817.4 290.1 Q 817.4 291.7, 816.6 292.5 Q 815.7 293.4, 814.3 293.4 Q 813.6 293.4, 813.0 293.2 L 813.0 296.2 L 811.9 296.2 L 811.9 287.1 L 812.8 287.1 L 812.9 287.9 Q 813.2 287.5, 813.7 287.2 Q 814.2 287.0, 814.7 287.0 M 814.3 292.5 Q 815.2 292.5, 815.7 291.9 Q 816.3 291.3, 816.3 290.1 Q 816.3 289.1, 815.8 288.5 Q 815.4 287.9, 814.6 287.9 Q 814.0 287.9, 813.6 288.2 Q 813.2 288.6, 813.0 289.1 L 813.0 292.3 Q 813.6 292.5, 814.3 292.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 818.0 288.0 L 818.0 287.1 L 819.1 287.1 L 819.3 285.3 L 820.2 285.3 L 820.2 287.1 L 822.1 287.1 L 822.1 288.0 L 820.2 288.0 L 820.2 291.4 Q 820.2 292.5, 821.1 292.5 Q 821.4 292.5, 822.0 292.3 L 822.2 293.1 Q 821.5 293.4, 820.9 293.4 Q 820.1 293.4, 819.6 292.9 Q 819.1 292.4, 819.1 291.5 L 819.1 288.0 L 818.0 288.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 822.5 290.2 Q 822.5 288.7, 823.2 287.9 Q 824.0 287.0, 825.4 287.0 Q 826.8 287.0, 827.5 287.9 Q 828.3 288.7, 828.3 290.2 Q 828.3 291.7, 827.5 292.6 Q 826.8 293.4, 825.4 293.4 Q 824.0 293.4, 823.2 292.6 Q 822.5 291.7, 822.5 290.2 M 823.6 290.2 Q 823.6 291.3, 824.1 291.9 Q 824.5 292.5, 825.4 292.5 Q 826.2 292.5, 826.7 291.9 Q 827.2 291.3, 827.2 290.2 Q 827.2 289.1, 826.7 288.5 Q 826.2 287.9, 825.4 287.9 Q 824.5 287.9, 824.1 288.5 Q 823.6 289.1, 823.6 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 829.8 287.1 L 829.9 288.0 Q 830.6 287.0, 831.6 287.0 Q 832.0 287.0, 832.4 287.2 L 832.2 288.2 Q 831.7 288.0, 831.4 288.0 Q 830.9 288.0, 830.6 288.2 Q 830.3 288.4, 830.0 288.9 L 830.0 293.3 L 828.9 293.3 L 828.9 287.1 L 829.8 287.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 838.7 293.9 L 838.7 294.9 L 832.6 294.9 L 832.6 293.9 L 838.7 293.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 838.7 289.9 Q 838.7 288.2, 839.2 286.8 Q 839.7 285.4, 840.7 283.8 L 841.3 284.2 Q 840.6 285.7, 840.2 287.0 Q 839.8 288.2, 839.8 289.9 Q 839.8 291.5, 840.2 292.8 Q 840.6 294.1, 841.3 295.5 L 840.7 296.0 Q 839.7 294.4, 839.2 293.0 Q 838.7 291.6, 838.7 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 841.7 286.4 Q 842.0 285.6, 842.7 285.2 Q 843.5 284.7, 844.5 284.7 Q 845.8 284.7, 846.5 285.4 Q 847.2 286.1, 847.2 287.3 Q 847.2 288.6, 846.3 289.8 Q 845.4 291.0, 843.4 292.4 L 847.4 292.4 L 847.4 293.3 L 841.6 293.3 L 841.6 292.5 Q 843.2 291.4, 844.2 290.5 Q 845.1 289.7, 845.6 288.9 Q 846.0 288.2, 846.0 287.4 Q 846.0 286.6, 845.6 286.1 Q 845.2 285.7, 844.5 285.7 Q 843.8 285.7, 843.4 286.0 Q 842.9 286.2, 842.6 286.8 L 841.7 286.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 848.1 292.1 L 849.3 292.1 L 849.3 293.1 L 849.1 294.7 L 848.6 294.7 L 848.6 293.3 L 848.1 293.3 L 848.1 292.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 854.5 292.4 L 856.4 292.4 L 856.4 286.0 L 854.3 286.6 L 854.1 285.9 L 856.7 284.8 L 857.5 284.9 L 857.5 292.4 L 859.2 292.4 L 859.2 293.3 L 854.5 293.3 L 854.5 292.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 862.3 289.9 Q 862.3 291.6, 861.8 293.0 Q 861.3 294.4, 860.4 296.0 L 859.7 295.5 Q 860.5 294.1, 860.9 292.8 Q 861.3 291.5, 861.3 289.9 Q 861.3 288.2, 860.9 287.0 Q 860.5 285.7, 859.7 284.2 L 860.4 283.8 Q 861.3 285.4, 861.8 286.8 Q 862.3 288.2, 862.3 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 993.8,192.4 L 987.3,188.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 987.3,188.6 L 980.7,184.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 978.9,184.8 L 978.9,177.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 978.9,177.2 L 978.9,169.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 982.6,184.8 L 982.6,177.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 982.6,177.2 L 982.6,169.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 980.7,184.8 L 964.6,194.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 964.6,194.2 L 946.2,197.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 946.2,197.4 L 952.6,179.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-3 atom-6\" d=\"M 964.6,194.2 L 970.9,211.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 970.9,211.7 L 959.0,226.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 959.0,226.0 L 965.3,243.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 965.3,243.5 L 973.0,244.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 973.0,244.8 L 980.7,246.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 986.5,243.4 L 991.1,237.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 991.1,237.9 L 995.7,232.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 995.7,232.4 L 989.3,214.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-5 atom-3\" d=\"M 952.6,179.9 L 964.6,194.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12 atom-11 atom-6\" d=\"M 989.3,214.9 L 970.9,211.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 994.4 194.2 Q 994.4 192.9, 995.1 192.2 Q 995.7 191.5, 996.9 191.5 Q 998.0 191.5, 998.7 192.2 Q 999.3 192.9, 999.3 194.2 Q 999.3 195.5, 998.7 196.2 Q 998.0 196.9, 996.9 196.9 Q 995.7 196.9, 995.1 196.2 Q 994.4 195.5, 994.4 194.2 M 996.9 196.3 Q 997.7 196.3, 998.1 195.8 Q 998.5 195.2, 998.5 194.2 Q 998.5 193.1, 998.1 192.6 Q 997.7 192.1, 996.9 192.1 Q 996.1 192.1, 995.6 192.6 Q 995.2 193.1, 995.2 194.2 Q 995.2 195.2, 995.6 195.8 Q 996.1 196.3, 996.9 196.3 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 999.7 191.6 L 1000.4 191.6 L 1000.4 193.8 L 1003.1 193.8 L 1003.1 191.6 L 1003.8 191.6 L 1003.8 196.8 L 1003.1 196.8 L 1003.1 194.4 L 1000.4 194.4 L 1000.4 196.8 L 999.7 196.8 L 999.7 191.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 978.3 166.2 Q 978.3 164.9, 978.9 164.2 Q 979.5 163.5, 980.7 163.5 Q 981.9 163.5, 982.5 164.2 Q 983.1 164.9, 983.1 166.2 Q 983.1 167.5, 982.5 168.2 Q 981.9 168.9, 980.7 168.9 Q 979.6 168.9, 978.9 168.2 Q 978.3 167.5, 978.3 166.2 M 980.7 168.3 Q 981.5 168.3, 982.0 167.8 Q 982.4 167.3, 982.4 166.2 Q 982.4 165.2, 982.0 164.6 Q 981.5 164.1, 980.7 164.1 Q 979.9 164.1, 979.5 164.6 Q 979.0 165.2, 979.0 166.2 Q 979.0 167.3, 979.5 167.8 Q 979.9 168.3, 980.7 168.3 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 981.3 246.7 Q 981.3 245.5, 981.9 244.8 Q 982.5 244.1, 983.7 244.1 Q 984.9 244.1, 985.5 244.8 Q 986.1 245.5, 986.1 246.7 Q 986.1 248.0, 985.5 248.8 Q 984.9 249.5, 983.7 249.5 Q 982.5 249.5, 981.9 248.8 Q 981.3 248.0, 981.3 246.7 M 983.7 248.9 Q 984.5 248.9, 984.9 248.3 Q 985.4 247.8, 985.4 246.7 Q 985.4 245.7, 984.9 245.2 Q 984.5 244.7, 983.7 244.7 Q 982.9 244.7, 982.5 245.2 Q 982.0 245.7, 982.0 246.7 Q 982.0 247.8, 982.5 248.3 Q 982.9 248.9, 983.7 248.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 943.3 293.3 L 942.4 290.8 L 939.0 290.8 L 938.1 293.3 L 937.0 293.3 L 939.9 284.8 L 941.3 284.8 L 944.4 293.3 L 943.3 293.3 M 939.3 289.9 L 942.0 289.9 L 940.6 286.0 L 939.3 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 944.5 290.2 Q 944.5 288.7, 945.3 287.9 Q 946.0 287.0, 947.5 287.0 Q 948.9 287.0, 949.6 288.1 L 948.8 288.6 Q 948.6 288.3, 948.2 288.1 Q 947.9 287.9, 947.5 287.9 Q 946.6 287.9, 946.1 288.5 Q 945.7 289.1, 945.7 290.2 Q 945.7 291.4, 946.1 291.9 Q 946.6 292.5, 947.5 292.5 Q 948.0 292.5, 948.4 292.4 Q 948.7 292.3, 949.2 292.1 L 949.5 292.9 Q 948.6 293.4, 947.5 293.4 Q 946.0 293.4, 945.3 292.5 Q 944.5 291.7, 944.5 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 949.9 290.2 Q 949.9 288.7, 950.6 287.9 Q 951.4 287.0, 952.8 287.0 Q 954.2 287.0, 955.0 288.1 L 954.2 288.6 Q 953.9 288.3, 953.6 288.1 Q 953.3 287.9, 952.8 287.9 Q 952.0 287.9, 951.5 288.5 Q 951.0 289.1, 951.0 290.2 Q 951.0 291.4, 951.5 291.9 Q 952.0 292.5, 952.9 292.5 Q 953.4 292.5, 953.8 292.4 Q 954.1 292.3, 954.5 292.1 L 954.9 292.9 Q 954.0 293.4, 952.8 293.4 Q 951.4 293.4, 950.6 292.5 Q 949.9 291.7, 949.9 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 955.3 290.2 Q 955.3 288.7, 956.0 287.9 Q 956.8 287.0, 958.2 287.0 Q 959.5 287.0, 960.1 287.9 Q 960.7 288.7, 960.7 290.2 L 960.7 290.4 L 956.4 290.4 Q 956.4 291.4, 956.9 292.0 Q 957.4 292.5, 958.3 292.5 Q 958.7 292.5, 959.2 292.4 Q 959.6 292.3, 960.2 292.1 L 960.5 292.8 Q 959.9 293.1, 959.3 293.3 Q 958.8 293.4, 958.2 293.4 Q 956.8 293.4, 956.0 292.6 Q 955.3 291.7, 955.3 290.2 M 958.2 287.9 Q 957.4 287.9, 957.0 288.3 Q 956.6 288.7, 956.5 289.5 L 959.5 289.5 Q 959.5 288.7, 959.1 288.3 Q 958.8 287.9, 958.2 287.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 964.0 287.0 Q 965.3 287.0, 966.0 287.8 Q 966.8 288.6, 966.8 290.1 Q 966.8 291.7, 965.9 292.5 Q 965.1 293.4, 963.6 293.4 Q 962.9 293.4, 962.3 293.2 L 962.3 296.2 L 961.2 296.2 L 961.2 287.1 L 962.1 287.1 L 962.2 287.9 Q 962.6 287.5, 963.0 287.2 Q 963.5 287.0, 964.0 287.0 M 963.6 292.5 Q 964.5 292.5, 965.1 291.9 Q 965.6 291.3, 965.6 290.1 Q 965.6 289.1, 965.2 288.5 Q 964.8 287.9, 964.0 287.9 Q 963.4 287.9, 962.9 288.2 Q 962.5 288.6, 962.3 289.1 L 962.3 292.3 Q 962.9 292.5, 963.6 292.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 967.3 288.0 L 967.3 287.1 L 968.5 287.1 L 968.7 285.3 L 969.5 285.3 L 969.5 287.1 L 971.4 287.1 L 971.4 288.0 L 969.5 288.0 L 969.5 291.4 Q 969.5 292.5, 970.4 292.5 Q 970.8 292.5, 971.3 292.3 L 971.5 293.1 Q 970.8 293.4, 970.2 293.4 Q 969.4 293.4, 968.9 292.9 Q 968.4 292.4, 968.4 291.5 L 968.4 288.0 L 967.3 288.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 971.8 290.2 Q 971.8 288.7, 972.5 287.9 Q 973.3 287.0, 974.7 287.0 Q 976.1 287.0, 976.9 287.9 Q 977.6 288.7, 977.6 290.2 Q 977.6 291.7, 976.9 292.6 Q 976.1 293.4, 974.7 293.4 Q 973.3 293.4, 972.5 292.6 Q 971.8 291.7, 971.8 290.2 M 972.9 290.2 Q 972.9 291.3, 973.4 291.9 Q 973.9 292.5, 974.7 292.5 Q 975.6 292.5, 976.0 291.9 Q 976.5 291.3, 976.5 290.2 Q 976.5 289.1, 976.0 288.5 Q 975.6 287.9, 974.7 287.9 Q 973.9 287.9, 973.4 288.5 Q 972.9 289.1, 972.9 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 979.1 287.1 L 979.2 288.0 Q 979.9 287.0, 980.9 287.0 Q 981.3 287.0, 981.7 287.2 L 981.6 288.2 Q 981.0 288.0, 980.8 288.0 Q 980.2 288.0, 979.9 288.2 Q 979.6 288.4, 979.3 288.9 L 979.3 293.3 L 978.2 293.3 L 978.2 287.1 L 979.1 287.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 988.0 293.9 L 988.0 294.9 L 981.9 294.9 L 981.9 293.9 L 988.0 293.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 988.0 289.9 Q 988.0 288.2, 988.5 286.8 Q 989.0 285.4, 990.0 283.8 L 990.7 284.2 Q 989.9 285.7, 989.5 287.0 Q 989.1 288.2, 989.1 289.9 Q 989.1 291.5, 989.5 292.8 Q 989.9 294.1, 990.7 295.5 L 990.0 296.0 Q 989.0 294.4, 988.5 293.0 Q 988.0 291.6, 988.0 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 995.1 288.8 Q 995.9 289.1, 996.3 289.6 Q 996.7 290.1, 996.7 291.0 Q 996.7 291.7, 996.3 292.3 Q 996.0 292.8, 995.3 293.1 Q 994.6 293.4, 993.8 293.4 Q 992.9 293.4, 992.2 293.1 Q 991.5 292.8, 991.0 292.1 L 991.7 291.4 Q 992.2 292.0, 992.6 292.3 Q 993.1 292.5, 993.8 292.5 Q 994.6 292.5, 995.0 292.1 Q 995.5 291.6, 995.5 291.0 Q 995.5 290.1, 995.0 289.7 Q 994.5 289.3, 993.5 289.3 L 992.9 289.3 L 992.9 288.5 L 993.4 288.5 Q 994.3 288.4, 994.8 288.1 Q 995.3 287.6, 995.3 286.9 Q 995.3 286.3, 994.9 286.0 Q 994.5 285.7, 993.8 285.7 Q 993.1 285.7, 992.6 285.9 Q 992.2 286.2, 991.9 286.8 L 991.0 286.4 Q 991.3 285.7, 992.1 285.2 Q 992.8 284.7, 993.8 284.7 Q 995.0 284.7, 995.8 285.3 Q 996.5 285.9, 996.5 286.9 Q 996.5 287.6, 996.1 288.1 Q 995.8 288.6, 995.1 288.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 997.4 292.1 L 998.6 292.1 L 998.6 293.1 L 998.4 294.7 L 997.9 294.7 L 997.9 293.3 L 997.4 293.3 L 997.4 292.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1006.5 293.4 Q 1004.9 293.4, 1004.1 292.3 Q 1003.4 291.1, 1003.4 289.1 Q 1003.4 287.0, 1004.1 285.9 Q 1004.9 284.7, 1006.5 284.7 Q 1008.1 284.7, 1008.8 285.9 Q 1009.6 287.0, 1009.6 289.1 Q 1009.6 291.1, 1008.8 292.3 Q 1008.0 293.4, 1006.5 293.4 M 1006.5 292.4 Q 1007.4 292.4, 1007.9 291.6 Q 1008.4 290.7, 1008.4 289.1 Q 1008.4 287.4, 1007.9 286.5 Q 1007.4 285.7, 1006.5 285.7 Q 1005.6 285.7, 1005.1 286.5 Q 1004.6 287.4, 1004.6 289.1 Q 1004.6 290.7, 1005.1 291.6 Q 1005.6 292.4, 1006.5 292.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1013.0 289.9 Q 1013.0 291.6, 1012.5 293.0 Q 1012.0 294.4, 1011.0 296.0 L 1010.4 295.5 Q 1011.2 294.1, 1011.5 292.8 Q 1011.9 291.5, 1011.9 289.9 Q 1011.9 288.2, 1011.5 287.0 Q 1011.2 285.7, 1010.4 284.2 L 1011.0 283.8 Q 1012.0 285.4, 1012.5 286.8 Q 1013.0 288.2, 1013.0 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 1090.2,245.1 L 1090.2,226.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 1090.2,226.5 L 1074.1,217.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 1089.7,221.9 L 1078.4,215.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 1074.1,217.2 L 1074.1,209.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 1074.1,209.5 L 1074.1,201.8\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 1076.7,197.0 L 1083.5,193.1\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 1083.5,193.1 L 1090.2,189.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 1080.6,199.1 L 1085.3,196.3\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 1085.3,196.3 L 1090.1,193.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 1090.2,189.2 L 1106.4,198.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 1106.4,198.5 L 1122.5,189.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 1122.5,189.2 L 1138.7,198.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 1138.7,198.5 L 1154.8,189.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 1154.8,189.2 L 1161.4,193.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 1161.4,193.0 L 1167.9,196.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 1153.0,189.2 L 1153.0,181.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 1153.0,181.5 L 1153.0,173.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 1156.7,189.2 L 1156.7,181.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 1156.7,181.5 L 1156.7,173.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-5 atom-11\" d=\"M 1106.4,198.5 L 1106.4,217.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-5 atom-11\" d=\"M 1102.7,201.3 L 1102.7,214.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-11 atom-1\" d=\"M 1106.4,217.2 L 1090.2,226.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-3\" d=\"M 1072.9 195.9 L 1074.7 198.7 Q 1074.8 198.9, 1075.1 199.4 Q 1075.4 199.9, 1075.4 200.0 L 1075.4 195.9 L 1076.1 195.9 L 1076.1 201.2 L 1075.4 201.2 L 1073.5 198.1 Q 1073.3 197.7, 1073.1 197.3 Q 1072.8 196.9, 1072.8 196.8 L 1072.8 201.2 L 1072.1 201.2 L 1072.1 195.9 L 1072.9 195.9 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-9\" d=\"M 1168.6 198.5 Q 1168.6 197.3, 1169.2 196.6 Q 1169.8 195.8, 1171.0 195.8 Q 1172.2 195.8, 1172.8 196.6 Q 1173.4 197.3, 1173.4 198.5 Q 1173.4 199.8, 1172.8 200.5 Q 1172.1 201.3, 1171.0 201.3 Q 1169.8 201.3, 1169.2 200.5 Q 1168.6 199.8, 1168.6 198.5 M 1171.0 200.7 Q 1171.8 200.7, 1172.2 200.1 Q 1172.7 199.6, 1172.7 198.5 Q 1172.7 197.5, 1172.2 197.0 Q 1171.8 196.4, 1171.0 196.4 Q 1170.2 196.4, 1169.7 197.0 Q 1169.3 197.5, 1169.3 198.5 Q 1169.3 199.6, 1169.7 200.1 Q 1170.2 200.7, 1171.0 200.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 1173.8 195.9 L 1174.5 195.9 L 1174.5 198.1 L 1177.2 198.1 L 1177.2 195.9 L 1177.9 195.9 L 1177.9 201.2 L 1177.2 201.2 L 1177.2 198.7 L 1174.5 198.7 L 1174.5 201.2 L 1173.8 201.2 L 1173.8 195.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-10\" d=\"M 1152.4 170.6 Q 1152.4 169.3, 1153.0 168.6 Q 1153.7 167.9, 1154.8 167.9 Q 1156.0 167.9, 1156.6 168.6 Q 1157.3 169.3, 1157.3 170.6 Q 1157.3 171.8, 1156.6 172.6 Q 1156.0 173.3, 1154.8 173.3 Q 1153.7 173.3, 1153.0 172.6 Q 1152.4 171.8, 1152.4 170.6 M 1154.8 172.7 Q 1155.6 172.7, 1156.1 172.2 Q 1156.5 171.6, 1156.5 170.6 Q 1156.5 169.5, 1156.1 169.0 Q 1155.6 168.5, 1154.8 168.5 Q 1154.0 168.5, 1153.6 169.0 Q 1153.2 169.5, 1153.2 170.6 Q 1153.2 171.6, 1153.6 172.2 Q 1154.0 172.7, 1154.8 172.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 1093.9 293.3 L 1093.0 290.8 L 1089.7 290.8 L 1088.8 293.3 L 1087.7 293.3 L 1090.6 284.8 L 1092.0 284.8 L 1095.1 293.3 L 1093.9 293.3 M 1090.0 289.9 L 1092.7 289.9 L 1091.3 286.0 L 1090.0 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1095.2 290.2 Q 1095.2 288.7, 1095.9 287.9 Q 1096.7 287.0, 1098.1 287.0 Q 1099.6 287.0, 1100.3 288.1 L 1099.5 288.6 Q 1099.2 288.3, 1098.9 288.1 Q 1098.6 287.9, 1098.1 287.9 Q 1097.3 287.9, 1096.8 288.5 Q 1096.3 289.1, 1096.3 290.2 Q 1096.3 291.4, 1096.8 291.9 Q 1097.3 292.5, 1098.2 292.5 Q 1098.7 292.5, 1099.1 292.4 Q 1099.4 292.3, 1099.9 292.1 L 1100.2 292.9 Q 1099.3 293.4, 1098.1 293.4 Q 1096.7 293.4, 1095.9 292.5 Q 1095.2 291.7, 1095.2 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1100.6 290.2 Q 1100.6 288.7, 1101.3 287.9 Q 1102.1 287.0, 1103.5 287.0 Q 1104.9 287.0, 1105.7 288.1 L 1104.9 288.6 Q 1104.6 288.3, 1104.3 288.1 Q 1104.0 287.9, 1103.5 287.9 Q 1102.7 287.9, 1102.2 288.5 Q 1101.7 289.1, 1101.7 290.2 Q 1101.7 291.4, 1102.2 291.9 Q 1102.7 292.5, 1103.6 292.5 Q 1104.1 292.5, 1104.4 292.4 Q 1104.8 292.3, 1105.2 292.1 L 1105.5 292.9 Q 1104.7 293.4, 1103.5 293.4 Q 1102.1 293.4, 1101.3 292.5 Q 1100.6 291.7, 1100.6 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1105.9 290.2 Q 1105.9 288.7, 1106.7 287.9 Q 1107.5 287.0, 1108.8 287.0 Q 1110.2 287.0, 1110.8 287.9 Q 1111.4 288.7, 1111.4 290.2 L 1111.4 290.4 L 1107.1 290.4 Q 1107.1 291.4, 1107.6 292.0 Q 1108.1 292.5, 1108.9 292.5 Q 1109.4 292.5, 1109.9 292.4 Q 1110.3 292.3, 1110.8 292.1 L 1111.2 292.8 Q 1110.6 293.1, 1110.0 293.3 Q 1109.5 293.4, 1108.9 293.4 Q 1107.5 293.4, 1106.7 292.6 Q 1105.9 291.7, 1105.9 290.2 M 1108.8 287.9 Q 1108.1 287.9, 1107.7 288.3 Q 1107.3 288.7, 1107.1 289.5 L 1110.2 289.5 Q 1110.1 288.7, 1109.8 288.3 Q 1109.5 287.9, 1108.8 287.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1114.7 287.0 Q 1116.0 287.0, 1116.7 287.8 Q 1117.4 288.6, 1117.4 290.1 Q 1117.4 291.7, 1116.6 292.5 Q 1115.8 293.4, 1114.3 293.4 Q 1113.6 293.4, 1113.0 293.2 L 1113.0 296.2 L 1111.9 296.2 L 1111.9 287.1 L 1112.8 287.1 L 1112.9 287.9 Q 1113.2 287.5, 1113.7 287.2 Q 1114.2 287.0, 1114.7 287.0 M 1114.3 292.5 Q 1115.2 292.5, 1115.8 291.9 Q 1116.3 291.3, 1116.3 290.1 Q 1116.3 289.1, 1115.9 288.5 Q 1115.4 287.9, 1114.7 287.9 Q 1114.0 287.9, 1113.6 288.2 Q 1113.2 288.6, 1113.0 289.1 L 1113.0 292.3 Q 1113.6 292.5, 1114.3 292.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1118.0 288.0 L 1118.0 287.1 L 1119.2 287.1 L 1119.4 285.3 L 1120.2 285.3 L 1120.2 287.1 L 1122.1 287.1 L 1122.1 288.0 L 1120.2 288.0 L 1120.2 291.4 Q 1120.2 292.5, 1121.1 292.5 Q 1121.5 292.5, 1122.0 292.3 L 1122.2 293.1 Q 1121.5 293.4, 1120.9 293.4 Q 1120.1 293.4, 1119.6 292.9 Q 1119.1 292.4, 1119.1 291.5 L 1119.1 288.0 L 1118.0 288.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1122.5 290.2 Q 1122.5 288.7, 1123.2 287.9 Q 1124.0 287.0, 1125.4 287.0 Q 1126.8 287.0, 1127.6 287.9 Q 1128.3 288.7, 1128.3 290.2 Q 1128.3 291.7, 1127.6 292.6 Q 1126.8 293.4, 1125.4 293.4 Q 1124.0 293.4, 1123.2 292.6 Q 1122.5 291.7, 1122.5 290.2 M 1123.6 290.2 Q 1123.6 291.3, 1124.1 291.9 Q 1124.5 292.5, 1125.4 292.5 Q 1126.3 292.5, 1126.7 291.9 Q 1127.2 291.3, 1127.2 290.2 Q 1127.2 289.1, 1126.7 288.5 Q 1126.3 287.9, 1125.4 287.9 Q 1124.5 287.9, 1124.1 288.5 Q 1123.6 289.1, 1123.6 290.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1129.8 287.1 L 1129.9 288.0 Q 1130.6 287.0, 1131.6 287.0 Q 1132.0 287.0, 1132.4 287.2 L 1132.2 288.2 Q 1131.7 288.0, 1131.4 288.0 Q 1130.9 288.0, 1130.6 288.2 Q 1130.3 288.4, 1130.0 288.9 L 1130.0 293.3 L 1128.9 293.3 L 1128.9 287.1 L 1129.8 287.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1138.7 293.9 L 1138.7 294.9 L 1132.6 294.9 L 1132.6 293.9 L 1138.7 293.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1138.7 289.9 Q 1138.7 288.2, 1139.2 286.8 Q 1139.7 285.4, 1140.7 283.8 L 1141.4 284.2 Q 1140.6 285.7, 1140.2 287.0 Q 1139.8 288.2, 1139.8 289.9 Q 1139.8 291.5, 1140.2 292.8 Q 1140.6 294.1, 1141.4 295.5 L 1140.7 296.0 Q 1139.7 294.4, 1139.2 293.0 Q 1138.7 291.6, 1138.7 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1145.7 288.8 Q 1146.6 289.1, 1147.0 289.6 Q 1147.4 290.1, 1147.4 291.0 Q 1147.4 291.7, 1147.0 292.3 Q 1146.7 292.8, 1146.0 293.1 Q 1145.3 293.4, 1144.5 293.4 Q 1143.6 293.4, 1142.9 293.1 Q 1142.2 292.8, 1141.7 292.1 L 1142.3 291.4 Q 1142.9 292.0, 1143.3 292.3 Q 1143.8 292.5, 1144.5 292.5 Q 1145.2 292.5, 1145.7 292.1 Q 1146.2 291.6, 1146.2 291.0 Q 1146.2 290.1, 1145.7 289.7 Q 1145.2 289.3, 1144.2 289.3 L 1143.5 289.3 L 1143.5 288.5 L 1144.1 288.5 Q 1145.0 288.4, 1145.5 288.1 Q 1146.0 287.6, 1146.0 286.9 Q 1146.0 286.3, 1145.6 286.0 Q 1145.2 285.7, 1144.5 285.7 Q 1143.8 285.7, 1143.3 285.9 Q 1142.9 286.2, 1142.6 286.8 L 1141.7 286.4 Q 1142.0 285.7, 1142.8 285.2 Q 1143.5 284.7, 1144.5 284.7 Q 1145.7 284.7, 1146.5 285.3 Q 1147.2 285.9, 1147.2 286.9 Q 1147.2 287.6, 1146.8 288.1 Q 1146.4 288.6, 1145.7 288.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1148.1 292.1 L 1149.3 292.1 L 1149.3 293.1 L 1149.1 294.7 L 1148.6 294.7 L 1148.6 293.3 L 1148.1 293.3 L 1148.1 292.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1154.5 292.4 L 1156.4 292.4 L 1156.4 286.0 L 1154.3 286.6 L 1154.1 285.9 L 1156.7 284.8 L 1157.5 284.9 L 1157.5 292.4 L 1159.2 292.4 L 1159.2 293.3 L 1154.5 293.3 L 1154.5 292.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1162.3 289.9 Q 1162.3 291.6, 1161.8 293.0 Q 1161.3 294.4, 1160.4 296.0 L 1159.7 295.5 Q 1160.5 294.1, 1160.9 292.8 Q 1161.2 291.5, 1161.2 289.9 Q 1161.2 288.2, 1160.9 287.0 Q 1160.5 285.7, 1159.7 284.2 L 1160.4 283.8 Q 1161.3 285.4, 1161.8 286.8 Q 1162.3 288.2, 1162.3 289.9 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 112.5,359.4 L 105.9,355.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 105.9,355.6 L 99.4,351.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 97.5,351.8 L 97.5,344.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 97.5,344.2 L 97.5,336.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 101.2,351.8 L 101.2,344.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 101.2,344.2 L 101.2,336.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 99.4,351.8 L 83.2,361.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 83.2,361.1 L 67.1,351.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 67.1,351.8 L 50.9,361.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 50.9,361.1 L 44.4,357.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 44.4,357.3 L 37.8,353.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 52.8,361.1 L 52.8,368.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 52.8,368.8 L 52.8,376.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 49.0,361.1 L 49.0,368.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 49.0,368.8 L 49.0,376.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 113.1 361.1 Q 113.1 359.9, 113.7 359.2 Q 114.3 358.5, 115.5 358.5 Q 116.7 358.5, 117.3 359.2 Q 117.9 359.9, 117.9 361.1 Q 117.9 362.4, 117.3 363.1 Q 116.7 363.9, 115.5 363.9 Q 114.3 363.9, 113.7 363.1 Q 113.1 362.4, 113.1 361.1 M 115.5 363.3 Q 116.3 363.3, 116.7 362.7 Q 117.2 362.2, 117.2 361.1 Q 117.2 360.1, 116.7 359.6 Q 116.3 359.0, 115.5 359.0 Q 114.7 359.0, 114.3 359.6 Q 113.8 360.1, 113.8 361.1 Q 113.8 362.2, 114.3 362.7 Q 114.7 363.3, 115.5 363.3 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 118.3 358.5 L 119.0 358.5 L 119.0 360.8 L 121.7 360.8 L 121.7 358.5 L 122.4 358.5 L 122.4 363.8 L 121.7 363.8 L 121.7 361.4 L 119.0 361.4 L 119.0 363.8 L 118.3 363.8 L 118.3 358.5 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 96.9 333.2 Q 96.9 331.9, 97.6 331.2 Q 98.2 330.5, 99.4 330.5 Q 100.5 330.5, 101.2 331.2 Q 101.8 331.9, 101.8 333.2 Q 101.8 334.4, 101.1 335.2 Q 100.5 335.9, 99.4 335.9 Q 98.2 335.9, 97.6 335.2 Q 96.9 334.5, 96.9 333.2 M 99.4 335.3 Q 100.2 335.3, 100.6 334.8 Q 101.0 334.2, 101.0 333.2 Q 101.0 332.1, 100.6 331.6 Q 100.2 331.1, 99.4 331.1 Q 98.5 331.1, 98.1 331.6 Q 97.7 332.1, 97.7 333.2 Q 97.7 334.2, 98.1 334.8 Q 98.5 335.3, 99.4 335.3 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-6\" d=\"M 27.6 349.2 L 28.3 349.2 L 28.3 351.4 L 31.0 351.4 L 31.0 349.2 L 31.7 349.2 L 31.7 354.5 L 31.0 354.5 L 31.0 352.0 L 28.3 352.0 L 28.3 354.5 L 27.6 354.5 L 27.6 349.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-6\" d=\"M 32.3 351.8 Q 32.3 350.5, 33.0 349.8 Q 33.6 349.1, 34.8 349.1 Q 35.9 349.1, 36.6 349.8 Q 37.2 350.5, 37.2 351.8 Q 37.2 353.1, 36.5 353.8 Q 35.9 354.5, 34.8 354.5 Q 33.6 354.5, 33.0 353.8 Q 32.3 353.1, 32.3 351.8 M 34.8 354.0 Q 35.6 354.0, 36.0 353.4 Q 36.4 352.9, 36.4 351.8 Q 36.4 350.8, 36.0 350.3 Q 35.6 349.7, 34.8 349.7 Q 34.0 349.7, 33.5 350.2 Q 33.1 350.8, 33.1 351.8 Q 33.1 352.9, 33.5 353.4 Q 34.0 354.0, 34.8 354.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 48.5 379.8 Q 48.5 378.5, 49.1 377.8 Q 49.7 377.1, 50.9 377.1 Q 52.1 377.1, 52.7 377.8 Q 53.3 378.5, 53.3 379.8 Q 53.3 381.1, 52.7 381.8 Q 52.1 382.5, 50.9 382.5 Q 49.7 382.5, 49.1 381.8 Q 48.5 381.1, 48.5 379.8 M 50.9 381.9 Q 51.7 381.9, 52.1 381.4 Q 52.6 380.8, 52.6 379.8 Q 52.6 378.7, 52.1 378.2 Q 51.7 377.7, 50.9 377.7 Q 50.1 377.7, 49.7 378.2 Q 49.2 378.7, 49.2 379.8 Q 49.2 380.8, 49.7 381.4 Q 50.1 381.9, 50.9 381.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 29.4 434.7 L 32.2 439.2 Q 32.5 439.7, 32.9 440.5 Q 33.3 441.3, 33.4 441.3 L 33.4 434.7 L 34.5 434.7 L 34.5 443.2 L 33.3 443.2 L 30.3 438.3 Q 30.0 437.7, 29.6 437.1 Q 29.3 436.4, 29.2 436.2 L 29.2 443.2 L 28.1 443.2 L 28.1 434.7 L 29.4 434.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 35.5 440.1 Q 35.5 438.6, 36.3 437.8 Q 37.0 437.0, 38.4 437.0 Q 39.7 437.0, 40.3 437.8 Q 41.0 438.6, 41.0 440.1 L 41.0 440.3 L 36.6 440.3 Q 36.7 441.3, 37.1 441.9 Q 37.6 442.4, 38.5 442.4 Q 39.0 442.4, 39.4 442.3 Q 39.9 442.2, 40.4 442.0 L 40.7 442.7 Q 40.1 443.1, 39.6 443.2 Q 39.0 443.3, 38.4 443.3 Q 37.0 443.3, 36.3 442.5 Q 35.5 441.7, 35.5 440.1 M 38.4 437.9 Q 37.7 437.9, 37.2 438.3 Q 36.8 438.7, 36.7 439.5 L 39.8 439.5 Q 39.7 438.6, 39.3 438.2 Q 39.0 437.9, 38.4 437.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 47.0 437.1 L 47.0 443.6 Q 47.0 446.2, 44.2 446.2 Q 42.9 446.2, 41.6 445.6 L 42.0 444.8 Q 42.7 445.1, 43.1 445.2 Q 43.6 445.4, 44.2 445.4 Q 45.1 445.4, 45.5 445.0 Q 45.9 444.6, 45.9 443.6 L 45.9 442.5 Q 45.2 443.3, 44.1 443.3 Q 42.8 443.3, 42.1 442.5 Q 41.4 441.7, 41.4 440.2 Q 41.4 438.7, 42.3 437.8 Q 43.1 437.0, 44.6 437.0 Q 45.4 437.0, 46.1 437.2 L 46.1 437.1 L 47.0 437.1 M 44.2 442.4 Q 44.8 442.4, 45.3 442.1 Q 45.7 441.8, 45.9 441.1 L 45.9 438.0 Q 45.3 437.9, 44.6 437.9 Q 43.6 437.9, 43.1 438.5 Q 42.6 439.1, 42.6 440.2 Q 42.6 441.3, 43.0 441.9 Q 43.4 442.4, 44.2 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 48.0 434.7 L 49.2 434.7 L 49.2 443.2 L 48.0 443.2 L 48.0 434.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 50.2 440.1 Q 50.2 438.6, 51.0 437.8 Q 51.7 437.0, 53.1 437.0 Q 54.5 437.0, 55.3 437.8 Q 56.1 438.6, 56.1 440.1 Q 56.1 441.6, 55.3 442.5 Q 54.5 443.3, 53.1 443.3 Q 51.7 443.3, 51.0 442.5 Q 50.2 441.6, 50.2 440.1 M 51.4 440.1 Q 51.4 441.3, 51.8 441.9 Q 52.3 442.4, 53.1 442.4 Q 54.0 442.4, 54.4 441.9 Q 54.9 441.3, 54.9 440.1 Q 54.9 439.0, 54.4 438.4 Q 54.0 437.9, 53.1 437.9 Q 52.3 437.9, 51.8 438.4 Q 51.4 439.0, 51.4 440.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 59.8 437.0 Q 60.8 437.0, 61.3 437.5 Q 61.9 438.1, 61.9 439.2 L 61.9 443.2 L 60.7 443.2 L 60.7 439.2 Q 60.7 438.5, 60.4 438.2 Q 60.2 437.9, 59.5 437.9 Q 59.0 437.9, 58.5 438.1 Q 58.0 438.4, 57.7 438.8 L 57.7 443.2 L 56.6 443.2 L 56.6 437.1 L 57.5 437.1 L 57.7 437.9 Q 58.5 437.0, 59.8 437.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 62.8 434.7 L 63.9 434.7 L 63.9 435.8 L 62.8 435.8 L 62.8 434.7 M 62.8 437.1 L 63.9 437.1 L 63.9 443.2 L 62.8 443.2 L 62.8 437.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 66.3 442.4 L 69.7 442.4 L 69.7 443.2 L 64.9 443.2 L 64.9 442.5 L 68.2 438.0 L 65.1 438.0 L 65.1 437.1 L 69.5 437.1 L 69.5 437.8 L 66.3 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 70.1 441.6 Q 70.1 440.6, 70.9 440.0 Q 71.7 439.5, 73.1 439.5 L 74.0 439.5 L 74.0 439.3 Q 74.0 438.5, 73.7 438.2 Q 73.4 437.9, 72.6 437.9 Q 72.1 437.9, 71.7 437.9 Q 71.4 438.0, 70.8 438.3 L 70.4 437.5 Q 71.6 437.0, 72.6 437.0 Q 74.0 437.0, 74.6 437.5 Q 75.2 438.1, 75.2 439.3 L 75.2 443.2 L 74.3 443.2 Q 74.3 443.2, 74.2 443.0 Q 74.2 442.8, 74.1 442.5 Q 73.3 443.4, 72.1 443.4 Q 71.2 443.4, 70.6 442.9 Q 70.1 442.4, 70.1 441.6 M 71.2 441.5 Q 71.2 442.0, 71.5 442.3 Q 71.8 442.5, 72.3 442.5 Q 72.8 442.5, 73.3 442.3 Q 73.7 442.1, 74.0 441.7 L 74.0 440.3 L 73.2 440.3 Q 72.2 440.3, 71.7 440.6 Q 71.2 440.9, 71.2 441.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 79.0 437.0 Q 80.2 437.0, 81.0 437.8 Q 81.7 438.6, 81.7 440.0 Q 81.7 441.6, 80.8 442.5 Q 80.0 443.3, 78.5 443.3 Q 77.5 443.3, 76.6 443.0 L 76.1 442.8 L 76.1 434.1 L 77.2 434.1 L 77.2 437.7 Q 77.9 437.0, 79.0 437.0 M 78.5 442.4 Q 79.4 442.4, 80.0 441.8 Q 80.5 441.2, 80.5 440.0 Q 80.5 439.0, 80.1 438.4 Q 79.7 437.9, 78.9 437.9 Q 78.3 437.9, 77.8 438.2 Q 77.4 438.5, 77.2 439.1 L 77.2 442.3 Q 77.8 442.4, 78.5 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 82.2 434.1 L 83.3 434.1 L 83.3 443.2 L 82.2 443.2 L 82.2 434.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 84.4 440.1 Q 84.4 438.6, 85.1 437.8 Q 85.9 437.0, 87.3 437.0 Q 88.6 437.0, 89.2 437.8 Q 89.8 438.6, 89.8 440.1 L 89.8 440.3 L 85.5 440.3 Q 85.5 441.3, 86.0 441.9 Q 86.5 442.4, 87.3 442.4 Q 87.8 442.4, 88.3 442.3 Q 88.7 442.2, 89.3 442.0 L 89.6 442.7 Q 89.0 443.1, 88.4 443.2 Q 87.9 443.3, 87.3 443.3 Q 85.9 443.3, 85.1 442.5 Q 84.4 441.7, 84.4 440.1 M 87.3 437.9 Q 86.5 437.9, 86.1 438.3 Q 85.7 438.7, 85.6 439.5 L 88.6 439.5 Q 88.5 438.6, 88.2 438.2 Q 87.9 437.9, 87.3 437.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 96.4 443.8 L 96.4 444.8 L 90.3 444.8 L 90.3 443.8 L 96.4 443.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 96.4 439.8 Q 96.4 438.1, 96.9 436.7 Q 97.4 435.3, 98.4 433.7 L 99.0 434.2 Q 98.3 435.6, 97.9 436.9 Q 97.5 438.2, 97.5 439.8 Q 97.5 441.4, 97.9 442.7 Q 98.3 444.0, 99.0 445.5 L 98.4 445.9 Q 97.4 444.4, 96.9 443.0 Q 96.4 441.6, 96.4 439.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 102.4 443.3 Q 100.9 443.3, 100.1 442.2 Q 99.3 441.0, 99.3 439.0 Q 99.3 436.9, 100.1 435.8 Q 100.9 434.6, 102.4 434.6 Q 104.0 434.6, 104.8 435.8 Q 105.6 436.9, 105.6 439.0 Q 105.6 441.0, 104.8 442.2 Q 104.0 443.3, 102.4 443.3 M 102.4 442.4 Q 103.4 442.4, 103.9 441.5 Q 104.4 440.7, 104.4 439.0 Q 104.4 437.3, 103.9 436.5 Q 103.4 435.6, 102.4 435.6 Q 101.5 435.6, 101.0 436.5 Q 100.5 437.3, 100.5 439.0 Q 100.5 440.7, 101.0 441.5 Q 101.5 442.4, 102.4 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 106.3 442.0 L 107.5 442.0 L 107.5 443.0 L 107.3 444.7 L 106.9 444.7 L 106.9 443.2 L 106.3 443.2 L 106.3 442.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 115.4 443.3 Q 113.9 443.3, 113.1 442.2 Q 112.3 441.0, 112.3 439.0 Q 112.3 436.9, 113.1 435.8 Q 113.8 434.6, 115.4 434.6 Q 117.0 434.6, 117.8 435.8 Q 118.5 436.9, 118.5 439.0 Q 118.5 441.0, 117.7 442.2 Q 117.0 443.3, 115.4 443.3 M 115.4 442.4 Q 116.3 442.4, 116.8 441.5 Q 117.3 440.7, 117.3 439.0 Q 117.3 437.3, 116.8 436.5 Q 116.3 435.6, 115.4 435.6 Q 114.5 435.6, 114.0 436.5 Q 113.5 437.3, 113.5 439.0 Q 113.5 440.7, 114.0 441.5 Q 114.5 442.4, 115.4 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 121.9 439.8 Q 121.9 441.6, 121.4 443.0 Q 121.0 444.4, 120.0 445.9 L 119.3 445.5 Q 120.1 444.0, 120.5 442.7 Q 120.9 441.4, 120.9 439.8 Q 120.9 438.2, 120.5 436.9 Q 120.1 435.6, 119.3 434.2 L 120.0 433.7 Q 121.0 435.3, 121.4 436.7 Q 121.9 438.1, 121.9 439.8 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 181.2,333.2 L 197.3,342.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 197.3,342.5 L 213.5,333.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 201.6,344.3 L 212.9,337.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 213.5,333.2 L 229.6,342.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 229.6,342.5 L 229.6,361.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 225.9,345.3 L 225.9,358.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 229.6,361.1 L 213.5,370.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 213.5,370.4 L 197.3,361.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 212.9,365.8 L 201.6,359.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 213.5,370.4 L 213.5,389.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 213.5,389.1 L 206.9,392.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 206.9,392.9 L 200.4,396.7\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 214.4,387.5 L 220.9,391.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 220.9,391.3 L 227.5,395.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 212.5,390.7 L 219.1,394.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 219.1,394.5 L 225.6,398.3\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-3 atom-10\" d=\"M 229.6,342.5 L 245.8,333.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 245.8,333.2 L 252.3,336.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 252.3,336.9 L 258.9,340.7\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-10 atom-12\" d=\"M 243.9,333.2 L 243.9,325.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-10 atom-12\" d=\"M 243.9,325.5 L 243.9,317.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-10 atom-12\" d=\"M 247.6,333.2 L 247.6,325.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-10 atom-12\" d=\"M 247.6,325.5 L 247.6,317.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12 atom-6 atom-1\" d=\"M 197.3,361.1 L 197.3,342.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-8\" d=\"M 190.1 395.8 L 190.8 395.8 L 190.8 398.0 L 193.5 398.0 L 193.5 395.8 L 194.3 395.8 L 194.3 401.1 L 193.5 401.1 L 193.5 398.6 L 190.8 398.6 L 190.8 401.1 L 190.1 401.1 L 190.1 395.8 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-8\" d=\"M 194.9 398.4 Q 194.9 397.2, 195.5 396.5 Q 196.1 395.7, 197.3 395.7 Q 198.5 395.7, 199.1 396.5 Q 199.7 397.2, 199.7 398.4 Q 199.7 399.7, 199.1 400.4 Q 198.5 401.2, 197.3 401.2 Q 196.1 401.2, 195.5 400.4 Q 194.9 399.7, 194.9 398.4 M 197.3 400.6 Q 198.1 400.6, 198.6 400.0 Q 199.0 399.5, 199.0 398.4 Q 199.0 397.4, 198.6 396.9 Q 198.1 396.3, 197.3 396.3 Q 196.5 396.3, 196.1 396.9 Q 195.6 397.4, 195.6 398.4 Q 195.6 399.5, 196.1 400.0 Q 196.5 400.6, 197.3 400.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 227.2 398.4 Q 227.2 397.2, 227.8 396.5 Q 228.4 395.7, 229.6 395.7 Q 230.8 395.7, 231.4 396.5 Q 232.0 397.2, 232.0 398.4 Q 232.0 399.7, 231.4 400.4 Q 230.8 401.2, 229.6 401.2 Q 228.4 401.2, 227.8 400.4 Q 227.2 399.7, 227.2 398.4 M 229.6 400.6 Q 230.4 400.6, 230.8 400.0 Q 231.3 399.5, 231.3 398.4 Q 231.3 397.4, 230.8 396.9 Q 230.4 396.3, 229.6 396.3 Q 228.8 396.3, 228.4 396.9 Q 227.9 397.4, 227.9 398.4 Q 227.9 399.5, 228.4 400.0 Q 228.8 400.6, 229.6 400.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-11\" d=\"M 259.5 342.5 Q 259.5 341.2, 260.1 340.5 Q 260.7 339.8, 261.9 339.8 Q 263.1 339.8, 263.7 340.5 Q 264.3 341.2, 264.3 342.5 Q 264.3 343.8, 263.7 344.5 Q 263.1 345.2, 261.9 345.2 Q 260.7 345.2, 260.1 344.5 Q 259.5 343.8, 259.5 342.5 M 261.9 344.6 Q 262.7 344.6, 263.1 344.1 Q 263.6 343.5, 263.6 342.5 Q 263.6 341.5, 263.1 340.9 Q 262.7 340.4, 261.9 340.4 Q 261.1 340.4, 260.7 340.9 Q 260.2 341.4, 260.2 342.5 Q 260.2 343.6, 260.7 344.1 Q 261.1 344.6, 261.9 344.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-11\" d=\"M 264.7 339.9 L 265.4 339.9 L 265.4 342.1 L 268.1 342.1 L 268.1 339.9 L 268.8 339.9 L 268.8 345.1 L 268.1 345.1 L 268.1 342.7 L 265.4 342.7 L 265.4 345.1 L 264.7 345.1 L 264.7 339.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-12\" d=\"M 243.3 314.5 Q 243.3 313.3, 244.0 312.5 Q 244.6 311.8, 245.8 311.8 Q 246.9 311.8, 247.6 312.5 Q 248.2 313.3, 248.2 314.5 Q 248.2 315.8, 247.5 316.5 Q 246.9 317.3, 245.8 317.3 Q 244.6 317.3, 244.0 316.5 Q 243.3 315.8, 243.3 314.5 M 245.8 316.7 Q 246.6 316.7, 247.0 316.1 Q 247.4 315.6, 247.4 314.5 Q 247.4 313.5, 247.0 313.0 Q 246.6 312.4, 245.8 312.4 Q 245.0 312.4, 244.5 313.0 Q 244.1 313.5, 244.1 314.5 Q 244.1 315.6, 244.5 316.1 Q 245.0 316.7, 245.8 316.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 180.1 434.7 L 182.9 439.2 Q 183.1 439.7, 183.6 440.5 Q 184.0 441.3, 184.1 441.3 L 184.1 434.7 L 185.2 434.7 L 185.2 443.2 L 184.0 443.2 L 181.0 438.3 Q 180.7 437.7, 180.3 437.1 Q 180.0 436.4, 179.8 436.2 L 179.8 443.2 L 178.7 443.2 L 178.7 434.7 L 180.1 434.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 186.2 440.1 Q 186.2 438.6, 186.9 437.8 Q 187.7 437.0, 189.1 437.0 Q 190.4 437.0, 191.0 437.8 Q 191.6 438.6, 191.6 440.1 L 191.6 440.3 L 187.3 440.3 Q 187.4 441.3, 187.8 441.9 Q 188.3 442.4, 189.2 442.4 Q 189.6 442.4, 190.1 442.3 Q 190.5 442.2, 191.1 442.0 L 191.4 442.7 Q 190.8 443.1, 190.2 443.2 Q 189.7 443.3, 189.1 443.3 Q 187.7 443.3, 186.9 442.5 Q 186.2 441.7, 186.2 440.1 M 189.1 437.9 Q 188.4 437.9, 187.9 438.3 Q 187.5 438.7, 187.4 439.5 L 190.5 439.5 Q 190.4 438.6, 190.0 438.2 Q 189.7 437.9, 189.1 437.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 197.7 437.1 L 197.7 443.6 Q 197.7 446.2, 194.9 446.2 Q 193.5 446.2, 192.3 445.6 L 192.7 444.8 Q 193.4 445.1, 193.8 445.2 Q 194.3 445.4, 194.9 445.4 Q 195.8 445.4, 196.2 445.0 Q 196.6 444.6, 196.6 443.6 L 196.6 442.5 Q 195.9 443.3, 194.8 443.3 Q 193.5 443.3, 192.8 442.5 Q 192.1 441.7, 192.1 440.2 Q 192.1 438.7, 192.9 437.8 Q 193.8 437.0, 195.3 437.0 Q 196.0 437.0, 196.8 437.2 L 196.8 437.1 L 197.7 437.1 M 194.9 442.4 Q 195.5 442.4, 195.9 442.1 Q 196.4 441.8, 196.6 441.1 L 196.6 438.0 Q 196.0 437.9, 195.3 437.9 Q 194.3 437.9, 193.8 438.5 Q 193.2 439.1, 193.2 440.2 Q 193.2 441.3, 193.7 441.9 Q 194.1 442.4, 194.9 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 198.7 434.7 L 199.8 434.7 L 199.8 443.2 L 198.7 443.2 L 198.7 434.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 200.9 440.1 Q 200.9 438.6, 201.6 437.8 Q 202.4 437.0, 203.8 437.0 Q 205.2 437.0, 206.0 437.8 Q 206.7 438.6, 206.7 440.1 Q 206.7 441.6, 206.0 442.5 Q 205.2 443.3, 203.8 443.3 Q 202.4 443.3, 201.6 442.5 Q 200.9 441.6, 200.9 440.1 M 202.0 440.1 Q 202.0 441.3, 202.5 441.9 Q 203.0 442.4, 203.8 442.4 Q 204.7 442.4, 205.1 441.9 Q 205.6 441.3, 205.6 440.1 Q 205.6 439.0, 205.1 438.4 Q 204.7 437.9, 203.8 437.9 Q 203.0 437.9, 202.5 438.4 Q 202.0 439.0, 202.0 440.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 210.5 437.0 Q 211.5 437.0, 212.0 437.5 Q 212.5 438.1, 212.5 439.2 L 212.5 443.2 L 211.4 443.2 L 211.4 439.2 Q 211.4 438.5, 211.1 438.2 Q 210.9 437.9, 210.2 437.9 Q 209.7 437.9, 209.2 438.1 Q 208.7 438.4, 208.4 438.8 L 208.4 443.2 L 207.3 443.2 L 207.3 437.1 L 208.2 437.1 L 208.4 437.9 Q 209.2 437.0, 210.5 437.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 213.5 434.7 L 214.6 434.7 L 214.6 435.8 L 213.5 435.8 L 213.5 434.7 M 213.5 437.1 L 214.6 437.1 L 214.6 443.2 L 213.5 443.2 L 213.5 437.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 216.9 442.4 L 220.3 442.4 L 220.3 443.2 L 215.6 443.2 L 215.6 442.5 L 218.8 438.0 L 215.8 438.0 L 215.8 437.1 L 220.2 437.1 L 220.2 437.8 L 216.9 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 220.8 441.6 Q 220.8 440.6, 221.6 440.0 Q 222.3 439.5, 223.8 439.5 L 224.7 439.5 L 224.7 439.3 Q 224.7 438.5, 224.4 438.2 Q 224.1 437.9, 223.3 437.9 Q 222.8 437.9, 222.4 437.9 Q 222.0 438.0, 221.4 438.3 L 221.1 437.5 Q 222.2 437.0, 223.3 437.0 Q 224.6 437.0, 225.2 437.5 Q 225.8 438.1, 225.8 439.3 L 225.8 443.2 L 225.0 443.2 Q 225.0 443.2, 224.9 443.0 Q 224.9 442.8, 224.8 442.5 Q 223.9 443.4, 222.8 443.4 Q 221.9 443.4, 221.3 442.9 Q 220.8 442.4, 220.8 441.6 M 221.9 441.5 Q 221.9 442.0, 222.2 442.3 Q 222.5 442.5, 223.0 442.5 Q 223.5 442.5, 223.9 442.3 Q 224.4 442.1, 224.7 441.7 L 224.7 440.3 L 223.9 440.3 Q 222.9 440.3, 222.4 440.6 Q 221.9 440.9, 221.9 441.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 229.6 437.0 Q 230.9 437.0, 231.6 437.8 Q 232.4 438.6, 232.4 440.0 Q 232.4 441.6, 231.5 442.5 Q 230.7 443.3, 229.2 443.3 Q 228.2 443.3, 227.3 443.0 L 226.8 442.8 L 226.8 434.1 L 227.9 434.1 L 227.9 437.7 Q 228.5 437.0, 229.6 437.0 M 229.2 442.4 Q 230.1 442.4, 230.7 441.8 Q 231.2 441.2, 231.2 440.0 Q 231.2 439.0, 230.8 438.4 Q 230.4 437.9, 229.6 437.9 Q 228.9 437.9, 228.5 438.2 Q 228.1 438.5, 227.9 439.1 L 227.9 442.3 Q 228.5 442.4, 229.2 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 232.9 434.1 L 234.0 434.1 L 234.0 443.2 L 232.9 443.2 L 232.9 434.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 235.0 440.1 Q 235.0 438.6, 235.8 437.8 Q 236.6 437.0, 237.9 437.0 Q 239.3 437.0, 239.9 437.8 Q 240.5 438.6, 240.5 440.1 L 240.5 440.3 L 236.2 440.3 Q 236.2 441.3, 236.7 441.9 Q 237.2 442.4, 238.0 442.4 Q 238.5 442.4, 239.0 442.3 Q 239.4 442.2, 239.9 442.0 L 240.3 442.7 Q 239.7 443.1, 239.1 443.2 Q 238.5 443.3, 238.0 443.3 Q 236.6 443.3, 235.8 442.5 Q 235.0 441.7, 235.0 440.1 M 237.9 437.9 Q 237.2 437.9, 236.8 438.3 Q 236.4 438.7, 236.2 439.5 L 239.3 439.5 Q 239.2 438.6, 238.9 438.2 Q 238.6 437.9, 237.9 437.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 247.1 443.8 L 247.1 444.8 L 241.0 444.8 L 241.0 443.8 L 247.1 443.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 247.1 439.8 Q 247.1 438.1, 247.6 436.7 Q 248.1 435.3, 249.0 433.7 L 249.7 434.2 Q 248.9 435.6, 248.5 436.9 Q 248.2 438.2, 248.2 439.8 Q 248.2 441.4, 248.5 442.7 Q 248.9 444.0, 249.7 445.5 L 249.0 445.9 Q 248.1 444.4, 247.6 443.0 Q 247.1 441.6, 247.1 439.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 253.1 443.3 Q 251.6 443.3, 250.8 442.2 Q 250.0 441.0, 250.0 439.0 Q 250.0 436.9, 250.8 435.8 Q 251.6 434.6, 253.1 434.6 Q 254.7 434.6, 255.5 435.8 Q 256.2 436.9, 256.2 439.0 Q 256.2 441.0, 255.5 442.2 Q 254.7 443.3, 253.1 443.3 M 253.1 442.4 Q 254.1 442.4, 254.5 441.5 Q 255.0 440.7, 255.0 439.0 Q 255.0 437.3, 254.5 436.5 Q 254.1 435.6, 253.1 435.6 Q 252.2 435.6, 251.7 436.5 Q 251.2 437.3, 251.2 439.0 Q 251.2 440.7, 251.7 441.5 Q 252.2 442.4, 253.1 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 257.0 442.0 L 258.2 442.0 L 258.2 443.0 L 258.0 444.7 L 257.6 444.7 L 257.6 443.2 L 257.0 443.2 L 257.0 442.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 263.5 442.3 L 265.3 442.3 L 265.3 435.9 L 263.3 436.6 L 263.0 435.9 L 265.6 434.7 L 266.4 434.8 L 266.4 442.3 L 268.1 442.3 L 268.1 443.2 L 263.5 443.2 L 263.5 442.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 271.3 439.8 Q 271.3 441.6, 270.8 443.0 Q 270.3 444.4, 269.3 445.9 L 268.6 445.5 Q 269.4 444.0, 269.8 442.7 Q 270.2 441.4, 270.2 439.8 Q 270.2 438.2, 269.8 436.9 Q 269.4 435.6, 268.6 434.2 L 269.3 433.7 Q 270.3 435.3, 270.8 436.7 Q 271.3 438.1, 271.3 439.8 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 404.4,360.7 L 397.8,357.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 397.8,357.0 L 391.3,353.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 389.4,353.2 L 389.4,345.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 389.4,345.5 L 389.4,337.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 393.1,353.2 L 393.1,345.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 393.1,345.5 L 393.1,337.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-3 atom-1\" d=\"M 380.8,359.9 L 380.2,358.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-3 atom-1\" d=\"M 386.5,357.4 L 385.3,355.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-3 atom-1\" d=\"M 392.2,354.8 L 390.3,351.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 375.1,362.5 L 375.1,381.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 375.1,381.1 L 359.0,390.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 359.0,390.5 L 342.8,381.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 342.8,381.1 L 342.8,362.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 342.8,362.5 L 359.0,353.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 359.0,353.2 L 357.1,334.5 L 360.8,334.5 Z\" style=\"fill:#000000;fill-rule:evenodd;fill-opacity:1;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 359.0,334.5 L 352.4,330.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 352.4,330.7 L 345.9,327.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-11\" d=\"M 358.0,332.9 L 364.6,329.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-11\" d=\"M 364.6,329.1 L 371.2,325.3\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-11\" d=\"M 359.9,336.1 L 366.5,332.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-11\" d=\"M 366.5,332.4 L 373.0,328.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-8 atom-3\" d=\"M 359.0,353.2 L 375.1,362.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 405.0 362.5 Q 405.0 361.2, 405.6 360.5 Q 406.3 359.8, 407.4 359.8 Q 408.6 359.8, 409.2 360.5 Q 409.9 361.2, 409.9 362.5 Q 409.9 363.8, 409.2 364.5 Q 408.6 365.2, 407.4 365.2 Q 406.3 365.2, 405.6 364.5 Q 405.0 363.8, 405.0 362.5 M 407.4 364.7 Q 408.2 364.7, 408.7 364.1 Q 409.1 363.6, 409.1 362.5 Q 409.1 361.5, 408.7 361.0 Q 408.2 360.4, 407.4 360.4 Q 406.6 360.4, 406.2 360.9 Q 405.7 361.5, 405.7 362.5 Q 405.7 363.6, 406.2 364.1 Q 406.6 364.7, 407.4 364.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 410.2 359.9 L 410.9 359.9 L 410.9 362.1 L 413.6 362.1 L 413.6 359.9 L 414.4 359.9 L 414.4 365.2 L 413.6 365.2 L 413.6 362.7 L 410.9 362.7 L 410.9 365.2 L 410.2 365.2 L 410.2 359.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 388.9 334.5 Q 388.9 333.3, 389.5 332.6 Q 390.1 331.9, 391.3 331.9 Q 392.4 331.9, 393.1 332.6 Q 393.7 333.3, 393.7 334.5 Q 393.7 335.8, 393.1 336.6 Q 392.4 337.3, 391.3 337.3 Q 390.1 337.3, 389.5 336.6 Q 388.9 335.8, 388.9 334.5 M 391.3 336.7 Q 392.1 336.7, 392.5 336.1 Q 393.0 335.6, 393.0 334.5 Q 393.0 333.5, 392.5 333.0 Q 392.1 332.5, 391.3 332.5 Q 390.5 332.5, 390.0 333.0 Q 389.6 333.5, 389.6 334.5 Q 389.6 335.6, 390.0 336.1 Q 390.5 336.7, 391.3 336.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-10\" d=\"M 335.6 322.6 L 336.4 322.6 L 336.4 324.8 L 339.1 324.8 L 339.1 322.6 L 339.8 322.6 L 339.8 327.9 L 339.1 327.9 L 339.1 325.4 L 336.4 325.4 L 336.4 327.9 L 335.6 327.9 L 335.6 322.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-10\" d=\"M 340.4 325.2 Q 340.4 324.0, 341.0 323.2 Q 341.7 322.5, 342.8 322.5 Q 344.0 322.5, 344.6 323.2 Q 345.3 324.0, 345.3 325.2 Q 345.3 326.5, 344.6 327.2 Q 344.0 328.0, 342.8 328.0 Q 341.7 328.0, 341.0 327.2 Q 340.4 326.5, 340.4 325.2 M 342.8 327.4 Q 343.6 327.4, 344.1 326.8 Q 344.5 326.3, 344.5 325.2 Q 344.5 324.2, 344.1 323.7 Q 343.6 323.1, 342.8 323.1 Q 342.0 323.1, 341.6 323.7 Q 341.2 324.2, 341.2 325.2 Q 341.2 326.3, 341.6 326.8 Q 342.0 327.4, 342.8 327.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-11\" d=\"M 372.7 325.2 Q 372.7 324.0, 373.3 323.2 Q 374.0 322.5, 375.1 322.5 Q 376.3 322.5, 376.9 323.2 Q 377.6 324.0, 377.6 325.2 Q 377.6 326.5, 376.9 327.2 Q 376.3 328.0, 375.1 328.0 Q 374.0 328.0, 373.3 327.2 Q 372.7 326.5, 372.7 325.2 M 375.1 327.4 Q 375.9 327.4, 376.4 326.8 Q 376.8 326.3, 376.8 325.2 Q 376.8 324.2, 376.4 323.7 Q 375.9 323.1, 375.1 323.1 Q 374.3 323.1, 373.9 323.7 Q 373.5 324.2, 373.5 325.2 Q 373.5 326.3, 373.9 326.8 Q 374.3 327.4, 375.1 327.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 330.1 434.7 L 332.9 439.2 Q 333.1 439.7, 333.6 440.5 Q 334.0 441.3, 334.1 441.3 L 334.1 434.7 L 335.2 434.7 L 335.2 443.2 L 334.0 443.2 L 331.0 438.3 Q 330.7 437.7, 330.3 437.1 Q 330.0 436.4, 329.8 436.2 L 329.8 443.2 L 328.7 443.2 L 328.7 434.7 L 330.1 434.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 336.2 440.1 Q 336.2 438.6, 336.9 437.8 Q 337.7 437.0, 339.1 437.0 Q 340.4 437.0, 341.0 437.8 Q 341.6 438.6, 341.6 440.1 L 341.6 440.3 L 337.3 440.3 Q 337.4 441.3, 337.8 441.9 Q 338.3 442.4, 339.2 442.4 Q 339.6 442.4, 340.1 442.3 Q 340.5 442.2, 341.1 442.0 L 341.4 442.7 Q 340.8 443.1, 340.2 443.2 Q 339.7 443.3, 339.1 443.3 Q 337.7 443.3, 336.9 442.5 Q 336.2 441.7, 336.2 440.1 M 339.1 437.9 Q 338.4 437.9, 337.9 438.3 Q 337.5 438.7, 337.4 439.5 L 340.5 439.5 Q 340.4 438.6, 340.0 438.2 Q 339.7 437.9, 339.1 437.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 347.7 437.1 L 347.7 443.6 Q 347.7 446.2, 344.9 446.2 Q 343.5 446.2, 342.3 445.6 L 342.7 444.8 Q 343.4 445.1, 343.8 445.2 Q 344.3 445.4, 344.9 445.4 Q 345.8 445.4, 346.2 445.0 Q 346.6 444.6, 346.6 443.6 L 346.6 442.5 Q 345.9 443.3, 344.8 443.3 Q 343.5 443.3, 342.8 442.5 Q 342.1 441.7, 342.1 440.2 Q 342.1 438.7, 342.9 437.8 Q 343.8 437.0, 345.3 437.0 Q 346.0 437.0, 346.8 437.2 L 346.8 437.1 L 347.7 437.1 M 344.9 442.4 Q 345.5 442.4, 345.9 442.1 Q 346.4 441.8, 346.6 441.1 L 346.6 438.0 Q 346.0 437.9, 345.3 437.9 Q 344.3 437.9, 343.8 438.5 Q 343.2 439.1, 343.2 440.2 Q 343.2 441.3, 343.7 441.9 Q 344.1 442.4, 344.9 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 348.7 434.7 L 349.8 434.7 L 349.8 443.2 L 348.7 443.2 L 348.7 434.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 350.9 440.1 Q 350.9 438.6, 351.6 437.8 Q 352.4 437.0, 353.8 437.0 Q 355.2 437.0, 356.0 437.8 Q 356.7 438.6, 356.7 440.1 Q 356.7 441.6, 356.0 442.5 Q 355.2 443.3, 353.8 443.3 Q 352.4 443.3, 351.6 442.5 Q 350.9 441.6, 350.9 440.1 M 352.0 440.1 Q 352.0 441.3, 352.5 441.9 Q 353.0 442.4, 353.8 442.4 Q 354.7 442.4, 355.1 441.9 Q 355.6 441.3, 355.6 440.1 Q 355.6 439.0, 355.1 438.4 Q 354.7 437.9, 353.8 437.9 Q 353.0 437.9, 352.5 438.4 Q 352.0 439.0, 352.0 440.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 360.5 437.0 Q 361.5 437.0, 362.0 437.5 Q 362.5 438.1, 362.5 439.2 L 362.5 443.2 L 361.4 443.2 L 361.4 439.2 Q 361.4 438.5, 361.1 438.2 Q 360.9 437.9, 360.2 437.9 Q 359.7 437.9, 359.2 438.1 Q 358.7 438.4, 358.4 438.8 L 358.4 443.2 L 357.3 443.2 L 357.3 437.1 L 358.2 437.1 L 358.4 437.9 Q 359.2 437.0, 360.5 437.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 363.5 434.7 L 364.6 434.7 L 364.6 435.8 L 363.5 435.8 L 363.5 434.7 M 363.5 437.1 L 364.6 437.1 L 364.6 443.2 L 363.5 443.2 L 363.5 437.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 366.9 442.4 L 370.3 442.4 L 370.3 443.2 L 365.6 443.2 L 365.6 442.5 L 368.8 438.0 L 365.8 438.0 L 365.8 437.1 L 370.2 437.1 L 370.2 437.8 L 366.9 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 370.8 441.6 Q 370.8 440.6, 371.6 440.0 Q 372.3 439.5, 373.8 439.5 L 374.7 439.5 L 374.7 439.3 Q 374.7 438.5, 374.4 438.2 Q 374.1 437.9, 373.3 437.9 Q 372.8 437.9, 372.4 437.9 Q 372.0 438.0, 371.4 438.3 L 371.1 437.5 Q 372.2 437.0, 373.3 437.0 Q 374.6 437.0, 375.2 437.5 Q 375.8 438.1, 375.8 439.3 L 375.8 443.2 L 375.0 443.2 Q 375.0 443.2, 374.9 443.0 Q 374.9 442.8, 374.8 442.5 Q 373.9 443.4, 372.8 443.4 Q 371.9 443.4, 371.3 442.9 Q 370.8 442.4, 370.8 441.6 M 371.9 441.5 Q 371.9 442.0, 372.2 442.3 Q 372.5 442.5, 373.0 442.5 Q 373.5 442.5, 373.9 442.3 Q 374.4 442.1, 374.7 441.7 L 374.7 440.3 L 373.9 440.3 Q 372.9 440.3, 372.4 440.6 Q 371.9 440.9, 371.9 441.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 379.6 437.0 Q 380.9 437.0, 381.6 437.8 Q 382.4 438.6, 382.4 440.0 Q 382.4 441.6, 381.5 442.5 Q 380.7 443.3, 379.2 443.3 Q 378.2 443.3, 377.3 443.0 L 376.8 442.8 L 376.8 434.1 L 377.9 434.1 L 377.9 437.7 Q 378.5 437.0, 379.6 437.0 M 379.2 442.4 Q 380.1 442.4, 380.7 441.8 Q 381.2 441.2, 381.2 440.0 Q 381.2 439.0, 380.8 438.4 Q 380.4 437.9, 379.6 437.9 Q 378.9 437.9, 378.5 438.2 Q 378.1 438.5, 377.9 439.1 L 377.9 442.3 Q 378.5 442.4, 379.2 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 382.9 434.1 L 384.0 434.1 L 384.0 443.2 L 382.9 443.2 L 382.9 434.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 385.0 440.1 Q 385.0 438.6, 385.8 437.8 Q 386.6 437.0, 387.9 437.0 Q 389.3 437.0, 389.9 437.8 Q 390.5 438.6, 390.5 440.1 L 390.5 440.3 L 386.2 440.3 Q 386.2 441.3, 386.7 441.9 Q 387.2 442.4, 388.0 442.4 Q 388.5 442.4, 389.0 442.3 Q 389.4 442.2, 389.9 442.0 L 390.3 442.7 Q 389.7 443.1, 389.1 443.2 Q 388.5 443.3, 388.0 443.3 Q 386.6 443.3, 385.8 442.5 Q 385.0 441.7, 385.0 440.1 M 387.9 437.9 Q 387.2 437.9, 386.8 438.3 Q 386.4 438.7, 386.2 439.5 L 389.3 439.5 Q 389.2 438.6, 388.9 438.2 Q 388.6 437.9, 387.9 437.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 397.1 443.8 L 397.1 444.8 L 391.0 444.8 L 391.0 443.8 L 397.1 443.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 397.1 439.8 Q 397.1 438.1, 397.6 436.7 Q 398.1 435.3, 399.0 433.7 L 399.7 434.2 Q 398.9 435.6, 398.5 436.9 Q 398.2 438.2, 398.2 439.8 Q 398.2 441.4, 398.5 442.7 Q 398.9 444.0, 399.7 445.5 L 399.0 445.9 Q 398.1 444.4, 397.6 443.0 Q 397.1 441.6, 397.1 439.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 400.5 442.3 L 402.3 442.3 L 402.3 435.9 L 400.3 436.6 L 400.0 435.9 L 402.6 434.7 L 403.5 434.8 L 403.5 442.3 L 405.1 442.3 L 405.1 443.2 L 400.5 443.2 L 400.5 442.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 405.6 442.0 L 406.8 442.0 L 406.8 443.0 L 406.6 444.7 L 406.2 444.7 L 406.2 443.2 L 405.6 443.2 L 405.6 442.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 414.7 443.3 Q 413.2 443.3, 412.4 442.2 Q 411.6 441.0, 411.6 439.0 Q 411.6 436.9, 412.4 435.8 Q 413.2 434.6, 414.7 434.6 Q 416.3 434.6, 417.1 435.8 Q 417.8 436.9, 417.8 439.0 Q 417.8 441.0, 417.1 442.2 Q 416.3 443.3, 414.7 443.3 M 414.7 442.4 Q 415.7 442.4, 416.1 441.5 Q 416.6 440.7, 416.6 439.0 Q 416.6 437.3, 416.1 436.5 Q 415.7 435.6, 414.7 435.6 Q 413.8 435.6, 413.3 436.5 Q 412.8 437.3, 412.8 439.0 Q 412.8 440.7, 413.3 441.5 Q 413.8 442.4, 414.7 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 421.3 439.8 Q 421.3 441.6, 420.8 443.0 Q 420.3 444.4, 419.3 445.9 L 418.6 445.5 Q 419.4 444.0, 419.8 442.7 Q 420.2 441.4, 420.2 439.8 Q 420.2 438.2, 419.8 436.9 Q 419.4 435.6, 418.6 434.2 L 419.3 433.7 Q 420.3 435.3, 420.8 436.7 Q 421.3 438.1, 421.3 439.8 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 567.7,358.9 L 561.2,355.1\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 561.2,355.1 L 554.6,351.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 552.8,351.3 L 552.8,343.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 552.8,343.6 L 552.8,336.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 556.5,351.3 L 556.5,343.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 556.5,343.6 L 556.5,336.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 554.6,351.3 L 538.5,360.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 538.5,360.6 L 536.5,379.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 536.5,379.2 L 518.3,383.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 518.3,383.0 L 509.0,366.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 509.0,366.9 L 510.9,348.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 510.9,348.3 L 529.2,344.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-6 atom-9\" d=\"M 509.0,366.9 L 521.5,353.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-6 atom-10\" d=\"M 509.0,366.9 L 490.4,364.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 490.4,364.9 L 486.1,370.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 486.1,370.8 L 481.9,376.7\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-10 atom-12\" d=\"M 488.7,365.7 L 485.7,358.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-10 atom-12\" d=\"M 485.7,358.9 L 482.6,352.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-10 atom-12\" d=\"M 492.1,364.2 L 489.1,357.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-10 atom-12\" d=\"M 489.1,357.3 L 486.1,350.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12 atom-8 atom-3\" d=\"M 529.2,344.5 L 538.5,360.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-13 atom-9 atom-3\" d=\"M 521.5,353.0 L 538.5,360.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 568.4 360.6 Q 568.4 359.4, 569.0 358.6 Q 569.6 357.9, 570.8 357.9 Q 572.0 357.9, 572.6 358.6 Q 573.2 359.4, 573.2 360.6 Q 573.2 361.9, 572.6 362.6 Q 571.9 363.4, 570.8 363.4 Q 569.6 363.4, 569.0 362.6 Q 568.4 361.9, 568.4 360.6 M 570.8 362.8 Q 571.6 362.8, 572.0 362.2 Q 572.5 361.7, 572.5 360.6 Q 572.5 359.6, 572.0 359.1 Q 571.6 358.5, 570.8 358.5 Q 570.0 358.5, 569.5 359.1 Q 569.1 359.6, 569.1 360.6 Q 569.1 361.7, 569.5 362.2 Q 570.0 362.8, 570.8 362.8 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 573.6 358.0 L 574.3 358.0 L 574.3 360.2 L 577.0 360.2 L 577.0 358.0 L 577.7 358.0 L 577.7 363.3 L 577.0 363.3 L 577.0 360.8 L 574.3 360.8 L 574.3 363.3 L 573.6 363.3 L 573.6 358.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 552.2 332.7 Q 552.2 331.4, 552.8 330.7 Q 553.5 330.0, 554.6 330.0 Q 555.8 330.0, 556.4 330.7 Q 557.1 331.4, 557.1 332.7 Q 557.1 333.9, 556.4 334.7 Q 555.8 335.4, 554.6 335.4 Q 553.5 335.4, 552.8 334.7 Q 552.2 333.9, 552.2 332.7 M 554.6 334.8 Q 555.4 334.8, 555.9 334.3 Q 556.3 333.7, 556.3 332.7 Q 556.3 331.6, 555.9 331.1 Q 555.4 330.6, 554.6 330.6 Q 553.8 330.6, 553.4 331.1 Q 553.0 331.6, 553.0 332.7 Q 553.0 333.7, 553.4 334.3 Q 553.8 334.8, 554.6 334.8 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-11\" d=\"M 472.3 377.4 L 473.0 377.4 L 473.0 379.7 L 475.7 379.7 L 475.7 377.4 L 476.4 377.4 L 476.4 382.7 L 475.7 382.7 L 475.7 380.2 L 473.0 380.2 L 473.0 382.7 L 472.3 382.7 L 472.3 377.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-11\" d=\"M 477.1 380.0 Q 477.1 378.8, 477.7 378.1 Q 478.3 377.3, 479.5 377.3 Q 480.6 377.3, 481.3 378.1 Q 481.9 378.8, 481.9 380.0 Q 481.9 381.3, 481.3 382.0 Q 480.6 382.8, 479.5 382.8 Q 478.3 382.8, 477.7 382.0 Q 477.1 381.3, 477.1 380.0 M 479.5 382.2 Q 480.3 382.2, 480.7 381.6 Q 481.2 381.1, 481.2 380.0 Q 481.2 379.0, 480.7 378.5 Q 480.3 377.9, 479.5 377.9 Q 478.7 377.9, 478.2 378.5 Q 477.8 379.0, 477.8 380.0 Q 477.8 381.1, 478.2 381.6 Q 478.7 382.2, 479.5 382.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-12\" d=\"M 480.4 347.9 Q 480.4 346.6, 481.1 345.9 Q 481.7 345.2, 482.9 345.2 Q 484.0 345.2, 484.6 345.9 Q 485.3 346.6, 485.3 347.9 Q 485.3 349.2, 484.6 349.9 Q 484.0 350.7, 482.9 350.7 Q 481.7 350.7, 481.1 349.9 Q 480.4 349.2, 480.4 347.9 M 482.9 350.1 Q 483.7 350.1, 484.1 349.5 Q 484.5 349.0, 484.5 347.9 Q 484.5 346.9, 484.1 346.4 Q 483.7 345.8, 482.9 345.8 Q 482.0 345.8, 481.6 346.3 Q 481.2 346.9, 481.2 347.9 Q 481.2 349.0, 481.6 349.5 Q 482.0 350.1, 482.9 350.1 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 480.8 434.7 L 483.6 439.2 Q 483.8 439.7, 484.3 440.5 Q 484.7 441.3, 484.7 441.3 L 484.7 434.7 L 485.9 434.7 L 485.9 443.2 L 484.7 443.2 L 481.7 438.3 Q 481.4 437.7, 481.0 437.1 Q 480.6 436.4, 480.5 436.2 L 480.5 443.2 L 479.4 443.2 L 479.4 434.7 L 480.8 434.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 486.9 440.1 Q 486.9 438.6, 487.6 437.8 Q 488.4 437.0, 489.8 437.0 Q 491.1 437.0, 491.7 437.8 Q 492.3 438.6, 492.3 440.1 L 492.3 440.3 L 488.0 440.3 Q 488.0 441.3, 488.5 441.9 Q 489.0 442.4, 489.9 442.4 Q 490.3 442.4, 490.8 442.3 Q 491.2 442.2, 491.8 442.0 L 492.1 442.7 Q 491.5 443.1, 490.9 443.2 Q 490.4 443.3, 489.8 443.3 Q 488.4 443.3, 487.6 442.5 Q 486.9 441.7, 486.9 440.1 M 489.8 437.9 Q 489.0 437.9, 488.6 438.3 Q 488.2 438.7, 488.1 439.5 L 491.1 439.5 Q 491.1 438.6, 490.7 438.2 Q 490.4 437.9, 489.8 437.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 498.4 437.1 L 498.4 443.6 Q 498.4 446.2, 495.6 446.2 Q 494.2 446.2, 493.0 445.6 L 493.4 444.8 Q 494.0 445.1, 494.5 445.2 Q 495.0 445.4, 495.6 445.4 Q 496.5 445.4, 496.9 445.0 Q 497.3 444.6, 497.3 443.6 L 497.3 442.5 Q 496.6 443.3, 495.5 443.3 Q 494.2 443.3, 493.5 442.5 Q 492.8 441.7, 492.8 440.2 Q 492.8 438.7, 493.6 437.8 Q 494.5 437.0, 495.9 437.0 Q 496.7 437.0, 497.4 437.2 L 497.5 437.1 L 498.4 437.1 M 495.6 442.4 Q 496.2 442.4, 496.6 442.1 Q 497.1 441.8, 497.3 441.1 L 497.3 438.0 Q 496.6 437.9, 496.0 437.9 Q 495.0 437.9, 494.5 438.5 Q 493.9 439.1, 493.9 440.2 Q 493.9 441.3, 494.4 441.9 Q 494.8 442.4, 495.6 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 499.4 434.7 L 500.5 434.7 L 500.5 443.2 L 499.4 443.2 L 499.4 434.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 501.6 440.1 Q 501.6 438.6, 502.3 437.8 Q 503.1 437.0, 504.5 437.0 Q 505.9 437.0, 506.7 437.8 Q 507.4 438.6, 507.4 440.1 Q 507.4 441.6, 506.7 442.5 Q 505.9 443.3, 504.5 443.3 Q 503.1 443.3, 502.3 442.5 Q 501.6 441.6, 501.6 440.1 M 502.7 440.1 Q 502.7 441.3, 503.2 441.9 Q 503.6 442.4, 504.5 442.4 Q 505.4 442.4, 505.8 441.9 Q 506.3 441.3, 506.3 440.1 Q 506.3 439.0, 505.8 438.4 Q 505.4 437.9, 504.5 437.9 Q 503.6 437.9, 503.2 438.4 Q 502.7 439.0, 502.7 440.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 511.2 437.0 Q 512.2 437.0, 512.7 437.5 Q 513.2 438.1, 513.2 439.2 L 513.2 443.2 L 512.1 443.2 L 512.1 439.2 Q 512.1 438.5, 511.8 438.2 Q 511.5 437.9, 510.9 437.9 Q 510.3 437.9, 509.9 438.1 Q 509.4 438.4, 509.1 438.8 L 509.1 443.2 L 508.0 443.2 L 508.0 437.1 L 508.9 437.1 L 509.0 437.9 Q 509.9 437.0, 511.2 437.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 514.2 434.7 L 515.3 434.7 L 515.3 435.8 L 514.2 435.8 L 514.2 434.7 M 514.2 437.1 L 515.3 437.1 L 515.3 443.2 L 514.2 443.2 L 514.2 437.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 517.6 442.4 L 521.0 442.4 L 521.0 443.2 L 516.3 443.2 L 516.3 442.5 L 519.5 438.0 L 516.5 438.0 L 516.5 437.1 L 520.9 437.1 L 520.9 437.8 L 517.6 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 521.4 441.6 Q 521.4 440.6, 522.2 440.0 Q 523.0 439.5, 524.5 439.5 L 525.4 439.5 L 525.4 439.3 Q 525.4 438.5, 525.1 438.2 Q 524.8 437.9, 524.0 437.9 Q 523.5 437.9, 523.1 437.9 Q 522.7 438.0, 522.1 438.3 L 521.8 437.5 Q 522.9 437.0, 524.0 437.0 Q 525.3 437.0, 525.9 437.5 Q 526.5 438.1, 526.5 439.3 L 526.5 443.2 L 525.6 443.2 Q 525.6 443.2, 525.6 443.0 Q 525.6 442.8, 525.5 442.5 Q 524.6 443.4, 523.5 443.4 Q 522.5 443.4, 522.0 442.9 Q 521.4 442.4, 521.4 441.6 M 522.6 441.5 Q 522.6 442.0, 522.9 442.3 Q 523.1 442.5, 523.7 442.5 Q 524.2 442.5, 524.6 442.3 Q 525.1 442.1, 525.4 441.7 L 525.4 440.3 L 524.6 440.3 Q 523.6 440.3, 523.1 440.6 Q 522.6 440.9, 522.6 441.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 530.3 437.0 Q 531.6 437.0, 532.3 437.8 Q 533.0 438.6, 533.0 440.0 Q 533.0 441.6, 532.2 442.5 Q 531.3 443.3, 529.9 443.3 Q 528.9 443.3, 528.0 443.0 L 527.4 442.8 L 527.4 434.1 L 528.6 434.1 L 528.6 437.7 Q 529.2 437.0, 530.3 437.0 M 529.9 442.4 Q 530.8 442.4, 531.3 441.8 Q 531.9 441.2, 531.9 440.0 Q 531.9 439.0, 531.5 438.4 Q 531.0 437.9, 530.3 437.9 Q 529.6 437.9, 529.2 438.2 Q 528.7 438.5, 528.6 439.1 L 528.6 442.3 Q 529.2 442.4, 529.9 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 533.6 434.1 L 534.7 434.1 L 534.7 443.2 L 533.6 443.2 L 533.6 434.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 535.7 440.1 Q 535.7 438.6, 536.5 437.8 Q 537.2 437.0, 538.6 437.0 Q 540.0 437.0, 540.6 437.8 Q 541.2 438.6, 541.2 440.1 L 541.2 440.3 L 536.9 440.3 Q 536.9 441.3, 537.4 441.9 Q 537.8 442.4, 538.7 442.4 Q 539.2 442.4, 539.6 442.3 Q 540.1 442.2, 540.6 442.0 L 540.9 442.7 Q 540.3 443.1, 539.8 443.2 Q 539.2 443.3, 538.7 443.3 Q 537.3 443.3, 536.5 442.5 Q 535.7 441.7, 535.7 440.1 M 538.6 437.9 Q 537.9 437.9, 537.5 438.3 Q 537.1 438.7, 536.9 439.5 L 540.0 439.5 Q 539.9 438.6, 539.6 438.2 Q 539.2 437.9, 538.6 437.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 547.8 443.8 L 547.8 444.8 L 541.6 444.8 L 541.6 443.8 L 547.8 443.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 547.8 439.8 Q 547.8 438.1, 548.3 436.7 Q 548.8 435.3, 549.7 433.7 L 550.4 434.2 Q 549.6 435.6, 549.2 436.9 Q 548.8 438.2, 548.8 439.8 Q 548.8 441.4, 549.2 442.7 Q 549.6 444.0, 550.4 445.5 L 549.7 445.9 Q 548.8 444.4, 548.3 443.0 Q 547.8 441.6, 547.8 439.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 551.2 442.3 L 553.0 442.3 L 553.0 435.9 L 551.0 436.6 L 550.7 435.9 L 553.3 434.7 L 554.2 434.8 L 554.2 442.3 L 555.8 442.3 L 555.8 443.2 L 551.2 443.2 L 551.2 442.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 556.3 442.0 L 557.5 442.0 L 557.5 443.0 L 557.3 444.7 L 556.9 444.7 L 556.9 443.2 L 556.3 443.2 L 556.3 442.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 562.8 442.3 L 564.6 442.3 L 564.6 435.9 L 562.6 436.6 L 562.3 435.9 L 564.9 434.7 L 565.8 434.8 L 565.8 442.3 L 567.4 442.3 L 567.4 443.2 L 562.8 443.2 L 562.8 442.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 570.6 439.8 Q 570.6 441.6, 570.1 443.0 Q 569.6 444.4, 568.6 445.9 L 567.9 445.5 Q 568.7 444.0, 569.1 442.7 Q 569.5 441.4, 569.5 439.8 Q 569.5 438.2, 569.1 436.9 Q 568.7 435.6, 567.9 434.2 L 568.6 433.7 Q 569.6 435.3, 570.1 436.7 Q 570.6 438.1, 570.6 439.8 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 701.8,364.7 L 683.2,364.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 683.2,364.7 L 685.1,383.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 683.2,364.7 L 685.1,346.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 685.1,346.2 L 668.1,338.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 668.1,338.6 L 655.6,352.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 655.6,352.4 L 664.9,368.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 664.9,368.6 L 672.5,385.7 L 668.9,386.9 Z\" style=\"fill:#000000;fill-rule:evenodd;fill-opacity:1;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 664.9,368.6 L 647.9,376.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 647.9,376.2 L 641.9,371.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 641.9,371.8 L 635.9,367.4\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 649.8,376.4 L 649.0,384.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 649.0,384.0 L 648.2,391.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 646.1,376.0 L 645.3,383.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 645.3,383.6 L 644.5,391.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-3 atom-11\" d=\"M 690.8,343.6 L 690.2,342.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-3 atom-11\" d=\"M 696.5,341.0 L 695.3,338.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-3 atom-11\" d=\"M 702.2,338.5 L 700.4,335.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-11 atom-12\" d=\"M 701.3,336.8 L 707.8,340.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-11 atom-12\" d=\"M 707.8,340.6 L 714.4,344.4\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12 atom-11 atom-13\" d=\"M 699.4,336.8 L 699.4,329.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12 atom-11 atom-13\" d=\"M 699.4,329.2 L 699.4,321.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12 atom-11 atom-13\" d=\"M 703.1,336.8 L 703.1,329.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12 atom-11 atom-13\" d=\"M 703.1,329.2 L 703.1,321.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-13 atom-6 atom-1\" d=\"M 664.9,368.6 L 683.2,364.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-9\" d=\"M 625.6 362.6 L 626.4 362.6 L 626.4 364.8 L 629.1 364.8 L 629.1 362.6 L 629.8 362.6 L 629.8 367.9 L 629.1 367.9 L 629.1 365.4 L 626.4 365.4 L 626.4 367.9 L 625.6 367.9 L 625.6 362.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 630.4 365.2 Q 630.4 364.0, 631.0 363.3 Q 631.7 362.5, 632.8 362.5 Q 634.0 362.5, 634.6 363.3 Q 635.3 364.0, 635.3 365.2 Q 635.3 366.5, 634.6 367.2 Q 634.0 368.0, 632.8 368.0 Q 631.7 368.0, 631.0 367.2 Q 630.4 366.5, 630.4 365.2 M 632.8 367.4 Q 633.6 367.4, 634.1 366.8 Q 634.5 366.3, 634.5 365.2 Q 634.5 364.2, 634.1 363.7 Q 633.6 363.1, 632.8 363.1 Q 632.0 363.1, 631.6 363.7 Q 631.2 364.2, 631.2 365.2 Q 631.2 366.3, 631.6 366.8 Q 632.0 367.4, 632.8 367.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-10\" d=\"M 643.5 394.7 Q 643.5 393.5, 644.2 392.8 Q 644.8 392.0, 646.0 392.0 Q 647.1 392.0, 647.8 392.8 Q 648.4 393.5, 648.4 394.7 Q 648.4 396.0, 647.8 396.7 Q 647.1 397.5, 646.0 397.5 Q 644.8 397.5, 644.2 396.7 Q 643.5 396.0, 643.5 394.7 M 646.0 396.9 Q 646.8 396.9, 647.2 396.3 Q 647.6 395.8, 647.6 394.7 Q 647.6 393.7, 647.2 393.2 Q 646.8 392.6, 646.0 392.6 Q 645.2 392.6, 644.7 393.2 Q 644.3 393.7, 644.3 394.7 Q 644.3 395.8, 644.7 396.3 Q 645.2 396.9, 646.0 396.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-12\" d=\"M 715.0 346.2 Q 715.0 344.9, 715.6 344.2 Q 716.3 343.5, 717.4 343.5 Q 718.6 343.5, 719.2 344.2 Q 719.9 344.9, 719.9 346.2 Q 719.9 347.5, 719.2 348.2 Q 718.6 348.9, 717.4 348.9 Q 716.3 348.9, 715.6 348.2 Q 715.0 347.5, 715.0 346.2 M 717.4 348.3 Q 718.2 348.3, 718.7 347.8 Q 719.1 347.2, 719.1 346.2 Q 719.1 345.1, 718.7 344.6 Q 718.2 344.1, 717.4 344.1 Q 716.6 344.1, 716.2 344.6 Q 715.8 345.1, 715.8 346.2 Q 715.8 347.3, 716.2 347.8 Q 716.6 348.3, 717.4 348.3 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-12\" d=\"M 720.2 343.6 L 720.9 343.6 L 720.9 345.8 L 723.6 345.8 L 723.6 343.6 L 724.4 343.6 L 724.4 348.8 L 723.6 348.8 L 723.6 346.4 L 720.9 346.4 L 720.9 348.8 L 720.2 348.8 L 720.2 343.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-13\" d=\"M 698.9 318.2 Q 698.9 316.9, 699.5 316.2 Q 700.1 315.5, 701.3 315.5 Q 702.5 315.5, 703.1 316.2 Q 703.7 316.9, 703.7 318.2 Q 703.7 319.5, 703.1 320.2 Q 702.4 321.0, 701.3 321.0 Q 700.1 321.0, 699.5 320.2 Q 698.9 319.5, 698.9 318.2 M 701.3 320.4 Q 702.1 320.4, 702.5 319.8 Q 703.0 319.3, 703.0 318.2 Q 703.0 317.2, 702.5 316.7 Q 702.1 316.1, 701.3 316.1 Q 700.5 316.1, 700.0 316.6 Q 699.6 317.2, 699.6 318.2 Q 699.6 319.3, 700.0 319.8 Q 700.5 320.4, 701.3 320.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 629.7 434.7 L 632.5 439.2 Q 632.7 439.7, 633.2 440.5 Q 633.6 441.3, 633.6 441.3 L 633.6 434.7 L 634.8 434.7 L 634.8 443.2 L 633.6 443.2 L 630.6 438.3 Q 630.3 437.7, 629.9 437.1 Q 629.5 436.4, 629.4 436.2 L 629.4 443.2 L 628.3 443.2 L 628.3 434.7 L 629.7 434.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 635.8 440.1 Q 635.8 438.6, 636.5 437.8 Q 637.3 437.0, 638.7 437.0 Q 640.0 437.0, 640.6 437.8 Q 641.2 438.6, 641.2 440.1 L 641.2 440.3 L 636.9 440.3 Q 636.9 441.3, 637.4 441.9 Q 637.9 442.4, 638.8 442.4 Q 639.2 442.4, 639.7 442.3 Q 640.1 442.2, 640.7 442.0 L 641.0 442.7 Q 640.4 443.1, 639.8 443.2 Q 639.3 443.3, 638.7 443.3 Q 637.3 443.3, 636.5 442.5 Q 635.8 441.7, 635.8 440.1 M 638.7 437.9 Q 638.0 437.9, 637.5 438.3 Q 637.1 438.7, 637.0 439.5 L 640.0 439.5 Q 640.0 438.6, 639.6 438.2 Q 639.3 437.9, 638.7 437.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 647.3 437.1 L 647.3 443.6 Q 647.3 446.2, 644.5 446.2 Q 643.1 446.2, 641.9 445.6 L 642.3 444.8 Q 642.9 445.1, 643.4 445.2 Q 643.9 445.4, 644.5 445.4 Q 645.4 445.4, 645.8 445.0 Q 646.2 444.6, 646.2 443.6 L 646.2 442.5 Q 645.5 443.3, 644.4 443.3 Q 643.1 443.3, 642.4 442.5 Q 641.7 441.7, 641.7 440.2 Q 641.7 438.7, 642.5 437.8 Q 643.4 437.0, 644.9 437.0 Q 645.6 437.0, 646.4 437.2 L 646.4 437.1 L 647.3 437.1 M 644.5 442.4 Q 645.1 442.4, 645.5 442.1 Q 646.0 441.8, 646.2 441.1 L 646.2 438.0 Q 645.6 437.9, 644.9 437.9 Q 643.9 437.9, 643.4 438.5 Q 642.8 439.1, 642.8 440.2 Q 642.8 441.3, 643.3 441.9 Q 643.7 442.4, 644.5 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 648.3 434.7 L 649.4 434.7 L 649.4 443.2 L 648.3 443.2 L 648.3 434.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 650.5 440.1 Q 650.5 438.6, 651.2 437.8 Q 652.0 437.0, 653.4 437.0 Q 654.8 437.0, 655.6 437.8 Q 656.3 438.6, 656.3 440.1 Q 656.3 441.6, 655.6 442.5 Q 654.8 443.3, 653.4 443.3 Q 652.0 443.3, 651.2 442.5 Q 650.5 441.6, 650.5 440.1 M 651.6 440.1 Q 651.6 441.3, 652.1 441.9 Q 652.6 442.4, 653.4 442.4 Q 654.3 442.4, 654.7 441.9 Q 655.2 441.3, 655.2 440.1 Q 655.2 439.0, 654.7 438.4 Q 654.3 437.9, 653.4 437.9 Q 652.6 437.9, 652.1 438.4 Q 651.6 439.0, 651.6 440.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 660.1 437.0 Q 661.1 437.0, 661.6 437.5 Q 662.1 438.1, 662.1 439.2 L 662.1 443.2 L 661.0 443.2 L 661.0 439.2 Q 661.0 438.5, 660.7 438.2 Q 660.4 437.9, 659.8 437.9 Q 659.3 437.9, 658.8 438.1 Q 658.3 438.4, 658.0 438.8 L 658.0 443.2 L 656.9 443.2 L 656.9 437.1 L 657.8 437.1 L 657.9 437.9 Q 658.8 437.0, 660.1 437.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 663.1 434.7 L 664.2 434.7 L 664.2 435.8 L 663.1 435.8 L 663.1 434.7 M 663.1 437.1 L 664.2 437.1 L 664.2 443.2 L 663.1 443.2 L 663.1 437.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 666.5 442.4 L 669.9 442.4 L 669.9 443.2 L 665.2 443.2 L 665.2 442.5 L 668.4 438.0 L 665.4 438.0 L 665.4 437.1 L 669.8 437.1 L 669.8 437.8 L 666.5 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 670.4 441.6 Q 670.4 440.6, 671.1 440.0 Q 671.9 439.5, 673.4 439.5 L 674.3 439.5 L 674.3 439.3 Q 674.3 438.5, 674.0 438.2 Q 673.7 437.9, 672.9 437.9 Q 672.4 437.9, 672.0 437.9 Q 671.6 438.0, 671.0 438.3 L 670.7 437.5 Q 671.8 437.0, 672.9 437.0 Q 674.2 437.0, 674.8 437.5 Q 675.4 438.1, 675.4 439.3 L 675.4 443.2 L 674.6 443.2 Q 674.5 443.2, 674.5 443.0 Q 674.5 442.8, 674.4 442.5 Q 673.5 443.4, 672.4 443.4 Q 671.5 443.4, 670.9 442.9 Q 670.4 442.4, 670.4 441.6 M 671.5 441.5 Q 671.5 442.0, 671.8 442.3 Q 672.1 442.5, 672.6 442.5 Q 673.1 442.5, 673.5 442.3 Q 674.0 442.1, 674.3 441.7 L 674.3 440.3 L 673.5 440.3 Q 672.5 440.3, 672.0 440.6 Q 671.5 440.9, 671.5 441.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 679.2 437.0 Q 680.5 437.0, 681.2 437.8 Q 681.9 438.6, 681.9 440.0 Q 681.9 441.6, 681.1 442.5 Q 680.3 443.3, 678.8 443.3 Q 677.8 443.3, 676.9 443.0 L 676.4 442.8 L 676.4 434.1 L 677.5 434.1 L 677.5 437.7 Q 678.1 437.0, 679.2 437.0 M 678.8 442.4 Q 679.7 442.4, 680.3 441.8 Q 680.8 441.2, 680.8 440.0 Q 680.8 439.0, 680.4 438.4 Q 679.9 437.9, 679.2 437.9 Q 678.5 437.9, 678.1 438.2 Q 677.6 438.5, 677.5 439.1 L 677.5 442.3 Q 678.1 442.4, 678.8 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 682.5 434.1 L 683.6 434.1 L 683.6 443.2 L 682.5 443.2 L 682.5 434.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 684.6 440.1 Q 684.6 438.6, 685.4 437.8 Q 686.1 437.0, 687.5 437.0 Q 688.9 437.0, 689.5 437.8 Q 690.1 438.6, 690.1 440.1 L 690.1 440.3 L 685.8 440.3 Q 685.8 441.3, 686.3 441.9 Q 686.7 442.4, 687.6 442.4 Q 688.1 442.4, 688.5 442.3 Q 689.0 442.2, 689.5 442.0 L 689.9 442.7 Q 689.2 443.1, 688.7 443.2 Q 688.1 443.3, 687.6 443.3 Q 686.2 443.3, 685.4 442.5 Q 684.6 441.7, 684.6 440.1 M 687.5 437.9 Q 686.8 437.9, 686.4 438.3 Q 686.0 438.7, 685.8 439.5 L 688.9 439.5 Q 688.8 438.6, 688.5 438.2 Q 688.1 437.9, 687.5 437.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 696.7 443.8 L 696.7 444.8 L 690.6 444.8 L 690.6 443.8 L 696.7 443.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 696.7 439.8 Q 696.7 438.1, 697.2 436.7 Q 697.7 435.3, 698.6 433.7 L 699.3 434.2 Q 698.5 435.6, 698.1 436.9 Q 697.8 438.2, 697.8 439.8 Q 697.8 441.4, 698.1 442.7 Q 698.5 444.0, 699.3 445.5 L 698.6 445.9 Q 697.7 444.4, 697.2 443.0 Q 696.7 441.6, 696.7 439.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 699.6 436.4 Q 699.9 435.5, 700.7 435.1 Q 701.4 434.6, 702.5 434.6 Q 703.8 434.6, 704.5 435.3 Q 705.2 436.0, 705.2 437.3 Q 705.2 438.5, 704.3 439.7 Q 703.3 440.9, 701.4 442.3 L 705.3 442.3 L 705.3 443.2 L 699.6 443.2 L 699.6 442.4 Q 701.2 441.3, 702.1 440.5 Q 703.1 439.6, 703.5 438.9 Q 704.0 438.1, 704.0 437.3 Q 704.0 436.5, 703.6 436.1 Q 703.2 435.6, 702.5 435.6 Q 701.8 435.6, 701.3 435.9 Q 700.9 436.2, 700.5 436.8 L 699.6 436.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 706.1 442.0 L 707.3 442.0 L 707.3 443.0 L 707.0 444.7 L 706.6 444.7 L 706.6 443.2 L 706.1 443.2 L 706.1 442.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 715.1 443.3 Q 713.6 443.3, 712.8 442.2 Q 712.0 441.0, 712.0 439.0 Q 712.0 436.9, 712.8 435.8 Q 713.6 434.6, 715.1 434.6 Q 716.7 434.6, 717.5 435.8 Q 718.2 436.9, 718.2 439.0 Q 718.2 441.0, 717.5 442.2 Q 716.7 443.3, 715.1 443.3 M 715.1 442.4 Q 716.1 442.4, 716.6 441.5 Q 717.1 440.7, 717.1 439.0 Q 717.1 437.3, 716.6 436.5 Q 716.1 435.6, 715.1 435.6 Q 714.2 435.6, 713.7 436.5 Q 713.2 437.3, 713.2 439.0 Q 713.2 440.7, 713.7 441.5 Q 714.2 442.4, 715.1 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 721.7 439.8 Q 721.7 441.6, 721.2 443.0 Q 720.7 444.4, 719.7 445.9 L 719.0 445.5 Q 719.8 444.0, 720.2 442.7 Q 720.6 441.4, 720.6 439.8 Q 720.6 438.2, 720.2 436.9 Q 719.8 435.6, 719.0 434.2 L 719.7 433.7 Q 720.7 435.3, 721.2 436.7 Q 721.7 438.1, 721.7 439.8 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 861.4,341.4 L 854.8,337.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 854.8,337.6 L 848.3,333.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 846.4,333.9 L 846.4,326.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 846.4,326.2 L 846.4,318.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 850.2,333.9 L 850.2,326.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 850.2,326.2 L 850.2,318.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 848.3,333.9 L 832.1,343.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 832.1,343.2 L 815.1,335.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 828.1,345.4 L 816.1,340.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 815.1,335.6 L 802.6,349.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 802.6,349.4 L 812.0,365.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 807.3,350.0 L 813.8,361.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 812.0,365.6 L 819.6,364.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 819.6,364.0 L 827.2,362.4\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 812.0,365.6 L 804.4,382.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 804.4,382.6 L 796.6,383.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 796.6,383.4 L 788.9,384.3\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 805.9,381.5 L 810.2,387.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 810.2,387.4 L 814.4,393.3\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 802.9,383.7 L 807.1,389.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 807.1,389.6 L 811.4,395.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-7 atom-3\" d=\"M 830.5,358.4 L 831.3,350.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-7 atom-3\" d=\"M 831.3,350.8 L 832.1,343.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 862.0 343.2 Q 862.0 341.9, 862.6 341.2 Q 863.3 340.5, 864.4 340.5 Q 865.6 340.5, 866.2 341.2 Q 866.9 341.9, 866.9 343.2 Q 866.9 344.5, 866.2 345.2 Q 865.6 345.9, 864.4 345.9 Q 863.3 345.9, 862.6 345.2 Q 862.0 344.5, 862.0 343.2 M 864.4 345.3 Q 865.2 345.3, 865.7 344.8 Q 866.1 344.2, 866.1 343.2 Q 866.1 342.2, 865.7 341.6 Q 865.2 341.1, 864.4 341.1 Q 863.6 341.1, 863.2 341.6 Q 862.8 342.1, 862.8 343.2 Q 862.8 344.3, 863.2 344.8 Q 863.6 345.3, 864.4 345.3 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 867.2 340.6 L 868.0 340.6 L 868.0 342.8 L 870.7 342.8 L 870.7 340.6 L 871.4 340.6 L 871.4 345.8 L 870.7 345.8 L 870.7 343.4 L 868.0 343.4 L 868.0 345.8 L 867.2 345.8 L 867.2 340.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 845.9 315.2 Q 845.9 314.0, 846.5 313.2 Q 847.1 312.5, 848.3 312.5 Q 849.5 312.5, 850.1 313.2 Q 850.7 314.0, 850.7 315.2 Q 850.7 316.5, 850.1 317.2 Q 849.4 318.0, 848.3 318.0 Q 847.1 318.0, 846.5 317.2 Q 845.9 316.5, 845.9 315.2 M 848.3 317.4 Q 849.1 317.4, 849.5 316.8 Q 850.0 316.3, 850.0 315.2 Q 850.0 314.2, 849.5 313.7 Q 849.1 313.1, 848.3 313.1 Q 847.5 313.1, 847.0 313.7 Q 846.6 314.2, 846.6 315.2 Q 846.6 316.3, 847.0 316.8 Q 847.5 317.4, 848.3 317.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 827.8 361.7 Q 827.8 360.5, 828.4 359.8 Q 829.0 359.0, 830.2 359.0 Q 831.4 359.0, 832.0 359.8 Q 832.6 360.5, 832.6 361.7 Q 832.6 363.0, 832.0 363.7 Q 831.3 364.5, 830.2 364.5 Q 829.0 364.5, 828.4 363.7 Q 827.8 363.0, 827.8 361.7 M 830.2 363.9 Q 831.0 363.9, 831.4 363.3 Q 831.9 362.8, 831.9 361.7 Q 831.9 360.7, 831.4 360.2 Q 831.0 359.6, 830.2 359.6 Q 829.4 359.6, 828.9 360.2 Q 828.5 360.7, 828.5 361.7 Q 828.5 362.8, 828.9 363.3 Q 829.4 363.9, 830.2 363.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 778.6 382.0 L 779.3 382.0 L 779.3 384.2 L 782.0 384.2 L 782.0 382.0 L 782.8 382.0 L 782.8 387.2 L 782.0 387.2 L 782.0 384.8 L 779.3 384.8 L 779.3 387.2 L 778.6 387.2 L 778.6 382.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 783.4 384.6 Q 783.4 383.3, 784.0 382.6 Q 784.7 381.9, 785.8 381.9 Q 787.0 381.9, 787.6 382.6 Q 788.2 383.3, 788.2 384.6 Q 788.2 385.9, 787.6 386.6 Q 787.0 387.3, 785.8 387.3 Q 784.7 387.3, 784.0 386.6 Q 783.4 385.9, 783.4 384.6 M 785.8 386.7 Q 786.6 386.7, 787.1 386.2 Q 787.5 385.7, 787.5 384.6 Q 787.5 383.6, 787.1 383.0 Q 786.6 382.5, 785.8 382.5 Q 785.0 382.5, 784.6 383.0 Q 784.1 383.5, 784.1 384.6 Q 784.1 385.7, 784.6 386.2 Q 785.0 386.7, 785.8 386.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-10\" d=\"M 812.9 397.7 Q 812.9 396.5, 813.5 395.8 Q 814.2 395.0, 815.3 395.0 Q 816.5 395.0, 817.1 395.8 Q 817.8 396.5, 817.8 397.7 Q 817.8 399.0, 817.1 399.7 Q 816.5 400.5, 815.3 400.5 Q 814.2 400.5, 813.5 399.7 Q 812.9 399.0, 812.9 397.7 M 815.3 399.9 Q 816.1 399.9, 816.6 399.3 Q 817.0 398.8, 817.0 397.7 Q 817.0 396.7, 816.6 396.2 Q 816.1 395.6, 815.3 395.6 Q 814.5 395.6, 814.1 396.2 Q 813.7 396.7, 813.7 397.7 Q 813.7 398.8, 814.1 399.3 Q 814.5 399.9, 815.3 399.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 780.4 434.7 L 783.1 439.2 Q 783.4 439.7, 783.9 440.5 Q 784.3 441.3, 784.3 441.3 L 784.3 434.7 L 785.5 434.7 L 785.5 443.2 L 784.3 443.2 L 781.3 438.3 Q 781.0 437.7, 780.6 437.1 Q 780.2 436.4, 780.1 436.2 L 780.1 443.2 L 779.0 443.2 L 779.0 434.7 L 780.4 434.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 786.5 440.1 Q 786.5 438.6, 787.2 437.8 Q 788.0 437.0, 789.3 437.0 Q 790.7 437.0, 791.3 437.8 Q 791.9 438.6, 791.9 440.1 L 791.9 440.3 L 787.6 440.3 Q 787.6 441.3, 788.1 441.9 Q 788.6 442.4, 789.4 442.4 Q 789.9 442.4, 790.4 442.3 Q 790.8 442.2, 791.3 442.0 L 791.7 442.7 Q 791.1 443.1, 790.5 443.2 Q 790.0 443.3, 789.4 443.3 Q 788.0 443.3, 787.2 442.5 Q 786.5 441.7, 786.5 440.1 M 789.3 437.9 Q 788.6 437.9, 788.2 438.3 Q 787.8 438.7, 787.7 439.5 L 790.7 439.5 Q 790.6 438.6, 790.3 438.2 Q 790.0 437.9, 789.3 437.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 798.0 437.1 L 798.0 443.6 Q 798.0 446.2, 795.2 446.2 Q 793.8 446.2, 792.6 445.6 L 793.0 444.8 Q 793.6 445.1, 794.1 445.2 Q 794.6 445.4, 795.2 445.4 Q 796.1 445.4, 796.4 445.0 Q 796.8 444.6, 796.8 443.6 L 796.8 442.5 Q 796.2 443.3, 795.1 443.3 Q 793.8 443.3, 793.1 442.5 Q 792.4 441.7, 792.4 440.2 Q 792.4 438.7, 793.2 437.8 Q 794.1 437.0, 795.5 437.0 Q 796.3 437.0, 797.0 437.2 L 797.1 437.1 L 798.0 437.1 M 795.2 442.4 Q 795.8 442.4, 796.2 442.1 Q 796.7 441.8, 796.8 441.1 L 796.8 438.0 Q 796.2 437.9, 795.5 437.9 Q 794.6 437.9, 794.1 438.5 Q 793.5 439.1, 793.5 440.2 Q 793.5 441.3, 793.9 441.9 Q 794.4 442.4, 795.2 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 799.0 434.7 L 800.1 434.7 L 800.1 443.2 L 799.0 443.2 L 799.0 434.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 801.2 440.1 Q 801.2 438.6, 801.9 437.8 Q 802.7 437.0, 804.1 437.0 Q 805.5 437.0, 806.3 437.8 Q 807.0 438.6, 807.0 440.1 Q 807.0 441.6, 806.3 442.5 Q 805.5 443.3, 804.1 443.3 Q 802.7 443.3, 801.9 442.5 Q 801.2 441.6, 801.2 440.1 M 802.3 440.1 Q 802.3 441.3, 802.8 441.9 Q 803.2 442.4, 804.1 442.4 Q 804.9 442.4, 805.4 441.9 Q 805.9 441.3, 805.9 440.1 Q 805.9 439.0, 805.4 438.4 Q 804.9 437.9, 804.1 437.9 Q 803.2 437.9, 802.8 438.4 Q 802.3 439.0, 802.3 440.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 810.8 437.0 Q 811.8 437.0, 812.3 437.5 Q 812.8 438.1, 812.8 439.2 L 812.8 443.2 L 811.7 443.2 L 811.7 439.2 Q 811.7 438.5, 811.4 438.2 Q 811.1 437.9, 810.5 437.9 Q 809.9 437.9, 809.5 438.1 Q 809.0 438.4, 808.7 438.8 L 808.7 443.2 L 807.6 443.2 L 807.6 437.1 L 808.5 437.1 L 808.6 437.9 Q 809.5 437.0, 810.8 437.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 813.7 434.7 L 814.8 434.7 L 814.8 435.8 L 813.7 435.8 L 813.7 434.7 M 813.7 437.1 L 814.8 437.1 L 814.8 443.2 L 813.7 443.2 L 813.7 437.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 817.2 442.4 L 820.6 442.4 L 820.6 443.2 L 815.9 443.2 L 815.9 442.5 L 819.1 438.0 L 816.0 438.0 L 816.0 437.1 L 820.5 437.1 L 820.5 437.8 L 817.2 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 821.0 441.6 Q 821.0 440.6, 821.8 440.0 Q 822.6 439.5, 824.1 439.5 L 825.0 439.5 L 825.0 439.3 Q 825.0 438.5, 824.7 438.2 Q 824.4 437.9, 823.6 437.9 Q 823.1 437.9, 822.7 437.9 Q 822.3 438.0, 821.7 438.3 L 821.4 437.5 Q 822.5 437.0, 823.6 437.0 Q 824.9 437.0, 825.5 437.5 Q 826.1 438.1, 826.1 439.3 L 826.1 443.2 L 825.2 443.2 Q 825.2 443.2, 825.2 443.0 Q 825.2 442.8, 825.1 442.5 Q 824.2 443.4, 823.1 443.4 Q 822.1 443.4, 821.6 442.9 Q 821.0 442.4, 821.0 441.6 M 822.2 441.5 Q 822.2 442.0, 822.5 442.3 Q 822.7 442.5, 823.3 442.5 Q 823.8 442.5, 824.2 442.3 Q 824.7 442.1, 825.0 441.7 L 825.0 440.3 L 824.1 440.3 Q 823.2 440.3, 822.7 440.6 Q 822.2 440.9, 822.2 441.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 829.9 437.0 Q 831.2 437.0, 831.9 437.8 Q 832.6 438.6, 832.6 440.0 Q 832.6 441.6, 831.8 442.5 Q 830.9 443.3, 829.5 443.3 Q 828.5 443.3, 827.6 443.0 L 827.0 442.8 L 827.0 434.1 L 828.2 434.1 L 828.2 437.7 Q 828.8 437.0, 829.9 437.0 M 829.5 442.4 Q 830.4 442.4, 830.9 441.8 Q 831.5 441.2, 831.5 440.0 Q 831.5 439.0, 831.0 438.4 Q 830.6 437.9, 829.8 437.9 Q 829.2 437.9, 828.8 438.2 Q 828.3 438.5, 828.2 439.1 L 828.2 442.3 Q 828.8 442.4, 829.5 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 833.2 434.1 L 834.3 434.1 L 834.3 443.2 L 833.2 443.2 L 833.2 434.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 835.3 440.1 Q 835.3 438.6, 836.1 437.8 Q 836.8 437.0, 838.2 437.0 Q 839.6 437.0, 840.2 437.8 Q 840.8 438.6, 840.8 440.1 L 840.8 440.3 L 836.5 440.3 Q 836.5 441.3, 837.0 441.9 Q 837.4 442.4, 838.3 442.4 Q 838.8 442.4, 839.2 442.3 Q 839.7 442.2, 840.2 442.0 L 840.5 442.7 Q 839.9 443.1, 839.4 443.2 Q 838.8 443.3, 838.2 443.3 Q 836.9 443.3, 836.1 442.5 Q 835.3 441.7, 835.3 440.1 M 838.2 437.9 Q 837.5 437.9, 837.1 438.3 Q 836.6 438.7, 836.5 439.5 L 839.6 439.5 Q 839.5 438.6, 839.2 438.2 Q 838.8 437.9, 838.2 437.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 847.4 443.8 L 847.4 444.8 L 841.2 444.8 L 841.2 443.8 L 847.4 443.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 847.4 439.8 Q 847.4 438.1, 847.8 436.7 Q 848.4 435.3, 849.3 433.7 L 850.0 434.2 Q 849.2 435.6, 848.8 436.9 Q 848.4 438.2, 848.4 439.8 Q 848.4 441.4, 848.8 442.7 Q 849.2 444.0, 850.0 445.5 L 849.3 445.9 Q 848.4 444.4, 847.8 443.0 Q 847.4 441.6, 847.4 439.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 850.3 436.4 Q 850.6 435.5, 851.4 435.1 Q 852.1 434.6, 853.2 434.6 Q 854.4 434.6, 855.2 435.3 Q 855.9 436.0, 855.9 437.3 Q 855.9 438.5, 854.9 439.7 Q 854.0 440.9, 852.1 442.3 L 856.0 442.3 L 856.0 443.2 L 850.3 443.2 L 850.3 442.4 Q 851.9 441.3, 852.8 440.5 Q 853.8 439.6, 854.2 438.9 Q 854.7 438.1, 854.7 437.3 Q 854.7 436.5, 854.3 436.1 Q 853.9 435.6, 853.2 435.6 Q 852.5 435.6, 852.0 435.9 Q 851.6 436.2, 851.2 436.8 L 850.3 436.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 856.7 442.0 L 857.9 442.0 L 857.9 443.0 L 857.7 444.7 L 857.3 444.7 L 857.3 443.2 L 856.7 443.2 L 856.7 442.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 863.2 442.3 L 865.0 442.3 L 865.0 435.9 L 863.0 436.6 L 862.7 435.9 L 865.3 434.7 L 866.2 434.8 L 866.2 442.3 L 867.8 442.3 L 867.8 443.2 L 863.2 443.2 L 863.2 442.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 871.0 439.8 Q 871.0 441.6, 870.5 443.0 Q 870.0 444.4, 869.0 445.9 L 868.3 445.5 Q 869.1 444.0, 869.5 442.7 Q 869.9 441.4, 869.9 439.8 Q 869.9 438.2, 869.5 436.9 Q 869.1 435.6, 868.3 434.2 L 869.0 433.7 Q 870.0 435.3, 870.5 436.7 Q 871.0 438.1, 871.0 439.8 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 1011.2,350.0 L 1004.7,346.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 1004.7,346.2 L 998.1,342.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 996.3,342.4 L 996.3,334.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 996.3,334.8 L 996.3,327.1\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 1000.0,342.4 L 1000.0,334.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 1000.0,334.8 L 1000.0,327.1\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 998.1,342.4 L 982.0,351.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 982.0,351.7 L 982.0,370.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 978.2,354.5 L 978.2,367.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 982.0,370.4 L 965.8,379.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 965.8,379.7 L 965.8,387.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 965.8,387.5 L 965.8,395.2\" style=\"fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 965.8,379.7 L 949.7,370.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 965.3,375.1 L 954.0,368.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 949.7,370.4 L 949.7,351.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 949.7,351.7 L 942.1,347.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 942.1,347.3 L 934.5,343.0\" style=\"fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 949.7,351.7 L 965.8,342.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 954.0,353.6 L 965.3,347.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 965.8,342.4 L 965.8,323.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-11 atom-12\" d=\"M 965.8,323.8 L 959.3,320.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-11 atom-12\" d=\"M 959.3,320.0 L 952.7,316.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12 atom-11 atom-13\" d=\"M 964.9,322.1 L 971.4,318.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12 atom-11 atom-13\" d=\"M 971.4,318.4 L 978.0,314.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12 atom-11 atom-13\" d=\"M 966.8,325.4 L 973.3,321.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12 atom-11 atom-13\" d=\"M 973.3,321.6 L 979.9,317.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-13 atom-10 atom-3\" d=\"M 965.8,342.4 L 982.0,351.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 1011.8 351.7 Q 1011.8 350.5, 1012.5 349.8 Q 1013.1 349.1, 1014.3 349.1 Q 1015.4 349.1, 1016.1 349.8 Q 1016.7 350.5, 1016.7 351.7 Q 1016.7 353.0, 1016.1 353.8 Q 1015.4 354.5, 1014.3 354.5 Q 1013.1 354.5, 1012.5 353.8 Q 1011.8 353.0, 1011.8 351.7 M 1014.3 353.9 Q 1015.1 353.9, 1015.5 353.3 Q 1015.9 352.8, 1015.9 351.7 Q 1015.9 350.7, 1015.5 350.2 Q 1015.1 349.7, 1014.3 349.7 Q 1013.5 349.7, 1013.0 350.2 Q 1012.6 350.7, 1012.6 351.7 Q 1012.6 352.8, 1013.0 353.3 Q 1013.5 353.9, 1014.3 353.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 1017.1 349.1 L 1017.8 349.1 L 1017.8 351.4 L 1020.5 351.4 L 1020.5 349.1 L 1021.2 349.1 L 1021.2 354.4 L 1020.5 354.4 L 1020.5 352.0 L 1017.8 352.0 L 1017.8 354.4 L 1017.1 354.4 L 1017.1 349.1 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 995.7 323.8 Q 995.7 322.5, 996.3 321.8 Q 996.9 321.1, 998.1 321.1 Q 999.3 321.1, 999.9 321.8 Q 1000.5 322.5, 1000.5 323.8 Q 1000.5 325.1, 999.9 325.8 Q 999.3 326.5, 998.1 326.5 Q 997.0 326.5, 996.3 325.8 Q 995.7 325.1, 995.7 323.8 M 998.1 325.9 Q 998.9 325.9, 999.4 325.4 Q 999.8 324.8, 999.8 323.8 Q 999.8 322.7, 999.4 322.2 Q 998.9 321.7, 998.1 321.7 Q 997.3 321.7, 996.9 322.2 Q 996.4 322.7, 996.4 323.8 Q 996.4 324.8, 996.9 325.4 Q 997.3 325.9, 998.1 325.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-6\" d=\"M 963.8 398.5 Q 963.8 397.2, 964.4 396.5 Q 965.0 395.8, 966.2 395.8 Q 967.3 395.8, 967.9 396.6 L 967.4 397.0 Q 966.9 396.4, 966.2 396.4 Q 965.4 396.4, 965.0 397.0 Q 964.5 397.5, 964.5 398.5 Q 964.5 399.6, 965.0 400.1 Q 965.4 400.6, 966.3 400.6 Q 966.8 400.6, 967.5 400.3 L 967.7 400.9 Q 967.5 401.0, 967.0 401.1 Q 966.6 401.2, 966.2 401.2 Q 965.0 401.2, 964.4 400.5 Q 963.8 399.8, 963.8 398.5 \" fill=\"#00CC00\"/>\n",
"<path class=\"atom-6\" d=\"M 968.2 395.5 L 968.8 395.5 L 968.8 401.2 L 968.2 401.2 L 968.2 395.5 \" fill=\"#00CC00\"/>\n",
"<path class=\"atom-9\" d=\"M 928.8 342.6 Q 928.8 341.3, 929.4 340.6 Q 930.0 339.9, 931.2 339.9 Q 932.3 339.9, 932.9 340.7 L 932.4 341.1 Q 932.0 340.5, 931.2 340.5 Q 930.4 340.5, 930.0 341.0 Q 929.6 341.6, 929.6 342.6 Q 929.6 343.6, 930.0 344.2 Q 930.4 344.7, 931.3 344.7 Q 931.9 344.7, 932.6 344.4 L 932.8 344.9 Q 932.5 345.1, 932.1 345.2 Q 931.6 345.3, 931.2 345.3 Q 930.0 345.3, 929.4 344.6 Q 928.8 343.9, 928.8 342.6 \" fill=\"#00CC00\"/>\n",
"<path class=\"atom-9\" d=\"M 933.2 339.6 L 933.9 339.6 L 933.9 345.2 L 933.2 345.2 L 933.2 339.6 \" fill=\"#00CC00\"/>\n",
"<path class=\"atom-12\" d=\"M 942.5 311.8 L 943.2 311.8 L 943.2 314.1 L 945.9 314.1 L 945.9 311.8 L 946.6 311.8 L 946.6 317.1 L 945.9 317.1 L 945.9 314.7 L 943.2 314.7 L 943.2 317.1 L 942.5 317.1 L 942.5 311.8 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-12\" d=\"M 947.2 314.4 Q 947.2 313.2, 947.9 312.5 Q 948.5 311.8, 949.7 311.8 Q 950.8 311.8, 951.5 312.5 Q 952.1 313.2, 952.1 314.4 Q 952.1 315.7, 951.5 316.5 Q 950.8 317.2, 949.7 317.2 Q 948.5 317.2, 947.9 316.5 Q 947.2 315.7, 947.2 314.4 M 949.7 316.6 Q 950.5 316.6, 950.9 316.1 Q 951.3 315.5, 951.3 314.4 Q 951.3 313.4, 950.9 312.9 Q 950.5 312.4, 949.7 312.4 Q 948.9 312.4, 948.4 312.9 Q 948.0 313.4, 948.0 314.4 Q 948.0 315.5, 948.4 316.1 Q 948.9 316.6, 949.7 316.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-13\" d=\"M 979.5 314.4 Q 979.5 313.2, 980.2 312.5 Q 980.8 311.8, 982.0 311.8 Q 983.1 311.8, 983.8 312.5 Q 984.4 313.2, 984.4 314.4 Q 984.4 315.7, 983.8 316.5 Q 983.1 317.2, 982.0 317.2 Q 980.8 317.2, 980.2 316.5 Q 979.5 315.7, 979.5 314.4 M 982.0 316.6 Q 982.8 316.6, 983.2 316.1 Q 983.6 315.5, 983.6 314.4 Q 983.6 313.4, 983.2 312.9 Q 982.8 312.4, 982.0 312.4 Q 981.2 312.4, 980.7 312.9 Q 980.3 313.4, 980.3 314.4 Q 980.3 315.5, 980.7 316.1 Q 981.2 316.6, 982.0 316.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 929.7 434.7 L 932.5 439.2 Q 932.7 439.7, 933.2 440.5 Q 933.6 441.3, 933.7 441.3 L 933.7 434.7 L 934.8 434.7 L 934.8 443.2 L 933.6 443.2 L 930.6 438.3 Q 930.3 437.7, 929.9 437.1 Q 929.6 436.4, 929.4 436.2 L 929.4 443.2 L 928.3 443.2 L 928.3 434.7 L 929.7 434.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 935.8 440.1 Q 935.8 438.6, 936.5 437.8 Q 937.3 437.0, 938.7 437.0 Q 940.0 437.0, 940.6 437.8 Q 941.2 438.6, 941.2 440.1 L 941.2 440.3 L 936.9 440.3 Q 937.0 441.3, 937.4 441.9 Q 937.9 442.4, 938.8 442.4 Q 939.2 442.4, 939.7 442.3 Q 940.1 442.2, 940.7 442.0 L 941.0 442.7 Q 940.4 443.1, 939.8 443.2 Q 939.3 443.3, 938.7 443.3 Q 937.3 443.3, 936.6 442.5 Q 935.8 441.7, 935.8 440.1 M 938.7 437.9 Q 938.0 437.9, 937.5 438.3 Q 937.1 438.7, 937.0 439.5 L 940.1 439.5 Q 940.0 438.6, 939.6 438.2 Q 939.3 437.9, 938.7 437.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 947.3 437.1 L 947.3 443.6 Q 947.3 446.2, 944.5 446.2 Q 943.1 446.2, 941.9 445.6 L 942.3 444.8 Q 943.0 445.1, 943.4 445.2 Q 943.9 445.4, 944.5 445.4 Q 945.4 445.4, 945.8 445.0 Q 946.2 444.6, 946.2 443.6 L 946.2 442.5 Q 945.5 443.3, 944.4 443.3 Q 943.1 443.3, 942.4 442.5 Q 941.7 441.7, 941.7 440.2 Q 941.7 438.7, 942.5 437.8 Q 943.4 437.0, 944.9 437.0 Q 945.6 437.0, 946.4 437.2 L 946.4 437.1 L 947.3 437.1 M 944.5 442.4 Q 945.1 442.4, 945.5 442.1 Q 946.0 441.8, 946.2 441.1 L 946.2 438.0 Q 945.6 437.9, 944.9 437.9 Q 943.9 437.9, 943.4 438.5 Q 942.8 439.1, 942.8 440.2 Q 942.8 441.3, 943.3 441.9 Q 943.7 442.4, 944.5 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 948.3 434.7 L 949.4 434.7 L 949.4 443.2 L 948.3 443.2 L 948.3 434.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 950.5 440.1 Q 950.5 438.6, 951.2 437.8 Q 952.0 437.0, 953.4 437.0 Q 954.8 437.0, 955.6 437.8 Q 956.4 438.6, 956.4 440.1 Q 956.4 441.6, 955.6 442.5 Q 954.8 443.3, 953.4 443.3 Q 952.0 443.3, 951.2 442.5 Q 950.5 441.6, 950.5 440.1 M 951.6 440.1 Q 951.6 441.3, 952.1 441.9 Q 952.6 442.4, 953.4 442.4 Q 954.3 442.4, 954.7 441.9 Q 955.2 441.3, 955.2 440.1 Q 955.2 439.0, 954.7 438.4 Q 954.3 437.9, 953.4 437.9 Q 952.6 437.9, 952.1 438.4 Q 951.6 439.0, 951.6 440.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 960.1 437.0 Q 961.1 437.0, 961.6 437.5 Q 962.1 438.1, 962.1 439.2 L 962.1 443.2 L 961.0 443.2 L 961.0 439.2 Q 961.0 438.5, 960.7 438.2 Q 960.5 437.9, 959.8 437.9 Q 959.3 437.9, 958.8 438.1 Q 958.3 438.4, 958.0 438.8 L 958.0 443.2 L 956.9 443.2 L 956.9 437.1 L 957.8 437.1 L 958.0 437.9 Q 958.8 437.0, 960.1 437.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 963.1 434.7 L 964.2 434.7 L 964.2 435.8 L 963.1 435.8 L 963.1 434.7 M 963.1 437.1 L 964.2 437.1 L 964.2 443.2 L 963.1 443.2 L 963.1 437.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 966.5 442.4 L 969.9 442.4 L 969.9 443.2 L 965.2 443.2 L 965.2 442.5 L 968.4 438.0 L 965.4 438.0 L 965.4 437.1 L 969.8 437.1 L 969.8 437.8 L 966.5 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 970.4 441.6 Q 970.4 440.6, 971.2 440.0 Q 971.9 439.5, 973.4 439.5 L 974.3 439.5 L 974.3 439.3 Q 974.3 438.5, 974.0 438.2 Q 973.7 437.9, 972.9 437.9 Q 972.4 437.9, 972.0 437.9 Q 971.6 438.0, 971.0 438.3 L 970.7 437.5 Q 971.8 437.0, 972.9 437.0 Q 974.2 437.0, 974.8 437.5 Q 975.4 438.1, 975.4 439.3 L 975.4 443.2 L 974.6 443.2 Q 974.6 443.2, 974.5 443.0 Q 974.5 442.8, 974.4 442.5 Q 973.5 443.4, 972.4 443.4 Q 971.5 443.4, 970.9 442.9 Q 970.4 442.4, 970.4 441.6 M 971.5 441.5 Q 971.5 442.0, 971.8 442.3 Q 972.1 442.5, 972.6 442.5 Q 973.1 442.5, 973.5 442.3 Q 974.0 442.1, 974.3 441.7 L 974.3 440.3 L 973.5 440.3 Q 972.5 440.3, 972.0 440.6 Q 971.5 440.9, 971.5 441.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 979.2 437.0 Q 980.5 437.0, 981.2 437.8 Q 982.0 438.6, 982.0 440.0 Q 982.0 441.6, 981.1 442.5 Q 980.3 443.3, 978.8 443.3 Q 977.8 443.3, 976.9 443.0 L 976.4 442.8 L 976.4 434.1 L 977.5 434.1 L 977.5 437.7 Q 978.1 437.0, 979.2 437.0 M 978.8 442.4 Q 979.7 442.4, 980.3 441.8 Q 980.8 441.2, 980.8 440.0 Q 980.8 439.0, 980.4 438.4 Q 980.0 437.9, 979.2 437.9 Q 978.5 437.9, 978.1 438.2 Q 977.7 438.5, 977.5 439.1 L 977.5 442.3 Q 978.1 442.4, 978.8 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 982.5 434.1 L 983.6 434.1 L 983.6 443.2 L 982.5 443.2 L 982.5 434.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 984.6 440.1 Q 984.6 438.6, 985.4 437.8 Q 986.2 437.0, 987.5 437.0 Q 988.9 437.0, 989.5 437.8 Q 990.1 438.6, 990.1 440.1 L 990.1 440.3 L 985.8 440.3 Q 985.8 441.3, 986.3 441.9 Q 986.8 442.4, 987.6 442.4 Q 988.1 442.4, 988.6 442.3 Q 989.0 442.2, 989.5 442.0 L 989.9 442.7 Q 989.3 443.1, 988.7 443.2 Q 988.1 443.3, 987.6 443.3 Q 986.2 443.3, 985.4 442.5 Q 984.6 441.7, 984.6 440.1 M 987.5 437.9 Q 986.8 437.9, 986.4 438.3 Q 986.0 438.7, 985.8 439.5 L 988.9 439.5 Q 988.8 438.6, 988.5 438.2 Q 988.2 437.9, 987.5 437.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 996.7 443.8 L 996.7 444.8 L 990.6 444.8 L 990.6 443.8 L 996.7 443.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 996.7 439.8 Q 996.7 438.1, 997.2 436.7 Q 997.7 435.3, 998.7 433.7 L 999.3 434.2 Q 998.5 435.6, 998.1 436.9 Q 997.8 438.2, 997.8 439.8 Q 997.8 441.4, 998.1 442.7 Q 998.5 444.0, 999.3 445.5 L 998.7 445.9 Q 997.7 444.4, 997.2 443.0 Q 996.7 441.6, 996.7 439.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1003.7 438.8 Q 1004.5 439.0, 1004.9 439.5 Q 1005.3 440.1, 1005.3 440.9 Q 1005.3 441.6, 1005.0 442.2 Q 1004.6 442.7, 1004.0 443.1 Q 1003.3 443.4, 1002.4 443.4 Q 1001.5 443.4, 1000.8 443.0 Q 1000.2 442.7, 999.6 442.1 L 1000.3 441.4 Q 1000.8 442.0, 1001.3 442.2 Q 1001.7 442.4, 1002.4 442.4 Q 1003.2 442.4, 1003.7 442.0 Q 1004.1 441.6, 1004.1 440.9 Q 1004.1 440.0, 1003.6 439.6 Q 1003.2 439.3, 1002.1 439.3 L 1001.5 439.3 L 1001.5 438.4 L 1002.0 438.4 Q 1003.0 438.4, 1003.5 438.0 Q 1004.0 437.6, 1004.0 436.8 Q 1004.0 436.3, 1003.5 435.9 Q 1003.1 435.6, 1002.4 435.6 Q 1001.7 435.6, 1001.3 435.9 Q 1000.9 436.1, 1000.5 436.7 L 999.7 436.3 Q 1000.0 435.6, 1000.7 435.1 Q 1001.4 434.6, 1002.4 434.6 Q 1003.7 434.6, 1004.4 435.2 Q 1005.2 435.8, 1005.2 436.8 Q 1005.2 437.5, 1004.8 438.0 Q 1004.4 438.5, 1003.7 438.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1006.0 442.0 L 1007.2 442.0 L 1007.2 443.0 L 1007.0 444.7 L 1006.6 444.7 L 1006.6 443.2 L 1006.0 443.2 L 1006.0 442.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1015.1 443.3 Q 1013.6 443.3, 1012.8 442.2 Q 1012.0 441.0, 1012.0 439.0 Q 1012.0 436.9, 1012.8 435.8 Q 1013.6 434.6, 1015.1 434.6 Q 1016.7 434.6, 1017.5 435.8 Q 1018.2 436.9, 1018.2 439.0 Q 1018.2 441.0, 1017.5 442.2 Q 1016.7 443.3, 1015.1 443.3 M 1015.1 442.4 Q 1016.1 442.4, 1016.5 441.5 Q 1017.0 440.7, 1017.0 439.0 Q 1017.0 437.3, 1016.5 436.5 Q 1016.1 435.6, 1015.1 435.6 Q 1014.2 435.6, 1013.7 436.5 Q 1013.2 437.3, 1013.2 439.0 Q 1013.2 440.7, 1013.7 441.5 Q 1014.2 442.4, 1015.1 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1021.7 439.8 Q 1021.7 441.6, 1021.2 443.0 Q 1020.7 444.4, 1019.7 445.9 L 1019.0 445.5 Q 1019.8 444.0, 1020.2 442.7 Q 1020.6 441.4, 1020.6 439.8 Q 1020.6 438.2, 1020.2 436.9 Q 1019.8 435.6, 1019.0 434.2 L 1019.7 433.7 Q 1020.7 435.3, 1021.2 436.7 Q 1021.7 438.1, 1021.7 439.8 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 1168.2,345.4 L 1161.6,341.7\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 1161.6,341.7 L 1155.0,337.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 1153.2,337.9 L 1153.2,330.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 1153.2,330.2 L 1153.2,322.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 1156.9,337.9 L 1156.9,330.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 1156.9,330.2 L 1156.9,322.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 1155.0,337.9 L 1138.9,347.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 1138.9,347.2 L 1138.9,365.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 1135.2,350.0 L 1135.2,363.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 1138.9,365.8 L 1122.7,375.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 1122.7,375.2 L 1122.7,382.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 1122.7,382.9 L 1122.7,390.6\" style=\"fill:none;fill-rule:evenodd;stroke:#7F4C19;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 1122.7,375.2 L 1106.6,365.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 1122.2,370.5 L 1110.9,364.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 1106.6,365.8 L 1106.6,347.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 1106.6,347.2 L 1122.7,337.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 1110.9,349.0 L 1122.2,342.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 1106.6,347.2 L 1090.5,337.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 1090.5,337.9 L 1090.5,330.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 1090.5,330.2 L 1090.5,322.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-10 atom-12\" d=\"M 1091.4,339.5 L 1084.8,343.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-10 atom-12\" d=\"M 1084.8,343.3 L 1078.3,347.1\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-10 atom-12\" d=\"M 1089.5,336.3 L 1083.0,340.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-10 atom-12\" d=\"M 1083.0,340.0 L 1076.4,343.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12 atom-9 atom-3\" d=\"M 1122.7,337.9 L 1138.9,347.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 1168.8 347.2 Q 1168.8 345.9, 1169.4 345.2 Q 1170.0 344.5, 1171.2 344.5 Q 1172.4 344.5, 1173.0 345.2 Q 1173.6 345.9, 1173.6 347.2 Q 1173.6 348.5, 1173.0 349.2 Q 1172.3 349.9, 1171.2 349.9 Q 1170.0 349.9, 1169.4 349.2 Q 1168.8 348.5, 1168.8 347.2 M 1171.2 349.3 Q 1172.0 349.3, 1172.4 348.8 Q 1172.9 348.3, 1172.9 347.2 Q 1172.9 346.2, 1172.4 345.6 Q 1172.0 345.1, 1171.2 345.1 Q 1170.4 345.1, 1169.9 345.6 Q 1169.5 346.2, 1169.5 347.2 Q 1169.5 348.3, 1169.9 348.8 Q 1170.4 349.3, 1171.2 349.3 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 1174.0 344.6 L 1174.7 344.6 L 1174.7 346.8 L 1177.4 346.8 L 1177.4 344.6 L 1178.1 344.6 L 1178.1 349.9 L 1177.4 349.9 L 1177.4 347.4 L 1174.7 347.4 L 1174.7 349.9 L 1174.0 349.9 L 1174.0 344.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 1152.6 319.2 Q 1152.6 318.0, 1153.2 317.3 Q 1153.9 316.6, 1155.0 316.6 Q 1156.2 316.6, 1156.8 317.3 Q 1157.5 318.0, 1157.5 319.2 Q 1157.5 320.5, 1156.8 321.3 Q 1156.2 322.0, 1155.0 322.0 Q 1153.9 322.0, 1153.2 321.3 Q 1152.6 320.5, 1152.6 319.2 M 1155.0 321.4 Q 1155.8 321.4, 1156.3 320.8 Q 1156.7 320.3, 1156.7 319.2 Q 1156.7 318.2, 1156.3 317.7 Q 1155.8 317.1, 1155.0 317.1 Q 1154.2 317.1, 1153.8 317.7 Q 1153.4 318.2, 1153.4 319.2 Q 1153.4 320.3, 1153.8 320.8 Q 1154.2 321.4, 1155.0 321.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-6\" d=\"M 1123.5 393.7 Q 1124.0 393.8, 1124.3 394.1 Q 1124.5 394.4, 1124.5 394.9 Q 1124.5 395.6, 1124.1 396.0 Q 1123.6 396.4, 1122.7 396.4 L 1121.0 396.4 L 1121.0 391.2 L 1122.5 391.2 Q 1123.4 391.2, 1123.9 391.5 Q 1124.3 391.9, 1124.3 392.6 Q 1124.3 393.4, 1123.5 393.7 M 1121.7 391.8 L 1121.7 393.4 L 1122.5 393.4 Q 1123.0 393.4, 1123.3 393.2 Q 1123.6 393.0, 1123.6 392.6 Q 1123.6 391.8, 1122.5 391.8 L 1121.7 391.8 M 1122.7 395.9 Q 1123.2 395.9, 1123.5 395.6 Q 1123.8 395.4, 1123.8 394.9 Q 1123.8 394.5, 1123.5 394.2 Q 1123.2 394.0, 1122.6 394.0 L 1121.7 394.0 L 1121.7 395.9 L 1122.7 395.9 \" fill=\"#7F4C19\"/>\n",
"<path class=\"atom-6\" d=\"M 1125.5 392.6 L 1125.5 393.1 Q 1125.9 392.5, 1126.6 392.5 Q 1126.8 392.5, 1127.1 392.6 L 1127.0 393.2 Q 1126.7 393.2, 1126.5 393.2 Q 1126.2 393.2, 1126.0 393.3 Q 1125.7 393.4, 1125.6 393.7 L 1125.6 396.4 L 1124.9 396.4 L 1124.9 392.6 L 1125.5 392.6 \" fill=\"#7F4C19\"/>\n",
"<path class=\"atom-11\" d=\"M 1088.0 319.2 Q 1088.0 318.0, 1088.7 317.3 Q 1089.3 316.6, 1090.5 316.6 Q 1091.6 316.6, 1092.2 317.3 Q 1092.9 318.0, 1092.9 319.2 Q 1092.9 320.5, 1092.2 321.3 Q 1091.6 322.0, 1090.5 322.0 Q 1089.3 322.0, 1088.7 321.3 Q 1088.0 320.5, 1088.0 319.2 M 1090.5 321.4 Q 1091.3 321.4, 1091.7 320.8 Q 1092.1 320.3, 1092.1 319.2 Q 1092.1 318.2, 1091.7 317.7 Q 1091.3 317.1, 1090.5 317.1 Q 1089.6 317.1, 1089.2 317.7 Q 1088.8 318.2, 1088.8 319.2 Q 1088.8 320.3, 1089.2 320.8 Q 1089.6 321.4, 1090.5 321.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-11\" d=\"M 1093.2 316.6 L 1094.0 316.6 L 1094.0 318.9 L 1096.7 318.9 L 1096.7 316.6 L 1097.4 316.6 L 1097.4 321.9 L 1096.7 321.9 L 1096.7 319.5 L 1094.0 319.5 L 1094.0 321.9 L 1093.2 321.9 L 1093.2 316.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-12\" d=\"M 1071.9 347.2 Q 1071.9 345.9, 1072.5 345.2 Q 1073.1 344.5, 1074.3 344.5 Q 1075.5 344.5, 1076.1 345.2 Q 1076.7 345.9, 1076.7 347.2 Q 1076.7 348.5, 1076.1 349.2 Q 1075.5 349.9, 1074.3 349.9 Q 1073.1 349.9, 1072.5 349.2 Q 1071.9 348.5, 1071.9 347.2 M 1074.3 349.3 Q 1075.1 349.3, 1075.5 348.8 Q 1076.0 348.3, 1076.0 347.2 Q 1076.0 346.2, 1075.5 345.6 Q 1075.1 345.1, 1074.3 345.1 Q 1073.5 345.1, 1073.1 345.6 Q 1072.6 346.2, 1072.6 347.2 Q 1072.6 348.3, 1073.1 348.8 Q 1073.5 349.3, 1074.3 349.3 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 1080.4 434.7 L 1083.2 439.2 Q 1083.4 439.7, 1083.9 440.5 Q 1084.3 441.3, 1084.3 441.3 L 1084.3 434.7 L 1085.5 434.7 L 1085.5 443.2 L 1084.3 443.2 L 1081.3 438.3 Q 1081.0 437.7, 1080.6 437.1 Q 1080.2 436.4, 1080.1 436.2 L 1080.1 443.2 L 1079.0 443.2 L 1079.0 434.7 L 1080.4 434.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1086.5 440.1 Q 1086.5 438.6, 1087.2 437.8 Q 1088.0 437.0, 1089.4 437.0 Q 1090.7 437.0, 1091.3 437.8 Q 1091.9 438.6, 1091.9 440.1 L 1091.9 440.3 L 1087.6 440.3 Q 1087.6 441.3, 1088.1 441.9 Q 1088.6 442.4, 1089.5 442.4 Q 1089.9 442.4, 1090.4 442.3 Q 1090.8 442.2, 1091.4 442.0 L 1091.7 442.7 Q 1091.1 443.1, 1090.5 443.2 Q 1090.0 443.3, 1089.4 443.3 Q 1088.0 443.3, 1087.2 442.5 Q 1086.5 441.7, 1086.5 440.1 M 1089.4 437.9 Q 1088.7 437.9, 1088.2 438.3 Q 1087.8 438.7, 1087.7 439.5 L 1090.7 439.5 Q 1090.7 438.6, 1090.3 438.2 Q 1090.0 437.9, 1089.4 437.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1098.0 437.1 L 1098.0 443.6 Q 1098.0 446.2, 1095.2 446.2 Q 1093.8 446.2, 1092.6 445.6 L 1093.0 444.8 Q 1093.6 445.1, 1094.1 445.2 Q 1094.6 445.4, 1095.2 445.4 Q 1096.1 445.4, 1096.5 445.0 Q 1096.9 444.6, 1096.9 443.6 L 1096.9 442.5 Q 1096.2 443.3, 1095.1 443.3 Q 1093.8 443.3, 1093.1 442.5 Q 1092.4 441.7, 1092.4 440.2 Q 1092.4 438.7, 1093.2 437.8 Q 1094.1 437.0, 1095.5 437.0 Q 1096.3 437.0, 1097.0 437.2 L 1097.1 437.1 L 1098.0 437.1 M 1095.2 442.4 Q 1095.8 442.4, 1096.2 442.1 Q 1096.7 441.8, 1096.9 441.1 L 1096.9 438.0 Q 1096.2 437.9, 1095.6 437.9 Q 1094.6 437.9, 1094.1 438.5 Q 1093.5 439.1, 1093.5 440.2 Q 1093.5 441.3, 1094.0 441.9 Q 1094.4 442.4, 1095.2 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1099.0 434.7 L 1100.1 434.7 L 1100.1 443.2 L 1099.0 443.2 L 1099.0 434.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1101.2 440.1 Q 1101.2 438.6, 1101.9 437.8 Q 1102.7 437.0, 1104.1 437.0 Q 1105.5 437.0, 1106.3 437.8 Q 1107.0 438.6, 1107.0 440.1 Q 1107.0 441.6, 1106.3 442.5 Q 1105.5 443.3, 1104.1 443.3 Q 1102.7 443.3, 1101.9 442.5 Q 1101.2 441.6, 1101.2 440.1 M 1102.3 440.1 Q 1102.3 441.3, 1102.8 441.9 Q 1103.3 442.4, 1104.1 442.4 Q 1105.0 442.4, 1105.4 441.9 Q 1105.9 441.3, 1105.9 440.1 Q 1105.9 439.0, 1105.4 438.4 Q 1105.0 437.9, 1104.1 437.9 Q 1103.3 437.9, 1102.8 438.4 Q 1102.3 439.0, 1102.3 440.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1110.8 437.0 Q 1111.8 437.0, 1112.3 437.5 Q 1112.8 438.1, 1112.8 439.2 L 1112.8 443.2 L 1111.7 443.2 L 1111.7 439.2 Q 1111.7 438.5, 1111.4 438.2 Q 1111.1 437.9, 1110.5 437.9 Q 1110.0 437.9, 1109.5 438.1 Q 1109.0 438.4, 1108.7 438.8 L 1108.7 443.2 L 1107.6 443.2 L 1107.6 437.1 L 1108.5 437.1 L 1108.6 437.9 Q 1109.5 437.0, 1110.8 437.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1113.8 434.7 L 1114.9 434.7 L 1114.9 435.8 L 1113.8 435.8 L 1113.8 434.7 M 1113.8 437.1 L 1114.9 437.1 L 1114.9 443.2 L 1113.8 443.2 L 1113.8 437.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1117.2 442.4 L 1120.6 442.4 L 1120.6 443.2 L 1115.9 443.2 L 1115.9 442.5 L 1119.1 438.0 L 1116.1 438.0 L 1116.1 437.1 L 1120.5 437.1 L 1120.5 437.8 L 1117.2 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1121.0 441.6 Q 1121.0 440.6, 1121.8 440.0 Q 1122.6 439.5, 1124.1 439.5 L 1125.0 439.5 L 1125.0 439.3 Q 1125.0 438.5, 1124.7 438.2 Q 1124.4 437.9, 1123.6 437.9 Q 1123.1 437.9, 1122.7 437.9 Q 1122.3 438.0, 1121.7 438.3 L 1121.4 437.5 Q 1122.5 437.0, 1123.6 437.0 Q 1124.9 437.0, 1125.5 437.5 Q 1126.1 438.1, 1126.1 439.3 L 1126.1 443.2 L 1125.2 443.2 Q 1125.2 443.2, 1125.2 443.0 Q 1125.2 442.8, 1125.1 442.5 Q 1124.2 443.4, 1123.1 443.4 Q 1122.2 443.4, 1121.6 442.9 Q 1121.0 442.4, 1121.0 441.6 M 1122.2 441.5 Q 1122.2 442.0, 1122.5 442.3 Q 1122.8 442.5, 1123.3 442.5 Q 1123.8 442.5, 1124.2 442.3 Q 1124.7 442.1, 1125.0 441.7 L 1125.0 440.3 L 1124.2 440.3 Q 1123.2 440.3, 1122.7 440.6 Q 1122.2 440.9, 1122.2 441.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1129.9 437.0 Q 1131.2 437.0, 1131.9 437.8 Q 1132.6 438.6, 1132.6 440.0 Q 1132.6 441.6, 1131.8 442.5 Q 1131.0 443.3, 1129.5 443.3 Q 1128.5 443.3, 1127.6 443.0 L 1127.0 442.8 L 1127.0 434.1 L 1128.2 434.1 L 1128.2 437.7 Q 1128.8 437.0, 1129.9 437.0 M 1129.5 442.4 Q 1130.4 442.4, 1131.0 441.8 Q 1131.5 441.2, 1131.5 440.0 Q 1131.5 439.0, 1131.1 438.4 Q 1130.6 437.9, 1129.9 437.9 Q 1129.2 437.9, 1128.8 438.2 Q 1128.3 438.5, 1128.2 439.1 L 1128.2 442.3 Q 1128.8 442.4, 1129.5 442.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1133.2 434.1 L 1134.3 434.1 L 1134.3 443.2 L 1133.2 443.2 L 1133.2 434.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1135.3 440.1 Q 1135.3 438.6, 1136.1 437.8 Q 1136.8 437.0, 1138.2 437.0 Q 1139.6 437.0, 1140.2 437.8 Q 1140.8 438.6, 1140.8 440.1 L 1140.8 440.3 L 1136.5 440.3 Q 1136.5 441.3, 1137.0 441.9 Q 1137.4 442.4, 1138.3 442.4 Q 1138.8 442.4, 1139.2 442.3 Q 1139.7 442.2, 1140.2 442.0 L 1140.5 442.7 Q 1139.9 443.1, 1139.4 443.2 Q 1138.8 443.3, 1138.3 443.3 Q 1136.9 443.3, 1136.1 442.5 Q 1135.3 441.7, 1135.3 440.1 M 1138.2 437.9 Q 1137.5 437.9, 1137.1 438.3 Q 1136.7 438.7, 1136.5 439.5 L 1139.6 439.5 Q 1139.5 438.6, 1139.2 438.2 Q 1138.8 437.9, 1138.2 437.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1147.4 443.8 L 1147.4 444.8 L 1141.2 444.8 L 1141.2 443.8 L 1147.4 443.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1147.4 439.8 Q 1147.4 438.1, 1147.9 436.7 Q 1148.4 435.3, 1149.3 433.7 L 1150.0 434.2 Q 1149.2 435.6, 1148.8 436.9 Q 1148.4 438.2, 1148.4 439.8 Q 1148.4 441.4, 1148.8 442.7 Q 1149.2 444.0, 1150.0 445.5 L 1149.3 445.9 Q 1148.4 444.4, 1147.9 443.0 Q 1147.4 441.6, 1147.4 439.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1154.4 438.8 Q 1155.2 439.0, 1155.6 439.5 Q 1156.0 440.1, 1156.0 440.9 Q 1156.0 441.6, 1155.7 442.2 Q 1155.3 442.7, 1154.6 443.1 Q 1154.0 443.4, 1153.1 443.4 Q 1152.2 443.4, 1151.5 443.0 Q 1150.8 442.7, 1150.3 442.1 L 1151.0 441.4 Q 1151.5 442.0, 1152.0 442.2 Q 1152.4 442.4, 1153.1 442.4 Q 1153.9 442.4, 1154.4 442.0 Q 1154.8 441.6, 1154.8 440.9 Q 1154.8 440.0, 1154.3 439.6 Q 1153.8 439.3, 1152.8 439.3 L 1152.2 439.3 L 1152.2 438.4 L 1152.7 438.4 Q 1153.7 438.4, 1154.1 438.0 Q 1154.6 437.6, 1154.6 436.8 Q 1154.6 436.3, 1154.2 435.9 Q 1153.8 435.6, 1153.1 435.6 Q 1152.4 435.6, 1152.0 435.9 Q 1151.5 436.1, 1151.2 436.7 L 1150.4 436.3 Q 1150.7 435.6, 1151.4 435.1 Q 1152.1 434.6, 1153.1 434.6 Q 1154.4 434.6, 1155.1 435.2 Q 1155.8 435.8, 1155.8 436.8 Q 1155.8 437.5, 1155.5 438.0 Q 1155.1 438.5, 1154.4 438.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1156.7 442.0 L 1157.9 442.0 L 1157.9 443.0 L 1157.7 444.7 L 1157.3 444.7 L 1157.3 443.2 L 1156.7 443.2 L 1156.7 442.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1163.2 442.3 L 1165.0 442.3 L 1165.0 435.9 L 1163.0 436.6 L 1162.7 435.9 L 1165.3 434.7 L 1166.2 434.8 L 1166.2 442.3 L 1167.8 442.3 L 1167.8 443.2 L 1163.2 443.2 L 1163.2 442.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1171.0 439.8 Q 1171.0 441.6, 1170.5 443.0 Q 1170.0 444.4, 1169.0 445.9 L 1168.3 445.5 Q 1169.1 444.0, 1169.5 442.7 Q 1169.9 441.4, 1169.9 439.8 Q 1169.9 438.2, 1169.5 436.9 Q 1169.1 435.6, 1168.3 434.2 L 1169.0 433.7 Q 1170.0 435.3, 1170.5 436.7 Q 1171.0 438.1, 1171.0 439.8 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 70.0,532.1 L 73.7,525.6\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 73.7,525.6 L 77.4,519.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 77.4,519.2 L 68.1,503.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 68.1,503.0 L 52.0,512.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 52.0,512.4 L 42.7,496.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 42.7,496.2 L 58.8,486.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-2 atom-6\" d=\"M 68.1,503.0 L 84.3,493.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 84.3,493.7 L 90.8,497.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 90.8,497.5 L 97.4,501.3\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 82.4,493.7 L 82.4,486.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 82.4,486.1 L 82.4,478.4\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 86.1,493.7 L 86.1,486.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 86.1,486.1 L 86.1,478.4\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-5 atom-2\" d=\"M 58.8,486.9 L 68.1,503.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 58.7 532.7 L 59.4 532.7 L 59.4 534.9 L 62.1 534.9 L 62.1 532.7 L 62.8 532.7 L 62.8 538.0 L 62.1 538.0 L 62.1 535.5 L 59.4 535.5 L 59.4 538.0 L 58.7 538.0 L 58.7 532.7 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-0\" d=\"M 63.5 537.8 Q 63.6 537.5, 63.9 537.3 Q 64.2 537.1, 64.6 537.1 Q 65.2 537.1, 65.5 537.4 Q 65.8 537.7, 65.8 538.2 Q 65.8 538.7, 65.4 539.2 Q 65.0 539.6, 64.2 540.2 L 65.8 540.2 L 65.8 540.6 L 63.5 540.6 L 63.5 540.3 Q 64.1 539.8, 64.5 539.5 Q 64.9 539.1, 65.1 538.8 Q 65.3 538.5, 65.3 538.2 Q 65.3 537.9, 65.1 537.7 Q 64.9 537.5, 64.6 537.5 Q 64.4 537.5, 64.2 537.6 Q 64.0 537.7, 63.9 538.0 L 63.5 537.8 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-0\" d=\"M 67.0 532.7 L 68.7 535.5 Q 68.9 535.8, 69.1 536.3 Q 69.4 536.8, 69.4 536.8 L 69.4 532.7 L 70.1 532.7 L 70.1 538.0 L 69.4 538.0 L 67.5 534.9 Q 67.3 534.6, 67.1 534.1 Q 66.9 533.7, 66.8 533.6 L 66.8 538.0 L 66.1 538.0 L 66.1 532.7 L 67.0 532.7 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-7\" d=\"M 98.0 503.0 Q 98.0 501.8, 98.6 501.1 Q 99.2 500.4, 100.4 500.4 Q 101.6 500.4, 102.2 501.1 Q 102.8 501.8, 102.8 503.0 Q 102.8 504.3, 102.2 505.1 Q 101.6 505.8, 100.4 505.8 Q 99.3 505.8, 98.6 505.1 Q 98.0 504.3, 98.0 503.0 M 100.4 505.2 Q 101.2 505.2, 101.7 504.6 Q 102.1 504.1, 102.1 503.0 Q 102.1 502.0, 101.7 501.5 Q 101.2 501.0, 100.4 501.0 Q 99.6 501.0, 99.2 501.5 Q 98.7 502.0, 98.7 503.0 Q 98.7 504.1, 99.2 504.6 Q 99.6 505.2, 100.4 505.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 103.2 500.4 L 103.9 500.4 L 103.9 502.7 L 106.6 502.7 L 106.6 500.4 L 107.3 500.4 L 107.3 505.7 L 106.6 505.7 L 106.6 503.3 L 103.9 503.3 L 103.9 505.7 L 103.2 505.7 L 103.2 500.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-8\" d=\"M 81.8 475.1 Q 81.8 473.8, 82.5 473.1 Q 83.1 472.4, 84.3 472.4 Q 85.4 472.4, 86.1 473.1 Q 86.7 473.8, 86.7 475.1 Q 86.7 476.4, 86.1 477.1 Q 85.4 477.8, 84.3 477.8 Q 83.1 477.8, 82.5 477.1 Q 81.8 476.4, 81.8 475.1 M 84.3 477.2 Q 85.1 477.2, 85.5 476.7 Q 85.9 476.1, 85.9 475.1 Q 85.9 474.0, 85.5 473.5 Q 85.1 473.0, 84.3 473.0 Q 83.5 473.0, 83.0 473.5 Q 82.6 474.0, 82.6 475.1 Q 82.6 476.1, 83.0 476.7 Q 83.5 477.2, 84.3 477.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 31.8 585.1 Q 33.3 585.1, 34.0 585.8 Q 34.8 586.4, 34.8 587.6 Q 34.8 588.8, 34.0 589.4 Q 33.3 590.1, 31.8 590.1 L 30.5 590.1 L 30.5 593.6 L 29.3 593.6 L 29.3 585.1 L 31.8 585.1 M 31.8 589.1 Q 32.7 589.1, 33.1 588.7 Q 33.6 588.3, 33.6 587.6 Q 33.6 586.8, 33.1 586.4 Q 32.7 586.1, 31.8 586.1 L 30.5 586.1 L 30.5 589.1 L 31.8 589.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 35.3 590.5 Q 35.3 589.0, 36.1 588.1 Q 36.8 587.3, 38.2 587.3 Q 39.7 587.3, 40.4 588.1 Q 41.2 589.0, 41.2 590.5 Q 41.2 592.0, 40.4 592.8 Q 39.7 593.7, 38.2 593.7 Q 36.8 593.7, 36.1 592.8 Q 35.3 592.0, 35.3 590.5 M 36.5 590.5 Q 36.5 591.6, 36.9 592.2 Q 37.4 592.8, 38.2 592.8 Q 39.1 592.8, 39.6 592.2 Q 40.0 591.6, 40.0 590.5 Q 40.0 589.4, 39.6 588.8 Q 39.1 588.2, 38.2 588.2 Q 37.4 588.2, 36.9 588.8 Q 36.5 589.4, 36.5 590.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 42.1 592.3 Q 42.6 592.5, 43.0 592.6 Q 43.4 592.8, 43.8 592.8 Q 44.4 592.8, 44.7 592.5 Q 45.0 592.3, 45.0 591.9 Q 45.0 591.6, 44.8 591.4 Q 44.6 591.2, 44.4 591.1 Q 44.2 591.1, 43.7 590.9 Q 43.6 590.9, 43.1 590.7 Q 42.5 590.5, 42.2 590.1 Q 41.9 589.7, 41.9 589.1 Q 41.9 588.3, 42.5 587.8 Q 43.1 587.3, 44.2 587.3 Q 44.7 587.3, 45.1 587.4 Q 45.5 587.5, 46.0 587.7 L 45.7 588.6 Q 45.3 588.4, 44.9 588.3 Q 44.6 588.2, 44.2 588.2 Q 43.6 588.2, 43.3 588.5 Q 43.1 588.7, 43.1 589.1 Q 43.1 589.4, 43.3 589.6 Q 43.5 589.7, 44.0 589.9 Q 44.2 589.9, 44.3 590.0 L 44.5 590.1 Q 45.1 590.2, 45.4 590.4 Q 45.7 590.6, 45.9 590.9 Q 46.1 591.3, 46.1 591.8 Q 46.1 592.7, 45.5 593.2 Q 44.8 593.7, 43.8 593.7 Q 43.2 593.7, 42.7 593.6 Q 42.2 593.4, 41.7 593.2 L 42.1 592.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 46.7 585.1 L 47.9 585.1 L 47.9 593.6 L 46.7 593.6 L 46.7 585.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 48.9 590.5 Q 48.9 589.0, 49.7 588.1 Q 50.5 587.3, 51.9 587.3 Q 53.3 587.3, 54.0 588.1 Q 54.8 589.0, 54.8 590.5 Q 54.8 592.0, 54.0 592.8 Q 53.3 593.7, 51.9 593.7 Q 50.5 593.7, 49.7 592.8 Q 48.9 592.0, 48.9 590.5 M 50.1 590.5 Q 50.1 591.6, 50.5 592.2 Q 51.0 592.8, 51.9 592.8 Q 52.7 592.8, 53.2 592.2 Q 53.6 591.6, 53.6 590.5 Q 53.6 589.4, 53.2 588.8 Q 52.7 588.2, 51.9 588.2 Q 51.0 588.2, 50.5 588.8 Q 50.1 589.4, 50.1 590.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 58.6 587.3 Q 59.5 587.3, 60.1 587.9 Q 60.6 588.4, 60.6 589.5 L 60.6 593.6 L 59.5 593.6 L 59.5 589.6 Q 59.5 588.9, 59.2 588.5 Q 58.9 588.2, 58.3 588.2 Q 57.7 588.2, 57.2 588.5 Q 56.8 588.7, 56.5 589.2 L 56.5 593.6 L 55.3 593.6 L 55.3 587.4 L 56.3 587.4 L 56.4 588.3 Q 57.2 587.3, 58.6 587.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 61.5 585.1 L 62.6 585.1 L 62.6 586.1 L 61.5 586.1 L 61.5 585.1 M 61.5 587.4 L 62.6 587.4 L 62.6 593.6 L 61.5 593.6 L 61.5 587.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 65.0 592.7 L 68.4 592.7 L 68.4 593.6 L 63.6 593.6 L 63.6 592.9 L 66.9 588.3 L 63.8 588.3 L 63.8 587.4 L 68.2 587.4 L 68.2 588.1 L 65.0 592.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 68.8 591.9 Q 68.8 590.9, 69.6 590.4 Q 70.4 589.9, 71.8 589.9 L 72.7 589.9 L 72.7 589.6 Q 72.7 588.8, 72.4 588.5 Q 72.1 588.2, 71.3 588.2 Q 70.9 588.2, 70.5 588.3 Q 70.1 588.4, 69.5 588.6 L 69.1 587.9 Q 70.3 587.3, 71.4 587.3 Q 72.7 587.3, 73.3 587.9 Q 73.9 588.4, 73.9 589.6 L 73.9 593.6 L 73.0 593.6 Q 73.0 593.5, 73.0 593.4 Q 72.9 593.2, 72.8 592.9 Q 72.0 593.7, 70.8 593.7 Q 69.9 593.7, 69.4 593.2 Q 68.8 592.7, 68.8 591.9 M 69.9 591.9 Q 69.9 592.4, 70.2 592.6 Q 70.5 592.8, 71.0 592.8 Q 71.5 592.8, 72.0 592.6 Q 72.4 592.4, 72.7 592.0 L 72.7 590.7 L 71.9 590.7 Q 70.9 590.7, 70.4 591.0 Q 69.9 591.3, 69.9 591.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 77.7 587.3 Q 79.0 587.3, 79.7 588.1 Q 80.4 588.9, 80.4 590.4 Q 80.4 591.9, 79.5 592.8 Q 78.7 593.7, 77.2 593.7 Q 76.3 593.7, 75.3 593.3 L 74.8 593.2 L 74.8 584.5 L 75.9 584.5 L 75.9 588.1 Q 76.6 587.3, 77.7 587.3 M 77.2 592.8 Q 78.2 592.8, 78.7 592.2 Q 79.2 591.5, 79.2 590.4 Q 79.2 589.3, 78.8 588.8 Q 78.4 588.2, 77.6 588.2 Q 77.0 588.2, 76.5 588.5 Q 76.1 588.9, 75.9 589.5 L 75.9 592.6 Q 76.5 592.8, 77.2 592.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 80.9 584.5 L 82.0 584.5 L 82.0 593.6 L 80.9 593.6 L 80.9 584.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 83.1 590.5 Q 83.1 589.0, 83.8 588.1 Q 84.6 587.3, 86.0 587.3 Q 87.3 587.3, 87.9 588.1 Q 88.5 588.9, 88.5 590.5 L 88.5 590.6 L 84.2 590.6 Q 84.3 591.7, 84.7 592.2 Q 85.2 592.8, 86.1 592.8 Q 86.5 592.8, 87.0 592.7 Q 87.4 592.6, 88.0 592.3 L 88.3 593.1 Q 87.7 593.4, 87.1 593.6 Q 86.6 593.7, 86.0 593.7 Q 84.6 593.7, 83.8 592.8 Q 83.1 592.0, 83.1 590.5 M 86.0 588.2 Q 85.3 588.2, 84.8 588.6 Q 84.4 589.0, 84.3 589.8 L 87.4 589.8 Q 87.3 589.0, 86.9 588.6 Q 86.6 588.2, 86.0 588.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 95.1 594.2 L 95.1 595.2 L 89.0 595.2 L 89.0 594.2 L 95.1 594.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 95.1 590.2 Q 95.1 588.4, 95.6 587.0 Q 96.1 585.6, 97.1 584.1 L 97.8 584.5 Q 97.0 585.9, 96.6 587.2 Q 96.2 588.5, 96.2 590.2 Q 96.2 591.8, 96.6 593.1 Q 97.0 594.3, 97.8 595.8 L 97.1 596.2 Q 96.1 594.7, 95.6 593.3 Q 95.1 591.9, 95.1 590.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 101.2 593.7 Q 99.6 593.7, 98.8 592.5 Q 98.1 591.4, 98.1 589.3 Q 98.1 587.3, 98.8 586.1 Q 99.6 585.0, 101.2 585.0 Q 102.7 585.0, 103.5 586.1 Q 104.3 587.3, 104.3 589.3 Q 104.3 591.4, 103.5 592.5 Q 102.7 593.7, 101.2 593.7 M 101.2 592.7 Q 102.1 592.7, 102.6 591.9 Q 103.1 591.0, 103.1 589.3 Q 103.1 587.7, 102.6 586.8 Q 102.1 586.0, 101.2 586.0 Q 100.3 586.0, 99.7 586.8 Q 99.3 587.7, 99.3 589.3 Q 99.3 591.0, 99.7 591.9 Q 100.3 592.7, 101.2 592.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 105.1 592.4 L 106.3 592.4 L 106.3 593.3 L 106.0 595.0 L 105.6 595.0 L 105.6 593.6 L 105.1 593.6 L 105.1 592.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 114.1 593.7 Q 112.6 593.7, 111.8 592.5 Q 111.0 591.4, 111.0 589.3 Q 111.0 587.3, 111.8 586.1 Q 112.6 585.0, 114.1 585.0 Q 115.7 585.0, 116.5 586.1 Q 117.2 587.3, 117.2 589.3 Q 117.2 591.4, 116.5 592.5 Q 115.7 593.7, 114.1 593.7 M 114.1 592.7 Q 115.1 592.7, 115.6 591.9 Q 116.0 591.0, 116.0 589.3 Q 116.0 587.7, 115.6 586.8 Q 115.1 586.0, 114.1 586.0 Q 113.2 586.0, 112.7 586.8 Q 112.2 587.7, 112.2 589.3 Q 112.2 591.0, 112.7 591.9 Q 113.2 592.7, 114.1 592.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 120.7 590.2 Q 120.7 591.9, 120.2 593.3 Q 119.7 594.7, 118.7 596.2 L 118.0 595.8 Q 118.8 594.3, 119.2 593.1 Q 119.6 591.8, 119.6 590.2 Q 119.6 588.5, 119.2 587.2 Q 118.8 585.9, 118.0 584.5 L 118.7 584.1 Q 119.7 585.6, 120.2 587.0 Q 120.7 588.4, 120.7 590.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 180.4,527.2 L 187.2,531.1\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 187.2,531.1 L 193.9,535.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-2 atom-1\" d=\"M 210.1,525.7 L 194.9,536.6 L 193.0,533.4 Z\" style=\"fill:#000000;fill-rule:evenodd;fill-opacity:1;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 210.1,525.7 L 210.1,507.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 210.1,507.0 L 226.2,497.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 226.2,497.7 L 242.4,507.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 242.4,507.0 L 242.4,525.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 242.4,525.7 L 226.2,535.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-5 atom-8\" d=\"M 248.1,504.5 L 247.5,503.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-5 atom-8\" d=\"M 253.8,501.9 L 252.5,499.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-5 atom-8\" d=\"M 259.5,499.3 L 257.6,496.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 258.5,497.7 L 265.1,501.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 265.1,501.5 L 271.6,505.3\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 256.7,497.7 L 256.7,490.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 256.7,490.1 L 256.7,482.4\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 260.4,497.7 L 260.4,490.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 260.4,490.1 L 260.4,482.4\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-7 atom-2\" d=\"M 226.2,535.0 L 210.1,525.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 168.4 523.0 L 169.1 523.0 L 169.1 525.3 L 171.8 525.3 L 171.8 523.0 L 172.5 523.0 L 172.5 528.3 L 171.8 528.3 L 171.8 525.9 L 169.1 525.9 L 169.1 528.3 L 168.4 528.3 L 168.4 523.0 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-0\" d=\"M 173.2 528.1 Q 173.3 527.8, 173.6 527.6 Q 173.9 527.4, 174.3 527.4 Q 174.8 527.4, 175.1 527.7 Q 175.4 528.0, 175.4 528.5 Q 175.4 529.0, 175.1 529.5 Q 174.7 530.0, 173.9 530.6 L 175.5 530.6 L 175.5 531.0 L 173.2 531.0 L 173.2 530.6 Q 173.8 530.2, 174.2 529.8 Q 174.6 529.5, 174.8 529.2 Q 174.9 528.9, 174.9 528.5 Q 174.9 528.2, 174.8 528.0 Q 174.6 527.8, 174.3 527.8 Q 174.0 527.8, 173.9 527.9 Q 173.7 528.1, 173.5 528.3 L 173.2 528.1 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-0\" d=\"M 176.6 523.0 L 178.4 525.8 Q 178.5 526.1, 178.8 526.6 Q 179.1 527.1, 179.1 527.1 L 179.1 523.0 L 179.8 523.0 L 179.8 528.3 L 179.1 528.3 L 177.2 525.3 Q 177.0 524.9, 176.8 524.5 Q 176.5 524.1, 176.5 524.0 L 176.5 528.3 L 175.8 528.3 L 175.8 523.0 L 176.6 523.0 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-9\" d=\"M 272.3 507.0 Q 272.3 505.8, 272.9 505.1 Q 273.5 504.4, 274.7 504.4 Q 275.9 504.4, 276.5 505.1 Q 277.1 505.8, 277.1 507.0 Q 277.1 508.3, 276.5 509.1 Q 275.8 509.8, 274.7 509.8 Q 273.5 509.8, 272.9 509.1 Q 272.3 508.3, 272.3 507.0 M 274.7 509.2 Q 275.5 509.2, 275.9 508.6 Q 276.4 508.1, 276.4 507.0 Q 276.4 506.0, 275.9 505.5 Q 275.5 505.0, 274.7 505.0 Q 273.9 505.0, 273.4 505.5 Q 273.0 506.0, 273.0 507.0 Q 273.0 508.1, 273.4 508.6 Q 273.9 509.2, 274.7 509.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 277.5 504.4 L 278.2 504.4 L 278.2 506.7 L 280.9 506.7 L 280.9 504.4 L 281.6 504.4 L 281.6 509.7 L 280.9 509.7 L 280.9 507.3 L 278.2 507.3 L 278.2 509.7 L 277.5 509.7 L 277.5 504.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-10\" d=\"M 256.1 479.1 Q 256.1 477.8, 256.7 477.1 Q 257.4 476.4, 258.5 476.4 Q 259.7 476.4, 260.3 477.1 Q 261.0 477.8, 261.0 479.1 Q 261.0 480.4, 260.3 481.1 Q 259.7 481.8, 258.5 481.8 Q 257.4 481.8, 256.7 481.1 Q 256.1 480.4, 256.1 479.1 M 258.5 481.2 Q 259.3 481.2, 259.8 480.7 Q 260.2 480.1, 260.2 479.1 Q 260.2 478.0, 259.8 477.5 Q 259.3 477.0, 258.5 477.0 Q 257.7 477.0, 257.3 477.5 Q 256.9 478.0, 256.9 479.1 Q 256.9 480.1, 257.3 480.7 Q 257.7 481.2, 258.5 481.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 182.5 585.1 Q 184.0 585.1, 184.7 585.8 Q 185.4 586.4, 185.4 587.6 Q 185.4 588.8, 184.7 589.4 Q 183.9 590.1, 182.5 590.1 L 181.2 590.1 L 181.2 593.6 L 180.0 593.6 L 180.0 585.1 L 182.5 585.1 M 182.5 589.1 Q 183.4 589.1, 183.8 588.7 Q 184.2 588.3, 184.2 587.6 Q 184.2 586.8, 183.8 586.4 Q 183.4 586.1, 182.5 586.1 L 181.2 586.1 L 181.2 589.1 L 182.5 589.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 186.0 590.5 Q 186.0 589.0, 186.8 588.1 Q 187.5 587.3, 188.9 587.3 Q 190.3 587.3, 191.1 588.1 Q 191.9 589.0, 191.9 590.5 Q 191.9 592.0, 191.1 592.8 Q 190.3 593.7, 188.9 593.7 Q 187.5 593.7, 186.8 592.8 Q 186.0 592.0, 186.0 590.5 M 187.2 590.5 Q 187.2 591.6, 187.6 592.2 Q 188.1 592.8, 188.9 592.8 Q 189.8 592.8, 190.2 592.2 Q 190.7 591.6, 190.7 590.5 Q 190.7 589.4, 190.2 588.8 Q 189.8 588.2, 188.9 588.2 Q 188.1 588.2, 187.6 588.8 Q 187.2 589.4, 187.2 590.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 192.8 592.3 Q 193.3 592.5, 193.7 592.6 Q 194.1 592.8, 194.5 592.8 Q 195.0 592.8, 195.3 592.5 Q 195.7 592.3, 195.7 591.9 Q 195.7 591.6, 195.5 591.4 Q 195.3 591.2, 195.1 591.1 Q 194.9 591.1, 194.4 590.9 Q 194.3 590.9, 193.8 590.7 Q 193.2 590.5, 192.9 590.1 Q 192.6 589.7, 192.6 589.1 Q 192.6 588.3, 193.2 587.8 Q 193.8 587.3, 194.9 587.3 Q 195.4 587.3, 195.8 587.4 Q 196.2 587.5, 196.6 587.7 L 196.3 588.6 Q 195.9 588.4, 195.6 588.3 Q 195.3 588.2, 194.9 588.2 Q 194.3 588.2, 194.0 588.5 Q 193.7 588.7, 193.7 589.1 Q 193.7 589.4, 194.0 589.6 Q 194.2 589.7, 194.7 589.9 Q 194.8 589.9, 194.9 590.0 L 195.2 590.1 Q 195.7 590.2, 196.0 590.4 Q 196.3 590.6, 196.6 590.9 Q 196.8 591.3, 196.8 591.8 Q 196.8 592.7, 196.1 593.2 Q 195.5 593.7, 194.5 593.7 Q 193.9 593.7, 193.4 593.6 Q 192.9 593.4, 192.4 593.2 L 192.8 592.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 197.4 585.1 L 198.6 585.1 L 198.6 593.6 L 197.4 593.6 L 197.4 585.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 199.6 590.5 Q 199.6 589.0, 200.4 588.1 Q 201.1 587.3, 202.5 587.3 Q 203.9 587.3, 204.7 588.1 Q 205.5 589.0, 205.5 590.5 Q 205.5 592.0, 204.7 592.8 Q 203.9 593.7, 202.5 593.7 Q 201.1 593.7, 200.4 592.8 Q 199.6 592.0, 199.6 590.5 M 200.8 590.5 Q 200.8 591.6, 201.2 592.2 Q 201.7 592.8, 202.5 592.8 Q 203.4 592.8, 203.8 592.2 Q 204.3 591.6, 204.3 590.5 Q 204.3 589.4, 203.8 588.8 Q 203.4 588.2, 202.5 588.2 Q 201.7 588.2, 201.2 588.8 Q 200.8 589.4, 200.8 590.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 209.2 587.3 Q 210.2 587.3, 210.7 587.9 Q 211.3 588.4, 211.3 589.5 L 211.3 593.6 L 210.1 593.6 L 210.1 589.6 Q 210.1 588.9, 209.8 588.5 Q 209.6 588.2, 208.9 588.2 Q 208.4 588.2, 207.9 588.5 Q 207.4 588.7, 207.1 589.2 L 207.1 593.6 L 206.0 593.6 L 206.0 587.4 L 206.9 587.4 L 207.1 588.3 Q 207.9 587.3, 209.2 587.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 212.2 585.1 L 213.3 585.1 L 213.3 586.1 L 212.2 586.1 L 212.2 585.1 M 212.2 587.4 L 213.3 587.4 L 213.3 593.6 L 212.2 593.6 L 212.2 587.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 215.7 592.7 L 219.1 592.7 L 219.1 593.6 L 214.3 593.6 L 214.3 592.9 L 217.6 588.3 L 214.5 588.3 L 214.5 587.4 L 218.9 587.4 L 218.9 588.1 L 215.7 592.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 219.5 591.9 Q 219.5 590.9, 220.3 590.4 Q 221.1 589.9, 222.5 589.9 L 223.4 589.9 L 223.4 589.6 Q 223.4 588.8, 223.1 588.5 Q 222.8 588.2, 222.0 588.2 Q 221.5 588.2, 221.2 588.3 Q 220.8 588.4, 220.2 588.6 L 219.8 587.9 Q 221.0 587.3, 222.1 587.3 Q 223.4 587.3, 224.0 587.9 Q 224.6 588.4, 224.6 589.6 L 224.6 593.6 L 223.7 593.6 Q 223.7 593.5, 223.6 593.4 Q 223.6 593.2, 223.5 592.9 Q 222.7 593.7, 221.5 593.7 Q 220.6 593.7, 220.0 593.2 Q 219.5 592.7, 219.5 591.9 M 220.6 591.9 Q 220.6 592.4, 220.9 592.6 Q 221.2 592.8, 221.7 592.8 Q 222.2 592.8, 222.7 592.6 Q 223.1 592.4, 223.4 592.0 L 223.4 590.7 L 222.6 590.7 Q 221.6 590.7, 221.1 591.0 Q 220.6 591.3, 220.6 591.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 228.4 587.3 Q 229.6 587.3, 230.4 588.1 Q 231.1 588.9, 231.1 590.4 Q 231.1 591.9, 230.2 592.8 Q 229.4 593.7, 227.9 593.7 Q 226.9 593.7, 226.0 593.3 L 225.5 593.2 L 225.5 584.5 L 226.6 584.5 L 226.6 588.1 Q 227.3 587.3, 228.4 587.3 M 227.9 592.8 Q 228.8 592.8, 229.4 592.2 Q 229.9 591.5, 229.9 590.4 Q 229.9 589.3, 229.5 588.8 Q 229.1 588.2, 228.3 588.2 Q 227.7 588.2, 227.2 588.5 Q 226.8 588.9, 226.6 589.5 L 226.6 592.6 Q 227.2 592.8, 227.9 592.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 231.6 584.5 L 232.7 584.5 L 232.7 593.6 L 231.6 593.6 L 231.6 584.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 233.8 590.5 Q 233.8 589.0, 234.5 588.1 Q 235.3 587.3, 236.7 587.3 Q 238.0 587.3, 238.6 588.1 Q 239.2 588.9, 239.2 590.5 L 239.2 590.6 L 234.9 590.6 Q 234.9 591.7, 235.4 592.2 Q 235.9 592.8, 236.8 592.8 Q 237.2 592.8, 237.7 592.7 Q 238.1 592.6, 238.7 592.3 L 239.0 593.1 Q 238.4 593.4, 237.8 593.6 Q 237.3 593.7, 236.7 593.7 Q 235.3 593.7, 234.5 592.8 Q 233.8 592.0, 233.8 590.5 M 236.7 588.2 Q 235.9 588.2, 235.5 588.6 Q 235.1 589.0, 235.0 589.8 L 238.0 589.8 Q 238.0 589.0, 237.6 588.6 Q 237.3 588.2, 236.7 588.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 245.8 594.2 L 245.8 595.2 L 239.7 595.2 L 239.7 594.2 L 245.8 594.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 245.8 590.2 Q 245.8 588.4, 246.3 587.0 Q 246.8 585.6, 247.8 584.1 L 248.4 584.5 Q 247.7 585.9, 247.3 587.2 Q 246.9 588.5, 246.9 590.2 Q 246.9 591.8, 247.3 593.1 Q 247.7 594.3, 248.4 595.8 L 247.8 596.2 Q 246.8 594.7, 246.3 593.3 Q 245.8 591.9, 245.8 590.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 251.8 593.7 Q 250.3 593.7, 249.5 592.5 Q 248.7 591.4, 248.7 589.3 Q 248.7 587.3, 249.5 586.1 Q 250.3 585.0, 251.8 585.0 Q 253.4 585.0, 254.2 586.1 Q 255.0 587.3, 255.0 589.3 Q 255.0 591.4, 254.2 592.5 Q 253.4 593.7, 251.8 593.7 M 251.8 592.7 Q 252.8 592.7, 253.3 591.9 Q 253.8 591.0, 253.8 589.3 Q 253.8 587.7, 253.3 586.8 Q 252.8 586.0, 251.8 586.0 Q 250.9 586.0, 250.4 586.8 Q 249.9 587.7, 249.9 589.3 Q 249.9 591.0, 250.4 591.9 Q 250.9 592.7, 251.8 592.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 255.7 592.4 L 256.9 592.4 L 256.9 593.3 L 256.7 595.0 L 256.3 595.0 L 256.3 593.6 L 255.7 593.6 L 255.7 592.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 262.2 592.6 L 264.0 592.6 L 264.0 586.3 L 262.0 586.9 L 261.7 586.2 L 264.3 585.0 L 265.2 585.2 L 265.2 592.6 L 266.8 592.6 L 266.8 593.6 L 262.2 593.6 L 262.2 592.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 270.0 590.2 Q 270.0 591.9, 269.5 593.3 Q 269.0 594.7, 268.0 596.2 L 267.3 595.8 Q 268.1 594.3, 268.5 593.1 Q 268.9 591.8, 268.9 590.2 Q 268.9 588.5, 268.5 587.2 Q 268.1 585.9, 267.3 584.5 L 268.0 584.1 Q 269.0 585.6, 269.5 587.0 Q 270.0 588.4, 270.0 590.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 404.1,518.7 L 397.6,514.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 397.6,514.9 L 391.0,511.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 389.2,511.1 L 389.2,503.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 389.2,503.5 L 389.2,495.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 392.9,511.1 L 392.9,503.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 392.9,503.5 L 392.9,495.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 391.0,511.1 L 374.9,520.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 374.9,520.4 L 368.1,516.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 368.1,516.5 L 361.3,512.6\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 356.1,511.8 L 348.4,513.9\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 348.4,513.9 L 340.7,515.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 340.7,515.9 L 335.9,497.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 335.9,497.9 L 353.9,493.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-4\" d=\"M 353.9,493.1 L 355.9,500.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-4\" d=\"M 355.9,500.5 L 357.9,507.9\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 404.8 520.5 Q 404.8 519.2, 405.4 518.5 Q 406.0 517.8, 407.2 517.8 Q 408.3 517.8, 409.0 518.5 Q 409.6 519.2, 409.6 520.5 Q 409.6 521.7, 409.0 522.5 Q 408.3 523.2, 407.2 523.2 Q 406.0 523.2, 405.4 522.5 Q 404.8 521.7, 404.8 520.5 M 407.2 522.6 Q 408.0 522.6, 408.4 522.1 Q 408.9 521.5, 408.9 520.5 Q 408.9 519.4, 408.4 518.9 Q 408.0 518.4, 407.2 518.4 Q 406.4 518.4, 405.9 518.9 Q 405.5 519.4, 405.5 520.5 Q 405.5 521.5, 405.9 522.1 Q 406.4 522.6, 407.2 522.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 410.0 517.8 L 410.7 517.8 L 410.7 520.1 L 413.4 520.1 L 413.4 517.8 L 414.1 517.8 L 414.1 523.1 L 413.4 523.1 L 413.4 520.7 L 410.7 520.7 L 410.7 523.1 L 410.0 523.1 L 410.0 517.8 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 388.6 492.5 Q 388.6 491.2, 389.2 490.5 Q 389.9 489.8, 391.0 489.8 Q 392.2 489.8, 392.8 490.5 Q 393.5 491.2, 393.5 492.5 Q 393.5 493.8, 392.8 494.5 Q 392.2 495.2, 391.0 495.2 Q 389.9 495.2, 389.2 494.5 Q 388.6 493.8, 388.6 492.5 M 391.0 494.6 Q 391.8 494.6, 392.3 494.1 Q 392.7 493.5, 392.7 492.5 Q 392.7 491.5, 392.3 490.9 Q 391.8 490.4, 391.0 490.4 Q 390.2 490.4, 389.8 490.9 Q 389.3 491.4, 389.3 492.5 Q 389.3 493.6, 389.8 494.1 Q 390.2 494.6, 391.0 494.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-4\" d=\"M 357.6 508.5 L 359.3 511.3 Q 359.5 511.6, 359.7 512.1 Q 360.0 512.6, 360.0 512.6 L 360.0 508.5 L 360.7 508.5 L 360.7 513.8 L 360.0 513.8 L 358.2 510.7 Q 357.9 510.3, 357.7 509.9 Q 357.5 509.5, 357.4 509.4 L 357.4 513.8 L 356.7 513.8 L 356.7 508.5 L 357.6 508.5 \" fill=\"#0000FF\"/>\n",
"<path class=\"legend\" d=\"M 332.5 585.1 Q 334.0 585.1, 334.7 585.8 Q 335.4 586.4, 335.4 587.6 Q 335.4 588.8, 334.7 589.4 Q 333.9 590.1, 332.5 590.1 L 331.2 590.1 L 331.2 593.6 L 330.0 593.6 L 330.0 585.1 L 332.5 585.1 M 332.5 589.1 Q 333.4 589.1, 333.8 588.7 Q 334.2 588.3, 334.2 587.6 Q 334.2 586.8, 333.8 586.4 Q 333.4 586.1, 332.5 586.1 L 331.2 586.1 L 331.2 589.1 L 332.5 589.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 336.0 590.5 Q 336.0 589.0, 336.8 588.1 Q 337.5 587.3, 338.9 587.3 Q 340.3 587.3, 341.1 588.1 Q 341.9 589.0, 341.9 590.5 Q 341.9 592.0, 341.1 592.8 Q 340.3 593.7, 338.9 593.7 Q 337.5 593.7, 336.8 592.8 Q 336.0 592.0, 336.0 590.5 M 337.2 590.5 Q 337.2 591.6, 337.6 592.2 Q 338.1 592.8, 338.9 592.8 Q 339.8 592.8, 340.2 592.2 Q 340.7 591.6, 340.7 590.5 Q 340.7 589.4, 340.2 588.8 Q 339.8 588.2, 338.9 588.2 Q 338.1 588.2, 337.6 588.8 Q 337.2 589.4, 337.2 590.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 342.8 592.3 Q 343.3 592.5, 343.7 592.6 Q 344.1 592.8, 344.5 592.8 Q 345.0 592.8, 345.3 592.5 Q 345.7 592.3, 345.7 591.9 Q 345.7 591.6, 345.5 591.4 Q 345.3 591.2, 345.1 591.1 Q 344.9 591.1, 344.4 590.9 Q 344.3 590.9, 343.8 590.7 Q 343.2 590.5, 342.9 590.1 Q 342.6 589.7, 342.6 589.1 Q 342.6 588.3, 343.2 587.8 Q 343.8 587.3, 344.9 587.3 Q 345.4 587.3, 345.8 587.4 Q 346.2 587.5, 346.6 587.7 L 346.3 588.6 Q 345.9 588.4, 345.6 588.3 Q 345.3 588.2, 344.9 588.2 Q 344.3 588.2, 344.0 588.5 Q 343.7 588.7, 343.7 589.1 Q 343.7 589.4, 344.0 589.6 Q 344.2 589.7, 344.7 589.9 Q 344.8 589.9, 344.9 590.0 L 345.2 590.1 Q 345.7 590.2, 346.0 590.4 Q 346.3 590.6, 346.6 590.9 Q 346.8 591.3, 346.8 591.8 Q 346.8 592.7, 346.1 593.2 Q 345.5 593.7, 344.5 593.7 Q 343.9 593.7, 343.4 593.6 Q 342.9 593.4, 342.4 593.2 L 342.8 592.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 347.4 585.1 L 348.6 585.1 L 348.6 593.6 L 347.4 593.6 L 347.4 585.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 349.6 590.5 Q 349.6 589.0, 350.4 588.1 Q 351.1 587.3, 352.5 587.3 Q 353.9 587.3, 354.7 588.1 Q 355.5 589.0, 355.5 590.5 Q 355.5 592.0, 354.7 592.8 Q 353.9 593.7, 352.5 593.7 Q 351.1 593.7, 350.4 592.8 Q 349.6 592.0, 349.6 590.5 M 350.8 590.5 Q 350.8 591.6, 351.2 592.2 Q 351.7 592.8, 352.5 592.8 Q 353.4 592.8, 353.8 592.2 Q 354.3 591.6, 354.3 590.5 Q 354.3 589.4, 353.8 588.8 Q 353.4 588.2, 352.5 588.2 Q 351.7 588.2, 351.2 588.8 Q 350.8 589.4, 350.8 590.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 359.2 587.3 Q 360.2 587.3, 360.7 587.9 Q 361.3 588.4, 361.3 589.5 L 361.3 593.6 L 360.1 593.6 L 360.1 589.6 Q 360.1 588.9, 359.8 588.5 Q 359.6 588.2, 358.9 588.2 Q 358.4 588.2, 357.9 588.5 Q 357.4 588.7, 357.1 589.2 L 357.1 593.6 L 356.0 593.6 L 356.0 587.4 L 356.9 587.4 L 357.1 588.3 Q 357.9 587.3, 359.2 587.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 362.2 585.1 L 363.3 585.1 L 363.3 586.1 L 362.2 586.1 L 362.2 585.1 M 362.2 587.4 L 363.3 587.4 L 363.3 593.6 L 362.2 593.6 L 362.2 587.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 365.7 592.7 L 369.1 592.7 L 369.1 593.6 L 364.3 593.6 L 364.3 592.9 L 367.6 588.3 L 364.5 588.3 L 364.5 587.4 L 368.9 587.4 L 368.9 588.1 L 365.7 592.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 369.5 591.9 Q 369.5 590.9, 370.3 590.4 Q 371.1 589.9, 372.5 589.9 L 373.4 589.9 L 373.4 589.6 Q 373.4 588.8, 373.1 588.5 Q 372.8 588.2, 372.0 588.2 Q 371.5 588.2, 371.2 588.3 Q 370.8 588.4, 370.2 588.6 L 369.8 587.9 Q 371.0 587.3, 372.1 587.3 Q 373.4 587.3, 374.0 587.9 Q 374.6 588.4, 374.6 589.6 L 374.6 593.6 L 373.7 593.6 Q 373.7 593.5, 373.6 593.4 Q 373.6 593.2, 373.5 592.9 Q 372.7 593.7, 371.5 593.7 Q 370.6 593.7, 370.0 593.2 Q 369.5 592.7, 369.5 591.9 M 370.6 591.9 Q 370.6 592.4, 370.9 592.6 Q 371.2 592.8, 371.7 592.8 Q 372.2 592.8, 372.7 592.6 Q 373.1 592.4, 373.4 592.0 L 373.4 590.7 L 372.6 590.7 Q 371.6 590.7, 371.1 591.0 Q 370.6 591.3, 370.6 591.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 378.4 587.3 Q 379.6 587.3, 380.4 588.1 Q 381.1 588.9, 381.1 590.4 Q 381.1 591.9, 380.2 592.8 Q 379.4 593.7, 377.9 593.7 Q 376.9 593.7, 376.0 593.3 L 375.5 593.2 L 375.5 584.5 L 376.6 584.5 L 376.6 588.1 Q 377.3 587.3, 378.4 587.3 M 377.9 592.8 Q 378.8 592.8, 379.4 592.2 Q 379.9 591.5, 379.9 590.4 Q 379.9 589.3, 379.5 588.8 Q 379.1 588.2, 378.3 588.2 Q 377.7 588.2, 377.2 588.5 Q 376.8 588.9, 376.6 589.5 L 376.6 592.6 Q 377.2 592.8, 377.9 592.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 381.6 584.5 L 382.7 584.5 L 382.7 593.6 L 381.6 593.6 L 381.6 584.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 383.8 590.5 Q 383.8 589.0, 384.5 588.1 Q 385.3 587.3, 386.7 587.3 Q 388.0 587.3, 388.6 588.1 Q 389.2 588.9, 389.2 590.5 L 389.2 590.6 L 384.9 590.6 Q 384.9 591.7, 385.4 592.2 Q 385.9 592.8, 386.8 592.8 Q 387.2 592.8, 387.7 592.7 Q 388.1 592.6, 388.7 592.3 L 389.0 593.1 Q 388.4 593.4, 387.8 593.6 Q 387.3 593.7, 386.7 593.7 Q 385.3 593.7, 384.5 592.8 Q 383.8 592.0, 383.8 590.5 M 386.7 588.2 Q 385.9 588.2, 385.5 588.6 Q 385.1 589.0, 385.0 589.8 L 388.0 589.8 Q 388.0 589.0, 387.6 588.6 Q 387.3 588.2, 386.7 588.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 395.8 594.2 L 395.8 595.2 L 389.7 595.2 L 389.7 594.2 L 395.8 594.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 395.8 590.2 Q 395.8 588.4, 396.3 587.0 Q 396.8 585.6, 397.8 584.1 L 398.4 584.5 Q 397.7 585.9, 397.3 587.2 Q 396.9 588.5, 396.9 590.2 Q 396.9 591.8, 397.3 593.1 Q 397.7 594.3, 398.4 595.8 L 397.8 596.2 Q 396.8 594.7, 396.3 593.3 Q 395.8 591.9, 395.8 590.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 399.2 592.6 L 401.1 592.6 L 401.1 586.3 L 399.0 586.9 L 398.7 586.2 L 401.3 585.0 L 402.2 585.2 L 402.2 592.6 L 403.9 592.6 L 403.9 593.6 L 399.2 593.6 L 399.2 592.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 404.4 592.4 L 405.6 592.4 L 405.6 593.3 L 405.3 595.0 L 404.9 595.0 L 404.9 593.6 L 404.4 593.6 L 404.4 592.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 413.5 593.7 Q 411.9 593.7, 411.1 592.5 Q 410.3 591.4, 410.3 589.3 Q 410.3 587.3, 411.1 586.1 Q 411.9 585.0, 413.5 585.0 Q 415.0 585.0, 415.8 586.1 Q 416.6 587.3, 416.6 589.3 Q 416.6 591.4, 415.8 592.5 Q 415.0 593.7, 413.5 593.7 M 413.5 592.7 Q 414.4 592.7, 414.9 591.9 Q 415.4 591.0, 415.4 589.3 Q 415.4 587.7, 414.9 586.8 Q 414.4 586.0, 413.5 586.0 Q 412.5 586.0, 412.0 586.8 Q 411.5 587.7, 411.5 589.3 Q 411.5 591.0, 412.0 591.9 Q 412.5 592.7, 413.5 592.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 420.0 590.2 Q 420.0 591.9, 419.5 593.3 Q 419.0 594.7, 418.0 596.2 L 417.3 595.8 Q 418.1 594.3, 418.5 593.1 Q 418.9 591.8, 418.9 590.2 Q 418.9 588.5, 418.5 587.2 Q 418.1 585.9, 417.3 584.5 L 418.0 584.1 Q 419.0 585.6, 419.5 587.0 Q 420.0 588.4, 420.0 590.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 551.8,506.1 L 545.3,502.3\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 545.3,502.3 L 538.7,498.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 536.8,498.5 L 536.8,490.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 536.8,490.8 L 536.8,483.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 540.5,498.5 L 540.5,490.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 540.5,490.8 L 540.5,483.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 538.7,498.5 L 522.5,507.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 522.5,507.8 L 506.4,498.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 506.4,498.5 L 490.2,507.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 490.2,507.8 L 490.2,515.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 490.2,515.6 L 490.2,523.3\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 492.8,528.0 L 499.6,531.9\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 499.6,531.9 L 506.4,535.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 506.4,535.8 L 522.5,526.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-6 atom-9\" d=\"M 492.8,525.2 L 494.8,524.2\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-6 atom-9\" d=\"M 494.8,524.2 L 496.8,523.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 502.0,520.4 L 511.4,515.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-8 atom-3\" d=\"M 522.5,526.5 L 522.5,507.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-10 atom-3\" d=\"M 516.6,511.8 L 522.5,507.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 552.4 507.9 Q 552.4 506.6, 553.0 505.9 Q 553.7 505.2, 554.8 505.2 Q 556.0 505.2, 556.6 505.9 Q 557.3 506.6, 557.3 507.9 Q 557.3 509.1, 556.6 509.9 Q 556.0 510.6, 554.8 510.6 Q 553.7 510.6, 553.0 509.9 Q 552.4 509.1, 552.4 507.9 M 554.8 510.0 Q 555.6 510.0, 556.1 509.5 Q 556.5 508.9, 556.5 507.9 Q 556.5 506.8, 556.1 506.3 Q 555.6 505.8, 554.8 505.8 Q 554.0 505.8, 553.6 506.3 Q 553.2 506.8, 553.2 507.9 Q 553.2 508.9, 553.6 509.5 Q 554.0 510.0, 554.8 510.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 557.6 505.2 L 558.3 505.2 L 558.3 507.5 L 561.0 507.5 L 561.0 505.2 L 561.8 505.2 L 561.8 510.5 L 561.0 510.5 L 561.0 508.1 L 558.3 508.1 L 558.3 510.5 L 557.6 510.5 L 557.6 505.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 536.3 479.9 Q 536.3 478.6, 536.9 477.9 Q 537.5 477.2, 538.7 477.2 Q 539.9 477.2, 540.5 477.9 Q 541.1 478.6, 541.1 479.9 Q 541.1 481.2, 540.5 481.9 Q 539.8 482.6, 538.7 482.6 Q 537.5 482.6, 536.9 481.9 Q 536.3 481.2, 536.3 479.9 M 538.7 482.0 Q 539.5 482.0, 539.9 481.5 Q 540.4 480.9, 540.4 479.9 Q 540.4 478.8, 539.9 478.3 Q 539.5 477.8, 538.7 477.8 Q 537.9 477.8, 537.4 478.3 Q 537.0 478.8, 537.0 479.9 Q 537.0 480.9, 537.4 481.5 Q 537.9 482.0, 538.7 482.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-6\" d=\"M 489.1 523.8 L 490.8 526.6 Q 491.0 526.9, 491.3 527.4 Q 491.5 527.9, 491.5 527.9 L 491.5 523.8 L 492.2 523.8 L 492.2 529.1 L 491.5 529.1 L 489.7 526.1 Q 489.4 525.7, 489.2 525.3 Q 489.0 524.9, 488.9 524.8 L 488.9 529.1 L 488.2 529.1 L 488.2 523.8 L 489.1 523.8 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-9\" d=\"M 497.4 521.9 Q 497.4 520.6, 498.0 519.9 Q 498.6 519.2, 499.8 519.2 Q 500.9 519.2, 501.4 520.0 L 500.9 520.4 Q 500.5 519.9, 499.8 519.9 Q 499.0 519.9, 498.5 520.4 Q 498.1 520.9, 498.1 521.9 Q 498.1 523.0, 498.6 523.5 Q 499.0 524.1, 499.8 524.1 Q 500.4 524.1, 501.1 523.7 L 501.3 524.3 Q 501.0 524.4, 500.6 524.5 Q 500.2 524.7, 499.7 524.7 Q 498.6 524.7, 498.0 524.0 Q 497.4 523.3, 497.4 521.9 \" fill=\"#000000\"/>\n",
"<path class=\"atom-10\" d=\"M 512.0 513.5 Q 512.0 512.2, 512.6 511.5 Q 513.2 510.8, 514.4 510.8 Q 515.5 510.8, 516.0 511.6 L 515.5 512.0 Q 515.1 511.4, 514.4 511.4 Q 513.6 511.4, 513.1 512.0 Q 512.7 512.5, 512.7 513.5 Q 512.7 514.6, 513.2 515.1 Q 513.6 515.6, 514.5 515.6 Q 515.0 515.6, 515.7 515.3 L 515.9 515.8 Q 515.6 516.0, 515.2 516.1 Q 514.8 516.2, 514.3 516.2 Q 513.2 516.2, 512.6 515.5 Q 512.0 514.8, 512.0 513.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 483.2 585.1 Q 484.7 585.1, 485.4 585.8 Q 486.1 586.4, 486.1 587.6 Q 486.1 588.8, 485.4 589.4 Q 484.6 590.1, 483.2 590.1 L 481.9 590.1 L 481.9 593.6 L 480.7 593.6 L 480.7 585.1 L 483.2 585.1 M 483.2 589.1 Q 484.0 589.1, 484.5 588.7 Q 484.9 588.3, 484.9 587.6 Q 484.9 586.8, 484.5 586.4 Q 484.0 586.1, 483.2 586.1 L 481.9 586.1 L 481.9 589.1 L 483.2 589.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 486.7 590.5 Q 486.7 589.0, 487.4 588.1 Q 488.2 587.3, 489.6 587.3 Q 491.0 587.3, 491.8 588.1 Q 492.5 589.0, 492.5 590.5 Q 492.5 592.0, 491.8 592.8 Q 491.0 593.7, 489.6 593.7 Q 488.2 593.7, 487.4 592.8 Q 486.7 592.0, 486.7 590.5 M 487.8 590.5 Q 487.8 591.6, 488.3 592.2 Q 488.8 592.8, 489.6 592.8 Q 490.5 592.8, 490.9 592.2 Q 491.4 591.6, 491.4 590.5 Q 491.4 589.4, 490.9 588.8 Q 490.5 588.2, 489.6 588.2 Q 488.8 588.2, 488.3 588.8 Q 487.8 589.4, 487.8 590.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 493.4 592.3 Q 494.0 592.5, 494.4 592.6 Q 494.8 592.8, 495.2 592.8 Q 495.7 592.8, 496.0 592.5 Q 496.3 592.3, 496.3 591.9 Q 496.3 591.6, 496.2 591.4 Q 496.0 591.2, 495.8 591.1 Q 495.6 591.1, 495.1 590.9 Q 495.0 590.9, 494.4 590.7 Q 493.9 590.5, 493.6 590.1 Q 493.3 589.7, 493.3 589.1 Q 493.3 588.3, 493.9 587.8 Q 494.5 587.3, 495.6 587.3 Q 496.0 587.3, 496.4 587.4 Q 496.9 587.5, 497.3 587.7 L 497.0 588.6 Q 496.6 588.4, 496.3 588.3 Q 495.9 588.2, 495.6 588.2 Q 495.0 588.2, 494.7 588.5 Q 494.4 588.7, 494.4 589.1 Q 494.4 589.4, 494.7 589.6 Q 494.9 589.7, 495.4 589.9 Q 495.5 589.9, 495.6 590.0 L 495.9 590.1 Q 496.4 590.2, 496.7 590.4 Q 497.0 590.6, 497.2 590.9 Q 497.5 591.3, 497.5 591.8 Q 497.5 592.7, 496.8 593.2 Q 496.2 593.7, 495.2 593.7 Q 494.6 593.7, 494.1 593.6 Q 493.6 593.4, 493.1 593.2 L 493.4 592.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 498.1 585.1 L 499.2 585.1 L 499.2 593.6 L 498.1 593.6 L 498.1 585.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 500.3 590.5 Q 500.3 589.0, 501.1 588.1 Q 501.8 587.3, 503.2 587.3 Q 504.6 587.3, 505.4 588.1 Q 506.2 589.0, 506.2 590.5 Q 506.2 592.0, 505.4 592.8 Q 504.6 593.7, 503.2 593.7 Q 501.8 593.7, 501.1 592.8 Q 500.3 592.0, 500.3 590.5 M 501.4 590.5 Q 501.4 591.6, 501.9 592.2 Q 502.4 592.8, 503.2 592.8 Q 504.1 592.8, 504.5 592.2 Q 505.0 591.6, 505.0 590.5 Q 505.0 589.4, 504.5 588.8 Q 504.1 588.2, 503.2 588.2 Q 502.4 588.2, 501.9 588.8 Q 501.4 589.4, 501.4 590.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 509.9 587.3 Q 510.9 587.3, 511.4 587.9 Q 511.9 588.4, 511.9 589.5 L 511.9 593.6 L 510.8 593.6 L 510.8 589.6 Q 510.8 588.9, 510.5 588.5 Q 510.3 588.2, 509.6 588.2 Q 509.1 588.2, 508.6 588.5 Q 508.1 588.7, 507.8 589.2 L 507.8 593.6 L 506.7 593.6 L 506.7 587.4 L 507.6 587.4 L 507.8 588.3 Q 508.6 587.3, 509.9 587.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 512.9 585.1 L 514.0 585.1 L 514.0 586.1 L 512.9 586.1 L 512.9 585.1 M 512.9 587.4 L 514.0 587.4 L 514.0 593.6 L 512.9 593.6 L 512.9 587.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 516.4 592.7 L 519.7 592.7 L 519.7 593.6 L 515.0 593.6 L 515.0 592.9 L 518.2 588.3 L 515.2 588.3 L 515.2 587.4 L 519.6 587.4 L 519.6 588.1 L 516.4 592.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 520.2 591.9 Q 520.2 590.9, 521.0 590.4 Q 521.8 589.9, 523.2 589.9 L 524.1 589.9 L 524.1 589.6 Q 524.1 588.8, 523.8 588.5 Q 523.5 588.2, 522.7 588.2 Q 522.2 588.2, 521.8 588.3 Q 521.5 588.4, 520.9 588.6 L 520.5 587.9 Q 521.6 587.3, 522.7 587.3 Q 524.0 587.3, 524.6 587.9 Q 525.2 588.4, 525.2 589.6 L 525.2 593.6 L 524.4 593.6 Q 524.4 593.5, 524.3 593.4 Q 524.3 593.2, 524.2 592.9 Q 523.3 593.7, 522.2 593.7 Q 521.3 593.7, 520.7 593.2 Q 520.2 592.7, 520.2 591.9 M 521.3 591.9 Q 521.3 592.4, 521.6 592.6 Q 521.9 592.8, 522.4 592.8 Q 522.9 592.8, 523.3 592.6 Q 523.8 592.4, 524.1 592.0 L 524.1 590.7 L 523.3 590.7 Q 522.3 590.7, 521.8 591.0 Q 521.3 591.3, 521.3 591.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 529.0 587.3 Q 530.3 587.3, 531.0 588.1 Q 531.8 588.9, 531.8 590.4 Q 531.8 591.9, 530.9 592.8 Q 530.1 593.7, 528.6 593.7 Q 527.6 593.7, 526.7 593.3 L 526.2 593.2 L 526.2 584.5 L 527.3 584.5 L 527.3 588.1 Q 527.9 587.3, 529.0 587.3 M 528.6 592.8 Q 529.5 592.8, 530.1 592.2 Q 530.6 591.5, 530.6 590.4 Q 530.6 589.3, 530.2 588.8 Q 529.8 588.2, 529.0 588.2 Q 528.4 588.2, 527.9 588.5 Q 527.5 588.9, 527.3 589.5 L 527.3 592.6 Q 527.9 592.8, 528.6 592.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 532.3 584.5 L 533.4 584.5 L 533.4 593.6 L 532.3 593.6 L 532.3 584.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 534.4 590.5 Q 534.4 589.0, 535.2 588.1 Q 536.0 587.3, 537.3 587.3 Q 538.7 587.3, 539.3 588.1 Q 539.9 588.9, 539.9 590.5 L 539.9 590.6 L 535.6 590.6 Q 535.6 591.7, 536.1 592.2 Q 536.6 592.8, 537.4 592.8 Q 537.9 592.8, 538.4 592.7 Q 538.8 592.6, 539.3 592.3 L 539.7 593.1 Q 539.1 593.4, 538.5 593.6 Q 538.0 593.7, 537.4 593.7 Q 536.0 593.7, 535.2 592.8 Q 534.4 592.0, 534.4 590.5 M 537.3 588.2 Q 536.6 588.2, 536.2 588.6 Q 535.8 589.0, 535.6 589.8 L 538.7 589.8 Q 538.6 589.0, 538.3 588.6 Q 538.0 588.2, 537.3 588.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 546.5 594.2 L 546.5 595.2 L 540.4 595.2 L 540.4 594.2 L 546.5 594.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 546.5 590.2 Q 546.5 588.4, 547.0 587.0 Q 547.5 585.6, 548.5 584.1 L 549.1 584.5 Q 548.3 585.9, 547.9 587.2 Q 547.6 588.5, 547.6 590.2 Q 547.6 591.8, 547.9 593.1 Q 548.3 594.3, 549.1 595.8 L 548.5 596.2 Q 547.5 594.7, 547.0 593.3 Q 546.5 591.9, 546.5 590.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 549.9 592.6 L 551.8 592.6 L 551.8 586.3 L 549.7 586.9 L 549.4 586.2 L 552.0 585.0 L 552.9 585.2 L 552.9 592.6 L 554.5 592.6 L 554.5 593.6 L 549.9 593.6 L 549.9 592.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 555.1 592.4 L 556.3 592.4 L 556.3 593.3 L 556.0 595.0 L 555.6 595.0 L 555.6 593.6 L 555.1 593.6 L 555.1 592.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 561.5 592.6 L 563.4 592.6 L 563.4 586.3 L 561.3 586.9 L 561.0 586.2 L 563.6 585.0 L 564.5 585.2 L 564.5 592.6 L 566.2 592.6 L 566.2 593.6 L 561.5 593.6 L 561.5 592.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 569.3 590.2 Q 569.3 591.9, 568.8 593.3 Q 568.3 594.7, 567.3 596.2 L 566.7 595.8 Q 567.4 594.3, 567.8 593.1 Q 568.2 591.8, 568.2 590.2 Q 568.2 588.5, 567.8 587.2 Q 567.4 585.9, 566.7 584.5 L 567.3 584.1 Q 568.3 585.6, 568.8 587.0 Q 569.3 588.4, 569.3 590.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-1 atom-0\" d=\"M 663.9,507.8 L 646.8,500.1 L 648.7,496.9 Z\" style=\"fill:#000000;fill-rule:evenodd;fill-opacity:1;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 663.9,507.8 L 663.9,515.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 663.9,515.5 L 663.9,523.2\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 661.3,528.0 L 654.5,531.9\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 654.5,531.9 L 647.8,535.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-2 atom-4\" d=\"M 666.5,528.0 L 673.3,531.9\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-2 atom-4\" d=\"M 673.3,531.9 L 680.1,535.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-1 atom-5\" d=\"M 663.9,507.8 L 680.1,498.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 680.1,498.5 L 686.6,502.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 686.6,502.3 L 693.2,506.1\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 678.2,498.5 L 678.2,490.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 678.2,490.9 L 678.2,483.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 681.9,498.5 L 681.9,490.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 681.9,490.9 L 681.9,483.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-2\" d=\"M 662.8 523.8 L 664.5 526.6 Q 664.7 526.9, 664.9 527.4 Q 665.2 527.9, 665.2 527.9 L 665.2 523.8 L 665.9 523.8 L 665.9 529.1 L 665.2 529.1 L 663.3 526.1 Q 663.1 525.7, 662.9 525.3 Q 662.7 524.9, 662.6 524.8 L 662.6 529.1 L 661.9 529.1 L 661.9 523.8 L 662.8 523.8 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-6\" d=\"M 693.8 507.9 Q 693.8 506.6, 694.4 505.9 Q 695.1 505.2, 696.2 505.2 Q 697.4 505.2, 698.0 505.9 Q 698.6 506.6, 698.6 507.9 Q 698.6 509.1, 698.0 509.9 Q 697.4 510.6, 696.2 510.6 Q 695.1 510.6, 694.4 509.9 Q 693.8 509.1, 693.8 507.9 M 696.2 510.0 Q 697.0 510.0, 697.5 509.5 Q 697.9 508.9, 697.9 507.9 Q 697.9 506.8, 697.5 506.3 Q 697.0 505.8, 696.2 505.8 Q 695.4 505.8, 695.0 506.3 Q 694.5 506.8, 694.5 507.9 Q 694.5 508.9, 695.0 509.5 Q 695.4 510.0, 696.2 510.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-6\" d=\"M 699.0 505.2 L 699.7 505.2 L 699.7 507.5 L 702.4 507.5 L 702.4 505.2 L 703.2 505.2 L 703.2 510.5 L 702.4 510.5 L 702.4 508.1 L 699.7 508.1 L 699.7 510.5 L 699.0 510.5 L 699.0 505.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 677.7 479.9 Q 677.7 478.6, 678.3 477.9 Q 678.9 477.2, 680.1 477.2 Q 681.2 477.2, 681.9 477.9 Q 682.5 478.6, 682.5 479.9 Q 682.5 481.2, 681.9 481.9 Q 681.2 482.6, 680.1 482.6 Q 678.9 482.6, 678.3 481.9 Q 677.7 481.2, 677.7 479.9 M 680.1 482.0 Q 680.9 482.0, 681.3 481.5 Q 681.8 480.9, 681.8 479.9 Q 681.8 478.8, 681.3 478.3 Q 680.9 477.8, 680.1 477.8 Q 679.3 477.8, 678.8 478.3 Q 678.4 478.8, 678.4 479.9 Q 678.4 480.9, 678.8 481.5 Q 679.3 482.0, 680.1 482.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 632.1 585.1 Q 633.6 585.1, 634.3 585.8 Q 635.0 586.4, 635.0 587.6 Q 635.0 588.8, 634.3 589.4 Q 633.5 590.1, 632.1 590.1 L 630.8 590.1 L 630.8 593.6 L 629.6 593.6 L 629.6 585.1 L 632.1 585.1 M 632.1 589.1 Q 632.9 589.1, 633.4 588.7 Q 633.8 588.3, 633.8 587.6 Q 633.8 586.8, 633.4 586.4 Q 633.0 586.1, 632.1 586.1 L 630.8 586.1 L 630.8 589.1 L 632.1 589.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 635.6 590.5 Q 635.6 589.0, 636.4 588.1 Q 637.1 587.3, 638.5 587.3 Q 639.9 587.3, 640.7 588.1 Q 641.5 589.0, 641.5 590.5 Q 641.5 592.0, 640.7 592.8 Q 639.9 593.7, 638.5 593.7 Q 637.1 593.7, 636.4 592.8 Q 635.6 592.0, 635.6 590.5 M 636.7 590.5 Q 636.7 591.6, 637.2 592.2 Q 637.7 592.8, 638.5 592.8 Q 639.4 592.8, 639.8 592.2 Q 640.3 591.6, 640.3 590.5 Q 640.3 589.4, 639.8 588.8 Q 639.4 588.2, 638.5 588.2 Q 637.7 588.2, 637.2 588.8 Q 636.7 589.4, 636.7 590.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 642.4 592.3 Q 642.9 592.5, 643.3 592.6 Q 643.7 592.8, 644.1 592.8 Q 644.6 592.8, 644.9 592.5 Q 645.2 592.3, 645.2 591.9 Q 645.2 591.6, 645.1 591.4 Q 644.9 591.2, 644.7 591.1 Q 644.5 591.1, 644.0 590.9 Q 643.9 590.9, 643.3 590.7 Q 642.8 590.5, 642.5 590.1 Q 642.2 589.7, 642.2 589.1 Q 642.2 588.3, 642.8 587.8 Q 643.4 587.3, 644.5 587.3 Q 644.9 587.3, 645.4 587.4 Q 645.8 587.5, 646.2 587.7 L 645.9 588.6 Q 645.5 588.4, 645.2 588.3 Q 644.8 588.2, 644.5 588.2 Q 643.9 588.2, 643.6 588.5 Q 643.3 588.7, 643.3 589.1 Q 643.3 589.4, 643.6 589.6 Q 643.8 589.7, 644.3 589.9 Q 644.4 589.9, 644.5 590.0 L 644.8 590.1 Q 645.3 590.2, 645.6 590.4 Q 645.9 590.6, 646.2 590.9 Q 646.4 591.3, 646.4 591.8 Q 646.4 592.7, 645.7 593.2 Q 645.1 593.7, 644.1 593.7 Q 643.5 593.7, 643.0 593.6 Q 642.5 593.4, 642.0 593.2 L 642.4 592.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 647.0 585.1 L 648.1 585.1 L 648.1 593.6 L 647.0 593.6 L 647.0 585.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 649.2 590.5 Q 649.2 589.0, 650.0 588.1 Q 650.7 587.3, 652.1 587.3 Q 653.5 587.3, 654.3 588.1 Q 655.1 589.0, 655.1 590.5 Q 655.1 592.0, 654.3 592.8 Q 653.5 593.7, 652.1 593.7 Q 650.7 593.7, 650.0 592.8 Q 649.2 592.0, 649.2 590.5 M 650.4 590.5 Q 650.4 591.6, 650.8 592.2 Q 651.3 592.8, 652.1 592.8 Q 653.0 592.8, 653.4 592.2 Q 653.9 591.6, 653.9 590.5 Q 653.9 589.4, 653.4 588.8 Q 653.0 588.2, 652.1 588.2 Q 651.3 588.2, 650.8 588.8 Q 650.4 589.4, 650.4 590.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 658.8 587.3 Q 659.8 587.3, 660.3 587.9 Q 660.9 588.4, 660.9 589.5 L 660.9 593.6 L 659.7 593.6 L 659.7 589.6 Q 659.7 588.9, 659.4 588.5 Q 659.2 588.2, 658.5 588.2 Q 658.0 588.2, 657.5 588.5 Q 657.0 588.7, 656.7 589.2 L 656.7 593.6 L 655.6 593.6 L 655.6 587.4 L 656.5 587.4 L 656.7 588.3 Q 657.5 587.3, 658.8 587.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 661.8 585.1 L 662.9 585.1 L 662.9 586.1 L 661.8 586.1 L 661.8 585.1 M 661.8 587.4 L 662.9 587.4 L 662.9 593.6 L 661.8 593.6 L 661.8 587.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 665.3 592.7 L 668.7 592.7 L 668.7 593.6 L 663.9 593.6 L 663.9 592.9 L 667.2 588.3 L 664.1 588.3 L 664.1 587.4 L 668.5 587.4 L 668.5 588.1 L 665.3 592.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 669.1 591.9 Q 669.1 590.9, 669.9 590.4 Q 670.7 589.9, 672.1 589.9 L 673.0 589.9 L 673.0 589.6 Q 673.0 588.8, 672.7 588.5 Q 672.4 588.2, 671.6 588.2 Q 671.1 588.2, 670.7 588.3 Q 670.4 588.4, 669.8 588.6 L 669.4 587.9 Q 670.6 587.3, 671.6 587.3 Q 673.0 587.3, 673.6 587.9 Q 674.2 588.4, 674.2 589.6 L 674.2 593.6 L 673.3 593.6 Q 673.3 593.5, 673.2 593.4 Q 673.2 593.2, 673.1 592.9 Q 672.3 593.7, 671.1 593.7 Q 670.2 593.7, 669.6 593.2 Q 669.1 592.7, 669.1 591.9 M 670.2 591.9 Q 670.2 592.4, 670.5 592.6 Q 670.8 592.8, 671.3 592.8 Q 671.8 592.8, 672.3 592.6 Q 672.7 592.4, 673.0 592.0 L 673.0 590.7 L 672.2 590.7 Q 671.2 590.7, 670.7 591.0 Q 670.2 591.3, 670.2 591.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 678.0 587.3 Q 679.2 587.3, 679.9 588.1 Q 680.7 588.9, 680.7 590.4 Q 680.7 591.9, 679.8 592.8 Q 679.0 593.7, 677.5 593.7 Q 676.5 593.7, 675.6 593.3 L 675.1 593.2 L 675.1 584.5 L 676.2 584.5 L 676.2 588.1 Q 676.9 587.3, 678.0 587.3 M 677.5 592.8 Q 678.4 592.8, 679.0 592.2 Q 679.5 591.5, 679.5 590.4 Q 679.5 589.3, 679.1 588.8 Q 678.7 588.2, 677.9 588.2 Q 677.3 588.2, 676.8 588.5 Q 676.4 588.9, 676.2 589.5 L 676.2 592.6 Q 676.8 592.8, 677.5 592.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 681.2 584.5 L 682.3 584.5 L 682.3 593.6 L 681.2 593.6 L 681.2 584.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 683.4 590.5 Q 683.4 589.0, 684.1 588.1 Q 684.9 587.3, 686.2 587.3 Q 687.6 587.3, 688.2 588.1 Q 688.8 588.9, 688.8 590.5 L 688.8 590.6 L 684.5 590.6 Q 684.5 591.7, 685.0 592.2 Q 685.5 592.8, 686.3 592.8 Q 686.8 592.8, 687.3 592.7 Q 687.7 592.6, 688.3 592.3 L 688.6 593.1 Q 688.0 593.4, 687.4 593.6 Q 686.9 593.7, 686.3 593.7 Q 684.9 593.7, 684.1 592.8 Q 683.4 592.0, 683.4 590.5 M 686.2 588.2 Q 685.5 588.2, 685.1 588.6 Q 684.7 589.0, 684.6 589.8 L 687.6 589.8 Q 687.5 589.0, 687.2 588.6 Q 686.9 588.2, 686.2 588.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 695.4 594.2 L 695.4 595.2 L 689.3 595.2 L 689.3 594.2 L 695.4 594.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 695.4 590.2 Q 695.4 588.4, 695.9 587.0 Q 696.4 585.6, 697.4 584.1 L 698.0 584.5 Q 697.3 585.9, 696.9 587.2 Q 696.5 588.5, 696.5 590.2 Q 696.5 591.8, 696.9 593.1 Q 697.3 594.3, 698.0 595.8 L 697.4 596.2 Q 696.4 594.7, 695.9 593.3 Q 695.4 591.9, 695.4 590.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 698.4 586.7 Q 698.7 585.9, 699.4 585.5 Q 700.2 585.0, 701.2 585.0 Q 702.5 585.0, 703.2 585.7 Q 703.9 586.4, 703.9 587.6 Q 703.9 588.9, 703.0 590.1 Q 702.1 591.2, 700.1 592.6 L 704.1 592.6 L 704.1 593.6 L 698.3 593.6 L 698.3 592.8 Q 699.9 591.7, 700.9 590.8 Q 701.8 590.0, 702.3 589.2 Q 702.7 588.5, 702.7 587.7 Q 702.7 586.9, 702.3 586.4 Q 701.9 586.0, 701.2 586.0 Q 700.5 586.0, 700.0 586.2 Q 699.6 586.5, 699.3 587.1 L 698.4 586.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 704.8 592.4 L 706.0 592.4 L 706.0 593.3 L 705.7 595.0 L 705.3 595.0 L 705.3 593.6 L 704.8 593.6 L 704.8 592.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 713.9 593.7 Q 712.3 593.7, 711.5 592.5 Q 710.8 591.4, 710.8 589.3 Q 710.8 587.3, 711.5 586.1 Q 712.3 585.0, 713.9 585.0 Q 715.4 585.0, 716.2 586.1 Q 717.0 587.3, 717.0 589.3 Q 717.0 591.4, 716.2 592.5 Q 715.4 593.7, 713.9 593.7 M 713.9 592.7 Q 714.8 592.7, 715.3 591.9 Q 715.8 591.0, 715.8 589.3 Q 715.8 587.7, 715.3 586.8 Q 714.8 586.0, 713.9 586.0 Q 713.0 586.0, 712.4 586.8 Q 712.0 587.7, 712.0 589.3 Q 712.0 591.0, 712.4 591.9 Q 713.0 592.7, 713.9 592.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 720.4 590.2 Q 720.4 591.9, 719.9 593.3 Q 719.4 594.7, 718.4 596.2 L 717.8 595.8 Q 718.5 594.3, 718.9 593.1 Q 719.3 591.8, 719.3 590.2 Q 719.3 588.5, 718.9 587.2 Q 718.5 585.9, 717.8 584.5 L 718.4 584.1 Q 719.4 585.6, 719.9 587.0 Q 720.4 588.4, 720.4 590.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 811.9,486.9 L 815.7,493.3\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 815.7,493.3 L 819.4,499.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 819.4,499.7 L 810.0,515.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 810.0,515.9 L 826.2,525.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 826.2,525.2 L 842.3,515.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 842.3,515.9 L 848.9,519.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 848.9,519.7 L 855.5,523.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-4 atom-6\" d=\"M 840.5,515.9 L 840.5,508.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-4 atom-6\" d=\"M 840.5,508.3 L 840.5,500.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-4 atom-6\" d=\"M 844.2,515.9 L 844.2,508.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-4 atom-6\" d=\"M 844.2,508.3 L 844.2,500.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-2 atom-7\" d=\"M 810.0,515.9 L 793.9,506.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 793.9,506.6 L 784.6,522.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 784.6,522.7 L 800.7,532.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-2\" d=\"M 800.7,532.0 L 810.0,515.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 800.6 481.0 L 801.4 481.0 L 801.4 483.2 L 804.1 483.2 L 804.1 481.0 L 804.8 481.0 L 804.8 486.2 L 804.1 486.2 L 804.1 483.8 L 801.4 483.8 L 801.4 486.2 L 800.6 486.2 L 800.6 481.0 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-0\" d=\"M 805.4 486.1 Q 805.5 485.7, 805.8 485.5 Q 806.2 485.4, 806.6 485.4 Q 807.1 485.4, 807.4 485.6 Q 807.7 485.9, 807.7 486.4 Q 807.7 486.9, 807.3 487.4 Q 806.9 487.9, 806.1 488.5 L 807.8 488.5 L 807.8 488.9 L 805.4 488.9 L 805.4 488.5 Q 806.1 488.1, 806.4 487.7 Q 806.8 487.4, 807.0 487.1 Q 807.2 486.8, 807.2 486.5 Q 807.2 486.1, 807.0 485.9 Q 806.9 485.7, 806.6 485.7 Q 806.3 485.7, 806.1 485.9 Q 805.9 486.0, 805.8 486.2 L 805.4 486.1 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-0\" d=\"M 808.9 481.0 L 810.6 483.8 Q 810.8 484.0, 811.1 484.5 Q 811.3 485.0, 811.4 485.1 L 811.4 481.0 L 812.1 481.0 L 812.1 486.2 L 811.3 486.2 L 809.5 483.2 Q 809.3 482.8, 809.0 482.4 Q 808.8 482.0, 808.7 481.9 L 808.7 486.2 L 808.0 486.2 L 808.0 481.0 L 808.9 481.0 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-5\" d=\"M 856.1 525.2 Q 856.1 524.0, 856.7 523.3 Q 857.3 522.5, 858.5 522.5 Q 859.7 522.5, 860.3 523.3 Q 860.9 524.0, 860.9 525.2 Q 860.9 526.5, 860.3 527.2 Q 859.6 528.0, 858.5 528.0 Q 857.3 528.0, 856.7 527.2 Q 856.1 526.5, 856.1 525.2 M 858.5 527.4 Q 859.3 527.4, 859.7 526.8 Q 860.2 526.3, 860.2 525.2 Q 860.2 524.2, 859.7 523.7 Q 859.3 523.1, 858.5 523.1 Q 857.7 523.1, 857.2 523.7 Q 856.8 524.2, 856.8 525.2 Q 856.8 526.3, 857.2 526.8 Q 857.7 527.4, 858.5 527.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-5\" d=\"M 861.3 522.6 L 862.0 522.6 L 862.0 524.9 L 864.7 524.9 L 864.7 522.6 L 865.4 522.6 L 865.4 527.9 L 864.7 527.9 L 864.7 525.4 L 862.0 525.4 L 862.0 527.9 L 861.3 527.9 L 861.3 522.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-6\" d=\"M 839.9 497.3 Q 839.9 496.0, 840.5 495.3 Q 841.2 494.6, 842.3 494.6 Q 843.5 494.6, 844.1 495.3 Q 844.8 496.0, 844.8 497.3 Q 844.8 498.5, 844.1 499.3 Q 843.5 500.0, 842.3 500.0 Q 841.2 500.0, 840.5 499.3 Q 839.9 498.6, 839.9 497.3 M 842.3 499.4 Q 843.2 499.4, 843.6 498.9 Q 844.0 498.3, 844.0 497.3 Q 844.0 496.2, 843.6 495.7 Q 843.2 495.2, 842.3 495.2 Q 841.5 495.2, 841.1 495.7 Q 840.7 496.2, 840.7 497.3 Q 840.7 498.3, 841.1 498.9 Q 841.5 499.4, 842.3 499.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 782.8 585.1 Q 784.3 585.1, 785.0 585.8 Q 785.7 586.4, 785.7 587.6 Q 785.7 588.8, 785.0 589.4 Q 784.2 590.1, 782.8 590.1 L 781.4 590.1 L 781.4 593.6 L 780.3 593.6 L 780.3 585.1 L 782.8 585.1 M 782.8 589.1 Q 783.6 589.1, 784.1 588.7 Q 784.5 588.3, 784.5 587.6 Q 784.5 586.8, 784.1 586.4 Q 783.6 586.1, 782.8 586.1 L 781.4 586.1 L 781.4 589.1 L 782.8 589.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 786.3 590.5 Q 786.3 589.0, 787.0 588.1 Q 787.8 587.3, 789.2 587.3 Q 790.6 587.3, 791.4 588.1 Q 792.1 589.0, 792.1 590.5 Q 792.1 592.0, 791.4 592.8 Q 790.6 593.7, 789.2 593.7 Q 787.8 593.7, 787.0 592.8 Q 786.3 592.0, 786.3 590.5 M 787.4 590.5 Q 787.4 591.6, 787.9 592.2 Q 788.4 592.8, 789.2 592.8 Q 790.1 592.8, 790.5 592.2 Q 791.0 591.6, 791.0 590.5 Q 791.0 589.4, 790.5 588.8 Q 790.1 588.2, 789.2 588.2 Q 788.4 588.2, 787.9 588.8 Q 787.4 589.4, 787.4 590.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 793.0 592.3 Q 793.6 592.5, 794.0 592.6 Q 794.4 592.8, 794.8 592.8 Q 795.3 592.8, 795.6 592.5 Q 795.9 592.3, 795.9 591.9 Q 795.9 591.6, 795.8 591.4 Q 795.6 591.2, 795.4 591.1 Q 795.2 591.1, 794.7 590.9 Q 794.6 590.9, 794.0 590.7 Q 793.5 590.5, 793.2 590.1 Q 792.9 589.7, 792.9 589.1 Q 792.9 588.3, 793.5 587.8 Q 794.0 587.3, 795.2 587.3 Q 795.6 587.3, 796.0 587.4 Q 796.5 587.5, 796.9 587.7 L 796.6 588.6 Q 796.2 588.4, 795.9 588.3 Q 795.5 588.2, 795.2 588.2 Q 794.6 588.2, 794.3 588.5 Q 794.0 588.7, 794.0 589.1 Q 794.0 589.4, 794.2 589.6 Q 794.5 589.7, 795.0 589.9 Q 795.1 589.9, 795.2 590.0 L 795.5 590.1 Q 796.0 590.2, 796.3 590.4 Q 796.6 590.6, 796.8 590.9 Q 797.1 591.3, 797.1 591.8 Q 797.1 592.7, 796.4 593.2 Q 795.8 593.7, 794.8 593.7 Q 794.2 593.7, 793.7 593.6 Q 793.2 593.4, 792.7 593.2 L 793.0 592.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 797.7 585.1 L 798.8 585.1 L 798.8 593.6 L 797.7 593.6 L 797.7 585.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 799.9 590.5 Q 799.9 589.0, 800.6 588.1 Q 801.4 587.3, 802.8 587.3 Q 804.2 587.3, 805.0 588.1 Q 805.7 589.0, 805.7 590.5 Q 805.7 592.0, 805.0 592.8 Q 804.2 593.7, 802.8 593.7 Q 801.4 593.7, 800.6 592.8 Q 799.9 592.0, 799.9 590.5 M 801.0 590.5 Q 801.0 591.6, 801.5 592.2 Q 802.0 592.8, 802.8 592.8 Q 803.7 592.8, 804.1 592.2 Q 804.6 591.6, 804.6 590.5 Q 804.6 589.4, 804.1 588.8 Q 803.7 588.2, 802.8 588.2 Q 802.0 588.2, 801.5 588.8 Q 801.0 589.4, 801.0 590.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 809.5 587.3 Q 810.5 587.3, 811.0 587.9 Q 811.5 588.4, 811.5 589.5 L 811.5 593.6 L 810.4 593.6 L 810.4 589.6 Q 810.4 588.9, 810.1 588.5 Q 809.8 588.2, 809.2 588.2 Q 808.7 588.2, 808.2 588.5 Q 807.7 588.7, 807.4 589.2 L 807.4 593.6 L 806.3 593.6 L 806.3 587.4 L 807.2 587.4 L 807.4 588.3 Q 808.2 587.3, 809.5 587.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 812.5 585.1 L 813.6 585.1 L 813.6 586.1 L 812.5 586.1 L 812.5 585.1 M 812.5 587.4 L 813.6 587.4 L 813.6 593.6 L 812.5 593.6 L 812.5 587.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 815.9 592.7 L 819.3 592.7 L 819.3 593.6 L 814.6 593.6 L 814.6 592.9 L 817.8 588.3 L 814.8 588.3 L 814.8 587.4 L 819.2 587.4 L 819.2 588.1 L 815.9 592.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 819.8 591.9 Q 819.8 590.9, 820.6 590.4 Q 821.3 589.9, 822.8 589.9 L 823.7 589.9 L 823.7 589.6 Q 823.7 588.8, 823.4 588.5 Q 823.1 588.2, 822.3 588.2 Q 821.8 588.2, 821.4 588.3 Q 821.0 588.4, 820.4 588.6 L 820.1 587.9 Q 821.2 587.3, 822.3 587.3 Q 823.6 587.3, 824.2 587.9 Q 824.8 588.4, 824.8 589.6 L 824.8 593.6 L 824.0 593.6 Q 823.9 593.5, 823.9 593.4 Q 823.9 593.2, 823.8 592.9 Q 822.9 593.7, 821.8 593.7 Q 820.9 593.7, 820.3 593.2 Q 819.8 592.7, 819.8 591.9 M 820.9 591.9 Q 820.9 592.4, 821.2 592.6 Q 821.5 592.8, 822.0 592.8 Q 822.5 592.8, 822.9 592.6 Q 823.4 592.4, 823.7 592.0 L 823.7 590.7 L 822.9 590.7 Q 821.9 590.7, 821.4 591.0 Q 820.9 591.3, 820.9 591.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 828.6 587.3 Q 829.9 587.3, 830.6 588.1 Q 831.4 588.9, 831.4 590.4 Q 831.4 591.9, 830.5 592.8 Q 829.7 593.7, 828.2 593.7 Q 827.2 593.7, 826.3 593.3 L 825.8 593.2 L 825.8 584.5 L 826.9 584.5 L 826.9 588.1 Q 827.5 587.3, 828.6 587.3 M 828.2 592.8 Q 829.1 592.8, 829.7 592.2 Q 830.2 591.5, 830.2 590.4 Q 830.2 589.3, 829.8 588.8 Q 829.3 588.2, 828.6 588.2 Q 827.9 588.2, 827.5 588.5 Q 827.1 588.9, 826.9 589.5 L 826.9 592.6 Q 827.5 592.8, 828.2 592.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 831.9 584.5 L 833.0 584.5 L 833.0 593.6 L 831.9 593.6 L 831.9 584.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 834.0 590.5 Q 834.0 589.0, 834.8 588.1 Q 835.6 587.3, 836.9 587.3 Q 838.3 587.3, 838.9 588.1 Q 839.5 588.9, 839.5 590.5 L 839.5 590.6 L 835.2 590.6 Q 835.2 591.7, 835.7 592.2 Q 836.2 592.8, 837.0 592.8 Q 837.5 592.8, 838.0 592.7 Q 838.4 592.6, 838.9 592.3 L 839.3 593.1 Q 838.6 593.4, 838.1 593.6 Q 837.5 593.7, 837.0 593.7 Q 835.6 593.7, 834.8 592.8 Q 834.0 592.0, 834.0 590.5 M 836.9 588.2 Q 836.2 588.2, 835.8 588.6 Q 835.4 589.0, 835.2 589.8 L 838.3 589.8 Q 838.2 589.0, 837.9 588.6 Q 837.6 588.2, 836.9 588.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 846.1 594.2 L 846.1 595.2 L 840.0 595.2 L 840.0 594.2 L 846.1 594.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 846.1 590.2 Q 846.1 588.4, 846.6 587.0 Q 847.1 585.6, 848.0 584.1 L 848.7 584.5 Q 847.9 585.9, 847.5 587.2 Q 847.2 588.5, 847.2 590.2 Q 847.2 591.8, 847.5 593.1 Q 847.9 594.3, 848.7 595.8 L 848.0 596.2 Q 847.1 594.7, 846.6 593.3 Q 846.1 591.9, 846.1 590.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 849.0 586.7 Q 849.4 585.9, 850.1 585.5 Q 850.8 585.0, 851.9 585.0 Q 853.2 585.0, 853.9 585.7 Q 854.6 586.4, 854.6 587.6 Q 854.6 588.9, 853.7 590.1 Q 852.7 591.2, 850.8 592.6 L 854.7 592.6 L 854.7 593.6 L 849.0 593.6 L 849.0 592.8 Q 850.6 591.7, 851.5 590.8 Q 852.5 590.0, 852.9 589.2 Q 853.4 588.5, 853.4 587.7 Q 853.4 586.9, 853.0 586.4 Q 852.6 586.0, 851.9 586.0 Q 851.2 586.0, 850.7 586.2 Q 850.3 586.5, 850.0 587.1 L 849.0 586.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 855.5 592.4 L 856.7 592.4 L 856.7 593.3 L 856.4 595.0 L 856.0 595.0 L 856.0 593.6 L 855.5 593.6 L 855.5 592.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 861.9 592.6 L 863.8 592.6 L 863.8 586.3 L 861.7 586.9 L 861.4 586.2 L 864.0 585.0 L 864.9 585.2 L 864.9 592.6 L 866.6 592.6 L 866.6 593.6 L 861.9 593.6 L 861.9 592.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 869.7 590.2 Q 869.7 591.9, 869.2 593.3 Q 868.7 594.7, 867.7 596.2 L 867.1 595.8 Q 867.8 594.3, 868.2 593.1 Q 868.6 591.8, 868.6 590.2 Q 868.6 588.5, 868.2 587.2 Q 867.8 585.9, 867.1 584.5 L 867.7 584.1 Q 868.7 585.6, 869.2 587.0 Q 869.7 588.4, 869.7 590.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 1007.5,518.7 L 1001.0,514.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 1001.0,514.9 L 994.4,511.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 992.5,511.1 L 992.5,503.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 992.5,503.5 L 992.5,495.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 996.3,511.1 L 996.3,503.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 996.3,503.5 L 996.3,495.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 994.4,511.1 L 978.3,520.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 978.3,520.4 L 962.1,511.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 962.1,511.1 L 944.1,515.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 944.1,515.9 L 942.1,508.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 942.1,508.6 L 940.2,501.2\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 941.9,497.2 L 949.6,495.2\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 949.6,495.2 L 957.3,493.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-4\" d=\"M 957.3,493.1 L 962.1,511.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 1008.1 520.5 Q 1008.1 519.2, 1008.8 518.5 Q 1009.4 517.8, 1010.6 517.8 Q 1011.7 517.8, 1012.4 518.5 Q 1013.0 519.2, 1013.0 520.5 Q 1013.0 521.7, 1012.4 522.5 Q 1011.7 523.2, 1010.6 523.2 Q 1009.4 523.2, 1008.8 522.5 Q 1008.1 521.7, 1008.1 520.5 M 1010.6 522.6 Q 1011.4 522.6, 1011.8 522.1 Q 1012.2 521.5, 1012.2 520.5 Q 1012.2 519.4, 1011.8 518.9 Q 1011.4 518.4, 1010.6 518.4 Q 1009.8 518.4, 1009.3 518.9 Q 1008.9 519.4, 1008.9 520.5 Q 1008.9 521.5, 1009.3 522.1 Q 1009.8 522.6, 1010.6 522.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 1013.4 517.8 L 1014.1 517.8 L 1014.1 520.1 L 1016.8 520.1 L 1016.8 517.8 L 1017.5 517.8 L 1017.5 523.1 L 1016.8 523.1 L 1016.8 520.7 L 1014.1 520.7 L 1014.1 523.1 L 1013.4 523.1 L 1013.4 517.8 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 992.0 492.5 Q 992.0 491.2, 992.6 490.5 Q 993.2 489.8, 994.4 489.8 Q 995.6 489.8, 996.2 490.5 Q 996.8 491.2, 996.8 492.5 Q 996.8 493.8, 996.2 494.5 Q 995.6 495.2, 994.4 495.2 Q 993.2 495.2, 992.6 494.5 Q 992.0 493.8, 992.0 492.5 M 994.4 494.6 Q 995.2 494.6, 995.7 494.1 Q 996.1 493.5, 996.1 492.5 Q 996.1 491.5, 995.7 490.9 Q 995.2 490.4, 994.4 490.4 Q 993.6 490.4, 993.2 490.9 Q 992.7 491.4, 992.7 492.5 Q 992.7 493.6, 993.2 494.1 Q 993.6 494.6, 994.4 494.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-6\" d=\"M 932.5 495.3 L 933.2 495.3 L 933.2 497.5 L 935.9 497.5 L 935.9 495.3 L 936.6 495.3 L 936.6 500.6 L 935.9 500.6 L 935.9 498.1 L 933.2 498.1 L 933.2 500.6 L 932.5 500.6 L 932.5 495.3 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-6\" d=\"M 938.1 495.3 L 939.8 498.1 Q 940.0 498.4, 940.3 498.9 Q 940.6 499.4, 940.6 499.4 L 940.6 495.3 L 941.3 495.3 L 941.3 500.6 L 940.6 500.6 L 938.7 497.5 Q 938.5 497.2, 938.3 496.7 Q 938.0 496.3, 938.0 496.2 L 938.0 500.6 L 937.3 500.6 L 937.3 495.3 L 938.1 495.3 \" fill=\"#0000FF\"/>\n",
"<path class=\"legend\" d=\"M 932.1 585.1 Q 933.6 585.1, 934.3 585.8 Q 935.0 586.4, 935.0 587.6 Q 935.0 588.8, 934.3 589.4 Q 933.5 590.1, 932.1 590.1 L 930.8 590.1 L 930.8 593.6 L 929.6 593.6 L 929.6 585.1 L 932.1 585.1 M 932.1 589.1 Q 933.0 589.1, 933.4 588.7 Q 933.8 588.3, 933.8 587.6 Q 933.8 586.8, 933.4 586.4 Q 933.0 586.1, 932.1 586.1 L 930.8 586.1 L 930.8 589.1 L 932.1 589.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 935.6 590.5 Q 935.6 589.0, 936.4 588.1 Q 937.1 587.3, 938.5 587.3 Q 939.9 587.3, 940.7 588.1 Q 941.5 589.0, 941.5 590.5 Q 941.5 592.0, 940.7 592.8 Q 939.9 593.7, 938.5 593.7 Q 937.1 593.7, 936.4 592.8 Q 935.6 592.0, 935.6 590.5 M 936.8 590.5 Q 936.8 591.6, 937.2 592.2 Q 937.7 592.8, 938.5 592.8 Q 939.4 592.8, 939.8 592.2 Q 940.3 591.6, 940.3 590.5 Q 940.3 589.4, 939.8 588.8 Q 939.4 588.2, 938.5 588.2 Q 937.7 588.2, 937.2 588.8 Q 936.8 589.4, 936.8 590.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 942.4 592.3 Q 942.9 592.5, 943.3 592.6 Q 943.7 592.8, 944.1 592.8 Q 944.6 592.8, 944.9 592.5 Q 945.3 592.3, 945.3 591.9 Q 945.3 591.6, 945.1 591.4 Q 944.9 591.2, 944.7 591.1 Q 944.5 591.1, 944.0 590.9 Q 943.9 590.9, 943.4 590.7 Q 942.8 590.5, 942.5 590.1 Q 942.2 589.7, 942.2 589.1 Q 942.2 588.3, 942.8 587.8 Q 943.4 587.3, 944.5 587.3 Q 945.0 587.3, 945.4 587.4 Q 945.8 587.5, 946.2 587.7 L 945.9 588.6 Q 945.5 588.4, 945.2 588.3 Q 944.9 588.2, 944.5 588.2 Q 943.9 588.2, 943.6 588.5 Q 943.3 588.7, 943.3 589.1 Q 943.3 589.4, 943.6 589.6 Q 943.8 589.7, 944.3 589.9 Q 944.4 589.9, 944.5 590.0 L 944.8 590.1 Q 945.3 590.2, 945.6 590.4 Q 946.0 590.6, 946.2 590.9 Q 946.4 591.3, 946.4 591.8 Q 946.4 592.7, 945.7 593.2 Q 945.1 593.7, 944.1 593.7 Q 943.5 593.7, 943.0 593.6 Q 942.5 593.4, 942.0 593.2 L 942.4 592.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 947.0 585.1 L 948.2 585.1 L 948.2 593.6 L 947.0 593.6 L 947.0 585.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 949.2 590.5 Q 949.2 589.0, 950.0 588.1 Q 950.7 587.3, 952.1 587.3 Q 953.5 587.3, 954.3 588.1 Q 955.1 589.0, 955.1 590.5 Q 955.1 592.0, 954.3 592.8 Q 953.5 593.7, 952.1 593.7 Q 950.7 593.7, 950.0 592.8 Q 949.2 592.0, 949.2 590.5 M 950.4 590.5 Q 950.4 591.6, 950.8 592.2 Q 951.3 592.8, 952.1 592.8 Q 953.0 592.8, 953.5 592.2 Q 953.9 591.6, 953.9 590.5 Q 953.9 589.4, 953.5 588.8 Q 953.0 588.2, 952.1 588.2 Q 951.3 588.2, 950.8 588.8 Q 950.4 589.4, 950.4 590.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 958.8 587.3 Q 959.8 587.3, 960.3 587.9 Q 960.9 588.4, 960.9 589.5 L 960.9 593.6 L 959.7 593.6 L 959.7 589.6 Q 959.7 588.9, 959.5 588.5 Q 959.2 588.2, 958.6 588.2 Q 958.0 588.2, 957.5 588.5 Q 957.1 588.7, 956.8 589.2 L 956.8 593.6 L 955.6 593.6 L 955.6 587.4 L 956.5 587.4 L 956.7 588.3 Q 957.5 587.3, 958.8 587.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 961.8 585.1 L 962.9 585.1 L 962.9 586.1 L 961.8 586.1 L 961.8 585.1 M 961.8 587.4 L 962.9 587.4 L 962.9 593.6 L 961.8 593.6 L 961.8 587.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 965.3 592.7 L 968.7 592.7 L 968.7 593.6 L 963.9 593.6 L 963.9 592.9 L 967.2 588.3 L 964.1 588.3 L 964.1 587.4 L 968.5 587.4 L 968.5 588.1 L 965.3 592.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 969.1 591.9 Q 969.1 590.9, 969.9 590.4 Q 970.7 589.9, 972.1 589.9 L 973.0 589.9 L 973.0 589.6 Q 973.0 588.8, 972.7 588.5 Q 972.4 588.2, 971.6 588.2 Q 971.1 588.2, 970.8 588.3 Q 970.4 588.4, 969.8 588.6 L 969.4 587.9 Q 970.6 587.3, 971.7 587.3 Q 973.0 587.3, 973.6 587.9 Q 974.2 588.4, 974.2 589.6 L 974.2 593.6 L 973.3 593.6 Q 973.3 593.5, 973.2 593.4 Q 973.2 593.2, 973.1 592.9 Q 972.3 593.7, 971.1 593.7 Q 970.2 593.7, 969.6 593.2 Q 969.1 592.7, 969.1 591.9 M 970.2 591.9 Q 970.2 592.4, 970.5 592.6 Q 970.8 592.8, 971.3 592.8 Q 971.8 592.8, 972.3 592.6 Q 972.7 592.4, 973.0 592.0 L 973.0 590.7 L 972.2 590.7 Q 971.2 590.7, 970.7 591.0 Q 970.2 591.3, 970.2 591.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 978.0 587.3 Q 979.3 587.3, 980.0 588.1 Q 980.7 588.9, 980.7 590.4 Q 980.7 591.9, 979.8 592.8 Q 979.0 593.7, 977.5 593.7 Q 976.5 593.7, 975.6 593.3 L 975.1 593.2 L 975.1 584.5 L 976.2 584.5 L 976.2 588.1 Q 976.9 587.3, 978.0 587.3 M 977.5 592.8 Q 978.4 592.8, 979.0 592.2 Q 979.5 591.5, 979.5 590.4 Q 979.5 589.3, 979.1 588.8 Q 978.7 588.2, 977.9 588.2 Q 977.3 588.2, 976.8 588.5 Q 976.4 588.9, 976.2 589.5 L 976.2 592.6 Q 976.8 592.8, 977.5 592.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 981.2 584.5 L 982.3 584.5 L 982.3 593.6 L 981.2 593.6 L 981.2 584.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 983.4 590.5 Q 983.4 589.0, 984.1 588.1 Q 984.9 587.3, 986.3 587.3 Q 987.6 587.3, 988.2 588.1 Q 988.8 588.9, 988.8 590.5 L 988.8 590.6 L 984.5 590.6 Q 984.5 591.7, 985.0 592.2 Q 985.5 592.8, 986.4 592.8 Q 986.8 592.8, 987.3 592.7 Q 987.7 592.6, 988.3 592.3 L 988.6 593.1 Q 988.0 593.4, 987.4 593.6 Q 986.9 593.7, 986.3 593.7 Q 984.9 593.7, 984.1 592.8 Q 983.4 592.0, 983.4 590.5 M 986.3 588.2 Q 985.6 588.2, 985.1 588.6 Q 984.7 589.0, 984.6 589.8 L 987.6 589.8 Q 987.6 589.0, 987.2 588.6 Q 986.9 588.2, 986.3 588.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 995.4 594.2 L 995.4 595.2 L 989.3 595.2 L 989.3 594.2 L 995.4 594.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 995.4 590.2 Q 995.4 588.4, 995.9 587.0 Q 996.4 585.6, 997.4 584.1 L 998.0 584.5 Q 997.3 585.9, 996.9 587.2 Q 996.5 588.5, 996.5 590.2 Q 996.5 591.8, 996.9 593.1 Q 997.3 594.3, 998.0 595.8 L 997.4 596.2 Q 996.4 594.7, 995.9 593.3 Q 995.4 591.9, 995.4 590.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1002.4 589.1 Q 1003.3 589.4, 1003.6 589.9 Q 1004.1 590.4, 1004.1 591.3 Q 1004.1 592.0, 1003.7 592.5 Q 1003.3 593.1, 1002.7 593.4 Q 1002.0 593.7, 1001.2 593.7 Q 1000.2 593.7, 999.6 593.4 Q 998.9 593.1, 998.3 592.4 L 999.0 591.7 Q 999.6 592.3, 1000.0 592.5 Q 1000.4 592.7, 1001.2 592.7 Q 1001.9 592.7, 1002.4 592.3 Q 1002.9 591.9, 1002.9 591.2 Q 1002.9 590.4, 1002.4 590.0 Q 1001.9 589.6, 1000.8 589.6 L 1000.2 589.6 L 1000.2 588.7 L 1000.8 588.7 Q 1001.7 588.7, 1002.2 588.3 Q 1002.7 587.9, 1002.7 587.2 Q 1002.7 586.6, 1002.3 586.3 Q 1001.9 586.0, 1001.2 586.0 Q 1000.5 586.0, 1000.0 586.2 Q 999.6 586.5, 999.2 587.1 L 998.4 586.6 Q 998.7 585.9, 999.4 585.5 Q 1000.2 585.0, 1001.2 585.0 Q 1002.4 585.0, 1003.1 585.6 Q 1003.9 586.2, 1003.9 587.2 Q 1003.9 587.9, 1003.5 588.3 Q 1003.1 588.8, 1002.4 589.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1004.8 592.4 L 1006.0 592.4 L 1006.0 593.3 L 1005.7 595.0 L 1005.3 595.0 L 1005.3 593.6 L 1004.8 593.6 L 1004.8 592.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1013.9 593.7 Q 1012.3 593.7, 1011.5 592.5 Q 1010.7 591.4, 1010.7 589.3 Q 1010.7 587.3, 1011.5 586.1 Q 1012.3 585.0, 1013.9 585.0 Q 1015.4 585.0, 1016.2 586.1 Q 1017.0 587.3, 1017.0 589.3 Q 1017.0 591.4, 1016.2 592.5 Q 1015.4 593.7, 1013.9 593.7 M 1013.9 592.7 Q 1014.8 592.7, 1015.3 591.9 Q 1015.8 591.0, 1015.8 589.3 Q 1015.8 587.7, 1015.3 586.8 Q 1014.8 586.0, 1013.9 586.0 Q 1012.9 586.0, 1012.4 586.8 Q 1011.9 587.7, 1011.9 589.3 Q 1011.9 591.0, 1012.4 591.9 Q 1012.9 592.7, 1013.9 592.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1020.4 590.2 Q 1020.4 591.9, 1019.9 593.3 Q 1019.4 594.7, 1018.4 596.2 L 1017.7 595.8 Q 1018.5 594.3, 1018.9 593.1 Q 1019.3 591.8, 1019.3 590.2 Q 1019.3 588.5, 1018.9 587.2 Q 1018.5 585.9, 1017.7 584.5 L 1018.4 584.1 Q 1019.4 585.6, 1019.9 587.0 Q 1020.4 588.4, 1020.4 590.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 1088.5,535.0 L 1095.3,531.1\" style=\"fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 1095.3,531.1 L 1102.0,527.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 1102.0,527.2 L 1102.0,508.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 1102.0,508.5 L 1085.9,499.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 1101.5,503.9 L 1090.2,497.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 1085.9,499.2 L 1085.9,480.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 1085.9,480.6 L 1102.0,471.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 1090.2,482.4 L 1101.5,475.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 1102.0,471.2 L 1118.2,480.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 1118.2,480.6 L 1118.2,499.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 1114.4,483.3 L 1114.4,496.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 1118.2,499.2 L 1134.3,508.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 1134.3,508.5 L 1150.5,499.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 1150.5,499.2 L 1157.0,503.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 1157.0,503.0 L 1163.6,506.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-11\" d=\"M 1148.6,499.2 L 1148.6,491.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-11\" d=\"M 1148.6,491.6 L 1148.6,483.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-11\" d=\"M 1152.3,499.2 L 1152.3,491.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-11\" d=\"M 1152.3,491.6 L 1152.3,483.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-7 atom-2\" d=\"M 1118.2,499.2 L 1102.0,508.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 1076.5 533.9 L 1077.2 533.9 L 1077.2 536.1 L 1079.9 536.1 L 1079.9 533.9 L 1080.6 533.9 L 1080.6 539.1 L 1079.9 539.1 L 1079.9 536.7 L 1077.2 536.7 L 1077.2 539.1 L 1076.5 539.1 L 1076.5 533.9 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-0\" d=\"M 1081.2 538.9 Q 1081.4 538.6, 1081.7 538.4 Q 1082.0 538.2, 1082.4 538.2 Q 1082.9 538.2, 1083.2 538.5 Q 1083.5 538.8, 1083.5 539.3 Q 1083.5 539.8, 1083.1 540.3 Q 1082.8 540.8, 1082.0 541.4 L 1083.6 541.4 L 1083.6 541.8 L 1081.2 541.8 L 1081.2 541.4 Q 1081.9 541.0, 1082.3 540.6 Q 1082.6 540.3, 1082.8 540.0 Q 1083.0 539.7, 1083.0 539.3 Q 1083.0 539.0, 1082.9 538.8 Q 1082.7 538.6, 1082.4 538.6 Q 1082.1 538.6, 1081.9 538.8 Q 1081.7 538.9, 1081.6 539.1 L 1081.2 538.9 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-0\" d=\"M 1084.7 533.9 L 1086.4 536.6 Q 1086.6 536.9, 1086.9 537.4 Q 1087.2 537.9, 1087.2 538.0 L 1087.2 533.9 L 1087.9 533.9 L 1087.9 539.1 L 1087.2 539.1 L 1085.3 536.1 Q 1085.1 535.7, 1084.8 535.3 Q 1084.6 534.9, 1084.6 534.8 L 1084.6 539.1 L 1083.9 539.1 L 1083.9 533.9 L 1084.7 533.9 \" fill=\"#0000FF\"/>\n",
"<path class=\"atom-10\" d=\"M 1164.2 508.5 Q 1164.2 507.3, 1164.8 506.6 Q 1165.4 505.9, 1166.6 505.9 Q 1167.8 505.9, 1168.4 506.6 Q 1169.0 507.3, 1169.0 508.5 Q 1169.0 509.8, 1168.4 510.6 Q 1167.8 511.3, 1166.6 511.3 Q 1165.4 511.3, 1164.8 510.6 Q 1164.2 509.8, 1164.2 508.5 M 1166.6 510.7 Q 1167.4 510.7, 1167.9 510.1 Q 1168.3 509.6, 1168.3 508.5 Q 1168.3 507.5, 1167.9 507.0 Q 1167.4 506.4, 1166.6 506.4 Q 1165.8 506.4, 1165.4 507.0 Q 1164.9 507.5, 1164.9 508.5 Q 1164.9 509.6, 1165.4 510.1 Q 1165.8 510.7, 1166.6 510.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-10\" d=\"M 1169.4 505.9 L 1170.1 505.9 L 1170.1 508.2 L 1172.8 508.2 L 1172.8 505.9 L 1173.5 505.9 L 1173.5 511.2 L 1172.8 511.2 L 1172.8 508.8 L 1170.1 508.8 L 1170.1 511.2 L 1169.4 511.2 L 1169.4 505.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-11\" d=\"M 1148.0 480.6 Q 1148.0 479.3, 1148.7 478.6 Q 1149.3 477.9, 1150.5 477.9 Q 1151.6 477.9, 1152.3 478.6 Q 1152.9 479.3, 1152.9 480.6 Q 1152.9 481.8, 1152.3 482.6 Q 1151.6 483.3, 1150.5 483.3 Q 1149.3 483.3, 1148.7 482.6 Q 1148.0 481.9, 1148.0 480.6 M 1150.5 482.7 Q 1151.3 482.7, 1151.7 482.2 Q 1152.1 481.6, 1152.1 480.6 Q 1152.1 479.5, 1151.7 479.0 Q 1151.3 478.5, 1150.5 478.5 Q 1149.7 478.5, 1149.2 479.0 Q 1148.8 479.5, 1148.8 480.6 Q 1148.8 481.6, 1149.2 482.2 Q 1149.7 482.7, 1150.5 482.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 1082.8 585.1 Q 1084.3 585.1, 1085.0 585.8 Q 1085.7 586.4, 1085.7 587.6 Q 1085.7 588.8, 1085.0 589.4 Q 1084.2 590.1, 1082.8 590.1 L 1081.5 590.1 L 1081.5 593.6 L 1080.3 593.6 L 1080.3 585.1 L 1082.8 585.1 M 1082.8 589.1 Q 1083.6 589.1, 1084.1 588.7 Q 1084.5 588.3, 1084.5 587.6 Q 1084.5 586.8, 1084.1 586.4 Q 1083.7 586.1, 1082.8 586.1 L 1081.5 586.1 L 1081.5 589.1 L 1082.8 589.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1086.3 590.5 Q 1086.3 589.0, 1087.0 588.1 Q 1087.8 587.3, 1089.2 587.3 Q 1090.6 587.3, 1091.4 588.1 Q 1092.1 589.0, 1092.1 590.5 Q 1092.1 592.0, 1091.4 592.8 Q 1090.6 593.7, 1089.2 593.7 Q 1087.8 593.7, 1087.0 592.8 Q 1086.3 592.0, 1086.3 590.5 M 1087.4 590.5 Q 1087.4 591.6, 1087.9 592.2 Q 1088.4 592.8, 1089.2 592.8 Q 1090.1 592.8, 1090.5 592.2 Q 1091.0 591.6, 1091.0 590.5 Q 1091.0 589.4, 1090.5 588.8 Q 1090.1 588.2, 1089.2 588.2 Q 1088.4 588.2, 1087.9 588.8 Q 1087.4 589.4, 1087.4 590.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1093.0 592.3 Q 1093.6 592.5, 1094.0 592.6 Q 1094.4 592.8, 1094.8 592.8 Q 1095.3 592.8, 1095.6 592.5 Q 1095.9 592.3, 1095.9 591.9 Q 1095.9 591.6, 1095.8 591.4 Q 1095.6 591.2, 1095.4 591.1 Q 1095.2 591.1, 1094.7 590.9 Q 1094.6 590.9, 1094.0 590.7 Q 1093.5 590.5, 1093.2 590.1 Q 1092.9 589.7, 1092.9 589.1 Q 1092.9 588.3, 1093.5 587.8 Q 1094.1 587.3, 1095.2 587.3 Q 1095.6 587.3, 1096.0 587.4 Q 1096.5 587.5, 1096.9 587.7 L 1096.6 588.6 Q 1096.2 588.4, 1095.9 588.3 Q 1095.5 588.2, 1095.2 588.2 Q 1094.6 588.2, 1094.3 588.5 Q 1094.0 588.7, 1094.0 589.1 Q 1094.0 589.4, 1094.3 589.6 Q 1094.5 589.7, 1095.0 589.9 Q 1095.1 589.9, 1095.2 590.0 L 1095.5 590.1 Q 1096.0 590.2, 1096.3 590.4 Q 1096.6 590.6, 1096.9 590.9 Q 1097.1 591.3, 1097.1 591.8 Q 1097.1 592.7, 1096.4 593.2 Q 1095.8 593.7, 1094.8 593.7 Q 1094.2 593.7, 1093.7 593.6 Q 1093.2 593.4, 1092.7 593.2 L 1093.0 592.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1097.7 585.1 L 1098.8 585.1 L 1098.8 593.6 L 1097.7 593.6 L 1097.7 585.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1099.9 590.5 Q 1099.9 589.0, 1100.7 588.1 Q 1101.4 587.3, 1102.8 587.3 Q 1104.2 587.3, 1105.0 588.1 Q 1105.8 589.0, 1105.8 590.5 Q 1105.8 592.0, 1105.0 592.8 Q 1104.2 593.7, 1102.8 593.7 Q 1101.4 593.7, 1100.7 592.8 Q 1099.9 592.0, 1099.9 590.5 M 1101.1 590.5 Q 1101.1 591.6, 1101.5 592.2 Q 1102.0 592.8, 1102.8 592.8 Q 1103.7 592.8, 1104.1 592.2 Q 1104.6 591.6, 1104.6 590.5 Q 1104.6 589.4, 1104.1 588.8 Q 1103.7 588.2, 1102.8 588.2 Q 1102.0 588.2, 1101.5 588.8 Q 1101.1 589.4, 1101.1 590.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1109.5 587.3 Q 1110.5 587.3, 1111.0 587.9 Q 1111.6 588.4, 1111.6 589.5 L 1111.6 593.6 L 1110.4 593.6 L 1110.4 589.6 Q 1110.4 588.9, 1110.1 588.5 Q 1109.9 588.2, 1109.2 588.2 Q 1108.7 588.2, 1108.2 588.5 Q 1107.7 588.7, 1107.4 589.2 L 1107.4 593.6 L 1106.3 593.6 L 1106.3 587.4 L 1107.2 587.4 L 1107.4 588.3 Q 1108.2 587.3, 1109.5 587.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1112.5 585.1 L 1113.6 585.1 L 1113.6 586.1 L 1112.5 586.1 L 1112.5 585.1 M 1112.5 587.4 L 1113.6 587.4 L 1113.6 593.6 L 1112.5 593.6 L 1112.5 587.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1116.0 592.7 L 1119.4 592.7 L 1119.4 593.6 L 1114.6 593.6 L 1114.6 592.9 L 1117.9 588.3 L 1114.8 588.3 L 1114.8 587.4 L 1119.2 587.4 L 1119.2 588.1 L 1116.0 592.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1119.8 591.9 Q 1119.8 590.9, 1120.6 590.4 Q 1121.4 589.9, 1122.8 589.9 L 1123.7 589.9 L 1123.7 589.6 Q 1123.7 588.8, 1123.4 588.5 Q 1123.1 588.2, 1122.3 588.2 Q 1121.8 588.2, 1121.4 588.3 Q 1121.1 588.4, 1120.5 588.6 L 1120.1 587.9 Q 1121.2 587.3, 1122.3 587.3 Q 1123.6 587.3, 1124.2 587.9 Q 1124.8 588.4, 1124.8 589.6 L 1124.8 593.6 L 1124.0 593.6 Q 1124.0 593.5, 1123.9 593.4 Q 1123.9 593.2, 1123.8 592.9 Q 1123.0 593.7, 1121.8 593.7 Q 1120.9 593.7, 1120.3 593.2 Q 1119.8 592.7, 1119.8 591.9 M 1120.9 591.9 Q 1120.9 592.4, 1121.2 592.6 Q 1121.5 592.8, 1122.0 592.8 Q 1122.5 592.8, 1123.0 592.6 Q 1123.4 592.4, 1123.7 592.0 L 1123.7 590.7 L 1122.9 590.7 Q 1121.9 590.7, 1121.4 591.0 Q 1120.9 591.3, 1120.9 591.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1128.7 587.3 Q 1129.9 587.3, 1130.6 588.1 Q 1131.4 588.9, 1131.4 590.4 Q 1131.4 591.9, 1130.5 592.8 Q 1129.7 593.7, 1128.2 593.7 Q 1127.2 593.7, 1126.3 593.3 L 1125.8 593.2 L 1125.8 584.5 L 1126.9 584.5 L 1126.9 588.1 Q 1127.5 587.3, 1128.7 587.3 M 1128.2 592.8 Q 1129.1 592.8, 1129.7 592.2 Q 1130.2 591.5, 1130.2 590.4 Q 1130.2 589.3, 1129.8 588.8 Q 1129.4 588.2, 1128.6 588.2 Q 1128.0 588.2, 1127.5 588.5 Q 1127.1 588.9, 1126.9 589.5 L 1126.9 592.6 Q 1127.5 592.8, 1128.2 592.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1131.9 584.5 L 1133.0 584.5 L 1133.0 593.6 L 1131.9 593.6 L 1131.9 584.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1134.1 590.5 Q 1134.1 589.0, 1134.8 588.1 Q 1135.6 587.3, 1136.9 587.3 Q 1138.3 587.3, 1138.9 588.1 Q 1139.5 588.9, 1139.5 590.5 L 1139.5 590.6 L 1135.2 590.6 Q 1135.2 591.7, 1135.7 592.2 Q 1136.2 592.8, 1137.0 592.8 Q 1137.5 592.8, 1138.0 592.7 Q 1138.4 592.6, 1138.9 592.3 L 1139.3 593.1 Q 1138.7 593.4, 1138.1 593.6 Q 1137.6 593.7, 1137.0 593.7 Q 1135.6 593.7, 1134.8 592.8 Q 1134.1 592.0, 1134.1 590.5 M 1136.9 588.2 Q 1136.2 588.2, 1135.8 588.6 Q 1135.4 589.0, 1135.3 589.8 L 1138.3 589.8 Q 1138.2 589.0, 1137.9 588.6 Q 1137.6 588.2, 1136.9 588.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1146.1 594.2 L 1146.1 595.2 L 1140.0 595.2 L 1140.0 594.2 L 1146.1 594.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1146.1 590.2 Q 1146.1 588.4, 1146.6 587.0 Q 1147.1 585.6, 1148.1 584.1 L 1148.7 584.5 Q 1147.9 585.9, 1147.6 587.2 Q 1147.2 588.5, 1147.2 590.2 Q 1147.2 591.8, 1147.6 593.1 Q 1147.9 594.3, 1148.7 595.8 L 1148.1 596.2 Q 1147.1 594.7, 1146.6 593.3 Q 1146.1 591.9, 1146.1 590.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1153.1 589.1 Q 1153.9 589.4, 1154.3 589.9 Q 1154.7 590.4, 1154.7 591.3 Q 1154.7 592.0, 1154.4 592.5 Q 1154.0 593.1, 1153.4 593.4 Q 1152.7 593.7, 1151.8 593.7 Q 1150.9 593.7, 1150.2 593.4 Q 1149.6 593.1, 1149.0 592.4 L 1149.7 591.7 Q 1150.2 592.3, 1150.7 592.5 Q 1151.1 592.7, 1151.8 592.7 Q 1152.6 592.7, 1153.1 592.3 Q 1153.5 591.9, 1153.5 591.2 Q 1153.5 590.4, 1153.0 590.0 Q 1152.6 589.6, 1151.5 589.6 L 1150.9 589.6 L 1150.9 588.7 L 1151.5 588.7 Q 1152.4 588.7, 1152.9 588.3 Q 1153.4 587.9, 1153.4 587.2 Q 1153.4 586.6, 1153.0 586.3 Q 1152.5 586.0, 1151.8 586.0 Q 1151.1 586.0, 1150.7 586.2 Q 1150.3 586.5, 1149.9 587.1 L 1149.1 586.6 Q 1149.4 585.9, 1150.1 585.5 Q 1150.8 585.0, 1151.8 585.0 Q 1153.1 585.0, 1153.8 585.6 Q 1154.6 586.2, 1154.6 587.2 Q 1154.6 587.9, 1154.2 588.3 Q 1153.8 588.8, 1153.1 589.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1155.4 592.4 L 1156.6 592.4 L 1156.6 593.3 L 1156.4 595.0 L 1156.0 595.0 L 1156.0 593.6 L 1155.4 593.6 L 1155.4 592.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1161.9 592.6 L 1163.8 592.6 L 1163.8 586.3 L 1161.7 586.9 L 1161.4 586.2 L 1164.0 585.0 L 1164.9 585.2 L 1164.9 592.6 L 1166.6 592.6 L 1166.6 593.6 L 1161.9 593.6 L 1161.9 592.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1169.7 590.2 Q 1169.7 591.9, 1169.2 593.3 Q 1168.7 594.7, 1167.7 596.2 L 1167.1 595.8 Q 1167.8 594.3, 1168.2 593.1 Q 1168.6 591.8, 1168.6 590.2 Q 1168.6 588.5, 1168.2 587.2 Q 1167.8 585.9, 1167.1 584.5 L 1167.7 584.1 Q 1168.7 585.6, 1169.2 587.0 Q 1169.7 588.4, 1169.7 590.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 102.6,638.3 L 96.1,634.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 96.1,634.5 L 89.5,630.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 87.6,630.7 L 87.6,623.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 87.6,623.1 L 87.6,615.4\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 91.4,630.7 L 91.4,623.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 91.4,623.1 L 91.4,615.4\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 89.5,630.7 L 73.4,640.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 73.4,640.0 L 79.7,657.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 79.7,657.5 L 67.8,671.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 67.8,671.8 L 49.4,668.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 64.4,675.0 L 51.5,672.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 49.4,668.6 L 37.4,682.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 37.4,682.9 L 43.8,700.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 41.9,684.2 L 46.3,696.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 43.8,700.4 L 62.1,703.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 62.1,703.6 L 74.1,689.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 61.1,699.1 L 69.5,689.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-3 atom-11\" d=\"M 73.4,640.0 L 55.0,643.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-11 atom-12\" d=\"M 55.0,643.3 L 61.4,625.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12 atom-12 atom-3\" d=\"M 61.4,625.7 L 73.4,640.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-13 atom-10 atom-5\" d=\"M 74.1,689.3 L 67.8,671.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 103.2 640.0 Q 103.2 638.8, 103.9 638.1 Q 104.5 637.3, 105.7 637.3 Q 106.8 637.3, 107.5 638.1 Q 108.1 638.8, 108.1 640.0 Q 108.1 641.3, 107.5 642.0 Q 106.8 642.8, 105.7 642.8 Q 104.5 642.8, 103.9 642.0 Q 103.2 641.3, 103.2 640.0 M 105.7 642.2 Q 106.5 642.2, 106.9 641.6 Q 107.3 641.1, 107.3 640.0 Q 107.3 639.0, 106.9 638.5 Q 106.5 637.9, 105.7 637.9 Q 104.9 637.9, 104.4 638.5 Q 104.0 639.0, 104.0 640.0 Q 104.0 641.1, 104.4 641.6 Q 104.9 642.2, 105.7 642.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 108.5 637.4 L 109.2 637.4 L 109.2 639.6 L 111.9 639.6 L 111.9 637.4 L 112.6 637.4 L 112.6 642.7 L 111.9 642.7 L 111.9 640.2 L 109.2 640.2 L 109.2 642.7 L 108.5 642.7 L 108.5 637.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 87.1 612.1 Q 87.1 610.8, 87.7 610.1 Q 88.3 609.4, 89.5 609.4 Q 90.7 609.4, 91.3 610.1 Q 91.9 610.8, 91.9 612.1 Q 91.9 613.3, 91.3 614.1 Q 90.7 614.8, 89.5 614.8 Q 88.4 614.8, 87.7 614.1 Q 87.1 613.3, 87.1 612.1 M 89.5 614.2 Q 90.3 614.2, 90.8 613.7 Q 91.2 613.1, 91.2 612.1 Q 91.2 611.0, 90.8 610.5 Q 90.3 610.0, 89.5 610.0 Q 88.7 610.0, 88.3 610.5 Q 87.8 611.0, 87.8 612.1 Q 87.8 613.1, 88.3 613.7 Q 88.7 614.2, 89.5 614.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 42.5 743.6 L 41.6 741.1 L 38.3 741.1 L 37.4 743.6 L 36.3 743.6 L 39.2 735.1 L 40.6 735.1 L 43.6 743.6 L 42.5 743.6 M 38.6 740.1 L 41.3 740.1 L 39.9 736.3 L 38.6 740.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 44.7 737.4 L 44.8 738.3 Q 45.5 737.3, 46.5 737.3 Q 46.9 737.3, 47.3 737.4 L 47.1 738.4 Q 46.6 738.3, 46.3 738.3 Q 45.8 738.3, 45.5 738.5 Q 45.2 738.7, 44.9 739.2 L 44.9 743.6 L 43.8 743.6 L 43.8 737.4 L 44.7 737.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 47.5 740.5 Q 47.5 739.0, 48.3 738.1 Q 49.0 737.3, 50.4 737.3 Q 51.8 737.3, 52.6 738.1 Q 53.4 739.0, 53.4 740.5 Q 53.4 742.0, 52.6 742.8 Q 51.8 743.7, 50.4 743.7 Q 49.0 743.7, 48.3 742.8 Q 47.5 742.0, 47.5 740.5 M 48.7 740.5 Q 48.7 741.6, 49.1 742.2 Q 49.6 742.8, 50.4 742.8 Q 51.3 742.8, 51.7 742.2 Q 52.2 741.6, 52.2 740.5 Q 52.2 739.4, 51.7 738.8 Q 51.3 738.2, 50.4 738.2 Q 49.6 738.2, 49.1 738.8 Q 48.7 739.4, 48.7 740.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 61.0 737.3 Q 62.1 737.3, 62.6 737.9 Q 63.1 738.4, 63.1 739.5 L 63.1 743.6 L 62.0 743.6 L 62.0 739.6 Q 62.0 738.9, 61.7 738.5 Q 61.5 738.2, 60.8 738.2 Q 60.3 738.2, 59.8 738.5 Q 59.4 738.7, 59.1 739.2 Q 59.1 739.3, 59.1 739.5 L 59.1 743.6 L 58.0 743.6 L 58.0 739.6 Q 58.0 738.9, 57.7 738.5 Q 57.4 738.2, 56.8 738.2 Q 56.2 738.2, 55.8 738.5 Q 55.3 738.7, 55.0 739.2 L 55.0 743.6 L 53.9 743.6 L 53.9 737.4 L 54.8 737.4 L 55.0 738.3 Q 55.8 737.3, 57.0 737.3 Q 58.5 737.3, 58.9 738.4 Q 59.7 737.3, 61.0 737.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 64.1 741.9 Q 64.1 740.9, 64.9 740.4 Q 65.7 739.9, 67.1 739.9 L 68.0 739.9 L 68.0 739.6 Q 68.0 738.8, 67.7 738.5 Q 67.4 738.2, 66.6 738.2 Q 66.1 738.2, 65.7 738.3 Q 65.4 738.4, 64.8 738.6 L 64.4 737.9 Q 65.5 737.3, 66.6 737.3 Q 67.9 737.3, 68.5 737.9 Q 69.1 738.4, 69.1 739.6 L 69.1 743.6 L 68.3 743.6 Q 68.3 743.5, 68.2 743.4 Q 68.2 743.2, 68.1 742.9 Q 67.2 743.7, 66.1 743.7 Q 65.2 743.7, 64.6 743.2 Q 64.1 742.7, 64.1 741.9 M 65.2 741.9 Q 65.2 742.4, 65.5 742.6 Q 65.8 742.8, 66.3 742.8 Q 66.8 742.8, 67.2 742.6 Q 67.7 742.4, 68.0 742.0 L 68.0 740.7 L 67.2 740.7 Q 66.2 740.7, 65.7 741.0 Q 65.2 741.3, 65.2 741.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 70.1 738.3 L 70.1 737.4 L 71.2 737.4 L 71.4 735.6 L 72.3 735.6 L 72.3 737.4 L 74.2 737.4 L 74.2 738.3 L 72.3 738.3 L 72.3 741.7 Q 72.3 742.8, 73.2 742.8 Q 73.5 742.8, 74.1 742.6 L 74.3 743.4 Q 73.6 743.7, 73.0 743.7 Q 72.2 743.7, 71.7 743.2 Q 71.1 742.7, 71.1 741.8 L 71.1 738.3 L 70.1 738.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 74.6 735.1 L 75.7 735.1 L 75.7 736.1 L 74.6 736.1 L 74.6 735.1 M 74.6 737.4 L 75.7 737.4 L 75.7 743.6 L 74.6 743.6 L 74.6 737.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 76.7 740.5 Q 76.7 739.0, 77.4 738.2 Q 78.2 737.3, 79.6 737.3 Q 81.0 737.3, 81.8 738.3 L 81.0 738.9 Q 80.7 738.5, 80.4 738.4 Q 80.1 738.2, 79.6 738.2 Q 78.8 738.2, 78.3 738.8 Q 77.8 739.4, 77.8 740.5 Q 77.8 741.6, 78.3 742.2 Q 78.8 742.8, 79.7 742.8 Q 80.2 742.8, 80.6 742.7 Q 80.9 742.6, 81.3 742.4 L 81.7 743.1 Q 80.8 743.7, 79.6 743.7 Q 78.2 743.7, 77.4 742.8 Q 76.7 742.0, 76.7 740.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 88.2 744.2 L 88.2 745.2 L 82.1 745.2 L 82.1 744.2 L 88.2 744.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 88.2 740.2 Q 88.2 738.4, 88.7 737.0 Q 89.2 735.6, 90.2 734.1 L 90.8 734.5 Q 90.0 735.9, 89.7 737.2 Q 89.3 738.5, 89.3 740.2 Q 89.3 741.8, 89.7 743.1 Q 90.0 744.3, 90.8 745.8 L 90.2 746.2 Q 89.2 744.7, 88.7 743.3 Q 88.2 741.9, 88.2 740.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 94.2 743.7 Q 92.7 743.7, 91.9 742.5 Q 91.1 741.4, 91.1 739.3 Q 91.1 737.3, 91.9 736.1 Q 92.7 735.0, 94.2 735.0 Q 95.8 735.0, 96.6 736.1 Q 97.3 737.3, 97.3 739.3 Q 97.3 741.4, 96.6 742.5 Q 95.8 743.7, 94.2 743.7 M 94.2 742.7 Q 95.2 742.7, 95.6 741.9 Q 96.1 741.0, 96.1 739.3 Q 96.1 737.7, 95.6 736.8 Q 95.2 736.0, 94.2 736.0 Q 93.3 736.0, 92.8 736.8 Q 92.3 737.7, 92.3 739.3 Q 92.3 741.0, 92.8 741.9 Q 93.3 742.7, 94.2 742.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 98.1 742.4 L 99.3 742.4 L 99.3 743.3 L 99.1 745.0 L 98.7 745.0 L 98.7 743.6 L 98.1 743.6 L 98.1 742.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 107.2 743.7 Q 105.7 743.7, 104.9 742.5 Q 104.1 741.4, 104.1 739.3 Q 104.1 737.3, 104.9 736.1 Q 105.6 735.0, 107.2 735.0 Q 108.8 735.0, 109.6 736.1 Q 110.3 737.3, 110.3 739.3 Q 110.3 741.4, 109.5 742.5 Q 108.8 743.7, 107.2 743.7 M 107.2 742.7 Q 108.1 742.7, 108.6 741.9 Q 109.1 741.0, 109.1 739.3 Q 109.1 737.7, 108.6 736.8 Q 108.1 736.0, 107.2 736.0 Q 106.3 736.0, 105.8 736.8 Q 105.3 737.7, 105.3 739.3 Q 105.3 741.0, 105.8 741.9 Q 106.3 742.7, 107.2 742.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 113.7 740.2 Q 113.7 741.9, 113.2 743.3 Q 112.7 744.7, 111.8 746.2 L 111.1 745.8 Q 111.9 744.3, 112.3 743.1 Q 112.7 741.8, 112.7 740.2 Q 112.7 738.5, 112.3 737.2 Q 111.9 735.9, 111.1 734.5 L 111.8 734.1 Q 112.7 735.6, 113.2 737.0 Q 113.7 738.4, 113.7 740.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 247.4,634.0 L 240.8,630.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 240.8,630.2 L 234.3,626.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 232.4,626.5 L 232.4,618.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 232.4,618.8 L 232.4,611.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 236.1,626.5 L 236.1,618.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 236.1,618.8 L 236.1,611.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-3 atom-1\" d=\"M 218.1,635.8 L 233.3,624.8 L 235.2,628.1 Z\" style=\"fill:#000000;fill-rule:evenodd;fill-opacity:1;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 218.1,635.8 L 199.5,635.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-5 atom-4\" d=\"M 208.8,651.9 L 197.9,636.7 L 201.1,634.8 Z\" style=\"fill:#000000;fill-rule:evenodd;fill-opacity:1;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 208.8,651.9 L 208.8,670.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 208.8,670.6 L 192.7,679.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 208.2,675.2 L 196.9,681.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 192.7,679.9 L 192.7,698.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 192.7,698.5 L 208.8,707.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 196.9,696.7 L 208.2,703.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 208.8,707.9 L 224.9,698.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 224.9,698.5 L 224.9,679.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 221.2,695.7 L 221.2,682.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-5 atom-3\" d=\"M 208.8,651.9 L 218.1,635.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12 atom-11 atom-6\" d=\"M 224.9,679.9 L 208.8,670.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 248.0 635.8 Q 248.0 634.5, 248.6 633.8 Q 249.2 633.1, 250.4 633.1 Q 251.6 633.1, 252.2 633.8 Q 252.8 634.5, 252.8 635.8 Q 252.8 637.1, 252.2 637.8 Q 251.6 638.5, 250.4 638.5 Q 249.3 638.5, 248.6 637.8 Q 248.0 637.1, 248.0 635.8 M 250.4 637.9 Q 251.2 637.9, 251.7 637.4 Q 252.1 636.9, 252.1 635.8 Q 252.1 634.8, 251.7 634.2 Q 251.2 633.7, 250.4 633.7 Q 249.6 633.7, 249.2 634.2 Q 248.7 634.7, 248.7 635.8 Q 248.7 636.9, 249.2 637.4 Q 249.6 637.9, 250.4 637.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 253.2 633.2 L 253.9 633.2 L 253.9 635.4 L 256.6 635.4 L 256.6 633.2 L 257.3 633.2 L 257.3 638.4 L 256.6 638.4 L 256.6 636.0 L 253.9 636.0 L 253.9 638.4 L 253.2 638.4 L 253.2 633.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 231.8 607.8 Q 231.8 606.6, 232.5 605.8 Q 233.1 605.1, 234.3 605.1 Q 235.4 605.1, 236.1 605.8 Q 236.7 606.6, 236.7 607.8 Q 236.7 609.1, 236.1 609.8 Q 235.4 610.6, 234.3 610.6 Q 233.1 610.6, 232.5 609.8 Q 231.8 609.1, 231.8 607.8 M 234.3 610.0 Q 235.1 610.0, 235.5 609.4 Q 235.9 608.9, 235.9 607.8 Q 235.9 606.8, 235.5 606.3 Q 235.1 605.7, 234.3 605.7 Q 233.5 605.7, 233.0 606.3 Q 232.6 606.8, 232.6 607.8 Q 232.6 608.9, 233.0 609.4 Q 233.5 610.0, 234.3 610.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 193.2 743.6 L 192.3 741.1 L 189.0 741.1 L 188.1 743.6 L 186.9 743.6 L 189.9 735.1 L 191.3 735.1 L 194.3 743.6 L 193.2 743.6 M 189.3 740.1 L 192.0 740.1 L 190.6 736.3 L 189.3 740.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 195.4 737.4 L 195.5 738.3 Q 196.2 737.3, 197.2 737.3 Q 197.6 737.3, 198.0 737.4 L 197.8 738.4 Q 197.3 738.3, 197.0 738.3 Q 196.5 738.3, 196.2 738.5 Q 195.9 738.7, 195.6 739.2 L 195.6 743.6 L 194.5 743.6 L 194.5 737.4 L 195.4 737.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 198.2 740.5 Q 198.2 739.0, 198.9 738.1 Q 199.7 737.3, 201.1 737.3 Q 202.5 737.3, 203.3 738.1 Q 204.0 739.0, 204.0 740.5 Q 204.0 742.0, 203.3 742.8 Q 202.5 743.7, 201.1 743.7 Q 199.7 743.7, 198.9 742.8 Q 198.2 742.0, 198.2 740.5 M 199.3 740.5 Q 199.3 741.6, 199.8 742.2 Q 200.3 742.8, 201.1 742.8 Q 202.0 742.8, 202.4 742.2 Q 202.9 741.6, 202.9 740.5 Q 202.9 739.4, 202.4 738.8 Q 202.0 738.2, 201.1 738.2 Q 200.3 738.2, 199.8 738.8 Q 199.3 739.4, 199.3 740.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 211.7 737.3 Q 212.8 737.3, 213.3 737.9 Q 213.8 738.4, 213.8 739.5 L 213.8 743.6 L 212.7 743.6 L 212.7 739.6 Q 212.7 738.9, 212.4 738.5 Q 212.1 738.2, 211.5 738.2 Q 211.0 738.2, 210.5 738.5 Q 210.0 738.7, 209.8 739.2 Q 209.8 739.3, 209.8 739.5 L 209.8 743.6 L 208.7 743.6 L 208.7 739.6 Q 208.7 738.9, 208.4 738.5 Q 208.1 738.2, 207.5 738.2 Q 206.9 738.2, 206.5 738.5 Q 206.0 738.7, 205.7 739.2 L 205.7 743.6 L 204.6 743.6 L 204.6 737.4 L 205.5 737.4 L 205.6 738.3 Q 206.4 737.3, 207.7 737.3 Q 209.1 737.3, 209.6 738.4 Q 210.4 737.3, 211.7 737.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 214.8 741.9 Q 214.8 740.9, 215.5 740.4 Q 216.3 739.9, 217.8 739.9 L 218.7 739.9 L 218.7 739.6 Q 218.7 738.8, 218.4 738.5 Q 218.1 738.2, 217.3 738.2 Q 216.8 738.2, 216.4 738.3 Q 216.0 738.4, 215.4 738.6 L 215.1 737.9 Q 216.2 737.3, 217.3 737.3 Q 218.6 737.3, 219.2 737.9 Q 219.8 738.4, 219.8 739.6 L 219.8 743.6 L 219.0 743.6 Q 218.9 743.5, 218.9 743.4 Q 218.9 743.2, 218.8 742.9 Q 217.9 743.7, 216.8 743.7 Q 215.9 743.7, 215.3 743.2 Q 214.8 742.7, 214.8 741.9 M 215.9 741.9 Q 215.9 742.4, 216.2 742.6 Q 216.5 742.8, 217.0 742.8 Q 217.5 742.8, 217.9 742.6 Q 218.4 742.4, 218.7 742.0 L 218.7 740.7 L 217.9 740.7 Q 216.9 740.7, 216.4 741.0 Q 215.9 741.3, 215.9 741.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 220.8 738.3 L 220.8 737.4 L 221.9 737.4 L 222.1 735.6 L 223.0 735.6 L 223.0 737.4 L 224.8 737.4 L 224.8 738.3 L 223.0 738.3 L 223.0 741.7 Q 223.0 742.8, 223.9 742.8 Q 224.2 742.8, 224.7 742.6 L 224.9 743.4 Q 224.3 743.7, 223.7 743.7 Q 222.9 743.7, 222.3 743.2 Q 221.8 742.7, 221.8 741.8 L 221.8 738.3 L 220.8 738.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 225.2 735.1 L 226.3 735.1 L 226.3 736.1 L 225.2 736.1 L 225.2 735.1 M 225.2 737.4 L 226.3 737.4 L 226.3 743.6 L 225.2 743.6 L 225.2 737.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 227.4 740.5 Q 227.4 739.0, 228.1 738.2 Q 228.9 737.3, 230.3 737.3 Q 231.7 737.3, 232.5 738.3 L 231.7 738.9 Q 231.4 738.5, 231.1 738.4 Q 230.8 738.2, 230.3 738.2 Q 229.5 738.2, 229.0 738.8 Q 228.5 739.4, 228.5 740.5 Q 228.5 741.6, 229.0 742.2 Q 229.5 742.8, 230.4 742.8 Q 230.9 742.8, 231.2 742.7 Q 231.6 742.6, 232.0 742.4 L 232.3 743.1 Q 231.5 743.7, 230.3 743.7 Q 228.9 743.7, 228.1 742.8 Q 227.4 742.0, 227.4 740.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 238.9 744.2 L 238.9 745.2 L 232.8 745.2 L 232.8 744.2 L 238.9 744.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 238.9 740.2 Q 238.9 738.4, 239.4 737.0 Q 239.9 735.6, 240.8 734.1 L 241.5 734.5 Q 240.7 735.9, 240.3 737.2 Q 240.0 738.5, 240.0 740.2 Q 240.0 741.8, 240.3 743.1 Q 240.7 744.3, 241.5 745.8 L 240.8 746.2 Q 239.9 744.7, 239.4 743.3 Q 238.9 741.9, 238.9 740.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 244.9 743.7 Q 243.4 743.7, 242.6 742.5 Q 241.8 741.4, 241.8 739.3 Q 241.8 737.3, 242.6 736.1 Q 243.3 735.0, 244.9 735.0 Q 246.5 735.0, 247.3 736.1 Q 248.0 737.3, 248.0 739.3 Q 248.0 741.4, 247.2 742.5 Q 246.5 743.7, 244.9 743.7 M 244.9 742.7 Q 245.8 742.7, 246.3 741.9 Q 246.8 741.0, 246.8 739.3 Q 246.8 737.7, 246.3 736.8 Q 245.8 736.0, 244.9 736.0 Q 244.0 736.0, 243.5 736.8 Q 243.0 737.7, 243.0 739.3 Q 243.0 741.0, 243.5 741.9 Q 244.0 742.7, 244.9 742.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 248.8 742.4 L 250.0 742.4 L 250.0 743.3 L 249.8 745.0 L 249.3 745.0 L 249.3 743.6 L 248.8 743.6 L 248.8 742.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 255.3 742.6 L 257.1 742.6 L 257.1 736.3 L 255.1 736.9 L 254.8 736.2 L 257.4 735.0 L 258.2 735.2 L 258.2 742.6 L 259.9 742.6 L 259.9 743.6 L 255.3 743.6 L 255.3 742.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 263.1 740.2 Q 263.1 741.9, 262.5 743.3 Q 262.1 744.7, 261.1 746.2 L 260.4 745.8 Q 261.2 744.3, 261.6 743.1 Q 262.0 741.8, 262.0 740.2 Q 262.0 738.5, 261.6 737.2 Q 261.2 735.9, 260.4 734.5 L 261.1 734.1 Q 262.1 735.6, 262.5 737.0 Q 263.1 738.4, 263.1 740.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 413.4,650.8 L 406.8,647.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 406.8,647.0 L 400.3,643.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 398.4,643.2 L 398.4,635.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 398.4,635.6 L 398.4,627.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 402.1,643.2 L 402.1,635.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 402.1,635.6 L 402.1,627.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 400.3,643.2 L 384.1,652.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 384.1,652.5 L 367.1,645.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 367.1,645.0 L 354.6,658.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 354.6,658.8 L 336.0,658.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 351.8,662.5 L 338.8,662.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 336.0,658.8 L 326.6,675.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 326.6,675.0 L 336.0,691.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 331.3,675.5 L 337.8,686.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 336.0,691.1 L 354.6,691.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 354.6,691.1 L 363.9,675.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 352.8,686.8 L 359.3,675.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 363.9,675.0 L 382.2,671.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-11 atom-3\" d=\"M 382.2,671.1 L 384.1,652.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-12 atom-10 atom-5\" d=\"M 363.9,675.0 L 354.6,658.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-0\" d=\"M 414.0 652.6 Q 414.0 651.3, 414.6 650.6 Q 415.3 649.9, 416.4 649.9 Q 417.6 649.9, 418.2 650.6 Q 418.8 651.3, 418.8 652.6 Q 418.8 653.8, 418.2 654.6 Q 417.6 655.3, 416.4 655.3 Q 415.3 655.3, 414.6 654.6 Q 414.0 653.8, 414.0 652.6 M 416.4 654.7 Q 417.2 654.7, 417.7 654.2 Q 418.1 653.6, 418.1 652.6 Q 418.1 651.5, 417.7 651.0 Q 417.2 650.5, 416.4 650.5 Q 415.6 650.5, 415.2 651.0 Q 414.7 651.5, 414.7 652.6 Q 414.7 653.6, 415.2 654.2 Q 415.6 654.7, 416.4 654.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-0\" d=\"M 419.2 649.9 L 419.9 649.9 L 419.9 652.2 L 422.6 652.2 L 422.6 649.9 L 423.4 649.9 L 423.4 655.2 L 422.6 655.2 L 422.6 652.8 L 419.9 652.8 L 419.9 655.2 L 419.2 655.2 L 419.2 649.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-2\" d=\"M 397.9 624.6 Q 397.9 623.3, 398.5 622.6 Q 399.1 621.9, 400.3 621.9 Q 401.4 621.9, 402.1 622.6 Q 402.7 623.3, 402.7 624.6 Q 402.7 625.9, 402.1 626.6 Q 401.4 627.3, 400.3 627.3 Q 399.1 627.3, 398.5 626.6 Q 397.9 625.9, 397.9 624.6 M 400.3 626.7 Q 401.1 626.7, 401.5 626.2 Q 402.0 625.6, 402.0 624.6 Q 402.0 623.5, 401.5 623.0 Q 401.1 622.5, 400.3 622.5 Q 399.5 622.5, 399.0 623.0 Q 398.6 623.5, 398.6 624.6 Q 398.6 625.6, 399.0 626.2 Q 399.5 626.7, 400.3 626.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 343.2 743.6 L 342.3 741.1 L 339.0 741.1 L 338.1 743.6 L 336.9 743.6 L 339.9 735.1 L 341.3 735.1 L 344.3 743.6 L 343.2 743.6 M 339.3 740.1 L 342.0 740.1 L 340.6 736.3 L 339.3 740.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 345.4 737.4 L 345.5 738.3 Q 346.2 737.3, 347.2 737.3 Q 347.6 737.3, 348.0 737.4 L 347.8 738.4 Q 347.3 738.3, 347.0 738.3 Q 346.5 738.3, 346.2 738.5 Q 345.9 738.7, 345.6 739.2 L 345.6 743.6 L 344.5 743.6 L 344.5 737.4 L 345.4 737.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 348.2 740.5 Q 348.2 739.0, 348.9 738.1 Q 349.7 737.3, 351.1 737.3 Q 352.5 737.3, 353.3 738.1 Q 354.0 739.0, 354.0 740.5 Q 354.0 742.0, 353.3 742.8 Q 352.5 743.7, 351.1 743.7 Q 349.7 743.7, 348.9 742.8 Q 348.2 742.0, 348.2 740.5 M 349.3 740.5 Q 349.3 741.6, 349.8 742.2 Q 350.3 742.8, 351.1 742.8 Q 352.0 742.8, 352.4 742.2 Q 352.9 741.6, 352.9 740.5 Q 352.9 739.4, 352.4 738.8 Q 352.0 738.2, 351.1 738.2 Q 350.3 738.2, 349.8 738.8 Q 349.3 739.4, 349.3 740.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 361.7 737.3 Q 362.8 737.3, 363.3 737.9 Q 363.8 738.4, 363.8 739.5 L 363.8 743.6 L 362.7 743.6 L 362.7 739.6 Q 362.7 738.9, 362.4 738.5 Q 362.1 738.2, 361.5 738.2 Q 361.0 738.2, 360.5 738.5 Q 360.0 738.7, 359.8 739.2 Q 359.8 739.3, 359.8 739.5 L 359.8 743.6 L 358.7 743.6 L 358.7 739.6 Q 358.7 738.9, 358.4 738.5 Q 358.1 738.2, 357.5 738.2 Q 356.9 738.2, 356.5 738.5 Q 356.0 738.7, 355.7 739.2 L 355.7 743.6 L 354.6 743.6 L 354.6 737.4 L 355.5 737.4 L 355.6 738.3 Q 356.4 737.3, 357.7 737.3 Q 359.1 737.3, 359.6 738.4 Q 360.4 737.3, 361.7 737.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 364.8 741.9 Q 364.8 740.9, 365.5 740.4 Q 366.3 739.9, 367.8 739.9 L 368.7 739.9 L 368.7 739.6 Q 368.7 738.8, 368.4 738.5 Q 368.1 738.2, 367.3 738.2 Q 366.8 738.2, 366.4 738.3 Q 366.0 738.4, 365.4 738.6 L 365.1 737.9 Q 366.2 737.3, 367.3 737.3 Q 368.6 737.3, 369.2 737.9 Q 369.8 738.4, 369.8 739.6 L 369.8 743.6 L 369.0 743.6 Q 368.9 743.5, 368.9 743.4 Q 368.9 743.2, 368.8 742.9 Q 367.9 743.7, 366.8 743.7 Q 365.9 743.7, 365.3 743.2 Q 364.8 742.7, 364.8 741.9 M 365.9 741.9 Q 365.9 742.4, 366.2 742.6 Q 366.5 742.8, 367.0 742.8 Q 367.5 742.8, 367.9 742.6 Q 368.4 742.4, 368.7 742.0 L 368.7 740.7 L 367.9 740.7 Q 366.9 740.7, 366.4 741.0 Q 365.9 741.3, 365.9 741.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 370.8 738.3 L 370.8 737.4 L 371.9 737.4 L 372.1 735.6 L 373.0 735.6 L 373.0 737.4 L 374.8 737.4 L 374.8 738.3 L 373.0 738.3 L 373.0 741.7 Q 373.0 742.8, 373.9 742.8 Q 374.2 742.8, 374.7 742.6 L 374.9 743.4 Q 374.3 743.7, 373.7 743.7 Q 372.8 743.7, 372.3 743.2 Q 371.8 742.7, 371.8 741.8 L 371.8 738.3 L 370.8 738.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 375.2 735.1 L 376.3 735.1 L 376.3 736.1 L 375.2 736.1 L 375.2 735.1 M 375.2 737.4 L 376.3 737.4 L 376.3 743.6 L 375.2 743.6 L 375.2 737.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 377.4 740.5 Q 377.4 739.0, 378.1 738.2 Q 378.9 737.3, 380.3 737.3 Q 381.7 737.3, 382.5 738.3 L 381.7 738.9 Q 381.4 738.5, 381.1 738.4 Q 380.8 738.2, 380.3 738.2 Q 379.5 738.2, 379.0 738.8 Q 378.5 739.4, 378.5 740.5 Q 378.5 741.6, 379.0 742.2 Q 379.5 742.8, 380.4 742.8 Q 380.9 742.8, 381.2 742.7 Q 381.6 742.6, 382.0 742.4 L 382.3 743.1 Q 381.5 743.7, 380.3 743.7 Q 378.9 743.7, 378.1 742.8 Q 377.4 742.0, 377.4 740.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 388.9 744.2 L 388.9 745.2 L 382.8 745.2 L 382.8 744.2 L 388.9 744.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 388.9 740.2 Q 388.9 738.4, 389.4 737.0 Q 389.9 735.6, 390.8 734.1 L 391.5 734.5 Q 390.7 735.9, 390.3 737.2 Q 389.9 738.5, 389.9 740.2 Q 389.9 741.8, 390.3 743.1 Q 390.7 744.3, 391.5 745.8 L 390.8 746.2 Q 389.9 744.7, 389.4 743.3 Q 388.9 741.9, 388.9 740.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 392.3 742.6 L 394.1 742.6 L 394.1 736.3 L 392.1 736.9 L 391.8 736.2 L 394.4 735.0 L 395.3 735.2 L 395.3 742.6 L 396.9 742.6 L 396.9 743.6 L 392.3 743.6 L 392.3 742.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 397.4 742.4 L 398.6 742.4 L 398.6 743.3 L 398.4 745.0 L 398.0 745.0 L 398.0 743.6 L 397.4 743.6 L 397.4 742.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 406.5 743.7 Q 405.0 743.7, 404.2 742.5 Q 403.4 741.4, 403.4 739.3 Q 403.4 737.3, 404.2 736.1 Q 405.0 735.0, 406.5 735.0 Q 408.1 735.0, 408.9 736.1 Q 409.6 737.3, 409.6 739.3 Q 409.6 741.4, 408.9 742.5 Q 408.1 743.7, 406.5 743.7 M 406.5 742.7 Q 407.5 742.7, 407.9 741.9 Q 408.4 741.0, 408.4 739.3 Q 408.4 737.7, 407.9 736.8 Q 407.5 736.0, 406.5 736.0 Q 405.6 736.0, 405.1 736.8 Q 404.6 737.7, 404.6 739.3 Q 404.6 741.0, 405.1 741.9 Q 405.6 742.7, 406.5 742.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 413.1 740.2 Q 413.1 741.9, 412.5 743.3 Q 412.1 744.7, 411.1 746.2 L 410.4 745.8 Q 411.2 744.3, 411.6 743.1 Q 412.0 741.8, 412.0 740.2 Q 412.0 738.5, 411.6 737.2 Q 411.2 735.9, 410.4 734.5 L 411.1 734.1 Q 412.1 735.6, 412.5 737.0 Q 413.1 738.4, 413.1 740.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 473.1,636.5 L 489.2,645.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 489.2,645.8 L 505.4,636.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 493.5,647.6 L 504.8,641.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 505.4,636.5 L 521.5,645.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 521.5,645.8 L 521.5,664.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 517.8,648.6 L 517.8,661.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 521.5,664.4 L 537.7,673.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 537.7,673.8 L 553.8,664.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 553.8,664.4 L 560.4,668.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 560.4,668.2 L 566.9,672.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 552.0,664.4 L 552.0,656.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 552.0,656.8 L 552.0,649.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 555.7,664.4 L 555.7,656.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 555.7,656.8 L 555.7,649.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-4 atom-9\" d=\"M 521.5,664.4 L 505.4,673.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 505.4,673.8 L 489.2,664.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 504.8,669.1 L 493.5,662.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 489.2,664.4 L 473.1,673.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-10 atom-1\" d=\"M 489.2,664.4 L 489.2,645.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-7\" d=\"M 567.6 673.8 Q 567.6 672.5, 568.2 671.8 Q 568.8 671.1, 570.0 671.1 Q 571.2 671.1, 571.8 671.8 Q 572.4 672.5, 572.4 673.8 Q 572.4 675.1, 571.8 675.8 Q 571.1 676.5, 570.0 676.5 Q 568.8 676.5, 568.2 675.8 Q 567.6 675.1, 567.6 673.8 M 570.0 675.9 Q 570.8 675.9, 571.2 675.4 Q 571.7 674.8, 571.7 673.8 Q 571.7 672.7, 571.2 672.2 Q 570.8 671.7, 570.0 671.7 Q 569.2 671.7, 568.7 672.2 Q 568.3 672.7, 568.3 673.8 Q 568.3 674.9, 568.7 675.4 Q 569.2 675.9, 570.0 675.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 572.8 671.2 L 573.5 671.2 L 573.5 673.4 L 576.2 673.4 L 576.2 671.2 L 576.9 671.2 L 576.9 676.4 L 576.2 676.4 L 576.2 674.0 L 573.5 674.0 L 573.5 676.4 L 572.8 676.4 L 572.8 671.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-8\" d=\"M 551.4 645.8 Q 551.4 644.5, 552.0 643.8 Q 552.7 643.1, 553.8 643.1 Q 555.0 643.1, 555.6 643.8 Q 556.3 644.5, 556.3 645.8 Q 556.3 647.1, 555.6 647.8 Q 555.0 648.6, 553.8 648.6 Q 552.7 648.6, 552.0 647.8 Q 551.4 647.1, 551.4 645.8 M 553.8 648.0 Q 554.6 648.0, 555.1 647.4 Q 555.5 646.9, 555.5 645.8 Q 555.5 644.8, 555.1 644.3 Q 554.6 643.7, 553.8 643.7 Q 553.0 643.7, 552.6 644.2 Q 552.2 644.8, 552.2 645.8 Q 552.2 646.9, 552.6 647.4 Q 553.0 648.0, 553.8 648.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 493.9 743.6 L 493.0 741.1 L 489.6 741.1 L 488.8 743.6 L 487.6 743.6 L 490.6 735.1 L 492.0 735.1 L 495.0 743.6 L 493.9 743.6 M 490.0 740.1 L 492.7 740.1 L 491.3 736.3 L 490.0 740.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 496.1 737.4 L 496.2 738.3 Q 496.8 737.3, 497.9 737.3 Q 498.2 737.3, 498.7 737.4 L 498.5 738.4 Q 498.0 738.3, 497.7 738.3 Q 497.2 738.3, 496.9 738.5 Q 496.5 738.7, 496.3 739.2 L 496.3 743.6 L 495.2 743.6 L 495.2 737.4 L 496.1 737.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 498.9 740.5 Q 498.9 739.0, 499.6 738.1 Q 500.4 737.3, 501.8 737.3 Q 503.2 737.3, 504.0 738.1 Q 504.7 739.0, 504.7 740.5 Q 504.7 742.0, 504.0 742.8 Q 503.2 743.7, 501.8 743.7 Q 500.4 743.7, 499.6 742.8 Q 498.9 742.0, 498.9 740.5 M 500.0 740.5 Q 500.0 741.6, 500.5 742.2 Q 500.9 742.8, 501.8 742.8 Q 502.7 742.8, 503.1 742.2 Q 503.6 741.6, 503.6 740.5 Q 503.6 739.4, 503.1 738.8 Q 502.7 738.2, 501.8 738.2 Q 500.9 738.2, 500.5 738.8 Q 500.0 739.4, 500.0 740.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 512.4 737.3 Q 513.5 737.3, 514.0 737.9 Q 514.5 738.4, 514.5 739.5 L 514.5 743.6 L 513.4 743.6 L 513.4 739.6 Q 513.4 738.9, 513.1 738.5 Q 512.8 738.2, 512.2 738.2 Q 511.7 738.2, 511.2 738.5 Q 510.7 738.7, 510.5 739.2 Q 510.5 739.3, 510.5 739.5 L 510.5 743.6 L 509.3 743.6 L 509.3 739.6 Q 509.3 738.9, 509.1 738.5 Q 508.8 738.2, 508.1 738.2 Q 507.6 738.2, 507.2 738.5 Q 506.7 738.7, 506.4 739.2 L 506.4 743.6 L 505.3 743.6 L 505.3 737.4 L 506.2 737.4 L 506.3 738.3 Q 507.1 737.3, 508.4 737.3 Q 509.8 737.3, 510.3 738.4 Q 511.1 737.3, 512.4 737.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 515.4 741.9 Q 515.4 740.9, 516.2 740.4 Q 517.0 739.9, 518.5 739.9 L 519.4 739.9 L 519.4 739.6 Q 519.4 738.8, 519.1 738.5 Q 518.7 738.2, 518.0 738.2 Q 517.5 738.2, 517.1 738.3 Q 516.7 738.4, 516.1 738.6 L 515.8 737.9 Q 516.9 737.3, 518.0 737.3 Q 519.3 737.3, 519.9 737.9 Q 520.5 738.4, 520.5 739.6 L 520.5 743.6 L 519.6 743.6 Q 519.6 743.5, 519.6 743.4 Q 519.5 743.2, 519.5 742.9 Q 518.6 743.7, 517.5 743.7 Q 516.5 743.7, 516.0 743.2 Q 515.4 742.7, 515.4 741.9 M 516.6 741.9 Q 516.6 742.4, 516.8 742.6 Q 517.1 742.8, 517.7 742.8 Q 518.2 742.8, 518.6 742.6 Q 519.1 742.4, 519.4 742.0 L 519.4 740.7 L 518.5 740.7 Q 517.6 740.7, 517.1 741.0 Q 516.6 741.3, 516.6 741.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 521.4 738.3 L 521.4 737.4 L 522.6 737.4 L 522.8 735.6 L 523.6 735.6 L 523.6 737.4 L 525.5 737.4 L 525.5 738.3 L 523.6 738.3 L 523.6 741.7 Q 523.6 742.8, 524.5 742.8 Q 524.9 742.8, 525.4 742.6 L 525.6 743.4 Q 525.0 743.7, 524.3 743.7 Q 523.5 743.7, 523.0 743.2 Q 522.5 742.7, 522.5 741.8 L 522.5 738.3 L 521.4 738.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 525.9 735.1 L 527.0 735.1 L 527.0 736.1 L 525.9 736.1 L 525.9 735.1 M 525.9 737.4 L 527.0 737.4 L 527.0 743.6 L 525.9 743.6 L 525.9 737.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 528.1 740.5 Q 528.1 739.0, 528.8 738.2 Q 529.5 737.3, 531.0 737.3 Q 532.4 737.3, 533.1 738.3 L 532.4 738.9 Q 532.1 738.5, 531.8 738.4 Q 531.4 738.2, 531.0 738.2 Q 530.2 738.2, 529.7 738.8 Q 529.2 739.4, 529.2 740.5 Q 529.2 741.6, 529.7 742.2 Q 530.2 742.8, 531.1 742.8 Q 531.6 742.8, 531.9 742.7 Q 532.3 742.6, 532.7 742.4 L 533.0 743.1 Q 532.1 743.7, 531.0 743.7 Q 529.5 743.7, 528.8 742.8 Q 528.1 742.0, 528.1 740.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 539.6 744.2 L 539.6 745.2 L 533.4 745.2 L 533.4 744.2 L 539.6 744.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 539.6 740.2 Q 539.6 738.4, 540.0 737.0 Q 540.6 735.6, 541.5 734.1 L 542.2 734.5 Q 541.4 735.9, 541.0 737.2 Q 540.6 738.5, 540.6 740.2 Q 540.6 741.8, 541.0 743.1 Q 541.4 744.3, 542.2 745.8 L 541.5 746.2 Q 540.6 744.7, 540.0 743.3 Q 539.6 741.9, 539.6 740.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 543.0 742.6 L 544.8 742.6 L 544.8 736.3 L 542.8 736.9 L 542.5 736.2 L 545.1 735.0 L 546.0 735.2 L 546.0 742.6 L 547.6 742.6 L 547.6 743.6 L 543.0 743.6 L 543.0 742.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 548.1 742.4 L 549.3 742.4 L 549.3 743.3 L 549.1 745.0 L 548.7 745.0 L 548.7 743.6 L 548.1 743.6 L 548.1 742.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 554.6 742.6 L 556.4 742.6 L 556.4 736.3 L 554.4 736.9 L 554.1 736.2 L 556.7 735.0 L 557.6 735.2 L 557.6 742.6 L 559.2 742.6 L 559.2 743.6 L 554.6 743.6 L 554.6 742.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 562.4 740.2 Q 562.4 741.9, 561.9 743.3 Q 561.4 744.7, 560.4 746.2 L 559.7 745.8 Q 560.5 744.3, 560.9 743.1 Q 561.3 741.8, 561.3 740.2 Q 561.3 738.5, 560.9 737.2 Q 560.5 735.9, 559.7 734.5 L 560.4 734.1 Q 561.4 735.6, 561.9 737.0 Q 562.4 738.4, 562.4 740.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 623.1,683.1 L 639.2,673.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 639.2,673.8 L 639.2,655.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 643.0,671.0 L 643.0,657.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 639.2,655.1 L 655.4,645.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 655.4,645.8 L 655.4,627.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-3 atom-5\" d=\"M 655.4,645.8 L 671.5,655.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-3 atom-5\" d=\"M 655.9,650.4 L 667.2,657.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 671.5,655.1 L 671.5,673.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 671.5,673.8 L 687.7,683.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 687.7,683.1 L 703.8,673.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 703.8,673.8 L 710.4,677.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 710.4,677.6 L 716.9,681.3\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 702.0,673.8 L 702.0,666.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 702.0,666.1 L 702.0,658.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 705.7,673.8 L 705.7,666.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-8 atom-10\" d=\"M 705.7,666.1 L 705.7,658.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-6 atom-11\" d=\"M 671.5,673.8 L 655.4,683.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-6 atom-11\" d=\"M 667.2,671.9 L 655.9,678.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-11 atom-1\" d=\"M 655.4,683.1 L 639.2,673.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-9\" d=\"M 717.6 683.1 Q 717.6 681.8, 718.2 681.1 Q 718.8 680.4, 720.0 680.4 Q 721.2 680.4, 721.8 681.1 Q 722.4 681.8, 722.4 683.1 Q 722.4 684.4, 721.8 685.1 Q 721.1 685.8, 720.0 685.8 Q 718.8 685.8, 718.2 685.1 Q 717.6 684.4, 717.6 683.1 M 720.0 685.2 Q 720.8 685.2, 721.2 684.7 Q 721.7 684.2, 721.7 683.1 Q 721.7 682.1, 721.2 681.5 Q 720.8 681.0, 720.0 681.0 Q 719.2 681.0, 718.7 681.5 Q 718.3 682.1, 718.3 683.1 Q 718.3 684.2, 718.7 684.7 Q 719.2 685.2, 720.0 685.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 722.8 680.5 L 723.5 680.5 L 723.5 682.7 L 726.2 682.7 L 726.2 680.5 L 726.9 680.5 L 726.9 685.8 L 726.2 685.8 L 726.2 683.3 L 723.5 683.3 L 723.5 685.8 L 722.8 685.8 L 722.8 680.5 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-10\" d=\"M 701.4 655.1 Q 701.4 653.9, 702.0 653.2 Q 702.7 652.5, 703.8 652.5 Q 705.0 652.5, 705.6 653.2 Q 706.3 653.9, 706.3 655.1 Q 706.3 656.4, 705.6 657.2 Q 705.0 657.9, 703.8 657.9 Q 702.7 657.9, 702.0 657.2 Q 701.4 656.4, 701.4 655.1 M 703.8 657.3 Q 704.6 657.3, 705.1 656.7 Q 705.5 656.2, 705.5 655.1 Q 705.5 654.1, 705.1 653.6 Q 704.6 653.1, 703.8 653.1 Q 703.0 653.1, 702.6 653.6 Q 702.2 654.1, 702.2 655.1 Q 702.2 656.2, 702.6 656.7 Q 703.0 657.3, 703.8 657.3 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 642.8 743.6 L 641.9 741.1 L 638.5 741.1 L 637.7 743.6 L 636.5 743.6 L 639.5 735.1 L 640.9 735.1 L 643.9 743.6 L 642.8 743.6 M 638.9 740.1 L 641.6 740.1 L 640.2 736.3 L 638.9 740.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 645.0 737.4 L 645.1 738.3 Q 645.8 737.3, 646.8 737.3 Q 647.1 737.3, 647.6 737.4 L 647.4 738.4 Q 646.9 738.3, 646.6 738.3 Q 646.1 738.3, 645.8 738.5 Q 645.5 738.7, 645.2 739.2 L 645.2 743.6 L 644.1 743.6 L 644.1 737.4 L 645.0 737.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 647.8 740.5 Q 647.8 739.0, 648.5 738.1 Q 649.3 737.3, 650.7 737.3 Q 652.1 737.3, 652.9 738.1 Q 653.6 739.0, 653.6 740.5 Q 653.6 742.0, 652.9 742.8 Q 652.1 743.7, 650.7 743.7 Q 649.3 743.7, 648.5 742.8 Q 647.8 742.0, 647.8 740.5 M 648.9 740.5 Q 648.9 741.6, 649.4 742.2 Q 649.9 742.8, 650.7 742.8 Q 651.6 742.8, 652.0 742.2 Q 652.5 741.6, 652.5 740.5 Q 652.5 739.4, 652.0 738.8 Q 651.6 738.2, 650.7 738.2 Q 649.9 738.2, 649.4 738.8 Q 648.9 739.4, 648.9 740.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 661.3 737.3 Q 662.4 737.3, 662.9 737.9 Q 663.4 738.4, 663.4 739.5 L 663.4 743.6 L 662.3 743.6 L 662.3 739.6 Q 662.3 738.9, 662.0 738.5 Q 661.7 738.2, 661.1 738.2 Q 660.6 738.2, 660.1 738.5 Q 659.6 738.7, 659.4 739.2 Q 659.4 739.3, 659.4 739.5 L 659.4 743.6 L 658.2 743.6 L 658.2 739.6 Q 658.2 738.9, 658.0 738.5 Q 657.7 738.2, 657.1 738.2 Q 656.5 738.2, 656.1 738.5 Q 655.6 738.7, 655.3 739.2 L 655.3 743.6 L 654.2 743.6 L 654.2 737.4 L 655.1 737.4 L 655.2 738.3 Q 656.0 737.3, 657.3 737.3 Q 658.7 737.3, 659.2 738.4 Q 660.0 737.3, 661.3 737.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 664.3 741.9 Q 664.3 740.9, 665.1 740.4 Q 665.9 739.9, 667.4 739.9 L 668.3 739.9 L 668.3 739.6 Q 668.3 738.8, 668.0 738.5 Q 667.7 738.2, 666.9 738.2 Q 666.4 738.2, 666.0 738.3 Q 665.6 738.4, 665.0 738.6 L 664.7 737.9 Q 665.8 737.3, 666.9 737.3 Q 668.2 737.3, 668.8 737.9 Q 669.4 738.4, 669.4 739.6 L 669.4 743.6 L 668.5 743.6 Q 668.5 743.5, 668.5 743.4 Q 668.5 743.2, 668.4 742.9 Q 667.5 743.7, 666.4 743.7 Q 665.4 743.7, 664.9 743.2 Q 664.3 742.7, 664.3 741.9 M 665.5 741.9 Q 665.5 742.4, 665.8 742.6 Q 666.0 742.8, 666.6 742.8 Q 667.1 742.8, 667.5 742.6 Q 668.0 742.4, 668.3 742.0 L 668.3 740.7 L 667.4 740.7 Q 666.5 740.7, 666.0 741.0 Q 665.5 741.3, 665.5 741.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 670.3 738.3 L 670.3 737.4 L 671.5 737.4 L 671.7 735.6 L 672.6 735.6 L 672.6 737.4 L 674.4 737.4 L 674.4 738.3 L 672.6 738.3 L 672.6 741.7 Q 672.6 742.8, 673.5 742.8 Q 673.8 742.8, 674.3 742.6 L 674.5 743.4 Q 673.9 743.7, 673.2 743.7 Q 672.4 743.7, 671.9 743.2 Q 671.4 742.7, 671.4 741.8 L 671.4 738.3 L 670.3 738.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 674.8 735.1 L 675.9 735.1 L 675.9 736.1 L 674.8 736.1 L 674.8 735.1 M 674.8 737.4 L 675.9 737.4 L 675.9 743.6 L 674.8 743.6 L 674.8 737.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 677.0 740.5 Q 677.0 739.0, 677.7 738.2 Q 678.5 737.3, 679.9 737.3 Q 681.3 737.3, 682.1 738.3 L 681.3 738.9 Q 681.0 738.5, 680.7 738.4 Q 680.4 738.2, 679.9 738.2 Q 679.1 738.2, 678.6 738.8 Q 678.1 739.4, 678.1 740.5 Q 678.1 741.6, 678.6 742.2 Q 679.1 742.8, 680.0 742.8 Q 680.5 742.8, 680.8 742.7 Q 681.2 742.6, 681.6 742.4 L 681.9 743.1 Q 681.0 743.7, 679.9 743.7 Q 678.5 743.7, 677.7 742.8 Q 677.0 742.0, 677.0 740.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 688.5 744.2 L 688.5 745.2 L 682.3 745.2 L 682.3 744.2 L 688.5 744.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 688.5 740.2 Q 688.5 738.4, 689.0 737.0 Q 689.5 735.6, 690.4 734.1 L 691.1 734.5 Q 690.3 735.9, 689.9 737.2 Q 689.5 738.5, 689.5 740.2 Q 689.5 741.8, 689.9 743.1 Q 690.3 744.3, 691.1 745.8 L 690.4 746.2 Q 689.5 744.7, 689.0 743.3 Q 688.5 741.9, 688.5 740.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 691.4 736.7 Q 691.7 735.9, 692.5 735.5 Q 693.2 735.0, 694.3 735.0 Q 695.5 735.0, 696.3 735.7 Q 697.0 736.4, 697.0 737.6 Q 697.0 738.9, 696.0 740.1 Q 695.1 741.2, 693.2 742.6 L 697.1 742.6 L 697.1 743.6 L 691.4 743.6 L 691.4 742.8 Q 693.0 741.7, 693.9 740.8 Q 694.9 740.0, 695.3 739.2 Q 695.8 738.5, 695.8 737.7 Q 695.8 736.9, 695.4 736.4 Q 695.0 736.0, 694.3 736.0 Q 693.6 736.0, 693.1 736.2 Q 692.7 736.5, 692.3 737.1 L 691.4 736.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 697.8 742.4 L 699.0 742.4 L 699.0 743.3 L 698.8 745.0 L 698.4 745.0 L 698.4 743.6 L 697.8 743.6 L 697.8 742.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 706.9 743.7 Q 705.4 743.7, 704.6 742.5 Q 703.8 741.4, 703.8 739.3 Q 703.8 737.3, 704.6 736.1 Q 705.4 735.0, 706.9 735.0 Q 708.5 735.0, 709.3 736.1 Q 710.0 737.3, 710.0 739.3 Q 710.0 741.4, 709.3 742.5 Q 708.5 743.7, 706.9 743.7 M 706.9 742.7 Q 707.9 742.7, 708.3 741.9 Q 708.8 741.0, 708.8 739.3 Q 708.8 737.7, 708.3 736.8 Q 707.9 736.0, 706.9 736.0 Q 706.0 736.0, 705.5 736.8 Q 705.0 737.7, 705.0 739.3 Q 705.0 741.0, 705.5 741.9 Q 706.0 742.7, 706.9 742.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 713.5 740.2 Q 713.5 741.9, 713.0 743.3 Q 712.5 744.7, 711.5 746.2 L 710.8 745.8 Q 711.6 744.3, 712.0 743.1 Q 712.4 741.8, 712.4 740.2 Q 712.4 738.5, 712.0 737.2 Q 711.6 735.9, 710.8 734.5 L 711.5 734.1 Q 712.5 735.6, 713.0 737.0 Q 713.5 738.4, 713.5 740.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 781.2,639.2 L 797.3,648.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 797.3,648.5 L 813.5,639.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 801.6,650.3 L 812.9,643.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 813.5,639.2 L 829.6,648.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 829.6,648.5 L 829.6,667.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 825.9,651.3 L 825.9,664.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 829.6,667.2 L 813.5,676.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 813.5,676.5 L 813.5,695.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 813.5,676.5 L 797.3,667.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 812.9,671.9 L 801.6,665.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 797.3,667.2 L 781.2,676.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-3 atom-9\" d=\"M 829.6,648.5 L 845.8,639.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 845.8,639.2 L 852.3,643.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 852.3,643.0 L 858.9,646.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-11\" d=\"M 843.9,639.2 L 843.9,631.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-11\" d=\"M 843.9,631.5 L 843.9,623.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-11\" d=\"M 847.6,639.2 L 847.6,631.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-11\" d=\"M 847.6,631.5 L 847.6,623.9\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-7 atom-1\" d=\"M 797.3,667.2 L 797.3,648.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-10\" d=\"M 859.5 648.5 Q 859.5 647.3, 860.1 646.6 Q 860.7 645.8, 861.9 645.8 Q 863.1 645.8, 863.7 646.6 Q 864.3 647.3, 864.3 648.5 Q 864.3 649.8, 863.7 650.5 Q 863.1 651.3, 861.9 651.3 Q 860.7 651.3, 860.1 650.5 Q 859.5 649.8, 859.5 648.5 M 861.9 650.7 Q 862.7 650.7, 863.1 650.1 Q 863.6 649.6, 863.6 648.5 Q 863.6 647.5, 863.1 647.0 Q 862.7 646.4, 861.9 646.4 Q 861.1 646.4, 860.7 647.0 Q 860.2 647.5, 860.2 648.5 Q 860.2 649.6, 860.7 650.1 Q 861.1 650.7, 861.9 650.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-10\" d=\"M 864.7 645.9 L 865.4 645.9 L 865.4 648.1 L 868.1 648.1 L 868.1 645.9 L 868.8 645.9 L 868.8 651.2 L 868.1 651.2 L 868.1 648.7 L 865.4 648.7 L 865.4 651.2 L 864.7 651.2 L 864.7 645.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-11\" d=\"M 843.3 620.6 Q 843.3 619.3, 844.0 618.6 Q 844.6 617.9, 845.8 617.9 Q 846.9 617.9, 847.6 618.6 Q 848.2 619.3, 848.2 620.6 Q 848.2 621.8, 847.5 622.6 Q 846.9 623.3, 845.8 623.3 Q 844.6 623.3, 844.0 622.6 Q 843.3 621.8, 843.3 620.6 M 845.8 622.7 Q 846.6 622.7, 847.0 622.2 Q 847.4 621.6, 847.4 620.6 Q 847.4 619.5, 847.0 619.0 Q 846.6 618.5, 845.8 618.5 Q 845.0 618.5, 844.5 619.0 Q 844.1 619.5, 844.1 620.6 Q 844.1 621.6, 844.5 622.2 Q 845.0 622.7, 845.8 622.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 793.5 743.6 L 792.6 741.1 L 789.2 741.1 L 788.4 743.6 L 787.2 743.6 L 790.2 735.1 L 791.6 735.1 L 794.6 743.6 L 793.5 743.6 M 789.6 740.1 L 792.3 740.1 L 790.9 736.3 L 789.6 740.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 795.7 737.4 L 795.8 738.3 Q 796.4 737.3, 797.5 737.3 Q 797.8 737.3, 798.3 737.4 L 798.1 738.4 Q 797.6 738.3, 797.3 738.3 Q 796.8 738.3, 796.5 738.5 Q 796.1 738.7, 795.9 739.2 L 795.9 743.6 L 794.7 743.6 L 794.7 737.4 L 795.7 737.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 798.5 740.5 Q 798.5 739.0, 799.2 738.1 Q 800.0 737.3, 801.4 737.3 Q 802.8 737.3, 803.6 738.1 Q 804.3 739.0, 804.3 740.5 Q 804.3 742.0, 803.6 742.8 Q 802.8 743.7, 801.4 743.7 Q 800.0 743.7, 799.2 742.8 Q 798.5 742.0, 798.5 740.5 M 799.6 740.5 Q 799.6 741.6, 800.1 742.2 Q 800.5 742.8, 801.4 742.8 Q 802.2 742.8, 802.7 742.2 Q 803.2 741.6, 803.2 740.5 Q 803.2 739.4, 802.7 738.8 Q 802.2 738.2, 801.4 738.2 Q 800.5 738.2, 800.1 738.8 Q 799.6 739.4, 799.6 740.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 812.0 737.3 Q 813.0 737.3, 813.6 737.9 Q 814.1 738.4, 814.1 739.5 L 814.1 743.6 L 813.0 743.6 L 813.0 739.6 Q 813.0 738.9, 812.7 738.5 Q 812.4 738.2, 811.8 738.2 Q 811.2 738.2, 810.8 738.5 Q 810.3 738.7, 810.0 739.2 Q 810.1 739.3, 810.1 739.5 L 810.1 743.6 L 808.9 743.6 L 808.9 739.6 Q 808.9 738.9, 808.6 738.5 Q 808.4 738.2, 807.7 738.2 Q 807.2 738.2, 806.7 738.5 Q 806.3 738.7, 806.0 739.2 L 806.0 743.6 L 804.9 743.6 L 804.9 737.4 L 805.8 737.4 L 805.9 738.3 Q 806.7 737.3, 808.0 737.3 Q 809.4 737.3, 809.9 738.4 Q 810.7 737.3, 812.0 737.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 815.0 741.9 Q 815.0 740.9, 815.8 740.4 Q 816.6 739.9, 818.1 739.9 L 819.0 739.9 L 819.0 739.6 Q 819.0 738.8, 818.6 738.5 Q 818.3 738.2, 817.6 738.2 Q 817.1 738.2, 816.7 738.3 Q 816.3 738.4, 815.7 738.6 L 815.4 737.9 Q 816.5 737.3, 817.6 737.3 Q 818.9 737.3, 819.5 737.9 Q 820.1 738.4, 820.1 739.6 L 820.1 743.6 L 819.2 743.6 Q 819.2 743.5, 819.2 743.4 Q 819.1 743.2, 819.1 742.9 Q 818.2 743.7, 817.1 743.7 Q 816.1 743.7, 815.6 743.2 Q 815.0 742.7, 815.0 741.9 M 816.2 741.9 Q 816.2 742.4, 816.4 742.6 Q 816.7 742.8, 817.3 742.8 Q 817.7 742.8, 818.2 742.6 Q 818.7 742.4, 819.0 742.0 L 819.0 740.7 L 818.1 740.7 Q 817.1 740.7, 816.6 741.0 Q 816.2 741.3, 816.2 741.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 821.0 738.3 L 821.0 737.4 L 822.2 737.4 L 822.4 735.6 L 823.2 735.6 L 823.2 737.4 L 825.1 737.4 L 825.1 738.3 L 823.2 738.3 L 823.2 741.7 Q 823.2 742.8, 824.1 742.8 Q 824.5 742.8, 825.0 742.6 L 825.2 743.4 Q 824.6 743.7, 823.9 743.7 Q 823.1 743.7, 822.6 743.2 Q 822.1 742.7, 822.1 741.8 L 822.1 738.3 L 821.0 738.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 825.5 735.1 L 826.6 735.1 L 826.6 736.1 L 825.5 736.1 L 825.5 735.1 M 825.5 737.4 L 826.6 737.4 L 826.6 743.6 L 825.5 743.6 L 825.5 737.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 827.6 740.5 Q 827.6 739.0, 828.4 738.2 Q 829.1 737.3, 830.6 737.3 Q 832.0 737.3, 832.7 738.3 L 832.0 738.9 Q 831.7 738.5, 831.4 738.4 Q 831.0 738.2, 830.6 738.2 Q 829.8 738.2, 829.3 738.8 Q 828.8 739.4, 828.8 740.5 Q 828.8 741.6, 829.3 742.2 Q 829.8 742.8, 830.7 742.8 Q 831.2 742.8, 831.5 742.7 Q 831.9 742.6, 832.3 742.4 L 832.6 743.1 Q 831.7 743.7, 830.6 743.7 Q 829.1 743.7, 828.4 742.8 Q 827.6 742.0, 827.6 740.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 839.1 744.2 L 839.1 745.2 L 833.0 745.2 L 833.0 744.2 L 839.1 744.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 839.1 740.2 Q 839.1 738.4, 839.6 737.0 Q 840.1 735.6, 841.1 734.1 L 841.8 734.5 Q 841.0 735.9, 840.6 737.2 Q 840.2 738.5, 840.2 740.2 Q 840.2 741.8, 840.6 743.1 Q 841.0 744.3, 841.8 745.8 L 841.1 746.2 Q 840.1 744.7, 839.6 743.3 Q 839.1 741.9, 839.1 740.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 842.1 736.7 Q 842.4 735.9, 843.2 735.5 Q 843.9 735.0, 844.9 735.0 Q 846.2 735.0, 846.9 735.7 Q 847.7 736.4, 847.7 737.6 Q 847.7 738.9, 846.7 740.1 Q 845.8 741.2, 843.9 742.6 L 847.8 742.6 L 847.8 743.6 L 842.1 743.6 L 842.1 742.8 Q 843.7 741.7, 844.6 740.8 Q 845.6 740.0, 846.0 739.2 Q 846.5 738.5, 846.5 737.7 Q 846.5 736.9, 846.1 736.4 Q 845.6 736.0, 844.9 736.0 Q 844.3 736.0, 843.8 736.2 Q 843.3 736.5, 843.0 737.1 L 842.1 736.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 848.5 742.4 L 849.7 742.4 L 849.7 743.3 L 849.5 745.0 L 849.1 745.0 L 849.1 743.6 L 848.5 743.6 L 848.5 742.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 855.0 742.6 L 856.8 742.6 L 856.8 736.3 L 854.8 736.9 L 854.5 736.2 L 857.1 735.0 L 858.0 735.2 L 858.0 742.6 L 859.6 742.6 L 859.6 743.6 L 855.0 743.6 L 855.0 742.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 862.8 740.2 Q 862.8 741.9, 862.3 743.3 Q 861.8 744.7, 860.8 746.2 L 860.1 745.8 Q 860.9 744.3, 861.3 743.1 Q 861.7 741.8, 861.7 740.2 Q 861.7 738.5, 861.3 737.2 Q 860.9 735.9, 860.1 734.5 L 860.8 734.1 Q 861.8 735.6, 862.3 737.0 Q 862.8 738.4, 862.8 740.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-1 atom-0\" d=\"M 950.2,681.0 L 950.8,682.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-1 atom-0\" d=\"M 944.5,683.6 L 945.7,685.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-0 atom-1 atom-0\" d=\"M 938.8,686.1 L 940.6,689.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 955.9,678.4 L 972.0,687.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 972.0,687.8 L 988.1,678.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 988.1,678.4 L 994.7,682.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 994.7,682.2 L 1001.3,686.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-3 atom-5\" d=\"M 986.3,678.4 L 986.3,670.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-3 atom-5\" d=\"M 986.3,670.8 L 986.3,663.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-3 atom-5\" d=\"M 990.0,678.4 L 990.0,670.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-3 atom-5\" d=\"M 990.0,670.8 L 990.0,663.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-1 atom-6\" d=\"M 955.9,678.4 L 955.9,659.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 955.9,659.8 L 939.7,650.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 955.3,655.2 L 944.0,648.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 939.7,650.5 L 939.7,631.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 939.7,631.8 L 955.9,622.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-8 atom-9\" d=\"M 944.0,633.6 L 955.3,627.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 955.9,622.5 L 972.0,631.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 972.0,631.8 L 972.0,650.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 968.3,634.6 L 968.3,647.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-11 atom-6\" d=\"M 972.0,650.5 L 955.9,659.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-4\" d=\"M 1001.9 687.8 Q 1001.9 686.5, 1002.5 685.8 Q 1003.1 685.1, 1004.3 685.1 Q 1005.5 685.1, 1006.1 685.8 Q 1006.7 686.5, 1006.7 687.8 Q 1006.7 689.1, 1006.1 689.8 Q 1005.5 690.5, 1004.3 690.5 Q 1003.1 690.5, 1002.5 689.8 Q 1001.9 689.1, 1001.9 687.8 M 1004.3 689.9 Q 1005.1 689.9, 1005.5 689.4 Q 1006.0 688.8, 1006.0 687.8 Q 1006.0 686.7, 1005.5 686.2 Q 1005.1 685.7, 1004.3 685.7 Q 1003.5 685.7, 1003.1 686.2 Q 1002.6 686.7, 1002.6 687.8 Q 1002.6 688.8, 1003.1 689.4 Q 1003.5 689.9, 1004.3 689.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-4\" d=\"M 1007.1 685.1 L 1007.8 685.1 L 1007.8 687.4 L 1010.5 687.4 L 1010.5 685.1 L 1011.2 685.1 L 1011.2 690.4 L 1010.5 690.4 L 1010.5 688.0 L 1007.8 688.0 L 1007.8 690.4 L 1007.1 690.4 L 1007.1 685.1 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-5\" d=\"M 985.7 659.8 Q 985.7 658.5, 986.4 657.8 Q 987.0 657.1, 988.1 657.1 Q 989.3 657.1, 989.9 657.8 Q 990.6 658.5, 990.6 659.8 Q 990.6 661.1, 989.9 661.8 Q 989.3 662.5, 988.1 662.5 Q 987.0 662.5, 986.4 661.8 Q 985.7 661.1, 985.7 659.8 M 988.1 661.9 Q 989.0 661.9, 989.4 661.4 Q 989.8 660.9, 989.8 659.8 Q 989.8 658.8, 989.4 658.2 Q 989.0 657.7, 988.1 657.7 Q 987.3 657.7, 986.9 658.2 Q 986.5 658.8, 986.5 659.8 Q 986.5 660.9, 986.9 661.4 Q 987.3 661.9, 988.1 661.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 942.8 743.6 L 941.9 741.1 L 938.6 741.1 L 937.7 743.6 L 936.6 743.6 L 939.5 735.1 L 940.9 735.1 L 943.9 743.6 L 942.8 743.6 M 938.9 740.1 L 941.6 740.1 L 940.2 736.3 L 938.9 740.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 945.0 737.4 L 945.1 738.3 Q 945.8 737.3, 946.8 737.3 Q 947.2 737.3, 947.6 737.4 L 947.4 738.4 Q 946.9 738.3, 946.6 738.3 Q 946.1 738.3, 945.8 738.5 Q 945.5 738.7, 945.2 739.2 L 945.2 743.6 L 944.1 743.6 L 944.1 737.4 L 945.0 737.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 947.8 740.5 Q 947.8 739.0, 948.5 738.1 Q 949.3 737.3, 950.7 737.3 Q 952.1 737.3, 952.9 738.1 Q 953.6 739.0, 953.6 740.5 Q 953.6 742.0, 952.9 742.8 Q 952.1 743.7, 950.7 743.7 Q 949.3 743.7, 948.5 742.8 Q 947.8 742.0, 947.8 740.5 M 948.9 740.5 Q 948.9 741.6, 949.4 742.2 Q 949.9 742.8, 950.7 742.8 Q 951.6 742.8, 952.0 742.2 Q 952.5 741.6, 952.5 740.5 Q 952.5 739.4, 952.0 738.8 Q 951.6 738.2, 950.7 738.2 Q 949.9 738.2, 949.4 738.8 Q 948.9 739.4, 948.9 740.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 961.3 737.3 Q 962.4 737.3, 962.9 737.9 Q 963.4 738.4, 963.4 739.5 L 963.4 743.6 L 962.3 743.6 L 962.3 739.6 Q 962.3 738.9, 962.0 738.5 Q 961.7 738.2, 961.1 738.2 Q 960.6 738.2, 960.1 738.5 Q 959.7 738.7, 959.4 739.2 Q 959.4 739.3, 959.4 739.5 L 959.4 743.6 L 958.3 743.6 L 958.3 739.6 Q 958.3 738.9, 958.0 738.5 Q 957.7 738.2, 957.1 738.2 Q 956.5 738.2, 956.1 738.5 Q 955.6 738.7, 955.3 739.2 L 955.3 743.6 L 954.2 743.6 L 954.2 737.4 L 955.1 737.4 L 955.2 738.3 Q 956.1 737.3, 957.3 737.3 Q 958.7 737.3, 959.2 738.4 Q 960.0 737.3, 961.3 737.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 964.4 741.9 Q 964.4 740.9, 965.1 740.4 Q 965.9 739.9, 967.4 739.9 L 968.3 739.9 L 968.3 739.6 Q 968.3 738.8, 968.0 738.5 Q 967.7 738.2, 966.9 738.2 Q 966.4 738.2, 966.0 738.3 Q 965.6 738.4, 965.0 738.6 L 964.7 737.9 Q 965.8 737.3, 966.9 737.3 Q 968.2 737.3, 968.8 737.9 Q 969.4 738.4, 969.4 739.6 L 969.4 743.6 L 968.6 743.6 Q 968.5 743.5, 968.5 743.4 Q 968.5 743.2, 968.4 742.9 Q 967.5 743.7, 966.4 743.7 Q 965.5 743.7, 964.9 743.2 Q 964.4 742.7, 964.4 741.9 M 965.5 741.9 Q 965.5 742.4, 965.8 742.6 Q 966.1 742.8, 966.6 742.8 Q 967.1 742.8, 967.5 742.6 Q 968.0 742.4, 968.3 742.0 L 968.3 740.7 L 967.5 740.7 Q 966.5 740.7, 966.0 741.0 Q 965.5 741.3, 965.5 741.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 970.4 738.3 L 970.4 737.4 L 971.5 737.4 L 971.7 735.6 L 972.6 735.6 L 972.6 737.4 L 974.4 737.4 L 974.4 738.3 L 972.6 738.3 L 972.6 741.7 Q 972.6 742.8, 973.5 742.8 Q 973.8 742.8, 974.4 742.6 L 974.5 743.4 Q 973.9 743.7, 973.3 743.7 Q 972.5 743.7, 971.9 743.2 Q 971.4 742.7, 971.4 741.8 L 971.4 738.3 L 970.4 738.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 974.8 735.1 L 975.9 735.1 L 975.9 736.1 L 974.8 736.1 L 974.8 735.1 M 974.8 737.4 L 975.9 737.4 L 975.9 743.6 L 974.8 743.6 L 974.8 737.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 977.0 740.5 Q 977.0 739.0, 977.7 738.2 Q 978.5 737.3, 979.9 737.3 Q 981.3 737.3, 982.1 738.3 L 981.3 738.9 Q 981.0 738.5, 980.7 738.4 Q 980.4 738.2, 979.9 738.2 Q 979.1 738.2, 978.6 738.8 Q 978.1 739.4, 978.1 740.5 Q 978.1 741.6, 978.6 742.2 Q 979.1 742.8, 980.0 742.8 Q 980.5 742.8, 980.9 742.7 Q 981.2 742.6, 981.6 742.4 L 981.9 743.1 Q 981.1 743.7, 979.9 743.7 Q 978.5 743.7, 977.7 742.8 Q 977.0 742.0, 977.0 740.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 988.5 744.2 L 988.5 745.2 L 982.4 745.2 L 982.4 744.2 L 988.5 744.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 988.5 740.2 Q 988.5 738.4, 989.0 737.0 Q 989.5 735.6, 990.4 734.1 L 991.1 734.5 Q 990.3 735.9, 989.9 737.2 Q 989.6 738.5, 989.6 740.2 Q 989.6 741.8, 989.9 743.1 Q 990.3 744.3, 991.1 745.8 L 990.4 746.2 Q 989.5 744.7, 989.0 743.3 Q 988.5 741.9, 988.5 740.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 995.5 739.1 Q 996.3 739.4, 996.7 739.9 Q 997.1 740.4, 997.1 741.3 Q 997.1 742.0, 996.8 742.5 Q 996.4 743.1, 995.7 743.4 Q 995.1 743.7, 994.2 743.7 Q 993.3 743.7, 992.6 743.4 Q 992.0 743.1, 991.4 742.4 L 992.1 741.7 Q 992.6 742.3, 993.1 742.5 Q 993.5 742.7, 994.2 742.7 Q 995.0 742.7, 995.5 742.3 Q 995.9 741.9, 995.9 741.2 Q 995.9 740.4, 995.4 740.0 Q 995.0 739.6, 993.9 739.6 L 993.3 739.6 L 993.3 738.7 L 993.8 738.7 Q 994.8 738.7, 995.3 738.3 Q 995.7 737.9, 995.7 737.2 Q 995.7 736.6, 995.3 736.3 Q 994.9 736.0, 994.2 736.0 Q 993.5 736.0, 993.1 736.2 Q 992.6 736.5, 992.3 737.1 L 991.5 736.6 Q 991.8 735.9, 992.5 735.5 Q 993.2 735.0, 994.2 735.0 Q 995.5 735.0, 996.2 735.6 Q 996.9 736.2, 996.9 737.2 Q 996.9 737.9, 996.6 738.3 Q 996.2 738.8, 995.5 739.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 997.8 742.4 L 999.0 742.4 L 999.0 743.3 L 998.8 745.0 L 998.4 745.0 L 998.4 743.6 L 997.8 743.6 L 997.8 742.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1006.9 743.7 Q 1005.4 743.7, 1004.6 742.5 Q 1003.8 741.4, 1003.8 739.3 Q 1003.8 737.3, 1004.6 736.1 Q 1005.4 735.0, 1006.9 735.0 Q 1008.5 735.0, 1009.3 736.1 Q 1010.0 737.3, 1010.0 739.3 Q 1010.0 741.4, 1009.2 742.5 Q 1008.5 743.7, 1006.9 743.7 M 1006.9 742.7 Q 1007.8 742.7, 1008.3 741.9 Q 1008.8 741.0, 1008.8 739.3 Q 1008.8 737.7, 1008.3 736.8 Q 1007.8 736.0, 1006.9 736.0 Q 1006.0 736.0, 1005.5 736.8 Q 1005.0 737.7, 1005.0 739.3 Q 1005.0 741.0, 1005.5 741.9 Q 1006.0 742.7, 1006.9 742.7 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1013.5 740.2 Q 1013.5 741.9, 1012.9 743.3 Q 1012.5 744.7, 1011.5 746.2 L 1010.8 745.8 Q 1011.6 744.3, 1012.0 743.1 Q 1012.4 741.8, 1012.4 740.2 Q 1012.4 738.5, 1012.0 737.2 Q 1011.6 735.9, 1010.8 734.5 L 1011.5 734.1 Q 1012.5 735.6, 1012.9 737.0 Q 1013.5 738.4, 1013.5 740.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 1073.1,665.8 L 1089.2,656.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 1089.2,656.5 L 1089.2,637.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 1093.0,653.7 L 1093.0,640.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 1089.2,637.9 L 1105.4,628.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 1105.4,628.5 L 1121.5,637.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 1105.9,633.2 L 1117.2,639.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 1121.5,637.9 L 1121.5,656.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 1121.5,656.5 L 1137.7,665.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 1137.7,665.8 L 1153.8,656.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 1153.8,656.5 L 1160.4,660.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 1160.4,660.3 L 1166.9,664.1\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 1152.0,656.5 L 1152.0,648.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 1152.0,648.9 L 1152.0,641.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 1155.7,656.5 L 1155.7,648.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 1155.7,648.9 L 1155.7,641.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-5 atom-10\" d=\"M 1121.5,656.5 L 1105.4,665.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-5 atom-10\" d=\"M 1117.2,654.7 L 1105.9,661.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 1105.4,665.8 L 1105.4,684.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-10 atom-1\" d=\"M 1105.4,665.8 L 1089.2,656.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-8\" d=\"M 1167.6 665.8 Q 1167.6 664.6, 1168.2 663.9 Q 1168.8 663.2, 1170.0 663.2 Q 1171.2 663.2, 1171.8 663.9 Q 1172.4 664.6, 1172.4 665.8 Q 1172.4 667.1, 1171.8 667.9 Q 1171.1 668.6, 1170.0 668.6 Q 1168.8 668.6, 1168.2 667.9 Q 1167.6 667.1, 1167.6 665.8 M 1170.0 668.0 Q 1170.8 668.0, 1171.2 667.4 Q 1171.7 666.9, 1171.7 665.8 Q 1171.7 664.8, 1171.2 664.3 Q 1170.8 663.7, 1170.0 663.7 Q 1169.2 663.7, 1168.7 664.3 Q 1168.3 664.8, 1168.3 665.8 Q 1168.3 666.9, 1168.7 667.4 Q 1169.2 668.0, 1170.0 668.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-8\" d=\"M 1172.8 663.2 L 1173.5 663.2 L 1173.5 665.5 L 1176.2 665.5 L 1176.2 663.2 L 1176.9 663.2 L 1176.9 668.5 L 1176.2 668.5 L 1176.2 666.1 L 1173.5 666.1 L 1173.5 668.5 L 1172.8 668.5 L 1172.8 663.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 1151.4 637.9 Q 1151.4 636.6, 1152.0 635.9 Q 1152.7 635.2, 1153.8 635.2 Q 1155.0 635.2, 1155.6 635.9 Q 1156.3 636.6, 1156.3 637.9 Q 1156.3 639.2, 1155.6 639.9 Q 1155.0 640.6, 1153.8 640.6 Q 1152.7 640.6, 1152.0 639.9 Q 1151.4 639.2, 1151.4 637.9 M 1153.8 640.0 Q 1154.6 640.0, 1155.1 639.5 Q 1155.5 638.9, 1155.5 637.9 Q 1155.5 636.8, 1155.1 636.3 Q 1154.6 635.8, 1153.8 635.8 Q 1153.0 635.8, 1152.6 636.3 Q 1152.2 636.8, 1152.2 637.9 Q 1152.2 638.9, 1152.6 639.5 Q 1153.0 640.0, 1153.8 640.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 1093.5 743.6 L 1092.6 741.1 L 1089.2 741.1 L 1088.4 743.6 L 1087.2 743.6 L 1090.2 735.1 L 1091.6 735.1 L 1094.6 743.6 L 1093.5 743.6 M 1089.6 740.1 L 1092.3 740.1 L 1090.9 736.3 L 1089.6 740.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1095.7 737.4 L 1095.8 738.3 Q 1096.5 737.3, 1097.5 737.3 Q 1097.8 737.3, 1098.3 737.4 L 1098.1 738.4 Q 1097.6 738.3, 1097.3 738.3 Q 1096.8 738.3, 1096.5 738.5 Q 1096.2 738.7, 1095.9 739.2 L 1095.9 743.6 L 1094.8 743.6 L 1094.8 737.4 L 1095.7 737.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1098.5 740.5 Q 1098.5 739.0, 1099.2 738.1 Q 1100.0 737.3, 1101.4 737.3 Q 1102.8 737.3, 1103.6 738.1 Q 1104.3 739.0, 1104.3 740.5 Q 1104.3 742.0, 1103.6 742.8 Q 1102.8 743.7, 1101.4 743.7 Q 1100.0 743.7, 1099.2 742.8 Q 1098.5 742.0, 1098.5 740.5 M 1099.6 740.5 Q 1099.6 741.6, 1100.1 742.2 Q 1100.6 742.8, 1101.4 742.8 Q 1102.3 742.8, 1102.7 742.2 Q 1103.2 741.6, 1103.2 740.5 Q 1103.2 739.4, 1102.7 738.8 Q 1102.3 738.2, 1101.4 738.2 Q 1100.6 738.2, 1100.1 738.8 Q 1099.6 739.4, 1099.6 740.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1112.0 737.3 Q 1113.1 737.3, 1113.6 737.9 Q 1114.1 738.4, 1114.1 739.5 L 1114.1 743.6 L 1113.0 743.6 L 1113.0 739.6 Q 1113.0 738.9, 1112.7 738.5 Q 1112.4 738.2, 1111.8 738.2 Q 1111.3 738.2, 1110.8 738.5 Q 1110.3 738.7, 1110.1 739.2 Q 1110.1 739.3, 1110.1 739.5 L 1110.1 743.6 L 1108.9 743.6 L 1108.9 739.6 Q 1108.9 738.9, 1108.7 738.5 Q 1108.4 738.2, 1107.8 738.2 Q 1107.2 738.2, 1106.8 738.5 Q 1106.3 738.7, 1106.0 739.2 L 1106.0 743.6 L 1104.9 743.6 L 1104.9 737.4 L 1105.8 737.4 L 1105.9 738.3 Q 1106.7 737.3, 1108.0 737.3 Q 1109.4 737.3, 1109.9 738.4 Q 1110.7 737.3, 1112.0 737.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1115.0 741.9 Q 1115.0 740.9, 1115.8 740.4 Q 1116.6 739.9, 1118.1 739.9 L 1119.0 739.9 L 1119.0 739.6 Q 1119.0 738.8, 1118.7 738.5 Q 1118.3 738.2, 1117.6 738.2 Q 1117.1 738.2, 1116.7 738.3 Q 1116.3 738.4, 1115.7 738.6 L 1115.4 737.9 Q 1116.5 737.3, 1117.6 737.3 Q 1118.9 737.3, 1119.5 737.9 Q 1120.1 738.4, 1120.1 739.6 L 1120.1 743.6 L 1119.2 743.6 Q 1119.2 743.5, 1119.2 743.4 Q 1119.2 743.2, 1119.1 742.9 Q 1118.2 743.7, 1117.1 743.7 Q 1116.1 743.7, 1115.6 743.2 Q 1115.0 742.7, 1115.0 741.9 M 1116.2 741.9 Q 1116.2 742.4, 1116.5 742.6 Q 1116.7 742.8, 1117.3 742.8 Q 1117.8 742.8, 1118.2 742.6 Q 1118.7 742.4, 1119.0 742.0 L 1119.0 740.7 L 1118.1 740.7 Q 1117.2 740.7, 1116.7 741.0 Q 1116.2 741.3, 1116.2 741.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1121.0 738.3 L 1121.0 737.4 L 1122.2 737.4 L 1122.4 735.6 L 1123.2 735.6 L 1123.2 737.4 L 1125.1 737.4 L 1125.1 738.3 L 1123.2 738.3 L 1123.2 741.7 Q 1123.2 742.8, 1124.1 742.8 Q 1124.5 742.8, 1125.0 742.6 L 1125.2 743.4 Q 1124.6 743.7, 1123.9 743.7 Q 1123.1 743.7, 1122.6 743.2 Q 1122.1 742.7, 1122.1 741.8 L 1122.1 738.3 L 1121.0 738.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1125.5 735.1 L 1126.6 735.1 L 1126.6 736.1 L 1125.5 736.1 L 1125.5 735.1 M 1125.5 737.4 L 1126.6 737.4 L 1126.6 743.6 L 1125.5 743.6 L 1125.5 737.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1127.7 740.5 Q 1127.7 739.0, 1128.4 738.2 Q 1129.1 737.3, 1130.6 737.3 Q 1132.0 737.3, 1132.8 738.3 L 1132.0 738.9 Q 1131.7 738.5, 1131.4 738.4 Q 1131.0 738.2, 1130.6 738.2 Q 1129.8 738.2, 1129.3 738.8 Q 1128.8 739.4, 1128.8 740.5 Q 1128.8 741.6, 1129.3 742.2 Q 1129.8 742.8, 1130.7 742.8 Q 1131.2 742.8, 1131.5 742.7 Q 1131.9 742.6, 1132.3 742.4 L 1132.6 743.1 Q 1131.7 743.7, 1130.6 743.7 Q 1129.1 743.7, 1128.4 742.8 Q 1127.7 742.0, 1127.7 740.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1139.2 744.2 L 1139.2 745.2 L 1133.0 745.2 L 1133.0 744.2 L 1139.2 744.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1139.2 740.2 Q 1139.2 738.4, 1139.7 737.0 Q 1140.2 735.6, 1141.1 734.1 L 1141.8 734.5 Q 1141.0 735.9, 1140.6 737.2 Q 1140.2 738.5, 1140.2 740.2 Q 1140.2 741.8, 1140.6 743.1 Q 1141.0 744.3, 1141.8 745.8 L 1141.1 746.2 Q 1140.2 744.7, 1139.7 743.3 Q 1139.2 741.9, 1139.2 740.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1146.2 739.1 Q 1147.0 739.4, 1147.4 739.9 Q 1147.8 740.4, 1147.8 741.3 Q 1147.8 742.0, 1147.5 742.5 Q 1147.1 743.1, 1146.4 743.4 Q 1145.8 743.7, 1144.9 743.7 Q 1144.0 743.7, 1143.3 743.4 Q 1142.6 743.1, 1142.1 742.4 L 1142.8 741.7 Q 1143.3 742.3, 1143.8 742.5 Q 1144.2 742.7, 1144.9 742.7 Q 1145.7 742.7, 1146.1 742.3 Q 1146.6 741.9, 1146.6 741.2 Q 1146.6 740.4, 1146.1 740.0 Q 1145.6 739.6, 1144.6 739.6 L 1144.0 739.6 L 1144.0 738.7 L 1144.5 738.7 Q 1145.4 738.7, 1145.9 738.3 Q 1146.4 737.9, 1146.4 737.2 Q 1146.4 736.6, 1146.0 736.3 Q 1145.6 736.0, 1144.9 736.0 Q 1144.2 736.0, 1143.8 736.2 Q 1143.3 736.5, 1143.0 737.1 L 1142.2 736.6 Q 1142.5 735.9, 1143.2 735.5 Q 1143.9 735.0, 1144.9 735.0 Q 1146.2 735.0, 1146.9 735.6 Q 1147.6 736.2, 1147.6 737.2 Q 1147.6 737.9, 1147.3 738.3 Q 1146.9 738.8, 1146.2 739.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1148.5 742.4 L 1149.7 742.4 L 1149.7 743.3 L 1149.5 745.0 L 1149.1 745.0 L 1149.1 743.6 L 1148.5 743.6 L 1148.5 742.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1155.0 742.6 L 1156.8 742.6 L 1156.8 736.3 L 1154.8 736.9 L 1154.5 736.2 L 1157.1 735.0 L 1158.0 735.2 L 1158.0 742.6 L 1159.6 742.6 L 1159.6 743.6 L 1155.0 743.6 L 1155.0 742.6 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1162.8 740.2 Q 1162.8 741.9, 1162.3 743.3 Q 1161.8 744.7, 1160.8 746.2 L 1160.1 745.8 Q 1160.9 744.3, 1161.3 743.1 Q 1161.7 741.8, 1161.7 740.2 Q 1161.7 738.5, 1161.3 737.2 Q 1160.9 735.9, 1160.1 734.5 L 1160.8 734.1 Q 1161.8 735.6, 1162.3 737.0 Q 1162.8 738.4, 1162.8 740.2 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 19.7,833.1 L 35.9,823.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 35.9,823.8 L 52.0,833.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 52.0,833.1 L 68.2,823.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 68.2,823.8 L 73.0,805.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 73.0,805.7 L 91.0,810.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 91.0,810.6 L 86.2,828.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 91.0,810.6 L 107.2,801.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 107.2,801.2 L 113.7,805.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 113.7,805.0 L 120.3,808.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 105.3,801.2 L 105.3,793.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 105.3,793.6 L 105.3,786.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 109.0,801.2 L 109.0,793.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 109.0,793.6 L 109.0,786.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-6 atom-3\" d=\"M 86.2,828.6 L 68.2,823.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-8\" d=\"M 120.9 810.6 Q 120.9 809.3, 121.5 808.6 Q 122.2 807.9, 123.3 807.9 Q 124.5 807.9, 125.1 808.6 Q 125.7 809.3, 125.7 810.6 Q 125.7 811.9, 125.1 812.6 Q 124.5 813.3, 123.3 813.3 Q 122.2 813.3, 121.5 812.6 Q 120.9 811.9, 120.9 810.6 M 123.3 812.7 Q 124.1 812.7, 124.6 812.2 Q 125.0 811.6, 125.0 810.6 Q 125.0 809.5, 124.6 809.0 Q 124.1 808.5, 123.3 808.5 Q 122.5 808.5, 122.1 809.0 Q 121.6 809.5, 121.6 810.6 Q 121.6 811.6, 122.1 812.2 Q 122.5 812.7, 123.3 812.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-8\" d=\"M 126.1 808.0 L 126.8 808.0 L 126.8 810.2 L 129.5 810.2 L 129.5 808.0 L 130.3 808.0 L 130.3 813.2 L 129.5 813.2 L 129.5 810.8 L 126.8 810.8 L 126.8 813.2 L 126.1 813.2 L 126.1 808.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 104.8 782.6 Q 104.8 781.3, 105.4 780.6 Q 106.0 779.9, 107.2 779.9 Q 108.3 779.9, 109.0 780.6 Q 109.6 781.3, 109.6 782.6 Q 109.6 783.9, 109.0 784.6 Q 108.3 785.3, 107.2 785.3 Q 106.0 785.3, 105.4 784.6 Q 104.8 783.9, 104.8 782.6 M 107.2 784.8 Q 108.0 784.8, 108.4 784.2 Q 108.9 783.7, 108.9 782.6 Q 108.9 781.6, 108.4 781.1 Q 108.0 780.5, 107.2 780.5 Q 106.4 780.5, 105.9 781.0 Q 105.5 781.6, 105.5 782.6 Q 105.5 783.7, 105.9 784.2 Q 106.4 784.8, 107.2 784.8 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 28.6 884.8 L 29.8 884.8 L 29.8 888.4 L 34.1 888.4 L 34.1 884.8 L 35.3 884.8 L 35.3 893.3 L 34.1 893.3 L 34.1 889.4 L 29.8 889.4 L 29.8 893.3 L 28.6 893.3 L 28.6 884.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 41.0 887.1 L 42.1 887.1 L 39.0 896.2 L 37.9 896.2 L 38.9 893.3 L 38.5 893.3 L 36.3 887.1 L 37.5 887.1 L 39.3 892.4 L 41.0 887.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 47.9 884.2 L 47.9 893.3 L 46.9 893.3 L 46.8 892.5 Q 46.1 893.4, 45.0 893.4 Q 43.7 893.4, 43.0 892.6 Q 42.3 891.8, 42.3 890.3 Q 42.3 888.8, 43.1 887.9 Q 43.9 887.0, 45.4 887.0 Q 46.1 887.0, 46.7 887.2 L 46.7 884.2 L 47.9 884.2 M 45.0 892.5 Q 45.7 892.5, 46.1 892.2 Q 46.6 891.8, 46.7 891.2 L 46.7 888.1 Q 46.1 887.9, 45.4 887.9 Q 44.5 887.9, 43.9 888.5 Q 43.4 889.2, 43.4 890.3 Q 43.4 891.4, 43.8 891.9 Q 44.3 892.5, 45.0 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 49.7 887.1 L 49.9 888.0 Q 50.5 887.0, 51.6 887.0 Q 51.9 887.0, 52.4 887.1 L 52.2 888.1 Q 51.7 888.0, 51.4 888.0 Q 50.9 888.0, 50.5 888.2 Q 50.2 888.4, 49.9 888.9 L 49.9 893.3 L 48.8 893.3 L 48.8 887.1 L 49.7 887.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 52.5 890.2 Q 52.5 888.7, 53.3 887.9 Q 54.1 887.0, 55.5 887.0 Q 56.9 887.0, 57.6 887.9 Q 58.4 888.7, 58.4 890.2 Q 58.4 891.7, 57.6 892.6 Q 56.9 893.4, 55.5 893.4 Q 54.1 893.4, 53.3 892.6 Q 52.5 891.7, 52.5 890.2 M 53.7 890.2 Q 53.7 891.3, 54.1 891.9 Q 54.6 892.5, 55.5 892.5 Q 56.3 892.5, 56.8 891.9 Q 57.2 891.3, 57.2 890.2 Q 57.2 889.1, 56.8 888.5 Q 56.3 887.9, 55.5 887.9 Q 54.6 887.9, 54.1 888.5 Q 53.7 889.1, 53.7 890.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 61.8 887.0 Q 63.1 887.0, 63.8 887.8 Q 64.5 888.6, 64.5 890.1 Q 64.5 891.7, 63.7 892.5 Q 62.8 893.4, 61.4 893.4 Q 60.7 893.4, 60.1 893.2 L 60.1 896.2 L 58.9 896.2 L 58.9 887.1 L 59.9 887.1 L 60.0 887.9 Q 60.3 887.5, 60.8 887.2 Q 61.3 887.0, 61.8 887.0 M 61.3 892.5 Q 62.3 892.5, 62.8 891.9 Q 63.4 891.2, 63.4 890.1 Q 63.4 889.0, 62.9 888.5 Q 62.5 887.9, 61.7 887.9 Q 61.1 887.9, 60.7 888.2 Q 60.3 888.6, 60.1 889.1 L 60.1 892.3 Q 60.7 892.5, 61.3 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 68.3 887.0 Q 69.3 887.0, 69.8 887.6 Q 70.3 888.1, 70.3 889.2 L 70.3 893.3 L 69.2 893.3 L 69.2 889.3 Q 69.2 888.6, 68.9 888.2 Q 68.6 887.9, 68.0 887.9 Q 67.4 887.9, 67.0 888.2 Q 66.5 888.4, 66.2 888.9 L 66.2 893.3 L 65.1 893.3 L 65.1 884.2 L 66.2 884.2 L 66.2 887.9 Q 67.0 887.0, 68.3 887.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 71.2 890.2 Q 71.2 888.7, 72.0 887.9 Q 72.8 887.0, 74.2 887.0 Q 75.6 887.0, 76.3 887.9 Q 77.1 888.7, 77.1 890.2 Q 77.1 891.7, 76.3 892.6 Q 75.6 893.4, 74.2 893.4 Q 72.8 893.4, 72.0 892.6 Q 71.2 891.7, 71.2 890.2 M 72.4 890.2 Q 72.4 891.3, 72.8 891.9 Q 73.3 892.5, 74.2 892.5 Q 75.0 892.5, 75.5 891.9 Q 75.9 891.3, 75.9 890.2 Q 75.9 889.1, 75.5 888.5 Q 75.0 887.9, 74.2 887.9 Q 73.3 887.9, 72.8 888.5 Q 72.4 889.1, 72.4 890.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 80.5 887.0 Q 81.8 887.0, 82.5 887.8 Q 83.2 888.6, 83.2 890.1 Q 83.2 891.7, 82.4 892.5 Q 81.5 893.4, 80.1 893.4 Q 79.1 893.4, 78.2 893.0 L 77.6 892.9 L 77.6 884.2 L 78.8 884.2 L 78.8 887.8 Q 79.4 887.0, 80.5 887.0 M 80.1 892.5 Q 81.0 892.5, 81.5 891.9 Q 82.1 891.2, 82.1 890.1 Q 82.1 889.0, 81.7 888.5 Q 81.2 887.9, 80.5 887.9 Q 79.8 887.9, 79.4 888.2 Q 78.9 888.6, 78.8 889.2 L 78.8 892.3 Q 79.4 892.5, 80.1 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 83.8 890.2 Q 83.8 888.7, 84.5 887.9 Q 85.3 887.0, 86.7 887.0 Q 88.0 887.0, 88.6 887.8 Q 89.2 888.6, 89.2 890.2 L 89.2 890.4 L 84.9 890.4 Q 85.0 891.4, 85.4 892.0 Q 85.9 892.5, 86.8 892.5 Q 87.3 892.5, 87.7 892.4 Q 88.1 892.3, 88.7 892.0 L 89.0 892.8 Q 88.4 893.1, 87.8 893.3 Q 87.3 893.4, 86.7 893.4 Q 85.3 893.4, 84.6 892.6 Q 83.8 891.7, 83.8 890.2 M 86.7 887.9 Q 86.0 887.9, 85.5 888.3 Q 85.1 888.7, 85.0 889.5 L 88.1 889.5 Q 88.0 888.7, 87.6 888.3 Q 87.3 887.9, 86.7 887.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 95.8 893.9 L 95.8 894.9 L 89.7 894.9 L 89.7 893.9 L 95.8 893.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 95.8 889.9 Q 95.8 888.1, 96.3 886.7 Q 96.8 885.3, 97.8 883.8 L 98.5 884.2 Q 97.7 885.7, 97.3 887.0 Q 96.9 888.2, 96.9 889.9 Q 96.9 891.5, 97.3 892.8 Q 97.7 894.1, 98.5 895.5 L 97.8 896.0 Q 96.8 894.4, 96.3 893.0 Q 95.8 891.6, 95.8 889.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 101.9 893.4 Q 100.3 893.4, 99.5 892.2 Q 98.8 891.1, 98.8 889.0 Q 98.8 887.0, 99.5 885.8 Q 100.3 884.7, 101.9 884.7 Q 103.4 884.7, 104.2 885.8 Q 105.0 887.0, 105.0 889.0 Q 105.0 891.1, 104.2 892.2 Q 103.4 893.4, 101.9 893.4 M 101.9 892.4 Q 102.8 892.4, 103.3 891.6 Q 103.8 890.7, 103.8 889.0 Q 103.8 887.4, 103.3 886.5 Q 102.8 885.7, 101.9 885.7 Q 101.0 885.7, 100.5 886.5 Q 100.0 887.4, 100.0 889.0 Q 100.0 890.7, 100.5 891.6 Q 101.0 892.4, 101.9 892.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 105.8 892.1 L 107.0 892.1 L 107.0 893.1 L 106.7 894.7 L 106.3 894.7 L 106.3 893.3 L 105.8 893.3 L 105.8 892.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 114.8 893.4 Q 113.3 893.4, 112.5 892.2 Q 111.7 891.1, 111.7 889.0 Q 111.7 887.0, 112.5 885.8 Q 113.3 884.7, 114.8 884.7 Q 116.4 884.7, 117.2 885.8 Q 118.0 887.0, 118.0 889.0 Q 118.0 891.1, 117.2 892.2 Q 116.4 893.4, 114.8 893.4 M 114.8 892.4 Q 115.8 892.4, 116.3 891.6 Q 116.8 890.7, 116.8 889.0 Q 116.8 887.4, 116.3 886.5 Q 115.8 885.7, 114.8 885.7 Q 113.9 885.7, 113.4 886.5 Q 112.9 887.4, 112.9 889.0 Q 112.9 890.7, 113.4 891.6 Q 113.9 892.4, 114.8 892.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 121.4 889.9 Q 121.4 891.6, 120.9 893.0 Q 120.4 894.4, 119.4 896.0 L 118.7 895.5 Q 119.5 894.1, 119.9 892.8 Q 120.3 891.5, 120.3 889.9 Q 120.3 888.2, 119.9 887.0 Q 119.5 885.7, 118.7 884.2 L 119.4 883.8 Q 120.4 885.3, 120.9 886.7 Q 121.4 888.1, 121.4 889.9 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 177.8,823.8 L 194.0,833.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 194.0,833.1 L 210.1,823.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 210.1,823.8 L 214.9,805.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 214.9,805.7 L 233.0,810.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 233.0,810.6 L 228.1,828.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-4 atom-6\" d=\"M 233.0,810.6 L 249.1,801.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 249.1,801.2 L 255.7,805.0\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 255.7,805.0 L 262.2,808.8\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 247.2,801.2 L 247.2,793.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 247.2,793.6 L 247.2,786.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 251.0,801.2 L 251.0,793.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-6 atom-8\" d=\"M 251.0,793.6 L 251.0,786.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-5 atom-2\" d=\"M 228.1,828.6 L 210.1,823.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-7\" d=\"M 262.8 810.6 Q 262.8 809.3, 263.5 808.6 Q 264.1 807.9, 265.3 807.9 Q 266.4 807.9, 267.0 808.6 Q 267.7 809.3, 267.7 810.6 Q 267.7 811.9, 267.0 812.6 Q 266.4 813.3, 265.3 813.3 Q 264.1 813.3, 263.5 812.6 Q 262.8 811.9, 262.8 810.6 M 265.3 812.7 Q 266.1 812.7, 266.5 812.2 Q 266.9 811.6, 266.9 810.6 Q 266.9 809.5, 266.5 809.0 Q 266.1 808.5, 265.3 808.5 Q 264.4 808.5, 264.0 809.0 Q 263.6 809.5, 263.6 810.6 Q 263.6 811.6, 264.0 812.2 Q 264.4 812.7, 265.3 812.7 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 268.0 808.0 L 268.8 808.0 L 268.8 810.2 L 271.5 810.2 L 271.5 808.0 L 272.2 808.0 L 272.2 813.2 L 271.5 813.2 L 271.5 810.8 L 268.8 810.8 L 268.8 813.2 L 268.0 813.2 L 268.0 808.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-8\" d=\"M 246.7 782.6 Q 246.7 781.3, 247.3 780.6 Q 247.9 779.9, 249.1 779.9 Q 250.3 779.9, 250.9 780.6 Q 251.5 781.3, 251.5 782.6 Q 251.5 783.9, 250.9 784.6 Q 250.3 785.3, 249.1 785.3 Q 247.9 785.3, 247.3 784.6 Q 246.7 783.9, 246.7 782.6 M 249.1 784.8 Q 249.9 784.8, 250.3 784.2 Q 250.8 783.7, 250.8 782.6 Q 250.8 781.6, 250.3 781.1 Q 249.9 780.5, 249.1 780.5 Q 248.3 780.5, 247.9 781.0 Q 247.4 781.6, 247.4 782.6 Q 247.4 783.7, 247.9 784.2 Q 248.3 784.8, 249.1 784.8 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 179.3 884.8 L 180.5 884.8 L 180.5 888.4 L 184.8 888.4 L 184.8 884.8 L 186.0 884.8 L 186.0 893.3 L 184.8 893.3 L 184.8 889.4 L 180.5 889.4 L 180.5 893.3 L 179.3 893.3 L 179.3 884.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 191.7 887.1 L 192.8 887.1 L 189.6 896.2 L 188.6 896.2 L 189.6 893.3 L 189.2 893.3 L 187.0 887.1 L 188.1 887.1 L 190.0 892.4 L 191.7 887.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 198.5 884.2 L 198.5 893.3 L 197.6 893.3 L 197.5 892.5 Q 196.8 893.4, 195.7 893.4 Q 194.4 893.4, 193.6 892.6 Q 192.9 891.8, 192.9 890.3 Q 192.9 888.8, 193.8 887.9 Q 194.6 887.0, 196.1 887.0 Q 196.7 887.0, 197.4 887.2 L 197.4 884.2 L 198.5 884.2 M 195.7 892.5 Q 196.3 892.5, 196.8 892.2 Q 197.2 891.8, 197.4 891.2 L 197.4 888.1 Q 196.8 887.9, 196.1 887.9 Q 195.2 887.9, 194.6 888.5 Q 194.1 889.2, 194.1 890.3 Q 194.1 891.4, 194.5 891.9 Q 194.9 892.5, 195.7 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 200.4 887.1 L 200.5 888.0 Q 201.2 887.0, 202.3 887.0 Q 202.6 887.0, 203.0 887.1 L 202.9 888.1 Q 202.3 888.0, 202.1 888.0 Q 201.6 888.0, 201.2 888.2 Q 200.9 888.4, 200.6 888.9 L 200.6 893.3 L 199.5 893.3 L 199.5 887.1 L 200.4 887.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 203.2 890.2 Q 203.2 888.7, 204.0 887.9 Q 204.7 887.0, 206.2 887.0 Q 207.6 887.0, 208.3 887.9 Q 209.1 888.7, 209.1 890.2 Q 209.1 891.7, 208.3 892.6 Q 207.6 893.4, 206.2 893.4 Q 204.7 893.4, 204.0 892.6 Q 203.2 891.7, 203.2 890.2 M 204.4 890.2 Q 204.4 891.3, 204.8 891.9 Q 205.3 892.5, 206.2 892.5 Q 207.0 892.5, 207.5 891.9 Q 207.9 891.3, 207.9 890.2 Q 207.9 889.1, 207.5 888.5 Q 207.0 887.9, 206.2 887.9 Q 205.3 887.9, 204.8 888.5 Q 204.4 889.1, 204.4 890.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 212.5 887.0 Q 213.8 887.0, 214.5 887.8 Q 215.2 888.6, 215.2 890.1 Q 215.2 891.7, 214.4 892.5 Q 213.5 893.4, 212.0 893.4 Q 211.3 893.4, 210.8 893.2 L 210.8 896.2 L 209.6 896.2 L 209.6 887.1 L 210.5 887.1 L 210.7 887.9 Q 211.0 887.5, 211.5 887.2 Q 211.9 887.0, 212.5 887.0 M 212.0 892.5 Q 213.0 892.5, 213.5 891.9 Q 214.1 891.2, 214.1 890.1 Q 214.1 889.0, 213.6 888.5 Q 213.2 887.9, 212.4 887.9 Q 211.8 887.9, 211.4 888.2 Q 210.9 888.6, 210.8 889.1 L 210.8 892.3 Q 211.4 892.5, 212.0 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 219.0 887.0 Q 220.0 887.0, 220.5 887.6 Q 221.0 888.1, 221.0 889.2 L 221.0 893.3 L 219.9 893.3 L 219.9 889.3 Q 219.9 888.6, 219.6 888.2 Q 219.3 887.9, 218.7 887.9 Q 218.1 887.9, 217.6 888.2 Q 217.2 888.4, 216.9 888.9 L 216.9 893.3 L 215.8 893.3 L 215.8 884.2 L 216.9 884.2 L 216.9 887.9 Q 217.7 887.0, 219.0 887.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 221.9 890.2 Q 221.9 888.7, 222.7 887.9 Q 223.4 887.0, 224.8 887.0 Q 226.3 887.0, 227.0 887.9 Q 227.8 888.7, 227.8 890.2 Q 227.8 891.7, 227.0 892.6 Q 226.3 893.4, 224.8 893.4 Q 223.4 893.4, 222.7 892.6 Q 221.9 891.7, 221.9 890.2 M 223.1 890.2 Q 223.1 891.3, 223.5 891.9 Q 224.0 892.5, 224.8 892.5 Q 225.7 892.5, 226.2 891.9 Q 226.6 891.3, 226.6 890.2 Q 226.6 889.1, 226.2 888.5 Q 225.7 887.9, 224.8 887.9 Q 224.0 887.9, 223.5 888.5 Q 223.1 889.1, 223.1 890.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 231.2 887.0 Q 232.5 887.0, 233.2 887.8 Q 233.9 888.6, 233.9 890.1 Q 233.9 891.7, 233.1 892.5 Q 232.2 893.4, 230.8 893.4 Q 229.8 893.4, 228.9 893.0 L 228.3 892.9 L 228.3 884.2 L 229.5 884.2 L 229.5 887.8 Q 230.1 887.0, 231.2 887.0 M 230.7 892.5 Q 231.7 892.5, 232.2 891.9 Q 232.8 891.2, 232.8 890.1 Q 232.8 889.0, 232.3 888.5 Q 231.9 887.9, 231.1 887.9 Q 230.5 887.9, 230.1 888.2 Q 229.6 888.6, 229.5 889.2 L 229.5 892.3 Q 230.1 892.5, 230.7 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 234.5 890.2 Q 234.5 888.7, 235.2 887.9 Q 236.0 887.0, 237.4 887.0 Q 238.7 887.0, 239.3 887.8 Q 239.9 888.6, 239.9 890.2 L 239.9 890.4 L 235.6 890.4 Q 235.6 891.4, 236.1 892.0 Q 236.6 892.5, 237.5 892.5 Q 237.9 892.5, 238.4 892.4 Q 238.8 892.3, 239.4 892.0 L 239.7 892.8 Q 239.1 893.1, 238.5 893.3 Q 238.0 893.4, 237.4 893.4 Q 236.0 893.4, 235.2 892.6 Q 234.5 891.7, 234.5 890.2 M 237.4 887.9 Q 236.7 887.9, 236.2 888.3 Q 235.8 888.7, 235.7 889.5 L 238.7 889.5 Q 238.7 888.7, 238.3 888.3 Q 238.0 887.9, 237.4 887.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 246.5 893.9 L 246.5 894.9 L 240.4 894.9 L 240.4 893.9 L 246.5 893.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 246.5 889.9 Q 246.5 888.1, 247.0 886.7 Q 247.5 885.3, 248.5 883.8 L 249.1 884.2 Q 248.4 885.7, 248.0 887.0 Q 247.6 888.2, 247.6 889.9 Q 247.6 891.5, 248.0 892.8 Q 248.4 894.1, 249.1 895.5 L 248.5 896.0 Q 247.5 894.4, 247.0 893.0 Q 246.5 891.6, 246.5 889.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 252.6 893.4 Q 251.0 893.4, 250.2 892.2 Q 249.4 891.1, 249.4 889.0 Q 249.4 887.0, 250.2 885.8 Q 251.0 884.7, 252.6 884.7 Q 254.1 884.7, 254.9 885.8 Q 255.7 887.0, 255.7 889.0 Q 255.7 891.1, 254.9 892.2 Q 254.1 893.4, 252.6 893.4 M 252.6 892.4 Q 253.5 892.4, 254.0 891.6 Q 254.5 890.7, 254.5 889.0 Q 254.5 887.4, 254.0 886.5 Q 253.5 885.7, 252.6 885.7 Q 251.6 885.7, 251.1 886.5 Q 250.6 887.4, 250.6 889.0 Q 250.6 890.7, 251.1 891.6 Q 251.6 892.4, 252.6 892.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 256.4 892.1 L 257.6 892.1 L 257.6 893.1 L 257.4 894.7 L 257.0 894.7 L 257.0 893.3 L 256.4 893.3 L 256.4 892.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 262.9 892.3 L 264.8 892.3 L 264.8 886.0 L 262.7 886.6 L 262.4 885.9 L 265.0 884.8 L 265.9 884.9 L 265.9 892.3 L 267.5 892.3 L 267.5 893.3 L 262.9 893.3 L 262.9 892.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 270.7 889.9 Q 270.7 891.6, 270.2 893.0 Q 269.7 894.4, 268.7 896.0 L 268.1 895.5 Q 268.8 894.1, 269.2 892.8 Q 269.6 891.5, 269.6 889.9 Q 269.6 888.2, 269.2 887.0 Q 268.8 885.7, 268.1 884.2 L 268.7 883.8 Q 269.7 885.3, 270.2 886.7 Q 270.7 888.1, 270.7 889.9 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 327.8,814.4 L 344.0,823.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 344.0,823.8 L 344.0,842.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 344.0,823.8 L 360.1,814.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 360.1,814.4 L 364.9,796.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 364.9,796.4 L 383.0,801.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 383.0,801.2 L 378.1,819.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 383.0,801.2 L 399.1,791.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 399.1,791.9 L 405.7,795.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 405.7,795.7 L 412.2,799.5\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 397.2,791.9 L 397.2,784.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 397.2,784.3 L 397.2,776.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 401.0,791.9 L 401.0,784.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 401.0,784.3 L 401.0,776.6\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-6 atom-3\" d=\"M 378.1,819.3 L 360.1,814.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-8\" d=\"M 412.8 801.3 Q 412.8 800.0, 413.5 799.3 Q 414.1 798.6, 415.3 798.6 Q 416.4 798.6, 417.0 799.3 Q 417.7 800.0, 417.7 801.3 Q 417.7 802.5, 417.0 803.3 Q 416.4 804.0, 415.3 804.0 Q 414.1 804.0, 413.5 803.3 Q 412.8 802.5, 412.8 801.3 M 415.3 803.4 Q 416.1 803.4, 416.5 802.9 Q 416.9 802.3, 416.9 801.3 Q 416.9 800.2, 416.5 799.7 Q 416.1 799.2, 415.3 799.2 Q 414.4 799.2, 414.0 799.7 Q 413.6 800.2, 413.6 801.3 Q 413.6 802.3, 414.0 802.9 Q 414.4 803.4, 415.3 803.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-8\" d=\"M 418.0 798.6 L 418.8 798.6 L 418.8 800.9 L 421.5 800.9 L 421.5 798.6 L 422.2 798.6 L 422.2 803.9 L 421.5 803.9 L 421.5 801.5 L 418.8 801.5 L 418.8 803.9 L 418.0 803.9 L 418.0 798.6 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 396.7 773.3 Q 396.7 772.0, 397.3 771.3 Q 397.9 770.6, 399.1 770.6 Q 400.3 770.6, 400.9 771.3 Q 401.5 772.0, 401.5 773.3 Q 401.5 774.6, 400.9 775.3 Q 400.3 776.0, 399.1 776.0 Q 397.9 776.0, 397.3 775.3 Q 396.7 774.6, 396.7 773.3 M 399.1 775.4 Q 399.9 775.4, 400.3 774.9 Q 400.8 774.3, 400.8 773.3 Q 400.8 772.3, 400.3 771.7 Q 399.9 771.2, 399.1 771.2 Q 398.3 771.2, 397.9 771.7 Q 397.4 772.2, 397.4 773.3 Q 397.4 774.4, 397.9 774.9 Q 398.3 775.4, 399.1 775.4 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 329.3 884.8 L 330.5 884.8 L 330.5 888.4 L 334.8 888.4 L 334.8 884.8 L 336.0 884.8 L 336.0 893.3 L 334.8 893.3 L 334.8 889.4 L 330.5 889.4 L 330.5 893.3 L 329.3 893.3 L 329.3 884.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 341.7 887.1 L 342.8 887.1 L 339.6 896.2 L 338.6 896.2 L 339.6 893.3 L 339.2 893.3 L 337.0 887.1 L 338.1 887.1 L 340.0 892.4 L 341.7 887.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 348.5 884.2 L 348.5 893.3 L 347.6 893.3 L 347.5 892.5 Q 346.8 893.4, 345.7 893.4 Q 344.4 893.4, 343.6 892.6 Q 342.9 891.8, 342.9 890.3 Q 342.9 888.8, 343.8 887.9 Q 344.6 887.0, 346.1 887.0 Q 346.7 887.0, 347.4 887.2 L 347.4 884.2 L 348.5 884.2 M 345.7 892.5 Q 346.3 892.5, 346.8 892.2 Q 347.2 891.8, 347.4 891.2 L 347.4 888.1 Q 346.8 887.9, 346.1 887.9 Q 345.2 887.9, 344.6 888.5 Q 344.1 889.2, 344.1 890.3 Q 344.1 891.4, 344.5 891.9 Q 344.9 892.5, 345.7 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 350.4 887.1 L 350.5 888.0 Q 351.2 887.0, 352.3 887.0 Q 352.6 887.0, 353.0 887.1 L 352.9 888.1 Q 352.3 888.0, 352.1 888.0 Q 351.6 888.0, 351.2 888.2 Q 350.9 888.4, 350.6 888.9 L 350.6 893.3 L 349.5 893.3 L 349.5 887.1 L 350.4 887.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 353.2 890.2 Q 353.2 888.7, 354.0 887.9 Q 354.7 887.0, 356.2 887.0 Q 357.6 887.0, 358.3 887.9 Q 359.1 888.7, 359.1 890.2 Q 359.1 891.7, 358.3 892.6 Q 357.6 893.4, 356.2 893.4 Q 354.7 893.4, 354.0 892.6 Q 353.2 891.7, 353.2 890.2 M 354.4 890.2 Q 354.4 891.3, 354.8 891.9 Q 355.3 892.5, 356.2 892.5 Q 357.0 892.5, 357.5 891.9 Q 357.9 891.3, 357.9 890.2 Q 357.9 889.1, 357.5 888.5 Q 357.0 887.9, 356.2 887.9 Q 355.3 887.9, 354.8 888.5 Q 354.4 889.1, 354.4 890.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 362.5 887.0 Q 363.8 887.0, 364.5 887.8 Q 365.2 888.6, 365.2 890.1 Q 365.2 891.7, 364.4 892.5 Q 363.5 893.4, 362.0 893.4 Q 361.3 893.4, 360.8 893.2 L 360.8 896.2 L 359.6 896.2 L 359.6 887.1 L 360.5 887.1 L 360.7 887.9 Q 361.0 887.5, 361.5 887.2 Q 361.9 887.0, 362.5 887.0 M 362.0 892.5 Q 363.0 892.5, 363.5 891.9 Q 364.1 891.2, 364.1 890.1 Q 364.1 889.0, 363.6 888.5 Q 363.2 887.9, 362.4 887.9 Q 361.8 887.9, 361.4 888.2 Q 360.9 888.6, 360.8 889.1 L 360.8 892.3 Q 361.4 892.5, 362.0 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 369.0 887.0 Q 370.0 887.0, 370.5 887.6 Q 371.0 888.1, 371.0 889.2 L 371.0 893.3 L 369.9 893.3 L 369.9 889.3 Q 369.9 888.6, 369.6 888.2 Q 369.3 887.9, 368.7 887.9 Q 368.1 887.9, 367.6 888.2 Q 367.2 888.4, 366.9 888.9 L 366.9 893.3 L 365.8 893.3 L 365.8 884.2 L 366.9 884.2 L 366.9 887.9 Q 367.7 887.0, 369.0 887.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 371.9 890.2 Q 371.9 888.7, 372.7 887.9 Q 373.4 887.0, 374.8 887.0 Q 376.3 887.0, 377.0 887.9 Q 377.8 888.7, 377.8 890.2 Q 377.8 891.7, 377.0 892.6 Q 376.3 893.4, 374.8 893.4 Q 373.4 893.4, 372.7 892.6 Q 371.9 891.7, 371.9 890.2 M 373.1 890.2 Q 373.1 891.3, 373.5 891.9 Q 374.0 892.5, 374.8 892.5 Q 375.7 892.5, 376.2 891.9 Q 376.6 891.3, 376.6 890.2 Q 376.6 889.1, 376.2 888.5 Q 375.7 887.9, 374.8 887.9 Q 374.0 887.9, 373.5 888.5 Q 373.1 889.1, 373.1 890.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 381.2 887.0 Q 382.5 887.0, 383.2 887.8 Q 383.9 888.6, 383.9 890.1 Q 383.9 891.7, 383.1 892.5 Q 382.2 893.4, 380.8 893.4 Q 379.8 893.4, 378.9 893.0 L 378.3 892.9 L 378.3 884.2 L 379.5 884.2 L 379.5 887.8 Q 380.1 887.0, 381.2 887.0 M 380.7 892.5 Q 381.7 892.5, 382.2 891.9 Q 382.8 891.2, 382.8 890.1 Q 382.8 889.0, 382.3 888.5 Q 381.9 887.9, 381.1 887.9 Q 380.5 887.9, 380.1 888.2 Q 379.6 888.6, 379.5 889.2 L 379.5 892.3 Q 380.1 892.5, 380.7 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 384.5 890.2 Q 384.5 888.7, 385.2 887.9 Q 386.0 887.0, 387.4 887.0 Q 388.7 887.0, 389.3 887.8 Q 389.9 888.6, 389.9 890.2 L 389.9 890.4 L 385.6 890.4 Q 385.6 891.4, 386.1 892.0 Q 386.6 892.5, 387.5 892.5 Q 387.9 892.5, 388.4 892.4 Q 388.8 892.3, 389.4 892.0 L 389.7 892.8 Q 389.1 893.1, 388.5 893.3 Q 388.0 893.4, 387.4 893.4 Q 386.0 893.4, 385.2 892.6 Q 384.5 891.7, 384.5 890.2 M 387.4 887.9 Q 386.7 887.9, 386.2 888.3 Q 385.8 888.7, 385.7 889.5 L 388.7 889.5 Q 388.7 888.7, 388.3 888.3 Q 388.0 887.9, 387.4 887.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 396.5 893.9 L 396.5 894.9 L 390.4 894.9 L 390.4 893.9 L 396.5 893.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 396.5 889.9 Q 396.5 888.1, 397.0 886.7 Q 397.5 885.3, 398.5 883.8 L 399.1 884.2 Q 398.4 885.7, 398.0 887.0 Q 397.6 888.2, 397.6 889.9 Q 397.6 891.5, 398.0 892.8 Q 398.4 894.1, 399.1 895.5 L 398.5 896.0 Q 397.5 894.4, 397.0 893.0 Q 396.5 891.6, 396.5 889.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 399.9 892.3 L 401.8 892.3 L 401.8 886.0 L 399.7 886.6 L 399.4 885.9 L 402.1 884.8 L 402.9 884.9 L 402.9 892.3 L 404.6 892.3 L 404.6 893.3 L 399.9 893.3 L 399.9 892.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 405.1 892.1 L 406.3 892.1 L 406.3 893.1 L 406.0 894.7 L 405.6 894.7 L 405.6 893.3 L 405.1 893.3 L 405.1 892.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 414.2 893.4 Q 412.6 893.4, 411.8 892.2 Q 411.1 891.1, 411.1 889.0 Q 411.1 887.0, 411.8 885.8 Q 412.6 884.7, 414.2 884.7 Q 415.7 884.7, 416.5 885.8 Q 417.3 887.0, 417.3 889.0 Q 417.3 891.1, 416.5 892.2 Q 415.7 893.4, 414.2 893.4 M 414.2 892.4 Q 415.1 892.4, 415.6 891.6 Q 416.1 890.7, 416.1 889.0 Q 416.1 887.4, 415.6 886.5 Q 415.1 885.7, 414.2 885.7 Q 413.3 885.7, 412.7 886.5 Q 412.3 887.4, 412.3 889.0 Q 412.3 890.7, 412.7 891.6 Q 413.3 892.4, 414.2 892.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 420.7 889.9 Q 420.7 891.6, 420.2 893.0 Q 419.7 894.4, 418.7 896.0 L 418.1 895.5 Q 418.8 894.1, 419.2 892.8 Q 419.6 891.5, 419.6 889.9 Q 419.6 888.2, 419.2 887.0 Q 418.8 885.7, 418.1 884.2 L 418.7 883.8 Q 419.7 885.3, 420.2 886.7 Q 420.7 888.1, 420.7 889.9 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 487.3,820.1 L 504.8,813.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 504.8,813.7 L 501.6,795.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 504.8,813.7 L 514.1,829.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 514.1,829.9 L 523.5,813.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 523.5,813.7 L 538.7,802.8 L 540.6,806.0 Z\" style=\"fill:#000000;fill-rule:evenodd;fill-opacity:1;stroke:#000000;stroke-width:1.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 539.6,804.4 L 546.2,808.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 546.2,808.2 L 552.7,812.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 537.8,804.4 L 537.8,796.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 537.8,796.8 L 537.8,789.1\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 541.5,804.4 L 541.5,796.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 541.5,796.8 L 541.5,789.1\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-4 atom-1\" d=\"M 523.5,813.7 L 504.8,813.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-6\" d=\"M 553.3 813.8 Q 553.3 812.5, 554.0 811.8 Q 554.6 811.1, 555.8 811.1 Q 556.9 811.1, 557.6 811.8 Q 558.2 812.5, 558.2 813.8 Q 558.2 815.0, 557.6 815.8 Q 556.9 816.5, 555.8 816.5 Q 554.6 816.5, 554.0 815.8 Q 553.3 815.1, 553.3 813.8 M 555.8 815.9 Q 556.6 815.9, 557.0 815.4 Q 557.4 814.8, 557.4 813.8 Q 557.4 812.7, 557.0 812.2 Q 556.6 811.7, 555.8 811.7 Q 555.0 811.7, 554.5 812.2 Q 554.1 812.7, 554.1 813.8 Q 554.1 814.8, 554.5 815.4 Q 555.0 815.9, 555.8 815.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-6\" d=\"M 558.6 811.1 L 559.3 811.1 L 559.3 813.4 L 562.0 813.4 L 562.0 811.1 L 562.7 811.1 L 562.7 816.4 L 562.0 816.4 L 562.0 814.0 L 559.3 814.0 L 559.3 816.4 L 558.6 816.4 L 558.6 811.1 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 537.2 785.8 Q 537.2 784.5, 537.8 783.8 Q 538.4 783.1, 539.6 783.1 Q 540.8 783.1, 541.4 783.8 Q 542.0 784.5, 542.0 785.8 Q 542.0 787.1, 541.4 787.8 Q 540.8 788.5, 539.6 788.5 Q 538.5 788.5, 537.8 787.8 Q 537.2 787.1, 537.2 785.8 M 539.6 787.9 Q 540.4 787.9, 540.9 787.4 Q 541.3 786.9, 541.3 785.8 Q 541.3 784.8, 540.9 784.2 Q 540.4 783.7, 539.6 783.7 Q 538.8 783.7, 538.4 784.2 Q 537.9 784.7, 537.9 785.8 Q 537.9 786.9, 538.4 787.4 Q 538.8 787.9, 539.6 787.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 480.0 884.8 L 481.1 884.8 L 481.1 888.4 L 485.5 888.4 L 485.5 884.8 L 486.6 884.8 L 486.6 893.3 L 485.5 893.3 L 485.5 889.4 L 481.1 889.4 L 481.1 893.3 L 480.0 893.3 L 480.0 884.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 492.4 887.1 L 493.5 887.1 L 490.3 896.2 L 489.3 896.2 L 490.3 893.3 L 489.8 893.3 L 487.7 887.1 L 488.8 887.1 L 490.6 892.4 L 492.4 887.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 499.2 884.2 L 499.2 893.3 L 498.3 893.3 L 498.2 892.5 Q 497.5 893.4, 496.3 893.4 Q 495.1 893.4, 494.3 892.6 Q 493.6 891.8, 493.6 890.3 Q 493.6 888.8, 494.5 887.9 Q 495.3 887.0, 496.8 887.0 Q 497.4 887.0, 498.1 887.2 L 498.1 884.2 L 499.2 884.2 M 496.4 892.5 Q 497.0 892.5, 497.5 892.2 Q 497.9 891.8, 498.1 891.2 L 498.1 888.1 Q 497.5 887.9, 496.8 887.9 Q 495.9 887.9, 495.3 888.5 Q 494.8 889.2, 494.8 890.3 Q 494.8 891.4, 495.2 891.9 Q 495.6 892.5, 496.4 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 501.1 887.1 L 501.2 888.0 Q 501.9 887.0, 502.9 887.0 Q 503.3 887.0, 503.7 887.1 L 503.5 888.1 Q 503.0 888.0, 502.7 888.0 Q 502.2 888.0, 501.9 888.2 Q 501.6 888.4, 501.3 888.9 L 501.3 893.3 L 500.2 893.3 L 500.2 887.1 L 501.1 887.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 503.9 890.2 Q 503.9 888.7, 504.7 887.9 Q 505.4 887.0, 506.8 887.0 Q 508.2 887.0, 509.0 887.9 Q 509.8 888.7, 509.8 890.2 Q 509.8 891.7, 509.0 892.6 Q 508.2 893.4, 506.8 893.4 Q 505.4 893.4, 504.7 892.6 Q 503.9 891.7, 503.9 890.2 M 505.1 890.2 Q 505.1 891.3, 505.5 891.9 Q 506.0 892.5, 506.8 892.5 Q 507.7 892.5, 508.1 891.9 Q 508.6 891.3, 508.6 890.2 Q 508.6 889.1, 508.1 888.5 Q 507.7 887.9, 506.8 887.9 Q 506.0 887.9, 505.5 888.5 Q 505.1 889.1, 505.1 890.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 513.2 887.0 Q 514.5 887.0, 515.2 887.8 Q 515.9 888.6, 515.9 890.1 Q 515.9 891.7, 515.0 892.5 Q 514.2 893.4, 512.7 893.4 Q 512.0 893.4, 511.4 893.2 L 511.4 896.2 L 510.3 896.2 L 510.3 887.1 L 511.2 887.1 L 511.4 887.9 Q 511.7 887.5, 512.2 887.2 Q 512.6 887.0, 513.2 887.0 M 512.7 892.5 Q 513.7 892.5, 514.2 891.9 Q 514.7 891.2, 514.7 890.1 Q 514.7 889.0, 514.3 888.5 Q 513.9 887.9, 513.1 887.9 Q 512.5 887.9, 512.1 888.2 Q 511.6 888.6, 511.4 889.1 L 511.4 892.3 Q 512.1 892.5, 512.7 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 519.7 887.0 Q 520.6 887.0, 521.2 887.6 Q 521.7 888.1, 521.7 889.2 L 521.7 893.3 L 520.6 893.3 L 520.6 889.3 Q 520.6 888.6, 520.3 888.2 Q 520.0 887.9, 519.4 887.9 Q 518.8 887.9, 518.3 888.2 Q 517.9 888.4, 517.6 888.9 L 517.6 893.3 L 516.4 893.3 L 516.4 884.2 L 517.6 884.2 L 517.6 887.9 Q 518.4 887.0, 519.7 887.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 522.6 890.2 Q 522.6 888.7, 523.4 887.9 Q 524.1 887.0, 525.5 887.0 Q 526.9 887.0, 527.7 887.9 Q 528.5 888.7, 528.5 890.2 Q 528.5 891.7, 527.7 892.6 Q 526.9 893.4, 525.5 893.4 Q 524.1 893.4, 523.4 892.6 Q 522.6 891.7, 522.6 890.2 M 523.8 890.2 Q 523.8 891.3, 524.2 891.9 Q 524.7 892.5, 525.5 892.5 Q 526.4 892.5, 526.8 891.9 Q 527.3 891.3, 527.3 890.2 Q 527.3 889.1, 526.8 888.5 Q 526.4 887.9, 525.5 887.9 Q 524.7 887.9, 524.2 888.5 Q 523.8 889.1, 523.8 890.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 531.9 887.0 Q 533.2 887.0, 533.9 887.8 Q 534.6 888.6, 534.6 890.1 Q 534.6 891.7, 533.8 892.5 Q 532.9 893.4, 531.4 893.4 Q 530.5 893.4, 529.6 893.0 L 529.0 892.9 L 529.0 884.2 L 530.1 884.2 L 530.1 887.8 Q 530.8 887.0, 531.9 887.0 M 531.4 892.5 Q 532.4 892.5, 532.9 891.9 Q 533.5 891.2, 533.5 890.1 Q 533.5 889.0, 533.0 888.5 Q 532.6 887.9, 531.8 887.9 Q 531.2 887.9, 530.8 888.2 Q 530.3 888.6, 530.1 889.2 L 530.1 892.3 Q 530.8 892.5, 531.4 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 535.2 890.2 Q 535.2 888.7, 535.9 887.9 Q 536.7 887.0, 538.0 887.0 Q 539.4 887.0, 540.0 887.8 Q 540.6 888.6, 540.6 890.2 L 540.6 890.4 L 536.3 890.4 Q 536.3 891.4, 536.8 892.0 Q 537.3 892.5, 538.1 892.5 Q 538.6 892.5, 539.1 892.4 Q 539.5 892.3, 540.1 892.0 L 540.4 892.8 Q 539.8 893.1, 539.2 893.3 Q 538.7 893.4, 538.1 893.4 Q 536.7 893.4, 535.9 892.6 Q 535.2 891.7, 535.2 890.2 M 538.0 887.9 Q 537.3 887.9, 536.9 888.3 Q 536.5 888.7, 536.4 889.5 L 539.4 889.5 Q 539.3 888.7, 539.0 888.3 Q 538.7 887.9, 538.0 887.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 547.2 893.9 L 547.2 894.9 L 541.1 894.9 L 541.1 893.9 L 547.2 893.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 547.2 889.9 Q 547.2 888.1, 547.7 886.7 Q 548.2 885.3, 549.2 883.8 L 549.8 884.2 Q 549.1 885.7, 548.7 887.0 Q 548.3 888.2, 548.3 889.9 Q 548.3 891.5, 548.7 892.8 Q 549.1 894.1, 549.8 895.5 L 549.2 896.0 Q 548.2 894.4, 547.7 893.0 Q 547.2 891.6, 547.2 889.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 550.6 892.3 L 552.5 892.3 L 552.5 886.0 L 550.4 886.6 L 550.1 885.9 L 552.7 884.8 L 553.6 884.9 L 553.6 892.3 L 555.3 892.3 L 555.3 893.3 L 550.6 893.3 L 550.6 892.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 555.8 892.1 L 557.0 892.1 L 557.0 893.1 L 556.7 894.7 L 556.3 894.7 L 556.3 893.3 L 555.8 893.3 L 555.8 892.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 562.2 892.3 L 564.1 892.3 L 564.1 886.0 L 562.0 886.6 L 561.7 885.9 L 564.3 884.8 L 565.2 884.9 L 565.2 892.3 L 566.9 892.3 L 566.9 893.3 L 562.2 893.3 L 562.2 892.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 570.0 889.9 Q 570.0 891.6, 569.5 893.0 Q 569.0 894.4, 568.0 896.0 L 567.4 895.5 Q 568.1 894.1, 568.5 892.8 Q 568.9 891.5, 568.9 889.9 Q 568.9 888.2, 568.5 887.0 Q 568.1 885.7, 567.4 884.2 L 568.0 883.8 Q 569.0 885.3, 569.5 886.7 Q 570.0 888.1, 570.0 889.9 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 622.0,803.1 L 640.3,799.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 640.3,799.9 L 634.0,782.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 640.3,799.9 L 656.5,790.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 656.5,790.6 L 672.6,799.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 672.6,799.9 L 672.6,818.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 672.6,818.5 L 688.8,827.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 688.8,827.9 L 704.9,818.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 704.9,818.5 L 711.5,822.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 711.5,822.3 L 718.0,826.1\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 703.1,818.5 L 703.1,810.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 703.1,810.9 L 703.1,803.3\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 706.8,818.5 L 706.8,810.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 706.8,810.9 L 706.8,803.3\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-5 atom-10\" d=\"M 672.6,818.5 L 656.5,827.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-10 atom-11\" d=\"M 656.5,827.9 L 640.3,818.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-11 atom-1\" d=\"M 640.3,818.5 L 640.3,799.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-8\" d=\"M 718.7 827.9 Q 718.7 826.6, 719.3 825.9 Q 719.9 825.2, 721.1 825.2 Q 722.3 825.2, 722.9 825.9 Q 723.5 826.6, 723.5 827.9 Q 723.5 829.2, 722.9 829.9 Q 722.2 830.6, 721.1 830.6 Q 719.9 830.6, 719.3 829.9 Q 718.7 829.2, 718.7 827.9 M 721.1 830.0 Q 721.9 830.0, 722.3 829.5 Q 722.8 828.9, 722.8 827.9 Q 722.8 826.8, 722.3 826.3 Q 721.9 825.8, 721.1 825.8 Q 720.3 825.8, 719.8 826.3 Q 719.4 826.8, 719.4 827.9 Q 719.4 829.0, 719.8 829.5 Q 720.3 830.0, 721.1 830.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-8\" d=\"M 723.9 825.3 L 724.6 825.3 L 724.6 827.5 L 727.3 827.5 L 727.3 825.3 L 728.0 825.3 L 728.0 830.5 L 727.3 830.5 L 727.3 828.1 L 724.6 828.1 L 724.6 830.5 L 723.9 830.5 L 723.9 825.3 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 702.5 799.9 Q 702.5 798.6, 703.1 797.9 Q 703.8 797.2, 704.9 797.2 Q 706.1 797.2, 706.7 797.9 Q 707.4 798.6, 707.4 799.9 Q 707.4 801.2, 706.7 801.9 Q 706.1 802.7, 704.9 802.7 Q 703.8 802.7, 703.1 801.9 Q 702.5 801.2, 702.5 799.9 M 704.9 802.1 Q 705.7 802.1, 706.2 801.5 Q 706.6 801.0, 706.6 799.9 Q 706.6 798.9, 706.2 798.4 Q 705.7 797.8, 704.9 797.8 Q 704.1 797.8, 703.7 798.3 Q 703.3 798.9, 703.3 799.9 Q 703.3 801.0, 703.7 801.5 Q 704.1 802.1, 704.9 802.1 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 628.9 884.8 L 630.1 884.8 L 630.1 888.4 L 634.4 888.4 L 634.4 884.8 L 635.5 884.8 L 635.5 893.3 L 634.4 893.3 L 634.4 889.4 L 630.1 889.4 L 630.1 893.3 L 628.9 893.3 L 628.9 884.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 641.3 887.1 L 642.4 887.1 L 639.2 896.2 L 638.2 896.2 L 639.2 893.3 L 638.8 893.3 L 636.6 887.1 L 637.7 887.1 L 639.5 892.4 L 641.3 887.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 648.1 884.2 L 648.1 893.3 L 647.2 893.3 L 647.1 892.5 Q 646.4 893.4, 645.2 893.4 Q 644.0 893.4, 643.2 892.6 Q 642.5 891.8, 642.5 890.3 Q 642.5 888.8, 643.4 887.9 Q 644.2 887.0, 645.7 887.0 Q 646.3 887.0, 647.0 887.2 L 647.0 884.2 L 648.1 884.2 M 645.3 892.5 Q 645.9 892.5, 646.4 892.2 Q 646.8 891.8, 647.0 891.2 L 647.0 888.1 Q 646.4 887.9, 645.7 887.9 Q 644.8 887.9, 644.2 888.5 Q 643.7 889.2, 643.7 890.3 Q 643.7 891.4, 644.1 891.9 Q 644.5 892.5, 645.3 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 650.0 887.1 L 650.1 888.0 Q 650.8 887.0, 651.8 887.0 Q 652.2 887.0, 652.6 887.1 L 652.5 888.1 Q 651.9 888.0, 651.7 888.0 Q 651.1 888.0, 650.8 888.2 Q 650.5 888.4, 650.2 888.9 L 650.2 893.3 L 649.1 893.3 L 649.1 887.1 L 650.0 887.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 652.8 890.2 Q 652.8 888.7, 653.6 887.9 Q 654.3 887.0, 655.7 887.0 Q 657.1 887.0, 657.9 887.9 Q 658.7 888.7, 658.7 890.2 Q 658.7 891.7, 657.9 892.6 Q 657.1 893.4, 655.7 893.4 Q 654.3 893.4, 653.6 892.6 Q 652.8 891.7, 652.8 890.2 M 654.0 890.2 Q 654.0 891.3, 654.4 891.9 Q 654.9 892.5, 655.7 892.5 Q 656.6 892.5, 657.1 891.9 Q 657.5 891.3, 657.5 890.2 Q 657.5 889.1, 657.1 888.5 Q 656.6 887.9, 655.7 887.9 Q 654.9 887.9, 654.4 888.5 Q 654.0 889.1, 654.0 890.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 662.1 887.0 Q 663.4 887.0, 664.1 887.8 Q 664.8 888.6, 664.8 890.1 Q 664.8 891.7, 664.0 892.5 Q 663.1 893.4, 661.6 893.4 Q 660.9 893.4, 660.4 893.2 L 660.4 896.2 L 659.2 896.2 L 659.2 887.1 L 660.1 887.1 L 660.3 887.9 Q 660.6 887.5, 661.1 887.2 Q 661.5 887.0, 662.1 887.0 M 661.6 892.5 Q 662.6 892.5, 663.1 891.9 Q 663.7 891.2, 663.7 890.1 Q 663.7 889.0, 663.2 888.5 Q 662.8 887.9, 662.0 887.9 Q 661.4 887.9, 661.0 888.2 Q 660.5 888.6, 660.4 889.1 L 660.4 892.3 Q 661.0 892.5, 661.6 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 668.6 887.0 Q 669.5 887.0, 670.1 887.6 Q 670.6 888.1, 670.6 889.2 L 670.6 893.3 L 669.5 893.3 L 669.5 889.3 Q 669.5 888.6, 669.2 888.2 Q 668.9 887.9, 668.3 887.9 Q 667.7 887.9, 667.2 888.2 Q 666.8 888.4, 666.5 888.9 L 666.5 893.3 L 665.3 893.3 L 665.3 884.2 L 666.5 884.2 L 666.5 887.9 Q 667.3 887.0, 668.6 887.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 671.5 890.2 Q 671.5 888.7, 672.3 887.9 Q 673.0 887.0, 674.4 887.0 Q 675.8 887.0, 676.6 887.9 Q 677.4 888.7, 677.4 890.2 Q 677.4 891.7, 676.6 892.6 Q 675.8 893.4, 674.4 893.4 Q 673.0 893.4, 672.3 892.6 Q 671.5 891.7, 671.5 890.2 M 672.7 890.2 Q 672.7 891.3, 673.1 891.9 Q 673.6 892.5, 674.4 892.5 Q 675.3 892.5, 675.7 891.9 Q 676.2 891.3, 676.2 890.2 Q 676.2 889.1, 675.7 888.5 Q 675.3 887.9, 674.4 887.9 Q 673.6 887.9, 673.1 888.5 Q 672.7 889.1, 672.7 890.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 680.8 887.0 Q 682.1 887.0, 682.8 887.8 Q 683.5 888.6, 683.5 890.1 Q 683.5 891.7, 682.7 892.5 Q 681.8 893.4, 680.3 893.4 Q 679.4 893.4, 678.5 893.0 L 677.9 892.9 L 677.9 884.2 L 679.0 884.2 L 679.0 887.8 Q 679.7 887.0, 680.8 887.0 M 680.3 892.5 Q 681.3 892.5, 681.8 891.9 Q 682.4 891.2, 682.4 890.1 Q 682.4 889.0, 681.9 888.5 Q 681.5 887.9, 680.7 887.9 Q 680.1 887.9, 679.7 888.2 Q 679.2 888.6, 679.0 889.2 L 679.0 892.3 Q 679.7 892.5, 680.3 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 684.1 890.2 Q 684.1 888.7, 684.8 887.9 Q 685.6 887.0, 687.0 887.0 Q 688.3 887.0, 688.9 887.8 Q 689.5 888.6, 689.5 890.2 L 689.5 890.4 L 685.2 890.4 Q 685.2 891.4, 685.7 892.0 Q 686.2 892.5, 687.1 892.5 Q 687.5 892.5, 688.0 892.4 Q 688.4 892.3, 689.0 892.0 L 689.3 892.8 Q 688.7 893.1, 688.1 893.3 Q 687.6 893.4, 687.0 893.4 Q 685.6 893.4, 684.8 892.6 Q 684.1 891.7, 684.1 890.2 M 687.0 887.9 Q 686.2 887.9, 685.8 888.3 Q 685.4 888.7, 685.3 889.5 L 688.3 889.5 Q 688.3 888.7, 687.9 888.3 Q 687.6 887.9, 687.0 887.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 696.1 893.9 L 696.1 894.9 L 690.0 894.9 L 690.0 893.9 L 696.1 893.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 696.1 889.9 Q 696.1 888.1, 696.6 886.7 Q 697.1 885.3, 698.1 883.8 L 698.7 884.2 Q 698.0 885.7, 697.6 887.0 Q 697.2 888.2, 697.2 889.9 Q 697.2 891.5, 697.6 892.8 Q 698.0 894.1, 698.7 895.5 L 698.1 896.0 Q 697.1 894.4, 696.6 893.0 Q 696.1 891.6, 696.1 889.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 699.1 886.4 Q 699.4 885.6, 700.1 885.2 Q 700.9 884.7, 701.9 884.7 Q 703.2 884.7, 703.9 885.4 Q 704.6 886.1, 704.6 887.3 Q 704.6 888.6, 703.7 889.8 Q 702.8 890.9, 700.8 892.3 L 704.8 892.3 L 704.8 893.3 L 699.0 893.3 L 699.0 892.5 Q 700.6 891.4, 701.6 890.5 Q 702.5 889.7, 703.0 888.9 Q 703.4 888.2, 703.4 887.4 Q 703.4 886.6, 703.0 886.1 Q 702.6 885.7, 701.9 885.7 Q 701.2 885.7, 700.8 885.9 Q 700.3 886.2, 700.0 886.8 L 699.1 886.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 705.5 892.1 L 706.7 892.1 L 706.7 893.1 L 706.5 894.7 L 706.0 894.7 L 706.0 893.3 L 705.5 893.3 L 705.5 892.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 714.6 893.4 Q 713.0 893.4, 712.2 892.2 Q 711.5 891.1, 711.5 889.0 Q 711.5 887.0, 712.2 885.8 Q 713.0 884.7, 714.6 884.7 Q 716.1 884.7, 716.9 885.8 Q 717.7 887.0, 717.7 889.0 Q 717.7 891.1, 716.9 892.2 Q 716.1 893.4, 714.6 893.4 M 714.6 892.4 Q 715.5 892.4, 716.0 891.6 Q 716.5 890.7, 716.5 889.0 Q 716.5 887.4, 716.0 886.5 Q 715.5 885.7, 714.6 885.7 Q 713.7 885.7, 713.2 886.5 Q 712.7 887.4, 712.7 889.0 Q 712.7 890.7, 713.2 891.6 Q 713.7 892.4, 714.6 892.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 721.1 889.9 Q 721.1 891.6, 720.6 893.0 Q 720.1 894.4, 719.1 896.0 L 718.5 895.5 Q 719.2 894.1, 719.6 892.8 Q 720.0 891.5, 720.0 889.9 Q 720.0 888.2, 719.6 887.0 Q 719.2 885.7, 718.5 884.2 L 719.1 883.8 Q 720.1 885.3, 720.6 886.7 Q 721.1 888.1, 721.1 889.9 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 827.4,829.9 L 818.1,813.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 818.1,813.7 L 802.0,823.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-2 atom-3\" d=\"M 802.0,823.1 L 792.7,806.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 792.7,806.9 L 808.8,797.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-1 atom-5\" d=\"M 818.1,813.7 L 834.3,804.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 834.3,804.4 L 840.8,808.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 840.8,808.2 L 847.4,812.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 832.4,804.4 L 832.4,796.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 832.4,796.8 L 832.4,789.1\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 836.1,804.4 L 836.1,796.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-5 atom-7\" d=\"M 836.1,796.8 L 836.1,789.1\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-4 atom-1\" d=\"M 808.8,797.6 L 818.1,813.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-6\" d=\"M 848.0 813.8 Q 848.0 812.5, 848.6 811.8 Q 849.2 811.1, 850.4 811.1 Q 851.6 811.1, 852.2 811.8 Q 852.8 812.5, 852.8 813.8 Q 852.8 815.0, 852.2 815.8 Q 851.6 816.5, 850.4 816.5 Q 849.3 816.5, 848.6 815.8 Q 848.0 815.1, 848.0 813.8 M 850.4 815.9 Q 851.2 815.9, 851.7 815.4 Q 852.1 814.8, 852.1 813.8 Q 852.1 812.7, 851.7 812.2 Q 851.2 811.7, 850.4 811.7 Q 849.6 811.7, 849.2 812.2 Q 848.7 812.7, 848.7 813.8 Q 848.7 814.8, 849.2 815.4 Q 849.6 815.9, 850.4 815.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-6\" d=\"M 853.2 811.1 L 853.9 811.1 L 853.9 813.4 L 856.6 813.4 L 856.6 811.1 L 857.3 811.1 L 857.3 816.4 L 856.6 816.4 L 856.6 814.0 L 853.9 814.0 L 853.9 816.4 L 853.2 816.4 L 853.2 811.1 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-7\" d=\"M 831.8 785.8 Q 831.8 784.5, 832.5 783.8 Q 833.1 783.1, 834.3 783.1 Q 835.4 783.1, 836.1 783.8 Q 836.7 784.5, 836.7 785.8 Q 836.7 787.1, 836.1 787.8 Q 835.4 788.5, 834.3 788.5 Q 833.1 788.5, 832.5 787.8 Q 831.8 787.1, 831.8 785.8 M 834.3 787.9 Q 835.1 787.9, 835.5 787.4 Q 835.9 786.9, 835.9 785.8 Q 835.9 784.8, 835.5 784.2 Q 835.1 783.7, 834.3 783.7 Q 833.5 783.7, 833.0 784.2 Q 832.6 784.7, 832.6 785.8 Q 832.6 786.9, 833.0 787.4 Q 833.5 787.9, 834.3 787.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 779.6 884.8 L 780.7 884.8 L 780.7 888.4 L 785.1 888.4 L 785.1 884.8 L 786.2 884.8 L 786.2 893.3 L 785.1 893.3 L 785.1 889.4 L 780.7 889.4 L 780.7 893.3 L 779.6 893.3 L 779.6 884.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 792.0 887.1 L 793.1 887.1 L 789.9 896.2 L 788.9 896.2 L 789.9 893.3 L 789.4 893.3 L 787.3 887.1 L 788.4 887.1 L 790.2 892.4 L 792.0 887.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 798.8 884.2 L 798.8 893.3 L 797.9 893.3 L 797.8 892.5 Q 797.1 893.4, 795.9 893.4 Q 794.6 893.4, 793.9 892.6 Q 793.2 891.8, 793.2 890.3 Q 793.2 888.8, 794.1 887.9 Q 794.9 887.0, 796.4 887.0 Q 797.0 887.0, 797.7 887.2 L 797.7 884.2 L 798.8 884.2 M 796.0 892.5 Q 796.6 892.5, 797.1 892.2 Q 797.5 891.8, 797.7 891.2 L 797.7 888.1 Q 797.1 887.9, 796.4 887.9 Q 795.4 887.9, 794.9 888.5 Q 794.4 889.2, 794.4 890.3 Q 794.4 891.4, 794.8 891.9 Q 795.2 892.5, 796.0 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 800.7 887.1 L 800.8 888.0 Q 801.5 887.0, 802.5 887.0 Q 802.9 887.0, 803.3 887.1 L 803.1 888.1 Q 802.6 888.0, 802.3 888.0 Q 801.8 888.0, 801.5 888.2 Q 801.2 888.4, 800.9 888.9 L 800.9 893.3 L 799.8 893.3 L 799.8 887.1 L 800.7 887.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 803.5 890.2 Q 803.5 888.7, 804.3 887.9 Q 805.0 887.0, 806.4 887.0 Q 807.8 887.0, 808.6 887.9 Q 809.4 888.7, 809.4 890.2 Q 809.4 891.7, 808.6 892.6 Q 807.8 893.4, 806.4 893.4 Q 805.0 893.4, 804.3 892.6 Q 803.5 891.7, 803.5 890.2 M 804.7 890.2 Q 804.7 891.3, 805.1 891.9 Q 805.6 892.5, 806.4 892.5 Q 807.3 892.5, 807.7 891.9 Q 808.2 891.3, 808.2 890.2 Q 808.2 889.1, 807.7 888.5 Q 807.3 887.9, 806.4 887.9 Q 805.6 887.9, 805.1 888.5 Q 804.7 889.1, 804.7 890.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 812.8 887.0 Q 814.1 887.0, 814.8 887.8 Q 815.5 888.6, 815.5 890.1 Q 815.5 891.7, 814.6 892.5 Q 813.8 893.4, 812.3 893.4 Q 811.6 893.4, 811.0 893.2 L 811.0 896.2 L 809.9 896.2 L 809.9 887.1 L 810.8 887.1 L 811.0 887.9 Q 811.3 887.5, 811.7 887.2 Q 812.2 887.0, 812.8 887.0 M 812.3 892.5 Q 813.3 892.5, 813.8 891.9 Q 814.3 891.2, 814.3 890.1 Q 814.3 889.0, 813.9 888.5 Q 813.5 887.9, 812.7 887.9 Q 812.1 887.9, 811.6 888.2 Q 811.2 888.6, 811.0 889.1 L 811.0 892.3 Q 811.6 892.5, 812.3 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 819.2 887.0 Q 820.2 887.0, 820.7 887.6 Q 821.3 888.1, 821.3 889.2 L 821.3 893.3 L 820.1 893.3 L 820.1 889.3 Q 820.1 888.6, 819.9 888.2 Q 819.6 887.9, 819.0 887.9 Q 818.4 887.9, 817.9 888.2 Q 817.5 888.4, 817.2 888.9 L 817.2 893.3 L 816.0 893.3 L 816.0 884.2 L 817.2 884.2 L 817.2 887.9 Q 818.0 887.0, 819.2 887.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 822.2 890.2 Q 822.2 888.7, 823.0 887.9 Q 823.7 887.0, 825.1 887.0 Q 826.5 887.0, 827.3 887.9 Q 828.1 888.7, 828.1 890.2 Q 828.1 891.7, 827.3 892.6 Q 826.5 893.4, 825.1 893.4 Q 823.7 893.4, 823.0 892.6 Q 822.2 891.7, 822.2 890.2 M 823.3 890.2 Q 823.3 891.3, 823.8 891.9 Q 824.3 892.5, 825.1 892.5 Q 826.0 892.5, 826.4 891.9 Q 826.9 891.3, 826.9 890.2 Q 826.9 889.1, 826.4 888.5 Q 826.0 887.9, 825.1 887.9 Q 824.3 887.9, 823.8 888.5 Q 823.3 889.1, 823.3 890.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 831.5 887.0 Q 832.8 887.0, 833.5 887.8 Q 834.2 888.6, 834.2 890.1 Q 834.2 891.7, 833.3 892.5 Q 832.5 893.4, 831.0 893.4 Q 830.1 893.4, 829.1 893.0 L 828.6 892.9 L 828.6 884.2 L 829.7 884.2 L 829.7 887.8 Q 830.4 887.0, 831.5 887.0 M 831.0 892.5 Q 832.0 892.5, 832.5 891.9 Q 833.0 891.2, 833.0 890.1 Q 833.0 889.0, 832.6 888.5 Q 832.2 887.9, 831.4 887.9 Q 830.8 887.9, 830.3 888.2 Q 829.9 888.6, 829.7 889.2 L 829.7 892.3 Q 830.3 892.5, 831.0 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 834.7 890.2 Q 834.7 888.7, 835.5 887.9 Q 836.3 887.0, 837.6 887.0 Q 839.0 887.0, 839.6 887.8 Q 840.2 888.6, 840.2 890.2 L 840.2 890.4 L 835.9 890.4 Q 835.9 891.4, 836.4 892.0 Q 836.9 892.5, 837.7 892.5 Q 838.2 892.5, 838.7 892.4 Q 839.1 892.3, 839.6 892.0 L 840.0 892.8 Q 839.4 893.1, 838.8 893.3 Q 838.3 893.4, 837.7 893.4 Q 836.3 893.4, 835.5 892.6 Q 834.7 891.7, 834.7 890.2 M 837.6 887.9 Q 836.9 887.9, 836.5 888.3 Q 836.1 888.7, 835.9 889.5 L 839.0 889.5 Q 838.9 888.7, 838.6 888.3 Q 838.3 887.9, 837.6 887.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 846.8 893.9 L 846.8 894.9 L 840.7 894.9 L 840.7 893.9 L 846.8 893.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 846.8 889.9 Q 846.8 888.1, 847.3 886.7 Q 847.8 885.3, 848.8 883.8 L 849.4 884.2 Q 848.6 885.7, 848.2 887.0 Q 847.9 888.2, 847.9 889.9 Q 847.9 891.5, 848.2 892.8 Q 848.6 894.1, 849.4 895.5 L 848.8 896.0 Q 847.8 894.4, 847.3 893.0 Q 846.8 891.6, 846.8 889.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 849.7 886.4 Q 850.1 885.6, 850.8 885.2 Q 851.5 884.7, 852.6 884.7 Q 853.9 884.7, 854.6 885.4 Q 855.3 886.1, 855.3 887.3 Q 855.3 888.6, 854.4 889.8 Q 853.4 890.9, 851.5 892.3 L 855.4 892.3 L 855.4 893.3 L 849.7 893.3 L 849.7 892.5 Q 851.3 891.4, 852.2 890.5 Q 853.2 889.7, 853.6 888.9 Q 854.1 888.2, 854.1 887.4 Q 854.1 886.6, 853.7 886.1 Q 853.3 885.7, 852.6 885.7 Q 851.9 885.7, 851.4 885.9 Q 851.0 886.2, 850.7 886.8 L 849.7 886.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 856.2 892.1 L 857.4 892.1 L 857.4 893.1 L 857.1 894.7 L 856.7 894.7 L 856.7 893.3 L 856.2 893.3 L 856.2 892.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 862.6 892.3 L 864.5 892.3 L 864.5 886.0 L 862.4 886.6 L 862.1 885.9 L 864.8 884.8 L 865.6 884.9 L 865.6 892.3 L 867.3 892.3 L 867.3 893.3 L 862.6 893.3 L 862.6 892.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 870.4 889.9 Q 870.4 891.6, 869.9 893.0 Q 869.4 894.4, 868.4 896.0 L 867.8 895.5 Q 868.6 894.1, 868.9 892.8 Q 869.3 891.5, 869.3 889.9 Q 869.3 888.2, 868.9 887.0 Q 868.6 885.7, 867.8 884.2 L 868.4 883.8 Q 869.4 885.3, 869.9 886.7 Q 870.4 888.1, 870.4 889.9 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 939.2,849.8 L 955.4,840.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 955.4,840.5 L 971.5,849.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 955.4,840.5 L 955.4,821.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 955.4,821.8 L 939.2,812.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 954.8,817.2 L 943.5,810.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 939.2,812.5 L 939.2,793.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 939.2,793.9 L 955.4,784.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-5 atom-6\" d=\"M 943.5,795.7 L 954.8,789.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-6 atom-7\" d=\"M 955.4,784.5 L 971.5,793.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 971.5,793.9 L 971.5,812.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 967.8,796.6 L 967.8,809.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 971.5,793.9 L 987.7,784.5\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 987.7,784.5 L 994.2,788.3\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-9 atom-10\" d=\"M 994.2,788.3 L 1000.8,792.1\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-11\" d=\"M 985.8,784.5 L 985.8,776.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-11\" d=\"M 985.8,776.9 L 985.8,769.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-11\" d=\"M 989.5,784.5 L 989.5,776.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-10 atom-9 atom-11\" d=\"M 989.5,776.9 L 989.5,769.2\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-11 atom-8 atom-3\" d=\"M 971.5,812.5 L 955.4,821.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-10\" d=\"M 1001.4 793.9 Q 1001.4 792.6, 1002.0 791.9 Q 1002.7 791.2, 1003.8 791.2 Q 1005.0 791.2, 1005.6 791.9 Q 1006.3 792.6, 1006.3 793.9 Q 1006.3 795.1, 1005.6 795.9 Q 1005.0 796.6, 1003.8 796.6 Q 1002.7 796.6, 1002.0 795.9 Q 1001.4 795.2, 1001.4 793.9 M 1003.8 796.0 Q 1004.6 796.0, 1005.1 795.5 Q 1005.5 794.9, 1005.5 793.9 Q 1005.5 792.8, 1005.1 792.3 Q 1004.6 791.8, 1003.8 791.8 Q 1003.0 791.8, 1002.6 792.3 Q 1002.2 792.8, 1002.2 793.9 Q 1002.2 794.9, 1002.6 795.5 Q 1003.0 796.0, 1003.8 796.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-10\" d=\"M 1006.6 791.2 L 1007.3 791.2 L 1007.3 793.5 L 1010.0 793.5 L 1010.0 791.2 L 1010.8 791.2 L 1010.8 796.5 L 1010.0 796.5 L 1010.0 794.1 L 1007.3 794.1 L 1007.3 796.5 L 1006.6 796.5 L 1006.6 791.2 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-11\" d=\"M 985.3 765.9 Q 985.3 764.6, 985.9 763.9 Q 986.5 763.2, 987.7 763.2 Q 988.9 763.2, 989.5 763.9 Q 990.1 764.6, 990.1 765.9 Q 990.1 767.2, 989.5 767.9 Q 988.8 768.6, 987.7 768.6 Q 986.5 768.6, 985.9 767.9 Q 985.3 767.2, 985.3 765.9 M 987.7 768.0 Q 988.5 768.0, 988.9 767.5 Q 989.4 767.0, 989.4 765.9 Q 989.4 764.9, 988.9 764.3 Q 988.5 763.8, 987.7 763.8 Q 986.9 763.8, 986.4 764.3 Q 986.0 764.9, 986.0 765.9 Q 986.0 767.0, 986.4 767.5 Q 986.9 768.0, 987.7 768.0 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 928.9 884.8 L 930.1 884.8 L 930.1 888.4 L 934.4 888.4 L 934.4 884.8 L 935.6 884.8 L 935.6 893.3 L 934.4 893.3 L 934.4 889.4 L 930.1 889.4 L 930.1 893.3 L 928.9 893.3 L 928.9 884.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 941.3 887.1 L 942.4 887.1 L 939.2 896.2 L 938.2 896.2 L 939.2 893.3 L 938.8 893.3 L 936.6 887.1 L 937.7 887.1 L 939.6 892.4 L 941.3 887.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 948.1 884.2 L 948.1 893.3 L 947.2 893.3 L 947.1 892.5 Q 946.4 893.4, 945.3 893.4 Q 944.0 893.4, 943.3 892.6 Q 942.5 891.8, 942.5 890.3 Q 942.5 888.8, 943.4 887.9 Q 944.2 887.0, 945.7 887.0 Q 946.3 887.0, 947.0 887.2 L 947.0 884.2 L 948.1 884.2 M 945.3 892.5 Q 946.0 892.5, 946.4 892.2 Q 946.9 891.8, 947.0 891.2 L 947.0 888.1 Q 946.4 887.9, 945.7 887.9 Q 944.8 887.9, 944.2 888.5 Q 943.7 889.2, 943.7 890.3 Q 943.7 891.4, 944.1 891.9 Q 944.5 892.5, 945.3 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 950.0 887.1 L 950.2 888.0 Q 950.8 887.0, 951.9 887.0 Q 952.2 887.0, 952.6 887.1 L 952.5 888.1 Q 952.0 888.0, 951.7 888.0 Q 951.2 888.0, 950.8 888.2 Q 950.5 888.4, 950.2 888.9 L 950.2 893.3 L 949.1 893.3 L 949.1 887.1 L 950.0 887.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 952.8 890.2 Q 952.8 888.7, 953.6 887.9 Q 954.4 887.0, 955.8 887.0 Q 957.2 887.0, 957.9 887.9 Q 958.7 888.7, 958.7 890.2 Q 958.7 891.7, 957.9 892.6 Q 957.2 893.4, 955.8 893.4 Q 954.4 893.4, 953.6 892.6 Q 952.8 891.7, 952.8 890.2 M 954.0 890.2 Q 954.0 891.3, 954.4 891.9 Q 954.9 892.5, 955.8 892.5 Q 956.6 892.5, 957.1 891.9 Q 957.5 891.3, 957.5 890.2 Q 957.5 889.1, 957.1 888.5 Q 956.6 887.9, 955.8 887.9 Q 954.9 887.9, 954.4 888.5 Q 954.0 889.1, 954.0 890.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 962.1 887.0 Q 963.4 887.0, 964.1 887.8 Q 964.8 888.6, 964.8 890.1 Q 964.8 891.7, 964.0 892.5 Q 963.1 893.4, 961.6 893.4 Q 961.0 893.4, 960.4 893.2 L 960.4 896.2 L 959.2 896.2 L 959.2 887.1 L 960.1 887.1 L 960.3 887.9 Q 960.6 887.5, 961.1 887.2 Q 961.5 887.0, 962.1 887.0 M 961.6 892.5 Q 962.6 892.5, 963.1 891.9 Q 963.7 891.2, 963.7 890.1 Q 963.7 889.0, 963.2 888.5 Q 962.8 887.9, 962.0 887.9 Q 961.4 887.9, 961.0 888.2 Q 960.5 888.6, 960.4 889.1 L 960.4 892.3 Q 961.0 892.5, 961.6 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 968.6 887.0 Q 969.6 887.0, 970.1 887.6 Q 970.6 888.1, 970.6 889.2 L 970.6 893.3 L 969.5 893.3 L 969.5 889.3 Q 969.5 888.6, 969.2 888.2 Q 968.9 887.9, 968.3 887.9 Q 967.7 887.9, 967.3 888.2 Q 966.8 888.4, 966.5 888.9 L 966.5 893.3 L 965.4 893.3 L 965.4 884.2 L 966.5 884.2 L 966.5 887.9 Q 967.3 887.0, 968.6 887.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 971.5 890.2 Q 971.5 888.7, 972.3 887.9 Q 973.0 887.0, 974.5 887.0 Q 975.9 887.0, 976.6 887.9 Q 977.4 888.7, 977.4 890.2 Q 977.4 891.7, 976.6 892.6 Q 975.9 893.4, 974.5 893.4 Q 973.0 893.4, 972.3 892.6 Q 971.5 891.7, 971.5 890.2 M 972.7 890.2 Q 972.7 891.3, 973.1 891.9 Q 973.6 892.5, 974.5 892.5 Q 975.3 892.5, 975.8 891.9 Q 976.2 891.3, 976.2 890.2 Q 976.2 889.1, 975.8 888.5 Q 975.3 887.9, 974.5 887.9 Q 973.6 887.9, 973.1 888.5 Q 972.7 889.1, 972.7 890.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 980.8 887.0 Q 982.1 887.0, 982.8 887.8 Q 983.5 888.6, 983.5 890.1 Q 983.5 891.7, 982.7 892.5 Q 981.8 893.4, 980.4 893.4 Q 979.4 893.4, 978.5 893.0 L 977.9 892.9 L 977.9 884.2 L 979.1 884.2 L 979.1 887.8 Q 979.7 887.0, 980.8 887.0 M 980.3 892.5 Q 981.3 892.5, 981.8 891.9 Q 982.4 891.2, 982.4 890.1 Q 982.4 889.0, 981.9 888.5 Q 981.5 887.9, 980.7 887.9 Q 980.1 887.9, 979.7 888.2 Q 979.2 888.6, 979.1 889.2 L 979.1 892.3 Q 979.7 892.5, 980.3 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 984.1 890.2 Q 984.1 888.7, 984.8 887.9 Q 985.6 887.0, 987.0 887.0 Q 988.3 887.0, 988.9 887.8 Q 989.5 888.6, 989.5 890.2 L 989.5 890.4 L 985.2 890.4 Q 985.3 891.4, 985.7 892.0 Q 986.2 892.5, 987.1 892.5 Q 987.5 892.5, 988.0 892.4 Q 988.4 892.3, 989.0 892.0 L 989.3 892.8 Q 988.7 893.1, 988.1 893.3 Q 987.6 893.4, 987.0 893.4 Q 985.6 893.4, 984.8 892.6 Q 984.1 891.7, 984.1 890.2 M 987.0 887.9 Q 986.3 887.9, 985.8 888.3 Q 985.4 888.7, 985.3 889.5 L 988.3 889.5 Q 988.3 888.7, 987.9 888.3 Q 987.6 887.9, 987.0 887.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 996.1 893.9 L 996.1 894.9 L 990.0 894.9 L 990.0 893.9 L 996.1 893.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 996.1 889.9 Q 996.1 888.1, 996.6 886.7 Q 997.1 885.3, 998.1 883.8 L 998.8 884.2 Q 998.0 885.7, 997.6 887.0 Q 997.2 888.2, 997.2 889.9 Q 997.2 891.5, 997.6 892.8 Q 998.0 894.1, 998.8 895.5 L 998.1 896.0 Q 997.1 894.4, 996.6 893.0 Q 996.1 891.6, 996.1 889.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1003.1 888.8 Q 1004.0 889.1, 1004.4 889.6 Q 1004.8 890.1, 1004.8 891.0 Q 1004.8 891.7, 1004.4 892.3 Q 1004.0 892.8, 1003.4 893.1 Q 1002.7 893.4, 1001.9 893.4 Q 1000.9 893.4, 1000.3 893.1 Q 999.6 892.8, 999.1 892.1 L 999.7 891.4 Q 1000.3 892.0, 1000.7 892.2 Q 1001.2 892.5, 1001.9 892.5 Q 1002.6 892.5, 1003.1 892.0 Q 1003.6 891.6, 1003.6 891.0 Q 1003.6 890.1, 1003.1 889.7 Q 1002.6 889.3, 1001.5 889.3 L 1000.9 889.3 L 1000.9 888.5 L 1001.5 888.5 Q 1002.4 888.4, 1002.9 888.0 Q 1003.4 887.6, 1003.4 886.9 Q 1003.4 886.3, 1003.0 886.0 Q 1002.6 885.7, 1001.9 885.7 Q 1001.2 885.7, 1000.7 885.9 Q 1000.3 886.2, 1000.0 886.8 L 999.1 886.4 Q 999.4 885.7, 1000.1 885.2 Q 1000.9 884.7, 1001.9 884.7 Q 1003.1 884.7, 1003.9 885.3 Q 1004.6 885.9, 1004.6 886.9 Q 1004.6 887.6, 1004.2 888.1 Q 1003.8 888.5, 1003.1 888.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1005.5 892.1 L 1006.7 892.1 L 1006.7 893.1 L 1006.4 894.7 L 1006.0 894.7 L 1006.0 893.3 L 1005.5 893.3 L 1005.5 892.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1014.6 893.4 Q 1013.0 893.4, 1012.2 892.2 Q 1011.5 891.1, 1011.5 889.0 Q 1011.5 887.0, 1012.2 885.8 Q 1013.0 884.7, 1014.6 884.7 Q 1016.1 884.7, 1016.9 885.8 Q 1017.7 887.0, 1017.7 889.0 Q 1017.7 891.1, 1016.9 892.2 Q 1016.1 893.4, 1014.6 893.4 M 1014.6 892.4 Q 1015.5 892.4, 1016.0 891.6 Q 1016.5 890.7, 1016.5 889.0 Q 1016.5 887.4, 1016.0 886.5 Q 1015.5 885.7, 1014.6 885.7 Q 1013.6 885.7, 1013.1 886.5 Q 1012.7 887.4, 1012.7 889.0 Q 1012.7 890.7, 1013.1 891.6 Q 1013.6 892.4, 1014.6 892.4 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1021.1 889.9 Q 1021.1 891.6, 1020.6 893.0 Q 1020.1 894.4, 1019.1 896.0 L 1018.4 895.5 Q 1019.2 894.1, 1019.6 892.8 Q 1020.0 891.5, 1020.0 889.9 Q 1020.0 888.2, 1019.6 887.0 Q 1019.2 885.7, 1018.4 884.2 L 1019.1 883.8 Q 1020.1 885.3, 1020.6 886.7 Q 1021.1 888.1, 1021.1 889.9 \" fill=\"#000000\"/>\n",
"<path class=\"bond-0 atom-0 atom-1\" d=\"M 1084.6,816.2 L 1100.7,806.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-1 atom-1 atom-2\" d=\"M 1100.7,806.9 L 1091.4,790.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-2 atom-1 atom-3\" d=\"M 1100.7,806.9 L 1116.9,797.6\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-3 atom-3 atom-4\" d=\"M 1116.9,797.6 L 1126.2,813.7\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-4 atom-4 atom-5\" d=\"M 1126.2,813.7 L 1135.5,829.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-5 atom-4 atom-6\" d=\"M 1126.2,813.7 L 1110.0,823.1\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-6 atom-4 atom-7\" d=\"M 1126.2,813.7 L 1142.3,804.4\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 1142.3,804.4 L 1148.9,808.2\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-7 atom-7 atom-8\" d=\"M 1148.9,808.2 L 1155.5,812.0\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 1140.5,804.4 L 1140.5,796.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 1140.5,796.8 L 1140.5,789.1\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 1144.2,804.4 L 1144.2,796.8\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-8 atom-7 atom-9\" d=\"M 1144.2,796.8 L 1144.2,789.1\" style=\"fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"bond-9 atom-6 atom-1\" d=\"M 1110.0,823.1 L 1100.7,806.9\" style=\"fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1\"/>\n",
"<path class=\"atom-8\" d=\"M 1156.1 813.8 Q 1156.1 812.5, 1156.7 811.8 Q 1157.3 811.1, 1158.5 811.1 Q 1159.7 811.1, 1160.3 811.8 Q 1160.9 812.5, 1160.9 813.8 Q 1160.9 815.0, 1160.3 815.8 Q 1159.6 816.5, 1158.5 816.5 Q 1157.3 816.5, 1156.7 815.8 Q 1156.1 815.1, 1156.1 813.8 M 1158.5 815.9 Q 1159.3 815.9, 1159.7 815.4 Q 1160.2 814.8, 1160.2 813.8 Q 1160.2 812.7, 1159.7 812.2 Q 1159.3 811.7, 1158.5 811.7 Q 1157.7 811.7, 1157.2 812.2 Q 1156.8 812.7, 1156.8 813.8 Q 1156.8 814.8, 1157.2 815.4 Q 1157.7 815.9, 1158.5 815.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-8\" d=\"M 1161.3 811.1 L 1162.0 811.1 L 1162.0 813.4 L 1164.7 813.4 L 1164.7 811.1 L 1165.4 811.1 L 1165.4 816.4 L 1164.7 816.4 L 1164.7 814.0 L 1162.0 814.0 L 1162.0 816.4 L 1161.3 816.4 L 1161.3 811.1 \" fill=\"#FF0000\"/>\n",
"<path class=\"atom-9\" d=\"M 1139.9 785.8 Q 1139.9 784.5, 1140.5 783.8 Q 1141.2 783.1, 1142.3 783.1 Q 1143.5 783.1, 1144.1 783.8 Q 1144.8 784.5, 1144.8 785.8 Q 1144.8 787.1, 1144.1 787.8 Q 1143.5 788.5, 1142.3 788.5 Q 1141.2 788.5, 1140.5 787.8 Q 1139.9 787.1, 1139.9 785.8 M 1142.3 787.9 Q 1143.2 787.9, 1143.6 787.4 Q 1144.0 786.9, 1144.0 785.8 Q 1144.0 784.8, 1143.6 784.2 Q 1143.2 783.7, 1142.3 783.7 Q 1141.5 783.7, 1141.1 784.2 Q 1140.7 784.7, 1140.7 785.8 Q 1140.7 786.9, 1141.1 787.4 Q 1141.5 787.9, 1142.3 787.9 \" fill=\"#FF0000\"/>\n",
"<path class=\"legend\" d=\"M 1079.6 884.8 L 1080.7 884.8 L 1080.7 888.4 L 1085.1 888.4 L 1085.1 884.8 L 1086.2 884.8 L 1086.2 893.3 L 1085.1 893.3 L 1085.1 889.4 L 1080.7 889.4 L 1080.7 893.3 L 1079.6 893.3 L 1079.6 884.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1092.0 887.1 L 1093.1 887.1 L 1089.9 896.2 L 1088.9 896.2 L 1089.9 893.3 L 1089.4 893.3 L 1087.3 887.1 L 1088.4 887.1 L 1090.2 892.4 L 1092.0 887.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1098.8 884.2 L 1098.8 893.3 L 1097.9 893.3 L 1097.8 892.5 Q 1097.1 893.4, 1095.9 893.4 Q 1094.7 893.4, 1093.9 892.6 Q 1093.2 891.8, 1093.2 890.3 Q 1093.2 888.8, 1094.1 887.9 Q 1094.9 887.0, 1096.4 887.0 Q 1097.0 887.0, 1097.7 887.2 L 1097.7 884.2 L 1098.8 884.2 M 1096.0 892.5 Q 1096.6 892.5, 1097.1 892.2 Q 1097.5 891.8, 1097.7 891.2 L 1097.7 888.1 Q 1097.1 887.9, 1096.4 887.9 Q 1095.5 887.9, 1094.9 888.5 Q 1094.4 889.2, 1094.4 890.3 Q 1094.4 891.4, 1094.8 891.9 Q 1095.2 892.5, 1096.0 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1100.7 887.1 L 1100.8 888.0 Q 1101.5 887.0, 1102.5 887.0 Q 1102.9 887.0, 1103.3 887.1 L 1103.2 888.1 Q 1102.6 888.0, 1102.3 888.0 Q 1101.8 888.0, 1101.5 888.2 Q 1101.2 888.4, 1100.9 888.9 L 1100.9 893.3 L 1099.8 893.3 L 1099.8 887.1 L 1100.7 887.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1103.5 890.2 Q 1103.5 888.7, 1104.3 887.9 Q 1105.0 887.0, 1106.4 887.0 Q 1107.8 887.0, 1108.6 887.9 Q 1109.4 888.7, 1109.4 890.2 Q 1109.4 891.7, 1108.6 892.6 Q 1107.8 893.4, 1106.4 893.4 Q 1105.0 893.4, 1104.3 892.6 Q 1103.5 891.7, 1103.5 890.2 M 1104.7 890.2 Q 1104.7 891.3, 1105.1 891.9 Q 1105.6 892.5, 1106.4 892.5 Q 1107.3 892.5, 1107.7 891.9 Q 1108.2 891.3, 1108.2 890.2 Q 1108.2 889.1, 1107.7 888.5 Q 1107.3 887.9, 1106.4 887.9 Q 1105.6 887.9, 1105.1 888.5 Q 1104.7 889.1, 1104.7 890.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1112.8 887.0 Q 1114.1 887.0, 1114.8 887.8 Q 1115.5 888.6, 1115.5 890.1 Q 1115.5 891.7, 1114.6 892.5 Q 1113.8 893.4, 1112.3 893.4 Q 1111.6 893.4, 1111.0 893.2 L 1111.0 896.2 L 1109.9 896.2 L 1109.9 887.1 L 1110.8 887.1 L 1111.0 887.9 Q 1111.3 887.5, 1111.8 887.2 Q 1112.2 887.0, 1112.8 887.0 M 1112.3 892.5 Q 1113.3 892.5, 1113.8 891.9 Q 1114.3 891.2, 1114.3 890.1 Q 1114.3 889.0, 1113.9 888.5 Q 1113.5 887.9, 1112.7 887.9 Q 1112.1 887.9, 1111.7 888.2 Q 1111.2 888.6, 1111.0 889.1 L 1111.0 892.3 Q 1111.7 892.5, 1112.3 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1119.3 887.0 Q 1120.2 887.0, 1120.8 887.6 Q 1121.3 888.1, 1121.3 889.2 L 1121.3 893.3 L 1120.2 893.3 L 1120.2 889.3 Q 1120.2 888.6, 1119.9 888.2 Q 1119.6 887.9, 1119.0 887.9 Q 1118.4 887.9, 1117.9 888.2 Q 1117.5 888.4, 1117.2 888.9 L 1117.2 893.3 L 1116.0 893.3 L 1116.0 884.2 L 1117.2 884.2 L 1117.2 887.9 Q 1118.0 887.0, 1119.3 887.0 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1122.2 890.2 Q 1122.2 888.7, 1123.0 887.9 Q 1123.7 887.0, 1125.1 887.0 Q 1126.5 887.0, 1127.3 887.9 Q 1128.1 888.7, 1128.1 890.2 Q 1128.1 891.7, 1127.3 892.6 Q 1126.5 893.4, 1125.1 893.4 Q 1123.7 893.4, 1123.0 892.6 Q 1122.2 891.7, 1122.2 890.2 M 1123.4 890.2 Q 1123.4 891.3, 1123.8 891.9 Q 1124.3 892.5, 1125.1 892.5 Q 1126.0 892.5, 1126.4 891.9 Q 1126.9 891.3, 1126.9 890.2 Q 1126.9 889.1, 1126.4 888.5 Q 1126.0 887.9, 1125.1 887.9 Q 1124.3 887.9, 1123.8 888.5 Q 1123.4 889.1, 1123.4 890.2 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1131.5 887.0 Q 1132.8 887.0, 1133.5 887.8 Q 1134.2 888.6, 1134.2 890.1 Q 1134.2 891.7, 1133.4 892.5 Q 1132.5 893.4, 1131.0 893.4 Q 1130.1 893.4, 1129.2 893.0 L 1128.6 892.9 L 1128.6 884.2 L 1129.7 884.2 L 1129.7 887.8 Q 1130.4 887.0, 1131.5 887.0 M 1131.0 892.5 Q 1132.0 892.5, 1132.5 891.9 Q 1133.1 891.2, 1133.1 890.1 Q 1133.1 889.0, 1132.6 888.5 Q 1132.2 887.9, 1131.4 887.9 Q 1130.8 887.9, 1130.4 888.2 Q 1129.9 888.6, 1129.7 889.2 L 1129.7 892.3 Q 1130.4 892.5, 1131.0 892.5 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1134.8 890.2 Q 1134.8 888.7, 1135.5 887.9 Q 1136.3 887.0, 1137.7 887.0 Q 1139.0 887.0, 1139.6 887.8 Q 1140.2 888.6, 1140.2 890.2 L 1140.2 890.4 L 1135.9 890.4 Q 1135.9 891.4, 1136.4 892.0 Q 1136.9 892.5, 1137.7 892.5 Q 1138.2 892.5, 1138.7 892.4 Q 1139.1 892.3, 1139.7 892.0 L 1140.0 892.8 Q 1139.4 893.1, 1138.8 893.3 Q 1138.3 893.4, 1137.7 893.4 Q 1136.3 893.4, 1135.5 892.6 Q 1134.8 891.7, 1134.8 890.2 M 1137.7 887.9 Q 1136.9 887.9, 1136.5 888.3 Q 1136.1 888.7, 1136.0 889.5 L 1139.0 889.5 Q 1138.9 888.7, 1138.6 888.3 Q 1138.3 887.9, 1137.7 887.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1146.8 893.9 L 1146.8 894.9 L 1140.7 894.9 L 1140.7 893.9 L 1146.8 893.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1146.8 889.9 Q 1146.8 888.1, 1147.3 886.7 Q 1147.8 885.3, 1148.8 883.8 L 1149.4 884.2 Q 1148.7 885.7, 1148.3 887.0 Q 1147.9 888.2, 1147.9 889.9 Q 1147.9 891.5, 1148.3 892.8 Q 1148.7 894.1, 1149.4 895.5 L 1148.8 896.0 Q 1147.8 894.4, 1147.3 893.0 Q 1146.8 891.6, 1146.8 889.9 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1153.8 888.8 Q 1154.6 889.1, 1155.0 889.6 Q 1155.4 890.1, 1155.4 891.0 Q 1155.4 891.7, 1155.1 892.3 Q 1154.7 892.8, 1154.1 893.1 Q 1153.4 893.4, 1152.5 893.4 Q 1151.6 893.4, 1150.9 893.1 Q 1150.3 892.8, 1149.7 892.1 L 1150.4 891.4 Q 1150.9 892.0, 1151.4 892.2 Q 1151.8 892.5, 1152.5 892.5 Q 1153.3 892.5, 1153.8 892.0 Q 1154.2 891.6, 1154.2 891.0 Q 1154.2 890.1, 1153.8 889.7 Q 1153.3 889.3, 1152.2 889.3 L 1151.6 889.3 L 1151.6 888.5 L 1152.2 888.5 Q 1153.1 888.4, 1153.6 888.0 Q 1154.1 887.6, 1154.1 886.9 Q 1154.1 886.3, 1153.7 886.0 Q 1153.3 885.7, 1152.6 885.7 Q 1151.8 885.7, 1151.4 885.9 Q 1151.0 886.2, 1150.6 886.8 L 1149.8 886.4 Q 1150.1 885.7, 1150.8 885.2 Q 1151.5 884.7, 1152.6 884.7 Q 1153.8 884.7, 1154.5 885.3 Q 1155.3 885.9, 1155.3 886.9 Q 1155.3 887.6, 1154.9 888.1 Q 1154.5 888.5, 1153.8 888.8 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1156.2 892.1 L 1157.4 892.1 L 1157.4 893.1 L 1157.1 894.7 L 1156.7 894.7 L 1156.7 893.3 L 1156.2 893.3 L 1156.2 892.1 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"\" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1162.6 892.3 L 1164.5 892.3 L 1164.5 886.0 L 1162.4 886.6 L 1162.1 885.9 L 1164.7 884.8 L 1165.6 884.9 L 1165.6 892.3 L 1167.3 892.3 L 1167.3 893.3 L 1162.6 893.3 L 1162.6 892.3 \" fill=\"#000000\"/>\n",
"<path class=\"legend\" d=\"M 1170.4 889.9 Q 1170.4 891.6, 1169.9 893.0 Q 1169.4 894.4, 1168.4 896.0 L 1167.8 895.5 Q 1168.5 894.1, 1168.9 892.8 Q 1169.3 891.5, 1169.3 889.9 Q 1169.3 888.2, 1168.9 887.0 Q 1168.5 885.7, 1167.8 884.2 L 1168.4 883.8 Q 1169.4 885.3, 1169.9 886.7 Q 1170.4 888.1, 1170.4 889.9 \" fill=\"#000000\"/>\n",
"</svg>"
],
"text/plain": [
"<IPython.core.display.SVG object>"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"bbSelection = Picker(ref_file = ref_file, \n",
" bin_file = bin_file, \n",
" n = n_select, # How many compounds to select\n",
" method = 'som', # Which clustering method to use\n",
" pharmacophores = pharmacophores, # Which pharmacophore to select from,\n",
" ncpu = ncpu, # Number of cpus to use,\n",
" sort = sort,\n",
" tanimoto = tanimoto,\n",
" use_coverage = use_coverage)\n",
"\n",
"bbSelection.DrawSelectedMols(align_smiles = 'CC(=O)O')"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "8a190b21-c40b-4051-b174-1eb58673cc03",
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"id": "0c7dc1c8-bd40-4170-bfc5-416acacafd2d",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"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.9.19"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment